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. */
31 #include <display_options.h>
32 #ifdef CONFIG_SYS_DIRECT_FLASH_NFS
44 #define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
45 #define NFS_RETRY_COUNT 30
48 #define NFS_RPC_DROP 124
50 static int fs_mounted;
51 static unsigned long rpc_id;
52 static int nfs_offset = -1;
54 static const ulong nfs_timeout = CONFIG_NFS_TIMEOUT;
56 static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
57 static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
58 static unsigned int filefh3_length; /* (variable) length of filefh when NFSv3 */
60 static enum net_loop_state nfs_download_state;
61 static struct in_addr nfs_server_ip;
62 static int nfs_server_mount_port;
63 static int nfs_server_port;
64 static int nfs_our_port;
65 static int nfs_timeout_count;
67 #define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
68 #define STATE_PRCLOOKUP_PROG_NFS_REQ 2
69 #define STATE_MOUNT_REQ 3
70 #define STATE_UMOUNT_REQ 4
71 #define STATE_LOOKUP_REQ 5
72 #define STATE_READ_REQ 6
73 #define STATE_READLINK_REQ 7
75 static char *nfs_filename;
76 static char *nfs_path;
77 static char nfs_path_buff[2048];
85 static enum nfs_version choosen_nfs_version = NFS_V3;
86 static inline int store_block(uchar *src, unsigned offset, unsigned len)
88 ulong newsize = offset + len;
89 #ifdef CONFIG_SYS_DIRECT_FLASH_NFS
92 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
93 /* start address in flash? */
94 if (image_load_addr + offset >= flash_info[i].start[0]) {
100 if (rc) { /* Flash is destination for this packet */
101 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
108 #endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
110 void *ptr = map_sysmem(image_load_addr + offset, len);
112 memcpy(ptr, src, len);
116 if (net_boot_file_size < (offset + len))
117 net_boot_file_size = newsize;
121 static char *basename(char *path)
125 fname = path + strlen(path) - 1;
126 while (fname >= path) {
136 static char *dirname(char *path)
140 fname = basename(path);
146 /**************************************************************************
147 RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
148 **************************************************************************/
149 static uint32_t *rpc_add_credentials(uint32_t *p)
151 /* Here's the executive summary on authentication requirements of the
152 * various NFS server implementations: Linux accepts both AUTH_NONE
153 * and AUTH_UNIX authentication (also accepts an empty hostname field
154 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
155 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
156 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
157 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
160 /* Provide an AUTH_UNIX credential. */
161 *p++ = htonl(1); /* AUTH_UNIX */
162 *p++ = htonl(20); /* auth length */
163 *p++ = 0; /* stamp */
164 *p++ = 0; /* hostname string */
167 *p++ = 0; /* auxiliary gid list */
169 /* Provide an AUTH_NONE verifier. */
170 *p++ = 0; /* AUTH_NONE */
171 *p++ = 0; /* auth length */
176 /**************************************************************************
177 RPC_LOOKUP - Lookup RPC Port numbers
178 **************************************************************************/
179 static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
181 struct rpc_t rpc_pkt;
188 rpc_pkt.u.call.id = htonl(id);
189 rpc_pkt.u.call.type = htonl(MSG_CALL);
190 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
191 rpc_pkt.u.call.prog = htonl(rpc_prog);
194 switch (choosen_nfs_version) {
196 rpc_pkt.u.call.vers = htonl(2);
200 rpc_pkt.u.call.vers = htonl(3);
211 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
213 rpc_pkt.u.call.proc = htonl(rpc_proc);
214 p = rpc_pkt.u.call.data;
217 memcpy(p, data, datalen * sizeof(uint32_t));
219 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
221 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
222 &rpc_pkt.u.data[0], pktlen);
224 if (rpc_prog == PROG_PORTMAP)
226 else if (rpc_prog == PROG_MOUNT)
227 sport = nfs_server_mount_port;
229 sport = nfs_server_port;
231 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
232 nfs_our_port, pktlen);
235 /**************************************************************************
236 RPC_LOOKUP - Lookup RPC Port numbers
237 **************************************************************************/
238 static void rpc_lookup_req(int prog, int ver)
242 data[0] = 0; data[1] = 0; /* auth credential */
243 data[2] = 0; data[3] = 0; /* auth verifier */
244 data[4] = htonl(prog);
245 data[5] = htonl(ver);
246 data[6] = htonl(17); /* IP_UDP */
248 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
251 /**************************************************************************
252 NFS_MOUNT - Mount an NFS Filesystem
253 **************************************************************************/
254 static void nfs_mount_req(char *path)
261 pathlen = strlen(path);
264 p = rpc_add_credentials(p);
266 *p++ = htonl(pathlen);
268 *(p + pathlen / 4) = 0;
269 memcpy(p, path, pathlen);
270 p += (pathlen + 3) / 4;
272 len = (uint32_t *)p - (uint32_t *)&(data[0]);
274 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
277 /**************************************************************************
278 NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
279 **************************************************************************/
280 static void nfs_umountall_req(void)
286 if ((nfs_server_mount_port == -1) || (!fs_mounted))
287 /* Nothing mounted, nothing to umount */
291 p = rpc_add_credentials(p);
293 len = (uint32_t *)p - (uint32_t *)&(data[0]);
295 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
298 /***************************************************************************
299 * NFS_READLINK (AH 2003-07-14)
300 * This procedure is called when read of the first block fails -
301 * this probably happens when it's a directory or a symlink
302 * In case of successful readlink(), the dirname is manipulated,
303 * so that inside the nfs() function a recursion can be done.
304 **************************************************************************/
305 static void nfs_readlink_req(void)
312 p = rpc_add_credentials(p);
314 if (choosen_nfs_version == NFS_V2) {
315 memcpy(p, filefh, NFS_FHSIZE);
316 p += (NFS_FHSIZE / 4);
317 } else { /* NFS_V3 */
318 *p++ = htonl(filefh3_length);
319 memcpy(p, filefh, filefh3_length);
320 p += (filefh3_length / 4);
323 len = (uint32_t *)p - (uint32_t *)&(data[0]);
325 rpc_req(PROG_NFS, NFS_READLINK, data, len);
328 /**************************************************************************
329 NFS_LOOKUP - Lookup Pathname
330 **************************************************************************/
331 static void nfs_lookup_req(char *fname)
338 fnamelen = strlen(fname);
341 p = rpc_add_credentials(p);
343 if (choosen_nfs_version == NFS_V2) {
344 memcpy(p, dirfh, NFS_FHSIZE);
345 p += (NFS_FHSIZE / 4);
346 *p++ = htonl(fnamelen);
348 *(p + fnamelen / 4) = 0;
349 memcpy(p, fname, fnamelen);
350 p += (fnamelen + 3) / 4;
352 len = (uint32_t *)p - (uint32_t *)&(data[0]);
354 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
355 } else { /* NFS_V3 */
356 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
357 memcpy(p, dirfh, NFS_FHSIZE);
358 p += (NFS_FHSIZE / 4);
359 *p++ = htonl(fnamelen);
361 *(p + fnamelen / 4) = 0;
362 memcpy(p, fname, fnamelen);
363 p += (fnamelen + 3) / 4;
365 len = (uint32_t *)p - (uint32_t *)&(data[0]);
367 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
371 /**************************************************************************
372 NFS_READ - Read File on NFS Server
373 **************************************************************************/
374 static void nfs_read_req(int offset, int readlen)
381 p = rpc_add_credentials(p);
383 if (choosen_nfs_version == NFS_V2) {
384 memcpy(p, filefh, NFS_FHSIZE);
385 p += (NFS_FHSIZE / 4);
386 *p++ = htonl(offset);
387 *p++ = htonl(readlen);
389 } else { /* NFS_V3 */
390 *p++ = htonl(filefh3_length);
391 memcpy(p, filefh, filefh3_length);
392 p += (filefh3_length / 4);
393 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
394 *p++ = htonl(offset);
395 *p++ = htonl(readlen);
399 len = (uint32_t *)p - (uint32_t *)&(data[0]);
401 rpc_req(PROG_NFS, NFS_READ, data, len);
404 /**************************************************************************
405 RPC request dispatcher
406 **************************************************************************/
407 static void nfs_send(void)
409 debug("%s\n", __func__);
412 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
413 if (choosen_nfs_version == NFS_V2)
414 rpc_lookup_req(PROG_MOUNT, 1);
416 rpc_lookup_req(PROG_MOUNT, 3);
418 case STATE_PRCLOOKUP_PROG_NFS_REQ:
419 if (choosen_nfs_version == NFS_V2)
420 rpc_lookup_req(PROG_NFS, 2);
422 rpc_lookup_req(PROG_NFS, 3);
424 case STATE_MOUNT_REQ:
425 nfs_mount_req(nfs_path);
427 case STATE_UMOUNT_REQ:
430 case STATE_LOOKUP_REQ:
431 nfs_lookup_req(nfs_filename);
434 nfs_read_req(nfs_offset, nfs_len);
436 case STATE_READLINK_REQ:
442 /**************************************************************************
443 Handlers for the reply from server
444 **************************************************************************/
446 static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
448 struct rpc_t rpc_pkt;
450 memcpy(&rpc_pkt.u.data[0], pkt, len);
452 debug("%s\n", __func__);
454 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
456 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
457 return -NFS_RPC_DROP;
459 if (rpc_pkt.u.reply.rstatus ||
460 rpc_pkt.u.reply.verifier ||
461 rpc_pkt.u.reply.astatus)
466 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
469 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
476 static int nfs_mount_reply(uchar *pkt, unsigned len)
478 struct rpc_t rpc_pkt;
480 debug("%s\n", __func__);
482 memcpy(&rpc_pkt.u.data[0], pkt, len);
484 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
486 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
487 return -NFS_RPC_DROP;
489 if (rpc_pkt.u.reply.rstatus ||
490 rpc_pkt.u.reply.verifier ||
491 rpc_pkt.u.reply.astatus ||
492 rpc_pkt.u.reply.data[0])
496 /* NFSv2 and NFSv3 use same structure */
497 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
502 static int nfs_umountall_reply(uchar *pkt, unsigned len)
504 struct rpc_t rpc_pkt;
506 debug("%s\n", __func__);
508 memcpy(&rpc_pkt.u.data[0], pkt, len);
510 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
512 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
513 return -NFS_RPC_DROP;
515 if (rpc_pkt.u.reply.rstatus ||
516 rpc_pkt.u.reply.verifier ||
517 rpc_pkt.u.reply.astatus)
521 memset(dirfh, 0, sizeof(dirfh));
526 static int nfs_lookup_reply(uchar *pkt, unsigned len)
528 struct rpc_t rpc_pkt;
530 debug("%s\n", __func__);
532 memcpy(&rpc_pkt.u.data[0], pkt, len);
534 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
536 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
537 return -NFS_RPC_DROP;
539 if (rpc_pkt.u.reply.rstatus ||
540 rpc_pkt.u.reply.verifier ||
541 rpc_pkt.u.reply.astatus ||
542 rpc_pkt.u.reply.data[0]) {
543 switch (ntohl(rpc_pkt.u.reply.astatus)) {
544 case NFS_RPC_SUCCESS: /* Not an error */
546 case NFS_RPC_PROG_MISMATCH: {
547 /* Remote can't support NFS version */
548 const int min = ntohl(rpc_pkt.u.reply.data[0]);
549 const int max = ntohl(rpc_pkt.u.reply.data[1]);
551 if (max < NFS_V2 || max > NFS_V3 || min > NFS_V3) {
552 puts("*** ERROR: NFS version not supported");
553 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
555 ntohl(rpc_pkt.u.reply.data[0]),
556 ntohl(rpc_pkt.u.reply.data[1]));
558 choosen_nfs_version = NFS_UNKOWN;
562 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
564 ntohl(rpc_pkt.u.reply.data[0]),
565 ntohl(rpc_pkt.u.reply.data[1]));
566 debug("Will retry with NFSv%d\n", min);
567 choosen_nfs_version = min;
568 return -NFS_RPC_PROG_MISMATCH;
570 case NFS_RPC_PROG_UNAVAIL:
571 case NFS_RPC_PROC_UNAVAIL:
572 case NFS_RPC_GARBAGE_ARGS:
573 case NFS_RPC_SYSTEM_ERR:
574 default: /* Unknown error on 'accept state' flag */
575 debug("*** ERROR: accept state error (%d)\n",
576 ntohl(rpc_pkt.u.reply.astatus));
582 if (choosen_nfs_version == NFS_V2) {
583 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
584 return -NFS_RPC_DROP;
585 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
586 } else { /* NFS_V3 */
587 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
588 if (filefh3_length > NFS3_FHSIZE)
589 filefh3_length = NFS3_FHSIZE;
590 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
596 static int nfs3_get_attributes_offset(uint32_t *data)
599 /* 'attributes_follow' flag is TRUE,
600 * so we have attributes on 21 dwords */
601 /* Skip unused values :
604 nlink; 32 bits value,
611 fileid; 64 bits value,
612 atime; 64 bits value,
613 mtime; 64 bits value,
614 ctime; 64 bits value,
618 /* 'attributes_follow' flag is FALSE,
619 * so we don't have any attributes */
624 static int nfs_readlink_reply(uchar *pkt, unsigned len)
626 struct rpc_t rpc_pkt;
628 int nfsv3_data_offset = 0;
630 debug("%s\n", __func__);
632 memcpy((unsigned char *)&rpc_pkt, pkt, len);
634 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
636 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
637 return -NFS_RPC_DROP;
639 if (rpc_pkt.u.reply.rstatus ||
640 rpc_pkt.u.reply.verifier ||
641 rpc_pkt.u.reply.astatus ||
642 rpc_pkt.u.reply.data[0])
645 if (choosen_nfs_version == NFS_V3) {
647 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
650 /* new path length */
651 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
653 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
654 return -NFS_RPC_DROP;
656 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
659 strcat(nfs_path, "/");
660 pathlen = strlen(nfs_path);
661 memcpy(nfs_path + pathlen,
662 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
664 nfs_path[pathlen + rlen] = 0;
667 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
674 static int nfs_read_reply(uchar *pkt, unsigned len)
676 struct rpc_t rpc_pkt;
680 debug("%s\n", __func__);
682 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
684 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
686 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
687 return -NFS_RPC_DROP;
689 if (rpc_pkt.u.reply.rstatus ||
690 rpc_pkt.u.reply.verifier ||
691 rpc_pkt.u.reply.astatus ||
692 rpc_pkt.u.reply.data[0]) {
693 if (rpc_pkt.u.reply.rstatus)
695 if (rpc_pkt.u.reply.astatus)
697 return -ntohl(rpc_pkt.u.reply.data[0]);
700 if ((nfs_offset != 0) && !((nfs_offset) %
701 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
703 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
706 if (choosen_nfs_version == NFS_V2) {
707 rlen = ntohl(rpc_pkt.u.reply.data[18]);
708 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
709 } else { /* NFS_V3 */
710 int nfsv3_data_offset =
711 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
714 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
715 /* Skip unused values :
717 data_size: 32 bits value,
720 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
723 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
726 if (store_block(data_ptr, nfs_offset, rlen))
732 /**************************************************************************
734 **************************************************************************/
735 static void nfs_timeout_handler(void)
737 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
738 puts("\nRetry count exceeded; starting again\n");
742 net_set_timeout_handler(nfs_timeout +
743 nfs_timeout * nfs_timeout_count,
744 nfs_timeout_handler);
749 static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
750 unsigned src, unsigned len)
755 debug("%s\n", __func__);
757 if (len > sizeof(struct rpc_t))
760 if (dest != nfs_our_port)
764 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
765 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
767 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
771 case STATE_PRCLOOKUP_PROG_NFS_REQ:
772 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
774 nfs_state = STATE_MOUNT_REQ;
778 case STATE_MOUNT_REQ:
779 reply = nfs_mount_reply(pkt, len);
780 if (reply == -NFS_RPC_DROP) {
782 } else if (reply == -NFS_RPC_ERR) {
783 puts("*** ERROR: Cannot mount\n");
784 /* just to be sure... */
785 nfs_state = STATE_UMOUNT_REQ;
788 nfs_state = STATE_LOOKUP_REQ;
793 case STATE_UMOUNT_REQ:
794 reply = nfs_umountall_reply(pkt, len);
795 if (reply == -NFS_RPC_DROP) {
797 } else if (reply == -NFS_RPC_ERR) {
798 debug("*** ERROR: Cannot umount\n");
799 net_set_state(NETLOOP_FAIL);
802 net_set_state(nfs_download_state);
806 case STATE_LOOKUP_REQ:
807 reply = nfs_lookup_reply(pkt, len);
808 if (reply == -NFS_RPC_DROP) {
810 } else if (reply == -NFS_RPC_ERR) {
811 puts("*** ERROR: File lookup fail\n");
812 nfs_state = STATE_UMOUNT_REQ;
814 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
815 choosen_nfs_version != NFS_UNKOWN) {
817 nfs_state = STATE_UMOUNT_REQ;
819 /* And retry with another supported version */
820 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
823 nfs_state = STATE_READ_REQ;
825 nfs_len = NFS_READ_SIZE;
830 case STATE_READLINK_REQ:
831 reply = nfs_readlink_reply(pkt, len);
832 if (reply == -NFS_RPC_DROP) {
834 } else if (reply == -NFS_RPC_ERR) {
835 puts("*** ERROR: Symlink fail\n");
836 nfs_state = STATE_UMOUNT_REQ;
839 debug("Symlink --> %s\n", nfs_path);
840 nfs_filename = basename(nfs_path);
841 nfs_path = dirname(nfs_path);
843 nfs_state = STATE_MOUNT_REQ;
849 rlen = nfs_read_reply(pkt, len);
850 if (rlen == -NFS_RPC_DROP)
852 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
856 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
858 nfs_state = STATE_READLINK_REQ;
862 nfs_download_state = NETLOOP_SUCCESS;
864 debug("NFS READ error (%d)\n", rlen);
865 nfs_state = STATE_UMOUNT_REQ;
875 debug("%s\n", __func__);
876 nfs_download_state = NETLOOP_FAIL;
878 nfs_server_ip = net_server_ip;
879 nfs_path = (char *)nfs_path_buff;
881 if (nfs_path == NULL) {
882 net_set_state(NETLOOP_FAIL);
883 printf("*** ERROR: Fail allocate memory\n");
887 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
888 sizeof(nfs_path_buff))) {
889 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
890 net_ip.s_addr & 0xFF,
891 (net_ip.s_addr >> 8) & 0xFF,
892 (net_ip.s_addr >> 16) & 0xFF,
893 (net_ip.s_addr >> 24) & 0xFF);
895 printf("*** Warning: no boot file name; using '%s'\n",
899 nfs_filename = basename(nfs_path);
900 nfs_path = dirname(nfs_path);
902 printf("Using %s device\n", eth_get_name());
904 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
905 &nfs_server_ip, &net_ip);
907 /* Check if we need to send across this subnet */
908 if (net_gateway.s_addr && net_netmask.s_addr) {
909 struct in_addr our_net;
910 struct in_addr server_net;
912 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
913 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
914 if (our_net.s_addr != server_net.s_addr)
915 printf("; sending through gateway %pI4",
918 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
920 if (net_boot_file_expected_size_in_blocks) {
921 printf(" Size is 0x%x Bytes = ",
922 net_boot_file_expected_size_in_blocks << 9);
923 print_size(net_boot_file_expected_size_in_blocks << 9, "");
925 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
927 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
928 net_set_udp_handler(nfs_handler);
930 nfs_timeout_count = 0;
931 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
933 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
937 /* zero out server ether in case the server ip has changed */
938 memset(net_server_ethaddr, 0, 6);