blob: 97e62f1dcebae1bbde78ab9f0291ce719ce1ec89 [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>
31#include <net.h>
32#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050033#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000034#include "nfs.h"
35#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070036#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000037
wdenkcbd8a352004-02-24 02:00:03 +000038#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090039#define NFS_RETRY_COUNT 30
Tetsuyuki Kobayashi48a3e992012-07-03 22:25:21 +000040#ifndef CONFIG_NFS_TIMEOUT
41# define NFS_TIMEOUT 2000UL
42#else
43# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
44#endif
wdenkcbd8a352004-02-24 02:00:03 +000045
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010046#define NFS_RPC_ERR 1
47#define NFS_RPC_DROP 124
48
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000049static int fs_mounted;
50static unsigned long rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +000051static int nfs_offset = -1;
52static int nfs_len;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010053static ulong nfs_timeout = NFS_TIMEOUT;
wdenkcbd8a352004-02-24 02:00:03 +000054
Guillaume GARDETb0baca92016-07-29 11:31:00 +020055static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
Joe Hershberger5280c762016-08-15 15:03:19 -050056static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
57static int filefh3_length; /* (variable) length of filefh when NFSv3 */
wdenkcbd8a352004-02-24 02:00:03 +000058
Joe Hershberger22f6e992012-05-23 07:59:14 +000059static enum net_loop_state nfs_download_state;
Joe Hershberger049a95a2015-04-08 01:41:01 -050060static struct in_addr nfs_server_ip;
Joe Hershberger68c76a32015-04-08 01:41:10 -050061static int nfs_server_mount_port;
62static int nfs_server_port;
63static int nfs_our_port;
64static int nfs_timeout_count;
65static int nfs_state;
wdenkcbd8a352004-02-24 02:00:03 +000066#define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
67#define STATE_PRCLOOKUP_PROG_NFS_REQ 2
68#define STATE_MOUNT_REQ 3
69#define STATE_UMOUNT_REQ 4
70#define STATE_LOOKUP_REQ 5
71#define STATE_READ_REQ 6
72#define STATE_READLINK_REQ 7
73
wdenkcbd8a352004-02-24 02:00:03 +000074static char *nfs_filename;
75static char *nfs_path;
76static char nfs_path_buff[2048];
77
Guillaume GARDETb0baca92016-07-29 11:31:00 +020078#define NFSV2_FLAG 1
79#define NFSV3_FLAG 1 << 1
80static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
81
Joe Hershberger68c76a32015-04-08 01:41:10 -050082static inline int store_block(uchar *src, unsigned offset, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +000083{
wdenka084f7d2004-02-24 22:33:21 +000084 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
wdenkcbd8a352004-02-24 02:00:03 +000086 int i, rc = 0;
87
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000088 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkcbd8a352004-02-24 02:00:03 +000089 /* start address in flash? */
90 if (load_addr + offset >= flash_info[i].start[0]) {
91 rc = 1;
92 break;
93 }
94 }
95
96 if (rc) { /* Flash is destination for this packet */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000097 rc = flash_write((uchar *)src, (ulong)(load_addr+offset), len);
wdenkcbd8a352004-02-24 02:00:03 +000098 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000099 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200100 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000101 }
102 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200103#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000104 {
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500105 void *ptr = map_sysmem(load_addr + offset, len);
106
107 memcpy(ptr, src, len);
108 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000109 }
wdenka084f7d2004-02-24 22:33:21 +0000110
Joe Hershberger14111572015-04-08 01:41:02 -0500111 if (net_boot_file_size < (offset + len))
112 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200113 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000114}
115
Joe Hershberger68c76a32015-04-08 01:41:10 -0500116static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000117{
118 char *fname;
119
120 fname = path + strlen(path) - 1;
121 while (fname >= path) {
122 if (*fname == '/') {
123 fname++;
124 break;
125 }
126 fname--;
127 }
128 return fname;
129}
130
Joe Hershberger68c76a32015-04-08 01:41:10 -0500131static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000132{
133 char *fname;
134
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000135 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000136 --fname;
137 *fname = '\0';
138 return path;
139}
140
141/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000142RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
143**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200144static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000145{
wdenkcbd8a352004-02-24 02:00:03 +0000146 /* Here's the executive summary on authentication requirements of the
147 * various NFS server implementations: Linux accepts both AUTH_NONE
148 * and AUTH_UNIX authentication (also accepts an empty hostname field
149 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
150 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
151 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
152 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
153 * hostname). */
154
wdenkcbd8a352004-02-24 02:00:03 +0000155 /* Provide an AUTH_UNIX credential. */
156 *p++ = htonl(1); /* AUTH_UNIX */
Joe Hershberger1ff65d42016-08-15 15:03:27 -0500157 *p++ = htonl(20); /* auth length */
158 *p++ = 0; /* stamp */
159 *p++ = 0; /* hostname string */
wdenkcbd8a352004-02-24 02:00:03 +0000160 *p++ = 0; /* uid */
161 *p++ = 0; /* gid */
162 *p++ = 0; /* auxiliary gid list */
163
164 /* Provide an AUTH_NONE verifier. */
165 *p++ = 0; /* AUTH_NONE */
166 *p++ = 0; /* auth length */
167
168 return p;
169}
170
171/**************************************************************************
172RPC_LOOKUP - Lookup RPC Port numbers
173**************************************************************************/
Joe Hershbergera73588f2016-09-09 12:56:26 -0500174static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000175{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500176 struct rpc_t rpc_pkt;
wdenkcbd8a352004-02-24 02:00:03 +0000177 unsigned long id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500178 uint32_t *p;
wdenkcbd8a352004-02-24 02:00:03 +0000179 int pktlen;
180 int sport;
181
wdenkc3f9d492004-03-14 00:59:59 +0000182 id = ++rpc_id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500183 rpc_pkt.u.call.id = htonl(id);
184 rpc_pkt.u.call.type = htonl(MSG_CALL);
185 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
186 rpc_pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200187 switch (rpc_prog) {
188 case PROG_NFS:
189 if (supported_nfs_versions & NFSV2_FLAG)
Joe Hershbergera73588f2016-09-09 12:56:26 -0500190 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200191 else /* NFSV3_FLAG */
Joe Hershbergera73588f2016-09-09 12:56:26 -0500192 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200193 break;
194 case PROG_PORTMAP:
195 case PROG_MOUNT:
196 default:
Joe Hershbergera73588f2016-09-09 12:56:26 -0500197 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200198 }
Joe Hershbergera73588f2016-09-09 12:56:26 -0500199 rpc_pkt.u.call.proc = htonl(rpc_proc);
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200200 p = rpc_pkt.u.call.data;
wdenkcbd8a352004-02-24 02:00:03 +0000201
Joe Hershbergera73588f2016-09-09 12:56:26 -0500202 if (datalen)
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200203 memcpy(p, data, datalen * sizeof(uint32_t));
Joe Hershbergera73588f2016-09-09 12:56:26 -0500204
205 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
206
207 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
208 &rpc_pkt.u.data[0], pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000209
210 if (rpc_prog == PROG_PORTMAP)
211 sport = SUNRPC_PORT;
212 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500213 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000214 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500215 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000216
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500217 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500218 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000219}
220
221/**************************************************************************
222RPC_LOOKUP - Lookup RPC Port numbers
223**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500224static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000225{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500226 uint32_t data[16];
wdenkcbd8a352004-02-24 02:00:03 +0000227
228 data[0] = 0; data[1] = 0; /* auth credential */
229 data[2] = 0; data[3] = 0; /* auth verifier */
230 data[4] = htonl(prog);
231 data[5] = htonl(ver);
232 data[6] = htonl(17); /* IP_UDP */
233 data[7] = 0;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500234 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000235}
236
237/**************************************************************************
238NFS_MOUNT - Mount an NFS Filesystem
239**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500240static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000241{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500242 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000243 uint32_t *p;
244 int len;
245 int pathlen;
246
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000247 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000248
Joe Hershbergera73588f2016-09-09 12:56:26 -0500249 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200250 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000251
252 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000253 if (pathlen & 3)
254 *(p + pathlen / 4) = 0;
255 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000256 p += (pathlen + 3) / 4;
257
Joe Hershbergera73588f2016-09-09 12:56:26 -0500258 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000259
Joe Hershbergera73588f2016-09-09 12:56:26 -0500260 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000261}
262
263/**************************************************************************
264NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
265**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500266static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000267{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500268 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000269 uint32_t *p;
270 int len;
271
Joe Hershberger68c76a32015-04-08 01:41:10 -0500272 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000273 /* Nothing mounted, nothing to umount */
274 return;
wdenkcbd8a352004-02-24 02:00:03 +0000275
Joe Hershbergera73588f2016-09-09 12:56:26 -0500276 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200277 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000278
Joe Hershbergera73588f2016-09-09 12:56:26 -0500279 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000280
Joe Hershbergera73588f2016-09-09 12:56:26 -0500281 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000282}
283
284/***************************************************************************
285 * NFS_READLINK (AH 2003-07-14)
286 * This procedure is called when read of the first block fails -
287 * this probably happens when it's a directory or a symlink
288 * In case of successful readlink(), the dirname is manipulated,
289 * so that inside the nfs() function a recursion can be done.
290 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500291static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000292{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500293 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000294 uint32_t *p;
295 int len;
296
Joe Hershbergera73588f2016-09-09 12:56:26 -0500297 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200298 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000299
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200300 if (supported_nfs_versions & NFSV2_FLAG) {
301 memcpy(p, filefh, NFS_FHSIZE);
302 p += (NFS_FHSIZE / 4);
303 } else { /* NFSV3_FLAG */
304 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500305 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200306 p += (filefh3_length / 4);
307 }
wdenkcbd8a352004-02-24 02:00:03 +0000308
Joe Hershbergera73588f2016-09-09 12:56:26 -0500309 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000310
Joe Hershbergera73588f2016-09-09 12:56:26 -0500311 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000312}
313
314/**************************************************************************
315NFS_LOOKUP - Lookup Pathname
316**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500317static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000318{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500319 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000320 uint32_t *p;
321 int len;
322 int fnamelen;
323
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000324 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000325
Joe Hershbergera73588f2016-09-09 12:56:26 -0500326 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200327 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000328
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200329 if (supported_nfs_versions & NFSV2_FLAG) {
330 memcpy(p, dirfh, NFS_FHSIZE);
331 p += (NFS_FHSIZE / 4);
332 *p++ = htonl(fnamelen);
333 if (fnamelen & 3)
334 *(p + fnamelen / 4) = 0;
335 memcpy(p, fname, fnamelen);
336 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000337
Joe Hershbergera73588f2016-09-09 12:56:26 -0500338 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000339
Joe Hershbergera73588f2016-09-09 12:56:26 -0500340 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200341 } else { /* NFSV3_FLAG */
342 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
343 memcpy(p, dirfh, NFS_FHSIZE);
344 p += (NFS_FHSIZE / 4);
345 *p++ = htonl(fnamelen);
346 if (fnamelen & 3)
347 *(p + fnamelen / 4) = 0;
348 memcpy(p, fname, fnamelen);
349 p += (fnamelen + 3) / 4;
350
Joe Hershbergera73588f2016-09-09 12:56:26 -0500351 len = (uint32_t *)p - (uint32_t *)&(data[0]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200352
Joe Hershbergera73588f2016-09-09 12:56:26 -0500353 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200354 }
wdenkcbd8a352004-02-24 02:00:03 +0000355}
356
357/**************************************************************************
358NFS_READ - Read File on NFS Server
359**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500360static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000361{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500362 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000363 uint32_t *p;
364 int len;
365
Joe Hershbergera73588f2016-09-09 12:56:26 -0500366 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200367 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000368
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200369 if (supported_nfs_versions & NFSV2_FLAG) {
370 memcpy(p, filefh, NFS_FHSIZE);
371 p += (NFS_FHSIZE / 4);
372 *p++ = htonl(offset);
373 *p++ = htonl(readlen);
374 *p++ = 0;
375 } else { /* NFSV3_FLAG */
376 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500377 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200378 p += (filefh3_length / 4);
379 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
380 *p++ = htonl(offset);
381 *p++ = htonl(readlen);
382 *p++ = 0;
383 }
wdenkcbd8a352004-02-24 02:00:03 +0000384
Joe Hershbergera73588f2016-09-09 12:56:26 -0500385 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000386
Joe Hershbergera73588f2016-09-09 12:56:26 -0500387 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000388}
389
390/**************************************************************************
391RPC request dispatcher
392**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500393static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000394{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400395 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000396
Joe Hershberger68c76a32015-04-08 01:41:10 -0500397 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000398 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200399 if (supported_nfs_versions & NFSV2_FLAG)
400 rpc_lookup_req(PROG_MOUNT, 1);
401 else /* NFSV3_FLAG */
402 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000403 break;
404 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200405 if (supported_nfs_versions & NFSV2_FLAG)
406 rpc_lookup_req(PROG_NFS, 2);
407 else /* NFSV3_FLAG */
408 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000409 break;
410 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000411 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000412 break;
413 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000414 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000415 break;
416 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000417 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000418 break;
419 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000420 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000421 break;
422 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000423 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000424 break;
425 }
426}
427
428/**************************************************************************
429Handlers for the reply from server
430**************************************************************************/
431
Joe Hershberger68c76a32015-04-08 01:41:10 -0500432static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000433{
434 struct rpc_t rpc_pkt;
435
Joe Hershberger0517cc42016-08-15 15:03:24 -0500436 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000437
Robin Getz0ebf04c2009-07-23 03:01:03 -0400438 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000439
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100440 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
441 return -NFS_RPC_ERR;
442 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
443 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000444
wdenkcbd8a352004-02-24 02:00:03 +0000445 if (rpc_pkt.u.reply.rstatus ||
446 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000447 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000448 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000449
450 switch (prog) {
451 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500452 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000453 break;
454 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500455 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000456 break;
457 }
458
459 return 0;
460}
461
Joe Hershberger68c76a32015-04-08 01:41:10 -0500462static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000463{
464 struct rpc_t rpc_pkt;
465
Robin Getz0ebf04c2009-07-23 03:01:03 -0400466 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000467
Joe Hershberger0517cc42016-08-15 15:03:24 -0500468 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000469
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100470 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
471 return -NFS_RPC_ERR;
472 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
473 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000474
wdenkcbd8a352004-02-24 02:00:03 +0000475 if (rpc_pkt.u.reply.rstatus ||
476 rpc_pkt.u.reply.verifier ||
477 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000478 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000479 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000480
481 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200482 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000483 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000484
485 return 0;
486}
487
Joe Hershberger68c76a32015-04-08 01:41:10 -0500488static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000489{
490 struct rpc_t rpc_pkt;
491
Robin Getz0ebf04c2009-07-23 03:01:03 -0400492 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000493
Joe Hershberger0517cc42016-08-15 15:03:24 -0500494 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000495
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100496 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
497 return -NFS_RPC_ERR;
498 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
499 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000500
wdenkcbd8a352004-02-24 02:00:03 +0000501 if (rpc_pkt.u.reply.rstatus ||
502 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000503 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000504 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000505
506 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000507 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000508
509 return 0;
510}
511
Joe Hershberger68c76a32015-04-08 01:41:10 -0500512static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000513{
514 struct rpc_t rpc_pkt;
515
Robin Getz0ebf04c2009-07-23 03:01:03 -0400516 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000517
Joe Hershberger0517cc42016-08-15 15:03:24 -0500518 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000519
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100520 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
521 return -NFS_RPC_ERR;
522 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
523 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000524
wdenkcbd8a352004-02-24 02:00:03 +0000525 if (rpc_pkt.u.reply.rstatus ||
526 rpc_pkt.u.reply.verifier ||
527 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200528 rpc_pkt.u.reply.data[0]) {
529 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200530 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200531 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200532 case NFS_RPC_PROG_MISMATCH:
533 /* Remote can't support NFS version */
534 switch (ntohl(rpc_pkt.u.reply.data[0])) {
535 /* Minimal supported NFS version */
536 case 3:
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500537 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500538 (supported_nfs_versions & NFSV2_FLAG) ?
539 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200540 ntohl(rpc_pkt.u.reply.data[0]),
541 ntohl(rpc_pkt.u.reply.data[1]));
542 debug("Will retry with NFSv3\n");
543 /* Clear NFSV2_FLAG from supported versions */
544 supported_nfs_versions &= ~NFSV2_FLAG;
545 return -NFS_RPC_PROG_MISMATCH;
546 case 4:
547 default:
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500548 puts("*** ERROR: NFS version not supported");
549 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
550 (supported_nfs_versions & NFSV2_FLAG) ?
Joe Hershberger347a9012016-08-15 15:03:21 -0500551 2 : 3,
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500552 ntohl(rpc_pkt.u.reply.data[0]),
553 ntohl(rpc_pkt.u.reply.data[1]));
554 puts("\n");
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200555 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200556 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200557 case NFS_RPC_PROG_UNAVAIL:
558 case NFS_RPC_PROC_UNAVAIL:
559 case NFS_RPC_GARBAGE_ARGS:
560 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200561 default: /* Unknown error on 'accept state' flag */
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500562 debug("*** ERROR: accept state error (%d)\n",
563 ntohl(rpc_pkt.u.reply.astatus));
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200564 break;
565 }
wdenkcbd8a352004-02-24 02:00:03 +0000566 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200567 }
wdenkcbd8a352004-02-24 02:00:03 +0000568
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200569 if (supported_nfs_versions & NFSV2_FLAG) {
liucheng (G)5d14ee42019-08-29 13:48:02 +0000570 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
571 return -NFS_RPC_DROP;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200572 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
573 } else { /* NFSV3_FLAG */
574 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
575 if (filefh3_length > NFS3_FHSIZE)
576 filefh3_length = NFS3_FHSIZE;
liucheng (G)5d14ee42019-08-29 13:48:02 +0000577 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
578 return -NFS_RPC_DROP;
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 +
732 NFS_TIMEOUT * nfs_timeout_count,
733 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 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500914 printf("\nLoad address: 0x%lx\nLoading: *\b", 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}