blob: f4101eb17c3eee1d3ab660b6cc0ef514a23992c0 [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 Glass0ee482522019-12-28 10:44:40 -070031#include <flash.h>
wdenkcbd8a352004-02-24 02:00:03 +000032#include <net.h>
33#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050034#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000035#include "nfs.h"
36#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070037#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000038
wdenkcbd8a352004-02-24 02:00:03 +000039#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090040#define NFS_RETRY_COUNT 30
Tetsuyuki Kobayashi48a3e992012-07-03 22:25:21 +000041#ifndef CONFIG_NFS_TIMEOUT
42# define NFS_TIMEOUT 2000UL
43#else
44# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
45#endif
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;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010054static ulong nfs_timeout = 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 */
58static 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? */
91 if (load_addr + offset >= flash_info[i].start[0]) {
92 rc = 1;
93 break;
94 }
95 }
96
97 if (rc) { /* Flash is destination for this packet */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000098 rc = flash_write((uchar *)src, (ulong)(load_addr+offset), len);
wdenkcbd8a352004-02-24 02:00:03 +000099 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000100 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200101 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000102 }
103 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000105 {
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500106 void *ptr = map_sysmem(load_addr + offset, len);
107
108 memcpy(ptr, src, len);
109 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000110 }
wdenka084f7d2004-02-24 22:33:21 +0000111
Joe Hershberger14111572015-04-08 01:41:02 -0500112 if (net_boot_file_size < (offset + len))
113 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200114 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000115}
116
Joe Hershberger68c76a32015-04-08 01:41:10 -0500117static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000118{
119 char *fname;
120
121 fname = path + strlen(path) - 1;
122 while (fname >= path) {
123 if (*fname == '/') {
124 fname++;
125 break;
126 }
127 fname--;
128 }
129 return fname;
130}
131
Joe Hershberger68c76a32015-04-08 01:41:10 -0500132static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000133{
134 char *fname;
135
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000136 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000137 --fname;
138 *fname = '\0';
139 return path;
140}
141
142/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000143RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
144**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200145static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000146{
wdenkcbd8a352004-02-24 02:00:03 +0000147 /* Here's the executive summary on authentication requirements of the
148 * various NFS server implementations: Linux accepts both AUTH_NONE
149 * and AUTH_UNIX authentication (also accepts an empty hostname field
150 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
151 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
152 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
153 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
154 * hostname). */
155
wdenkcbd8a352004-02-24 02:00:03 +0000156 /* Provide an AUTH_UNIX credential. */
157 *p++ = htonl(1); /* AUTH_UNIX */
Joe Hershberger1ff65d42016-08-15 15:03:27 -0500158 *p++ = htonl(20); /* auth length */
159 *p++ = 0; /* stamp */
160 *p++ = 0; /* hostname string */
wdenkcbd8a352004-02-24 02:00:03 +0000161 *p++ = 0; /* uid */
162 *p++ = 0; /* gid */
163 *p++ = 0; /* auxiliary gid list */
164
165 /* Provide an AUTH_NONE verifier. */
166 *p++ = 0; /* AUTH_NONE */
167 *p++ = 0; /* auth length */
168
169 return p;
170}
171
172/**************************************************************************
173RPC_LOOKUP - Lookup RPC Port numbers
174**************************************************************************/
Joe Hershbergera73588f2016-09-09 12:56:26 -0500175static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000176{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500177 struct rpc_t rpc_pkt;
wdenkcbd8a352004-02-24 02:00:03 +0000178 unsigned long id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500179 uint32_t *p;
wdenkcbd8a352004-02-24 02:00:03 +0000180 int pktlen;
181 int sport;
182
wdenkc3f9d492004-03-14 00:59:59 +0000183 id = ++rpc_id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500184 rpc_pkt.u.call.id = htonl(id);
185 rpc_pkt.u.call.type = htonl(MSG_CALL);
186 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
187 rpc_pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200188 switch (rpc_prog) {
189 case PROG_NFS:
190 if (supported_nfs_versions & NFSV2_FLAG)
Joe Hershbergera73588f2016-09-09 12:56:26 -0500191 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200192 else /* NFSV3_FLAG */
Joe Hershbergera73588f2016-09-09 12:56:26 -0500193 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200194 break;
195 case PROG_PORTMAP:
196 case PROG_MOUNT:
197 default:
Joe Hershbergera73588f2016-09-09 12:56:26 -0500198 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200199 }
Joe Hershbergera73588f2016-09-09 12:56:26 -0500200 rpc_pkt.u.call.proc = htonl(rpc_proc);
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200201 p = rpc_pkt.u.call.data;
wdenkcbd8a352004-02-24 02:00:03 +0000202
Joe Hershbergera73588f2016-09-09 12:56:26 -0500203 if (datalen)
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200204 memcpy(p, data, datalen * sizeof(uint32_t));
Joe Hershbergera73588f2016-09-09 12:56:26 -0500205
206 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
207
208 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
209 &rpc_pkt.u.data[0], pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000210
211 if (rpc_prog == PROG_PORTMAP)
212 sport = SUNRPC_PORT;
213 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500214 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000215 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500216 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000217
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500218 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500219 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000220}
221
222/**************************************************************************
223RPC_LOOKUP - Lookup RPC Port numbers
224**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500225static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000226{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500227 uint32_t data[16];
wdenkcbd8a352004-02-24 02:00:03 +0000228
229 data[0] = 0; data[1] = 0; /* auth credential */
230 data[2] = 0; data[3] = 0; /* auth verifier */
231 data[4] = htonl(prog);
232 data[5] = htonl(ver);
233 data[6] = htonl(17); /* IP_UDP */
234 data[7] = 0;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500235 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000236}
237
238/**************************************************************************
239NFS_MOUNT - Mount an NFS Filesystem
240**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500241static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000242{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500243 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000244 uint32_t *p;
245 int len;
246 int pathlen;
247
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000248 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000249
Joe Hershbergera73588f2016-09-09 12:56:26 -0500250 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200251 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000252
253 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000254 if (pathlen & 3)
255 *(p + pathlen / 4) = 0;
256 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000257 p += (pathlen + 3) / 4;
258
Joe Hershbergera73588f2016-09-09 12:56:26 -0500259 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000260
Joe Hershbergera73588f2016-09-09 12:56:26 -0500261 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000262}
263
264/**************************************************************************
265NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
266**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500267static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000268{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500269 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000270 uint32_t *p;
271 int len;
272
Joe Hershberger68c76a32015-04-08 01:41:10 -0500273 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000274 /* Nothing mounted, nothing to umount */
275 return;
wdenkcbd8a352004-02-24 02:00:03 +0000276
Joe Hershbergera73588f2016-09-09 12:56:26 -0500277 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200278 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000279
Joe Hershbergera73588f2016-09-09 12:56:26 -0500280 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000281
Joe Hershbergera73588f2016-09-09 12:56:26 -0500282 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000283}
284
285/***************************************************************************
286 * NFS_READLINK (AH 2003-07-14)
287 * This procedure is called when read of the first block fails -
288 * this probably happens when it's a directory or a symlink
289 * In case of successful readlink(), the dirname is manipulated,
290 * so that inside the nfs() function a recursion can be done.
291 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500292static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000293{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500294 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000295 uint32_t *p;
296 int len;
297
Joe Hershbergera73588f2016-09-09 12:56:26 -0500298 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200299 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000300
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200301 if (supported_nfs_versions & NFSV2_FLAG) {
302 memcpy(p, filefh, NFS_FHSIZE);
303 p += (NFS_FHSIZE / 4);
304 } else { /* NFSV3_FLAG */
305 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500306 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200307 p += (filefh3_length / 4);
308 }
wdenkcbd8a352004-02-24 02:00:03 +0000309
Joe Hershbergera73588f2016-09-09 12:56:26 -0500310 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000311
Joe Hershbergera73588f2016-09-09 12:56:26 -0500312 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000313}
314
315/**************************************************************************
316NFS_LOOKUP - Lookup Pathname
317**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500318static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000319{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500320 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000321 uint32_t *p;
322 int len;
323 int fnamelen;
324
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000325 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000326
Joe Hershbergera73588f2016-09-09 12:56:26 -0500327 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200328 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000329
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200330 if (supported_nfs_versions & NFSV2_FLAG) {
331 memcpy(p, dirfh, NFS_FHSIZE);
332 p += (NFS_FHSIZE / 4);
333 *p++ = htonl(fnamelen);
334 if (fnamelen & 3)
335 *(p + fnamelen / 4) = 0;
336 memcpy(p, fname, fnamelen);
337 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000338
Joe Hershbergera73588f2016-09-09 12:56:26 -0500339 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000340
Joe Hershbergera73588f2016-09-09 12:56:26 -0500341 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200342 } else { /* NFSV3_FLAG */
343 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
344 memcpy(p, dirfh, NFS_FHSIZE);
345 p += (NFS_FHSIZE / 4);
346 *p++ = htonl(fnamelen);
347 if (fnamelen & 3)
348 *(p + fnamelen / 4) = 0;
349 memcpy(p, fname, fnamelen);
350 p += (fnamelen + 3) / 4;
351
Joe Hershbergera73588f2016-09-09 12:56:26 -0500352 len = (uint32_t *)p - (uint32_t *)&(data[0]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200353
Joe Hershbergera73588f2016-09-09 12:56:26 -0500354 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200355 }
wdenkcbd8a352004-02-24 02:00:03 +0000356}
357
358/**************************************************************************
359NFS_READ - Read File on NFS Server
360**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500361static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000362{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500363 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000364 uint32_t *p;
365 int len;
366
Joe Hershbergera73588f2016-09-09 12:56:26 -0500367 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200368 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000369
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200370 if (supported_nfs_versions & NFSV2_FLAG) {
371 memcpy(p, filefh, NFS_FHSIZE);
372 p += (NFS_FHSIZE / 4);
373 *p++ = htonl(offset);
374 *p++ = htonl(readlen);
375 *p++ = 0;
376 } else { /* NFSV3_FLAG */
377 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500378 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200379 p += (filefh3_length / 4);
380 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
381 *p++ = htonl(offset);
382 *p++ = htonl(readlen);
383 *p++ = 0;
384 }
wdenkcbd8a352004-02-24 02:00:03 +0000385
Joe Hershbergera73588f2016-09-09 12:56:26 -0500386 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000387
Joe Hershbergera73588f2016-09-09 12:56:26 -0500388 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000389}
390
391/**************************************************************************
392RPC request dispatcher
393**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500394static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000395{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400396 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000397
Joe Hershberger68c76a32015-04-08 01:41:10 -0500398 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000399 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200400 if (supported_nfs_versions & NFSV2_FLAG)
401 rpc_lookup_req(PROG_MOUNT, 1);
402 else /* NFSV3_FLAG */
403 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000404 break;
405 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200406 if (supported_nfs_versions & NFSV2_FLAG)
407 rpc_lookup_req(PROG_NFS, 2);
408 else /* NFSV3_FLAG */
409 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000410 break;
411 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000412 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000413 break;
414 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000415 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000416 break;
417 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000418 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000419 break;
420 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000421 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000422 break;
423 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000424 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000425 break;
426 }
427}
428
429/**************************************************************************
430Handlers for the reply from server
431**************************************************************************/
432
Joe Hershberger68c76a32015-04-08 01:41:10 -0500433static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000434{
435 struct rpc_t rpc_pkt;
436
Joe Hershberger0517cc42016-08-15 15:03:24 -0500437 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000438
Robin Getz0ebf04c2009-07-23 03:01:03 -0400439 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000440
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100441 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
442 return -NFS_RPC_ERR;
443 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
444 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000445
wdenkcbd8a352004-02-24 02:00:03 +0000446 if (rpc_pkt.u.reply.rstatus ||
447 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000448 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000449 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000450
451 switch (prog) {
452 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500453 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000454 break;
455 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500456 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000457 break;
458 }
459
460 return 0;
461}
462
Joe Hershberger68c76a32015-04-08 01:41:10 -0500463static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000464{
465 struct rpc_t rpc_pkt;
466
Robin Getz0ebf04c2009-07-23 03:01:03 -0400467 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000468
Joe Hershberger0517cc42016-08-15 15:03:24 -0500469 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000470
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100471 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
472 return -NFS_RPC_ERR;
473 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
474 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000475
wdenkcbd8a352004-02-24 02:00:03 +0000476 if (rpc_pkt.u.reply.rstatus ||
477 rpc_pkt.u.reply.verifier ||
478 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000479 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000480 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000481
482 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200483 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000484 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000485
486 return 0;
487}
488
Joe Hershberger68c76a32015-04-08 01:41:10 -0500489static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000490{
491 struct rpc_t rpc_pkt;
492
Robin Getz0ebf04c2009-07-23 03:01:03 -0400493 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000494
Joe Hershberger0517cc42016-08-15 15:03:24 -0500495 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000496
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100497 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
498 return -NFS_RPC_ERR;
499 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
500 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000501
wdenkcbd8a352004-02-24 02:00:03 +0000502 if (rpc_pkt.u.reply.rstatus ||
503 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000504 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000505 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000506
507 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000508 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000509
510 return 0;
511}
512
Joe Hershberger68c76a32015-04-08 01:41:10 -0500513static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000514{
515 struct rpc_t rpc_pkt;
516
Robin Getz0ebf04c2009-07-23 03:01:03 -0400517 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000518
Joe Hershberger0517cc42016-08-15 15:03:24 -0500519 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000520
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100521 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
522 return -NFS_RPC_ERR;
523 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
524 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000525
wdenkcbd8a352004-02-24 02:00:03 +0000526 if (rpc_pkt.u.reply.rstatus ||
527 rpc_pkt.u.reply.verifier ||
528 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200529 rpc_pkt.u.reply.data[0]) {
530 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200531 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200532 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200533 case NFS_RPC_PROG_MISMATCH:
534 /* Remote can't support NFS version */
535 switch (ntohl(rpc_pkt.u.reply.data[0])) {
536 /* Minimal supported NFS version */
537 case 3:
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500538 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500539 (supported_nfs_versions & NFSV2_FLAG) ?
540 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200541 ntohl(rpc_pkt.u.reply.data[0]),
542 ntohl(rpc_pkt.u.reply.data[1]));
543 debug("Will retry with NFSv3\n");
544 /* Clear NFSV2_FLAG from supported versions */
545 supported_nfs_versions &= ~NFSV2_FLAG;
546 return -NFS_RPC_PROG_MISMATCH;
547 case 4:
548 default:
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500549 puts("*** ERROR: NFS version not supported");
550 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
551 (supported_nfs_versions & NFSV2_FLAG) ?
Joe Hershberger347a9012016-08-15 15:03:21 -0500552 2 : 3,
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500553 ntohl(rpc_pkt.u.reply.data[0]),
554 ntohl(rpc_pkt.u.reply.data[1]));
555 puts("\n");
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200556 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200557 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200558 case NFS_RPC_PROG_UNAVAIL:
559 case NFS_RPC_PROC_UNAVAIL:
560 case NFS_RPC_GARBAGE_ARGS:
561 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200562 default: /* Unknown error on 'accept state' flag */
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500563 debug("*** ERROR: accept state error (%d)\n",
564 ntohl(rpc_pkt.u.reply.astatus));
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200565 break;
566 }
wdenkcbd8a352004-02-24 02:00:03 +0000567 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200568 }
wdenkcbd8a352004-02-24 02:00:03 +0000569
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200570 if (supported_nfs_versions & NFSV2_FLAG) {
liucheng (G)5d14ee42019-08-29 13:48:02 +0000571 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
572 return -NFS_RPC_DROP;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200573 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
574 } else { /* NFSV3_FLAG */
575 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
576 if (filefh3_length > NFS3_FHSIZE)
577 filefh3_length = NFS3_FHSIZE;
liucheng (G)5d14ee42019-08-29 13:48:02 +0000578 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
579 return -NFS_RPC_DROP;
Joe Hershberger5280c762016-08-15 15:03:19 -0500580 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200581 }
wdenkcbd8a352004-02-24 02:00:03 +0000582
583 return 0;
584}
585
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500586static int nfs3_get_attributes_offset(uint32_t *data)
587{
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200588 if (data[1]) {
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500589 /* 'attributes_follow' flag is TRUE,
Joe Hershbergerc629c452016-08-15 15:03:23 -0500590 * so we have attributes on 21 dwords */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500591 /* Skip unused values :
592 type; 32 bits value,
593 mode; 32 bits value,
594 nlink; 32 bits value,
595 uid; 32 bits value,
596 gid; 32 bits value,
597 size; 64 bits value,
598 used; 64 bits value,
599 rdev; 64 bits value,
600 fsid; 64 bits value,
601 fileid; 64 bits value,
602 atime; 64 bits value,
603 mtime; 64 bits value,
604 ctime; 64 bits value,
605 */
606 return 22;
607 } else {
608 /* 'attributes_follow' flag is FALSE,
609 * so we don't have any attributes */
610 return 1;
611 }
612}
613
Joe Hershberger68c76a32015-04-08 01:41:10 -0500614static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000615{
616 struct rpc_t rpc_pkt;
617 int rlen;
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500618 int nfsv3_data_offset = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000619
Robin Getz0ebf04c2009-07-23 03:01:03 -0400620 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000621
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000622 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000623
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100624 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
625 return -NFS_RPC_ERR;
626 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
627 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000628
wdenkcbd8a352004-02-24 02:00:03 +0000629 if (rpc_pkt.u.reply.rstatus ||
630 rpc_pkt.u.reply.verifier ||
631 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000632 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000633 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000634
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500635 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
636 nfsv3_data_offset =
637 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
638 }
wdenkcbd8a352004-02-24 02:00:03 +0000639
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500640 /* new path length */
641 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200642
liucheng (G)cf3a4f12019-08-29 13:47:54 +0000643 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
644 return -NFS_RPC_DROP;
645
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500646 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
647 int pathlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200648
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500649 strcat(nfs_path, "/");
650 pathlen = strlen(nfs_path);
651 memcpy(nfs_path + pathlen,
652 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
653 rlen);
654 nfs_path[pathlen + rlen] = 0;
655 } else {
656 memcpy(nfs_path,
657 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
658 rlen);
659 nfs_path[rlen] = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000660 }
661 return 0;
662}
663
Joe Hershberger68c76a32015-04-08 01:41:10 -0500664static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000665{
666 struct rpc_t rpc_pkt;
667 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200668 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000669
Robin Getz0ebf04c2009-07-23 03:01:03 -0400670 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000671
Joe Hershberger0517cc42016-08-15 15:03:24 -0500672 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000673
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100674 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
675 return -NFS_RPC_ERR;
676 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
677 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000678
wdenkcbd8a352004-02-24 02:00:03 +0000679 if (rpc_pkt.u.reply.rstatus ||
680 rpc_pkt.u.reply.verifier ||
681 rpc_pkt.u.reply.astatus ||
682 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000683 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000684 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000685 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000686 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000687 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000688 }
689
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000690 if ((nfs_offset != 0) && !((nfs_offset) %
691 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
692 puts("\n\t ");
693 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
694 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000695
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200696 if (supported_nfs_versions & NFSV2_FLAG) {
697 rlen = ntohl(rpc_pkt.u.reply.data[18]);
698 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
699 } else { /* NFSV3_FLAG */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500700 int nfsv3_data_offset =
701 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
702
703 /* count value */
704 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
705 /* Skip unused values :
706 EOF: 32 bits value,
707 data_size: 32 bits value,
708 */
709 data_ptr = (uchar *)
710 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200711 }
712
liucheng (G)aa207cf2019-08-29 13:47:48 +0000713 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
714 return -9999;
715
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200716 if (store_block(data_ptr, nfs_offset, rlen))
717 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000718
719 return rlen;
720}
721
722/**************************************************************************
723Interfaces of U-BOOT
724**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500725static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000726{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500727 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000728 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500729 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600730 } else {
731 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500732 net_set_timeout_handler(nfs_timeout +
733 NFS_TIMEOUT * nfs_timeout_count,
734 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500735 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900736 }
wdenka5725fa2004-09-28 21:51:42 +0000737}
738
Joe Hershberger049a95a2015-04-08 01:41:01 -0500739static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
740 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000741{
742 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100743 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000744
Robin Getz0ebf04c2009-07-23 03:01:03 -0400745 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000746
liucheng (G)741a8a02019-08-29 13:47:40 +0000747 if (len > sizeof(struct rpc_t))
748 return;
749
Joe Hershberger68c76a32015-04-08 01:41:10 -0500750 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000751 return;
wdenkcbd8a352004-02-24 02:00:03 +0000752
Joe Hershberger68c76a32015-04-08 01:41:10 -0500753 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000754 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100755 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
756 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500757 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
758 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000759 break;
760
761 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100762 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
763 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500764 nfs_state = STATE_MOUNT_REQ;
765 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000766 break;
767
768 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100769 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500770 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100771 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500772 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000773 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000774 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500775 nfs_state = STATE_UMOUNT_REQ;
776 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000777 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500778 nfs_state = STATE_LOOKUP_REQ;
779 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000780 }
781 break;
782
783 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100784 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500785 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100786 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500787 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500788 debug("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000789 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000790 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000791 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000792 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000793 }
794 break;
795
796 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100797 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500798 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100799 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500800 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000801 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500802 nfs_state = STATE_UMOUNT_REQ;
803 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500804 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
805 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200806 /* umount */
807 nfs_state = STATE_UMOUNT_REQ;
808 nfs_send();
809 /* And retry with another supported version */
810 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
811 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000812 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500813 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000814 nfs_offset = 0;
815 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500816 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000817 }
818 break;
819
820 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100821 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500822 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100823 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500824 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000825 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500826 nfs_state = STATE_UMOUNT_REQ;
827 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000828 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400829 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000830 nfs_filename = basename(nfs_path);
831 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000832
Joe Hershberger68c76a32015-04-08 01:41:10 -0500833 nfs_state = STATE_MOUNT_REQ;
834 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000835 }
836 break;
837
838 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000839 rlen = nfs_read_reply(pkt, len);
Vasily Khoruzhickd48d40a2018-05-14 08:34:36 -0700840 if (rlen == -NFS_RPC_DROP)
841 break;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500842 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000843 if (rlen > 0) {
844 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500845 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000846 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000847 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500848 nfs_state = STATE_READLINK_REQ;
849 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000850 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000851 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000852 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200853 if (rlen < 0)
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500854 debug("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500855 nfs_state = STATE_UMOUNT_REQ;
856 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000857 }
858 break;
859 }
860}
861
wdenkcbd8a352004-02-24 02:00:03 +0000862
Joe Hershberger68c76a32015-04-08 01:41:10 -0500863void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000864{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400865 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000866 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000867
Joe Hershberger049a95a2015-04-08 01:41:01 -0500868 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000869 nfs_path = (char *)nfs_path_buff;
870
871 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000872 net_set_state(NETLOOP_FAIL);
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500873 printf("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000874 return;
875 }
876
Joe Hershberger6ab12832018-07-03 19:36:43 -0500877 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
878 sizeof(nfs_path_buff))) {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500879 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500880 net_ip.s_addr & 0xFF,
881 (net_ip.s_addr >> 8) & 0xFF,
882 (net_ip.s_addr >> 16) & 0xFF,
883 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000884
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500885 printf("*** Warning: no boot file name; using '%s'\n",
886 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000887 }
888
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000889 nfs_filename = basename(nfs_path);
890 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000891
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500892 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000893
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500894 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
895 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000896
897 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500898 if (net_gateway.s_addr && net_netmask.s_addr) {
899 struct in_addr our_net;
900 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000901
Joe Hershberger049a95a2015-04-08 01:41:01 -0500902 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
Joe Hershberger347e32b2018-07-03 19:22:55 -0500903 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500904 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500905 printf("; sending through gateway %pI4",
906 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000907 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500908 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000909
Joe Hershberger14111572015-04-08 01:41:02 -0500910 if (net_boot_file_expected_size_in_blocks) {
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500911 printf(" Size is 0x%x Bytes = ",
912 net_boot_file_expected_size_in_blocks << 9);
Joe Hershberger14111572015-04-08 01:41:02 -0500913 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000914 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500915 printf("\nLoad address: 0x%lx\nLoading: *\b", load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000916
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500917 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500918 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000919
Joe Hershberger68c76a32015-04-08 01:41:10 -0500920 nfs_timeout_count = 0;
921 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000922
Joe Hershberger68c76a32015-04-08 01:41:10 -0500923 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000924 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500925 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000926
927 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500928 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000929
Joe Hershberger68c76a32015-04-08 01:41:10 -0500930 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000931}