2 * NFS support driver - based on etherboot and U-BOOT's tftp.c
4 * Masami Komiya <mkomiya@sonare.it> 2004
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
43 #ifndef CONFIG_NFS_TIMEOUT
44 # define NFS_TIMEOUT 2000UL
46 # define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
50 #define NFS_RPC_DROP 124
52 static int fs_mounted;
53 static unsigned long rpc_id;
54 static int nfs_offset = -1;
56 static ulong nfs_timeout = NFS_TIMEOUT;
58 static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
59 static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
60 static int filefh3_length; /* (variable) length of filefh when NFSv3 */
62 static enum net_loop_state nfs_download_state;
63 static struct in_addr nfs_server_ip;
64 static int nfs_server_mount_port;
65 static int nfs_server_port;
66 static int nfs_our_port;
67 static int nfs_timeout_count;
69 #define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
70 #define STATE_PRCLOOKUP_PROG_NFS_REQ 2
71 #define STATE_MOUNT_REQ 3
72 #define STATE_UMOUNT_REQ 4
73 #define STATE_LOOKUP_REQ 5
74 #define STATE_READ_REQ 6
75 #define STATE_READLINK_REQ 7
77 static char *nfs_filename;
78 static char *nfs_path;
79 static char nfs_path_buff[2048];
82 #define NFSV3_FLAG 1 << 1
83 static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
85 static inline int store_block(uchar *src, unsigned offset, unsigned len)
87 ulong newsize = offset + len;
88 #ifdef CONFIG_SYS_DIRECT_FLASH_NFS
91 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
92 /* start address in flash? */
93 if (image_load_addr + offset >= flash_info[i].start[0]) {
99 if (rc) { /* Flash is destination for this packet */
100 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
107 #endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
109 void *ptr = map_sysmem(image_load_addr + offset, len);
111 memcpy(ptr, src, len);
115 if (net_boot_file_size < (offset + len))
116 net_boot_file_size = newsize;
120 static char *basename(char *path)
124 fname = path + strlen(path) - 1;
125 while (fname >= path) {
135 static char *dirname(char *path)
139 fname = basename(path);
145 /**************************************************************************
146 RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
147 **************************************************************************/
148 static uint32_t *rpc_add_credentials(uint32_t *p)
150 /* Here's the executive summary on authentication requirements of the
151 * various NFS server implementations: Linux accepts both AUTH_NONE
152 * and AUTH_UNIX authentication (also accepts an empty hostname field
153 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
154 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
155 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
156 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
159 /* Provide an AUTH_UNIX credential. */
160 *p++ = htonl(1); /* AUTH_UNIX */
161 *p++ = htonl(20); /* auth length */
162 *p++ = 0; /* stamp */
163 *p++ = 0; /* hostname string */
166 *p++ = 0; /* auxiliary gid list */
168 /* Provide an AUTH_NONE verifier. */
169 *p++ = 0; /* AUTH_NONE */
170 *p++ = 0; /* auth length */
175 /**************************************************************************
176 RPC_LOOKUP - Lookup RPC Port numbers
177 **************************************************************************/
178 static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
180 struct rpc_t rpc_pkt;
187 rpc_pkt.u.call.id = htonl(id);
188 rpc_pkt.u.call.type = htonl(MSG_CALL);
189 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
190 rpc_pkt.u.call.prog = htonl(rpc_prog);
193 if (supported_nfs_versions & NFSV2_FLAG)
194 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
195 else /* NFSV3_FLAG */
196 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
201 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
203 rpc_pkt.u.call.proc = htonl(rpc_proc);
204 p = rpc_pkt.u.call.data;
207 memcpy(p, data, datalen * sizeof(uint32_t));
209 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
211 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
212 &rpc_pkt.u.data[0], pktlen);
214 if (rpc_prog == PROG_PORTMAP)
216 else if (rpc_prog == PROG_MOUNT)
217 sport = nfs_server_mount_port;
219 sport = nfs_server_port;
221 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
222 nfs_our_port, pktlen);
225 /**************************************************************************
226 RPC_LOOKUP - Lookup RPC Port numbers
227 **************************************************************************/
228 static void rpc_lookup_req(int prog, int ver)
232 data[0] = 0; data[1] = 0; /* auth credential */
233 data[2] = 0; data[3] = 0; /* auth verifier */
234 data[4] = htonl(prog);
235 data[5] = htonl(ver);
236 data[6] = htonl(17); /* IP_UDP */
238 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
241 /**************************************************************************
242 NFS_MOUNT - Mount an NFS Filesystem
243 **************************************************************************/
244 static void nfs_mount_req(char *path)
251 pathlen = strlen(path);
254 p = rpc_add_credentials(p);
256 *p++ = htonl(pathlen);
258 *(p + pathlen / 4) = 0;
259 memcpy(p, path, pathlen);
260 p += (pathlen + 3) / 4;
262 len = (uint32_t *)p - (uint32_t *)&(data[0]);
264 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
267 /**************************************************************************
268 NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
269 **************************************************************************/
270 static void nfs_umountall_req(void)
276 if ((nfs_server_mount_port == -1) || (!fs_mounted))
277 /* Nothing mounted, nothing to umount */
281 p = rpc_add_credentials(p);
283 len = (uint32_t *)p - (uint32_t *)&(data[0]);
285 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
288 /***************************************************************************
289 * NFS_READLINK (AH 2003-07-14)
290 * This procedure is called when read of the first block fails -
291 * this probably happens when it's a directory or a symlink
292 * In case of successful readlink(), the dirname is manipulated,
293 * so that inside the nfs() function a recursion can be done.
294 **************************************************************************/
295 static void nfs_readlink_req(void)
302 p = rpc_add_credentials(p);
304 if (supported_nfs_versions & NFSV2_FLAG) {
305 memcpy(p, filefh, NFS_FHSIZE);
306 p += (NFS_FHSIZE / 4);
307 } else { /* NFSV3_FLAG */
308 *p++ = htonl(filefh3_length);
309 memcpy(p, filefh, filefh3_length);
310 p += (filefh3_length / 4);
313 len = (uint32_t *)p - (uint32_t *)&(data[0]);
315 rpc_req(PROG_NFS, NFS_READLINK, data, len);
318 /**************************************************************************
319 NFS_LOOKUP - Lookup Pathname
320 **************************************************************************/
321 static void nfs_lookup_req(char *fname)
328 fnamelen = strlen(fname);
331 p = rpc_add_credentials(p);
333 if (supported_nfs_versions & NFSV2_FLAG) {
334 memcpy(p, dirfh, NFS_FHSIZE);
335 p += (NFS_FHSIZE / 4);
336 *p++ = htonl(fnamelen);
338 *(p + fnamelen / 4) = 0;
339 memcpy(p, fname, fnamelen);
340 p += (fnamelen + 3) / 4;
342 len = (uint32_t *)p - (uint32_t *)&(data[0]);
344 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
345 } else { /* NFSV3_FLAG */
346 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
347 memcpy(p, dirfh, NFS_FHSIZE);
348 p += (NFS_FHSIZE / 4);
349 *p++ = htonl(fnamelen);
351 *(p + fnamelen / 4) = 0;
352 memcpy(p, fname, fnamelen);
353 p += (fnamelen + 3) / 4;
355 len = (uint32_t *)p - (uint32_t *)&(data[0]);
357 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
361 /**************************************************************************
362 NFS_READ - Read File on NFS Server
363 **************************************************************************/
364 static void nfs_read_req(int offset, int readlen)
371 p = rpc_add_credentials(p);
373 if (supported_nfs_versions & NFSV2_FLAG) {
374 memcpy(p, filefh, NFS_FHSIZE);
375 p += (NFS_FHSIZE / 4);
376 *p++ = htonl(offset);
377 *p++ = htonl(readlen);
379 } else { /* NFSV3_FLAG */
380 *p++ = htonl(filefh3_length);
381 memcpy(p, filefh, filefh3_length);
382 p += (filefh3_length / 4);
383 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
384 *p++ = htonl(offset);
385 *p++ = htonl(readlen);
389 len = (uint32_t *)p - (uint32_t *)&(data[0]);
391 rpc_req(PROG_NFS, NFS_READ, data, len);
394 /**************************************************************************
395 RPC request dispatcher
396 **************************************************************************/
397 static void nfs_send(void)
399 debug("%s\n", __func__);
402 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
403 if (supported_nfs_versions & NFSV2_FLAG)
404 rpc_lookup_req(PROG_MOUNT, 1);
405 else /* NFSV3_FLAG */
406 rpc_lookup_req(PROG_MOUNT, 3);
408 case STATE_PRCLOOKUP_PROG_NFS_REQ:
409 if (supported_nfs_versions & NFSV2_FLAG)
410 rpc_lookup_req(PROG_NFS, 2);
411 else /* NFSV3_FLAG */
412 rpc_lookup_req(PROG_NFS, 3);
414 case STATE_MOUNT_REQ:
415 nfs_mount_req(nfs_path);
417 case STATE_UMOUNT_REQ:
420 case STATE_LOOKUP_REQ:
421 nfs_lookup_req(nfs_filename);
424 nfs_read_req(nfs_offset, nfs_len);
426 case STATE_READLINK_REQ:
432 /**************************************************************************
433 Handlers for the reply from server
434 **************************************************************************/
436 static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
438 struct rpc_t rpc_pkt;
440 memcpy(&rpc_pkt.u.data[0], pkt, len);
442 debug("%s\n", __func__);
444 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
446 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
447 return -NFS_RPC_DROP;
449 if (rpc_pkt.u.reply.rstatus ||
450 rpc_pkt.u.reply.verifier ||
451 rpc_pkt.u.reply.astatus)
456 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
459 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
466 static int nfs_mount_reply(uchar *pkt, unsigned len)
468 struct rpc_t rpc_pkt;
470 debug("%s\n", __func__);
472 memcpy(&rpc_pkt.u.data[0], pkt, len);
474 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
476 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
477 return -NFS_RPC_DROP;
479 if (rpc_pkt.u.reply.rstatus ||
480 rpc_pkt.u.reply.verifier ||
481 rpc_pkt.u.reply.astatus ||
482 rpc_pkt.u.reply.data[0])
486 /* NFSv2 and NFSv3 use same structure */
487 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
492 static int nfs_umountall_reply(uchar *pkt, unsigned len)
494 struct rpc_t rpc_pkt;
496 debug("%s\n", __func__);
498 memcpy(&rpc_pkt.u.data[0], pkt, len);
500 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
502 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
503 return -NFS_RPC_DROP;
505 if (rpc_pkt.u.reply.rstatus ||
506 rpc_pkt.u.reply.verifier ||
507 rpc_pkt.u.reply.astatus)
511 memset(dirfh, 0, sizeof(dirfh));
516 static int nfs_lookup_reply(uchar *pkt, unsigned len)
518 struct rpc_t rpc_pkt;
520 debug("%s\n", __func__);
522 memcpy(&rpc_pkt.u.data[0], pkt, len);
524 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
526 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
527 return -NFS_RPC_DROP;
529 if (rpc_pkt.u.reply.rstatus ||
530 rpc_pkt.u.reply.verifier ||
531 rpc_pkt.u.reply.astatus ||
532 rpc_pkt.u.reply.data[0]) {
533 switch (ntohl(rpc_pkt.u.reply.astatus)) {
534 case NFS_RPC_SUCCESS: /* Not an error */
536 case NFS_RPC_PROG_MISMATCH:
537 /* Remote can't support NFS version */
538 switch (ntohl(rpc_pkt.u.reply.data[0])) {
539 /* Minimal supported NFS version */
541 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
542 (supported_nfs_versions & NFSV2_FLAG) ?
544 ntohl(rpc_pkt.u.reply.data[0]),
545 ntohl(rpc_pkt.u.reply.data[1]));
546 debug("Will retry with NFSv3\n");
547 /* Clear NFSV2_FLAG from supported versions */
548 supported_nfs_versions &= ~NFSV2_FLAG;
549 return -NFS_RPC_PROG_MISMATCH;
552 puts("*** ERROR: NFS version not supported");
553 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
554 (supported_nfs_versions & NFSV2_FLAG) ?
556 ntohl(rpc_pkt.u.reply.data[0]),
557 ntohl(rpc_pkt.u.reply.data[1]));
561 case NFS_RPC_PROG_UNAVAIL:
562 case NFS_RPC_PROC_UNAVAIL:
563 case NFS_RPC_GARBAGE_ARGS:
564 case NFS_RPC_SYSTEM_ERR:
565 default: /* Unknown error on 'accept state' flag */
566 debug("*** ERROR: accept state error (%d)\n",
567 ntohl(rpc_pkt.u.reply.astatus));
573 if (supported_nfs_versions & NFSV2_FLAG) {
574 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
575 return -NFS_RPC_DROP;
576 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
577 } else { /* NFSV3_FLAG */
578 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
579 if (filefh3_length > NFS3_FHSIZE)
580 filefh3_length = NFS3_FHSIZE;
581 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
582 return -NFS_RPC_DROP;
583 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
589 static int nfs3_get_attributes_offset(uint32_t *data)
592 /* 'attributes_follow' flag is TRUE,
593 * so we have attributes on 21 dwords */
594 /* Skip unused values :
597 nlink; 32 bits value,
604 fileid; 64 bits value,
605 atime; 64 bits value,
606 mtime; 64 bits value,
607 ctime; 64 bits value,
611 /* 'attributes_follow' flag is FALSE,
612 * so we don't have any attributes */
617 static int nfs_readlink_reply(uchar *pkt, unsigned len)
619 struct rpc_t rpc_pkt;
621 int nfsv3_data_offset = 0;
623 debug("%s\n", __func__);
625 memcpy((unsigned char *)&rpc_pkt, pkt, len);
627 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
629 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
630 return -NFS_RPC_DROP;
632 if (rpc_pkt.u.reply.rstatus ||
633 rpc_pkt.u.reply.verifier ||
634 rpc_pkt.u.reply.astatus ||
635 rpc_pkt.u.reply.data[0])
638 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
640 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
643 /* new path length */
644 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
646 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
647 return -NFS_RPC_DROP;
649 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
652 strcat(nfs_path, "/");
653 pathlen = strlen(nfs_path);
654 memcpy(nfs_path + pathlen,
655 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
657 nfs_path[pathlen + rlen] = 0;
660 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
667 static int nfs_read_reply(uchar *pkt, unsigned len)
669 struct rpc_t rpc_pkt;
673 debug("%s\n", __func__);
675 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
677 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
679 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
680 return -NFS_RPC_DROP;
682 if (rpc_pkt.u.reply.rstatus ||
683 rpc_pkt.u.reply.verifier ||
684 rpc_pkt.u.reply.astatus ||
685 rpc_pkt.u.reply.data[0]) {
686 if (rpc_pkt.u.reply.rstatus)
688 if (rpc_pkt.u.reply.astatus)
690 return -ntohl(rpc_pkt.u.reply.data[0]);
693 if ((nfs_offset != 0) && !((nfs_offset) %
694 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
696 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
699 if (supported_nfs_versions & NFSV2_FLAG) {
700 rlen = ntohl(rpc_pkt.u.reply.data[18]);
701 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
702 } else { /* NFSV3_FLAG */
703 int nfsv3_data_offset =
704 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
707 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
708 /* Skip unused values :
710 data_size: 32 bits value,
713 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
716 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
719 if (store_block(data_ptr, nfs_offset, rlen))
725 /**************************************************************************
727 **************************************************************************/
728 static void nfs_timeout_handler(void)
730 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
731 puts("\nRetry count exceeded; starting again\n");
735 net_set_timeout_handler(nfs_timeout +
736 NFS_TIMEOUT * nfs_timeout_count,
737 nfs_timeout_handler);
742 static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
743 unsigned src, unsigned len)
748 debug("%s\n", __func__);
750 if (len > sizeof(struct rpc_t))
753 if (dest != nfs_our_port)
757 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
758 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
760 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
764 case STATE_PRCLOOKUP_PROG_NFS_REQ:
765 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
767 nfs_state = STATE_MOUNT_REQ;
771 case STATE_MOUNT_REQ:
772 reply = nfs_mount_reply(pkt, len);
773 if (reply == -NFS_RPC_DROP) {
775 } else if (reply == -NFS_RPC_ERR) {
776 puts("*** ERROR: Cannot mount\n");
777 /* just to be sure... */
778 nfs_state = STATE_UMOUNT_REQ;
781 nfs_state = STATE_LOOKUP_REQ;
786 case STATE_UMOUNT_REQ:
787 reply = nfs_umountall_reply(pkt, len);
788 if (reply == -NFS_RPC_DROP) {
790 } else if (reply == -NFS_RPC_ERR) {
791 debug("*** ERROR: Cannot umount\n");
792 net_set_state(NETLOOP_FAIL);
795 net_set_state(nfs_download_state);
799 case STATE_LOOKUP_REQ:
800 reply = nfs_lookup_reply(pkt, len);
801 if (reply == -NFS_RPC_DROP) {
803 } else if (reply == -NFS_RPC_ERR) {
804 puts("*** ERROR: File lookup fail\n");
805 nfs_state = STATE_UMOUNT_REQ;
807 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
808 supported_nfs_versions != 0) {
810 nfs_state = STATE_UMOUNT_REQ;
812 /* And retry with another supported version */
813 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
816 nfs_state = STATE_READ_REQ;
818 nfs_len = NFS_READ_SIZE;
823 case STATE_READLINK_REQ:
824 reply = nfs_readlink_reply(pkt, len);
825 if (reply == -NFS_RPC_DROP) {
827 } else if (reply == -NFS_RPC_ERR) {
828 puts("*** ERROR: Symlink fail\n");
829 nfs_state = STATE_UMOUNT_REQ;
832 debug("Symlink --> %s\n", nfs_path);
833 nfs_filename = basename(nfs_path);
834 nfs_path = dirname(nfs_path);
836 nfs_state = STATE_MOUNT_REQ;
842 rlen = nfs_read_reply(pkt, len);
843 if (rlen == -NFS_RPC_DROP)
845 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
849 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
851 nfs_state = STATE_READLINK_REQ;
855 nfs_download_state = NETLOOP_SUCCESS;
857 debug("NFS READ error (%d)\n", rlen);
858 nfs_state = STATE_UMOUNT_REQ;
868 debug("%s\n", __func__);
869 nfs_download_state = NETLOOP_FAIL;
871 nfs_server_ip = net_server_ip;
872 nfs_path = (char *)nfs_path_buff;
874 if (nfs_path == NULL) {
875 net_set_state(NETLOOP_FAIL);
876 printf("*** ERROR: Fail allocate memory\n");
880 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
881 sizeof(nfs_path_buff))) {
882 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
883 net_ip.s_addr & 0xFF,
884 (net_ip.s_addr >> 8) & 0xFF,
885 (net_ip.s_addr >> 16) & 0xFF,
886 (net_ip.s_addr >> 24) & 0xFF);
888 printf("*** Warning: no boot file name; using '%s'\n",
892 nfs_filename = basename(nfs_path);
893 nfs_path = dirname(nfs_path);
895 printf("Using %s device\n", eth_get_name());
897 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
898 &nfs_server_ip, &net_ip);
900 /* Check if we need to send across this subnet */
901 if (net_gateway.s_addr && net_netmask.s_addr) {
902 struct in_addr our_net;
903 struct in_addr server_net;
905 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
906 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
907 if (our_net.s_addr != server_net.s_addr)
908 printf("; sending through gateway %pI4",
911 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
913 if (net_boot_file_expected_size_in_blocks) {
914 printf(" Size is 0x%x Bytes = ",
915 net_boot_file_expected_size_in_blocks << 9);
916 print_size(net_boot_file_expected_size_in_blocks << 9, "");
918 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
920 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
921 net_set_udp_handler(nfs_handler);
923 nfs_timeout_count = 0;
924 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
926 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
930 /* zero out server ether in case the server ip has changed */
931 memset(net_server_ethaddr, 0, 6);