aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/nfsroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/nfsroot.c')
-rw-r--r--fs/nfs/nfsroot.c567
1 files changed, 171 insertions, 396 deletions
diff --git a/fs/nfs/nfsroot.c b/fs/nfs/nfsroot.c
index df101d9f546a..c4744e1d513c 100644
--- a/fs/nfs/nfsroot.c
+++ b/fs/nfs/nfsroot.c
@@ -3,9 +3,10 @@
3 * 3 *
4 * Allow an NFS filesystem to be mounted as root. The way this works is: 4 * Allow an NFS filesystem to be mounted as root. The way this works is:
5 * (1) Use the IP autoconfig mechanism to set local IP addresses and routes. 5 * (1) Use the IP autoconfig mechanism to set local IP addresses and routes.
6 * (2) Handle RPC negotiation with the system which replied to RARP or 6 * (2) Construct the device string and the options string using DHCP
7 * was reported as a boot server by BOOTP or manually. 7 * option 17 and/or kernel command line options.
8 * (3) The actual mounting is done later, when init() is running. 8 * (3) When mount_root() sets up the root file system, pass these strings
9 * to the NFS client's regular mount interface via sys_mount().
9 * 10 *
10 * 11 *
11 * Changes: 12 * Changes:
@@ -65,470 +66,244 @@
65 * Hua Qin : Support for mounting root file system via 66 * Hua Qin : Support for mounting root file system via
66 * NFS over TCP. 67 * NFS over TCP.
67 * Fabian Frederick: Option parser rebuilt (using parser lib) 68 * Fabian Frederick: Option parser rebuilt (using parser lib)
68*/ 69 * Chuck Lever : Use super.c's text-based mount option parsing
70 * Chuck Lever : Add "nfsrootdebug".
71 */
69 72
70#include <linux/types.h> 73#include <linux/types.h>
71#include <linux/string.h> 74#include <linux/string.h>
72#include <linux/kernel.h>
73#include <linux/time.h>
74#include <linux/fs.h>
75#include <linux/init.h> 75#include <linux/init.h>
76#include <linux/sunrpc/clnt.h>
77#include <linux/sunrpc/xprtsock.h>
78#include <linux/nfs.h> 76#include <linux/nfs.h>
79#include <linux/nfs_fs.h> 77#include <linux/nfs_fs.h>
80#include <linux/nfs_mount.h>
81#include <linux/in.h>
82#include <linux/major.h>
83#include <linux/utsname.h> 78#include <linux/utsname.h>
84#include <linux/inet.h>
85#include <linux/root_dev.h> 79#include <linux/root_dev.h>
86#include <net/ipconfig.h> 80#include <net/ipconfig.h>
87#include <linux/parser.h>
88 81
89#include "internal.h" 82#include "internal.h"
90 83
91/* Define this to allow debugging output */
92#undef NFSROOT_DEBUG
93#define NFSDBG_FACILITY NFSDBG_ROOT 84#define NFSDBG_FACILITY NFSDBG_ROOT
94 85
95/* Default port to use if server is not running a portmapper */
96#define NFS_MNT_PORT 627
97
98/* Default path we try to mount. "%s" gets replaced by our IP address */ 86/* Default path we try to mount. "%s" gets replaced by our IP address */
99#define NFS_ROOT "/tftpboot/%s" 87#define NFS_ROOT "/tftpboot/%s"
100 88
89/* Default NFSROOT mount options. */
90#define NFS_DEF_OPTIONS "vers=2,udp,rsize=4096,wsize=4096"
91
101/* Parameters passed from the kernel command line */ 92/* Parameters passed from the kernel command line */
102static char nfs_root_name[256] __initdata = ""; 93static char nfs_root_parms[256] __initdata = "";
94
95/* Text-based mount options passed to super.c */
96static char nfs_root_options[256] __initdata = NFS_DEF_OPTIONS;
103 97
104/* Address of NFS server */ 98/* Address of NFS server */
105static __be32 servaddr __initdata = 0; 99static __be32 servaddr __initdata = htonl(INADDR_NONE);
106 100
107/* Name of directory to mount */ 101/* Name of directory to mount */
108static char nfs_export_path[NFS_MAXPATHLEN + 1] __initdata = { 0, }; 102static char nfs_export_path[NFS_MAXPATHLEN + 1] __initdata = "";
109
110/* NFS-related data */
111static struct nfs_mount_data nfs_data __initdata = { 0, };/* NFS mount info */
112static int nfs_port __initdata = 0; /* Port to connect to for NFS */
113static int mount_port __initdata = 0; /* Mount daemon port number */
114
115
116/***************************************************************************
117
118 Parsing of options
119
120 ***************************************************************************/
121
122enum {
123 /* Options that take integer arguments */
124 Opt_port, Opt_rsize, Opt_wsize, Opt_timeo, Opt_retrans, Opt_acregmin,
125 Opt_acregmax, Opt_acdirmin, Opt_acdirmax,
126 /* Options that take no arguments */
127 Opt_soft, Opt_hard, Opt_intr,
128 Opt_nointr, Opt_posix, Opt_noposix, Opt_cto, Opt_nocto, Opt_ac,
129 Opt_noac, Opt_lock, Opt_nolock, Opt_v2, Opt_v3, Opt_udp, Opt_tcp,
130 Opt_acl, Opt_noacl,
131 /* Error token */
132 Opt_err
133};
134
135static const match_table_t tokens __initconst = {
136 {Opt_port, "port=%u"},
137 {Opt_rsize, "rsize=%u"},
138 {Opt_wsize, "wsize=%u"},
139 {Opt_timeo, "timeo=%u"},
140 {Opt_retrans, "retrans=%u"},
141 {Opt_acregmin, "acregmin=%u"},
142 {Opt_acregmax, "acregmax=%u"},
143 {Opt_acdirmin, "acdirmin=%u"},
144 {Opt_acdirmax, "acdirmax=%u"},
145 {Opt_soft, "soft"},
146 {Opt_hard, "hard"},
147 {Opt_intr, "intr"},
148 {Opt_nointr, "nointr"},
149 {Opt_posix, "posix"},
150 {Opt_noposix, "noposix"},
151 {Opt_cto, "cto"},
152 {Opt_nocto, "nocto"},
153 {Opt_ac, "ac"},
154 {Opt_noac, "noac"},
155 {Opt_lock, "lock"},
156 {Opt_nolock, "nolock"},
157 {Opt_v2, "nfsvers=2"},
158 {Opt_v2, "v2"},
159 {Opt_v3, "nfsvers=3"},
160 {Opt_v3, "v3"},
161 {Opt_udp, "proto=udp"},
162 {Opt_udp, "udp"},
163 {Opt_tcp, "proto=tcp"},
164 {Opt_tcp, "tcp"},
165 {Opt_acl, "acl"},
166 {Opt_noacl, "noacl"},
167 {Opt_err, NULL}
168
169};
170
171/*
172 * Parse option string.
173 */
174
175static int __init root_nfs_parse(char *name, char *buf)
176{
177 103
178 char *p; 104/* server:export path string passed to super.c */
179 substring_t args[MAX_OPT_ARGS]; 105static char nfs_root_device[NFS_MAXPATHLEN + 1] __initdata = "";
180 int option;
181
182 if (!name)
183 return 1;
184
185 /* Set the NFS remote path */
186 p = strsep(&name, ",");
187 if (p[0] != '\0' && strcmp(p, "default") != 0)
188 strlcpy(buf, p, NFS_MAXPATHLEN);
189
190 while ((p = strsep (&name, ",")) != NULL) {
191 int token;
192 if (!*p)
193 continue;
194 token = match_token(p, tokens, args);
195
196 /* %u tokens only. Beware if you add new tokens! */
197 if (token < Opt_soft && match_int(&args[0], &option))
198 return 0;
199 switch (token) {
200 case Opt_port:
201 nfs_port = option;
202 break;
203 case Opt_rsize:
204 nfs_data.rsize = option;
205 break;
206 case Opt_wsize:
207 nfs_data.wsize = option;
208 break;
209 case Opt_timeo:
210 nfs_data.timeo = option;
211 break;
212 case Opt_retrans:
213 nfs_data.retrans = option;
214 break;
215 case Opt_acregmin:
216 nfs_data.acregmin = option;
217 break;
218 case Opt_acregmax:
219 nfs_data.acregmax = option;
220 break;
221 case Opt_acdirmin:
222 nfs_data.acdirmin = option;
223 break;
224 case Opt_acdirmax:
225 nfs_data.acdirmax = option;
226 break;
227 case Opt_soft:
228 nfs_data.flags |= NFS_MOUNT_SOFT;
229 break;
230 case Opt_hard:
231 nfs_data.flags &= ~NFS_MOUNT_SOFT;
232 break;
233 case Opt_intr:
234 case Opt_nointr:
235 break;
236 case Opt_posix:
237 nfs_data.flags |= NFS_MOUNT_POSIX;
238 break;
239 case Opt_noposix:
240 nfs_data.flags &= ~NFS_MOUNT_POSIX;
241 break;
242 case Opt_cto:
243 nfs_data.flags &= ~NFS_MOUNT_NOCTO;
244 break;
245 case Opt_nocto:
246 nfs_data.flags |= NFS_MOUNT_NOCTO;
247 break;
248 case Opt_ac:
249 nfs_data.flags &= ~NFS_MOUNT_NOAC;
250 break;
251 case Opt_noac:
252 nfs_data.flags |= NFS_MOUNT_NOAC;
253 break;
254 case Opt_lock:
255 nfs_data.flags &= ~NFS_MOUNT_NONLM;
256 break;
257 case Opt_nolock:
258 nfs_data.flags |= NFS_MOUNT_NONLM;
259 break;
260 case Opt_v2:
261 nfs_data.flags &= ~NFS_MOUNT_VER3;
262 break;
263 case Opt_v3:
264 nfs_data.flags |= NFS_MOUNT_VER3;
265 break;
266 case Opt_udp:
267 nfs_data.flags &= ~NFS_MOUNT_TCP;
268 break;
269 case Opt_tcp:
270 nfs_data.flags |= NFS_MOUNT_TCP;
271 break;
272 case Opt_acl:
273 nfs_data.flags &= ~NFS_MOUNT_NOACL;
274 break;
275 case Opt_noacl:
276 nfs_data.flags |= NFS_MOUNT_NOACL;
277 break;
278 default:
279 printk(KERN_WARNING "Root-NFS: unknown "
280 "option: %s\n", p);
281 return 0;
282 }
283 }
284
285 return 1;
286}
287 106
107#ifdef RPC_DEBUG
288/* 108/*
289 * Prepare the NFS data structure and parse all options. 109 * When the "nfsrootdebug" kernel command line option is specified,
110 * enable debugging messages for NFSROOT.
290 */ 111 */
291static int __init root_nfs_name(char *name) 112static int __init nfs_root_debug(char *__unused)
292{ 113{
293 static char buf[NFS_MAXPATHLEN] __initdata; 114 nfs_debug |= NFSDBG_ROOT | NFSDBG_MOUNT;
294 char *cp;
295
296 /* Set some default values */
297 memset(&nfs_data, 0, sizeof(nfs_data));
298 nfs_port = -1;
299 nfs_data.version = NFS_MOUNT_VERSION;
300 nfs_data.flags = NFS_MOUNT_NONLM; /* No lockd in nfs root yet */
301 nfs_data.rsize = NFS_DEF_FILE_IO_SIZE;
302 nfs_data.wsize = NFS_DEF_FILE_IO_SIZE;
303 nfs_data.acregmin = NFS_DEF_ACREGMIN;
304 nfs_data.acregmax = NFS_DEF_ACREGMAX;
305 nfs_data.acdirmin = NFS_DEF_ACDIRMIN;
306 nfs_data.acdirmax = NFS_DEF_ACDIRMAX;
307 strcpy(buf, NFS_ROOT);
308
309 /* Process options received from the remote server */
310 root_nfs_parse(root_server_path, buf);
311
312 /* Override them by options set on kernel command-line */
313 root_nfs_parse(name, buf);
314
315 cp = utsname()->nodename;
316 if (strlen(buf) + strlen(cp) > NFS_MAXPATHLEN) {
317 printk(KERN_ERR "Root-NFS: Pathname for remote directory too long.\n");
318 return -1;
319 }
320 sprintf(nfs_export_path, buf, cp);
321
322 return 1; 115 return 1;
323} 116}
324 117
325 118__setup("nfsrootdebug", nfs_root_debug);
326/*
327 * Get NFS server address.
328 */
329static int __init root_nfs_addr(void)
330{
331 if ((servaddr = root_server_addr) == htonl(INADDR_NONE)) {
332 printk(KERN_ERR "Root-NFS: No NFS server available, giving up.\n");
333 return -1;
334 }
335
336 snprintf(nfs_data.hostname, sizeof(nfs_data.hostname),
337 "%pI4", &servaddr);
338 return 0;
339}
340
341/*
342 * Tell the user what's going on.
343 */
344#ifdef NFSROOT_DEBUG
345static void __init root_nfs_print(void)
346{
347 printk(KERN_NOTICE "Root-NFS: Mounting %s on server %s as root\n",
348 nfs_export_path, nfs_data.hostname);
349 printk(KERN_NOTICE "Root-NFS: rsize = %d, wsize = %d, timeo = %d, retrans = %d\n",
350 nfs_data.rsize, nfs_data.wsize, nfs_data.timeo, nfs_data.retrans);
351 printk(KERN_NOTICE "Root-NFS: acreg (min,max) = (%d,%d), acdir (min,max) = (%d,%d)\n",
352 nfs_data.acregmin, nfs_data.acregmax,
353 nfs_data.acdirmin, nfs_data.acdirmax);
354 printk(KERN_NOTICE "Root-NFS: nfsd port = %d, mountd port = %d, flags = %08x\n",
355 nfs_port, mount_port, nfs_data.flags);
356}
357#endif
358
359
360static int __init root_nfs_init(void)
361{
362#ifdef NFSROOT_DEBUG
363 nfs_debug |= NFSDBG_ROOT;
364#endif 119#endif
365 120
366 /*
367 * Decode the root directory path name and NFS options from
368 * the kernel command line. This has to go here in order to
369 * be able to use the client IP address for the remote root
370 * directory (necessary for pure RARP booting).
371 */
372 if (root_nfs_name(nfs_root_name) < 0 ||
373 root_nfs_addr() < 0)
374 return -1;
375
376#ifdef NFSROOT_DEBUG
377 root_nfs_print();
378#endif
379
380 return 0;
381}
382
383
384/* 121/*
385 * Parse NFS server and directory information passed on the kernel 122 * Parse NFS server and directory information passed on the kernel
386 * command line. 123 * command line.
124 *
125 * nfsroot=[<server-ip>:]<root-dir>[,<nfs-options>]
126 *
127 * If there is a "%s" token in the <root-dir> string, it is replaced
128 * by the ASCII-representation of the client's IP address.
387 */ 129 */
388static int __init nfs_root_setup(char *line) 130static int __init nfs_root_setup(char *line)
389{ 131{
390 ROOT_DEV = Root_NFS; 132 ROOT_DEV = Root_NFS;
133
391 if (line[0] == '/' || line[0] == ',' || (line[0] >= '0' && line[0] <= '9')) { 134 if (line[0] == '/' || line[0] == ',' || (line[0] >= '0' && line[0] <= '9')) {
392 strlcpy(nfs_root_name, line, sizeof(nfs_root_name)); 135 strlcpy(nfs_root_parms, line, sizeof(nfs_root_parms));
393 } else { 136 } else {
394 int n = strlen(line) + sizeof(NFS_ROOT) - 1; 137 size_t n = strlen(line) + sizeof(NFS_ROOT) - 1;
395 if (n >= sizeof(nfs_root_name)) 138 if (n >= sizeof(nfs_root_parms))
396 line[sizeof(nfs_root_name) - sizeof(NFS_ROOT) - 2] = '\0'; 139 line[sizeof(nfs_root_parms) - sizeof(NFS_ROOT) - 2] = '\0';
397 sprintf(nfs_root_name, NFS_ROOT, line); 140 sprintf(nfs_root_parms, NFS_ROOT, line);
398 } 141 }
399 root_server_addr = root_nfs_parse_addr(nfs_root_name); 142
143 /*
144 * Extract the IP address of the NFS server containing our
145 * root file system, if one was specified.
146 *
147 * Note: root_nfs_parse_addr() removes the server-ip from
148 * nfs_root_parms, if it exists.
149 */
150 root_server_addr = root_nfs_parse_addr(nfs_root_parms);
151
400 return 1; 152 return 1;
401} 153}
402 154
403__setup("nfsroot=", nfs_root_setup); 155__setup("nfsroot=", nfs_root_setup);
404 156
405/*************************************************************************** 157static int __init root_nfs_copy(char *dest, const char *src,
158 const size_t destlen)
159{
160 if (strlcpy(dest, src, destlen) > destlen)
161 return -1;
162 return 0;
163}
406 164
407 Routines to actually mount the root directory 165static int __init root_nfs_cat(char *dest, const char *src,
166 const size_t destlen)
167{
168 size_t len = strlen(dest);
408 169
409 ***************************************************************************/ 170 if (len && dest[len - 1] != ',')
171 if (strlcat(dest, ",", destlen) > destlen)
172 return -1;
410 173
411/* 174 if (strlcat(dest, src, destlen) > destlen)
412 * Construct sockaddr_in from address and port number. 175 return -1;
413 */ 176 return 0;
414static inline void
415set_sockaddr(struct sockaddr_in *sin, __be32 addr, __be16 port)
416{
417 sin->sin_family = AF_INET;
418 sin->sin_addr.s_addr = addr;
419 sin->sin_port = port;
420} 177}
421 178
422/* 179/*
423 * Query server portmapper for the port of a daemon program. 180 * Parse out root export path and mount options from
181 * passed-in string @incoming.
182 *
183 * Copy the export path into @exppath.
424 */ 184 */
425static int __init root_nfs_getport(int program, int version, int proto) 185static int __init root_nfs_parse_options(char *incoming, char *exppath,
186 const size_t exppathlen)
426{ 187{
427 struct sockaddr_in sin; 188 char *p;
428 189
429 printk(KERN_NOTICE "Looking up port of RPC %d/%d on %pI4\n", 190 /*
430 program, version, &servaddr); 191 * Set the NFS remote path
431 set_sockaddr(&sin, servaddr, 0); 192 */
432 return rpcb_getport_sync(&sin, program, version, proto); 193 p = strsep(&incoming, ",");
433} 194 if (*p != '\0' && strcmp(p, "default") != 0)
195 if (root_nfs_copy(exppath, p, exppathlen))
196 return -1;
434 197
198 /*
199 * @incoming now points to the rest of the string; if it
200 * contains something, append it to our root options buffer
201 */
202 if (incoming != NULL && *incoming != '\0')
203 if (root_nfs_cat(nfs_root_options, incoming,
204 sizeof(nfs_root_options)))
205 return -1;
206 return 0;
207}
435 208
436/* 209/*
437 * Use portmapper to find mountd and nfsd port numbers if not overriden 210 * Decode the export directory path name and NFS options from
438 * by the user. Use defaults if portmapper is not available. 211 * the kernel command line. This has to be done late in order to
439 * XXX: Is there any nfs server with no portmapper? 212 * use a dynamically acquired client IP address for the remote
213 * root directory path.
214 *
215 * Returns zero if successful; otherwise -1 is returned.
440 */ 216 */
441static int __init root_nfs_ports(void) 217static int __init root_nfs_data(char *cmdline)
442{ 218{
443 int port; 219 char mand_options[sizeof("nolock,addr=") + INET_ADDRSTRLEN + 1];
444 int nfsd_ver, mountd_ver; 220 int len, retval = -1;
445 int nfsd_port, mountd_port; 221 char *tmp = NULL;
446 int proto; 222 const size_t tmplen = sizeof(nfs_export_path);
447 223
448 if (nfs_data.flags & NFS_MOUNT_VER3) { 224 tmp = kzalloc(tmplen, GFP_KERNEL);
449 nfsd_ver = NFS3_VERSION; 225 if (tmp == NULL)
450 mountd_ver = NFS_MNT3_VERSION; 226 goto out_nomem;
451 nfsd_port = NFS_PORT; 227 strcpy(tmp, NFS_ROOT);
452 mountd_port = NFS_MNT_PORT; 228
453 } else { 229 if (root_server_path[0] != '\0') {
454 nfsd_ver = NFS2_VERSION; 230 dprintk("Root-NFS: DHCPv4 option 17: %s\n",
455 mountd_ver = NFS_MNT_VERSION; 231 root_server_path);
456 nfsd_port = NFS_PORT; 232 if (root_nfs_parse_options(root_server_path, tmp, tmplen))
457 mountd_port = NFS_MNT_PORT; 233 goto out_optionstoolong;
458 } 234 }
459 235
460 proto = (nfs_data.flags & NFS_MOUNT_TCP) ? IPPROTO_TCP : IPPROTO_UDP; 236 if (cmdline[0] != '\0') {
461 237 dprintk("Root-NFS: nfsroot=%s\n", cmdline);
462 if (nfs_port < 0) { 238 if (root_nfs_parse_options(cmdline, tmp, tmplen))
463 if ((port = root_nfs_getport(NFS_PROGRAM, nfsd_ver, proto)) < 0) { 239 goto out_optionstoolong;
464 printk(KERN_ERR "Root-NFS: Unable to get nfsd port "
465 "number from server, using default\n");
466 port = nfsd_port;
467 }
468 nfs_port = port;
469 dprintk("Root-NFS: Portmapper on server returned %d "
470 "as nfsd port\n", port);
471 } 240 }
472 241
473 if ((port = root_nfs_getport(NFS_MNT_PROGRAM, mountd_ver, proto)) < 0) { 242 /*
474 printk(KERN_ERR "Root-NFS: Unable to get mountd port " 243 * Append mandatory options for nfsroot so they override
475 "number from server, using default\n"); 244 * what has come before
476 port = mountd_port; 245 */
477 } 246 snprintf(mand_options, sizeof(mand_options), "nolock,addr=%pI4",
478 mount_port = port; 247 &servaddr);
479 dprintk("Root-NFS: mountd port is %d\n", port); 248 if (root_nfs_cat(nfs_root_options, mand_options,
249 sizeof(nfs_root_options)))
250 goto out_optionstoolong;
480 251
481 return 0; 252 /*
482} 253 * Set up nfs_root_device. For NFS mounts, this looks like
254 *
255 * server:/path
256 *
257 * At this point, utsname()->nodename contains our local
258 * IP address or hostname, set by ipconfig. If "%s" exists
259 * in tmp, substitute the nodename, then shovel the whole
260 * mess into nfs_root_device.
261 */
262 len = snprintf(nfs_export_path, sizeof(nfs_export_path),
263 tmp, utsname()->nodename);
264 if (len > (int)sizeof(nfs_export_path))
265 goto out_devnametoolong;
266 len = snprintf(nfs_root_device, sizeof(nfs_root_device),
267 "%pI4:%s", &servaddr, nfs_export_path);
268 if (len > (int)sizeof(nfs_root_device))
269 goto out_devnametoolong;
483 270
271 retval = 0;
484 272
485/*
486 * Get a file handle from the server for the directory which is to be
487 * mounted.
488 */
489static int __init root_nfs_get_handle(void)
490{
491 struct sockaddr_in sin;
492 unsigned int auth_flav_len = 0;
493 struct nfs_mount_request request = {
494 .sap = (struct sockaddr *)&sin,
495 .salen = sizeof(sin),
496 .dirpath = nfs_export_path,
497 .version = (nfs_data.flags & NFS_MOUNT_VER3) ?
498 NFS_MNT3_VERSION : NFS_MNT_VERSION,
499 .protocol = (nfs_data.flags & NFS_MOUNT_TCP) ?
500 XPRT_TRANSPORT_TCP : XPRT_TRANSPORT_UDP,
501 .auth_flav_len = &auth_flav_len,
502 };
503 int status = -ENOMEM;
504
505 request.fh = nfs_alloc_fhandle();
506 if (!request.fh)
507 goto out;
508 set_sockaddr(&sin, servaddr, htons(mount_port));
509 status = nfs_mount(&request);
510 if (status < 0)
511 printk(KERN_ERR "Root-NFS: Server returned error %d "
512 "while mounting %s\n", status, nfs_export_path);
513 else {
514 nfs_data.root.size = request.fh->size;
515 memcpy(&nfs_data.root.data, request.fh->data, request.fh->size);
516 }
517 nfs_free_fhandle(request.fh);
518out: 273out:
519 return status; 274 kfree(tmp);
275 return retval;
276out_nomem:
277 printk(KERN_ERR "Root-NFS: could not allocate memory\n");
278 goto out;
279out_optionstoolong:
280 printk(KERN_ERR "Root-NFS: mount options string too long\n");
281 goto out;
282out_devnametoolong:
283 printk(KERN_ERR "Root-NFS: root device name too long.\n");
284 goto out;
520} 285}
521 286
522/* 287/**
523 * Get the NFS port numbers and file handle, and return the prepared 'data' 288 * nfs_root_data - Return prepared 'data' for NFSROOT mount
524 * argument for mount() if everything went OK. Return NULL otherwise. 289 * @root_device: OUT: address of string containing NFSROOT device
290 * @root_data: OUT: address of string containing NFSROOT mount options
291 *
292 * Returns zero and sets @root_device and @root_data if successful,
293 * otherwise -1 is returned.
525 */ 294 */
526void * __init nfs_root_data(void) 295int __init nfs_root_data(char **root_device, char **root_data)
527{ 296{
528 if (root_nfs_init() < 0 297 servaddr = root_server_addr;
529 || root_nfs_ports() < 0 298 if (servaddr == htonl(INADDR_NONE)) {
530 || root_nfs_get_handle() < 0) 299 printk(KERN_ERR "Root-NFS: no NFS server address\n");
531 return NULL; 300 return -1;
532 set_sockaddr((struct sockaddr_in *) &nfs_data.addr, servaddr, htons(nfs_port)); 301 }
533 return (void*)&nfs_data; 302
303 if (root_nfs_data(nfs_root_parms) < 0)
304 return -1;
305
306 *root_device = nfs_root_device;
307 *root_data = nfs_root_options;
308 return 0;
534} 309}