]> Git Repo - u-boot.git/blame - net/nfs.c
dm: core: Access device ofnode through functions
[u-boot.git] / net / nfs.c
CommitLineData
cbd8a35c
WD
1/*
2 * NFS support driver - based on etherboot and U-BOOT's tftp.c
3 *
4 * Masami Komiya <[email protected]> 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
b0baca98
GG
25/* 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
cbd8a35c
WD
29#include <common.h>
30#include <command.h>
0ee48252 31#include <flash.h>
8e8ccfe1 32#include <image.h>
f7ae49fc 33#include <log.h>
cbd8a35c
WD
34#include <net.h>
35#include <malloc.h>
55d5fd9a 36#include <mapmem.h>
cbd8a35c
WD
37#include "nfs.h"
38#include "bootp.h"
1045315d 39#include <time.h>
cbd8a35c 40
cbd8a35c 41#define HASHES_PER_LINE 65 /* Number of "loading" hashes per line */
fe891ecf 42#define NFS_RETRY_COUNT 30
48a3e999
TK
43#ifndef CONFIG_NFS_TIMEOUT
44# define NFS_TIMEOUT 2000UL
45#else
46# define NFS_TIMEOUT CONFIG_NFS_TIMEOUT
47#endif
cbd8a35c 48
fa84fa70
MB
49#define NFS_RPC_ERR 1
50#define NFS_RPC_DROP 124
51
c9f6c91b
JH
52static int fs_mounted;
53static unsigned long rpc_id;
cbd8a35c
WD
54static int nfs_offset = -1;
55static int nfs_len;
fa84fa70 56static ulong nfs_timeout = NFS_TIMEOUT;
cbd8a35c 57
b0baca98 58static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
5280c769
JH
59static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
60static int filefh3_length; /* (variable) length of filefh when NFSv3 */
cbd8a35c 61
22f6e99d 62static enum net_loop_state nfs_download_state;
049a95a7 63static struct in_addr nfs_server_ip;
68c76a3a
JH
64static int nfs_server_mount_port;
65static int nfs_server_port;
66static int nfs_our_port;
67static int nfs_timeout_count;
68static int nfs_state;
cbd8a35c
WD
69#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
cbd8a35c
WD
77static char *nfs_filename;
78static char *nfs_path;
79static char nfs_path_buff[2048];
80
b0baca98
GG
81#define NFSV2_FLAG 1
82#define NFSV3_FLAG 1 << 1
83static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
84
68c76a3a 85static inline int store_block(uchar *src, unsigned offset, unsigned len)
cbd8a35c 86{
a084f7da 87 ulong newsize = offset + len;
6d0f6bcf 88#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
cbd8a35c
WD
89 int i, rc = 0;
90
c9f6c91b 91 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
cbd8a35c 92 /* start address in flash? */
bb872dd9 93 if (image_load_addr + offset >= flash_info[i].start[0]) {
cbd8a35c
WD
94 rc = 1;
95 break;
96 }
97 }
98
99 if (rc) { /* Flash is destination for this packet */
bb872dd9
SG
100 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
101 len);
cbd8a35c 102 if (rc) {
c9f6c91b 103 flash_perror(rc);
23a7a32d 104 return -1;
cbd8a35c
WD
105 }
106 } else
6d0f6bcf 107#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
cbd8a35c 108 {
bb872dd9 109 void *ptr = map_sysmem(image_load_addr + offset, len);
55d5fd9a
JH
110
111 memcpy(ptr, src, len);
112 unmap_sysmem(ptr);
cbd8a35c 113 }
a084f7da 114
1411157d
JH
115 if (net_boot_file_size < (offset + len))
116 net_boot_file_size = newsize;
23a7a32d 117 return 0;
cbd8a35c
WD
118}
119
68c76a3a 120static char *basename(char *path)
cbd8a35c
WD
121{
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
68c76a3a 135static char *dirname(char *path)
cbd8a35c
WD
136{
137 char *fname;
138
c9f6c91b 139 fname = basename(path);
cbd8a35c
WD
140 --fname;
141 *fname = '\0';
142 return path;
143}
144
cbd8a35c
WD
145/**************************************************************************
146RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
147**************************************************************************/
e4ead4a2 148static uint32_t *rpc_add_credentials(uint32_t *p)
cbd8a35c 149{
cbd8a35c
WD
150 /* 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
cbd8a35c
WD
159 /* Provide an AUTH_UNIX credential. */
160 *p++ = htonl(1); /* AUTH_UNIX */
1ff65d44
JH
161 *p++ = htonl(20); /* auth length */
162 *p++ = 0; /* stamp */
163 *p++ = 0; /* hostname string */
cbd8a35c
WD
164 *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**************************************************************************/
a73588fe 178static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
cbd8a35c 179{
a73588fe 180 struct rpc_t rpc_pkt;
cbd8a35c 181 unsigned long id;
a73588fe 182 uint32_t *p;
cbd8a35c
WD
183 int pktlen;
184 int sport;
185
c3f9d493 186 id = ++rpc_id;
a73588fe
JH
187 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);
b0baca98
GG
191 switch (rpc_prog) {
192 case PROG_NFS:
193 if (supported_nfs_versions & NFSV2_FLAG)
a73588fe 194 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
b0baca98 195 else /* NFSV3_FLAG */
a73588fe 196 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
b0baca98
GG
197 break;
198 case PROG_PORTMAP:
199 case PROG_MOUNT:
200 default:
a73588fe 201 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
b0baca98 202 }
a73588fe 203 rpc_pkt.u.call.proc = htonl(rpc_proc);
15eea9a1 204 p = rpc_pkt.u.call.data;
a73588fe
JH
205
206 if (datalen)
15eea9a1 207 memcpy(p, data, datalen * sizeof(uint32_t));
a73588fe
JH
208
209 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
cbd8a35c 210
a73588fe
JH
211 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
212 &rpc_pkt.u.data[0], pktlen);
cbd8a35c
WD
213
214 if (rpc_prog == PROG_PORTMAP)
215 sport = SUNRPC_PORT;
216 else if (rpc_prog == PROG_MOUNT)
68c76a3a 217 sport = nfs_server_mount_port;
cbd8a35c 218 else
68c76a3a 219 sport = nfs_server_port;
cbd8a35c 220
1203fcce 221 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
68c76a3a 222 nfs_our_port, pktlen);
cbd8a35c
WD
223}
224
225/**************************************************************************
226RPC_LOOKUP - Lookup RPC Port numbers
227**************************************************************************/
68c76a3a 228static void rpc_lookup_req(int prog, int ver)
cbd8a35c 229{
a73588fe 230 uint32_t data[16];
cbd8a35c
WD
231
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;
a73588fe 238 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
cbd8a35c
WD
239}
240
241/**************************************************************************
242NFS_MOUNT - Mount an NFS Filesystem
243**************************************************************************/
68c76a3a 244static void nfs_mount_req(char *path)
cbd8a35c 245{
a73588fe 246 uint32_t data[1024];
cbd8a35c
WD
247 uint32_t *p;
248 int len;
249 int pathlen;
250
c9f6c91b 251 pathlen = strlen(path);
cbd8a35c 252
a73588fe 253 p = &(data[0]);
e4ead4a2 254 p = rpc_add_credentials(p);
cbd8a35c
WD
255
256 *p++ = htonl(pathlen);
c9f6c91b
JH
257 if (pathlen & 3)
258 *(p + pathlen / 4) = 0;
259 memcpy(p, path, pathlen);
cbd8a35c
WD
260 p += (pathlen + 3) / 4;
261
a73588fe 262 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 263
a73588fe 264 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
cbd8a35c
WD
265}
266
267/**************************************************************************
268NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
269**************************************************************************/
68c76a3a 270static void nfs_umountall_req(void)
cbd8a35c 271{
a73588fe 272 uint32_t data[1024];
cbd8a35c
WD
273 uint32_t *p;
274 int len;
275
68c76a3a 276 if ((nfs_server_mount_port == -1) || (!fs_mounted))
cbd8a35c
WD
277 /* Nothing mounted, nothing to umount */
278 return;
cbd8a35c 279
a73588fe 280 p = &(data[0]);
e4ead4a2 281 p = rpc_add_credentials(p);
cbd8a35c 282
a73588fe 283 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 284
a73588fe 285 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
cbd8a35c
WD
286}
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 **************************************************************************/
68c76a3a 295static void nfs_readlink_req(void)
cbd8a35c 296{
a73588fe 297 uint32_t data[1024];
cbd8a35c
WD
298 uint32_t *p;
299 int len;
300
a73588fe 301 p = &(data[0]);
e4ead4a2 302 p = rpc_add_credentials(p);
cbd8a35c 303
b0baca98
GG
304 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);
5280c769 309 memcpy(p, filefh, filefh3_length);
b0baca98
GG
310 p += (filefh3_length / 4);
311 }
cbd8a35c 312
a73588fe 313 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 314
a73588fe 315 rpc_req(PROG_NFS, NFS_READLINK, data, len);
cbd8a35c
WD
316}
317
318/**************************************************************************
319NFS_LOOKUP - Lookup Pathname
320**************************************************************************/
68c76a3a 321static void nfs_lookup_req(char *fname)
cbd8a35c 322{
a73588fe 323 uint32_t data[1024];
cbd8a35c
WD
324 uint32_t *p;
325 int len;
326 int fnamelen;
327
c9f6c91b 328 fnamelen = strlen(fname);
cbd8a35c 329
a73588fe 330 p = &(data[0]);
e4ead4a2 331 p = rpc_add_credentials(p);
cbd8a35c 332
b0baca98
GG
333 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;
341
a73588fe 342 len = (uint32_t *)p - (uint32_t *)&(data[0]);
b0baca98 343
a73588fe 344 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
b0baca98
GG
345 } 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
a73588fe 355 len = (uint32_t *)p - (uint32_t *)&(data[0]);
b0baca98 356
a73588fe 357 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
b0baca98 358 }
cbd8a35c
WD
359}
360
361/**************************************************************************
362NFS_READ - Read File on NFS Server
363**************************************************************************/
68c76a3a 364static void nfs_read_req(int offset, int readlen)
cbd8a35c 365{
a73588fe 366 uint32_t data[1024];
cbd8a35c
WD
367 uint32_t *p;
368 int len;
369
a73588fe 370 p = &(data[0]);
e4ead4a2 371 p = rpc_add_credentials(p);
cbd8a35c 372
b0baca98
GG
373 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);
5280c769 381 memcpy(p, filefh, filefh3_length);
b0baca98
GG
382 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 }
cbd8a35c 388
a73588fe 389 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 390
a73588fe 391 rpc_req(PROG_NFS, NFS_READ, data, len);
cbd8a35c
WD
392}
393
394/**************************************************************************
395RPC request dispatcher
396**************************************************************************/
68c76a3a 397static void nfs_send(void)
cbd8a35c 398{
0ebf04c6 399 debug("%s\n", __func__);
cbd8a35c 400
68c76a3a 401 switch (nfs_state) {
cbd8a35c 402 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
b0baca98
GG
403 if (supported_nfs_versions & NFSV2_FLAG)
404 rpc_lookup_req(PROG_MOUNT, 1);
405 else /* NFSV3_FLAG */
406 rpc_lookup_req(PROG_MOUNT, 3);
cbd8a35c
WD
407 break;
408 case STATE_PRCLOOKUP_PROG_NFS_REQ:
b0baca98
GG
409 if (supported_nfs_versions & NFSV2_FLAG)
410 rpc_lookup_req(PROG_NFS, 2);
411 else /* NFSV3_FLAG */
412 rpc_lookup_req(PROG_NFS, 3);
cbd8a35c
WD
413 break;
414 case STATE_MOUNT_REQ:
c9f6c91b 415 nfs_mount_req(nfs_path);
cbd8a35c
WD
416 break;
417 case STATE_UMOUNT_REQ:
c9f6c91b 418 nfs_umountall_req();
cbd8a35c
WD
419 break;
420 case STATE_LOOKUP_REQ:
c9f6c91b 421 nfs_lookup_req(nfs_filename);
cbd8a35c
WD
422 break;
423 case STATE_READ_REQ:
c9f6c91b 424 nfs_read_req(nfs_offset, nfs_len);
cbd8a35c
WD
425 break;
426 case STATE_READLINK_REQ:
c9f6c91b 427 nfs_readlink_req();
cbd8a35c
WD
428 break;
429 }
430}
431
432/**************************************************************************
433Handlers for the reply from server
434**************************************************************************/
435
68c76a3a 436static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
cbd8a35c
WD
437{
438 struct rpc_t rpc_pkt;
439
0517cc45 440 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 441
0ebf04c6 442 debug("%s\n", __func__);
cbd8a35c 443
fa84fa70
MB
444 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;
c3f9d493 448
cbd8a35c
WD
449 if (rpc_pkt.u.reply.rstatus ||
450 rpc_pkt.u.reply.verifier ||
c9f6c91b 451 rpc_pkt.u.reply.astatus)
c3f9d493 452 return -1;
cbd8a35c
WD
453
454 switch (prog) {
455 case PROG_MOUNT:
68c76a3a 456 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
457 break;
458 case PROG_NFS:
68c76a3a 459 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
460 break;
461 }
462
463 return 0;
464}
465
68c76a3a 466static int nfs_mount_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
467{
468 struct rpc_t rpc_pkt;
469
0ebf04c6 470 debug("%s\n", __func__);
cbd8a35c 471
0517cc45 472 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 473
fa84fa70
MB
474 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;
c3f9d493 478
cbd8a35c
WD
479 if (rpc_pkt.u.reply.rstatus ||
480 rpc_pkt.u.reply.verifier ||
481 rpc_pkt.u.reply.astatus ||
c9f6c91b 482 rpc_pkt.u.reply.data[0])
cbd8a35c 483 return -1;
cbd8a35c
WD
484
485 fs_mounted = 1;
b0baca98 486 /* NFSv2 and NFSv3 use same structure */
c9f6c91b 487 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
cbd8a35c
WD
488
489 return 0;
490}
491
68c76a3a 492static int nfs_umountall_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
493{
494 struct rpc_t rpc_pkt;
495
0ebf04c6 496 debug("%s\n", __func__);
cbd8a35c 497
0517cc45 498 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 499
fa84fa70
MB
500 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;
c3f9d493 504
cbd8a35c
WD
505 if (rpc_pkt.u.reply.rstatus ||
506 rpc_pkt.u.reply.verifier ||
c9f6c91b 507 rpc_pkt.u.reply.astatus)
cbd8a35c 508 return -1;
cbd8a35c
WD
509
510 fs_mounted = 0;
c9f6c91b 511 memset(dirfh, 0, sizeof(dirfh));
cbd8a35c
WD
512
513 return 0;
514}
515
68c76a3a 516static int nfs_lookup_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
517{
518 struct rpc_t rpc_pkt;
519
0ebf04c6 520 debug("%s\n", __func__);
cbd8a35c 521
0517cc45 522 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 523
fa84fa70
MB
524 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;
c3f9d493 528
cbd8a35c
WD
529 if (rpc_pkt.u.reply.rstatus ||
530 rpc_pkt.u.reply.verifier ||
531 rpc_pkt.u.reply.astatus ||
69fd0d41
GG
532 rpc_pkt.u.reply.data[0]) {
533 switch (ntohl(rpc_pkt.u.reply.astatus)) {
b0baca98 534 case NFS_RPC_SUCCESS: /* Not an error */
69fd0d41 535 break;
b0baca98
GG
536 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:
faecf84a 541 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
347a9015
JH
542 (supported_nfs_versions & NFSV2_FLAG) ?
543 2 : 3,
b0baca98
GG
544 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:
d89ff2df
JH
552 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) ?
347a9015 555 2 : 3,
d89ff2df
JH
556 ntohl(rpc_pkt.u.reply.data[0]),
557 ntohl(rpc_pkt.u.reply.data[1]));
558 puts("\n");
b0baca98 559 }
69fd0d41 560 break;
b0baca98
GG
561 case NFS_RPC_PROG_UNAVAIL:
562 case NFS_RPC_PROC_UNAVAIL:
563 case NFS_RPC_GARBAGE_ARGS:
564 case NFS_RPC_SYSTEM_ERR:
69fd0d41 565 default: /* Unknown error on 'accept state' flag */
d89ff2df
JH
566 debug("*** ERROR: accept state error (%d)\n",
567 ntohl(rpc_pkt.u.reply.astatus));
69fd0d41
GG
568 break;
569 }
cbd8a35c 570 return -1;
69fd0d41 571 }
cbd8a35c 572
b0baca98 573 if (supported_nfs_versions & NFSV2_FLAG) {
5d14ee4e 574 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
575 return -NFS_RPC_DROP;
b0baca98
GG
576 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;
5d14ee4e 581 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
582 return -NFS_RPC_DROP;
5280c769 583 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
b0baca98 584 }
cbd8a35c
WD
585
586 return 0;
587}
588
051ed9af
JH
589static int nfs3_get_attributes_offset(uint32_t *data)
590{
15eea9a1 591 if (data[1]) {
051ed9af 592 /* 'attributes_follow' flag is TRUE,
c629c45f 593 * so we have attributes on 21 dwords */
051ed9af
JH
594 /* 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
68c76a3a 617static int nfs_readlink_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
618{
619 struct rpc_t rpc_pkt;
620 int rlen;
051ed9af 621 int nfsv3_data_offset = 0;
cbd8a35c 622
0ebf04c6 623 debug("%s\n", __func__);
cbd8a35c 624
c9f6c91b 625 memcpy((unsigned char *)&rpc_pkt, pkt, len);
cbd8a35c 626
fa84fa70
MB
627 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;
c3f9d493 631
cbd8a35c
WD
632 if (rpc_pkt.u.reply.rstatus ||
633 rpc_pkt.u.reply.verifier ||
634 rpc_pkt.u.reply.astatus ||
c9f6c91b 635 rpc_pkt.u.reply.data[0])
cbd8a35c 636 return -1;
cbd8a35c 637
051ed9af
JH
638 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
639 nfsv3_data_offset =
640 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
641 }
b0baca98 642
051ed9af
JH
643 /* new path length */
644 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
645
cf3a4f1e 646 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
647 return -NFS_RPC_DROP;
648
051ed9af
JH
649 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
650 int pathlen;
651
652 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;
cbd8a35c
WD
663 }
664 return 0;
665}
666
68c76a3a 667static int nfs_read_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
668{
669 struct rpc_t rpc_pkt;
670 int rlen;
b0baca98 671 uchar *data_ptr;
cbd8a35c 672
0ebf04c6 673 debug("%s\n", __func__);
cbd8a35c 674
0517cc45 675 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
cbd8a35c 676
fa84fa70
MB
677 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;
c3f9d493 681
cbd8a35c
WD
682 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]) {
c9f6c91b 686 if (rpc_pkt.u.reply.rstatus)
cbd8a35c 687 return -9999;
c9f6c91b 688 if (rpc_pkt.u.reply.astatus)
cbd8a35c 689 return -9999;
c9f6c91b 690 return -ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
691 }
692
c9f6c91b
JH
693 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('#');
cbd8a35c 698
b0baca98
GG
699 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 */
051ed9af
JH
703 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]);
b0baca98
GG
714 }
715
aa207cf3 716 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
717 return -9999;
718
b0baca98
GG
719 if (store_block(data_ptr, nfs_offset, rlen))
720 return -9999;
cbd8a35c
WD
721
722 return rlen;
723}
724
725/**************************************************************************
726Interfaces of U-BOOT
727**************************************************************************/
68c76a3a 728static void nfs_timeout_handler(void)
a5725fab 729{
68c76a3a 730 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
c9f6c91b 731 puts("\nRetry count exceeded; starting again\n");
bc0571fc 732 net_start_again();
aabb8cb0
ES
733 } else {
734 puts("T ");
bc0571fc
JH
735 net_set_timeout_handler(nfs_timeout +
736 NFS_TIMEOUT * nfs_timeout_count,
737 nfs_timeout_handler);
68c76a3a 738 nfs_send();
fe891ecf 739 }
a5725fab
WD
740}
741
049a95a7
JH
742static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
743 unsigned src, unsigned len)
cbd8a35c
WD
744{
745 int rlen;
fa84fa70 746 int reply;
cbd8a35c 747
0ebf04c6 748 debug("%s\n", __func__);
cbd8a35c 749
741a8a08 750 if (len > sizeof(struct rpc_t))
751 return;
752
68c76a3a 753 if (dest != nfs_our_port)
c9f6c91b 754 return;
cbd8a35c 755
68c76a3a 756 switch (nfs_state) {
cbd8a35c 757 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
fa84fa70
MB
758 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
759 break;
68c76a3a
JH
760 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
761 nfs_send();
cbd8a35c
WD
762 break;
763
764 case STATE_PRCLOOKUP_PROG_NFS_REQ:
fa84fa70
MB
765 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
766 break;
68c76a3a
JH
767 nfs_state = STATE_MOUNT_REQ;
768 nfs_send();
cbd8a35c
WD
769 break;
770
771 case STATE_MOUNT_REQ:
fa84fa70 772 reply = nfs_mount_reply(pkt, len);
68c76a3a 773 if (reply == -NFS_RPC_DROP) {
fa84fa70 774 break;
68c76a3a 775 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 776 puts("*** ERROR: Cannot mount\n");
cbd8a35c 777 /* just to be sure... */
68c76a3a
JH
778 nfs_state = STATE_UMOUNT_REQ;
779 nfs_send();
cbd8a35c 780 } else {
68c76a3a
JH
781 nfs_state = STATE_LOOKUP_REQ;
782 nfs_send();
cbd8a35c
WD
783 }
784 break;
785
786 case STATE_UMOUNT_REQ:
fa84fa70 787 reply = nfs_umountall_reply(pkt, len);
68c76a3a 788 if (reply == -NFS_RPC_DROP) {
fa84fa70 789 break;
68c76a3a 790 } else if (reply == -NFS_RPC_ERR) {
d89ff2df 791 debug("*** ERROR: Cannot umount\n");
22f6e99d 792 net_set_state(NETLOOP_FAIL);
cbd8a35c 793 } else {
c9f6c91b 794 puts("\ndone\n");
22f6e99d 795 net_set_state(nfs_download_state);
cbd8a35c
WD
796 }
797 break;
798
799 case STATE_LOOKUP_REQ:
fa84fa70 800 reply = nfs_lookup_reply(pkt, len);
68c76a3a 801 if (reply == -NFS_RPC_DROP) {
fa84fa70 802 break;
68c76a3a 803 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 804 puts("*** ERROR: File lookup fail\n");
68c76a3a
JH
805 nfs_state = STATE_UMOUNT_REQ;
806 nfs_send();
347a9015
JH
807 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
808 supported_nfs_versions != 0) {
b0baca98
GG
809 /* 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();
cbd8a35c 815 } else {
68c76a3a 816 nfs_state = STATE_READ_REQ;
cbd8a35c
WD
817 nfs_offset = 0;
818 nfs_len = NFS_READ_SIZE;
68c76a3a 819 nfs_send();
cbd8a35c
WD
820 }
821 break;
822
823 case STATE_READLINK_REQ:
fa84fa70 824 reply = nfs_readlink_reply(pkt, len);
68c76a3a 825 if (reply == -NFS_RPC_DROP) {
fa84fa70 826 break;
68c76a3a 827 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 828 puts("*** ERROR: Symlink fail\n");
68c76a3a
JH
829 nfs_state = STATE_UMOUNT_REQ;
830 nfs_send();
cbd8a35c 831 } else {
0ebf04c6 832 debug("Symlink --> %s\n", nfs_path);
c9f6c91b
JH
833 nfs_filename = basename(nfs_path);
834 nfs_path = dirname(nfs_path);
cbd8a35c 835
68c76a3a
JH
836 nfs_state = STATE_MOUNT_REQ;
837 nfs_send();
cbd8a35c
WD
838 }
839 break;
840
841 case STATE_READ_REQ:
c9f6c91b 842 rlen = nfs_read_reply(pkt, len);
d48d40a0
VK
843 if (rlen == -NFS_RPC_DROP)
844 break;
bc0571fc 845 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
cbd8a35c
WD
846 if (rlen > 0) {
847 nfs_offset += rlen;
68c76a3a 848 nfs_send();
c9f6c91b 849 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
cbd8a35c 850 /* symbolic link */
68c76a3a
JH
851 nfs_state = STATE_READLINK_REQ;
852 nfs_send();
cbd8a35c 853 } else {
c9f6c91b 854 if (!rlen)
22f6e99d 855 nfs_download_state = NETLOOP_SUCCESS;
b0baca98 856 if (rlen < 0)
d89ff2df 857 debug("NFS READ error (%d)\n", rlen);
68c76a3a
JH
858 nfs_state = STATE_UMOUNT_REQ;
859 nfs_send();
cbd8a35c
WD
860 }
861 break;
862 }
863}
864
cbd8a35c 865
68c76a3a 866void nfs_start(void)
cbd8a35c 867{
0ebf04c6 868 debug("%s\n", __func__);
22f6e99d 869 nfs_download_state = NETLOOP_FAIL;
cbd8a35c 870
049a95a7 871 nfs_server_ip = net_server_ip;
cbd8a35c
WD
872 nfs_path = (char *)nfs_path_buff;
873
874 if (nfs_path == NULL) {
22f6e99d 875 net_set_state(NETLOOP_FAIL);
faecf84a 876 printf("*** ERROR: Fail allocate memory\n");
cbd8a35c
WD
877 return;
878 }
879
6ab12830
JH
880 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
881 sizeof(nfs_path_buff))) {
f8b26c7a 882 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
049a95a7
JH
883 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);
cbd8a35c 887
faecf84a
JH
888 printf("*** Warning: no boot file name; using '%s'\n",
889 nfs_path);
cbd8a35c
WD
890 }
891
c9f6c91b
JH
892 nfs_filename = basename(nfs_path);
893 nfs_path = dirname(nfs_path);
cbd8a35c 894
faecf84a 895 printf("Using %s device\n", eth_get_name());
cbd8a35c 896
faecf84a
JH
897 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
898 &nfs_server_ip, &net_ip);
cbd8a35c
WD
899
900 /* Check if we need to send across this subnet */
049a95a7
JH
901 if (net_gateway.s_addr && net_netmask.s_addr) {
902 struct in_addr our_net;
903 struct in_addr server_net;
cbd8a35c 904
049a95a7 905 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
347e32b0 906 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
049a95a7 907 if (our_net.s_addr != server_net.s_addr)
faecf84a
JH
908 printf("; sending through gateway %pI4",
909 &net_gateway);
cbd8a35c 910 }
faecf84a 911 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
cbd8a35c 912
1411157d 913 if (net_boot_file_expected_size_in_blocks) {
faecf84a
JH
914 printf(" Size is 0x%x Bytes = ",
915 net_boot_file_expected_size_in_blocks << 9);
1411157d 916 print_size(net_boot_file_expected_size_in_blocks << 9, "");
cbd8a35c 917 }
bb872dd9 918 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
cbd8a35c 919
bc0571fc 920 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
049a95a7 921 net_set_udp_handler(nfs_handler);
cbd8a35c 922
68c76a3a
JH
923 nfs_timeout_count = 0;
924 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
cbd8a35c 925
68c76a3a 926 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
cbd8a35c 927 /*FIX ME !!!*/
68c76a3a 928 nfs_our_port = 1000;
cbd8a35c
WD
929
930 /* zero out server ether in case the server ip has changed */
0adb5b76 931 memset(net_server_ethaddr, 0, 6);
cbd8a35c 932
68c76a3a 933 nfs_send();
cbd8a35c 934}
This page took 0.436626 seconds and 4 git commands to generate.