nfsroot.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. /*
  2. * Copyright (C) 1995, 1996 Gero Kuhlmann <gero@gkminix.han.de>
  3. *
  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.
  6. * (2) Handle RPC negotiation with the system which replied to RARP or
  7. * was reported as a boot server by BOOTP or manually.
  8. * (3) The actual mounting is done later, when init() is running.
  9. *
  10. *
  11. * Changes:
  12. *
  13. * Alan Cox : Removed get_address name clash with FPU.
  14. * Alan Cox : Reformatted a bit.
  15. * Gero Kuhlmann : Code cleanup
  16. * Michael Rausch : Fixed recognition of an incoming RARP answer.
  17. * Martin Mares : (2.0) Auto-configuration via BOOTP supported.
  18. * Martin Mares : Manual selection of interface & BOOTP/RARP.
  19. * Martin Mares : Using network routes instead of host routes,
  20. * allowing the default configuration to be used
  21. * for normal operation of the host.
  22. * Martin Mares : Randomized timer with exponential backoff
  23. * installed to minimize network congestion.
  24. * Martin Mares : Code cleanup.
  25. * Martin Mares : (2.1) BOOTP and RARP made configuration options.
  26. * Martin Mares : Server hostname generation fixed.
  27. * Gerd Knorr : Fixed wired inode handling
  28. * Martin Mares : (2.2) "0.0.0.0" addresses from command line ignored.
  29. * Martin Mares : RARP replies not tested for server address.
  30. * Gero Kuhlmann : (2.3) Some bug fixes and code cleanup again (please
  31. * send me your new patches _before_ bothering
  32. * Linus so that I don' always have to cleanup
  33. * _afterwards_ - thanks)
  34. * Gero Kuhlmann : Last changes of Martin Mares undone.
  35. * Gero Kuhlmann : RARP replies are tested for specified server
  36. * again. However, it's now possible to have
  37. * different RARP and NFS servers.
  38. * Gero Kuhlmann : "0.0.0.0" addresses from command line are
  39. * now mapped to INADDR_NONE.
  40. * Gero Kuhlmann : Fixed a bug which prevented BOOTP path name
  41. * from being used (thanks to Leo Spiekman)
  42. * Andy Walker : Allow to specify the NFS server in nfs_root
  43. * without giving a path name
  44. * Swen Thümmler : Allow to specify the NFS options in nfs_root
  45. * without giving a path name. Fix BOOTP request
  46. * for domainname (domainname is NIS domain, not
  47. * DNS domain!). Skip dummy devices for BOOTP.
  48. * Jacek Zapala : Fixed a bug which prevented server-ip address
  49. * from nfsroot parameter from being used.
  50. * Olaf Kirch : Adapted to new NFS code.
  51. * Jakub Jelinek : Free used code segment.
  52. * Marko Kohtala : Fixed some bugs.
  53. * Martin Mares : Debug message cleanup
  54. * Martin Mares : Changed to use the new generic IP layer autoconfig
  55. * code. BOOTP and RARP moved there.
  56. * Martin Mares : Default path now contains host name instead of
  57. * host IP address (but host name defaults to IP
  58. * address anyway).
  59. * Martin Mares : Use root_server_addr appropriately during setup.
  60. * Martin Mares : Rewrote parameter parsing, now hopefully giving
  61. * correct overriding.
  62. * Trond Myklebust : Add in preliminary support for NFSv3 and TCP.
  63. * Fix bug in root_nfs_addr(). nfs_data.namlen
  64. * is NOT for the length of the hostname.
  65. * Hua Qin : Support for mounting root file system via
  66. * NFS over TCP.
  67. * Fabian Frederick: Option parser rebuilt (using parser lib)
  68. */
  69. #include <linux/types.h>
  70. #include <linux/string.h>
  71. #include <linux/kernel.h>
  72. #include <linux/time.h>
  73. #include <linux/fs.h>
  74. #include <linux/init.h>
  75. #include <linux/sunrpc/clnt.h>
  76. #include <linux/sunrpc/xprtsock.h>
  77. #include <linux/nfs.h>
  78. #include <linux/nfs_fs.h>
  79. #include <linux/nfs_mount.h>
  80. #include <linux/in.h>
  81. #include <linux/major.h>
  82. #include <linux/utsname.h>
  83. #include <linux/inet.h>
  84. #include <linux/root_dev.h>
  85. #include <net/ipconfig.h>
  86. #include <linux/parser.h>
  87. /* Define this to allow debugging output */
  88. #undef NFSROOT_DEBUG
  89. #define NFSDBG_FACILITY NFSDBG_ROOT
  90. /* Default path we try to mount. "%s" gets replaced by our IP address */
  91. #define NFS_ROOT "/tftpboot/%s"
  92. /* Parameters passed from the kernel command line */
  93. static char nfs_root_name[256] __initdata = "";
  94. /* Address of NFS server */
  95. static __be32 servaddr __initdata = 0;
  96. /* Name of directory to mount */
  97. static char nfs_path[NFS_MAXPATHLEN] __initdata = { 0, };
  98. /* NFS-related data */
  99. static struct nfs_mount_data nfs_data __initdata = { 0, };/* NFS mount info */
  100. static int nfs_port __initdata = 0; /* Port to connect to for NFS */
  101. static int mount_port __initdata = 0; /* Mount daemon port number */
  102. /***************************************************************************
  103. Parsing of options
  104. ***************************************************************************/
  105. enum {
  106. /* Options that take integer arguments */
  107. Opt_port, Opt_rsize, Opt_wsize, Opt_timeo, Opt_retrans, Opt_acregmin,
  108. Opt_acregmax, Opt_acdirmin, Opt_acdirmax,
  109. /* Options that take no arguments */
  110. Opt_soft, Opt_hard, Opt_intr,
  111. Opt_nointr, Opt_posix, Opt_noposix, Opt_cto, Opt_nocto, Opt_ac,
  112. Opt_noac, Opt_lock, Opt_nolock, Opt_v2, Opt_v3, Opt_udp, Opt_tcp,
  113. Opt_acl, Opt_noacl,
  114. /* Error token */
  115. Opt_err
  116. };
  117. static match_table_t __initdata tokens = {
  118. {Opt_port, "port=%u"},
  119. {Opt_rsize, "rsize=%u"},
  120. {Opt_wsize, "wsize=%u"},
  121. {Opt_timeo, "timeo=%u"},
  122. {Opt_retrans, "retrans=%u"},
  123. {Opt_acregmin, "acregmin=%u"},
  124. {Opt_acregmax, "acregmax=%u"},
  125. {Opt_acdirmin, "acdirmin=%u"},
  126. {Opt_acdirmax, "acdirmax=%u"},
  127. {Opt_soft, "soft"},
  128. {Opt_hard, "hard"},
  129. {Opt_intr, "intr"},
  130. {Opt_nointr, "nointr"},
  131. {Opt_posix, "posix"},
  132. {Opt_noposix, "noposix"},
  133. {Opt_cto, "cto"},
  134. {Opt_nocto, "nocto"},
  135. {Opt_ac, "ac"},
  136. {Opt_noac, "noac"},
  137. {Opt_lock, "lock"},
  138. {Opt_nolock, "nolock"},
  139. {Opt_v2, "nfsvers=2"},
  140. {Opt_v2, "v2"},
  141. {Opt_v3, "nfsvers=3"},
  142. {Opt_v3, "v3"},
  143. {Opt_udp, "proto=udp"},
  144. {Opt_udp, "udp"},
  145. {Opt_tcp, "proto=tcp"},
  146. {Opt_tcp, "tcp"},
  147. {Opt_acl, "acl"},
  148. {Opt_noacl, "noacl"},
  149. {Opt_err, NULL}
  150. };
  151. /*
  152. * Parse option string.
  153. */
  154. static int __init root_nfs_parse(char *name, char *buf)
  155. {
  156. char *p;
  157. substring_t args[MAX_OPT_ARGS];
  158. int option;
  159. if (!name)
  160. return 1;
  161. /* Set the NFS remote path */
  162. p = strsep(&name, ",");
  163. if (p[0] != '\0' && strcmp(p, "default") != 0)
  164. strlcpy(buf, p, NFS_MAXPATHLEN);
  165. while ((p = strsep (&name, ",")) != NULL) {
  166. int token;
  167. if (!*p)
  168. continue;
  169. token = match_token(p, tokens, args);
  170. /* %u tokens only. Beware if you add new tokens! */
  171. if (token < Opt_soft && match_int(&args[0], &option))
  172. return 0;
  173. switch (token) {
  174. case Opt_port:
  175. nfs_port = option;
  176. break;
  177. case Opt_rsize:
  178. nfs_data.rsize = option;
  179. break;
  180. case Opt_wsize:
  181. nfs_data.wsize = option;
  182. break;
  183. case Opt_timeo:
  184. nfs_data.timeo = option;
  185. break;
  186. case Opt_retrans:
  187. nfs_data.retrans = option;
  188. break;
  189. case Opt_acregmin:
  190. nfs_data.acregmin = option;
  191. break;
  192. case Opt_acregmax:
  193. nfs_data.acregmax = option;
  194. break;
  195. case Opt_acdirmin:
  196. nfs_data.acdirmin = option;
  197. break;
  198. case Opt_acdirmax:
  199. nfs_data.acdirmax = option;
  200. break;
  201. case Opt_soft:
  202. nfs_data.flags |= NFS_MOUNT_SOFT;
  203. break;
  204. case Opt_hard:
  205. nfs_data.flags &= ~NFS_MOUNT_SOFT;
  206. break;
  207. case Opt_intr:
  208. case Opt_nointr:
  209. break;
  210. case Opt_posix:
  211. nfs_data.flags |= NFS_MOUNT_POSIX;
  212. break;
  213. case Opt_noposix:
  214. nfs_data.flags &= ~NFS_MOUNT_POSIX;
  215. break;
  216. case Opt_cto:
  217. nfs_data.flags &= ~NFS_MOUNT_NOCTO;
  218. break;
  219. case Opt_nocto:
  220. nfs_data.flags |= NFS_MOUNT_NOCTO;
  221. break;
  222. case Opt_ac:
  223. nfs_data.flags &= ~NFS_MOUNT_NOAC;
  224. break;
  225. case Opt_noac:
  226. nfs_data.flags |= NFS_MOUNT_NOAC;
  227. break;
  228. case Opt_lock:
  229. nfs_data.flags &= ~NFS_MOUNT_NONLM;
  230. break;
  231. case Opt_nolock:
  232. nfs_data.flags |= NFS_MOUNT_NONLM;
  233. break;
  234. case Opt_v2:
  235. nfs_data.flags &= ~NFS_MOUNT_VER3;
  236. break;
  237. case Opt_v3:
  238. nfs_data.flags |= NFS_MOUNT_VER3;
  239. break;
  240. case Opt_udp:
  241. nfs_data.flags &= ~NFS_MOUNT_TCP;
  242. break;
  243. case Opt_tcp:
  244. nfs_data.flags |= NFS_MOUNT_TCP;
  245. break;
  246. case Opt_acl:
  247. nfs_data.flags &= ~NFS_MOUNT_NOACL;
  248. break;
  249. case Opt_noacl:
  250. nfs_data.flags |= NFS_MOUNT_NOACL;
  251. break;
  252. default:
  253. printk(KERN_WARNING "Root-NFS: unknown "
  254. "option: %s\n", p);
  255. return 0;
  256. }
  257. }
  258. return 1;
  259. }
  260. /*
  261. * Prepare the NFS data structure and parse all options.
  262. */
  263. static int __init root_nfs_name(char *name)
  264. {
  265. static char buf[NFS_MAXPATHLEN] __initdata;
  266. char *cp;
  267. /* Set some default values */
  268. memset(&nfs_data, 0, sizeof(nfs_data));
  269. nfs_port = -1;
  270. nfs_data.version = NFS_MOUNT_VERSION;
  271. nfs_data.flags = NFS_MOUNT_NONLM; /* No lockd in nfs root yet */
  272. nfs_data.rsize = NFS_DEF_FILE_IO_SIZE;
  273. nfs_data.wsize = NFS_DEF_FILE_IO_SIZE;
  274. nfs_data.acregmin = NFS_DEF_ACREGMIN;
  275. nfs_data.acregmax = NFS_DEF_ACREGMAX;
  276. nfs_data.acdirmin = NFS_DEF_ACDIRMIN;
  277. nfs_data.acdirmax = NFS_DEF_ACDIRMAX;
  278. strcpy(buf, NFS_ROOT);
  279. /* Process options received from the remote server */
  280. root_nfs_parse(root_server_path, buf);
  281. /* Override them by options set on kernel command-line */
  282. root_nfs_parse(name, buf);
  283. cp = utsname()->nodename;
  284. if (strlen(buf) + strlen(cp) > NFS_MAXPATHLEN) {
  285. printk(KERN_ERR "Root-NFS: Pathname for remote directory too long.\n");
  286. return -1;
  287. }
  288. sprintf(nfs_path, buf, cp);
  289. return 1;
  290. }
  291. /*
  292. * Get NFS server address.
  293. */
  294. static int __init root_nfs_addr(void)
  295. {
  296. if ((servaddr = root_server_addr) == htonl(INADDR_NONE)) {
  297. printk(KERN_ERR "Root-NFS: No NFS server available, giving up.\n");
  298. return -1;
  299. }
  300. snprintf(nfs_data.hostname, sizeof(nfs_data.hostname),
  301. "%u.%u.%u.%u", NIPQUAD(servaddr));
  302. return 0;
  303. }
  304. /*
  305. * Tell the user what's going on.
  306. */
  307. #ifdef NFSROOT_DEBUG
  308. static void __init root_nfs_print(void)
  309. {
  310. printk(KERN_NOTICE "Root-NFS: Mounting %s on server %s as root\n",
  311. nfs_path, nfs_data.hostname);
  312. printk(KERN_NOTICE "Root-NFS: rsize = %d, wsize = %d, timeo = %d, retrans = %d\n",
  313. nfs_data.rsize, nfs_data.wsize, nfs_data.timeo, nfs_data.retrans);
  314. printk(KERN_NOTICE "Root-NFS: acreg (min,max) = (%d,%d), acdir (min,max) = (%d,%d)\n",
  315. nfs_data.acregmin, nfs_data.acregmax,
  316. nfs_data.acdirmin, nfs_data.acdirmax);
  317. printk(KERN_NOTICE "Root-NFS: nfsd port = %d, mountd port = %d, flags = %08x\n",
  318. nfs_port, mount_port, nfs_data.flags);
  319. }
  320. #endif
  321. static int __init root_nfs_init(void)
  322. {
  323. #ifdef NFSROOT_DEBUG
  324. nfs_debug |= NFSDBG_ROOT;
  325. #endif
  326. /*
  327. * Decode the root directory path name and NFS options from
  328. * the kernel command line. This has to go here in order to
  329. * be able to use the client IP address for the remote root
  330. * directory (necessary for pure RARP booting).
  331. */
  332. if (root_nfs_name(nfs_root_name) < 0 ||
  333. root_nfs_addr() < 0)
  334. return -1;
  335. #ifdef NFSROOT_DEBUG
  336. root_nfs_print();
  337. #endif
  338. return 0;
  339. }
  340. /*
  341. * Parse NFS server and directory information passed on the kernel
  342. * command line.
  343. */
  344. static int __init nfs_root_setup(char *line)
  345. {
  346. ROOT_DEV = Root_NFS;
  347. if (line[0] == '/' || line[0] == ',' || (line[0] >= '0' && line[0] <= '9')) {
  348. strlcpy(nfs_root_name, line, sizeof(nfs_root_name));
  349. } else {
  350. int n = strlen(line) + sizeof(NFS_ROOT) - 1;
  351. if (n >= sizeof(nfs_root_name))
  352. line[sizeof(nfs_root_name) - sizeof(NFS_ROOT) - 2] = '\0';
  353. sprintf(nfs_root_name, NFS_ROOT, line);
  354. }
  355. root_server_addr = root_nfs_parse_addr(nfs_root_name);
  356. return 1;
  357. }
  358. __setup("nfsroot=", nfs_root_setup);
  359. /***************************************************************************
  360. Routines to actually mount the root directory
  361. ***************************************************************************/
  362. /*
  363. * Construct sockaddr_in from address and port number.
  364. */
  365. static inline void
  366. set_sockaddr(struct sockaddr_in *sin, __be32 addr, __be16 port)
  367. {
  368. sin->sin_family = AF_INET;
  369. sin->sin_addr.s_addr = addr;
  370. sin->sin_port = port;
  371. }
  372. /*
  373. * Query server portmapper for the port of a daemon program.
  374. */
  375. static int __init root_nfs_getport(int program, int version, int proto)
  376. {
  377. struct sockaddr_in sin;
  378. printk(KERN_NOTICE "Looking up port of RPC %d/%d on %u.%u.%u.%u\n",
  379. program, version, NIPQUAD(servaddr));
  380. set_sockaddr(&sin, servaddr, 0);
  381. return rpcb_getport_sync(&sin, program, version, proto);
  382. }
  383. /*
  384. * Use portmapper to find mountd and nfsd port numbers if not overriden
  385. * by the user. Use defaults if portmapper is not available.
  386. * XXX: Is there any nfs server with no portmapper?
  387. */
  388. static int __init root_nfs_ports(void)
  389. {
  390. int port;
  391. int nfsd_ver, mountd_ver;
  392. int nfsd_port, mountd_port;
  393. int proto;
  394. if (nfs_data.flags & NFS_MOUNT_VER3) {
  395. nfsd_ver = NFS3_VERSION;
  396. mountd_ver = NFS_MNT3_VERSION;
  397. nfsd_port = NFS_PORT;
  398. mountd_port = NFS_MNT_PORT;
  399. } else {
  400. nfsd_ver = NFS2_VERSION;
  401. mountd_ver = NFS_MNT_VERSION;
  402. nfsd_port = NFS_PORT;
  403. mountd_port = NFS_MNT_PORT;
  404. }
  405. proto = (nfs_data.flags & NFS_MOUNT_TCP) ? IPPROTO_TCP : IPPROTO_UDP;
  406. if (nfs_port < 0) {
  407. if ((port = root_nfs_getport(NFS_PROGRAM, nfsd_ver, proto)) < 0) {
  408. printk(KERN_ERR "Root-NFS: Unable to get nfsd port "
  409. "number from server, using default\n");
  410. port = nfsd_port;
  411. }
  412. nfs_port = port;
  413. dprintk("Root-NFS: Portmapper on server returned %d "
  414. "as nfsd port\n", port);
  415. }
  416. if ((port = root_nfs_getport(NFS_MNT_PROGRAM, mountd_ver, proto)) < 0) {
  417. printk(KERN_ERR "Root-NFS: Unable to get mountd port "
  418. "number from server, using default\n");
  419. port = mountd_port;
  420. }
  421. mount_port = port;
  422. dprintk("Root-NFS: mountd port is %d\n", port);
  423. return 0;
  424. }
  425. /*
  426. * Get a file handle from the server for the directory which is to be
  427. * mounted.
  428. */
  429. static int __init root_nfs_get_handle(void)
  430. {
  431. struct nfs_fh fh;
  432. struct sockaddr_in sin;
  433. int status;
  434. int protocol = (nfs_data.flags & NFS_MOUNT_TCP) ?
  435. XPRT_TRANSPORT_TCP : XPRT_TRANSPORT_UDP;
  436. int version = (nfs_data.flags & NFS_MOUNT_VER3) ?
  437. NFS_MNT3_VERSION : NFS_MNT_VERSION;
  438. set_sockaddr(&sin, servaddr, htons(mount_port));
  439. status = nfs_mount((struct sockaddr *) &sin, sizeof(sin), NULL,
  440. nfs_path, version, protocol, &fh);
  441. if (status < 0)
  442. printk(KERN_ERR "Root-NFS: Server returned error %d "
  443. "while mounting %s\n", status, nfs_path);
  444. else {
  445. nfs_data.root.size = fh.size;
  446. memcpy(nfs_data.root.data, fh.data, fh.size);
  447. }
  448. return status;
  449. }
  450. /*
  451. * Get the NFS port numbers and file handle, and return the prepared 'data'
  452. * argument for mount() if everything went OK. Return NULL otherwise.
  453. */
  454. void * __init nfs_root_data(void)
  455. {
  456. if (root_nfs_init() < 0
  457. || root_nfs_ports() < 0
  458. || root_nfs_get_handle() < 0)
  459. return NULL;
  460. set_sockaddr((struct sockaddr_in *) &nfs_data.addr, servaddr, htons(nfs_port));
  461. return (void*)&nfs_data;
  462. }