blob: 9f65cfb20dc9eb0d7447e041cfcb1e9afc0c9e53 [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>
Tom Rini17ead042022-07-23 13:05:03 -040031#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
Simon Glass0ee482522019-12-28 10:44:40 -070032#include <flash.h>
Tom Rini17ead042022-07-23 13:05:03 -040033#endif
Simon Glass8e8ccfe2019-12-28 10:45:03 -070034#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060035#include <log.h>
wdenkcbd8a352004-02-24 02:00:03 +000036#include <net.h>
37#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050038#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000039#include "nfs.h"
40#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070041#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000042
wdenkcbd8a352004-02-24 02:00:03 +000043#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090044#define NFS_RETRY_COUNT 30
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;
Tom Rinieeda7622022-03-11 09:12:05 -050053static const ulong nfs_timeout = CONFIG_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 */
Andrea zi0Black Cappabdbf7a02022-05-18 16:30:08 +000057static unsigned 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? */
Simon Glassbb872dd2019-12-28 10:45:02 -070090 if (image_load_addr + offset >= flash_info[i].start[0]) {
wdenkcbd8a352004-02-24 02:00:03 +000091 rc = 1;
92 break;
93 }
94 }
95
96 if (rc) { /* Flash is destination for this packet */
Simon Glassbb872dd2019-12-28 10:45:02 -070097 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
98 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 {
Simon Glassbb872dd2019-12-28 10:45:02 -0700106 void *ptr = map_sysmem(image_load_addr + offset, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500107
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;
Joe Hershberger5280c762016-08-15 15:03:19 -0500578 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200579 }
wdenkcbd8a352004-02-24 02:00:03 +0000580
581 return 0;
582}
583
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500584static int nfs3_get_attributes_offset(uint32_t *data)
585{
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200586 if (data[1]) {
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500587 /* 'attributes_follow' flag is TRUE,
Joe Hershbergerc629c452016-08-15 15:03:23 -0500588 * so we have attributes on 21 dwords */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500589 /* Skip unused values :
590 type; 32 bits value,
591 mode; 32 bits value,
592 nlink; 32 bits value,
593 uid; 32 bits value,
594 gid; 32 bits value,
595 size; 64 bits value,
596 used; 64 bits value,
597 rdev; 64 bits value,
598 fsid; 64 bits value,
599 fileid; 64 bits value,
600 atime; 64 bits value,
601 mtime; 64 bits value,
602 ctime; 64 bits value,
603 */
604 return 22;
605 } else {
606 /* 'attributes_follow' flag is FALSE,
607 * so we don't have any attributes */
608 return 1;
609 }
610}
611
Joe Hershberger68c76a32015-04-08 01:41:10 -0500612static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000613{
614 struct rpc_t rpc_pkt;
615 int rlen;
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500616 int nfsv3_data_offset = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000617
Robin Getz0ebf04c2009-07-23 03:01:03 -0400618 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000619
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000620 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000621
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100622 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
623 return -NFS_RPC_ERR;
624 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
625 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000626
wdenkcbd8a352004-02-24 02:00:03 +0000627 if (rpc_pkt.u.reply.rstatus ||
628 rpc_pkt.u.reply.verifier ||
629 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000630 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000631 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000632
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500633 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
634 nfsv3_data_offset =
635 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
636 }
wdenkcbd8a352004-02-24 02:00:03 +0000637
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500638 /* new path length */
639 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200640
liucheng (G)cf3a4f12019-08-29 13:47:54 +0000641 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
642 return -NFS_RPC_DROP;
643
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500644 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
645 int pathlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200646
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500647 strcat(nfs_path, "/");
648 pathlen = strlen(nfs_path);
649 memcpy(nfs_path + pathlen,
650 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
651 rlen);
652 nfs_path[pathlen + rlen] = 0;
653 } else {
654 memcpy(nfs_path,
655 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
656 rlen);
657 nfs_path[rlen] = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000658 }
659 return 0;
660}
661
Joe Hershberger68c76a32015-04-08 01:41:10 -0500662static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000663{
664 struct rpc_t rpc_pkt;
665 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200666 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000667
Robin Getz0ebf04c2009-07-23 03:01:03 -0400668 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000669
Joe Hershberger0517cc42016-08-15 15:03:24 -0500670 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000671
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100672 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
673 return -NFS_RPC_ERR;
674 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
675 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000676
wdenkcbd8a352004-02-24 02:00:03 +0000677 if (rpc_pkt.u.reply.rstatus ||
678 rpc_pkt.u.reply.verifier ||
679 rpc_pkt.u.reply.astatus ||
680 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000681 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000682 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000683 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000684 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000685 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000686 }
687
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000688 if ((nfs_offset != 0) && !((nfs_offset) %
689 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
690 puts("\n\t ");
691 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
692 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000693
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200694 if (supported_nfs_versions & NFSV2_FLAG) {
695 rlen = ntohl(rpc_pkt.u.reply.data[18]);
696 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
697 } else { /* NFSV3_FLAG */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500698 int nfsv3_data_offset =
699 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
700
701 /* count value */
702 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
703 /* Skip unused values :
704 EOF: 32 bits value,
705 data_size: 32 bits value,
706 */
707 data_ptr = (uchar *)
708 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200709 }
710
liucheng (G)aa207cf2019-08-29 13:47:48 +0000711 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
712 return -9999;
713
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200714 if (store_block(data_ptr, nfs_offset, rlen))
715 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000716
717 return rlen;
718}
719
720/**************************************************************************
721Interfaces of U-BOOT
722**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500723static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000724{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500725 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000726 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500727 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600728 } else {
729 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500730 net_set_timeout_handler(nfs_timeout +
Tom Rinieeda7622022-03-11 09:12:05 -0500731 nfs_timeout * nfs_timeout_count,
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500732 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500733 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900734 }
wdenka5725fa2004-09-28 21:51:42 +0000735}
736
Joe Hershberger049a95a2015-04-08 01:41:01 -0500737static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
738 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000739{
740 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100741 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000742
Robin Getz0ebf04c2009-07-23 03:01:03 -0400743 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000744
liucheng (G)741a8a02019-08-29 13:47:40 +0000745 if (len > sizeof(struct rpc_t))
746 return;
747
Joe Hershberger68c76a32015-04-08 01:41:10 -0500748 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000749 return;
wdenkcbd8a352004-02-24 02:00:03 +0000750
Joe Hershberger68c76a32015-04-08 01:41:10 -0500751 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000752 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100753 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
754 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500755 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
756 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000757 break;
758
759 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100760 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
761 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500762 nfs_state = STATE_MOUNT_REQ;
763 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000764 break;
765
766 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100767 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500768 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100769 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500770 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000771 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000772 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500773 nfs_state = STATE_UMOUNT_REQ;
774 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000775 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500776 nfs_state = STATE_LOOKUP_REQ;
777 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000778 }
779 break;
780
781 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100782 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500783 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100784 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500785 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500786 debug("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000787 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000788 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000789 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000790 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000791 }
792 break;
793
794 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100795 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500796 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100797 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500798 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000799 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500800 nfs_state = STATE_UMOUNT_REQ;
801 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500802 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
803 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200804 /* umount */
805 nfs_state = STATE_UMOUNT_REQ;
806 nfs_send();
807 /* And retry with another supported version */
808 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
809 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000810 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500811 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000812 nfs_offset = 0;
813 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500814 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000815 }
816 break;
817
818 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100819 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500820 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100821 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500822 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000823 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500824 nfs_state = STATE_UMOUNT_REQ;
825 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000826 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400827 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000828 nfs_filename = basename(nfs_path);
829 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000830
Joe Hershberger68c76a32015-04-08 01:41:10 -0500831 nfs_state = STATE_MOUNT_REQ;
832 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000833 }
834 break;
835
836 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000837 rlen = nfs_read_reply(pkt, len);
Vasily Khoruzhickd48d40a2018-05-14 08:34:36 -0700838 if (rlen == -NFS_RPC_DROP)
839 break;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500840 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000841 if (rlen > 0) {
842 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500843 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000844 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000845 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500846 nfs_state = STATE_READLINK_REQ;
847 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000848 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000849 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000850 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200851 if (rlen < 0)
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500852 debug("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500853 nfs_state = STATE_UMOUNT_REQ;
854 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000855 }
856 break;
857 }
858}
859
wdenkcbd8a352004-02-24 02:00:03 +0000860
Joe Hershberger68c76a32015-04-08 01:41:10 -0500861void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000862{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400863 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000864 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000865
Joe Hershberger049a95a2015-04-08 01:41:01 -0500866 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000867 nfs_path = (char *)nfs_path_buff;
868
869 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000870 net_set_state(NETLOOP_FAIL);
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500871 printf("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000872 return;
873 }
874
Joe Hershberger6ab12832018-07-03 19:36:43 -0500875 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
876 sizeof(nfs_path_buff))) {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500877 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500878 net_ip.s_addr & 0xFF,
879 (net_ip.s_addr >> 8) & 0xFF,
880 (net_ip.s_addr >> 16) & 0xFF,
881 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000882
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500883 printf("*** Warning: no boot file name; using '%s'\n",
884 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000885 }
886
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000887 nfs_filename = basename(nfs_path);
888 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000889
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500890 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000891
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500892 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
893 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000894
895 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500896 if (net_gateway.s_addr && net_netmask.s_addr) {
897 struct in_addr our_net;
898 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000899
Joe Hershberger049a95a2015-04-08 01:41:01 -0500900 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
Joe Hershberger347e32b2018-07-03 19:22:55 -0500901 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500902 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500903 printf("; sending through gateway %pI4",
904 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000905 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500906 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000907
Joe Hershberger14111572015-04-08 01:41:02 -0500908 if (net_boot_file_expected_size_in_blocks) {
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500909 printf(" Size is 0x%x Bytes = ",
910 net_boot_file_expected_size_in_blocks << 9);
Joe Hershberger14111572015-04-08 01:41:02 -0500911 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000912 }
Simon Glassbb872dd2019-12-28 10:45:02 -0700913 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000914
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500915 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500916 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000917
Joe Hershberger68c76a32015-04-08 01:41:10 -0500918 nfs_timeout_count = 0;
919 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000920
Joe Hershberger68c76a32015-04-08 01:41:10 -0500921 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000922 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500923 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000924
925 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500926 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000927
Joe Hershberger68c76a32015-04-08 01:41:10 -0500928 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000929}