blob: 14a0d2fc0d4a497e9537d0dfc529cc389862b5d0 [file] [log] [blame]
wdenkcbd8a352004-02-24 02:00:03 +00001/*
2 * NFS support driver - based on etherboot and U-BOOT's tftp.c
3 *
4 * Masami Komiya <mkomiya@sonare.it> 2004
5 *
6 */
7
8/* NOTE: the NFS code is heavily inspired by the NetBSD netboot code (read:
9 * large portions are copied verbatim) as distributed in OSKit 0.97. A few
10 * changes were necessary to adapt the code to Etherboot and to fix several
11 * inconsistencies. Also the RPC message preparation is done "by hand" to
12 * avoid adding netsprintf() which I find hard to understand and use. */
13
14/* NOTE 2: Etherboot does not care about things beyond the kernel image, so
15 * it loads the kernel image off the boot server (ARP_SERVER) and does not
16 * access the client root disk (root-path in dhcpd.conf), which would use
17 * ARP_ROOTSERVER. The root disk is something the operating system we are
18 * about to load needs to use. This is different from the OSKit 0.97 logic. */
19
20/* NOTE 3: Symlink handling introduced by Anselm M Hoffmeister, 2003-July-14
21 * If a symlink is encountered, it is followed as far as possible (recursion
22 * possible, maximum 16 steps). There is no clearing of ".."'s inside the
23 * path, so please DON'T DO THAT. thx. */
24
Guillaume GARDETb0baca92016-07-29 11:31:00 +020025/* NOTE 4: NFSv3 support added by Guillaume GARDET, 2016-June-20.
26 * NFSv2 is still used by default. But if server does not support NFSv2, then
27 * NFSv3 is used, if available on NFS server. */
28
wdenkcbd8a352004-02-24 02:00:03 +000029#include <common.h>
30#include <command.h>
31#include <net.h>
32#include <malloc.h>
Joe Hershberger55d5fd92015-03-22 17:09:08 -050033#include <mapmem.h>
wdenkcbd8a352004-02-24 02:00:03 +000034#include "nfs.h"
35#include "bootp.h"
36
wdenkcbd8a352004-02-24 02:00:03 +000037#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
Hiroshi Itofe891ec2008-01-31 18:35:04 +090038#define NFS_RETRY_COUNT 30
Tetsuyuki Kobayashi48a3e992012-07-03 22:25:21 +000039#ifndef CONFIG_NFS_TIMEOUT
40# define NFS_TIMEOUT 2000UL
41#else
42# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
43#endif
wdenkcbd8a352004-02-24 02:00:03 +000044
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010045#define NFS_RPC_ERR 1
46#define NFS_RPC_DROP 124
47
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000048static int fs_mounted;
49static unsigned long rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +000050static int nfs_offset = -1;
51static int nfs_len;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +010052static ulong nfs_timeout = NFS_TIMEOUT;
wdenkcbd8a352004-02-24 02:00:03 +000053
Guillaume GARDETb0baca92016-07-29 11:31:00 +020054static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
Joe Hershberger5280c762016-08-15 15:03:19 -050055static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
56static int filefh3_length; /* (variable) length of filefh when NFSv3 */
wdenkcbd8a352004-02-24 02:00:03 +000057
Joe Hershberger22f6e992012-05-23 07:59:14 +000058static enum net_loop_state nfs_download_state;
Joe Hershberger049a95a2015-04-08 01:41:01 -050059static struct in_addr nfs_server_ip;
Joe Hershberger68c76a32015-04-08 01:41:10 -050060static int nfs_server_mount_port;
61static int nfs_server_port;
62static int nfs_our_port;
63static int nfs_timeout_count;
64static int nfs_state;
wdenkcbd8a352004-02-24 02:00:03 +000065#define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
66#define STATE_PRCLOOKUP_PROG_NFS_REQ 2
67#define STATE_MOUNT_REQ 3
68#define STATE_UMOUNT_REQ 4
69#define STATE_LOOKUP_REQ 5
70#define STATE_READ_REQ 6
71#define STATE_READLINK_REQ 7
72
wdenkcbd8a352004-02-24 02:00:03 +000073static char *nfs_filename;
74static char *nfs_path;
75static char nfs_path_buff[2048];
76
Guillaume GARDETb0baca92016-07-29 11:31:00 +020077#define NFSV2_FLAG 1
78#define NFSV3_FLAG 1 << 1
79static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
80
Joe Hershberger68c76a32015-04-08 01:41:10 -050081static inline int store_block(uchar *src, unsigned offset, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +000082{
wdenka084f7d2004-02-24 22:33:21 +000083 ulong newsize = offset + len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020084#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
wdenkcbd8a352004-02-24 02:00:03 +000085 int i, rc = 0;
86
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000087 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
wdenkcbd8a352004-02-24 02:00:03 +000088 /* start address in flash? */
89 if (load_addr + offset >= flash_info[i].start[0]) {
90 rc = 1;
91 break;
92 }
93 }
94
95 if (rc) { /* Flash is destination for this packet */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000096 rc = flash_write((uchar *)src, (ulong)(load_addr+offset), len);
wdenkcbd8a352004-02-24 02:00:03 +000097 if (rc) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +000098 flash_perror(rc);
Wolfgang Denk23a7a322005-08-06 01:11:12 +020099 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000100 }
101 } else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
wdenkcbd8a352004-02-24 02:00:03 +0000103 {
Joe Hershberger55d5fd92015-03-22 17:09:08 -0500104 void *ptr = map_sysmem(load_addr + offset, len);
105
106 memcpy(ptr, src, len);
107 unmap_sysmem(ptr);
wdenkcbd8a352004-02-24 02:00:03 +0000108 }
wdenka084f7d2004-02-24 22:33:21 +0000109
Joe Hershberger14111572015-04-08 01:41:02 -0500110 if (net_boot_file_size < (offset + len))
111 net_boot_file_size = newsize;
Wolfgang Denk23a7a322005-08-06 01:11:12 +0200112 return 0;
wdenkcbd8a352004-02-24 02:00:03 +0000113}
114
Joe Hershberger68c76a32015-04-08 01:41:10 -0500115static char *basename(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000116{
117 char *fname;
118
119 fname = path + strlen(path) - 1;
120 while (fname >= path) {
121 if (*fname == '/') {
122 fname++;
123 break;
124 }
125 fname--;
126 }
127 return fname;
128}
129
Joe Hershberger68c76a32015-04-08 01:41:10 -0500130static char *dirname(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000131{
132 char *fname;
133
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000134 fname = basename(path);
wdenkcbd8a352004-02-24 02:00:03 +0000135 --fname;
136 *fname = '\0';
137 return path;
138}
139
140/**************************************************************************
wdenkcbd8a352004-02-24 02:00:03 +0000141RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
142**************************************************************************/
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200143static uint32_t *rpc_add_credentials(uint32_t *p)
wdenkcbd8a352004-02-24 02:00:03 +0000144{
145 int hl;
146 int hostnamelen;
147 char hostname[256];
148
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000149 strcpy(hostname, "");
150 hostnamelen = strlen(hostname);
wdenkcbd8a352004-02-24 02:00:03 +0000151
152 /* Here's the executive summary on authentication requirements of the
153 * various NFS server implementations: Linux accepts both AUTH_NONE
154 * and AUTH_UNIX authentication (also accepts an empty hostname field
155 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
156 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
157 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
158 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
159 * hostname). */
160
161 hl = (hostnamelen + 3) & ~3;
162
163 /* Provide an AUTH_UNIX credential. */
164 *p++ = htonl(1); /* AUTH_UNIX */
165 *p++ = htonl(hl+20); /* auth length */
166 *p++ = htonl(0); /* stamp */
167 *p++ = htonl(hostnamelen); /* hostname string */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000168 if (hostnamelen & 3)
wdenkcbd8a352004-02-24 02:00:03 +0000169 *(p + hostnamelen / 4) = 0; /* add zero padding */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000170 memcpy(p, hostname, hostnamelen);
wdenkcbd8a352004-02-24 02:00:03 +0000171 p += hl / 4;
172 *p++ = 0; /* uid */
173 *p++ = 0; /* gid */
174 *p++ = 0; /* auxiliary gid list */
175
176 /* Provide an AUTH_NONE verifier. */
177 *p++ = 0; /* AUTH_NONE */
178 *p++ = 0; /* auth length */
179
180 return p;
181}
182
183/**************************************************************************
184RPC_LOOKUP - Lookup RPC Port numbers
185**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500186static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
wdenkcbd8a352004-02-24 02:00:03 +0000187{
188 struct rpc_t pkt;
189 unsigned long id;
190 uint32_t *p;
191 int pktlen;
192 int sport;
193
wdenkc3f9d492004-03-14 00:59:59 +0000194 id = ++rpc_id;
wdenkcbd8a352004-02-24 02:00:03 +0000195 pkt.u.call.id = htonl(id);
196 pkt.u.call.type = htonl(MSG_CALL);
197 pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
198 pkt.u.call.prog = htonl(rpc_prog);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200199 switch (rpc_prog) {
200 case PROG_NFS:
201 if (supported_nfs_versions & NFSV2_FLAG)
202 pkt.u.call.vers = htonl(2); /* NFS v2 */
203 else /* NFSV3_FLAG */
204 pkt.u.call.vers = htonl(3); /* NFS v3 */
205 break;
206 case PROG_PORTMAP:
207 case PROG_MOUNT:
208 default:
209 pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
210 }
wdenkcbd8a352004-02-24 02:00:03 +0000211 pkt.u.call.proc = htonl(rpc_proc);
212 p = (uint32_t *)&(pkt.u.call.data);
213
214 if (datalen)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000215 memcpy((char *)p, (char *)data, datalen*sizeof(uint32_t));
wdenkcbd8a352004-02-24 02:00:03 +0000216
217 pktlen = (char *)p + datalen*sizeof(uint32_t) - (char *)&pkt;
218
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500219 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
220 (char *)&pkt, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000221
222 if (rpc_prog == PROG_PORTMAP)
223 sport = SUNRPC_PORT;
224 else if (rpc_prog == PROG_MOUNT)
Joe Hershberger68c76a32015-04-08 01:41:10 -0500225 sport = nfs_server_mount_port;
wdenkcbd8a352004-02-24 02:00:03 +0000226 else
Joe Hershberger68c76a32015-04-08 01:41:10 -0500227 sport = nfs_server_port;
wdenkcbd8a352004-02-24 02:00:03 +0000228
Joe Hershberger1203fcc2015-04-08 01:41:05 -0500229 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
Joe Hershberger68c76a32015-04-08 01:41:10 -0500230 nfs_our_port, pktlen);
wdenkcbd8a352004-02-24 02:00:03 +0000231}
232
233/**************************************************************************
234RPC_LOOKUP - Lookup RPC Port numbers
235**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500236static void rpc_lookup_req(int prog, int ver)
wdenkcbd8a352004-02-24 02:00:03 +0000237{
238 uint32_t data[16];
239
240 data[0] = 0; data[1] = 0; /* auth credential */
241 data[2] = 0; data[3] = 0; /* auth verifier */
242 data[4] = htonl(prog);
243 data[5] = htonl(ver);
244 data[6] = htonl(17); /* IP_UDP */
245 data[7] = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000246 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
wdenkcbd8a352004-02-24 02:00:03 +0000247}
248
249/**************************************************************************
250NFS_MOUNT - Mount an NFS Filesystem
251**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500252static void nfs_mount_req(char *path)
wdenkcbd8a352004-02-24 02:00:03 +0000253{
254 uint32_t data[1024];
255 uint32_t *p;
256 int len;
257 int pathlen;
258
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000259 pathlen = strlen(path);
wdenkcbd8a352004-02-24 02:00:03 +0000260
261 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200262 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000263
264 *p++ = htonl(pathlen);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000265 if (pathlen & 3)
266 *(p + pathlen / 4) = 0;
267 memcpy(p, path, pathlen);
wdenkcbd8a352004-02-24 02:00:03 +0000268 p += (pathlen + 3) / 4;
269
270 len = (uint32_t *)p - (uint32_t *)&(data[0]);
271
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000272 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000273}
274
275/**************************************************************************
276NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
277**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500278static void nfs_umountall_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000279{
280 uint32_t data[1024];
281 uint32_t *p;
282 int len;
283
Joe Hershberger68c76a32015-04-08 01:41:10 -0500284 if ((nfs_server_mount_port == -1) || (!fs_mounted))
wdenkcbd8a352004-02-24 02:00:03 +0000285 /* Nothing mounted, nothing to umount */
286 return;
wdenkcbd8a352004-02-24 02:00:03 +0000287
288 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200289 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000290
291 len = (uint32_t *)p - (uint32_t *)&(data[0]);
292
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000293 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000294}
295
296/***************************************************************************
297 * NFS_READLINK (AH 2003-07-14)
298 * This procedure is called when read of the first block fails -
299 * this probably happens when it's a directory or a symlink
300 * In case of successful readlink(), the dirname is manipulated,
301 * so that inside the nfs() function a recursion can be done.
302 **************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500303static void nfs_readlink_req(void)
wdenkcbd8a352004-02-24 02:00:03 +0000304{
305 uint32_t data[1024];
306 uint32_t *p;
307 int len;
308
309 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200310 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000311
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200312 if (supported_nfs_versions & NFSV2_FLAG) {
313 memcpy(p, filefh, NFS_FHSIZE);
314 p += (NFS_FHSIZE / 4);
315 } else { /* NFSV3_FLAG */
316 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500317 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200318 p += (filefh3_length / 4);
319 }
wdenkcbd8a352004-02-24 02:00:03 +0000320
321 len = (uint32_t *)p - (uint32_t *)&(data[0]);
322
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000323 rpc_req(PROG_NFS, NFS_READLINK, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000324}
325
326/**************************************************************************
327NFS_LOOKUP - Lookup Pathname
328**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500329static void nfs_lookup_req(char *fname)
wdenkcbd8a352004-02-24 02:00:03 +0000330{
331 uint32_t data[1024];
332 uint32_t *p;
333 int len;
334 int fnamelen;
335
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000336 fnamelen = strlen(fname);
wdenkcbd8a352004-02-24 02:00:03 +0000337
338 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200339 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000340
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200341 if (supported_nfs_versions & NFSV2_FLAG) {
342 memcpy(p, dirfh, NFS_FHSIZE);
343 p += (NFS_FHSIZE / 4);
344 *p++ = htonl(fnamelen);
345 if (fnamelen & 3)
346 *(p + fnamelen / 4) = 0;
347 memcpy(p, fname, fnamelen);
348 p += (fnamelen + 3) / 4;
wdenkcbd8a352004-02-24 02:00:03 +0000349
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200350 len = (uint32_t *)p - (uint32_t *)&(data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000351
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200352 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
353 } else { /* NFSV3_FLAG */
354 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
355 memcpy(p, dirfh, NFS_FHSIZE);
356 p += (NFS_FHSIZE / 4);
357 *p++ = htonl(fnamelen);
358 if (fnamelen & 3)
359 *(p + fnamelen / 4) = 0;
360 memcpy(p, fname, fnamelen);
361 p += (fnamelen + 3) / 4;
362
363 len = (uint32_t *)p - (uint32_t *)&(data[0]);
364
365 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
366 }
wdenkcbd8a352004-02-24 02:00:03 +0000367}
368
369/**************************************************************************
370NFS_READ - Read File on NFS Server
371**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500372static void nfs_read_req(int offset, int readlen)
wdenkcbd8a352004-02-24 02:00:03 +0000373{
374 uint32_t data[1024];
375 uint32_t *p;
376 int len;
377
378 p = &(data[0]);
Ralf Huberte4ead4a2016-07-01 13:19:51 +0200379 p = rpc_add_credentials(p);
wdenkcbd8a352004-02-24 02:00:03 +0000380
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200381 if (supported_nfs_versions & NFSV2_FLAG) {
382 memcpy(p, filefh, NFS_FHSIZE);
383 p += (NFS_FHSIZE / 4);
384 *p++ = htonl(offset);
385 *p++ = htonl(readlen);
386 *p++ = 0;
387 } else { /* NFSV3_FLAG */
388 *p++ = htonl(filefh3_length);
Joe Hershberger5280c762016-08-15 15:03:19 -0500389 memcpy(p, filefh, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200390 p += (filefh3_length / 4);
391 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
392 *p++ = htonl(offset);
393 *p++ = htonl(readlen);
394 *p++ = 0;
395 }
wdenkcbd8a352004-02-24 02:00:03 +0000396
397 len = (uint32_t *)p - (uint32_t *)&(data[0]);
398
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000399 rpc_req(PROG_NFS, NFS_READ, data, len);
wdenkcbd8a352004-02-24 02:00:03 +0000400}
401
402/**************************************************************************
403RPC request dispatcher
404**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500405static void nfs_send(void)
wdenkcbd8a352004-02-24 02:00:03 +0000406{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400407 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000408
Joe Hershberger68c76a32015-04-08 01:41:10 -0500409 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000410 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200411 if (supported_nfs_versions & NFSV2_FLAG)
412 rpc_lookup_req(PROG_MOUNT, 1);
413 else /* NFSV3_FLAG */
414 rpc_lookup_req(PROG_MOUNT, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000415 break;
416 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200417 if (supported_nfs_versions & NFSV2_FLAG)
418 rpc_lookup_req(PROG_NFS, 2);
419 else /* NFSV3_FLAG */
420 rpc_lookup_req(PROG_NFS, 3);
wdenkcbd8a352004-02-24 02:00:03 +0000421 break;
422 case STATE_MOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000423 nfs_mount_req(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000424 break;
425 case STATE_UMOUNT_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000426 nfs_umountall_req();
wdenkcbd8a352004-02-24 02:00:03 +0000427 break;
428 case STATE_LOOKUP_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000429 nfs_lookup_req(nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000430 break;
431 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000432 nfs_read_req(nfs_offset, nfs_len);
wdenkcbd8a352004-02-24 02:00:03 +0000433 break;
434 case STATE_READLINK_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000435 nfs_readlink_req();
wdenkcbd8a352004-02-24 02:00:03 +0000436 break;
437 }
438}
439
440/**************************************************************************
441Handlers for the reply from server
442**************************************************************************/
443
Joe Hershberger68c76a32015-04-08 01:41:10 -0500444static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000445{
446 struct rpc_t rpc_pkt;
447
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000448 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000449
Robin Getz0ebf04c2009-07-23 03:01:03 -0400450 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000451
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100452 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
453 return -NFS_RPC_ERR;
454 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
455 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000456
wdenkcbd8a352004-02-24 02:00:03 +0000457 if (rpc_pkt.u.reply.rstatus ||
458 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000459 rpc_pkt.u.reply.astatus)
wdenkc3f9d492004-03-14 00:59:59 +0000460 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000461
462 switch (prog) {
463 case PROG_MOUNT:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500464 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000465 break;
466 case PROG_NFS:
Joe Hershberger68c76a32015-04-08 01:41:10 -0500467 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000468 break;
469 }
470
471 return 0;
472}
473
Joe Hershberger68c76a32015-04-08 01:41:10 -0500474static int nfs_mount_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000475{
476 struct rpc_t rpc_pkt;
477
Robin Getz0ebf04c2009-07-23 03:01:03 -0400478 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000479
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000480 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000481
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100482 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
483 return -NFS_RPC_ERR;
484 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
485 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000486
wdenkcbd8a352004-02-24 02:00:03 +0000487 if (rpc_pkt.u.reply.rstatus ||
488 rpc_pkt.u.reply.verifier ||
489 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000490 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000491 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000492
493 fs_mounted = 1;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200494 /* NFSv2 and NFSv3 use same structure */
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000495 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
wdenkcbd8a352004-02-24 02:00:03 +0000496
497 return 0;
498}
499
Joe Hershberger68c76a32015-04-08 01:41:10 -0500500static int nfs_umountall_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000501{
502 struct rpc_t rpc_pkt;
503
Robin Getz0ebf04c2009-07-23 03:01:03 -0400504 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000505
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000506 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000507
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100508 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
509 return -NFS_RPC_ERR;
510 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
511 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000512
wdenkcbd8a352004-02-24 02:00:03 +0000513 if (rpc_pkt.u.reply.rstatus ||
514 rpc_pkt.u.reply.verifier ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000515 rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000516 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000517
518 fs_mounted = 0;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000519 memset(dirfh, 0, sizeof(dirfh));
wdenkcbd8a352004-02-24 02:00:03 +0000520
521 return 0;
522}
523
Joe Hershberger68c76a32015-04-08 01:41:10 -0500524static int nfs_lookup_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000525{
526 struct rpc_t rpc_pkt;
527
Robin Getz0ebf04c2009-07-23 03:01:03 -0400528 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000529
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000530 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000531
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100532 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
533 return -NFS_RPC_ERR;
534 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
535 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000536
wdenkcbd8a352004-02-24 02:00:03 +0000537 if (rpc_pkt.u.reply.rstatus ||
538 rpc_pkt.u.reply.verifier ||
539 rpc_pkt.u.reply.astatus ||
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200540 rpc_pkt.u.reply.data[0]) {
541 switch (ntohl(rpc_pkt.u.reply.astatus)) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200542 case NFS_RPC_SUCCESS: /* Not an error */
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200543 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200544 case NFS_RPC_PROG_MISMATCH:
545 /* Remote can't support NFS version */
546 switch (ntohl(rpc_pkt.u.reply.data[0])) {
547 /* Minimal supported NFS version */
548 case 3:
549 debug("*** Waring: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500550 (supported_nfs_versions & NFSV2_FLAG) ?
551 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200552 ntohl(rpc_pkt.u.reply.data[0]),
553 ntohl(rpc_pkt.u.reply.data[1]));
554 debug("Will retry with NFSv3\n");
555 /* Clear NFSV2_FLAG from supported versions */
556 supported_nfs_versions &= ~NFSV2_FLAG;
557 return -NFS_RPC_PROG_MISMATCH;
558 case 4:
559 default:
560 printf("*** ERROR: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
Joe Hershberger347a9012016-08-15 15:03:21 -0500561 (supported_nfs_versions & NFSV2_FLAG) ?
562 2 : 3,
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200563 ntohl(rpc_pkt.u.reply.data[0]),
564 ntohl(rpc_pkt.u.reply.data[1]));
565 }
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200566 break;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200567 case NFS_RPC_PROG_UNAVAIL:
568 case NFS_RPC_PROC_UNAVAIL:
569 case NFS_RPC_GARBAGE_ARGS:
570 case NFS_RPC_SYSTEM_ERR:
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200571 default: /* Unknown error on 'accept state' flag */
572 printf("*** ERROR: accept state error (%d)\n",
573 ntohl(rpc_pkt.u.reply.astatus));
574 break;
575 }
wdenkcbd8a352004-02-24 02:00:03 +0000576 return -1;
Guillaume GARDET69fd0d42016-06-06 15:11:45 +0200577 }
wdenkcbd8a352004-02-24 02:00:03 +0000578
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200579 if (supported_nfs_versions & NFSV2_FLAG) {
580 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
581 } else { /* NFSV3_FLAG */
582 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
583 if (filefh3_length > NFS3_FHSIZE)
584 filefh3_length = NFS3_FHSIZE;
Joe Hershberger5280c762016-08-15 15:03:19 -0500585 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200586 }
wdenkcbd8a352004-02-24 02:00:03 +0000587
588 return 0;
589}
590
Joe Hershberger68c76a32015-04-08 01:41:10 -0500591static int nfs_readlink_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000592{
593 struct rpc_t rpc_pkt;
594 int rlen;
595
Robin Getz0ebf04c2009-07-23 03:01:03 -0400596 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000597
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000598 memcpy((unsigned char *)&rpc_pkt, pkt, len);
wdenkcbd8a352004-02-24 02:00:03 +0000599
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100600 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
601 return -NFS_RPC_ERR;
602 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
603 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000604
wdenkcbd8a352004-02-24 02:00:03 +0000605 if (rpc_pkt.u.reply.rstatus ||
606 rpc_pkt.u.reply.verifier ||
607 rpc_pkt.u.reply.astatus ||
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000608 rpc_pkt.u.reply.data[0])
wdenkcbd8a352004-02-24 02:00:03 +0000609 return -1;
wdenkcbd8a352004-02-24 02:00:03 +0000610
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200611 if (supported_nfs_versions & NFSV2_FLAG) {
wdenkcbd8a352004-02-24 02:00:03 +0000612
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200613 rlen = ntohl(rpc_pkt.u.reply.data[1]); /* new path length */
614
615 if (*((char *)&(rpc_pkt.u.reply.data[2])) != '/') {
616 int pathlen;
617 strcat(nfs_path, "/");
618 pathlen = strlen(nfs_path);
619 memcpy(nfs_path + pathlen,
620 (uchar *)&(rpc_pkt.u.reply.data[2]),
621 rlen);
622 nfs_path[pathlen + rlen] = 0;
623 } else {
624 memcpy(nfs_path,
625 (uchar *)&(rpc_pkt.u.reply.data[2]),
626 rlen);
627 nfs_path[rlen] = 0;
628 }
629 } else { /* NFSV3_FLAG */
630 int nfsv3_data_offset = 0;
631 if (ntohl(rpc_pkt.u.reply.data[1]) != 0) {
632 /* 'attributes_follow' flag is TRUE,
633 * so we have attributes on 21 bytes */
634 /* Skip unused values :
635 type; 32 bits value,
636 mode; 32 bits value,
637 nlink; 32 bits value,
638 uid; 32 bits value,
639 gid; 32 bits value,
640 size; 64 bits value,
641 used; 64 bits value,
642 rdev; 64 bits value,
643 fsid; 64 bits value,
644 fileid; 64 bits value,
645 atime; 64 bits value,
646 mtime; 64 bits value,
647 ctime; 64 bits value,
648 */
649 nfsv3_data_offset = 22;
650 } else {
651 /* 'attributes_follow' flag is FALSE,
652 * so we don't have any attributes */
653 nfsv3_data_offset = 1;
654 }
655
656 /* new path length */
657 rlen = ntohl(rpc_pkt.u.reply.data[1+nfsv3_data_offset]);
658
659 if (*((char *)&(rpc_pkt.u.reply.data[2+nfsv3_data_offset])) != '/') {
660 int pathlen;
661 strcat(nfs_path, "/");
662 pathlen = strlen(nfs_path);
663 memcpy(nfs_path + pathlen,
664 (uchar *)&(rpc_pkt.u.reply.data[2+nfsv3_data_offset]),
665 rlen);
666 nfs_path[pathlen + rlen] = 0;
667 } else {
668 memcpy(nfs_path,
669 (uchar *)&(rpc_pkt.u.reply.data[2+nfsv3_data_offset]),
670 rlen);
671 nfs_path[rlen] = 0;
672 }
wdenkcbd8a352004-02-24 02:00:03 +0000673 }
674 return 0;
675}
676
Joe Hershberger68c76a32015-04-08 01:41:10 -0500677static int nfs_read_reply(uchar *pkt, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000678{
679 struct rpc_t rpc_pkt;
680 int rlen;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200681 uchar *data_ptr;
wdenkcbd8a352004-02-24 02:00:03 +0000682
Robin Getz0ebf04c2009-07-23 03:01:03 -0400683 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000684
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000685 memcpy((uchar *)&rpc_pkt, pkt, sizeof(rpc_pkt.u.reply));
wdenkcbd8a352004-02-24 02:00:03 +0000686
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100687 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
688 return -NFS_RPC_ERR;
689 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
690 return -NFS_RPC_DROP;
wdenkc3f9d492004-03-14 00:59:59 +0000691
wdenkcbd8a352004-02-24 02:00:03 +0000692 if (rpc_pkt.u.reply.rstatus ||
693 rpc_pkt.u.reply.verifier ||
694 rpc_pkt.u.reply.astatus ||
695 rpc_pkt.u.reply.data[0]) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000696 if (rpc_pkt.u.reply.rstatus)
wdenkcbd8a352004-02-24 02:00:03 +0000697 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000698 if (rpc_pkt.u.reply.astatus)
wdenkcbd8a352004-02-24 02:00:03 +0000699 return -9999;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000700 return -ntohl(rpc_pkt.u.reply.data[0]);
wdenkcbd8a352004-02-24 02:00:03 +0000701 }
702
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000703 if ((nfs_offset != 0) && !((nfs_offset) %
704 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
705 puts("\n\t ");
706 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
707 putc('#');
wdenkcbd8a352004-02-24 02:00:03 +0000708
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200709 if (supported_nfs_versions & NFSV2_FLAG) {
710 rlen = ntohl(rpc_pkt.u.reply.data[18]);
711 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
712 } else { /* NFSV3_FLAG */
713 if (ntohl(rpc_pkt.u.reply.data[1]) != 0) {
714 /* 'attributes_follow' is TRUE,
715 * so we have attributes on 21 bytes */
716 /* Skip unused values :
717 type; 32 bits value,
718 mode; 32 bits value,
719 nlink; 32 bits value,
720 uid; 32 bits value,
721 gid; 32 bits value,
722 size; 64 bits value,
723 used; 64 bits value,
724 rdev; 64 bits value,
725 fsid; 64 bits value,
726 fileid; 64 bits value,
727 atime; 64 bits value,
728 mtime; 64 bits value,
729 ctime; 64 bits value,
730 */
731 rlen = ntohl(rpc_pkt.u.reply.data[23]); /* count value */
732 /* Skip unused values :
733 EOF: 32 bits value,
734 data_size: 32 bits value,
735 */
736 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[26]);
737 } else {
738 /* attributes_follow is FALSE, so we don't have any attributes */
739 rlen = ntohl(rpc_pkt.u.reply.data[2]); /* count value */
740 /* Skip unused values :
741 EOF: 32 bits value,
742 data_size: 32 bits value,
743 */
744 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[5]);
745 }
746 }
747
748 if (store_block(data_ptr, nfs_offset, rlen))
749 return -9999;
wdenkcbd8a352004-02-24 02:00:03 +0000750
751 return rlen;
752}
753
754/**************************************************************************
755Interfaces of U-BOOT
756**************************************************************************/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500757static void nfs_timeout_handler(void)
wdenka5725fa2004-09-28 21:51:42 +0000758{
Joe Hershberger68c76a32015-04-08 01:41:10 -0500759 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000760 puts("\nRetry count exceeded; starting again\n");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500761 net_start_again();
Evan Samanasaabb8cb2009-11-09 20:08:36 -0600762 } else {
763 puts("T ");
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500764 net_set_timeout_handler(nfs_timeout +
765 NFS_TIMEOUT * nfs_timeout_count,
766 nfs_timeout_handler);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500767 nfs_send();
Hiroshi Itofe891ec2008-01-31 18:35:04 +0900768 }
wdenka5725fa2004-09-28 21:51:42 +0000769}
770
Joe Hershberger049a95a2015-04-08 01:41:01 -0500771static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
772 unsigned src, unsigned len)
wdenkcbd8a352004-02-24 02:00:03 +0000773{
774 int rlen;
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100775 int reply;
wdenkcbd8a352004-02-24 02:00:03 +0000776
Robin Getz0ebf04c2009-07-23 03:01:03 -0400777 debug("%s\n", __func__);
wdenkcbd8a352004-02-24 02:00:03 +0000778
Joe Hershberger68c76a32015-04-08 01:41:10 -0500779 if (dest != nfs_our_port)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000780 return;
wdenkcbd8a352004-02-24 02:00:03 +0000781
Joe Hershberger68c76a32015-04-08 01:41:10 -0500782 switch (nfs_state) {
wdenkcbd8a352004-02-24 02:00:03 +0000783 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100784 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
785 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500786 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
787 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000788 break;
789
790 case STATE_PRCLOOKUP_PROG_NFS_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100791 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
792 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500793 nfs_state = STATE_MOUNT_REQ;
794 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000795 break;
796
797 case STATE_MOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100798 reply = nfs_mount_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500799 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100800 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500801 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000802 puts("*** ERROR: Cannot mount\n");
wdenkcbd8a352004-02-24 02:00:03 +0000803 /* just to be sure... */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500804 nfs_state = STATE_UMOUNT_REQ;
805 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000806 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500807 nfs_state = STATE_LOOKUP_REQ;
808 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000809 }
810 break;
811
812 case STATE_UMOUNT_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100813 reply = nfs_umountall_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500814 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100815 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500816 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000817 puts("*** ERROR: Cannot umount\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000818 net_set_state(NETLOOP_FAIL);
wdenkcbd8a352004-02-24 02:00:03 +0000819 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000820 puts("\ndone\n");
Joe Hershberger22f6e992012-05-23 07:59:14 +0000821 net_set_state(nfs_download_state);
wdenkcbd8a352004-02-24 02:00:03 +0000822 }
823 break;
824
825 case STATE_LOOKUP_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100826 reply = nfs_lookup_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500827 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100828 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500829 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000830 puts("*** ERROR: File lookup fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500831 nfs_state = STATE_UMOUNT_REQ;
832 nfs_send();
Joe Hershberger347a9012016-08-15 15:03:21 -0500833 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
834 supported_nfs_versions != 0) {
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200835 /* umount */
836 nfs_state = STATE_UMOUNT_REQ;
837 nfs_send();
838 /* And retry with another supported version */
839 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
840 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000841 } else {
Joe Hershberger68c76a32015-04-08 01:41:10 -0500842 nfs_state = STATE_READ_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000843 nfs_offset = 0;
844 nfs_len = NFS_READ_SIZE;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500845 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000846 }
847 break;
848
849 case STATE_READLINK_REQ:
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100850 reply = nfs_readlink_reply(pkt, len);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500851 if (reply == -NFS_RPC_DROP) {
Matthias Bruggerfa84fa72012-12-11 19:14:16 +0100852 break;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500853 } else if (reply == -NFS_RPC_ERR) {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000854 puts("*** ERROR: Symlink fail\n");
Joe Hershberger68c76a32015-04-08 01:41:10 -0500855 nfs_state = STATE_UMOUNT_REQ;
856 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000857 } else {
Robin Getz0ebf04c2009-07-23 03:01:03 -0400858 debug("Symlink --> %s\n", nfs_path);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000859 nfs_filename = basename(nfs_path);
860 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000861
Joe Hershberger68c76a32015-04-08 01:41:10 -0500862 nfs_state = STATE_MOUNT_REQ;
863 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000864 }
865 break;
866
867 case STATE_READ_REQ:
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000868 rlen = nfs_read_reply(pkt, len);
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500869 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000870 if (rlen > 0) {
871 nfs_offset += rlen;
Joe Hershberger68c76a32015-04-08 01:41:10 -0500872 nfs_send();
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000873 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
wdenkcbd8a352004-02-24 02:00:03 +0000874 /* symbolic link */
Joe Hershberger68c76a32015-04-08 01:41:10 -0500875 nfs_state = STATE_READLINK_REQ;
876 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000877 } else {
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000878 if (!rlen)
Joe Hershberger22f6e992012-05-23 07:59:14 +0000879 nfs_download_state = NETLOOP_SUCCESS;
Guillaume GARDETb0baca92016-07-29 11:31:00 +0200880 if (rlen < 0)
881 printf("NFS READ error (%d)\n", rlen);
Joe Hershberger68c76a32015-04-08 01:41:10 -0500882 nfs_state = STATE_UMOUNT_REQ;
883 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000884 }
885 break;
886 }
887}
888
wdenkcbd8a352004-02-24 02:00:03 +0000889
Joe Hershberger68c76a32015-04-08 01:41:10 -0500890void nfs_start(void)
wdenkcbd8a352004-02-24 02:00:03 +0000891{
Robin Getz0ebf04c2009-07-23 03:01:03 -0400892 debug("%s\n", __func__);
Joe Hershberger22f6e992012-05-23 07:59:14 +0000893 nfs_download_state = NETLOOP_FAIL;
wdenkcbd8a352004-02-24 02:00:03 +0000894
Joe Hershberger049a95a2015-04-08 01:41:01 -0500895 nfs_server_ip = net_server_ip;
wdenkcbd8a352004-02-24 02:00:03 +0000896 nfs_path = (char *)nfs_path_buff;
897
898 if (nfs_path == NULL) {
Joe Hershberger22f6e992012-05-23 07:59:14 +0000899 net_set_state(NETLOOP_FAIL);
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000900 puts("*** ERROR: Fail allocate memory\n");
wdenkcbd8a352004-02-24 02:00:03 +0000901 return;
902 }
903
Joe Hershberger14111572015-04-08 01:41:02 -0500904 if (net_boot_file_name[0] == '\0') {
Joe Hershbergerf8b26c72016-08-15 14:42:16 -0500905 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
Joe Hershberger049a95a2015-04-08 01:41:01 -0500906 net_ip.s_addr & 0xFF,
907 (net_ip.s_addr >> 8) & 0xFF,
908 (net_ip.s_addr >> 16) & 0xFF,
909 (net_ip.s_addr >> 24) & 0xFF);
wdenkcbd8a352004-02-24 02:00:03 +0000910
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000911 printf("*** Warning: no boot file name; using '%s'\n",
Joe Hershberger68c76a32015-04-08 01:41:10 -0500912 nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000913 } else {
Joe Hershberger14111572015-04-08 01:41:02 -0500914 char *p = net_boot_file_name;
wdenkcbd8a352004-02-24 02:00:03 +0000915
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000916 p = strchr(p, ':');
wdenkcbd8a352004-02-24 02:00:03 +0000917
918 if (p != NULL) {
Joe Hershberger14111572015-04-08 01:41:02 -0500919 nfs_server_ip = string_to_ip(net_boot_file_name);
wdenkcbd8a352004-02-24 02:00:03 +0000920 ++p;
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000921 strcpy(nfs_path, p);
wdenkcbd8a352004-02-24 02:00:03 +0000922 } else {
Joe Hershberger14111572015-04-08 01:41:02 -0500923 strcpy(nfs_path, net_boot_file_name);
wdenkcbd8a352004-02-24 02:00:03 +0000924 }
925 }
926
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000927 nfs_filename = basename(nfs_path);
928 nfs_path = dirname(nfs_path);
wdenkcbd8a352004-02-24 02:00:03 +0000929
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000930 printf("Using %s device\n", eth_get_name());
wdenkcbd8a352004-02-24 02:00:03 +0000931
Joe Hershberger049a95a2015-04-08 01:41:01 -0500932 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
933 &nfs_server_ip, &net_ip);
wdenkcbd8a352004-02-24 02:00:03 +0000934
935 /* Check if we need to send across this subnet */
Joe Hershberger049a95a2015-04-08 01:41:01 -0500936 if (net_gateway.s_addr && net_netmask.s_addr) {
937 struct in_addr our_net;
938 struct in_addr server_net;
wdenkcbd8a352004-02-24 02:00:03 +0000939
Joe Hershberger049a95a2015-04-08 01:41:01 -0500940 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
941 server_net.s_addr = net_server_ip.s_addr & net_netmask.s_addr;
942 if (our_net.s_addr != server_net.s_addr)
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000943 printf("; sending through gateway %pI4",
Joe Hershberger68c76a32015-04-08 01:41:10 -0500944 &net_gateway);
wdenkcbd8a352004-02-24 02:00:03 +0000945 }
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000946 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
wdenkcbd8a352004-02-24 02:00:03 +0000947
Joe Hershberger14111572015-04-08 01:41:02 -0500948 if (net_boot_file_expected_size_in_blocks) {
949 printf(" Size is 0x%x Bytes = ",
950 net_boot_file_expected_size_in_blocks << 9);
951 print_size(net_boot_file_expected_size_in_blocks << 9, "");
wdenkcbd8a352004-02-24 02:00:03 +0000952 }
Joe Hershbergerc9f6c912012-05-15 08:59:09 +0000953 printf("\nLoad address: 0x%lx\n"
wdenk4b9206e2004-03-23 22:14:11 +0000954 "Loading: *\b", load_addr);
wdenkcbd8a352004-02-24 02:00:03 +0000955
Joe Hershbergerbc0571f2015-04-08 01:41:21 -0500956 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500957 net_set_udp_handler(nfs_handler);
wdenkcbd8a352004-02-24 02:00:03 +0000958
Joe Hershberger68c76a32015-04-08 01:41:10 -0500959 nfs_timeout_count = 0;
960 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
wdenkcbd8a352004-02-24 02:00:03 +0000961
Joe Hershberger68c76a32015-04-08 01:41:10 -0500962 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
wdenkcbd8a352004-02-24 02:00:03 +0000963 /*FIX ME !!!*/
Joe Hershberger68c76a32015-04-08 01:41:10 -0500964 nfs_our_port = 1000;
wdenkcbd8a352004-02-24 02:00:03 +0000965
966 /* zero out server ether in case the server ip has changed */
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500967 memset(net_server_ethaddr, 0, 6);
wdenkcbd8a352004-02-24 02:00:03 +0000968
Joe Hershberger68c76a32015-04-08 01:41:10 -0500969 nfs_send();
wdenkcbd8a352004-02-24 02:00:03 +0000970}