blob: 72e1018a3bdd54a01038e5ef2ef6e56fff9461ae [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>
Simon Glass8e8ccfe2019-12-28 10:45:03 -070032#include <image.h>
wdenkcbd8a352004-02-24 02:00:03 +000033#include <net.h>
34#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050035#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000036#include "nfs.h"
37#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070038#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000039
wdenkcbd8a352004-02-24 02:00:03 +000040#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090041#define NFS_RETRY_COUNT 30
Tetsuyuki Kobayashi48a3e992012-07-03 22:25:21 +000042#ifndef CONFIG_NFS_TIMEOUT
43# define NFS_TIMEOUT 2000UL
44#else
45# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
46#endif
wdenkcbd8a352004-02-24 02:00:03 +000047
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010048#define NFS_RPC_ERR 1
49#define NFS_RPC_DROP 124
50
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000051static int fs_mounted;
52static unsigned long rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +000053static int nfs_offset = -1;
54static int nfs_len;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010055static ulong nfs_timeout = NFS_TIMEOUT;
wdenkcbd8a352004-02-24 02:00:03 +000056
Guillaume GARDETb0baca92016-07-29 11:31:00 +020057static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
Joe Hershberger5280c762016-08-15 15:03:19 -050058static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
59static int filefh3_length; /* (variable) length of filefh when NFSv3 */
wdenkcbd8a352004-02-24 02:00:03 +000060
Joe Hershberger22f6e992012-05-23 07:59:14 +000061static enum net_loop_state nfs_download_state;
Joe Hershberger049a95a2015-04-08 01:41:01 -050062static struct in_addr nfs_server_ip;
Joe Hershberger68c76a32015-04-08 01:41:10 -050063static int nfs_server_mount_port;
64static int nfs_server_port;
65static int nfs_our_port;
66static int nfs_timeout_count;
67static int nfs_state;
wdenkcbd8a352004-02-24 02:00:03 +000068#define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
69#define STATE_PRCLOOKUP_PROG_NFS_REQ 2
70#define STATE_MOUNT_REQ 3
71#define STATE_UMOUNT_REQ 4
72#define STATE_LOOKUP_REQ 5
73#define STATE_READ_REQ 6
74#define STATE_READLINK_REQ 7
75
wdenkcbd8a352004-02-24 02:00:03 +000076static char *nfs_filename;
77static char *nfs_path;
78static char nfs_path_buff[2048];
79
Guillaume GARDETb0baca92016-07-29 11:31:00 +020080#define NFSV2_FLAG 1
81#define NFSV3_FLAG 1 << 1
82static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
83
Joe Hershberger68c76a32015-04-08 01:41:10 -050084static inline int store_block(uchar *src, unsigned offset, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +000085{
wdenka084f7d2004-02-24 22:33:21 +000086 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
wdenkcbd8a352004-02-24 02:00:03 +000088 int i, rc = 0;
89
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000090 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkcbd8a352004-02-24 02:00:03 +000091 /* start address in flash? */
Simon Glassbb872dd2019-12-28 10:45:02 -070092 if (image_load_addr + offset >= flash_info[i].start[0]) {
wdenkcbd8a352004-02-24 02:00:03 +000093 rc = 1;
94 break;
95 }
96 }
97
98 if (rc) { /* Flash is destination for this packet */
Simon Glassbb872dd2019-12-28 10:45:02 -070099 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
100 len);
wdenkcbd8a352004-02-24 02:00:03 +0000101 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000102 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200103 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000104 }
105 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000107 {
Simon Glassbb872dd2019-12-28 10:45:02 -0700108 void *ptr = map_sysmem(image_load_addr + offset, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500109
110 memcpy(ptr, src, len);
111 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000112 }
wdenka084f7d2004-02-24 22:33:21 +0000113
Joe Hershberger14111572015-04-08 01:41:02 -0500114 if (net_boot_file_size < (offset + len))
115 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200116 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000117}
118
Joe Hershberger68c76a32015-04-08 01:41:10 -0500119static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000120{
121 char *fname;
122
123 fname = path + strlen(path) - 1;
124 while (fname >= path) {
125 if (*fname == '/') {
126 fname++;
127 break;
128 }
129 fname--;
130 }
131 return fname;
132}
133
Joe Hershberger68c76a32015-04-08 01:41:10 -0500134static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000135{
136 char *fname;
137
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000138 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000139 --fname;
140 *fname = '\0';
141 return path;
142}
143
144/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000145RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
146**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200147static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000148{
wdenkcbd8a352004-02-24 02:00:03 +0000149 /* Here's the executive summary on authentication requirements of the
150 * various NFS server implementations: Linux accepts both AUTH_NONE
151 * and AUTH_UNIX authentication (also accepts an empty hostname field
152 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
153 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
154 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
155 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
156 * hostname). */
157
wdenkcbd8a352004-02-24 02:00:03 +0000158 /* Provide an AUTH_UNIX credential. */
159 *p++ = htonl(1); /* AUTH_UNIX */
Joe Hershberger1ff65d42016-08-15 15:03:27 -0500160 *p++ = htonl(20); /* auth length */
161 *p++ = 0; /* stamp */
162 *p++ = 0; /* hostname string */
wdenkcbd8a352004-02-24 02:00:03 +0000163 *p++ = 0; /* uid */
164 *p++ = 0; /* gid */
165 *p++ = 0; /* auxiliary gid list */
166
167 /* Provide an AUTH_NONE verifier. */
168 *p++ = 0; /* AUTH_NONE */
169 *p++ = 0; /* auth length */
170
171 return p;
172}
173
174/**************************************************************************
175RPC_LOOKUP - Lookup RPC Port numbers
176**************************************************************************/
Joe Hershbergera73588f2016-09-09 12:56:26 -0500177static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000178{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500179 struct rpc_t rpc_pkt;
wdenkcbd8a352004-02-24 02:00:03 +0000180 unsigned long id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500181 uint32_t *p;
wdenkcbd8a352004-02-24 02:00:03 +0000182 int pktlen;
183 int sport;
184
wdenkc3f9d492004-03-14 00:59:59 +0000185 id = ++rpc_id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500186 rpc_pkt.u.call.id = htonl(id);
187 rpc_pkt.u.call.type = htonl(MSG_CALL);
188 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
189 rpc_pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200190 switch (rpc_prog) {
191 case PROG_NFS:
192 if (supported_nfs_versions & NFSV2_FLAG)
Joe Hershbergera73588f2016-09-09 12:56:26 -0500193 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200194 else /* NFSV3_FLAG */
Joe Hershbergera73588f2016-09-09 12:56:26 -0500195 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200196 break;
197 case PROG_PORTMAP:
198 case PROG_MOUNT:
199 default:
Joe Hershbergera73588f2016-09-09 12:56:26 -0500200 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200201 }
Joe Hershbergera73588f2016-09-09 12:56:26 -0500202 rpc_pkt.u.call.proc = htonl(rpc_proc);
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200203 p = rpc_pkt.u.call.data;
wdenkcbd8a352004-02-24 02:00:03 +0000204
Joe Hershbergera73588f2016-09-09 12:56:26 -0500205 if (datalen)
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200206 memcpy(p, data, datalen * sizeof(uint32_t));
Joe Hershbergera73588f2016-09-09 12:56:26 -0500207
208 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
209
210 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
211 &rpc_pkt.u.data[0], pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000212
213 if (rpc_prog == PROG_PORTMAP)
214 sport = SUNRPC_PORT;
215 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500216 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000217 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500218 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000219
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500220 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500221 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000222}
223
224/**************************************************************************
225RPC_LOOKUP - Lookup RPC Port numbers
226**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500227static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000228{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500229 uint32_t data[16];
wdenkcbd8a352004-02-24 02:00:03 +0000230
231 data[0] = 0; data[1] = 0; /* auth credential */
232 data[2] = 0; data[3] = 0; /* auth verifier */
233 data[4] = htonl(prog);
234 data[5] = htonl(ver);
235 data[6] = htonl(17); /* IP_UDP */
236 data[7] = 0;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500237 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000238}
239
240/**************************************************************************
241NFS_MOUNT - Mount an NFS Filesystem
242**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500243static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000244{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500245 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000246 uint32_t *p;
247 int len;
248 int pathlen;
249
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000250 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000251
Joe Hershbergera73588f2016-09-09 12:56:26 -0500252 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200253 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000254
255 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000256 if (pathlen & 3)
257 *(p + pathlen / 4) = 0;
258 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000259 p += (pathlen + 3) / 4;
260
Joe Hershbergera73588f2016-09-09 12:56:26 -0500261 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000262
Joe Hershbergera73588f2016-09-09 12:56:26 -0500263 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000264}
265
266/**************************************************************************
267NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
268**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500269static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000270{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500271 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000272 uint32_t *p;
273 int len;
274
Joe Hershberger68c76a32015-04-08 01:41:10 -0500275 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000276 /* Nothing mounted, nothing to umount */
277 return;
wdenkcbd8a352004-02-24 02:00:03 +0000278
Joe Hershbergera73588f2016-09-09 12:56:26 -0500279 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200280 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000281
Joe Hershbergera73588f2016-09-09 12:56:26 -0500282 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000283
Joe Hershbergera73588f2016-09-09 12:56:26 -0500284 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000285}
286
287/***************************************************************************
288 * NFS_READLINK (AH 2003-07-14)
289 * This procedure is called when read of the first block fails -
290 * this probably happens when it's a directory or a symlink
291 * In case of successful readlink(), the dirname is manipulated,
292 * so that inside the nfs() function a recursion can be done.
293 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500294static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000295{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500296 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000297 uint32_t *p;
298 int len;
299
Joe Hershbergera73588f2016-09-09 12:56:26 -0500300 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200301 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000302
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200303 if (supported_nfs_versions & NFSV2_FLAG) {
304 memcpy(p, filefh, NFS_FHSIZE);
305 p += (NFS_FHSIZE / 4);
306 } else { /* NFSV3_FLAG */
307 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500308 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200309 p += (filefh3_length / 4);
310 }
wdenkcbd8a352004-02-24 02:00:03 +0000311
Joe Hershbergera73588f2016-09-09 12:56:26 -0500312 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000313
Joe Hershbergera73588f2016-09-09 12:56:26 -0500314 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000315}
316
317/**************************************************************************
318NFS_LOOKUP - Lookup Pathname
319**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500320static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000321{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500322 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000323 uint32_t *p;
324 int len;
325 int fnamelen;
326
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000327 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000328
Joe Hershbergera73588f2016-09-09 12:56:26 -0500329 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200330 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000331
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200332 if (supported_nfs_versions & NFSV2_FLAG) {
333 memcpy(p, dirfh, NFS_FHSIZE);
334 p += (NFS_FHSIZE / 4);
335 *p++ = htonl(fnamelen);
336 if (fnamelen & 3)
337 *(p + fnamelen / 4) = 0;
338 memcpy(p, fname, fnamelen);
339 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000340
Joe Hershbergera73588f2016-09-09 12:56:26 -0500341 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000342
Joe Hershbergera73588f2016-09-09 12:56:26 -0500343 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200344 } else { /* NFSV3_FLAG */
345 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
346 memcpy(p, dirfh, NFS_FHSIZE);
347 p += (NFS_FHSIZE / 4);
348 *p++ = htonl(fnamelen);
349 if (fnamelen & 3)
350 *(p + fnamelen / 4) = 0;
351 memcpy(p, fname, fnamelen);
352 p += (fnamelen + 3) / 4;
353
Joe Hershbergera73588f2016-09-09 12:56:26 -0500354 len = (uint32_t *)p - (uint32_t *)&(data[0]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200355
Joe Hershbergera73588f2016-09-09 12:56:26 -0500356 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200357 }
wdenkcbd8a352004-02-24 02:00:03 +0000358}
359
360/**************************************************************************
361NFS_READ - Read File on NFS Server
362**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500363static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000364{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500365 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000366 uint32_t *p;
367 int len;
368
Joe Hershbergera73588f2016-09-09 12:56:26 -0500369 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200370 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000371
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200372 if (supported_nfs_versions & NFSV2_FLAG) {
373 memcpy(p, filefh, NFS_FHSIZE);
374 p += (NFS_FHSIZE / 4);
375 *p++ = htonl(offset);
376 *p++ = htonl(readlen);
377 *p++ = 0;
378 } else { /* NFSV3_FLAG */
379 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500380 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200381 p += (filefh3_length / 4);
382 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
383 *p++ = htonl(offset);
384 *p++ = htonl(readlen);
385 *p++ = 0;
386 }
wdenkcbd8a352004-02-24 02:00:03 +0000387
Joe Hershbergera73588f2016-09-09 12:56:26 -0500388 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000389
Joe Hershbergera73588f2016-09-09 12:56:26 -0500390 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000391}
392
393/**************************************************************************
394RPC request dispatcher
395**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500396static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000397{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400398 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000399
Joe Hershberger68c76a32015-04-08 01:41:10 -0500400 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000401 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200402 if (supported_nfs_versions & NFSV2_FLAG)
403 rpc_lookup_req(PROG_MOUNT, 1);
404 else /* NFSV3_FLAG */
405 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000406 break;
407 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200408 if (supported_nfs_versions & NFSV2_FLAG)
409 rpc_lookup_req(PROG_NFS, 2);
410 else /* NFSV3_FLAG */
411 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000412 break;
413 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000414 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000415 break;
416 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000417 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000418 break;
419 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000420 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000421 break;
422 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000423 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000424 break;
425 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000426 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000427 break;
428 }
429}
430
431/**************************************************************************
432Handlers for the reply from server
433**************************************************************************/
434
Joe Hershberger68c76a32015-04-08 01:41:10 -0500435static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000436{
437 struct rpc_t rpc_pkt;
438
Joe Hershberger0517cc42016-08-15 15:03:24 -0500439 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000440
Robin Getz0ebf04c2009-07-23 03:01:03 -0400441 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000442
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100443 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
444 return -NFS_RPC_ERR;
445 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
446 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000447
wdenkcbd8a352004-02-24 02:00:03 +0000448 if (rpc_pkt.u.reply.rstatus ||
449 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000450 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000451 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000452
453 switch (prog) {
454 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500455 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000456 break;
457 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500458 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000459 break;
460 }
461
462 return 0;
463}
464
Joe Hershberger68c76a32015-04-08 01:41:10 -0500465static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000466{
467 struct rpc_t rpc_pkt;
468
Robin Getz0ebf04c2009-07-23 03:01:03 -0400469 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000470
Joe Hershberger0517cc42016-08-15 15:03:24 -0500471 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000472
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100473 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
474 return -NFS_RPC_ERR;
475 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
476 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000477
wdenkcbd8a352004-02-24 02:00:03 +0000478 if (rpc_pkt.u.reply.rstatus ||
479 rpc_pkt.u.reply.verifier ||
480 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000481 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000482 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000483
484 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200485 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000486 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000487
488 return 0;
489}
490
Joe Hershberger68c76a32015-04-08 01:41:10 -0500491static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000492{
493 struct rpc_t rpc_pkt;
494
Robin Getz0ebf04c2009-07-23 03:01:03 -0400495 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000496
Joe Hershberger0517cc42016-08-15 15:03:24 -0500497 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000498
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100499 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
500 return -NFS_RPC_ERR;
501 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
502 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000503
wdenkcbd8a352004-02-24 02:00:03 +0000504 if (rpc_pkt.u.reply.rstatus ||
505 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000506 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000507 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000508
509 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000510 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000511
512 return 0;
513}
514
Joe Hershberger68c76a32015-04-08 01:41:10 -0500515static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000516{
517 struct rpc_t rpc_pkt;
518
Robin Getz0ebf04c2009-07-23 03:01:03 -0400519 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000520
Joe Hershberger0517cc42016-08-15 15:03:24 -0500521 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000522
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100523 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
524 return -NFS_RPC_ERR;
525 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
526 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000527
wdenkcbd8a352004-02-24 02:00:03 +0000528 if (rpc_pkt.u.reply.rstatus ||
529 rpc_pkt.u.reply.verifier ||
530 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200531 rpc_pkt.u.reply.data[0]) {
532 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200533 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200534 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200535 case NFS_RPC_PROG_MISMATCH:
536 /* Remote can't support NFS version */
537 switch (ntohl(rpc_pkt.u.reply.data[0])) {
538 /* Minimal supported NFS version */
539 case 3:
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500540 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500541 (supported_nfs_versions & NFSV2_FLAG) ?
542 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200543 ntohl(rpc_pkt.u.reply.data[0]),
544 ntohl(rpc_pkt.u.reply.data[1]));
545 debug("Will retry with NFSv3\n");
546 /* Clear NFSV2_FLAG from supported versions */
547 supported_nfs_versions &= ~NFSV2_FLAG;
548 return -NFS_RPC_PROG_MISMATCH;
549 case 4:
550 default:
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500551 puts("*** ERROR: NFS version not supported");
552 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
553 (supported_nfs_versions & NFSV2_FLAG) ?
Joe Hershberger347a9012016-08-15 15:03:21 -0500554 2 : 3,
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500555 ntohl(rpc_pkt.u.reply.data[0]),
556 ntohl(rpc_pkt.u.reply.data[1]));
557 puts("\n");
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200558 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200559 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200560 case NFS_RPC_PROG_UNAVAIL:
561 case NFS_RPC_PROC_UNAVAIL:
562 case NFS_RPC_GARBAGE_ARGS:
563 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200564 default: /* Unknown error on 'accept state' flag */
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500565 debug("*** ERROR: accept state error (%d)\n",
566 ntohl(rpc_pkt.u.reply.astatus));
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200567 break;
568 }
wdenkcbd8a352004-02-24 02:00:03 +0000569 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200570 }
wdenkcbd8a352004-02-24 02:00:03 +0000571
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200572 if (supported_nfs_versions & NFSV2_FLAG) {
liucheng (G)5d14ee42019-08-29 13:48:02 +0000573 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
574 return -NFS_RPC_DROP;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200575 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
576 } else { /* NFSV3_FLAG */
577 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
578 if (filefh3_length > NFS3_FHSIZE)
579 filefh3_length = NFS3_FHSIZE;
liucheng (G)5d14ee42019-08-29 13:48:02 +0000580 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
581 return -NFS_RPC_DROP;
Joe Hershberger5280c762016-08-15 15:03:19 -0500582 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200583 }
wdenkcbd8a352004-02-24 02:00:03 +0000584
585 return 0;
586}
587
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500588static int nfs3_get_attributes_offset(uint32_t *data)
589{
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200590 if (data[1]) {
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500591 /* 'attributes_follow' flag is TRUE,
Joe Hershbergerc629c452016-08-15 15:03:23 -0500592 * so we have attributes on 21 dwords */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500593 /* Skip unused values :
594 type; 32 bits value,
595 mode; 32 bits value,
596 nlink; 32 bits value,
597 uid; 32 bits value,
598 gid; 32 bits value,
599 size; 64 bits value,
600 used; 64 bits value,
601 rdev; 64 bits value,
602 fsid; 64 bits value,
603 fileid; 64 bits value,
604 atime; 64 bits value,
605 mtime; 64 bits value,
606 ctime; 64 bits value,
607 */
608 return 22;
609 } else {
610 /* 'attributes_follow' flag is FALSE,
611 * so we don't have any attributes */
612 return 1;
613 }
614}
615
Joe Hershberger68c76a32015-04-08 01:41:10 -0500616static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000617{
618 struct rpc_t rpc_pkt;
619 int rlen;
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500620 int nfsv3_data_offset = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000621
Robin Getz0ebf04c2009-07-23 03:01:03 -0400622 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000623
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000624 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000625
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100626 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
627 return -NFS_RPC_ERR;
628 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
629 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000630
wdenkcbd8a352004-02-24 02:00:03 +0000631 if (rpc_pkt.u.reply.rstatus ||
632 rpc_pkt.u.reply.verifier ||
633 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000634 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000635 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000636
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500637 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
638 nfsv3_data_offset =
639 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
640 }
wdenkcbd8a352004-02-24 02:00:03 +0000641
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500642 /* new path length */
643 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200644
liucheng (G)cf3a4f12019-08-29 13:47:54 +0000645 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
646 return -NFS_RPC_DROP;
647
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500648 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
649 int pathlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200650
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500651 strcat(nfs_path, "/");
652 pathlen = strlen(nfs_path);
653 memcpy(nfs_path + pathlen,
654 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
655 rlen);
656 nfs_path[pathlen + rlen] = 0;
657 } else {
658 memcpy(nfs_path,
659 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
660 rlen);
661 nfs_path[rlen] = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000662 }
663 return 0;
664}
665
Joe Hershberger68c76a32015-04-08 01:41:10 -0500666static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000667{
668 struct rpc_t rpc_pkt;
669 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200670 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000671
Robin Getz0ebf04c2009-07-23 03:01:03 -0400672 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000673
Joe Hershberger0517cc42016-08-15 15:03:24 -0500674 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000675
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100676 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
677 return -NFS_RPC_ERR;
678 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
679 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000680
wdenkcbd8a352004-02-24 02:00:03 +0000681 if (rpc_pkt.u.reply.rstatus ||
682 rpc_pkt.u.reply.verifier ||
683 rpc_pkt.u.reply.astatus ||
684 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000685 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000686 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000687 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000688 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000689 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000690 }
691
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000692 if ((nfs_offset != 0) && !((nfs_offset) %
693 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
694 puts("\n\t ");
695 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
696 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000697
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200698 if (supported_nfs_versions & NFSV2_FLAG) {
699 rlen = ntohl(rpc_pkt.u.reply.data[18]);
700 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
701 } else { /* NFSV3_FLAG */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500702 int nfsv3_data_offset =
703 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
704
705 /* count value */
706 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
707 /* Skip unused values :
708 EOF: 32 bits value,
709 data_size: 32 bits value,
710 */
711 data_ptr = (uchar *)
712 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200713 }
714
liucheng (G)aa207cf2019-08-29 13:47:48 +0000715 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
716 return -9999;
717
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200718 if (store_block(data_ptr, nfs_offset, rlen))
719 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000720
721 return rlen;
722}
723
724/**************************************************************************
725Interfaces of U-BOOT
726**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500727static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000728{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500729 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000730 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500731 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600732 } else {
733 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500734 net_set_timeout_handler(nfs_timeout +
735 NFS_TIMEOUT * nfs_timeout_count,
736 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500737 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900738 }
wdenka5725fa2004-09-28 21:51:42 +0000739}
740
Joe Hershberger049a95a2015-04-08 01:41:01 -0500741static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
742 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000743{
744 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100745 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000746
Robin Getz0ebf04c2009-07-23 03:01:03 -0400747 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000748
liucheng (G)741a8a02019-08-29 13:47:40 +0000749 if (len > sizeof(struct rpc_t))
750 return;
751
Joe Hershberger68c76a32015-04-08 01:41:10 -0500752 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000753 return;
wdenkcbd8a352004-02-24 02:00:03 +0000754
Joe Hershberger68c76a32015-04-08 01:41:10 -0500755 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000756 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100757 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
758 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500759 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
760 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000761 break;
762
763 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100764 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
765 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500766 nfs_state = STATE_MOUNT_REQ;
767 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000768 break;
769
770 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100771 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500772 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100773 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500774 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000775 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000776 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500777 nfs_state = STATE_UMOUNT_REQ;
778 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000779 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500780 nfs_state = STATE_LOOKUP_REQ;
781 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000782 }
783 break;
784
785 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100786 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500787 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100788 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500789 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500790 debug("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000791 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000792 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000793 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000794 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000795 }
796 break;
797
798 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100799 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500800 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100801 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500802 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000803 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500804 nfs_state = STATE_UMOUNT_REQ;
805 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500806 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
807 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200808 /* umount */
809 nfs_state = STATE_UMOUNT_REQ;
810 nfs_send();
811 /* And retry with another supported version */
812 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
813 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000814 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500815 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000816 nfs_offset = 0;
817 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500818 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000819 }
820 break;
821
822 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100823 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500824 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100825 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500826 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000827 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500828 nfs_state = STATE_UMOUNT_REQ;
829 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000830 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400831 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000832 nfs_filename = basename(nfs_path);
833 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000834
Joe Hershberger68c76a32015-04-08 01:41:10 -0500835 nfs_state = STATE_MOUNT_REQ;
836 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000837 }
838 break;
839
840 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000841 rlen = nfs_read_reply(pkt, len);
Vasily Khoruzhickd48d40a2018-05-14 08:34:36 -0700842 if (rlen == -NFS_RPC_DROP)
843 break;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500844 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000845 if (rlen > 0) {
846 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500847 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000848 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000849 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500850 nfs_state = STATE_READLINK_REQ;
851 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000852 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000853 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000854 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200855 if (rlen < 0)
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500856 debug("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500857 nfs_state = STATE_UMOUNT_REQ;
858 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000859 }
860 break;
861 }
862}
863
wdenkcbd8a352004-02-24 02:00:03 +0000864
Joe Hershberger68c76a32015-04-08 01:41:10 -0500865void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000866{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400867 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000868 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000869
Joe Hershberger049a95a2015-04-08 01:41:01 -0500870 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000871 nfs_path = (char *)nfs_path_buff;
872
873 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000874 net_set_state(NETLOOP_FAIL);
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500875 printf("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000876 return;
877 }
878
Joe Hershberger6ab12832018-07-03 19:36:43 -0500879 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
880 sizeof(nfs_path_buff))) {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500881 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500882 net_ip.s_addr & 0xFF,
883 (net_ip.s_addr >> 8) & 0xFF,
884 (net_ip.s_addr >> 16) & 0xFF,
885 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000886
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500887 printf("*** Warning: no boot file name; using '%s'\n",
888 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000889 }
890
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000891 nfs_filename = basename(nfs_path);
892 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000893
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500894 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000895
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500896 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
897 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000898
899 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500900 if (net_gateway.s_addr && net_netmask.s_addr) {
901 struct in_addr our_net;
902 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000903
Joe Hershberger049a95a2015-04-08 01:41:01 -0500904 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
Joe Hershberger347e32b2018-07-03 19:22:55 -0500905 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500906 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500907 printf("; sending through gateway %pI4",
908 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000909 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500910 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000911
Joe Hershberger14111572015-04-08 01:41:02 -0500912 if (net_boot_file_expected_size_in_blocks) {
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500913 printf(" Size is 0x%x Bytes = ",
914 net_boot_file_expected_size_in_blocks << 9);
Joe Hershberger14111572015-04-08 01:41:02 -0500915 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000916 }
Simon Glassbb872dd2019-12-28 10:45:02 -0700917 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000918
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500919 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500920 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000921
Joe Hershberger68c76a32015-04-08 01:41:10 -0500922 nfs_timeout_count = 0;
923 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000924
Joe Hershberger68c76a32015-04-08 01:41:10 -0500925 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000926 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500927 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000928
929 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500930 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000931
Joe Hershberger68c76a32015-04-08 01:41:10 -0500932 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000933}