]> Git Repo - u-boot.git/blame - net/nfs.c
Convert CONFIG_SDCARD et al to Kconfig
[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
cbd8a35c 43
fa84fa70
MB
44#define NFS_RPC_ERR 1
45#define NFS_RPC_DROP 124
46
c9f6c91b
JH
47static int fs_mounted;
48static unsigned long rpc_id;
cbd8a35c
WD
49static int nfs_offset = -1;
50static int nfs_len;
eeda762a 51static const ulong nfs_timeout = CONFIG_NFS_TIMEOUT;
cbd8a35c 52
b0baca98 53static char dirfh[NFS_FHSIZE]; /* NFSv2 / NFSv3 file handle of directory */
5280c769
JH
54static char filefh[NFS3_FHSIZE]; /* NFSv2 / NFSv3 file handle */
55static int filefh3_length; /* (variable) length of filefh when NFSv3 */
cbd8a35c 56
22f6e99d 57static enum net_loop_state nfs_download_state;
049a95a7 58static struct in_addr nfs_server_ip;
68c76a3a
JH
59static int nfs_server_mount_port;
60static int nfs_server_port;
61static int nfs_our_port;
62static int nfs_timeout_count;
63static int nfs_state;
cbd8a35c
WD
64#define STATE_PRCLOOKUP_PROG_MOUNT_REQ 1
65#define STATE_PRCLOOKUP_PROG_NFS_REQ 2
66#define STATE_MOUNT_REQ 3
67#define STATE_UMOUNT_REQ 4
68#define STATE_LOOKUP_REQ 5
69#define STATE_READ_REQ 6
70#define STATE_READLINK_REQ 7
71
cbd8a35c
WD
72static char *nfs_filename;
73static char *nfs_path;
74static char nfs_path_buff[2048];
75
b0baca98
GG
76#define NFSV2_FLAG 1
77#define NFSV3_FLAG 1 << 1
78static char supported_nfs_versions = NFSV2_FLAG | NFSV3_FLAG;
79
68c76a3a 80static inline int store_block(uchar *src, unsigned offset, unsigned len)
cbd8a35c 81{
a084f7da 82 ulong newsize = offset + len;
6d0f6bcf 83#ifdef CONFIG_SYS_DIRECT_FLASH_NFS
cbd8a35c
WD
84 int i, rc = 0;
85
c9f6c91b 86 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
cbd8a35c 87 /* start address in flash? */
bb872dd9 88 if (image_load_addr + offset >= flash_info[i].start[0]) {
cbd8a35c
WD
89 rc = 1;
90 break;
91 }
92 }
93
94 if (rc) { /* Flash is destination for this packet */
bb872dd9
SG
95 rc = flash_write((uchar *)src, (ulong)image_load_addr + offset,
96 len);
cbd8a35c 97 if (rc) {
c9f6c91b 98 flash_perror(rc);
23a7a32d 99 return -1;
cbd8a35c
WD
100 }
101 } else
6d0f6bcf 102#endif /* CONFIG_SYS_DIRECT_FLASH_NFS */
cbd8a35c 103 {
bb872dd9 104 void *ptr = map_sysmem(image_load_addr + offset, len);
55d5fd9a
JH
105
106 memcpy(ptr, src, len);
107 unmap_sysmem(ptr);
cbd8a35c 108 }
a084f7da 109
1411157d
JH
110 if (net_boot_file_size < (offset + len))
111 net_boot_file_size = newsize;
23a7a32d 112 return 0;
cbd8a35c
WD
113}
114
68c76a3a 115static char *basename(char *path)
cbd8a35c
WD
116{
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
68c76a3a 130static char *dirname(char *path)
cbd8a35c
WD
131{
132 char *fname;
133
c9f6c91b 134 fname = basename(path);
cbd8a35c
WD
135 --fname;
136 *fname = '\0';
137 return path;
138}
139
cbd8a35c
WD
140/**************************************************************************
141RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
142**************************************************************************/
e4ead4a2 143static uint32_t *rpc_add_credentials(uint32_t *p)
cbd8a35c 144{
cbd8a35c
WD
145 /* Here's the executive summary on authentication requirements of the
146 * various NFS server implementations: Linux accepts both AUTH_NONE
147 * and AUTH_UNIX authentication (also accepts an empty hostname field
148 * in the AUTH_UNIX scheme). *BSD refuses AUTH_NONE, but accepts
149 * AUTH_UNIX (also accepts an empty hostname field in the AUTH_UNIX
150 * scheme). To be safe, use AUTH_UNIX and pass the hostname if we have
151 * it (if the BOOTP/DHCP reply didn't give one, just use an empty
152 * hostname). */
153
cbd8a35c
WD
154 /* Provide an AUTH_UNIX credential. */
155 *p++ = htonl(1); /* AUTH_UNIX */
1ff65d44
JH
156 *p++ = htonl(20); /* auth length */
157 *p++ = 0; /* stamp */
158 *p++ = 0; /* hostname string */
cbd8a35c
WD
159 *p++ = 0; /* uid */
160 *p++ = 0; /* gid */
161 *p++ = 0; /* auxiliary gid list */
162
163 /* Provide an AUTH_NONE verifier. */
164 *p++ = 0; /* AUTH_NONE */
165 *p++ = 0; /* auth length */
166
167 return p;
168}
169
170/**************************************************************************
171RPC_LOOKUP - Lookup RPC Port numbers
172**************************************************************************/
a73588fe 173static void rpc_req(int rpc_prog, int rpc_proc, uint32_t *data, int datalen)
cbd8a35c 174{
a73588fe 175 struct rpc_t rpc_pkt;
cbd8a35c 176 unsigned long id;
a73588fe 177 uint32_t *p;
cbd8a35c
WD
178 int pktlen;
179 int sport;
180
c3f9d493 181 id = ++rpc_id;
a73588fe
JH
182 rpc_pkt.u.call.id = htonl(id);
183 rpc_pkt.u.call.type = htonl(MSG_CALL);
184 rpc_pkt.u.call.rpcvers = htonl(2); /* use RPC version 2 */
185 rpc_pkt.u.call.prog = htonl(rpc_prog);
b0baca98
GG
186 switch (rpc_prog) {
187 case PROG_NFS:
188 if (supported_nfs_versions & NFSV2_FLAG)
a73588fe 189 rpc_pkt.u.call.vers = htonl(2); /* NFS v2 */
b0baca98 190 else /* NFSV3_FLAG */
a73588fe 191 rpc_pkt.u.call.vers = htonl(3); /* NFS v3 */
b0baca98
GG
192 break;
193 case PROG_PORTMAP:
194 case PROG_MOUNT:
195 default:
a73588fe 196 rpc_pkt.u.call.vers = htonl(2); /* portmapper is version 2 */
b0baca98 197 }
a73588fe 198 rpc_pkt.u.call.proc = htonl(rpc_proc);
15eea9a1 199 p = rpc_pkt.u.call.data;
a73588fe
JH
200
201 if (datalen)
15eea9a1 202 memcpy(p, data, datalen * sizeof(uint32_t));
a73588fe
JH
203
204 pktlen = (char *)p + datalen * sizeof(uint32_t) - (char *)&rpc_pkt;
cbd8a35c 205
a73588fe
JH
206 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
207 &rpc_pkt.u.data[0], pktlen);
cbd8a35c
WD
208
209 if (rpc_prog == PROG_PORTMAP)
210 sport = SUNRPC_PORT;
211 else if (rpc_prog == PROG_MOUNT)
68c76a3a 212 sport = nfs_server_mount_port;
cbd8a35c 213 else
68c76a3a 214 sport = nfs_server_port;
cbd8a35c 215
1203fcce 216 net_send_udp_packet(net_server_ethaddr, nfs_server_ip, sport,
68c76a3a 217 nfs_our_port, pktlen);
cbd8a35c
WD
218}
219
220/**************************************************************************
221RPC_LOOKUP - Lookup RPC Port numbers
222**************************************************************************/
68c76a3a 223static void rpc_lookup_req(int prog, int ver)
cbd8a35c 224{
a73588fe 225 uint32_t data[16];
cbd8a35c
WD
226
227 data[0] = 0; data[1] = 0; /* auth credential */
228 data[2] = 0; data[3] = 0; /* auth verifier */
229 data[4] = htonl(prog);
230 data[5] = htonl(ver);
231 data[6] = htonl(17); /* IP_UDP */
232 data[7] = 0;
a73588fe 233 rpc_req(PROG_PORTMAP, PORTMAP_GETPORT, data, 8);
cbd8a35c
WD
234}
235
236/**************************************************************************
237NFS_MOUNT - Mount an NFS Filesystem
238**************************************************************************/
68c76a3a 239static void nfs_mount_req(char *path)
cbd8a35c 240{
a73588fe 241 uint32_t data[1024];
cbd8a35c
WD
242 uint32_t *p;
243 int len;
244 int pathlen;
245
c9f6c91b 246 pathlen = strlen(path);
cbd8a35c 247
a73588fe 248 p = &(data[0]);
e4ead4a2 249 p = rpc_add_credentials(p);
cbd8a35c
WD
250
251 *p++ = htonl(pathlen);
c9f6c91b
JH
252 if (pathlen & 3)
253 *(p + pathlen / 4) = 0;
254 memcpy(p, path, pathlen);
cbd8a35c
WD
255 p += (pathlen + 3) / 4;
256
a73588fe 257 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 258
a73588fe 259 rpc_req(PROG_MOUNT, MOUNT_ADDENTRY, data, len);
cbd8a35c
WD
260}
261
262/**************************************************************************
263NFS_UMOUNTALL - Unmount all our NFS Filesystems on the Server
264**************************************************************************/
68c76a3a 265static void nfs_umountall_req(void)
cbd8a35c 266{
a73588fe 267 uint32_t data[1024];
cbd8a35c
WD
268 uint32_t *p;
269 int len;
270
68c76a3a 271 if ((nfs_server_mount_port == -1) || (!fs_mounted))
cbd8a35c
WD
272 /* Nothing mounted, nothing to umount */
273 return;
cbd8a35c 274
a73588fe 275 p = &(data[0]);
e4ead4a2 276 p = rpc_add_credentials(p);
cbd8a35c 277
a73588fe 278 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 279
a73588fe 280 rpc_req(PROG_MOUNT, MOUNT_UMOUNTALL, data, len);
cbd8a35c
WD
281}
282
283/***************************************************************************
284 * NFS_READLINK (AH 2003-07-14)
285 * This procedure is called when read of the first block fails -
286 * this probably happens when it's a directory or a symlink
287 * In case of successful readlink(), the dirname is manipulated,
288 * so that inside the nfs() function a recursion can be done.
289 **************************************************************************/
68c76a3a 290static void nfs_readlink_req(void)
cbd8a35c 291{
a73588fe 292 uint32_t data[1024];
cbd8a35c
WD
293 uint32_t *p;
294 int len;
295
a73588fe 296 p = &(data[0]);
e4ead4a2 297 p = rpc_add_credentials(p);
cbd8a35c 298
b0baca98
GG
299 if (supported_nfs_versions & NFSV2_FLAG) {
300 memcpy(p, filefh, NFS_FHSIZE);
301 p += (NFS_FHSIZE / 4);
302 } else { /* NFSV3_FLAG */
303 *p++ = htonl(filefh3_length);
5280c769 304 memcpy(p, filefh, filefh3_length);
b0baca98
GG
305 p += (filefh3_length / 4);
306 }
cbd8a35c 307
a73588fe 308 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 309
a73588fe 310 rpc_req(PROG_NFS, NFS_READLINK, data, len);
cbd8a35c
WD
311}
312
313/**************************************************************************
314NFS_LOOKUP - Lookup Pathname
315**************************************************************************/
68c76a3a 316static void nfs_lookup_req(char *fname)
cbd8a35c 317{
a73588fe 318 uint32_t data[1024];
cbd8a35c
WD
319 uint32_t *p;
320 int len;
321 int fnamelen;
322
c9f6c91b 323 fnamelen = strlen(fname);
cbd8a35c 324
a73588fe 325 p = &(data[0]);
e4ead4a2 326 p = rpc_add_credentials(p);
cbd8a35c 327
b0baca98
GG
328 if (supported_nfs_versions & NFSV2_FLAG) {
329 memcpy(p, dirfh, NFS_FHSIZE);
330 p += (NFS_FHSIZE / 4);
331 *p++ = htonl(fnamelen);
332 if (fnamelen & 3)
333 *(p + fnamelen / 4) = 0;
334 memcpy(p, fname, fnamelen);
335 p += (fnamelen + 3) / 4;
336
a73588fe 337 len = (uint32_t *)p - (uint32_t *)&(data[0]);
b0baca98 338
a73588fe 339 rpc_req(PROG_NFS, NFS_LOOKUP, data, len);
b0baca98
GG
340 } else { /* NFSV3_FLAG */
341 *p++ = htonl(NFS_FHSIZE); /* Dir handle length */
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;
349
a73588fe 350 len = (uint32_t *)p - (uint32_t *)&(data[0]);
b0baca98 351
a73588fe 352 rpc_req(PROG_NFS, NFS3PROC_LOOKUP, data, len);
b0baca98 353 }
cbd8a35c
WD
354}
355
356/**************************************************************************
357NFS_READ - Read File on NFS Server
358**************************************************************************/
68c76a3a 359static void nfs_read_req(int offset, int readlen)
cbd8a35c 360{
a73588fe 361 uint32_t data[1024];
cbd8a35c
WD
362 uint32_t *p;
363 int len;
364
a73588fe 365 p = &(data[0]);
e4ead4a2 366 p = rpc_add_credentials(p);
cbd8a35c 367
b0baca98
GG
368 if (supported_nfs_versions & NFSV2_FLAG) {
369 memcpy(p, filefh, NFS_FHSIZE);
370 p += (NFS_FHSIZE / 4);
371 *p++ = htonl(offset);
372 *p++ = htonl(readlen);
373 *p++ = 0;
374 } else { /* NFSV3_FLAG */
375 *p++ = htonl(filefh3_length);
5280c769 376 memcpy(p, filefh, filefh3_length);
b0baca98
GG
377 p += (filefh3_length / 4);
378 *p++ = htonl(0); /* offset is 64-bit long, so fill with 0 */
379 *p++ = htonl(offset);
380 *p++ = htonl(readlen);
381 *p++ = 0;
382 }
cbd8a35c 383
a73588fe 384 len = (uint32_t *)p - (uint32_t *)&(data[0]);
cbd8a35c 385
a73588fe 386 rpc_req(PROG_NFS, NFS_READ, data, len);
cbd8a35c
WD
387}
388
389/**************************************************************************
390RPC request dispatcher
391**************************************************************************/
68c76a3a 392static void nfs_send(void)
cbd8a35c 393{
0ebf04c6 394 debug("%s\n", __func__);
cbd8a35c 395
68c76a3a 396 switch (nfs_state) {
cbd8a35c 397 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
b0baca98
GG
398 if (supported_nfs_versions & NFSV2_FLAG)
399 rpc_lookup_req(PROG_MOUNT, 1);
400 else /* NFSV3_FLAG */
401 rpc_lookup_req(PROG_MOUNT, 3);
cbd8a35c
WD
402 break;
403 case STATE_PRCLOOKUP_PROG_NFS_REQ:
b0baca98
GG
404 if (supported_nfs_versions & NFSV2_FLAG)
405 rpc_lookup_req(PROG_NFS, 2);
406 else /* NFSV3_FLAG */
407 rpc_lookup_req(PROG_NFS, 3);
cbd8a35c
WD
408 break;
409 case STATE_MOUNT_REQ:
c9f6c91b 410 nfs_mount_req(nfs_path);
cbd8a35c
WD
411 break;
412 case STATE_UMOUNT_REQ:
c9f6c91b 413 nfs_umountall_req();
cbd8a35c
WD
414 break;
415 case STATE_LOOKUP_REQ:
c9f6c91b 416 nfs_lookup_req(nfs_filename);
cbd8a35c
WD
417 break;
418 case STATE_READ_REQ:
c9f6c91b 419 nfs_read_req(nfs_offset, nfs_len);
cbd8a35c
WD
420 break;
421 case STATE_READLINK_REQ:
c9f6c91b 422 nfs_readlink_req();
cbd8a35c
WD
423 break;
424 }
425}
426
427/**************************************************************************
428Handlers for the reply from server
429**************************************************************************/
430
68c76a3a 431static int rpc_lookup_reply(int prog, uchar *pkt, unsigned len)
cbd8a35c
WD
432{
433 struct rpc_t rpc_pkt;
434
0517cc45 435 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 436
0ebf04c6 437 debug("%s\n", __func__);
cbd8a35c 438
fa84fa70
MB
439 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
440 return -NFS_RPC_ERR;
441 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
442 return -NFS_RPC_DROP;
c3f9d493 443
cbd8a35c
WD
444 if (rpc_pkt.u.reply.rstatus ||
445 rpc_pkt.u.reply.verifier ||
c9f6c91b 446 rpc_pkt.u.reply.astatus)
c3f9d493 447 return -1;
cbd8a35c
WD
448
449 switch (prog) {
450 case PROG_MOUNT:
68c76a3a 451 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
452 break;
453 case PROG_NFS:
68c76a3a 454 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
455 break;
456 }
457
458 return 0;
459}
460
68c76a3a 461static int nfs_mount_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
462{
463 struct rpc_t rpc_pkt;
464
0ebf04c6 465 debug("%s\n", __func__);
cbd8a35c 466
0517cc45 467 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 468
fa84fa70
MB
469 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
470 return -NFS_RPC_ERR;
471 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
472 return -NFS_RPC_DROP;
c3f9d493 473
cbd8a35c
WD
474 if (rpc_pkt.u.reply.rstatus ||
475 rpc_pkt.u.reply.verifier ||
476 rpc_pkt.u.reply.astatus ||
c9f6c91b 477 rpc_pkt.u.reply.data[0])
cbd8a35c 478 return -1;
cbd8a35c
WD
479
480 fs_mounted = 1;
b0baca98 481 /* NFSv2 and NFSv3 use same structure */
c9f6c91b 482 memcpy(dirfh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
cbd8a35c
WD
483
484 return 0;
485}
486
68c76a3a 487static int nfs_umountall_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
488{
489 struct rpc_t rpc_pkt;
490
0ebf04c6 491 debug("%s\n", __func__);
cbd8a35c 492
0517cc45 493 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 494
fa84fa70
MB
495 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
496 return -NFS_RPC_ERR;
497 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
498 return -NFS_RPC_DROP;
c3f9d493 499
cbd8a35c
WD
500 if (rpc_pkt.u.reply.rstatus ||
501 rpc_pkt.u.reply.verifier ||
c9f6c91b 502 rpc_pkt.u.reply.astatus)
cbd8a35c 503 return -1;
cbd8a35c
WD
504
505 fs_mounted = 0;
c9f6c91b 506 memset(dirfh, 0, sizeof(dirfh));
cbd8a35c
WD
507
508 return 0;
509}
510
68c76a3a 511static int nfs_lookup_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
512{
513 struct rpc_t rpc_pkt;
514
0ebf04c6 515 debug("%s\n", __func__);
cbd8a35c 516
0517cc45 517 memcpy(&rpc_pkt.u.data[0], pkt, len);
cbd8a35c 518
fa84fa70
MB
519 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
520 return -NFS_RPC_ERR;
521 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
522 return -NFS_RPC_DROP;
c3f9d493 523
cbd8a35c
WD
524 if (rpc_pkt.u.reply.rstatus ||
525 rpc_pkt.u.reply.verifier ||
526 rpc_pkt.u.reply.astatus ||
69fd0d41
GG
527 rpc_pkt.u.reply.data[0]) {
528 switch (ntohl(rpc_pkt.u.reply.astatus)) {
b0baca98 529 case NFS_RPC_SUCCESS: /* Not an error */
69fd0d41 530 break;
b0baca98
GG
531 case NFS_RPC_PROG_MISMATCH:
532 /* Remote can't support NFS version */
533 switch (ntohl(rpc_pkt.u.reply.data[0])) {
534 /* Minimal supported NFS version */
535 case 3:
faecf84a 536 debug("*** Warning: NFS version not supported: Requested: V%d, accepted: min V%d - max V%d\n",
347a9015
JH
537 (supported_nfs_versions & NFSV2_FLAG) ?
538 2 : 3,
b0baca98
GG
539 ntohl(rpc_pkt.u.reply.data[0]),
540 ntohl(rpc_pkt.u.reply.data[1]));
541 debug("Will retry with NFSv3\n");
542 /* Clear NFSV2_FLAG from supported versions */
543 supported_nfs_versions &= ~NFSV2_FLAG;
544 return -NFS_RPC_PROG_MISMATCH;
545 case 4:
546 default:
d89ff2df
JH
547 puts("*** ERROR: NFS version not supported");
548 debug(": Requested: V%d, accepted: min V%d - max V%d\n",
549 (supported_nfs_versions & NFSV2_FLAG) ?
347a9015 550 2 : 3,
d89ff2df
JH
551 ntohl(rpc_pkt.u.reply.data[0]),
552 ntohl(rpc_pkt.u.reply.data[1]));
553 puts("\n");
b0baca98 554 }
69fd0d41 555 break;
b0baca98
GG
556 case NFS_RPC_PROG_UNAVAIL:
557 case NFS_RPC_PROC_UNAVAIL:
558 case NFS_RPC_GARBAGE_ARGS:
559 case NFS_RPC_SYSTEM_ERR:
69fd0d41 560 default: /* Unknown error on 'accept state' flag */
d89ff2df
JH
561 debug("*** ERROR: accept state error (%d)\n",
562 ntohl(rpc_pkt.u.reply.astatus));
69fd0d41
GG
563 break;
564 }
cbd8a35c 565 return -1;
69fd0d41 566 }
cbd8a35c 567
b0baca98 568 if (supported_nfs_versions & NFSV2_FLAG) {
5d14ee4e 569 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + NFS_FHSIZE) > len)
570 return -NFS_RPC_DROP;
b0baca98
GG
571 memcpy(filefh, rpc_pkt.u.reply.data + 1, NFS_FHSIZE);
572 } else { /* NFSV3_FLAG */
573 filefh3_length = ntohl(rpc_pkt.u.reply.data[1]);
574 if (filefh3_length > NFS3_FHSIZE)
575 filefh3_length = NFS3_FHSIZE;
5d14ee4e 576 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + filefh3_length) > len)
577 return -NFS_RPC_DROP;
5280c769 578 memcpy(filefh, rpc_pkt.u.reply.data + 2, filefh3_length);
b0baca98 579 }
cbd8a35c
WD
580
581 return 0;
582}
583
051ed9af
JH
584static int nfs3_get_attributes_offset(uint32_t *data)
585{
15eea9a1 586 if (data[1]) {
051ed9af 587 /* 'attributes_follow' flag is TRUE,
c629c45f 588 * so we have attributes on 21 dwords */
051ed9af
JH
589 /* Skip unused values :
590 type; 32 bits value,
591 mode; 32 bits value,
592 nlink; 32 bits value,
593 uid; 32 bits value,
594 gid; 32 bits value,
595 size; 64 bits value,
596 used; 64 bits value,
597 rdev; 64 bits value,
598 fsid; 64 bits value,
599 fileid; 64 bits value,
600 atime; 64 bits value,
601 mtime; 64 bits value,
602 ctime; 64 bits value,
603 */
604 return 22;
605 } else {
606 /* 'attributes_follow' flag is FALSE,
607 * so we don't have any attributes */
608 return 1;
609 }
610}
611
68c76a3a 612static int nfs_readlink_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
613{
614 struct rpc_t rpc_pkt;
615 int rlen;
051ed9af 616 int nfsv3_data_offset = 0;
cbd8a35c 617
0ebf04c6 618 debug("%s\n", __func__);
cbd8a35c 619
c9f6c91b 620 memcpy((unsigned char *)&rpc_pkt, pkt, len);
cbd8a35c 621
fa84fa70
MB
622 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
623 return -NFS_RPC_ERR;
624 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
625 return -NFS_RPC_DROP;
c3f9d493 626
cbd8a35c
WD
627 if (rpc_pkt.u.reply.rstatus ||
628 rpc_pkt.u.reply.verifier ||
629 rpc_pkt.u.reply.astatus ||
c9f6c91b 630 rpc_pkt.u.reply.data[0])
cbd8a35c 631 return -1;
cbd8a35c 632
051ed9af
JH
633 if (!(supported_nfs_versions & NFSV2_FLAG)) { /* NFSV3_FLAG */
634 nfsv3_data_offset =
635 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
636 }
b0baca98 637
051ed9af
JH
638 /* new path length */
639 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
640
cf3a4f1e 641 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
642 return -NFS_RPC_DROP;
643
051ed9af
JH
644 if (*((char *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset])) != '/') {
645 int pathlen;
646
647 strcat(nfs_path, "/");
648 pathlen = strlen(nfs_path);
649 memcpy(nfs_path + pathlen,
650 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
651 rlen);
652 nfs_path[pathlen + rlen] = 0;
653 } else {
654 memcpy(nfs_path,
655 (uchar *)&(rpc_pkt.u.reply.data[2 + nfsv3_data_offset]),
656 rlen);
657 nfs_path[rlen] = 0;
cbd8a35c
WD
658 }
659 return 0;
660}
661
68c76a3a 662static int nfs_read_reply(uchar *pkt, unsigned len)
cbd8a35c
WD
663{
664 struct rpc_t rpc_pkt;
665 int rlen;
b0baca98 666 uchar *data_ptr;
cbd8a35c 667
0ebf04c6 668 debug("%s\n", __func__);
cbd8a35c 669
0517cc45 670 memcpy(&rpc_pkt.u.data[0], pkt, sizeof(rpc_pkt.u.reply));
cbd8a35c 671
fa84fa70
MB
672 if (ntohl(rpc_pkt.u.reply.id) > rpc_id)
673 return -NFS_RPC_ERR;
674 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id)
675 return -NFS_RPC_DROP;
c3f9d493 676
cbd8a35c
WD
677 if (rpc_pkt.u.reply.rstatus ||
678 rpc_pkt.u.reply.verifier ||
679 rpc_pkt.u.reply.astatus ||
680 rpc_pkt.u.reply.data[0]) {
c9f6c91b 681 if (rpc_pkt.u.reply.rstatus)
cbd8a35c 682 return -9999;
c9f6c91b 683 if (rpc_pkt.u.reply.astatus)
cbd8a35c 684 return -9999;
c9f6c91b 685 return -ntohl(rpc_pkt.u.reply.data[0]);
cbd8a35c
WD
686 }
687
c9f6c91b
JH
688 if ((nfs_offset != 0) && !((nfs_offset) %
689 (NFS_READ_SIZE / 2 * 10 * HASHES_PER_LINE)))
690 puts("\n\t ");
691 if (!(nfs_offset % ((NFS_READ_SIZE / 2) * 10)))
692 putc('#');
cbd8a35c 693
b0baca98
GG
694 if (supported_nfs_versions & NFSV2_FLAG) {
695 rlen = ntohl(rpc_pkt.u.reply.data[18]);
696 data_ptr = (uchar *)&(rpc_pkt.u.reply.data[19]);
697 } else { /* NFSV3_FLAG */
051ed9af
JH
698 int nfsv3_data_offset =
699 nfs3_get_attributes_offset(rpc_pkt.u.reply.data);
700
701 /* count value */
702 rlen = ntohl(rpc_pkt.u.reply.data[1 + nfsv3_data_offset]);
703 /* Skip unused values :
704 EOF: 32 bits value,
705 data_size: 32 bits value,
706 */
707 data_ptr = (uchar *)
708 &(rpc_pkt.u.reply.data[4 + nfsv3_data_offset]);
b0baca98
GG
709 }
710
aa207cf3 711 if (((uchar *)&(rpc_pkt.u.reply.data[0]) - (uchar *)(&rpc_pkt) + rlen) > len)
712 return -9999;
713
b0baca98
GG
714 if (store_block(data_ptr, nfs_offset, rlen))
715 return -9999;
cbd8a35c
WD
716
717 return rlen;
718}
719
720/**************************************************************************
721Interfaces of U-BOOT
722**************************************************************************/
68c76a3a 723static void nfs_timeout_handler(void)
a5725fab 724{
68c76a3a 725 if (++nfs_timeout_count > NFS_RETRY_COUNT) {
c9f6c91b 726 puts("\nRetry count exceeded; starting again\n");
bc0571fc 727 net_start_again();
aabb8cb0
ES
728 } else {
729 puts("T ");
bc0571fc 730 net_set_timeout_handler(nfs_timeout +
eeda762a 731 nfs_timeout * nfs_timeout_count,
bc0571fc 732 nfs_timeout_handler);
68c76a3a 733 nfs_send();
fe891ecf 734 }
a5725fab
WD
735}
736
049a95a7
JH
737static void nfs_handler(uchar *pkt, unsigned dest, struct in_addr sip,
738 unsigned src, unsigned len)
cbd8a35c
WD
739{
740 int rlen;
fa84fa70 741 int reply;
cbd8a35c 742
0ebf04c6 743 debug("%s\n", __func__);
cbd8a35c 744
741a8a08 745 if (len > sizeof(struct rpc_t))
746 return;
747
68c76a3a 748 if (dest != nfs_our_port)
c9f6c91b 749 return;
cbd8a35c 750
68c76a3a 751 switch (nfs_state) {
cbd8a35c 752 case STATE_PRCLOOKUP_PROG_MOUNT_REQ:
fa84fa70
MB
753 if (rpc_lookup_reply(PROG_MOUNT, pkt, len) == -NFS_RPC_DROP)
754 break;
68c76a3a
JH
755 nfs_state = STATE_PRCLOOKUP_PROG_NFS_REQ;
756 nfs_send();
cbd8a35c
WD
757 break;
758
759 case STATE_PRCLOOKUP_PROG_NFS_REQ:
fa84fa70
MB
760 if (rpc_lookup_reply(PROG_NFS, pkt, len) == -NFS_RPC_DROP)
761 break;
68c76a3a
JH
762 nfs_state = STATE_MOUNT_REQ;
763 nfs_send();
cbd8a35c
WD
764 break;
765
766 case STATE_MOUNT_REQ:
fa84fa70 767 reply = nfs_mount_reply(pkt, len);
68c76a3a 768 if (reply == -NFS_RPC_DROP) {
fa84fa70 769 break;
68c76a3a 770 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 771 puts("*** ERROR: Cannot mount\n");
cbd8a35c 772 /* just to be sure... */
68c76a3a
JH
773 nfs_state = STATE_UMOUNT_REQ;
774 nfs_send();
cbd8a35c 775 } else {
68c76a3a
JH
776 nfs_state = STATE_LOOKUP_REQ;
777 nfs_send();
cbd8a35c
WD
778 }
779 break;
780
781 case STATE_UMOUNT_REQ:
fa84fa70 782 reply = nfs_umountall_reply(pkt, len);
68c76a3a 783 if (reply == -NFS_RPC_DROP) {
fa84fa70 784 break;
68c76a3a 785 } else if (reply == -NFS_RPC_ERR) {
d89ff2df 786 debug("*** ERROR: Cannot umount\n");
22f6e99d 787 net_set_state(NETLOOP_FAIL);
cbd8a35c 788 } else {
c9f6c91b 789 puts("\ndone\n");
22f6e99d 790 net_set_state(nfs_download_state);
cbd8a35c
WD
791 }
792 break;
793
794 case STATE_LOOKUP_REQ:
fa84fa70 795 reply = nfs_lookup_reply(pkt, len);
68c76a3a 796 if (reply == -NFS_RPC_DROP) {
fa84fa70 797 break;
68c76a3a 798 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 799 puts("*** ERROR: File lookup fail\n");
68c76a3a
JH
800 nfs_state = STATE_UMOUNT_REQ;
801 nfs_send();
347a9015
JH
802 } else if (reply == -NFS_RPC_PROG_MISMATCH &&
803 supported_nfs_versions != 0) {
b0baca98
GG
804 /* umount */
805 nfs_state = STATE_UMOUNT_REQ;
806 nfs_send();
807 /* And retry with another supported version */
808 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
809 nfs_send();
cbd8a35c 810 } else {
68c76a3a 811 nfs_state = STATE_READ_REQ;
cbd8a35c
WD
812 nfs_offset = 0;
813 nfs_len = NFS_READ_SIZE;
68c76a3a 814 nfs_send();
cbd8a35c
WD
815 }
816 break;
817
818 case STATE_READLINK_REQ:
fa84fa70 819 reply = nfs_readlink_reply(pkt, len);
68c76a3a 820 if (reply == -NFS_RPC_DROP) {
fa84fa70 821 break;
68c76a3a 822 } else if (reply == -NFS_RPC_ERR) {
c9f6c91b 823 puts("*** ERROR: Symlink fail\n");
68c76a3a
JH
824 nfs_state = STATE_UMOUNT_REQ;
825 nfs_send();
cbd8a35c 826 } else {
0ebf04c6 827 debug("Symlink --> %s\n", nfs_path);
c9f6c91b
JH
828 nfs_filename = basename(nfs_path);
829 nfs_path = dirname(nfs_path);
cbd8a35c 830
68c76a3a
JH
831 nfs_state = STATE_MOUNT_REQ;
832 nfs_send();
cbd8a35c
WD
833 }
834 break;
835
836 case STATE_READ_REQ:
c9f6c91b 837 rlen = nfs_read_reply(pkt, len);
d48d40a0
VK
838 if (rlen == -NFS_RPC_DROP)
839 break;
bc0571fc 840 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
cbd8a35c
WD
841 if (rlen > 0) {
842 nfs_offset += rlen;
68c76a3a 843 nfs_send();
c9f6c91b 844 } else if ((rlen == -NFSERR_ISDIR) || (rlen == -NFSERR_INVAL)) {
cbd8a35c 845 /* symbolic link */
68c76a3a
JH
846 nfs_state = STATE_READLINK_REQ;
847 nfs_send();
cbd8a35c 848 } else {
c9f6c91b 849 if (!rlen)
22f6e99d 850 nfs_download_state = NETLOOP_SUCCESS;
b0baca98 851 if (rlen < 0)
d89ff2df 852 debug("NFS READ error (%d)\n", rlen);
68c76a3a
JH
853 nfs_state = STATE_UMOUNT_REQ;
854 nfs_send();
cbd8a35c
WD
855 }
856 break;
857 }
858}
859
cbd8a35c 860
68c76a3a 861void nfs_start(void)
cbd8a35c 862{
0ebf04c6 863 debug("%s\n", __func__);
22f6e99d 864 nfs_download_state = NETLOOP_FAIL;
cbd8a35c 865
049a95a7 866 nfs_server_ip = net_server_ip;
cbd8a35c
WD
867 nfs_path = (char *)nfs_path_buff;
868
869 if (nfs_path == NULL) {
22f6e99d 870 net_set_state(NETLOOP_FAIL);
faecf84a 871 printf("*** ERROR: Fail allocate memory\n");
cbd8a35c
WD
872 return;
873 }
874
6ab12830
JH
875 if (!net_parse_bootfile(&nfs_server_ip, nfs_path,
876 sizeof(nfs_path_buff))) {
f8b26c7a 877 sprintf(nfs_path, "/nfsroot/%02X%02X%02X%02X.img",
049a95a7
JH
878 net_ip.s_addr & 0xFF,
879 (net_ip.s_addr >> 8) & 0xFF,
880 (net_ip.s_addr >> 16) & 0xFF,
881 (net_ip.s_addr >> 24) & 0xFF);
cbd8a35c 882
faecf84a
JH
883 printf("*** Warning: no boot file name; using '%s'\n",
884 nfs_path);
cbd8a35c
WD
885 }
886
c9f6c91b
JH
887 nfs_filename = basename(nfs_path);
888 nfs_path = dirname(nfs_path);
cbd8a35c 889
faecf84a 890 printf("Using %s device\n", eth_get_name());
cbd8a35c 891
faecf84a
JH
892 printf("File transfer via NFS from server %pI4; our IP address is %pI4",
893 &nfs_server_ip, &net_ip);
cbd8a35c
WD
894
895 /* Check if we need to send across this subnet */
049a95a7
JH
896 if (net_gateway.s_addr && net_netmask.s_addr) {
897 struct in_addr our_net;
898 struct in_addr server_net;
cbd8a35c 899
049a95a7 900 our_net.s_addr = net_ip.s_addr & net_netmask.s_addr;
347e32b0 901 server_net.s_addr = nfs_server_ip.s_addr & net_netmask.s_addr;
049a95a7 902 if (our_net.s_addr != server_net.s_addr)
faecf84a
JH
903 printf("; sending through gateway %pI4",
904 &net_gateway);
cbd8a35c 905 }
faecf84a 906 printf("\nFilename '%s/%s'.", nfs_path, nfs_filename);
cbd8a35c 907
1411157d 908 if (net_boot_file_expected_size_in_blocks) {
faecf84a
JH
909 printf(" Size is 0x%x Bytes = ",
910 net_boot_file_expected_size_in_blocks << 9);
1411157d 911 print_size(net_boot_file_expected_size_in_blocks << 9, "");
cbd8a35c 912 }
bb872dd9 913 printf("\nLoad address: 0x%lx\nLoading: *\b", image_load_addr);
cbd8a35c 914
bc0571fc 915 net_set_timeout_handler(nfs_timeout, nfs_timeout_handler);
049a95a7 916 net_set_udp_handler(nfs_handler);
cbd8a35c 917
68c76a3a
JH
918 nfs_timeout_count = 0;
919 nfs_state = STATE_PRCLOOKUP_PROG_MOUNT_REQ;
cbd8a35c 920
68c76a3a 921 /*nfs_our_port = 4096 + (get_ticks() % 3072);*/
cbd8a35c 922 /*FIX ME !!!*/
68c76a3a 923 nfs_our_port = 1000;
cbd8a35c
WD
924
925 /* zero out server ether in case the server ip has changed */
0adb5b76 926 memset(net_server_ethaddr, 0, 6);
cbd8a35c 927
68c76a3a 928 nfs_send();
cbd8a35c 929}
This page took 0.492369 seconds and 4 git commands to generate.