blob: c6a124885e4eadd31a5ea77508bcc64de252eb10 [file] [log] [blame]
wdenkcbd8a352004-02-24 02:00:03 +00001/*
2 * NFS support driver - based on etherboot and U-BOOT's tftp.c
3 *
4 * Masami Komiya <mkomiya@sonare.it> 2004
5 *
6 */
7
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. */
13
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. */
19
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. */
24
Guillaume GARDETb0baca92016-07-29 11:31:00 +020025/* 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. */
28
wdenkcbd8a352004-02-24 02:00:03 +000029#include <common.h>
30#include <command.h>
Simon Glass4e4bf942022-07-31 12:28:48 -060031#include <display_options.h>
Tom Rini17ead042022-07-23 13:05:03 -040032#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
Simon Glass0ee482522019-12-28 10:44:40 -070033#include <flash.h>
Tom Rini17ead042022-07-23 13:05:03 -040034#endif
Simon Glass8e8ccfe2019-12-28 10:45:03 -070035#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060036#include <log.h>
wdenkcbd8a352004-02-24 02:00:03 +000037#include <net.h>
38#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050039#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000040#include "nfs.h"
41#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070042#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000043
wdenkcbd8a352004-02-24 02:00:03 +000044#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090045#define NFS_RETRY_COUNT 30
wdenkcbd8a352004-02-24 02:00:03 +000046
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010047#define NFS_RPC_ERR 1
48#define NFS_RPC_DROP 124
49
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000050static int fs_mounted;
51static unsigned long rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +000052static int nfs_offset = -1;
53static int nfs_len;
Tom Rinieeda7622022-03-11 09:12:05 -050054static const ulong nfs_timeout = CONFIG_NFS_TIMEOUT;
wdenkcbd8a352004-02-24 02:00:03 +000055
Guillaume GARDETb0baca92016-07-29 11:31:00 +020056static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
Joe Hershberger5280c762016-08-15 15:03:19 -050057static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
Andrea zi0Black Cappabdbf7a02022-05-18 16:30:08 +000058static unsigned int filefh3_length; /* (variable) length of filefh when NFSv3 */
wdenkcbd8a352004-02-24 02:00:03 +000059
Joe Hershberger22f6e992012-05-23 07:59:14 +000060static enum net_loop_state nfs_download_state;
Joe Hershberger049a95a2015-04-08 01:41:01 -050061static struct in_addr nfs_server_ip;
Joe Hershberger68c76a32015-04-08 01:41:10 -050062static int nfs_server_mount_port;
63static int nfs_server_port;
64static int nfs_our_port;
65static int nfs_timeout_count;
66static int nfs_state;
wdenkcbd8a352004-02-24 02:00:03 +000067#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
74
wdenkcbd8a352004-02-24 02:00:03 +000075static char *nfs_filename;
76static char *nfs_path;
77static char nfs_path_buff[2048];
78
Guillaume GARDETb0baca92016-07-29 11:31:00 +020079#define NFSV2_FLAG 1
80#define NFSV3_FLAG 1 << 1
81static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
82
Joe Hershberger68c76a32015-04-08 01:41:10 -050083static inline int store_block(uchar *src, unsigned offset, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +000084{
wdenka084f7d2004-02-24 22:33:21 +000085 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
wdenkcbd8a352004-02-24 02:00:03 +000087 int i, rc = 0;
88
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000089 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkcbd8a352004-02-24 02:00:03 +000090 /* start address in flash? */
Simon Glassbb872dd2019-12-28 10:45:02 -070091 if (image_load_addr + offset >= flash_info[i].start[0]) {
wdenkcbd8a352004-02-24 02:00:03 +000092 rc = 1;
93 break;
94 }
95 }
96
97 if (rc) { /* Flash is destination for this packet */
Simon Glassbb872dd2019-12-28 10:45:02 -070098 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
99 len);
wdenkcbd8a352004-02-24 02:00:03 +0000100 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000101 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200102 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000103 }
104 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000106 {
Simon Glassbb872dd2019-12-28 10:45:02 -0700107 void *ptr = map_sysmem(image_load_addr + offset, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500108
109 memcpy(ptr, src, len);
110 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000111 }
wdenka084f7d2004-02-24 22:33:21 +0000112
Joe Hershberger14111572015-04-08 01:41:02 -0500113 if (net_boot_file_size < (offset + len))
114 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200115 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000116}
117
Joe Hershberger68c76a32015-04-08 01:41:10 -0500118static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000119{
120 char *fname;
121
122 fname = path + strlen(path) - 1;
123 while (fname >= path) {
124 if (*fname == '/') {
125 fname++;
126 break;
127 }
128 fname--;
129 }
130 return fname;
131}
132
Joe Hershberger68c76a32015-04-08 01:41:10 -0500133static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000134{
135 char *fname;
136
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000137 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000138 --fname;
139 *fname = '\0';
140 return path;
141}
142
143/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000144RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
145**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200146static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000147{
wdenkcbd8a352004-02-24 02:00:03 +0000148 /* Here's the executive summary on authentication requirements of the
149 * various NFS server implementations: Linux accepts both AUTH_NONE
150 * and AUTH_UNIX authentication (also accepts an empty hostname field
151 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
152 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
153 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
154 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
155 * hostname). */
156
wdenkcbd8a352004-02-24 02:00:03 +0000157 /* Provide an AUTH_UNIX credential. */
158 *p++ = htonl(1); /* AUTH_UNIX */
Joe Hershberger1ff65d42016-08-15 15:03:27 -0500159 *p++ = htonl(20); /* auth length */
160 *p++ = 0; /* stamp */
161 *p++ = 0; /* hostname string */
wdenkcbd8a352004-02-24 02:00:03 +0000162 *p++ = 0; /* uid */
163 *p++ = 0; /* gid */
164 *p++ = 0; /* auxiliary gid list */
165
166 /* Provide an AUTH_NONE verifier. */
167 *p++ = 0; /* AUTH_NONE */
168 *p++ = 0; /* auth length */
169
170 return p;
171}
172
173/**************************************************************************
174RPC_LOOKUP - Lookup RPC Port numbers
175**************************************************************************/
Joe Hershbergera73588f2016-09-09 12:56:26 -0500176static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000177{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500178 struct rpc_t rpc_pkt;
wdenkcbd8a352004-02-24 02:00:03 +0000179 unsigned long id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500180 uint32_t *p;
wdenkcbd8a352004-02-24 02:00:03 +0000181 int pktlen;
182 int sport;
183
wdenkc3f9d492004-03-14 00:59:59 +0000184 id = ++rpc_id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500185 rpc_pkt.u.call.id = htonl(id);
186 rpc_pkt.u.call.type = htonl(MSG_CALL);
187 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
188 rpc_pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200189 switch (rpc_prog) {
190 case PROG_NFS:
191 if (supported_nfs_versions & NFSV2_FLAG)
Joe Hershbergera73588f2016-09-09 12:56:26 -0500192 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200193 else /* NFSV3_FLAG */
Joe Hershbergera73588f2016-09-09 12:56:26 -0500194 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200195 break;
196 case PROG_PORTMAP:
197 case PROG_MOUNT:
198 default:
Joe Hershbergera73588f2016-09-09 12:56:26 -0500199 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200200 }
Joe Hershbergera73588f2016-09-09 12:56:26 -0500201 rpc_pkt.u.call.proc = htonl(rpc_proc);
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200202 p = rpc_pkt.u.call.data;
wdenkcbd8a352004-02-24 02:00:03 +0000203
Joe Hershbergera73588f2016-09-09 12:56:26 -0500204 if (datalen)
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200205 memcpy(p, data, datalen * sizeof(uint32_t));
Joe Hershbergera73588f2016-09-09 12:56:26 -0500206
207 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
208
209 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
210 &rpc_pkt.u.data[0], pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000211
212 if (rpc_prog == PROG_PORTMAP)
213 sport = SUNRPC_PORT;
214 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500215 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000216 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500217 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000218
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500219 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500220 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000221}
222
223/**************************************************************************
224RPC_LOOKUP - Lookup RPC Port numbers
225**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500226static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000227{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500228 uint32_t data[16];
wdenkcbd8a352004-02-24 02:00:03 +0000229
230 data[0] = 0; data[1] = 0; /* auth credential */
231 data[2] = 0; data[3] = 0; /* auth verifier */
232 data[4] = htonl(prog);
233 data[5] = htonl(ver);
234 data[6] = htonl(17); /* IP_UDP */
235 data[7] = 0;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500236 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000237}
238
239/**************************************************************************
240NFS_MOUNT - Mount an NFS Filesystem
241**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500242static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000243{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500244 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000245 uint32_t *p;
246 int len;
247 int pathlen;
248
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000249 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000250
Joe Hershbergera73588f2016-09-09 12:56:26 -0500251 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200252 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000253
254 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000255 if (pathlen & 3)
256 *(p + pathlen / 4) = 0;
257 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000258 p += (pathlen + 3) / 4;
259
Joe Hershbergera73588f2016-09-09 12:56:26 -0500260 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000261
Joe Hershbergera73588f2016-09-09 12:56:26 -0500262 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000263}
264
265/**************************************************************************
266NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
267**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500268static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000269{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500270 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000271 uint32_t *p;
272 int len;
273
Joe Hershberger68c76a32015-04-08 01:41:10 -0500274 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000275 /* Nothing mounted, nothing to umount */
276 return;
wdenkcbd8a352004-02-24 02:00:03 +0000277
Joe Hershbergera73588f2016-09-09 12:56:26 -0500278 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200279 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000280
Joe Hershbergera73588f2016-09-09 12:56:26 -0500281 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000282
Joe Hershbergera73588f2016-09-09 12:56:26 -0500283 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000284}
285
286/***************************************************************************
287 * NFS_READLINK (AH 2003-07-14)
288 * This procedure is called when read of the first block fails -
289 * this probably happens when it's a directory or a symlink
290 * In case of successful readlink(), the dirname is manipulated,
291 * so that inside the nfs() function a recursion can be done.
292 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500293static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000294{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500295 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000296 uint32_t *p;
297 int len;
298
Joe Hershbergera73588f2016-09-09 12:56:26 -0500299 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200300 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000301
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200302 if (supported_nfs_versions & NFSV2_FLAG) {
303 memcpy(p, filefh, NFS_FHSIZE);
304 p += (NFS_FHSIZE / 4);
305 } else { /* NFSV3_FLAG */
306 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500307 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200308 p += (filefh3_length / 4);
309 }
wdenkcbd8a352004-02-24 02:00:03 +0000310
Joe Hershbergera73588f2016-09-09 12:56:26 -0500311 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000312
Joe Hershbergera73588f2016-09-09 12:56:26 -0500313 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000314}
315
316/**************************************************************************
317NFS_LOOKUP - Lookup Pathname
318**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500319static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000320{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500321 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000322 uint32_t *p;
323 int len;
324 int fnamelen;
325
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000326 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000327
Joe Hershbergera73588f2016-09-09 12:56:26 -0500328 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200329 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000330
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200331 if (supported_nfs_versions & NFSV2_FLAG) {
332 memcpy(p, dirfh, NFS_FHSIZE);
333 p += (NFS_FHSIZE / 4);
334 *p++ = htonl(fnamelen);
335 if (fnamelen & 3)
336 *(p + fnamelen / 4) = 0;
337 memcpy(p, fname, fnamelen);
338 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000339
Joe Hershbergera73588f2016-09-09 12:56:26 -0500340 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000341
Joe Hershbergera73588f2016-09-09 12:56:26 -0500342 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200343 } else { /* NFSV3_FLAG */
344 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
345 memcpy(p, dirfh, NFS_FHSIZE);
346 p += (NFS_FHSIZE / 4);
347 *p++ = htonl(fnamelen);
348 if (fnamelen & 3)
349 *(p + fnamelen / 4) = 0;
350 memcpy(p, fname, fnamelen);
351 p += (fnamelen + 3) / 4;
352
Joe Hershbergera73588f2016-09-09 12:56:26 -0500353 len = (uint32_t *)p - (uint32_t *)&(data[0]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200354
Joe Hershbergera73588f2016-09-09 12:56:26 -0500355 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200356 }
wdenkcbd8a352004-02-24 02:00:03 +0000357}
358
359/**************************************************************************
360NFS_READ - Read File on NFS Server
361**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500362static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000363{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500364 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000365 uint32_t *p;
366 int len;
367
Joe Hershbergera73588f2016-09-09 12:56:26 -0500368 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200369 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000370
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200371 if (supported_nfs_versions & NFSV2_FLAG) {
372 memcpy(p, filefh, NFS_FHSIZE);
373 p += (NFS_FHSIZE / 4);
374 *p++ = htonl(offset);
375 *p++ = htonl(readlen);
376 *p++ = 0;
377 } else { /* NFSV3_FLAG */
378 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500379 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200380 p += (filefh3_length / 4);
381 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
382 *p++ = htonl(offset);
383 *p++ = htonl(readlen);
384 *p++ = 0;
385 }
wdenkcbd8a352004-02-24 02:00:03 +0000386
Joe Hershbergera73588f2016-09-09 12:56:26 -0500387 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000388
Joe Hershbergera73588f2016-09-09 12:56:26 -0500389 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000390}
391
392/**************************************************************************
393RPC request dispatcher
394**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500395static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000396{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400397 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000398
Joe Hershberger68c76a32015-04-08 01:41:10 -0500399 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000400 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200401 if (supported_nfs_versions & NFSV2_FLAG)
402 rpc_lookup_req(PROG_MOUNT, 1);
403 else /* NFSV3_FLAG */
404 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000405 break;
406 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200407 if (supported_nfs_versions & NFSV2_FLAG)
408 rpc_lookup_req(PROG_NFS, 2);
409 else /* NFSV3_FLAG */
410 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000411 break;
412 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000413 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000414 break;
415 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000416 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000417 break;
418 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000419 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000420 break;
421 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000422 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000423 break;
424 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000425 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000426 break;
427 }
428}
429
430/**************************************************************************
431Handlers for the reply from server
432**************************************************************************/
433
Joe Hershberger68c76a32015-04-08 01:41:10 -0500434static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000435{
436 struct rpc_t rpc_pkt;
437
Joe Hershberger0517cc42016-08-15 15:03:24 -0500438 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000439
Robin Getz0ebf04c2009-07-23 03:01:03 -0400440 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000441
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100442 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
443 return -NFS_RPC_ERR;
444 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
445 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000446
wdenkcbd8a352004-02-24 02:00:03 +0000447 if (rpc_pkt.u.reply.rstatus ||
448 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000449 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000450 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000451
452 switch (prog) {
453 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500454 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000455 break;
456 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500457 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000458 break;
459 }
460
461 return 0;
462}
463
Joe Hershberger68c76a32015-04-08 01:41:10 -0500464static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000465{
466 struct rpc_t rpc_pkt;
467
Robin Getz0ebf04c2009-07-23 03:01:03 -0400468 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000469
Joe Hershberger0517cc42016-08-15 15:03:24 -0500470 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000471
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100472 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
473 return -NFS_RPC_ERR;
474 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
475 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000476
wdenkcbd8a352004-02-24 02:00:03 +0000477 if (rpc_pkt.u.reply.rstatus ||
478 rpc_pkt.u.reply.verifier ||
479 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000480 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000481 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000482
483 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200484 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000485 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000486
487 return 0;
488}
489
Joe Hershberger68c76a32015-04-08 01:41:10 -0500490static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000491{
492 struct rpc_t rpc_pkt;
493
Robin Getz0ebf04c2009-07-23 03:01:03 -0400494 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000495
Joe Hershberger0517cc42016-08-15 15:03:24 -0500496 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000497
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100498 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
499 return -NFS_RPC_ERR;
500 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
501 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000502
wdenkcbd8a352004-02-24 02:00:03 +0000503 if (rpc_pkt.u.reply.rstatus ||
504 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000505 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000506 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000507
508 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000509 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000510
511 return 0;
512}
513
Joe Hershberger68c76a32015-04-08 01:41:10 -0500514static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000515{
516 struct rpc_t rpc_pkt;
517
Robin Getz0ebf04c2009-07-23 03:01:03 -0400518 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000519
Joe Hershberger0517cc42016-08-15 15:03:24 -0500520 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000521
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100522 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
523 return -NFS_RPC_ERR;
524 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
525 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000526
wdenkcbd8a352004-02-24 02:00:03 +0000527 if (rpc_pkt.u.reply.rstatus ||
528 rpc_pkt.u.reply.verifier ||
529 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200530 rpc_pkt.u.reply.data[0]) {
531 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200532 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200533 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200534 case NFS_RPC_PROG_MISMATCH:
535 /* Remote can't support NFS version */
536 switch (ntohl(rpc_pkt.u.reply.data[0])) {
537 /* Minimal supported NFS version */
538 case 3:
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500539 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500540 (supported_nfs_versions & NFSV2_FLAG) ?
541 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200542 ntohl(rpc_pkt.u.reply.data[0]),
543 ntohl(rpc_pkt.u.reply.data[1]));
544 debug("Will retry with NFSv3\n");
545 /* Clear NFSV2_FLAG from supported versions */
546 supported_nfs_versions &= ~NFSV2_FLAG;
547 return -NFS_RPC_PROG_MISMATCH;
548 case 4:
549 default:
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500550 puts("*** ERROR: NFS version not supported");
551 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
552 (supported_nfs_versions & NFSV2_FLAG) ?
Joe Hershberger347a9012016-08-15 15:03:21 -0500553 2 : 3,
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500554 ntohl(rpc_pkt.u.reply.data[0]),
555 ntohl(rpc_pkt.u.reply.data[1]));
556 puts("\n");
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200557 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200558 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200559 case NFS_RPC_PROG_UNAVAIL:
560 case NFS_RPC_PROC_UNAVAIL:
561 case NFS_RPC_GARBAGE_ARGS:
562 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200563 default: /* Unknown error on 'accept state' flag */
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500564 debug("*** ERROR: accept state error (%d)\n",
565 ntohl(rpc_pkt.u.reply.astatus));
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200566 break;
567 }
wdenkcbd8a352004-02-24 02:00:03 +0000568 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200569 }
wdenkcbd8a352004-02-24 02:00:03 +0000570
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200571 if (supported_nfs_versions & NFSV2_FLAG) {
liucheng (G)5d14ee42019-08-29 13:48:02 +0000572 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
573 return -NFS_RPC_DROP;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200574 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
575 } else { /* NFSV3_FLAG */
576 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
577 if (filefh3_length > NFS3_FHSIZE)
578 filefh3_length = NFS3_FHSIZE;
Joe Hershberger5280c762016-08-15 15:03:19 -0500579 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200580 }
wdenkcbd8a352004-02-24 02:00:03 +0000581
582 return 0;
583}
584
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500585static int nfs3_get_attributes_offset(uint32_t *data)
586{
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200587 if (data[1]) {
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500588 /* 'attributes_follow' flag is TRUE,
Joe Hershbergerc629c452016-08-15 15:03:23 -0500589 * so we have attributes on 21 dwords */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500590 /* Skip unused values :
591 type; 32 bits value,
592 mode; 32 bits value,
593 nlink; 32 bits value,
594 uid; 32 bits value,
595 gid; 32 bits value,
596 size; 64 bits value,
597 used; 64 bits value,
598 rdev; 64 bits value,
599 fsid; 64 bits value,
600 fileid; 64 bits value,
601 atime; 64 bits value,
602 mtime; 64 bits value,
603 ctime; 64 bits value,
604 */
605 return 22;
606 } else {
607 /* 'attributes_follow' flag is FALSE,
608 * so we don't have any attributes */
609 return 1;
610 }
611}
612
Joe Hershberger68c76a32015-04-08 01:41:10 -0500613static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000614{
615 struct rpc_t rpc_pkt;
616 int rlen;
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500617 int nfsv3_data_offset = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000618
Robin Getz0ebf04c2009-07-23 03:01:03 -0400619 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000620
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000621 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000622
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100623 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
624 return -NFS_RPC_ERR;
625 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
626 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000627
wdenkcbd8a352004-02-24 02:00:03 +0000628 if (rpc_pkt.u.reply.rstatus ||
629 rpc_pkt.u.reply.verifier ||
630 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000631 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000632 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000633
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500634 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
635 nfsv3_data_offset =
636 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
637 }
wdenkcbd8a352004-02-24 02:00:03 +0000638
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500639 /* new path length */
640 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200641
liucheng (G)cf3a4f12019-08-29 13:47:54 +0000642 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
643 return -NFS_RPC_DROP;
644
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500645 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
646 int pathlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200647
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500648 strcat(nfs_path, "/");
649 pathlen = strlen(nfs_path);
650 memcpy(nfs_path + pathlen,
651 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
652 rlen);
653 nfs_path[pathlen + rlen] = 0;
654 } else {
655 memcpy(nfs_path,
656 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
657 rlen);
658 nfs_path[rlen] = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000659 }
660 return 0;
661}
662
Joe Hershberger68c76a32015-04-08 01:41:10 -0500663static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000664{
665 struct rpc_t rpc_pkt;
666 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200667 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000668
Robin Getz0ebf04c2009-07-23 03:01:03 -0400669 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000670
Joe Hershberger0517cc42016-08-15 15:03:24 -0500671 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000672
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100673 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
674 return -NFS_RPC_ERR;
675 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
676 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000677
wdenkcbd8a352004-02-24 02:00:03 +0000678 if (rpc_pkt.u.reply.rstatus ||
679 rpc_pkt.u.reply.verifier ||
680 rpc_pkt.u.reply.astatus ||
681 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000682 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000683 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000684 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000685 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000686 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000687 }
688
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000689 if ((nfs_offset != 0) && !((nfs_offset) %
690 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
691 puts("\n\t ");
692 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
693 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000694
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200695 if (supported_nfs_versions & NFSV2_FLAG) {
696 rlen = ntohl(rpc_pkt.u.reply.data[18]);
697 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
698 } else { /* NFSV3_FLAG */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500699 int nfsv3_data_offset =
700 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
701
702 /* count value */
703 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
704 /* Skip unused values :
705 EOF: 32 bits value,
706 data_size: 32 bits value,
707 */
708 data_ptr = (uchar *)
709 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200710 }
711
liucheng (G)aa207cf2019-08-29 13:47:48 +0000712 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
713 return -9999;
714
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200715 if (store_block(data_ptr, nfs_offset, rlen))
716 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000717
718 return rlen;
719}
720
721/**************************************************************************
722Interfaces of U-BOOT
723**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500724static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000725{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500726 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000727 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500728 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600729 } else {
730 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500731 net_set_timeout_handler(nfs_timeout +
Tom Rinieeda7622022-03-11 09:12:05 -0500732 nfs_timeout * nfs_timeout_count,
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500733 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500734 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900735 }
wdenka5725fa2004-09-28 21:51:42 +0000736}
737
Joe Hershberger049a95a2015-04-08 01:41:01 -0500738static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
739 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000740{
741 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100742 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000743
Robin Getz0ebf04c2009-07-23 03:01:03 -0400744 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000745
liucheng (G)741a8a02019-08-29 13:47:40 +0000746 if (len > sizeof(struct rpc_t))
747 return;
748
Joe Hershberger68c76a32015-04-08 01:41:10 -0500749 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000750 return;
wdenkcbd8a352004-02-24 02:00:03 +0000751
Joe Hershberger68c76a32015-04-08 01:41:10 -0500752 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000753 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100754 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
755 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500756 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
757 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000758 break;
759
760 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100761 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
762 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500763 nfs_state = STATE_MOUNT_REQ;
764 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000765 break;
766
767 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100768 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500769 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100770 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500771 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000772 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000773 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500774 nfs_state = STATE_UMOUNT_REQ;
775 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000776 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500777 nfs_state = STATE_LOOKUP_REQ;
778 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000779 }
780 break;
781
782 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100783 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500784 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100785 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500786 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500787 debug("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000788 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000789 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000790 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000791 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000792 }
793 break;
794
795 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100796 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500797 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100798 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500799 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000800 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500801 nfs_state = STATE_UMOUNT_REQ;
802 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500803 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
804 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200805 /* umount */
806 nfs_state = STATE_UMOUNT_REQ;
807 nfs_send();
808 /* And retry with another supported version */
809 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
810 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000811 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500812 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000813 nfs_offset = 0;
814 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500815 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000816 }
817 break;
818
819 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100820 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500821 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100822 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500823 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000824 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500825 nfs_state = STATE_UMOUNT_REQ;
826 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000827 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400828 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000829 nfs_filename = basename(nfs_path);
830 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000831
Joe Hershberger68c76a32015-04-08 01:41:10 -0500832 nfs_state = STATE_MOUNT_REQ;
833 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000834 }
835 break;
836
837 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000838 rlen = nfs_read_reply(pkt, len);
Vasily Khoruzhickd48d40a2018-05-14 08:34:36 -0700839 if (rlen == -NFS_RPC_DROP)
840 break;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500841 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000842 if (rlen > 0) {
843 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500844 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000845 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000846 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500847 nfs_state = STATE_READLINK_REQ;
848 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000849 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000850 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000851 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200852 if (rlen < 0)
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500853 debug("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500854 nfs_state = STATE_UMOUNT_REQ;
855 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000856 }
857 break;
858 }
859}
860
wdenkcbd8a352004-02-24 02:00:03 +0000861
Joe Hershberger68c76a32015-04-08 01:41:10 -0500862void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000863{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400864 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000865 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000866
Joe Hershberger049a95a2015-04-08 01:41:01 -0500867 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000868 nfs_path = (char *)nfs_path_buff;
869
870 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000871 net_set_state(NETLOOP_FAIL);
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500872 printf("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000873 return;
874 }
875
Joe Hershberger6ab12832018-07-03 19:36:43 -0500876 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
877 sizeof(nfs_path_buff))) {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500878 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500879 net_ip.s_addr & 0xFF,
880 (net_ip.s_addr >> 8) & 0xFF,
881 (net_ip.s_addr >> 16) & 0xFF,
882 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000883
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500884 printf("*** Warning: no boot file name; using '%s'\n",
885 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000886 }
887
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000888 nfs_filename = basename(nfs_path);
889 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000890
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500891 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000892
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500893 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
894 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000895
896 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500897 if (net_gateway.s_addr && net_netmask.s_addr) {
898 struct in_addr our_net;
899 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000900
Joe Hershberger049a95a2015-04-08 01:41:01 -0500901 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
Joe Hershberger347e32b2018-07-03 19:22:55 -0500902 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500903 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500904 printf("; sending through gateway %pI4",
905 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000906 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500907 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000908
Joe Hershberger14111572015-04-08 01:41:02 -0500909 if (net_boot_file_expected_size_in_blocks) {
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500910 printf(" Size is 0x%x Bytes = ",
911 net_boot_file_expected_size_in_blocks << 9);
Joe Hershberger14111572015-04-08 01:41:02 -0500912 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000913 }
Simon Glassbb872dd2019-12-28 10:45:02 -0700914 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000915
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500916 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500917 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000918
Joe Hershberger68c76a32015-04-08 01:41:10 -0500919 nfs_timeout_count = 0;
920 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000921
Joe Hershberger68c76a32015-04-08 01:41:10 -0500922 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000923 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500924 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000925
926 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500927 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000928
Joe Hershberger68c76a32015-04-08 01:41:10 -0500929 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000930}