blob: 70d0e08bde9201a4aaa3e4f5cb02e43324dc0bc6 [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>
Simon Glassf7ae49f2020-05-10 11:40:05 -060033#include <log.h>
wdenkcbd8a352004-02-24 02:00:03 +000034#include <net.h>
35#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050036#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000037#include "nfs.h"
38#include "bootp.h"
Simon Glass10453152019-11-14 12:57:30 -070039#include <time.h>
wdenkcbd8a352004-02-24 02:00:03 +000040
wdenkcbd8a352004-02-24 02:00:03 +000041#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090042#define NFS_RETRY_COUNT 30
Tetsuyuki Kobayashi48a3e992012-07-03 22:25:21 +000043#ifndef CONFIG_NFS_TIMEOUT
44# define NFS_TIMEOUT 2000UL
45#else
46# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
47#endif
wdenkcbd8a352004-02-24 02:00:03 +000048
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010049#define NFS_RPC_ERR 1
50#define NFS_RPC_DROP 124
51
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000052static int fs_mounted;
53static unsigned long rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +000054static int nfs_offset = -1;
55static int nfs_len;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010056static ulong nfs_timeout = NFS_TIMEOUT;
wdenkcbd8a352004-02-24 02:00:03 +000057
Guillaume GARDETb0baca92016-07-29 11:31:00 +020058static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
Joe Hershberger5280c762016-08-15 15:03:19 -050059static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
60static int filefh3_length; /* (variable) length of filefh when NFSv3 */
wdenkcbd8a352004-02-24 02:00:03 +000061
Joe Hershberger22f6e992012-05-23 07:59:14 +000062static enum net_loop_state nfs_download_state;
Joe Hershberger049a95a2015-04-08 01:41:01 -050063static struct in_addr nfs_server_ip;
Joe Hershberger68c76a32015-04-08 01:41:10 -050064static int nfs_server_mount_port;
65static int nfs_server_port;
66static int nfs_our_port;
67static int nfs_timeout_count;
68static int nfs_state;
wdenkcbd8a352004-02-24 02:00:03 +000069#define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
70#define STATE_PRCLOOKUP_PROG_NFS_REQ 2
71#define STATE_MOUNT_REQ 3
72#define STATE_UMOUNT_REQ 4
73#define STATE_LOOKUP_REQ 5
74#define STATE_READ_REQ 6
75#define STATE_READLINK_REQ 7
76
wdenkcbd8a352004-02-24 02:00:03 +000077static char *nfs_filename;
78static char *nfs_path;
79static char nfs_path_buff[2048];
80
Guillaume GARDETb0baca92016-07-29 11:31:00 +020081#define NFSV2_FLAG 1
82#define NFSV3_FLAG 1 << 1
83static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
84
Joe Hershberger68c76a32015-04-08 01:41:10 -050085static inline int store_block(uchar *src, unsigned offset, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +000086{
wdenka084f7d2004-02-24 22:33:21 +000087 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020088#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
wdenkcbd8a352004-02-24 02:00:03 +000089 int i, rc = 0;
90
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000091 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkcbd8a352004-02-24 02:00:03 +000092 /* start address in flash? */
Simon Glassbb872dd2019-12-28 10:45:02 -070093 if (image_load_addr + offset >= flash_info[i].start[0]) {
wdenkcbd8a352004-02-24 02:00:03 +000094 rc = 1;
95 break;
96 }
97 }
98
99 if (rc) { /* Flash is destination for this packet */
Simon Glassbb872dd2019-12-28 10:45:02 -0700100 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
101 len);
wdenkcbd8a352004-02-24 02:00:03 +0000102 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000103 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200104 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000105 }
106 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000108 {
Simon Glassbb872dd2019-12-28 10:45:02 -0700109 void *ptr = map_sysmem(image_load_addr + offset, len);
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500110
111 memcpy(ptr, src, len);
112 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000113 }
wdenka084f7d2004-02-24 22:33:21 +0000114
Joe Hershberger14111572015-04-08 01:41:02 -0500115 if (net_boot_file_size < (offset + len))
116 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200117 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000118}
119
Joe Hershberger68c76a32015-04-08 01:41:10 -0500120static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000121{
122 char *fname;
123
124 fname = path + strlen(path) - 1;
125 while (fname >= path) {
126 if (*fname == '/') {
127 fname++;
128 break;
129 }
130 fname--;
131 }
132 return fname;
133}
134
Joe Hershberger68c76a32015-04-08 01:41:10 -0500135static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000136{
137 char *fname;
138
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000139 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000140 --fname;
141 *fname = '\0';
142 return path;
143}
144
145/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000146RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
147**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200148static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000149{
wdenkcbd8a352004-02-24 02:00:03 +0000150 /* Here's the executive summary on authentication requirements of the
151 * various NFS server implementations: Linux accepts both AUTH_NONE
152 * and AUTH_UNIX authentication (also accepts an empty hostname field
153 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
154 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
155 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
156 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
157 * hostname). */
158
wdenkcbd8a352004-02-24 02:00:03 +0000159 /* Provide an AUTH_UNIX credential. */
160 *p++ = htonl(1); /* AUTH_UNIX */
Joe Hershberger1ff65d42016-08-15 15:03:27 -0500161 *p++ = htonl(20); /* auth length */
162 *p++ = 0; /* stamp */
163 *p++ = 0; /* hostname string */
wdenkcbd8a352004-02-24 02:00:03 +0000164 *p++ = 0; /* uid */
165 *p++ = 0; /* gid */
166 *p++ = 0; /* auxiliary gid list */
167
168 /* Provide an AUTH_NONE verifier. */
169 *p++ = 0; /* AUTH_NONE */
170 *p++ = 0; /* auth length */
171
172 return p;
173}
174
175/**************************************************************************
176RPC_LOOKUP - Lookup RPC Port numbers
177**************************************************************************/
Joe Hershbergera73588f2016-09-09 12:56:26 -0500178static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000179{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500180 struct rpc_t rpc_pkt;
wdenkcbd8a352004-02-24 02:00:03 +0000181 unsigned long id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500182 uint32_t *p;
wdenkcbd8a352004-02-24 02:00:03 +0000183 int pktlen;
184 int sport;
185
wdenkc3f9d492004-03-14 00:59:59 +0000186 id = ++rpc_id;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500187 rpc_pkt.u.call.id = htonl(id);
188 rpc_pkt.u.call.type = htonl(MSG_CALL);
189 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
190 rpc_pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200191 switch (rpc_prog) {
192 case PROG_NFS:
193 if (supported_nfs_versions & NFSV2_FLAG)
Joe Hershbergera73588f2016-09-09 12:56:26 -0500194 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200195 else /* NFSV3_FLAG */
Joe Hershbergera73588f2016-09-09 12:56:26 -0500196 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200197 break;
198 case PROG_PORTMAP:
199 case PROG_MOUNT:
200 default:
Joe Hershbergera73588f2016-09-09 12:56:26 -0500201 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200202 }
Joe Hershbergera73588f2016-09-09 12:56:26 -0500203 rpc_pkt.u.call.proc = htonl(rpc_proc);
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200204 p = rpc_pkt.u.call.data;
wdenkcbd8a352004-02-24 02:00:03 +0000205
Joe Hershbergera73588f2016-09-09 12:56:26 -0500206 if (datalen)
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200207 memcpy(p, data, datalen * sizeof(uint32_t));
Joe Hershbergera73588f2016-09-09 12:56:26 -0500208
209 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
210
211 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
212 &rpc_pkt.u.data[0], pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000213
214 if (rpc_prog == PROG_PORTMAP)
215 sport = SUNRPC_PORT;
216 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500217 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000218 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500219 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000220
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500221 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500222 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000223}
224
225/**************************************************************************
226RPC_LOOKUP - Lookup RPC Port numbers
227**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500228static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000229{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500230 uint32_t data[16];
wdenkcbd8a352004-02-24 02:00:03 +0000231
232 data[0] = 0; data[1] = 0; /* auth credential */
233 data[2] = 0; data[3] = 0; /* auth verifier */
234 data[4] = htonl(prog);
235 data[5] = htonl(ver);
236 data[6] = htonl(17); /* IP_UDP */
237 data[7] = 0;
Joe Hershbergera73588f2016-09-09 12:56:26 -0500238 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000239}
240
241/**************************************************************************
242NFS_MOUNT - Mount an NFS Filesystem
243**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500244static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000245{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500246 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000247 uint32_t *p;
248 int len;
249 int pathlen;
250
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000251 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000252
Joe Hershbergera73588f2016-09-09 12:56:26 -0500253 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200254 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000255
256 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000257 if (pathlen & 3)
258 *(p + pathlen / 4) = 0;
259 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000260 p += (pathlen + 3) / 4;
261
Joe Hershbergera73588f2016-09-09 12:56:26 -0500262 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000263
Joe Hershbergera73588f2016-09-09 12:56:26 -0500264 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000265}
266
267/**************************************************************************
268NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
269**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500270static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000271{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500272 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000273 uint32_t *p;
274 int len;
275
Joe Hershberger68c76a32015-04-08 01:41:10 -0500276 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000277 /* Nothing mounted, nothing to umount */
278 return;
wdenkcbd8a352004-02-24 02:00:03 +0000279
Joe Hershbergera73588f2016-09-09 12:56:26 -0500280 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200281 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000282
Joe Hershbergera73588f2016-09-09 12:56:26 -0500283 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000284
Joe Hershbergera73588f2016-09-09 12:56:26 -0500285 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000286}
287
288/***************************************************************************
289 * NFS_READLINK (AH 2003-07-14)
290 * This procedure is called when read of the first block fails -
291 * this probably happens when it's a directory or a symlink
292 * In case of successful readlink(), the dirname is manipulated,
293 * so that inside the nfs() function a recursion can be done.
294 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500295static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000296{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500297 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000298 uint32_t *p;
299 int len;
300
Joe Hershbergera73588f2016-09-09 12:56:26 -0500301 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200302 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000303
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200304 if (supported_nfs_versions & NFSV2_FLAG) {
305 memcpy(p, filefh, NFS_FHSIZE);
306 p += (NFS_FHSIZE / 4);
307 } else { /* NFSV3_FLAG */
308 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500309 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200310 p += (filefh3_length / 4);
311 }
wdenkcbd8a352004-02-24 02:00:03 +0000312
Joe Hershbergera73588f2016-09-09 12:56:26 -0500313 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000314
Joe Hershbergera73588f2016-09-09 12:56:26 -0500315 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000316}
317
318/**************************************************************************
319NFS_LOOKUP - Lookup Pathname
320**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500321static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000322{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500323 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000324 uint32_t *p;
325 int len;
326 int fnamelen;
327
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000328 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000329
Joe Hershbergera73588f2016-09-09 12:56:26 -0500330 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200331 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000332
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200333 if (supported_nfs_versions & NFSV2_FLAG) {
334 memcpy(p, dirfh, NFS_FHSIZE);
335 p += (NFS_FHSIZE / 4);
336 *p++ = htonl(fnamelen);
337 if (fnamelen & 3)
338 *(p + fnamelen / 4) = 0;
339 memcpy(p, fname, fnamelen);
340 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000341
Joe Hershbergera73588f2016-09-09 12:56:26 -0500342 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000343
Joe Hershbergera73588f2016-09-09 12:56:26 -0500344 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200345 } else { /* NFSV3_FLAG */
346 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
347 memcpy(p, dirfh, NFS_FHSIZE);
348 p += (NFS_FHSIZE / 4);
349 *p++ = htonl(fnamelen);
350 if (fnamelen & 3)
351 *(p + fnamelen / 4) = 0;
352 memcpy(p, fname, fnamelen);
353 p += (fnamelen + 3) / 4;
354
Joe Hershbergera73588f2016-09-09 12:56:26 -0500355 len = (uint32_t *)p - (uint32_t *)&(data[0]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200356
Joe Hershbergera73588f2016-09-09 12:56:26 -0500357 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200358 }
wdenkcbd8a352004-02-24 02:00:03 +0000359}
360
361/**************************************************************************
362NFS_READ - Read File on NFS Server
363**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500364static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000365{
Joe Hershbergera73588f2016-09-09 12:56:26 -0500366 uint32_t data[1024];
wdenkcbd8a352004-02-24 02:00:03 +0000367 uint32_t *p;
368 int len;
369
Joe Hershbergera73588f2016-09-09 12:56:26 -0500370 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200371 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000372
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200373 if (supported_nfs_versions & NFSV2_FLAG) {
374 memcpy(p, filefh, NFS_FHSIZE);
375 p += (NFS_FHSIZE / 4);
376 *p++ = htonl(offset);
377 *p++ = htonl(readlen);
378 *p++ = 0;
379 } else { /* NFSV3_FLAG */
380 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500381 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200382 p += (filefh3_length / 4);
383 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
384 *p++ = htonl(offset);
385 *p++ = htonl(readlen);
386 *p++ = 0;
387 }
wdenkcbd8a352004-02-24 02:00:03 +0000388
Joe Hershbergera73588f2016-09-09 12:56:26 -0500389 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000390
Joe Hershbergera73588f2016-09-09 12:56:26 -0500391 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000392}
393
394/**************************************************************************
395RPC request dispatcher
396**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500397static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000398{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400399 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000400
Joe Hershberger68c76a32015-04-08 01:41:10 -0500401 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000402 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200403 if (supported_nfs_versions & NFSV2_FLAG)
404 rpc_lookup_req(PROG_MOUNT, 1);
405 else /* NFSV3_FLAG */
406 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000407 break;
408 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200409 if (supported_nfs_versions & NFSV2_FLAG)
410 rpc_lookup_req(PROG_NFS, 2);
411 else /* NFSV3_FLAG */
412 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000413 break;
414 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000415 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000416 break;
417 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000418 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000419 break;
420 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000421 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000422 break;
423 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000424 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000425 break;
426 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000427 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000428 break;
429 }
430}
431
432/**************************************************************************
433Handlers for the reply from server
434**************************************************************************/
435
Joe Hershberger68c76a32015-04-08 01:41:10 -0500436static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000437{
438 struct rpc_t rpc_pkt;
439
Joe Hershberger0517cc42016-08-15 15:03:24 -0500440 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000441
Robin Getz0ebf04c2009-07-23 03:01:03 -0400442 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000443
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100444 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
445 return -NFS_RPC_ERR;
446 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
447 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000448
wdenkcbd8a352004-02-24 02:00:03 +0000449 if (rpc_pkt.u.reply.rstatus ||
450 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000451 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000452 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000453
454 switch (prog) {
455 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500456 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000457 break;
458 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500459 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000460 break;
461 }
462
463 return 0;
464}
465
Joe Hershberger68c76a32015-04-08 01:41:10 -0500466static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000467{
468 struct rpc_t rpc_pkt;
469
Robin Getz0ebf04c2009-07-23 03:01:03 -0400470 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000471
Joe Hershberger0517cc42016-08-15 15:03:24 -0500472 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000473
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100474 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
475 return -NFS_RPC_ERR;
476 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
477 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000478
wdenkcbd8a352004-02-24 02:00:03 +0000479 if (rpc_pkt.u.reply.rstatus ||
480 rpc_pkt.u.reply.verifier ||
481 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000482 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000483 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000484
485 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200486 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000487 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000488
489 return 0;
490}
491
Joe Hershberger68c76a32015-04-08 01:41:10 -0500492static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000493{
494 struct rpc_t rpc_pkt;
495
Robin Getz0ebf04c2009-07-23 03:01:03 -0400496 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000497
Joe Hershberger0517cc42016-08-15 15:03:24 -0500498 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000499
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100500 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
501 return -NFS_RPC_ERR;
502 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
503 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000504
wdenkcbd8a352004-02-24 02:00:03 +0000505 if (rpc_pkt.u.reply.rstatus ||
506 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000507 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000508 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000509
510 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000511 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000512
513 return 0;
514}
515
Joe Hershberger68c76a32015-04-08 01:41:10 -0500516static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000517{
518 struct rpc_t rpc_pkt;
519
Robin Getz0ebf04c2009-07-23 03:01:03 -0400520 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000521
Joe Hershberger0517cc42016-08-15 15:03:24 -0500522 memcpy(&rpc_pkt.u.data[0], pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000523
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100524 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
525 return -NFS_RPC_ERR;
526 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
527 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000528
wdenkcbd8a352004-02-24 02:00:03 +0000529 if (rpc_pkt.u.reply.rstatus ||
530 rpc_pkt.u.reply.verifier ||
531 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200532 rpc_pkt.u.reply.data[0]) {
533 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200534 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200535 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200536 case NFS_RPC_PROG_MISMATCH:
537 /* Remote can't support NFS version */
538 switch (ntohl(rpc_pkt.u.reply.data[0])) {
539 /* Minimal supported NFS version */
540 case 3:
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500541 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500542 (supported_nfs_versions & NFSV2_FLAG) ?
543 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200544 ntohl(rpc_pkt.u.reply.data[0]),
545 ntohl(rpc_pkt.u.reply.data[1]));
546 debug("Will retry with NFSv3\n");
547 /* Clear NFSV2_FLAG from supported versions */
548 supported_nfs_versions &= ~NFSV2_FLAG;
549 return -NFS_RPC_PROG_MISMATCH;
550 case 4:
551 default:
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500552 puts("*** ERROR: NFS version not supported");
553 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
554 (supported_nfs_versions & NFSV2_FLAG) ?
Joe Hershberger347a9012016-08-15 15:03:21 -0500555 2 : 3,
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500556 ntohl(rpc_pkt.u.reply.data[0]),
557 ntohl(rpc_pkt.u.reply.data[1]));
558 puts("\n");
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200559 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200560 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200561 case NFS_RPC_PROG_UNAVAIL:
562 case NFS_RPC_PROC_UNAVAIL:
563 case NFS_RPC_GARBAGE_ARGS:
564 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200565 default: /* Unknown error on 'accept state' flag */
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500566 debug("*** ERROR: accept state error (%d)\n",
567 ntohl(rpc_pkt.u.reply.astatus));
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200568 break;
569 }
wdenkcbd8a352004-02-24 02:00:03 +0000570 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200571 }
wdenkcbd8a352004-02-24 02:00:03 +0000572
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200573 if (supported_nfs_versions & NFSV2_FLAG) {
liucheng (G)5d14ee42019-08-29 13:48:02 +0000574 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
575 return -NFS_RPC_DROP;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200576 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
577 } else { /* NFSV3_FLAG */
578 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
579 if (filefh3_length > NFS3_FHSIZE)
580 filefh3_length = NFS3_FHSIZE;
liucheng (G)5d14ee42019-08-29 13:48:02 +0000581 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
582 return -NFS_RPC_DROP;
Joe Hershberger5280c762016-08-15 15:03:19 -0500583 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200584 }
wdenkcbd8a352004-02-24 02:00:03 +0000585
586 return 0;
587}
588
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500589static int nfs3_get_attributes_offset(uint32_t *data)
590{
Heinrich Schuchardt15eea9a2019-09-02 23:55:32 +0200591 if (data[1]) {
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500592 /* 'attributes_follow' flag is TRUE,
Joe Hershbergerc629c452016-08-15 15:03:23 -0500593 * so we have attributes on 21 dwords */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500594 /* Skip unused values :
595 type; 32 bits value,
596 mode; 32 bits value,
597 nlink; 32 bits value,
598 uid; 32 bits value,
599 gid; 32 bits value,
600 size; 64 bits value,
601 used; 64 bits value,
602 rdev; 64 bits value,
603 fsid; 64 bits value,
604 fileid; 64 bits value,
605 atime; 64 bits value,
606 mtime; 64 bits value,
607 ctime; 64 bits value,
608 */
609 return 22;
610 } else {
611 /* 'attributes_follow' flag is FALSE,
612 * so we don't have any attributes */
613 return 1;
614 }
615}
616
Joe Hershberger68c76a32015-04-08 01:41:10 -0500617static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000618{
619 struct rpc_t rpc_pkt;
620 int rlen;
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500621 int nfsv3_data_offset = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000622
Robin Getz0ebf04c2009-07-23 03:01:03 -0400623 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000624
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000625 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000626
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100627 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
628 return -NFS_RPC_ERR;
629 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
630 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000631
wdenkcbd8a352004-02-24 02:00:03 +0000632 if (rpc_pkt.u.reply.rstatus ||
633 rpc_pkt.u.reply.verifier ||
634 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000635 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000636 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000637
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500638 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
639 nfsv3_data_offset =
640 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
641 }
wdenkcbd8a352004-02-24 02:00:03 +0000642
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500643 /* new path length */
644 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200645
liucheng (G)cf3a4f12019-08-29 13:47:54 +0000646 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
647 return -NFS_RPC_DROP;
648
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500649 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
650 int pathlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200651
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500652 strcat(nfs_path, "/");
653 pathlen = strlen(nfs_path);
654 memcpy(nfs_path + pathlen,
655 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
656 rlen);
657 nfs_path[pathlen + rlen] = 0;
658 } else {
659 memcpy(nfs_path,
660 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
661 rlen);
662 nfs_path[rlen] = 0;
wdenkcbd8a352004-02-24 02:00:03 +0000663 }
664 return 0;
665}
666
Joe Hershberger68c76a32015-04-08 01:41:10 -0500667static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000668{
669 struct rpc_t rpc_pkt;
670 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200671 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000672
Robin Getz0ebf04c2009-07-23 03:01:03 -0400673 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000674
Joe Hershberger0517cc42016-08-15 15:03:24 -0500675 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000676
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100677 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
678 return -NFS_RPC_ERR;
679 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
680 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000681
wdenkcbd8a352004-02-24 02:00:03 +0000682 if (rpc_pkt.u.reply.rstatus ||
683 rpc_pkt.u.reply.verifier ||
684 rpc_pkt.u.reply.astatus ||
685 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000686 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000687 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000688 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000689 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000690 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000691 }
692
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000693 if ((nfs_offset != 0) && !((nfs_offset) %
694 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
695 puts("\n\t ");
696 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
697 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000698
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200699 if (supported_nfs_versions & NFSV2_FLAG) {
700 rlen = ntohl(rpc_pkt.u.reply.data[18]);
701 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
702 } else { /* NFSV3_FLAG */
Joe Hershberger051ed9a2016-08-15 15:03:22 -0500703 int nfsv3_data_offset =
704 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
705
706 /* count value */
707 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
708 /* Skip unused values :
709 EOF: 32 bits value,
710 data_size: 32 bits value,
711 */
712 data_ptr = (uchar *)
713 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200714 }
715
liucheng (G)aa207cf2019-08-29 13:47:48 +0000716 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
717 return -9999;
718
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200719 if (store_block(data_ptr, nfs_offset, rlen))
720 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000721
722 return rlen;
723}
724
725/**************************************************************************
726Interfaces of U-BOOT
727**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500728static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000729{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500730 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000731 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500732 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600733 } else {
734 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500735 net_set_timeout_handler(nfs_timeout +
736 NFS_TIMEOUT * nfs_timeout_count,
737 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500738 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900739 }
wdenka5725fa2004-09-28 21:51:42 +0000740}
741
Joe Hershberger049a95a2015-04-08 01:41:01 -0500742static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
743 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000744{
745 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100746 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000747
Robin Getz0ebf04c2009-07-23 03:01:03 -0400748 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000749
liucheng (G)741a8a02019-08-29 13:47:40 +0000750 if (len > sizeof(struct rpc_t))
751 return;
752
Joe Hershberger68c76a32015-04-08 01:41:10 -0500753 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000754 return;
wdenkcbd8a352004-02-24 02:00:03 +0000755
Joe Hershberger68c76a32015-04-08 01:41:10 -0500756 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000757 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100758 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
759 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500760 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
761 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000762 break;
763
764 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100765 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
766 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500767 nfs_state = STATE_MOUNT_REQ;
768 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000769 break;
770
771 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100772 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500773 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100774 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500775 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000776 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000777 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500778 nfs_state = STATE_UMOUNT_REQ;
779 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000780 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500781 nfs_state = STATE_LOOKUP_REQ;
782 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000783 }
784 break;
785
786 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100787 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500788 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100789 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500790 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500791 debug("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000792 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000793 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000794 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000795 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000796 }
797 break;
798
799 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100800 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500801 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100802 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500803 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000804 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500805 nfs_state = STATE_UMOUNT_REQ;
806 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500807 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
808 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200809 /* umount */
810 nfs_state = STATE_UMOUNT_REQ;
811 nfs_send();
812 /* And retry with another supported version */
813 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
814 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000815 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500816 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000817 nfs_offset = 0;
818 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500819 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000820 }
821 break;
822
823 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100824 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500825 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100826 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500827 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000828 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500829 nfs_state = STATE_UMOUNT_REQ;
830 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000831 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400832 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000833 nfs_filename = basename(nfs_path);
834 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000835
Joe Hershberger68c76a32015-04-08 01:41:10 -0500836 nfs_state = STATE_MOUNT_REQ;
837 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000838 }
839 break;
840
841 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000842 rlen = nfs_read_reply(pkt, len);
Vasily Khoruzhickd48d40a2018-05-14 08:34:36 -0700843 if (rlen == -NFS_RPC_DROP)
844 break;
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500845 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000846 if (rlen > 0) {
847 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500848 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000849 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000850 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500851 nfs_state = STATE_READLINK_REQ;
852 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000853 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000854 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000855 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200856 if (rlen < 0)
Joe Hershbergerd89ff2d2016-08-15 15:03:25 -0500857 debug("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500858 nfs_state = STATE_UMOUNT_REQ;
859 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000860 }
861 break;
862 }
863}
864
wdenkcbd8a352004-02-24 02:00:03 +0000865
Joe Hershberger68c76a32015-04-08 01:41:10 -0500866void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000867{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400868 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000869 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000870
Joe Hershberger049a95a2015-04-08 01:41:01 -0500871 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000872 nfs_path = (char *)nfs_path_buff;
873
874 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000875 net_set_state(NETLOOP_FAIL);
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500876 printf("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000877 return;
878 }
879
Joe Hershberger6ab12832018-07-03 19:36:43 -0500880 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
881 sizeof(nfs_path_buff))) {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500882 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500883 net_ip.s_addr & 0xFF,
884 (net_ip.s_addr >> 8) & 0xFF,
885 (net_ip.s_addr >> 16) & 0xFF,
886 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000887
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500888 printf("*** Warning: no boot file name; using '%s'\n",
889 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000890 }
891
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000892 nfs_filename = basename(nfs_path);
893 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000894
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500895 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000896
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500897 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
898 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000899
900 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500901 if (net_gateway.s_addr && net_netmask.s_addr) {
902 struct in_addr our_net;
903 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000904
Joe Hershberger049a95a2015-04-08 01:41:01 -0500905 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
Joe Hershberger347e32b2018-07-03 19:22:55 -0500906 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500907 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500908 printf("; sending through gateway %pI4",
909 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000910 }
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500911 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000912
Joe Hershberger14111572015-04-08 01:41:02 -0500913 if (net_boot_file_expected_size_in_blocks) {
Joe Hershbergerfaecf842018-07-03 19:22:56 -0500914 printf(" Size is 0x%x Bytes = ",
915 net_boot_file_expected_size_in_blocks << 9);
Joe Hershberger14111572015-04-08 01:41:02 -0500916 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000917 }
Simon Glassbb872dd2019-12-28 10:45:02 -0700918 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000919
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500920 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500921 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000922
Joe Hershberger68c76a32015-04-08 01:41:10 -0500923 nfs_timeout_count = 0;
924 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000925
Joe Hershberger68c76a32015-04-08 01:41:10 -0500926 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000927 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500928 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000929
930 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500931 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000932
Joe Hershberger68c76a32015-04-08 01:41:10 -0500933 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000934}