2 * NFS support driver - based on etherboot and U-BOOT's tftp.c
8 /* NOTE: the NFS code is heavily inspired by the NetBSD netboot code (read:
9 * large portions are copied verbatim) as distributed in OSKit 0.97. A few
10 * changes were necessary to adapt the code to Etherboot and to fix several
11 * inconsistencies. Also the RPC message preparation is done "by hand" to
12 * avoid adding netsprintf() which I find hard to understand and use. */
14 /* NOTE 2: Etherboot does not care about things beyond the kernel image, so
15 * it loads the kernel image off the boot server (ARP_SERVER) and does not
16 * access the client root disk (root-path in dhcpd.conf), which would use
17 * ARP_ROOTSERVER. The root disk is something the operating system we are
18 * about to load needs to use. This is different from the OSKit 0.97 logic. */
20 /* NOTE 3: Symlink handling introduced by Anselm M Hoffmeister, 2003-July-14
21 * If a symlink is encountered, it is followed as far as possible (recursion
22 * possible, maximum 16 steps). There is no clearing of ".."'s inside the
23 * path, so please DON'T DO THAT. thx. */
25 /* NOTE 4: NFSv3 support added by Guillaume GARDET, 2016-June-20.
26 * NFSv2 is still used by default. But if server does not support NFSv2, then
27 * NFSv3 is used, if available on NFS server. */
41 #define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
42 #define NFS_RETRY_COUNT 30
45 #define NFS_RPC_DROP 124
47 static int fs_mounted;
48 static unsigned long rpc_id;
49 static int nfs_offset = -1;
51 static const ulong nfs_timeout = CONFIG_NFS_TIMEOUT;
53 static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
54 static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
55 static int filefh3_length; /* (variable) length of filefh when NFSv3 */
57 static enum net_loop_state nfs_download_state;
58 static struct in_addr nfs_server_ip;
59 static int nfs_server_mount_port;
60 static int nfs_server_port;
61 static int nfs_our_port;
62 static int nfs_timeout_count;
64 #define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
65 #define STATE_PRCLOOKUP_PROG_NFS_REQ 2
66 #define STATE_MOUNT_REQ 3
67 #define STATE_UMOUNT_REQ 4
68 #define STATE_LOOKUP_REQ 5
69 #define STATE_READ_REQ 6
70 #define STATE_READLINK_REQ 7
72 static char *nfs_filename;
73 static char *nfs_path;
74 static char nfs_path_buff[2048];
77 #define NFSV3_FLAG 1 << 1
78 static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
80 static inline int store_block(uchar *src, unsigned offset, unsigned len)
82 ulong newsize = offset + len;
83 #ifdef CONFIG_SYS_DIRECT_FLASH_NFS
86 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
87 /* start address in flash? */
88 if (image_load_addr + offset >= flash_info[i].start[0]) {
94 if (rc) { /* Flash is destination for this packet */
95 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
102 #endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
104 void *ptr = map_sysmem(image_load_addr + offset, len);
106 memcpy(ptr, src, len);
110 if (net_boot_file_size < (offset + len))
111 net_boot_file_size = newsize;
115 static char *basename(char *path)
119 fname = path + strlen(path) - 1;
120 while (fname >= path) {
130 static char *dirname(char *path)
134 fname = basename(path);
140 /**************************************************************************
141 RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
142 **************************************************************************/
143 static uint32_t *rpc_add_credentials(uint32_t *p)
145 /* Here's the executive summary on authentication requirements of the
146 * various NFS server implementations: Linux accepts both AUTH_NONE
147 * and AUTH_UNIX authentication (also accepts an empty hostname field
148 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
149 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
150 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
151 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
154 /* Provide an AUTH_UNIX credential. */
155 *p++ = htonl(1); /* AUTH_UNIX */
156 *p++ = htonl(20); /* auth length */
157 *p++ = 0; /* stamp */
158 *p++ = 0; /* hostname string */
161 *p++ = 0; /* auxiliary gid list */
163 /* Provide an AUTH_NONE verifier. */
164 *p++ = 0; /* AUTH_NONE */
165 *p++ = 0; /* auth length */
170 /**************************************************************************
171 RPC_LOOKUP - Lookup RPC Port numbers
172 **************************************************************************/
173 static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
175 struct rpc_t rpc_pkt;
182 rpc_pkt.u.call.id = htonl(id);
183 rpc_pkt.u.call.type = htonl(MSG_CALL);
184 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
185 rpc_pkt.u.call.prog = htonl(rpc_prog);
188 if (supported_nfs_versions & NFSV2_FLAG)
189 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
190 else /* NFSV3_FLAG */
191 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
196 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
198 rpc_pkt.u.call.proc = htonl(rpc_proc);
199 p = rpc_pkt.u.call.data;
202 memcpy(p, data, datalen * sizeof(uint32_t));
204 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
206 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
207 &rpc_pkt.u.data[0], pktlen);
209 if (rpc_prog == PROG_PORTMAP)
211 else if (rpc_prog == PROG_MOUNT)
212 sport = nfs_server_mount_port;
214 sport = nfs_server_port;
216 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
217 nfs_our_port, pktlen);
220 /**************************************************************************
221 RPC_LOOKUP - Lookup RPC Port numbers
222 **************************************************************************/
223 static void rpc_lookup_req(int prog, int ver)
227 data[0] = 0; data[1] = 0; /* auth credential */
228 data[2] = 0; data[3] = 0; /* auth verifier */
229 data[4] = htonl(prog);
230 data[5] = htonl(ver);
231 data[6] = htonl(17); /* IP_UDP */
233 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
236 /**************************************************************************
237 NFS_MOUNT - Mount an NFS Filesystem
238 **************************************************************************/
239 static void nfs_mount_req(char *path)
246 pathlen = strlen(path);
249 p = rpc_add_credentials(p);
251 *p++ = htonl(pathlen);
253 *(p + pathlen / 4) = 0;
254 memcpy(p, path, pathlen);
255 p += (pathlen + 3) / 4;
257 len = (uint32_t *)p - (uint32_t *)&(data[0]);
259 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
262 /**************************************************************************
263 NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
264 **************************************************************************/
265 static void nfs_umountall_req(void)
271 if ((nfs_server_mount_port == -1) || (!fs_mounted))
272 /* Nothing mounted, nothing to umount */
276 p = rpc_add_credentials(p);
278 len = (uint32_t *)p - (uint32_t *)&(data[0]);
280 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
283 /***************************************************************************
284 * NFS_READLINK (AH 2003-07-14)
285 * This procedure is called when read of the first block fails -
286 * this probably happens when it's a directory or a symlink
287 * In case of successful readlink(), the dirname is manipulated,
288 * so that inside the nfs() function a recursion can be done.
289 **************************************************************************/
290 static void nfs_readlink_req(void)
297 p = rpc_add_credentials(p);
299 if (supported_nfs_versions & NFSV2_FLAG) {
300 memcpy(p, filefh, NFS_FHSIZE);
301 p += (NFS_FHSIZE / 4);
302 } else { /* NFSV3_FLAG */
303 *p++ = htonl(filefh3_length);
304 memcpy(p, filefh, filefh3_length);
305 p += (filefh3_length / 4);
308 len = (uint32_t *)p - (uint32_t *)&(data[0]);
310 rpc_req(PROG_NFS, NFS_READLINK, data, len);
313 /**************************************************************************
314 NFS_LOOKUP - Lookup Pathname
315 **************************************************************************/
316 static void nfs_lookup_req(char *fname)
323 fnamelen = strlen(fname);
326 p = rpc_add_credentials(p);
328 if (supported_nfs_versions & NFSV2_FLAG) {
329 memcpy(p, dirfh, NFS_FHSIZE);
330 p += (NFS_FHSIZE / 4);
331 *p++ = htonl(fnamelen);
333 *(p + fnamelen / 4) = 0;
334 memcpy(p, fname, fnamelen);
335 p += (fnamelen + 3) / 4;
337 len = (uint32_t *)p - (uint32_t *)&(data[0]);
339 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
340 } else { /* NFSV3_FLAG */
341 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
342 memcpy(p, dirfh, NFS_FHSIZE);
343 p += (NFS_FHSIZE / 4);
344 *p++ = htonl(fnamelen);
346 *(p + fnamelen / 4) = 0;
347 memcpy(p, fname, fnamelen);
348 p += (fnamelen + 3) / 4;
350 len = (uint32_t *)p - (uint32_t *)&(data[0]);
352 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
356 /**************************************************************************
357 NFS_READ - Read File on NFS Server
358 **************************************************************************/
359 static void nfs_read_req(int offset, int readlen)
366 p = rpc_add_credentials(p);
368 if (supported_nfs_versions & NFSV2_FLAG) {
369 memcpy(p, filefh, NFS_FHSIZE);
370 p += (NFS_FHSIZE / 4);
371 *p++ = htonl(offset);
372 *p++ = htonl(readlen);
374 } else { /* NFSV3_FLAG */
375 *p++ = htonl(filefh3_length);
376 memcpy(p, filefh, filefh3_length);
377 p += (filefh3_length / 4);
378 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
379 *p++ = htonl(offset);
380 *p++ = htonl(readlen);
384 len = (uint32_t *)p - (uint32_t *)&(data[0]);
386 rpc_req(PROG_NFS, NFS_READ, data, len);
389 /**************************************************************************
390 RPC request dispatcher
391 **************************************************************************/
392 static void nfs_send(void)
394 debug("%s\n", __func__);
397 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
398 if (supported_nfs_versions & NFSV2_FLAG)
399 rpc_lookup_req(PROG_MOUNT, 1);
400 else /* NFSV3_FLAG */
401 rpc_lookup_req(PROG_MOUNT, 3);
403 case STATE_PRCLOOKUP_PROG_NFS_REQ:
404 if (supported_nfs_versions & NFSV2_FLAG)
405 rpc_lookup_req(PROG_NFS, 2);
406 else /* NFSV3_FLAG */
407 rpc_lookup_req(PROG_NFS, 3);
409 case STATE_MOUNT_REQ:
410 nfs_mount_req(nfs_path);
412 case STATE_UMOUNT_REQ:
415 case STATE_LOOKUP_REQ:
416 nfs_lookup_req(nfs_filename);
419 nfs_read_req(nfs_offset, nfs_len);
421 case STATE_READLINK_REQ:
427 /**************************************************************************
428 Handlers for the reply from server
429 **************************************************************************/
431 static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
433 struct rpc_t rpc_pkt;
435 memcpy(&rpc_pkt.u.data[0], pkt, len);
437 debug("%s\n", __func__);
439 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
441 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
442 return -NFS_RPC_DROP;
444 if (rpc_pkt.u.reply.rstatus ||
445 rpc_pkt.u.reply.verifier ||
446 rpc_pkt.u.reply.astatus)
451 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
454 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
461 static int nfs_mount_reply(uchar *pkt, unsigned len)
463 struct rpc_t rpc_pkt;
465 debug("%s\n", __func__);
467 memcpy(&rpc_pkt.u.data[0], pkt, len);
469 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
471 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
472 return -NFS_RPC_DROP;
474 if (rpc_pkt.u.reply.rstatus ||
475 rpc_pkt.u.reply.verifier ||
476 rpc_pkt.u.reply.astatus ||
477 rpc_pkt.u.reply.data[0])
481 /* NFSv2 and NFSv3 use same structure */
482 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
487 static int nfs_umountall_reply(uchar *pkt, unsigned len)
489 struct rpc_t rpc_pkt;
491 debug("%s\n", __func__);
493 memcpy(&rpc_pkt.u.data[0], pkt, len);
495 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
497 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
498 return -NFS_RPC_DROP;
500 if (rpc_pkt.u.reply.rstatus ||
501 rpc_pkt.u.reply.verifier ||
502 rpc_pkt.u.reply.astatus)
506 memset(dirfh, 0, sizeof(dirfh));
511 static int nfs_lookup_reply(uchar *pkt, unsigned len)
513 struct rpc_t rpc_pkt;
515 debug("%s\n", __func__);
517 memcpy(&rpc_pkt.u.data[0], pkt, len);
519 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
521 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
522 return -NFS_RPC_DROP;
524 if (rpc_pkt.u.reply.rstatus ||
525 rpc_pkt.u.reply.verifier ||
526 rpc_pkt.u.reply.astatus ||
527 rpc_pkt.u.reply.data[0]) {
528 switch (ntohl(rpc_pkt.u.reply.astatus)) {
529 case NFS_RPC_SUCCESS: /* Not an error */
531 case NFS_RPC_PROG_MISMATCH:
532 /* Remote can't support NFS version */
533 switch (ntohl(rpc_pkt.u.reply.data[0])) {
534 /* Minimal supported NFS version */
536 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
537 (supported_nfs_versions & NFSV2_FLAG) ?
539 ntohl(rpc_pkt.u.reply.data[0]),
540 ntohl(rpc_pkt.u.reply.data[1]));
541 debug("Will retry with NFSv3\n");
542 /* Clear NFSV2_FLAG from supported versions */
543 supported_nfs_versions &= ~NFSV2_FLAG;
544 return -NFS_RPC_PROG_MISMATCH;
547 puts("*** ERROR: NFS version not supported");
548 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
549 (supported_nfs_versions & NFSV2_FLAG) ?
551 ntohl(rpc_pkt.u.reply.data[0]),
552 ntohl(rpc_pkt.u.reply.data[1]));
556 case NFS_RPC_PROG_UNAVAIL:
557 case NFS_RPC_PROC_UNAVAIL:
558 case NFS_RPC_GARBAGE_ARGS:
559 case NFS_RPC_SYSTEM_ERR:
560 default: /* Unknown error on 'accept state' flag */
561 debug("*** ERROR: accept state error (%d)\n",
562 ntohl(rpc_pkt.u.reply.astatus));
568 if (supported_nfs_versions & NFSV2_FLAG) {
569 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
570 return -NFS_RPC_DROP;
571 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
572 } else { /* NFSV3_FLAG */
573 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
574 if (filefh3_length > NFS3_FHSIZE)
575 filefh3_length = NFS3_FHSIZE;
576 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
577 return -NFS_RPC_DROP;
578 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
584 static int nfs3_get_attributes_offset(uint32_t *data)
587 /* 'attributes_follow' flag is TRUE,
588 * so we have attributes on 21 dwords */
589 /* Skip unused values :
592 nlink; 32 bits value,
599 fileid; 64 bits value,
600 atime; 64 bits value,
601 mtime; 64 bits value,
602 ctime; 64 bits value,
606 /* 'attributes_follow' flag is FALSE,
607 * so we don't have any attributes */
612 static int nfs_readlink_reply(uchar *pkt, unsigned len)
614 struct rpc_t rpc_pkt;
616 int nfsv3_data_offset = 0;
618 debug("%s\n", __func__);
620 memcpy((unsigned char *)&rpc_pkt, pkt, len);
622 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
624 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
625 return -NFS_RPC_DROP;
627 if (rpc_pkt.u.reply.rstatus ||
628 rpc_pkt.u.reply.verifier ||
629 rpc_pkt.u.reply.astatus ||
630 rpc_pkt.u.reply.data[0])
633 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
635 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
638 /* new path length */
639 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
641 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
642 return -NFS_RPC_DROP;
644 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
647 strcat(nfs_path, "/");
648 pathlen = strlen(nfs_path);
649 memcpy(nfs_path + pathlen,
650 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
652 nfs_path[pathlen + rlen] = 0;
655 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
662 static int nfs_read_reply(uchar *pkt, unsigned len)
664 struct rpc_t rpc_pkt;
668 debug("%s\n", __func__);
670 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
672 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
674 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
675 return -NFS_RPC_DROP;
677 if (rpc_pkt.u.reply.rstatus ||
678 rpc_pkt.u.reply.verifier ||
679 rpc_pkt.u.reply.astatus ||
680 rpc_pkt.u.reply.data[0]) {
681 if (rpc_pkt.u.reply.rstatus)
683 if (rpc_pkt.u.reply.astatus)
685 return -ntohl(rpc_pkt.u.reply.data[0]);
688 if ((nfs_offset != 0) && !((nfs_offset) %
689 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
691 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
694 if (supported_nfs_versions & NFSV2_FLAG) {
695 rlen = ntohl(rpc_pkt.u.reply.data[18]);
696 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
697 } else { /* NFSV3_FLAG */
698 int nfsv3_data_offset =
699 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
702 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
703 /* Skip unused values :
705 data_size: 32 bits value,
708 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
711 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
714 if (store_block(data_ptr, nfs_offset, rlen))
720 /**************************************************************************
722 **************************************************************************/
723 static void nfs_timeout_handler(void)
725 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
726 puts("\nRetry count exceeded; starting again\n");
730 net_set_timeout_handler(nfs_timeout +
731 nfs_timeout * nfs_timeout_count,
732 nfs_timeout_handler);
737 static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
738 unsigned src, unsigned len)
743 debug("%s\n", __func__);
745 if (len > sizeof(struct rpc_t))
748 if (dest != nfs_our_port)
752 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
753 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
755 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
759 case STATE_PRCLOOKUP_PROG_NFS_REQ:
760 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
762 nfs_state = STATE_MOUNT_REQ;
766 case STATE_MOUNT_REQ:
767 reply = nfs_mount_reply(pkt, len);
768 if (reply == -NFS_RPC_DROP) {
770 } else if (reply == -NFS_RPC_ERR) {
771 puts("*** ERROR: Cannot mount\n");
772 /* just to be sure... */
773 nfs_state = STATE_UMOUNT_REQ;
776 nfs_state = STATE_LOOKUP_REQ;
781 case STATE_UMOUNT_REQ:
782 reply = nfs_umountall_reply(pkt, len);
783 if (reply == -NFS_RPC_DROP) {
785 } else if (reply == -NFS_RPC_ERR) {
786 debug("*** ERROR: Cannot umount\n");
787 net_set_state(NETLOOP_FAIL);
790 net_set_state(nfs_download_state);
794 case STATE_LOOKUP_REQ:
795 reply = nfs_lookup_reply(pkt, len);
796 if (reply == -NFS_RPC_DROP) {
798 } else if (reply == -NFS_RPC_ERR) {
799 puts("*** ERROR: File lookup fail\n");
800 nfs_state = STATE_UMOUNT_REQ;
802 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
803 supported_nfs_versions != 0) {
805 nfs_state = STATE_UMOUNT_REQ;
807 /* And retry with another supported version */
808 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
811 nfs_state = STATE_READ_REQ;
813 nfs_len = NFS_READ_SIZE;
818 case STATE_READLINK_REQ:
819 reply = nfs_readlink_reply(pkt, len);
820 if (reply == -NFS_RPC_DROP) {
822 } else if (reply == -NFS_RPC_ERR) {
823 puts("*** ERROR: Symlink fail\n");
824 nfs_state = STATE_UMOUNT_REQ;
827 debug("Symlink --> %s\n", nfs_path);
828 nfs_filename = basename(nfs_path);
829 nfs_path = dirname(nfs_path);
831 nfs_state = STATE_MOUNT_REQ;
837 rlen = nfs_read_reply(pkt, len);
838 if (rlen == -NFS_RPC_DROP)
840 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
844 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
846 nfs_state = STATE_READLINK_REQ;
850 nfs_download_state = NETLOOP_SUCCESS;
852 debug("NFS READ error (%d)\n", rlen);
853 nfs_state = STATE_UMOUNT_REQ;
863 debug("%s\n", __func__);
864 nfs_download_state = NETLOOP_FAIL;
866 nfs_server_ip = net_server_ip;
867 nfs_path = (char *)nfs_path_buff;
869 if (nfs_path == NULL) {
870 net_set_state(NETLOOP_FAIL);
871 printf("*** ERROR: Fail allocate memory\n");
875 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
876 sizeof(nfs_path_buff))) {
877 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
878 net_ip.s_addr & 0xFF,
879 (net_ip.s_addr >> 8) & 0xFF,
880 (net_ip.s_addr >> 16) & 0xFF,
881 (net_ip.s_addr >> 24) & 0xFF);
883 printf("*** Warning: no boot file name; using '%s'\n",
887 nfs_filename = basename(nfs_path);
888 nfs_path = dirname(nfs_path);
890 printf("Using %s device\n", eth_get_name());
892 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
893 &nfs_server_ip, &net_ip);
895 /* Check if we need to send across this subnet */
896 if (net_gateway.s_addr && net_netmask.s_addr) {
897 struct in_addr our_net;
898 struct in_addr server_net;
900 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
901 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
902 if (our_net.s_addr != server_net.s_addr)
903 printf("; sending through gateway %pI4",
906 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
908 if (net_boot_file_expected_size_in_blocks) {
909 printf(" Size is 0x%x Bytes = ",
910 net_boot_file_expected_size_in_blocks << 9);
911 print_size(net_boot_file_expected_size_in_blocks << 9, "");
913 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
915 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
916 net_set_udp_handler(nfs_handler);
918 nfs_timeout_count = 0;
919 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
921 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
925 /* zero out server ether in case the server ip has changed */
926 memset(net_server_ethaddr, 0, 6);