nfsroot.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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