]> Git Repo - J-u-boot.git/blame - tools/env/fw_env.c
tools: env validate: pass values as 0-based array
[J-u-boot.git] / tools / env / fw_env.c
CommitLineData
6aff3115 1/*
0aef7bc7 2 * (C) Copyright 2000-2010
6aff3115
WD
3 * Wolfgang Denk, DENX Software Engineering, [email protected].
4 *
56086921
GL
5 * (C) Copyright 2008
6 * Guennadi Liakhovetski, DENX Software Engineering, [email protected].
7 *
1a459660 8 * SPDX-License-Identifier: GPL-2.0+
6aff3115
WD
9 */
10
26e355d1
JK
11#define _GNU_SOURCE
12
69bf2d2f 13#include <compiler.h>
6aff3115 14#include <errno.h>
30fd4fad 15#include <env_flags.h>
6aff3115 16#include <fcntl.h>
06134211 17#include <linux/stringify.h>
6aff3115
WD
18#include <stdio.h>
19#include <stdlib.h>
20#include <stddef.h>
21#include <string.h>
22#include <sys/types.h>
23#include <sys/ioctl.h>
24#include <sys/stat.h>
25#include <unistd.h>
6aff3115 26
6de66b35 27#ifdef MTD_OLD
1711f3bd 28# include <stdint.h>
6de66b35
MK
29# include <linux/mtd/mtd.h>
30#else
c83d7ca4 31# define __user /* nothing */
6de66b35
MK
32# include <mtd/mtd-user.h>
33#endif
34
35#include "fw_env.h"
6aff3115 36
a8a752c0
MV
37#include <aes.h>
38
39#define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
40
bd7b26f8 41#define WHITESPACE(c) ((c == '\t') || (c == ' '))
6aff3115 42
56086921
GL
43#define min(x, y) ({ \
44 typeof(x) _min1 = (x); \
45 typeof(y) _min2 = (y); \
46 (void) (&_min1 == &_min2); \
47 _min1 < _min2 ? _min1 : _min2; })
48
49struct envdev_s {
229695fe 50 const char *devname; /* Device name */
4a6fd34b
WD
51 ulong devoff; /* Device offset */
52 ulong env_size; /* environment size */
53 ulong erase_size; /* device erase size */
56086921
GL
54 ulong env_sectors; /* number of environment sectors */
55 uint8_t mtd_type; /* type of the MTD device */
56};
6aff3115 57
56086921
GL
58static struct envdev_s envdevices[2] =
59{
60 {
61 .mtd_type = MTD_ABSENT,
62 }, {
63 .mtd_type = MTD_ABSENT,
64 },
65};
66static int dev_current;
6aff3115
WD
67
68#define DEVNAME(i) envdevices[(i)].devname
d0fb80c3 69#define DEVOFFSET(i) envdevices[(i)].devoff
6aff3115
WD
70#define ENVSIZE(i) envdevices[(i)].env_size
71#define DEVESIZE(i) envdevices[(i)].erase_size
56086921
GL
72#define ENVSECTORS(i) envdevices[(i)].env_sectors
73#define DEVTYPE(i) envdevices[(i)].mtd_type
6aff3115 74
497f2053 75#define CUR_ENVSIZE ENVSIZE(dev_current)
6aff3115 76
d0fb80c3 77#define ENV_SIZE getenvsize()
6aff3115 78
56086921
GL
79struct env_image_single {
80 uint32_t crc; /* CRC32 over data bytes */
81 char data[];
82};
6aff3115 83
56086921
GL
84struct env_image_redundant {
85 uint32_t crc; /* CRC32 over data bytes */
86 unsigned char flags; /* active or obsolete */
87 char data[];
88};
89
90enum flag_scheme {
91 FLAG_NONE,
92 FLAG_BOOLEAN,
93 FLAG_INCREMENTAL,
94};
95
96struct environment {
97 void *image;
98 uint32_t *crc;
99 unsigned char *flags;
100 char *data;
101 enum flag_scheme flag_scheme;
102};
103
104static struct environment environment = {
105 .flag_scheme = FLAG_NONE,
106};
6aff3115 107
a8a752c0
MV
108/* Is AES encryption used? */
109static int aes_flag;
110static uint8_t aes_key[AES_KEY_LENGTH] = { 0 };
111static int env_aes_cbc_crypt(char *data, const int enc);
112
d0fb80c3
WD
113static int HaveRedundEnv = 0;
114
6de66b35 115static unsigned char active_flag = 1;
56086921 116/* obsolete_flag must be 0 to efficiently set it on NOR flash without erasing */
6de66b35 117static unsigned char obsolete_flag = 0;
d0fb80c3 118
ddd8418f
JH
119#define DEFAULT_ENV_INSTANCE_STATIC
120#include <env_default.h>
6aff3115 121
4a6fd34b 122static int flash_io (int mode);
6de66b35 123static char *envmatch (char * s1, char * s2);
4a6fd34b
WD
124static int parse_config (void);
125
d0fb80c3 126#if defined(CONFIG_FILE)
4a6fd34b 127static int get_config (char *);
9884f44c 128static char *config_file = CONFIG_FILE;
d0fb80c3 129#endif
4a6fd34b 130static inline ulong getenvsize (void)
d0fb80c3 131{
ea19527c 132 ulong rc = CUR_ENVSIZE - sizeof(uint32_t);
4a6fd34b 133
d0fb80c3 134 if (HaveRedundEnv)
4a6fd34b 135 rc -= sizeof (char);
a8a752c0
MV
136
137 if (aes_flag)
138 rc &= ~(AES_KEY_LENGTH - 1);
139
d0fb80c3
WD
140 return rc;
141}
6aff3115 142
bd7b26f8
SB
143static char *fw_string_blank(char *s, int noblank)
144{
145 int i;
146 int len = strlen(s);
147
148 for (i = 0; i < len; i++, s++) {
149 if ((noblank && !WHITESPACE(*s)) ||
150 (!noblank && WHITESPACE(*s)))
151 break;
152 }
153 if (i == len)
154 return NULL;
155
156 return s;
157}
158
6aff3115
WD
159/*
160 * Search the environment for a variable.
161 * Return the value, if found, or NULL, if not found.
162 */
6de66b35 163char *fw_getenv (char *name)
6aff3115 164{
6de66b35 165 char *env, *nxt;
6aff3115 166
4a6fd34b 167 for (env = environment.data; *env; env = nxt + 1) {
6de66b35 168 char *val;
6aff3115 169
4a6fd34b 170 for (nxt = env; *nxt; ++nxt) {
6aff3115
WD
171 if (nxt >= &environment.data[ENV_SIZE]) {
172 fprintf (stderr, "## Error: "
173 "environment not terminated\n");
56086921 174 return NULL;
6aff3115
WD
175 }
176 }
4a6fd34b 177 val = envmatch (name, env);
6aff3115
WD
178 if (!val)
179 continue;
56086921 180 return val;
6aff3115 181 }
56086921 182 return NULL;
6aff3115
WD
183}
184
267541f7
JH
185/*
186 * Search the default environment for a variable.
187 * Return the value, if found, or NULL, if not found.
188 */
189char *fw_getdefenv(char *name)
190{
191 char *env, *nxt;
192
193 for (env = default_environment; *env; env = nxt + 1) {
194 char *val;
195
196 for (nxt = env; *nxt; ++nxt) {
197 if (nxt >= &default_environment[ENV_SIZE]) {
198 fprintf(stderr, "## Error: "
199 "default environment not terminated\n");
200 return NULL;
201 }
202 }
203 val = envmatch(name, env);
204 if (!val)
205 continue;
206 return val;
207 }
208 return NULL;
209}
210
a8a752c0
MV
211static int parse_aes_key(char *key)
212{
213 char tmp[5] = { '0', 'x', 0, 0, 0 };
214 unsigned long ul;
215 int i;
216
217 if (strnlen(key, 64) != 32) {
218 fprintf(stderr,
219 "## Error: '-a' option requires 16-byte AES key\n");
220 return -1;
221 }
222
223 for (i = 0; i < 16; i++) {
224 tmp[2] = key[0];
225 tmp[3] = key[1];
226 errno = 0;
227 ul = strtoul(tmp, NULL, 16);
228 if (errno) {
229 fprintf(stderr,
230 "## Error: '-a' option requires valid AES key\n");
231 return -1;
232 }
233 aes_key[i] = ul & 0xff;
234 key += 2;
235 }
236 aes_flag = 1;
237
238 return 0;
239}
240
6aff3115
WD
241/*
242 * Print the current definition of one, or more, or all
243 * environment variables
244 */
bc11756d 245int fw_printenv (int argc, char *argv[])
6aff3115 246{
6de66b35 247 char *env, *nxt;
6aff3115 248 int i, n_flag;
bc11756d 249 int rc = 0;
6aff3115 250
9884f44c
MH
251#ifdef CONFIG_FILE
252 if (argc >= 2 && strcmp(argv[1], "-c") == 0) {
253 if (argc < 3) {
254 fprintf(stderr,
255 "## Error: '-c' option requires the config file to use\n");
256 return -1;
257 }
258 config_file = argv[2];
259 argv += 2;
260 argc -= 2;
261 }
262#endif
263
a8a752c0
MV
264 if (argc >= 2 && strcmp(argv[1], "-a") == 0) {
265 if (argc < 3) {
266 fprintf(stderr,
267 "## Error: '-a' option requires AES key\n");
268 return -1;
269 }
270 rc = parse_aes_key(argv[2]);
271 if (rc)
272 return rc;
273 argv += 2;
274 argc -= 2;
275 }
276
bd7b26f8 277 if (fw_env_open())
56086921 278 return -1;
6aff3115 279
4a6fd34b
WD
280 if (argc == 1) { /* Print all env variables */
281 for (env = environment.data; *env; env = nxt + 1) {
282 for (nxt = env; *nxt; ++nxt) {
6aff3115
WD
283 if (nxt >= &environment.data[ENV_SIZE]) {
284 fprintf (stderr, "## Error: "
285 "environment not terminated\n");
56086921 286 return -1;
6aff3115
WD
287 }
288 }
289
4a6fd34b 290 printf ("%s\n", env);
6aff3115 291 }
56086921 292 return 0;
6aff3115
WD
293 }
294
4a6fd34b 295 if (strcmp (argv[1], "-n") == 0) {
6aff3115
WD
296 n_flag = 1;
297 ++argv;
298 --argc;
299 if (argc != 2) {
300 fprintf (stderr, "## Error: "
301 "`-n' option requires exactly one argument\n");
56086921 302 return -1;
6aff3115
WD
303 }
304 } else {
305 n_flag = 0;
306 }
307
4a6fd34b 308 for (i = 1; i < argc; ++i) { /* print single env variables */
6de66b35
MK
309 char *name = argv[i];
310 char *val = NULL;
6aff3115 311
4a6fd34b 312 for (env = environment.data; *env; env = nxt + 1) {
6aff3115 313
4a6fd34b 314 for (nxt = env; *nxt; ++nxt) {
6aff3115
WD
315 if (nxt >= &environment.data[ENV_SIZE]) {
316 fprintf (stderr, "## Error: "
317 "environment not terminated\n");
56086921 318 return -1;
6aff3115
WD
319 }
320 }
4a6fd34b 321 val = envmatch (name, env);
6aff3115
WD
322 if (val) {
323 if (!n_flag) {
324 fputs (name, stdout);
4a6fd34b 325 putc ('=', stdout);
6aff3115 326 }
4a6fd34b 327 puts (val);
6aff3115
WD
328 break;
329 }
330 }
bc11756d 331 if (!val) {
4a6fd34b 332 fprintf (stderr, "## Error: \"%s\" not defined\n", name);
bc11756d
GE
333 rc = -1;
334 }
6aff3115 335 }
bc11756d 336
56086921 337 return rc;
6aff3115
WD
338}
339
bd7b26f8 340int fw_env_close(void)
6aff3115 341{
a8a752c0
MV
342 int ret;
343 if (aes_flag) {
344 ret = env_aes_cbc_crypt(environment.data, 1);
345 if (ret) {
346 fprintf(stderr,
347 "Error: can't encrypt env for flash\n");
348 return ret;
349 }
350 }
351
bd7b26f8
SB
352 /*
353 * Update CRC
354 */
355 *environment.crc = crc32(0, (uint8_t *) environment.data, ENV_SIZE);
6aff3115 356
bd7b26f8
SB
357 /* write environment back to flash */
358 if (flash_io(O_RDWR)) {
359 fprintf(stderr,
360 "Error: can't write fw_env to flash\n");
361 return -1;
6aff3115
WD
362 }
363
bd7b26f8
SB
364 return 0;
365}
6aff3115 366
bd7b26f8
SB
367
368/*
369 * Set/Clear a single variable in the environment.
370 * This is called in sequence to update the environment
371 * in RAM without updating the copy in flash after each set
372 */
373int fw_env_write(char *name, char *value)
374{
375 int len;
376 char *env, *nxt;
377 char *oldval = NULL;
267541f7 378 int deleting, creating, overwriting;
6aff3115
WD
379
380 /*
381 * search if variable with this name already exists
382 */
4a6fd34b
WD
383 for (nxt = env = environment.data; *env; env = nxt + 1) {
384 for (nxt = env; *nxt; ++nxt) {
6aff3115 385 if (nxt >= &environment.data[ENV_SIZE]) {
bd7b26f8 386 fprintf(stderr, "## Error: "
6aff3115 387 "environment not terminated\n");
56086921
GL
388 errno = EINVAL;
389 return -1;
6aff3115
WD
390 }
391 }
4a6fd34b 392 if ((oldval = envmatch (name, env)) != NULL)
6aff3115
WD
393 break;
394 }
395
267541f7
JH
396 deleting = (oldval && !(value && strlen(value)));
397 creating = (!oldval && (value && strlen(value)));
398 overwriting = (oldval && (value && strlen(value)));
399
400 /* check for permission */
401 if (deleting) {
402 if (env_flags_validate_varaccess(name,
403 ENV_FLAGS_VARACCESS_PREVENT_DELETE)) {
404 printf("Can't delete \"%s\"\n", name);
405 errno = EROFS;
406 return -1;
407 }
408 } else if (overwriting) {
409 if (env_flags_validate_varaccess(name,
410 ENV_FLAGS_VARACCESS_PREVENT_OVERWR)) {
411 printf("Can't overwrite \"%s\"\n", name);
412 errno = EROFS;
413 return -1;
414 } else if (env_flags_validate_varaccess(name,
415 ENV_FLAGS_VARACCESS_PREVENT_NONDEF_OVERWR)) {
416 const char *defval = fw_getdefenv(name);
417
418 if (defval == NULL)
419 defval = "";
420 if (strcmp(oldval, defval)
421 != 0) {
422 printf("Can't overwrite \"%s\"\n", name);
423 errno = EROFS;
424 return -1;
425 }
426 }
427 } else if (creating) {
428 if (env_flags_validate_varaccess(name,
429 ENV_FLAGS_VARACCESS_PREVENT_CREATE)) {
430 printf("Can't create \"%s\"\n", name);
431 errno = EROFS;
432 return -1;
433 }
434 } else
435 /* Nothing to do */
436 return 0;
437
438 if (deleting || overwriting) {
6aff3115
WD
439 if (*++nxt == '\0') {
440 *env = '\0';
441 } else {
442 for (;;) {
443 *env = *nxt++;
444 if ((*env == '\0') && (*nxt == '\0'))
445 break;
446 ++env;
447 }
448 }
449 *++env = '\0';
450 }
451
452 /* Delete only ? */
bd7b26f8
SB
453 if (!value || !strlen(value))
454 return 0;
6aff3115
WD
455
456 /*
457 * Append new definition at the end
458 */
4a6fd34b 459 for (env = environment.data; *env || *(env + 1); ++env);
6aff3115
WD
460 if (env > environment.data)
461 ++env;
462 /*
463 * Overflow when:
497f2053 464 * "name" + "=" + "val" +"\0\0" > CUR_ENVSIZE - (env-environment)
6aff3115 465 */
4a6fd34b 466 len = strlen (name) + 2;
6aff3115 467 /* add '=' for first arg, ' ' for all others */
bd7b26f8
SB
468 len += strlen(value) + 1;
469
4a6fd34b 470 if (len > (&environment.data[ENV_SIZE] - env)) {
6aff3115
WD
471 fprintf (stderr,
472 "Error: environment overflow, \"%s\" deleted\n",
473 name);
56086921 474 return -1;
6aff3115 475 }
bd7b26f8 476
6aff3115
WD
477 while ((*env = *name++) != '\0')
478 env++;
bd7b26f8
SB
479 *env = '=';
480 while ((*++env = *value++) != '\0')
481 ;
482
483 /* end is marked with double '\0' */
484 *++env = '\0';
485
486 return 0;
487}
488
489/*
490 * Deletes or sets environment variables. Returns -1 and sets errno error codes:
491 * 0 - OK
492 * EINVAL - need at least 1 argument
493 * EROFS - certain variables ("ethaddr", "serial#") cannot be
494 * modified or deleted
495 *
496 */
497int fw_setenv(int argc, char *argv[])
498{
a8a752c0 499 int i, rc;
3779c8e3 500 size_t len;
167f5258 501 char *name, **valv;
bd7b26f8 502 char *value = NULL;
167f5258 503 int valc;
bd7b26f8 504
9884f44c
MH
505#ifdef CONFIG_FILE
506 if (argc >= 2 && strcmp(argv[1], "-c") == 0) {
507 if (argc < 3) {
508 fprintf(stderr,
509 "## Error: '-c' option requires the config file to use\n");
510 return -1;
511 }
512 config_file = argv[2];
513 argv += 2;
514 argc -= 2;
515 }
516#endif
517
bd7b26f8
SB
518 if (argc < 2) {
519 errno = EINVAL;
520 return -1;
521 }
522
a8a752c0
MV
523 if (strcmp(argv[1], "-a") == 0) {
524 if (argc < 3) {
525 fprintf(stderr,
526 "## Error: '-a' option requires AES key\n");
527 return -1;
528 }
529 rc = parse_aes_key(argv[2]);
530 if (rc)
531 return rc;
532 argv += 2;
533 argc -= 2;
534 }
535
536 if (argc < 2) {
537 errno = EINVAL;
538 return -1;
539 }
540
bd7b26f8
SB
541 if (fw_env_open()) {
542 fprintf(stderr, "Error: environment not initialized\n");
543 return -1;
544 }
545
546 name = argv[1];
167f5258
AF
547 valv = argv + 2;
548 valc = argc - 2;
bd7b26f8 549
167f5258 550 if (env_flags_validate_env_set_params(name, valv, valc) < 0)
30fd4fad
JH
551 return 1;
552
62a34a04 553 len = 0;
167f5258
AF
554 for (i = 0; i < valc; ++i) {
555 char *val = valv[i];
62a34a04
JH
556 size_t val_len = strlen(val);
557
ce2f5800
JH
558 if (value)
559 value[len - 1] = ' ';
62a34a04 560 value = realloc(value, len + val_len + 1);
bd7b26f8 561 if (!value) {
62a34a04 562 fprintf(stderr,
8603b69b 563 "Cannot malloc %zu bytes: %s\n",
62a34a04
JH
564 len, strerror(errno));
565 return -1;
bd7b26f8 566 }
62a34a04
JH
567
568 memcpy(value + len, val, val_len);
569 len += val_len;
ce2f5800 570 value[len++] = '\0';
6aff3115
WD
571 }
572
bd7b26f8 573 fw_env_write(name, value);
6aff3115 574
62a34a04 575 free(value);
6aff3115 576
bd7b26f8
SB
577 return fw_env_close();
578}
6aff3115 579
bd7b26f8
SB
580/*
581 * Parse a file and configure the u-boot variables.
582 * The script file has a very simple format, as follows:
583 *
584 * Each line has a couple with name, value:
585 * <white spaces>variable_name<white spaces>variable_value
586 *
587 * Both variable_name and variable_value are interpreted as strings.
588 * Any character after <white spaces> and before ending \r\n is interpreted
589 * as variable's value (no comment allowed on these lines !)
590 *
591 * Comments are allowed if the first character in the line is #
592 *
593 * Returns -1 and sets errno error codes:
594 * 0 - OK
595 * -1 - Error
596 */
597int fw_parse_script(char *fname)
598{
599 FILE *fp;
600 char dump[1024]; /* Maximum line length in the file */
601 char *name;
602 char *val;
603 int lineno = 0;
604 int len;
605 int ret = 0;
606
607 if (fw_env_open()) {
608 fprintf(stderr, "Error: environment not initialized\n");
56086921 609 return -1;
6aff3115
WD
610 }
611
bd7b26f8
SB
612 if (strcmp(fname, "-") == 0)
613 fp = stdin;
614 else {
615 fp = fopen(fname, "r");
616 if (fp == NULL) {
617 fprintf(stderr, "I cannot open %s for reading\n",
618 fname);
619 return -1;
620 }
621 }
622
623 while (fgets(dump, sizeof(dump), fp)) {
624 lineno++;
625 len = strlen(dump);
626
627 /*
628 * Read a whole line from the file. If the line is too long
629 * or is not terminated, reports an error and exit.
630 */
631 if (dump[len - 1] != '\n') {
632 fprintf(stderr,
633 "Line %d not corrected terminated or too long\n",
634 lineno);
635 ret = -1;
636 break;
637 }
638
639 /* Drop ending line feed / carriage return */
640 while (len > 0 && (dump[len - 1] == '\n' ||
641 dump[len - 1] == '\r')) {
642 dump[len - 1] = '\0';
643 len--;
644 }
645
646 /* Skip comment or empty lines */
647 if ((len == 0) || dump[0] == '#')
648 continue;
649
650 /*
651 * Search for variable's name,
652 * remove leading whitespaces
653 */
654 name = fw_string_blank(dump, 1);
655 if (!name)
656 continue;
657
658 /* The first white space is the end of variable name */
659 val = fw_string_blank(name, 0);
660 len = strlen(name);
661 if (val) {
662 *val++ = '\0';
663 if ((val - name) < len)
664 val = fw_string_blank(val, 1);
665 else
666 val = NULL;
667 }
668
669#ifdef DEBUG
670 fprintf(stderr, "Setting %s : %s\n",
671 name, val ? val : " removed");
672#endif
673
30fd4fad
JH
674 if (env_flags_validate_type(name, val) < 0) {
675 ret = -1;
676 break;
677 }
678
bd7b26f8
SB
679 /*
680 * If there is an error setting a variable,
681 * try to save the environment and returns an error
682 */
683 if (fw_env_write(name, val)) {
684 fprintf(stderr,
685 "fw_env_write returns with error : %s\n",
686 strerror(errno));
687 ret = -1;
688 break;
689 }
690
691 }
692
693 /* Close file if not stdin */
694 if (strcmp(fname, "-") != 0)
695 fclose(fp);
696
697 ret |= fw_env_close();
698
699 return ret;
700
6aff3115
WD
701}
702
56086921
GL
703/*
704 * Test for bad block on NAND, just returns 0 on NOR, on NAND:
705 * 0 - block is good
706 * > 0 - block is bad
707 * < 0 - failed to test
708 */
709static int flash_bad_block (int fd, uint8_t mtd_type, loff_t *blockstart)
6aff3115 710{
56086921
GL
711 if (mtd_type == MTD_NANDFLASH) {
712 int badblock = ioctl (fd, MEMGETBADBLOCK, blockstart);
6aff3115 713
56086921
GL
714 if (badblock < 0) {
715 perror ("Cannot read bad block mark");
716 return badblock;
717 }
718
719 if (badblock) {
720#ifdef DEBUG
721 fprintf (stderr, "Bad block at 0x%llx, "
722 "skipping\n", *blockstart);
723#endif
724 return badblock;
725 }
6aff3115
WD
726 }
727
56086921
GL
728 return 0;
729}
730
731/*
732 * Read data from flash at an offset into a provided buffer. On NAND it skips
733 * bad blocks but makes sure it stays within ENVSECTORS (dev) starting from
734 * the DEVOFFSET (dev) block. On NOR the loop is only run once.
735 */
736static int flash_read_buf (int dev, int fd, void *buf, size_t count,
737 off_t offset, uint8_t mtd_type)
738{
739 size_t blocklen; /* erase / write length - one block on NAND,
740 0 on NOR */
741 size_t processed = 0; /* progress counter */
742 size_t readlen = count; /* current read length */
743 off_t top_of_range; /* end of the last block we may use */
744 off_t block_seek; /* offset inside the current block to the start
745 of the data */
746 loff_t blockstart; /* running start of the current block -
747 MEMGETBADBLOCK needs 64 bits */
748 int rc;
749
9eeaa8e6 750 blockstart = (offset / DEVESIZE (dev)) * DEVESIZE (dev);
56086921
GL
751
752 /* Offset inside a block */
753 block_seek = offset - blockstart;
754
755 if (mtd_type == MTD_NANDFLASH) {
756 /*
757 * NAND: calculate which blocks we are reading. We have
758 * to read one block at a time to skip bad blocks.
759 */
760 blocklen = DEVESIZE (dev);
761
762 /*
763 * To calculate the top of the range, we have to use the
764 * global DEVOFFSET (dev), which can be different from offset
765 */
9eeaa8e6
RB
766 top_of_range = ((DEVOFFSET(dev) / blocklen) +
767 ENVSECTORS (dev)) * blocklen;
56086921
GL
768
769 /* Limit to one block for the first read */
770 if (readlen > blocklen - block_seek)
771 readlen = blocklen - block_seek;
772 } else {
773 blocklen = 0;
774 top_of_range = offset + count;
d0fb80c3 775 }
6aff3115 776
56086921
GL
777 /* This only runs once on NOR flash */
778 while (processed < count) {
779 rc = flash_bad_block (fd, mtd_type, &blockstart);
780 if (rc < 0) /* block test failed */
781 return -1;
6aff3115 782
56086921
GL
783 if (blockstart + block_seek + readlen > top_of_range) {
784 /* End of range is reached */
785 fprintf (stderr,
786 "Too few good blocks within range\n");
787 return -1;
d0fb80c3
WD
788 }
789
56086921
GL
790 if (rc) { /* block is bad */
791 blockstart += blocklen;
792 continue;
6aff3115
WD
793 }
794
56086921
GL
795 /*
796 * If a block is bad, we retry in the next block at the same
797 * offset - see common/env_nand.c::writeenv()
798 */
799 lseek (fd, blockstart + block_seek, SEEK_SET);
6aff3115 800
56086921
GL
801 rc = read (fd, buf + processed, readlen);
802 if (rc != readlen) {
803 fprintf (stderr, "Read error on %s: %s\n",
804 DEVNAME (dev), strerror (errno));
805 return -1;
6aff3115 806 }
56086921 807#ifdef DEBUG
74620e1c
JH
808 fprintf(stderr, "Read 0x%x bytes at 0x%llx on %s\n",
809 rc, blockstart + block_seek, DEVNAME(dev));
56086921
GL
810#endif
811 processed += readlen;
812 readlen = min (blocklen, count - processed);
813 block_seek = 0;
814 blockstart += blocklen;
815 }
816
817 return processed;
818}
819
820/*
9eeaa8e6
RB
821 * Write count bytes at offset, but stay within ENVSECTORS (dev) sectors of
822 * DEVOFFSET (dev). Similar to the read case above, on NOR and dataflash we
823 * erase and write the whole data at once.
56086921
GL
824 */
825static int flash_write_buf (int dev, int fd, void *buf, size_t count,
826 off_t offset, uint8_t mtd_type)
827{
828 void *data;
829 struct erase_info_user erase;
830 size_t blocklen; /* length of NAND block / NOR erase sector */
831 size_t erase_len; /* whole area that can be erased - may include
832 bad blocks */
833 size_t erasesize; /* erase / write length - one block on NAND,
834 whole area on NOR */
835 size_t processed = 0; /* progress counter */
9eeaa8e6 836 size_t write_total; /* total size to actually write - excluding
56086921
GL
837 bad blocks */
838 off_t erase_offset; /* offset to the first erase block (aligned)
839 below offset */
840 off_t block_seek; /* offset inside the erase block to the start
841 of the data */
842 off_t top_of_range; /* end of the last block we may use */
843 loff_t blockstart; /* running start of the current block -
844 MEMGETBADBLOCK needs 64 bits */
845 int rc;
846
e387efbd
OM
847 /*
848 * For mtd devices only offset and size of the environment do matter
849 */
850 if (mtd_type == MTD_ABSENT) {
851 blocklen = count;
852 top_of_range = offset + count;
853 erase_len = blocklen;
854 blockstart = offset;
855 block_seek = 0;
856 write_total = blocklen;
857 } else {
858 blocklen = DEVESIZE(dev);
56086921 859
e387efbd
OM
860 top_of_range = ((DEVOFFSET(dev) / blocklen) +
861 ENVSECTORS(dev)) * blocklen;
6aff3115 862
e387efbd 863 erase_offset = (offset / blocklen) * blocklen;
6aff3115 864
e387efbd
OM
865 /* Maximum area we may use */
866 erase_len = top_of_range - erase_offset;
56086921 867
e387efbd
OM
868 blockstart = erase_offset;
869 /* Offset inside a block */
870 block_seek = offset - erase_offset;
56086921 871
e387efbd
OM
872 /*
873 * Data size we actually write: from the start of the block
874 * to the start of the data, then count bytes of data, and
875 * to the end of the block
876 */
877 write_total = ((block_seek + count + blocklen - 1) /
878 blocklen) * blocklen;
879 }
56086921
GL
880
881 /*
882 * Support data anywhere within erase sectors: read out the complete
883 * area to be erased, replace the environment image, write the whole
884 * block back again.
885 */
886 if (write_total > count) {
887 data = malloc (erase_len);
888 if (!data) {
d0fb80c3 889 fprintf (stderr,
8603b69b 890 "Cannot malloc %zu bytes: %s\n",
56086921
GL
891 erase_len, strerror (errno));
892 return -1;
d0fb80c3 893 }
56086921
GL
894
895 rc = flash_read_buf (dev, fd, data, write_total, erase_offset,
896 mtd_type);
897 if (write_total != rc)
898 return -1;
899
74620e1c
JH
900#ifdef DEBUG
901 fprintf(stderr, "Preserving data ");
902 if (block_seek != 0)
903 fprintf(stderr, "0x%x - 0x%lx", 0, block_seek - 1);
904 if (block_seek + count != write_total) {
905 if (block_seek != 0)
906 fprintf(stderr, " and ");
907 fprintf(stderr, "0x%lx - 0x%x",
908 block_seek + count, write_total - 1);
909 }
910 fprintf(stderr, "\n");
911#endif
56086921
GL
912 /* Overwrite the old environment */
913 memcpy (data + block_seek, buf, count);
914 } else {
915 /*
916 * We get here, iff offset is block-aligned and count is a
917 * multiple of blocklen - see write_total calculation above
918 */
919 data = buf;
920 }
921
922 if (mtd_type == MTD_NANDFLASH) {
923 /*
924 * NAND: calculate which blocks we are writing. We have
925 * to write one block at a time to skip bad blocks.
926 */
927 erasesize = blocklen;
928 } else {
929 erasesize = erase_len;
930 }
931
932 erase.length = erasesize;
933
9eeaa8e6 934 /* This only runs once on NOR flash and SPI-dataflash */
56086921
GL
935 while (processed < write_total) {
936 rc = flash_bad_block (fd, mtd_type, &blockstart);
937 if (rc < 0) /* block test failed */
938 return rc;
939
940 if (blockstart + erasesize > top_of_range) {
941 fprintf (stderr, "End of range reached, aborting\n");
942 return -1;
6aff3115 943 }
56086921
GL
944
945 if (rc) { /* block is bad */
946 blockstart += blocklen;
947 continue;
948 }
949
e387efbd
OM
950 if (mtd_type != MTD_ABSENT) {
951 erase.start = blockstart;
952 ioctl(fd, MEMUNLOCK, &erase);
953 /* These do not need an explicit erase cycle */
954 if (mtd_type != MTD_DATAFLASH)
955 if (ioctl(fd, MEMERASE, &erase) != 0) {
956 fprintf(stderr,
957 "MTD erase error on %s: %s\n",
958 DEVNAME(dev), strerror(errno));
959 return -1;
960 }
961 }
56086921
GL
962
963 if (lseek (fd, blockstart, SEEK_SET) == -1) {
6aff3115 964 fprintf (stderr,
56086921
GL
965 "Seek error on %s: %s\n",
966 DEVNAME (dev), strerror (errno));
967 return -1;
6aff3115 968 }
56086921
GL
969
970#ifdef DEBUG
74620e1c
JH
971 fprintf(stderr, "Write 0x%x bytes at 0x%llx\n", erasesize,
972 blockstart);
56086921
GL
973#endif
974 if (write (fd, data + processed, erasesize) != erasesize) {
975 fprintf (stderr, "Write error on %s: %s\n",
976 DEVNAME (dev), strerror (errno));
977 return -1;
6aff3115 978 }
56086921 979
e387efbd
OM
980 if (mtd_type != MTD_ABSENT)
981 ioctl(fd, MEMLOCK, &erase);
56086921 982
4b774ff1 983 processed += erasesize;
56086921 984 block_seek = 0;
4b774ff1 985 blockstart += erasesize;
56086921
GL
986 }
987
988 if (write_total > count)
989 free (data);
990
991 return processed;
992}
993
994/*
995 * Set obsolete flag at offset - NOR flash only
996 */
997static int flash_flag_obsolete (int dev, int fd, off_t offset)
998{
999 int rc;
0aef7bc7 1000 struct erase_info_user erase;
56086921 1001
0aef7bc7
DZ
1002 erase.start = DEVOFFSET (dev);
1003 erase.length = DEVESIZE (dev);
56086921
GL
1004 /* This relies on the fact, that obsolete_flag == 0 */
1005 rc = lseek (fd, offset, SEEK_SET);
1006 if (rc < 0) {
1007 fprintf (stderr, "Cannot seek to set the flag on %s \n",
1008 DEVNAME (dev));
1009 return rc;
1010 }
0aef7bc7 1011 ioctl (fd, MEMUNLOCK, &erase);
56086921 1012 rc = write (fd, &obsolete_flag, sizeof (obsolete_flag));
0aef7bc7 1013 ioctl (fd, MEMLOCK, &erase);
56086921
GL
1014 if (rc < 0)
1015 perror ("Could not set obsolete flag");
1016
1017 return rc;
1018}
1019
a8a752c0
MV
1020/* Encrypt or decrypt the environment before writing or reading it. */
1021static int env_aes_cbc_crypt(char *payload, const int enc)
1022{
1023 uint8_t *data = (uint8_t *)payload;
1024 const int len = getenvsize();
1025 uint8_t key_exp[AES_EXPAND_KEY_LENGTH];
1026 uint32_t aes_blocks;
1027
1028 /* First we expand the key. */
1029 aes_expand_key(aes_key, key_exp);
1030
1031 /* Calculate the number of AES blocks to encrypt. */
1032 aes_blocks = DIV_ROUND_UP(len, AES_KEY_LENGTH);
1033
1034 if (enc)
1035 aes_cbc_encrypt_blocks(key_exp, data, data, aes_blocks);
1036 else
1037 aes_cbc_decrypt_blocks(key_exp, data, data, aes_blocks);
1038
1039 return 0;
1040}
1041
56086921
GL
1042static int flash_write (int fd_current, int fd_target, int dev_target)
1043{
1044 int rc;
1045
1046 switch (environment.flag_scheme) {
1047 case FLAG_NONE:
1048 break;
1049 case FLAG_INCREMENTAL:
1050 (*environment.flags)++;
1051 break;
1052 case FLAG_BOOLEAN:
1053 *environment.flags = active_flag;
1054 break;
1055 default:
1056 fprintf (stderr, "Unimplemented flash scheme %u \n",
1057 environment.flag_scheme);
1058 return -1;
1059 }
1060
1061#ifdef DEBUG
74620e1c 1062 fprintf(stderr, "Writing new environment at 0x%lx on %s\n",
56086921
GL
1063 DEVOFFSET (dev_target), DEVNAME (dev_target));
1064#endif
a8a752c0 1065
497f2053
JH
1066 rc = flash_write_buf(dev_target, fd_target, environment.image,
1067 CUR_ENVSIZE, DEVOFFSET(dev_target),
56086921
GL
1068 DEVTYPE(dev_target));
1069 if (rc < 0)
1070 return rc;
1071
1072 if (environment.flag_scheme == FLAG_BOOLEAN) {
1073 /* Have to set obsolete flag */
1074 off_t offset = DEVOFFSET (dev_current) +
1075 offsetof (struct env_image_redundant, flags);
1076#ifdef DEBUG
74620e1c
JH
1077 fprintf(stderr,
1078 "Setting obsolete flag in environment at 0x%lx on %s\n",
56086921
GL
1079 DEVOFFSET (dev_current), DEVNAME (dev_current));
1080#endif
1081 flash_flag_obsolete (dev_current, fd_current, offset);
1082 }
1083
1084 return 0;
1085}
1086
1087static int flash_read (int fd)
1088{
1089 struct mtd_info_user mtdinfo;
f1932b78 1090 struct stat st;
56086921
GL
1091 int rc;
1092
f1932b78 1093 rc = fstat(fd, &st);
56086921 1094 if (rc < 0) {
f1932b78
LR
1095 fprintf(stderr, "Cannot stat the file %s\n",
1096 DEVNAME(dev_current));
56086921
GL
1097 return -1;
1098 }
1099
f1932b78
LR
1100 if (S_ISCHR(st.st_mode)) {
1101 rc = ioctl(fd, MEMGETINFO, &mtdinfo);
1102 if (rc < 0) {
1103 fprintf(stderr, "Cannot get MTD information for %s\n",
1104 DEVNAME(dev_current));
1105 return -1;
1106 }
1107 if (mtdinfo.type != MTD_NORFLASH &&
1108 mtdinfo.type != MTD_NANDFLASH &&
2b74433f
JH
1109 mtdinfo.type != MTD_DATAFLASH &&
1110 mtdinfo.type != MTD_UBIVOLUME) {
f1932b78
LR
1111 fprintf (stderr, "Unsupported flash type %u on %s\n",
1112 mtdinfo.type, DEVNAME(dev_current));
1113 return -1;
1114 }
1115 } else {
1116 memset(&mtdinfo, 0, sizeof(mtdinfo));
1117 mtdinfo.type = MTD_ABSENT;
56086921
GL
1118 }
1119
1120 DEVTYPE(dev_current) = mtdinfo.type;
1121
497f2053 1122 rc = flash_read_buf(dev_current, fd, environment.image, CUR_ENVSIZE,
56086921 1123 DEVOFFSET (dev_current), mtdinfo.type);
a8a752c0
MV
1124 if (rc != CUR_ENVSIZE)
1125 return -1;
56086921 1126
a8a752c0 1127 return 0;
56086921
GL
1128}
1129
1130static int flash_io (int mode)
1131{
1132 int fd_current, fd_target, rc, dev_target;
1133
1134 /* dev_current: fd_current, erase_current */
1135 fd_current = open (DEVNAME (dev_current), mode);
1136 if (fd_current < 0) {
1137 fprintf (stderr,
1138 "Can't open %s: %s\n",
1139 DEVNAME (dev_current), strerror (errno));
1140 return -1;
1141 }
1142
1143 if (mode == O_RDWR) {
d0fb80c3 1144 if (HaveRedundEnv) {
56086921
GL
1145 /* switch to next partition for writing */
1146 dev_target = !dev_current;
1147 /* dev_target: fd_target, erase_target */
1148 fd_target = open (DEVNAME (dev_target), mode);
1149 if (fd_target < 0) {
d0fb80c3 1150 fprintf (stderr,
56086921
GL
1151 "Can't open %s: %s\n",
1152 DEVNAME (dev_target),
1153 strerror (errno));
1154 rc = -1;
1155 goto exit;
d0fb80c3 1156 }
56086921
GL
1157 } else {
1158 dev_target = dev_current;
1159 fd_target = fd_current;
6aff3115 1160 }
56086921
GL
1161
1162 rc = flash_write (fd_current, fd_target, dev_target);
1163
d0fb80c3 1164 if (HaveRedundEnv) {
56086921 1165 if (close (fd_target)) {
d0fb80c3 1166 fprintf (stderr,
4a6fd34b 1167 "I/O error on %s: %s\n",
56086921 1168 DEVNAME (dev_target),
4a6fd34b 1169 strerror (errno));
56086921 1170 rc = -1;
d0fb80c3 1171 }
6aff3115 1172 }
6aff3115 1173 } else {
56086921 1174 rc = flash_read (fd_current);
6aff3115
WD
1175 }
1176
56086921
GL
1177exit:
1178 if (close (fd_current)) {
6aff3115 1179 fprintf (stderr,
56086921
GL
1180 "I/O error on %s: %s\n",
1181 DEVNAME (dev_current), strerror (errno));
1182 return -1;
6aff3115
WD
1183 }
1184
56086921 1185 return rc;
6aff3115
WD
1186}
1187
1188/*
1189 * s1 is either a simple 'name', or a 'name=value' pair.
1190 * s2 is a 'name=value' pair.
1191 * If the names match, return the value of s2, else NULL.
1192 */
1193
6de66b35 1194static char *envmatch (char * s1, char * s2)
6aff3115 1195{
586197df
JH
1196 if (s1 == NULL || s2 == NULL)
1197 return NULL;
6aff3115
WD
1198
1199 while (*s1 == *s2++)
1200 if (*s1++ == '=')
56086921 1201 return s2;
4a6fd34b 1202 if (*s1 == '\0' && *(s2 - 1) == '=')
56086921
GL
1203 return s2;
1204 return NULL;
6aff3115
WD
1205}
1206
1207/*
1208 * Prevent confusion if running from erased flash memory
1209 */
bd7b26f8 1210int fw_env_open(void)
6aff3115 1211{
56086921 1212 int crc0, crc0_ok;
735eb0f0 1213 unsigned char flag0;
56086921
GL
1214 void *addr0;
1215
6aff3115 1216 int crc1, crc1_ok;
735eb0f0 1217 unsigned char flag1;
56086921 1218 void *addr1;
d0fb80c3 1219
a8a752c0
MV
1220 int ret;
1221
56086921
GL
1222 struct env_image_single *single;
1223 struct env_image_redundant *redundant;
6aff3115 1224
4a6fd34b 1225 if (parse_config ()) /* should fill envdevices */
56086921 1226 return -1;
4a6fd34b 1227
497f2053 1228 addr0 = calloc(1, CUR_ENVSIZE);
56086921 1229 if (addr0 == NULL) {
497f2053 1230 fprintf(stderr,
4a6fd34b 1231 "Not enough memory for environment (%ld bytes)\n",
497f2053 1232 CUR_ENVSIZE);
56086921 1233 return -1;
d0fb80c3 1234 }
4a6fd34b 1235
d0fb80c3 1236 /* read environment from FLASH to local buffer */
56086921
GL
1237 environment.image = addr0;
1238
1239 if (HaveRedundEnv) {
1240 redundant = addr0;
1241 environment.crc = &redundant->crc;
1242 environment.flags = &redundant->flags;
1243 environment.data = redundant->data;
1244 } else {
1245 single = addr0;
1246 environment.crc = &single->crc;
1247 environment.flags = NULL;
1248 environment.data = single->data;
d0fb80c3 1249 }
4a6fd34b 1250
56086921
GL
1251 dev_current = 0;
1252 if (flash_io (O_RDONLY))
1253 return -1;
1254
1255 crc0 = crc32 (0, (uint8_t *) environment.data, ENV_SIZE);
a8a752c0
MV
1256
1257 if (aes_flag) {
1258 ret = env_aes_cbc_crypt(environment.data, 0);
1259 if (ret)
1260 return ret;
1261 }
1262
56086921 1263 crc0_ok = (crc0 == *environment.crc);
d0fb80c3 1264 if (!HaveRedundEnv) {
56086921 1265 if (!crc0_ok) {
4a6fd34b
WD
1266 fprintf (stderr,
1267 "Warning: Bad CRC, using default environment\n");
f07217c9 1268 memcpy(environment.data, default_environment, sizeof default_environment);
6aff3115 1269 }
d0fb80c3 1270 } else {
56086921 1271 flag0 = *environment.flags;
4a6fd34b 1272
56086921 1273 dev_current = 1;
497f2053 1274 addr1 = calloc(1, CUR_ENVSIZE);
56086921 1275 if (addr1 == NULL) {
497f2053 1276 fprintf(stderr,
4a6fd34b 1277 "Not enough memory for environment (%ld bytes)\n",
497f2053 1278 CUR_ENVSIZE);
56086921 1279 return -1;
4a6fd34b 1280 }
56086921 1281 redundant = addr1;
4a6fd34b 1282
56086921
GL
1283 /*
1284 * have to set environment.image for flash_read(), careful -
1285 * other pointers in environment still point inside addr0
1286 */
1287 environment.image = addr1;
1288 if (flash_io (O_RDONLY))
1289 return -1;
1290
1291 /* Check flag scheme compatibility */
1292 if (DEVTYPE(dev_current) == MTD_NORFLASH &&
1293 DEVTYPE(!dev_current) == MTD_NORFLASH) {
1294 environment.flag_scheme = FLAG_BOOLEAN;
1295 } else if (DEVTYPE(dev_current) == MTD_NANDFLASH &&
1296 DEVTYPE(!dev_current) == MTD_NANDFLASH) {
1297 environment.flag_scheme = FLAG_INCREMENTAL;
9eeaa8e6
RB
1298 } else if (DEVTYPE(dev_current) == MTD_DATAFLASH &&
1299 DEVTYPE(!dev_current) == MTD_DATAFLASH) {
1300 environment.flag_scheme = FLAG_BOOLEAN;
785881f7
JH
1301 } else if (DEVTYPE(dev_current) == MTD_UBIVOLUME &&
1302 DEVTYPE(!dev_current) == MTD_UBIVOLUME) {
1303 environment.flag_scheme = FLAG_INCREMENTAL;
23ef62d7
OM
1304 } else if (DEVTYPE(dev_current) == MTD_ABSENT &&
1305 DEVTYPE(!dev_current) == MTD_ABSENT) {
1306 environment.flag_scheme = FLAG_INCREMENTAL;
56086921
GL
1307 } else {
1308 fprintf (stderr, "Incompatible flash types!\n");
1309 return -1;
6aff3115 1310 }
4a6fd34b 1311
56086921 1312 crc1 = crc32 (0, (uint8_t *) redundant->data, ENV_SIZE);
a8a752c0
MV
1313
1314 if (aes_flag) {
1315 ret = env_aes_cbc_crypt(redundant->data, 0);
1316 if (ret)
1317 return ret;
1318 }
1319
56086921
GL
1320 crc1_ok = (crc1 == redundant->crc);
1321 flag1 = redundant->flags;
1322
1323 if (crc0_ok && !crc1_ok) {
1324 dev_current = 0;
1325 } else if (!crc0_ok && crc1_ok) {
1326 dev_current = 1;
1327 } else if (!crc0_ok && !crc1_ok) {
4a6fd34b
WD
1328 fprintf (stderr,
1329 "Warning: Bad CRC, using default environment\n");
56086921
GL
1330 memcpy (environment.data, default_environment,
1331 sizeof default_environment);
1332 dev_current = 0;
1333 } else {
1334 switch (environment.flag_scheme) {
1335 case FLAG_BOOLEAN:
1336 if (flag0 == active_flag &&
1337 flag1 == obsolete_flag) {
1338 dev_current = 0;
1339 } else if (flag0 == obsolete_flag &&
1340 flag1 == active_flag) {
1341 dev_current = 1;
1342 } else if (flag0 == flag1) {
1343 dev_current = 0;
1344 } else if (flag0 == 0xFF) {
1345 dev_current = 0;
1346 } else if (flag1 == 0xFF) {
1347 dev_current = 1;
1348 } else {
1349 dev_current = 0;
1350 }
1351 break;
1352 case FLAG_INCREMENTAL:
735eb0f0 1353 if (flag0 == 255 && flag1 == 0)
56086921
GL
1354 dev_current = 1;
1355 else if ((flag1 == 255 && flag0 == 0) ||
735eb0f0 1356 flag0 >= flag1)
56086921 1357 dev_current = 0;
735eb0f0
JP
1358 else /* flag1 > flag0 */
1359 dev_current = 1;
56086921
GL
1360 break;
1361 default:
1362 fprintf (stderr, "Unknown flag scheme %u \n",
1363 environment.flag_scheme);
1364 return -1;
1365 }
1366 }
1367
1368 /*
1369 * If we are reading, we don't need the flag and the CRC any
1370 * more, if we are writing, we will re-calculate CRC and update
1371 * flags before writing out
1372 */
1373 if (dev_current) {
1374 environment.image = addr1;
1375 environment.crc = &redundant->crc;
1376 environment.flags = &redundant->flags;
1377 environment.data = redundant->data;
1378 free (addr0);
1379 } else {
1380 environment.image = addr0;
1381 /* Other pointers are already set */
4a6fd34b 1382 free (addr1);
6aff3115 1383 }
74620e1c
JH
1384#ifdef DEBUG
1385 fprintf(stderr, "Selected env in %s\n", DEVNAME(dev_current));
1386#endif
6aff3115 1387 }
56086921 1388 return 0;
6aff3115
WD
1389}
1390
1391
4a6fd34b 1392static int parse_config ()
6aff3115
WD
1393{
1394 struct stat st;
1395
d0fb80c3
WD
1396#if defined(CONFIG_FILE)
1397 /* Fills in DEVNAME(), ENVSIZE(), DEVESIZE(). Or don't. */
9884f44c 1398 if (get_config (config_file)) {
d0fb80c3 1399 fprintf (stderr,
9884f44c 1400 "Cannot parse config file '%s': %s\n", config_file, strerror (errno));
56086921 1401 return -1;
6aff3115 1402 }
d0fb80c3 1403#else
229695fe 1404 DEVNAME (0) = DEVICE1_NAME;
4a6fd34b
WD
1405 DEVOFFSET (0) = DEVICE1_OFFSET;
1406 ENVSIZE (0) = ENV1_SIZE;
23869bf8 1407 /* Default values are: erase-size=env-size */
9eeaa8e6 1408 DEVESIZE (0) = ENVSIZE (0);
23869bf8
DB
1409 /* #sectors=env-size/erase-size (rounded up) */
1410 ENVSECTORS (0) = (ENVSIZE(0) + DEVESIZE(0) - 1) / DEVESIZE(0);
9eeaa8e6 1411#ifdef DEVICE1_ESIZE
4a6fd34b 1412 DEVESIZE (0) = DEVICE1_ESIZE;
9eeaa8e6
RB
1413#endif
1414#ifdef DEVICE1_ENVSECTORS
56086921 1415 ENVSECTORS (0) = DEVICE1_ENVSECTORS;
9eeaa8e6
RB
1416#endif
1417
6aff3115 1418#ifdef HAVE_REDUND
229695fe 1419 DEVNAME (1) = DEVICE2_NAME;
4a6fd34b
WD
1420 DEVOFFSET (1) = DEVICE2_OFFSET;
1421 ENVSIZE (1) = ENV2_SIZE;
23869bf8 1422 /* Default values are: erase-size=env-size */
9eeaa8e6 1423 DEVESIZE (1) = ENVSIZE (1);
23869bf8
DB
1424 /* #sectors=env-size/erase-size (rounded up) */
1425 ENVSECTORS (1) = (ENVSIZE(1) + DEVESIZE(1) - 1) / DEVESIZE(1);
9eeaa8e6 1426#ifdef DEVICE2_ESIZE
4a6fd34b 1427 DEVESIZE (1) = DEVICE2_ESIZE;
9eeaa8e6
RB
1428#endif
1429#ifdef DEVICE2_ENVSECTORS
56086921 1430 ENVSECTORS (1) = DEVICE2_ENVSECTORS;
9eeaa8e6 1431#endif
d0fb80c3 1432 HaveRedundEnv = 1;
6aff3115 1433#endif
d0fb80c3 1434#endif
4a6fd34b
WD
1435 if (stat (DEVNAME (0), &st)) {
1436 fprintf (stderr,
1437 "Cannot access MTD device %s: %s\n",
1438 DEVNAME (0), strerror (errno));
56086921 1439 return -1;
d0fb80c3 1440 }
4a6fd34b
WD
1441
1442 if (HaveRedundEnv && stat (DEVNAME (1), &st)) {
1443 fprintf (stderr,
1444 "Cannot access MTD device %s: %s\n",
e2146b6a 1445 DEVNAME (1), strerror (errno));
56086921 1446 return -1;
d0fb80c3 1447 }
6aff3115
WD
1448 return 0;
1449}
d0fb80c3
WD
1450
1451#if defined(CONFIG_FILE)
1452static int get_config (char *fname)
1453{
1454 FILE *fp;
1455 int i = 0;
1456 int rc;
1457 char dump[128];
229695fe 1458 char *devname;
d0fb80c3 1459
56086921
GL
1460 fp = fopen (fname, "r");
1461 if (fp == NULL)
1462 return -1;
d0fb80c3 1463
56086921 1464 while (i < 2 && fgets (dump, sizeof (dump), fp)) {
d0fb80c3 1465 /* Skip incomplete conversions and comment strings */
56086921 1466 if (dump[0] == '#')
d0fb80c3 1467 continue;
56086921 1468
229695fe
TR
1469 rc = sscanf (dump, "%ms %lx %lx %lx %lx",
1470 &devname,
56086921
GL
1471 &DEVOFFSET (i),
1472 &ENVSIZE (i),
1473 &DEVESIZE (i),
1474 &ENVSECTORS (i));
1475
9eeaa8e6 1476 if (rc < 3)
56086921
GL
1477 continue;
1478
229695fe
TR
1479 DEVNAME(i) = devname;
1480
9eeaa8e6
RB
1481 if (rc < 4)
1482 /* Assume the erase size is the same as the env-size */
1483 DEVESIZE(i) = ENVSIZE(i);
1484
56086921 1485 if (rc < 5)
23869bf8
DB
1486 /* Assume enough env sectors to cover the environment */
1487 ENVSECTORS (i) = (ENVSIZE(i) + DEVESIZE(i) - 1) / DEVESIZE(i);
d0fb80c3
WD
1488
1489 i++;
1490 }
4a6fd34b
WD
1491 fclose (fp);
1492
d0fb80c3 1493 HaveRedundEnv = i - 1;
4a6fd34b 1494 if (!i) { /* No valid entries found */
d0fb80c3 1495 errno = EINVAL;
56086921 1496 return -1;
d0fb80c3
WD
1497 } else
1498 return 0;
1499}
1500#endif
This page took 0.55862 seconds and 4 git commands to generate.