• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2010
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  *
6  * (C) Copyright 2008
7  * Guennadi Liakhovetski, DENX Software Engineering, lg@denx.de.
8  */
9 
10 #define _GNU_SOURCE
11 
12 #include <compiler.h>
13 #include <env.h>
14 #include <errno.h>
15 #include <env_flags.h>
16 #include <fcntl.h>
17 #include <libgen.h>
18 #include <linux/fs.h>
19 #include <linux/stringify.h>
20 #include <ctype.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <stddef.h>
24 #include <string.h>
25 #include <sys/types.h>
26 #include <sys/ioctl.h>
27 #include <sys/stat.h>
28 #include <u-boot/crc.h>
29 #include <unistd.h>
30 #include <dirent.h>
31 
32 #ifdef MTD_OLD
33 # include <stdint.h>
34 # include <linux/mtd/mtd.h>
35 #else
36 # define  __user	/* nothing */
37 # include <mtd/mtd-user.h>
38 #endif
39 
40 #include <mtd/ubi-user.h>
41 
42 #include "fw_env_private.h"
43 #include "fw_env.h"
44 
45 struct env_opts default_opts = {
46 #ifdef CONFIG_FILE
47 	.config_file = CONFIG_FILE
48 #endif
49 };
50 
51 #define DIV_ROUND_UP(n, d)	(((n) + (d) - 1) / (d))
52 
53 #define min(x, y) ({				\
54 	typeof(x) _min1 = (x);			\
55 	typeof(y) _min2 = (y);			\
56 	(void) (&_min1 == &_min2);		\
57 	_min1 < _min2 ? _min1 : _min2; })
58 
59 struct envdev_s {
60 	const char *devname;		/* Device name */
61 	long long devoff;		/* Device offset */
62 	ulong env_size;			/* environment size */
63 	ulong erase_size;		/* device erase size */
64 	ulong env_sectors;		/* number of environment sectors */
65 	uint8_t mtd_type;		/* type of the MTD device */
66 	int is_ubi;			/* set if we use UBI volume */
67 };
68 
69 static struct envdev_s envdevices[2] = {
70 	{
71 		.mtd_type = MTD_ABSENT,
72 	}, {
73 		.mtd_type = MTD_ABSENT,
74 	},
75 };
76 
77 static int dev_current;
78 
79 #define DEVNAME(i)    envdevices[(i)].devname
80 #define DEVOFFSET(i)  envdevices[(i)].devoff
81 #define ENVSIZE(i)    envdevices[(i)].env_size
82 #define DEVESIZE(i)   envdevices[(i)].erase_size
83 #define ENVSECTORS(i) envdevices[(i)].env_sectors
84 #define DEVTYPE(i)    envdevices[(i)].mtd_type
85 #define IS_UBI(i)     envdevices[(i)].is_ubi
86 
87 #define CUR_ENVSIZE ENVSIZE(dev_current)
88 
89 static unsigned long usable_envsize;
90 #define ENV_SIZE      usable_envsize
91 
92 struct env_image_single {
93 	uint32_t crc;		/* CRC32 over data bytes    */
94 	char data[];
95 };
96 
97 struct env_image_redundant {
98 	uint32_t crc;		/* CRC32 over data bytes    */
99 	unsigned char flags;	/* active or obsolete */
100 	char data[];
101 };
102 
103 enum flag_scheme {
104 	FLAG_NONE,
105 	FLAG_BOOLEAN,
106 	FLAG_INCREMENTAL,
107 };
108 
109 struct environment {
110 	void *image;
111 	uint32_t *crc;
112 	unsigned char *flags;
113 	char *data;
114 	enum flag_scheme flag_scheme;
115 	int dirty;
116 };
117 
118 static struct environment environment = {
119 	.flag_scheme = FLAG_NONE,
120 };
121 
122 static int have_redund_env;
123 
124 #define DEFAULT_ENV_INSTANCE_STATIC
125 #include <env_default.h>
126 
127 #define UBI_DEV_START "/dev/ubi"
128 #define UBI_SYSFS "/sys/class/ubi"
129 #define UBI_VOL_NAME_PATT "ubi%d_%d"
130 
is_ubi_devname(const char * devname)131 static int is_ubi_devname(const char *devname)
132 {
133 	return !strncmp(devname, UBI_DEV_START, sizeof(UBI_DEV_START) - 1);
134 }
135 
ubi_check_volume_sysfs_name(const char * volume_sysfs_name,const char * volname)136 static int ubi_check_volume_sysfs_name(const char *volume_sysfs_name,
137 				       const char *volname)
138 {
139 	char path[256];
140 	FILE *file;
141 	char *name;
142 	int ret;
143 
144 	strcpy(path, UBI_SYSFS "/");
145 	strcat(path, volume_sysfs_name);
146 	strcat(path, "/name");
147 
148 	file = fopen(path, "r");
149 	if (!file)
150 		return -1;
151 
152 	ret = fscanf(file, "%ms", &name);
153 	fclose(file);
154 	if (ret <= 0 || !name) {
155 		fprintf(stderr,
156 			"Failed to read from file %s, ret = %d, name = %s\n",
157 			path, ret, name);
158 		return -1;
159 	}
160 
161 	if (!strcmp(name, volname)) {
162 		free(name);
163 		return 0;
164 	}
165 	free(name);
166 
167 	return -1;
168 }
169 
ubi_get_volnum_by_name(int devnum,const char * volname)170 static int ubi_get_volnum_by_name(int devnum, const char *volname)
171 {
172 	DIR *sysfs_ubi;
173 	struct dirent *dirent;
174 	int ret;
175 	int tmp_devnum;
176 	int volnum;
177 
178 	sysfs_ubi = opendir(UBI_SYSFS);
179 	if (!sysfs_ubi)
180 		return -1;
181 
182 #ifdef DEBUG
183 	fprintf(stderr, "Looking for volume name \"%s\"\n", volname);
184 #endif
185 
186 	while (1) {
187 		dirent = readdir(sysfs_ubi);
188 		if (!dirent)
189 			return -1;
190 
191 		ret = sscanf(dirent->d_name, UBI_VOL_NAME_PATT,
192 			     &tmp_devnum, &volnum);
193 		if (ret == 2 && devnum == tmp_devnum) {
194 			if (ubi_check_volume_sysfs_name(dirent->d_name,
195 							volname) == 0)
196 				return volnum;
197 		}
198 	}
199 
200 	return -1;
201 }
202 
ubi_get_devnum_by_devname(const char * devname)203 static int ubi_get_devnum_by_devname(const char *devname)
204 {
205 	int devnum;
206 	int ret;
207 
208 	ret = sscanf(devname + sizeof(UBI_DEV_START) - 1, "%d", &devnum);
209 	if (ret != 1)
210 		return -1;
211 
212 	return devnum;
213 }
214 
ubi_get_volume_devname(const char * devname,const char * volname)215 static const char *ubi_get_volume_devname(const char *devname,
216 					  const char *volname)
217 {
218 	char *volume_devname;
219 	int volnum;
220 	int devnum;
221 	int ret;
222 
223 	devnum = ubi_get_devnum_by_devname(devname);
224 	if (devnum < 0)
225 		return NULL;
226 
227 	volnum = ubi_get_volnum_by_name(devnum, volname);
228 	if (volnum < 0)
229 		return NULL;
230 
231 	ret = asprintf(&volume_devname, "%s_%d", devname, volnum);
232 	if (ret < 0)
233 		return NULL;
234 
235 #ifdef DEBUG
236 	fprintf(stderr, "Found ubi volume \"%s:%s\" -> %s\n",
237 		devname, volname, volume_devname);
238 #endif
239 
240 	return volume_devname;
241 }
242 
ubi_check_dev(unsigned int dev_id)243 static void ubi_check_dev(unsigned int dev_id)
244 {
245 	char *devname = (char *)DEVNAME(dev_id);
246 	char *pname;
247 	const char *volname = NULL;
248 	const char *volume_devname;
249 
250 	if (!is_ubi_devname(DEVNAME(dev_id)))
251 		return;
252 
253 	IS_UBI(dev_id) = 1;
254 
255 	for (pname = devname; *pname != '\0'; pname++) {
256 		if (*pname == ':') {
257 			*pname = '\0';
258 			volname = pname + 1;
259 			break;
260 		}
261 	}
262 
263 	if (volname) {
264 		/* Let's find real volume device name */
265 		volume_devname = ubi_get_volume_devname(devname, volname);
266 		if (!volume_devname) {
267 			fprintf(stderr, "Didn't found ubi volume \"%s\"\n",
268 				volname);
269 			return;
270 		}
271 
272 		free(devname);
273 		DEVNAME(dev_id) = volume_devname;
274 	}
275 }
276 
ubi_update_start(int fd,int64_t bytes)277 static int ubi_update_start(int fd, int64_t bytes)
278 {
279 	if (ioctl(fd, UBI_IOCVOLUP, &bytes))
280 		return -1;
281 	return 0;
282 }
283 
ubi_read(int fd,void * buf,size_t count)284 static int ubi_read(int fd, void *buf, size_t count)
285 {
286 	ssize_t ret;
287 
288 	while (count > 0) {
289 		ret = read(fd, buf, count);
290 		if (ret > 0) {
291 			count -= ret;
292 			buf += ret;
293 
294 			continue;
295 		}
296 
297 		if (ret == 0) {
298 			/*
299 			 * Happens in case of too short volume data size. If we
300 			 * return error status we will fail it will be treated
301 			 * as UBI device error.
302 			 *
303 			 * Leave catching this error to CRC check.
304 			 */
305 			fprintf(stderr, "Warning: end of data on ubi volume\n");
306 			return 0;
307 		} else if (errno == EBADF) {
308 			/*
309 			 * Happens in case of corrupted volume. The same as
310 			 * above, we cannot return error now, as we will still
311 			 * be able to successfully write environment later.
312 			 */
313 			fprintf(stderr, "Warning: corrupted volume?\n");
314 			return 0;
315 		} else if (errno == EINTR) {
316 			continue;
317 		}
318 
319 		fprintf(stderr, "Cannot read %u bytes from ubi volume, %s\n",
320 			(unsigned int)count, strerror(errno));
321 		return -1;
322 	}
323 
324 	return 0;
325 }
326 
ubi_write(int fd,const void * buf,size_t count)327 static int ubi_write(int fd, const void *buf, size_t count)
328 {
329 	ssize_t ret;
330 
331 	while (count > 0) {
332 		ret = write(fd, buf, count);
333 		if (ret <= 0) {
334 			if (ret < 0 && errno == EINTR)
335 				continue;
336 
337 			fprintf(stderr, "Cannot write %u bytes to ubi volume\n",
338 				(unsigned int)count);
339 			return -1;
340 		}
341 
342 		count -= ret;
343 		buf += ret;
344 	}
345 
346 	return 0;
347 }
348 
349 static int flash_io(int mode);
350 static int parse_config(struct env_opts *opts);
351 
352 #if defined(CONFIG_FILE)
353 static int get_config(char *);
354 #endif
355 
skip_chars(char * s)356 static char *skip_chars(char *s)
357 {
358 	for (; *s != '\0'; s++) {
359 		if (isblank(*s) || *s == '=')
360 			return s;
361 	}
362 	return NULL;
363 }
364 
skip_blanks(char * s)365 static char *skip_blanks(char *s)
366 {
367 	for (; *s != '\0'; s++) {
368 		if (!isblank(*s))
369 			return s;
370 	}
371 	return NULL;
372 }
373 
374 /*
375  * s1 is either a simple 'name', or a 'name=value' pair.
376  * s2 is a 'name=value' pair.
377  * If the names match, return the value of s2, else NULL.
378  */
envmatch(char * s1,char * s2)379 static char *envmatch(char *s1, char *s2)
380 {
381 	if (s1 == NULL || s2 == NULL)
382 		return NULL;
383 
384 	while (*s1 == *s2++)
385 		if (*s1++ == '=')
386 			return s2;
387 	if (*s1 == '\0' && *(s2 - 1) == '=')
388 		return s2;
389 	return NULL;
390 }
391 
392 /**
393  * Search the environment for a variable.
394  * Return the value, if found, or NULL, if not found.
395  */
fw_getenv(char * name)396 char *fw_getenv(char *name)
397 {
398 	char *env, *nxt;
399 
400 	for (env = environment.data; *env; env = nxt + 1) {
401 		char *val;
402 
403 		for (nxt = env; *nxt; ++nxt) {
404 			if (nxt >= &environment.data[ENV_SIZE]) {
405 				fprintf(stderr, "## Error: "
406 					"environment not terminated\n");
407 				return NULL;
408 			}
409 		}
410 		val = envmatch(name, env);
411 		if (!val)
412 			continue;
413 		return val;
414 	}
415 	return NULL;
416 }
417 
418 /*
419  * Search the default environment for a variable.
420  * Return the value, if found, or NULL, if not found.
421  */
fw_getdefenv(char * name)422 char *fw_getdefenv(char *name)
423 {
424 	char *env, *nxt;
425 
426 	for (env = default_environment; *env; env = nxt + 1) {
427 		char *val;
428 
429 		for (nxt = env; *nxt; ++nxt) {
430 			if (nxt >= &default_environment[ENV_SIZE]) {
431 				fprintf(stderr, "## Error: "
432 					"default environment not terminated\n");
433 				return NULL;
434 			}
435 		}
436 		val = envmatch(name, env);
437 		if (!val)
438 			continue;
439 		return val;
440 	}
441 	return NULL;
442 }
443 
444 /*
445  * Print the current definition of one, or more, or all
446  * environment variables
447  */
fw_printenv(int argc,char * argv[],int value_only,struct env_opts * opts)448 int fw_printenv(int argc, char *argv[], int value_only, struct env_opts *opts)
449 {
450 	int i, rc = 0;
451 
452 	if (value_only && argc != 1) {
453 		fprintf(stderr,
454 			"## Error: `-n'/`--noheader' option requires exactly one argument\n");
455 		return -1;
456 	}
457 
458 	if (!opts)
459 		opts = &default_opts;
460 
461 	if (fw_env_open(opts))
462 		return -1;
463 
464 	if (argc == 0) {	/* Print all env variables  */
465 		char *env, *nxt;
466 		for (env = environment.data; *env; env = nxt + 1) {
467 			for (nxt = env; *nxt; ++nxt) {
468 				if (nxt >= &environment.data[ENV_SIZE]) {
469 					fprintf(stderr, "## Error: "
470 						"environment not terminated\n");
471 					return -1;
472 				}
473 			}
474 
475 			printf("%s\n", env);
476 		}
477 		fw_env_close(opts);
478 		return 0;
479 	}
480 
481 	for (i = 0; i < argc; ++i) {	/* print a subset of env variables */
482 		char *name = argv[i];
483 		char *val = NULL;
484 
485 		val = fw_getenv(name);
486 		if (!val) {
487 			fprintf(stderr, "## Error: \"%s\" not defined\n", name);
488 			rc = -1;
489 			continue;
490 		}
491 
492 		if (value_only) {
493 			puts(val);
494 			break;
495 		}
496 
497 		printf("%s=%s\n", name, val);
498 	}
499 
500 	fw_env_close(opts);
501 
502 	return rc;
503 }
504 
fw_env_flush(struct env_opts * opts)505 int fw_env_flush(struct env_opts *opts)
506 {
507 	if (!opts)
508 		opts = &default_opts;
509 
510 	if (!environment.dirty)
511 		return 0;
512 
513 	/*
514 	 * Update CRC
515 	 */
516 	*environment.crc = crc32(0, (uint8_t *) environment.data, ENV_SIZE);
517 
518 	/* write environment back to flash */
519 	if (flash_io(O_RDWR)) {
520 		fprintf(stderr, "Error: can't write fw_env to flash\n");
521 		return -1;
522 	}
523 
524 	return 0;
525 }
526 
527 /*
528  * Set/Clear a single variable in the environment.
529  * This is called in sequence to update the environment
530  * in RAM without updating the copy in flash after each set
531  */
fw_env_write(char * name,char * value)532 int fw_env_write(char *name, char *value)
533 {
534 	int len;
535 	char *env, *nxt;
536 	char *oldval = NULL;
537 	int deleting, creating, overwriting;
538 
539 	/*
540 	 * search if variable with this name already exists
541 	 */
542 	for (nxt = env = environment.data; *env; env = nxt + 1) {
543 		for (nxt = env; *nxt; ++nxt) {
544 			if (nxt >= &environment.data[ENV_SIZE]) {
545 				fprintf(stderr, "## Error: "
546 					"environment not terminated\n");
547 				errno = EINVAL;
548 				return -1;
549 			}
550 		}
551 		oldval = envmatch(name, env);
552 		if (oldval)
553 			break;
554 	}
555 
556 	deleting = (oldval && !(value && strlen(value)));
557 	creating = (!oldval && (value && strlen(value)));
558 	overwriting = (oldval && (value && strlen(value) &&
559 				  strcmp(oldval, value)));
560 
561 	/* check for permission */
562 	if (deleting) {
563 		if (env_flags_validate_varaccess(name,
564 		    ENV_FLAGS_VARACCESS_PREVENT_DELETE)) {
565 			printf("Can't delete \"%s\"\n", name);
566 			errno = EROFS;
567 			return -1;
568 		}
569 	} else if (overwriting) {
570 		if (env_flags_validate_varaccess(name,
571 		    ENV_FLAGS_VARACCESS_PREVENT_OVERWR)) {
572 			printf("Can't overwrite \"%s\"\n", name);
573 			errno = EROFS;
574 			return -1;
575 		} else if (env_flags_validate_varaccess(name,
576 			   ENV_FLAGS_VARACCESS_PREVENT_NONDEF_OVERWR)) {
577 			const char *defval = fw_getdefenv(name);
578 
579 			if (defval == NULL)
580 				defval = "";
581 			if (strcmp(oldval, defval)
582 			    != 0) {
583 				printf("Can't overwrite \"%s\"\n", name);
584 				errno = EROFS;
585 				return -1;
586 			}
587 		}
588 	} else if (creating) {
589 		if (env_flags_validate_varaccess(name,
590 		    ENV_FLAGS_VARACCESS_PREVENT_CREATE)) {
591 			printf("Can't create \"%s\"\n", name);
592 			errno = EROFS;
593 			return -1;
594 		}
595 	} else
596 		/* Nothing to do */
597 		return 0;
598 
599 	environment.dirty = 1;
600 	if (deleting || overwriting) {
601 		if (*++nxt == '\0') {
602 			*env = '\0';
603 		} else {
604 			for (;;) {
605 				*env = *nxt++;
606 				if ((*env == '\0') && (*nxt == '\0'))
607 					break;
608 				++env;
609 			}
610 		}
611 		*++env = '\0';
612 	}
613 
614 	/* Delete only ? */
615 	if (!value || !strlen(value))
616 		return 0;
617 
618 	/*
619 	 * Append new definition at the end
620 	 */
621 	for (env = environment.data; *env || *(env + 1); ++env)
622 		;
623 	if (env > environment.data)
624 		++env;
625 	/*
626 	 * Overflow when:
627 	 * "name" + "=" + "val" +"\0\0"  > CUR_ENVSIZE - (env-environment)
628 	 */
629 	len = strlen(name) + 2;
630 	/* add '=' for first arg, ' ' for all others */
631 	len += strlen(value) + 1;
632 
633 	if (len > (&environment.data[ENV_SIZE] - env)) {
634 		fprintf(stderr,
635 			"Error: environment overflow, \"%s\" deleted\n", name);
636 		return -1;
637 	}
638 
639 	while ((*env = *name++) != '\0')
640 		env++;
641 	*env = '=';
642 	while ((*++env = *value++) != '\0')
643 		;
644 
645 	/* end is marked with double '\0' */
646 	*++env = '\0';
647 
648 	return 0;
649 }
650 
651 /*
652  * Deletes or sets environment variables. Returns -1 and sets errno error codes:
653  * 0	  - OK
654  * EINVAL - need at least 1 argument
655  * EROFS  - certain variables ("ethaddr", "serial#") cannot be
656  *	    modified or deleted
657  *
658  */
fw_env_set(int argc,char * argv[],struct env_opts * opts)659 int fw_env_set(int argc, char *argv[], struct env_opts *opts)
660 {
661 	int i;
662 	size_t len;
663 	char *name, **valv;
664 	char *oldval;
665 	char *value = NULL;
666 	int valc;
667 	int ret;
668 
669 	if (!opts)
670 		opts = &default_opts;
671 
672 	if (argc < 1) {
673 		fprintf(stderr, "## Error: variable name missing\n");
674 		errno = EINVAL;
675 		return -1;
676 	}
677 
678 	if (fw_env_open(opts)) {
679 		fprintf(stderr, "Error: environment not initialized\n");
680 		return -1;
681 	}
682 
683 	name = argv[0];
684 	valv = argv + 1;
685 	valc = argc - 1;
686 
687 	if (env_flags_validate_env_set_params(name, valv, valc) < 0) {
688 		fw_env_close(opts);
689 		return -1;
690 	}
691 
692 	len = 0;
693 	for (i = 0; i < valc; ++i) {
694 		char *val = valv[i];
695 		size_t val_len = strlen(val);
696 
697 		if (value)
698 			value[len - 1] = ' ';
699 		oldval = value;
700 		value = realloc(value, len + val_len + 1);
701 		if (!value) {
702 			fprintf(stderr,
703 				"Cannot malloc %zu bytes: %s\n",
704 				len, strerror(errno));
705 			free(oldval);
706 			return -1;
707 		}
708 
709 		memcpy(value + len, val, val_len);
710 		len += val_len;
711 		value[len++] = '\0';
712 	}
713 
714 	fw_env_write(name, value);
715 
716 	free(value);
717 
718 	ret = fw_env_flush(opts);
719 	fw_env_close(opts);
720 
721 	return ret;
722 }
723 
724 /*
725  * Parse  a file  and configure the u-boot variables.
726  * The script file has a very simple format, as follows:
727  *
728  * Each line has a couple with name, value:
729  * <white spaces>variable_name<white spaces>variable_value
730  *
731  * Both variable_name and variable_value are interpreted as strings.
732  * Any character after <white spaces> and before ending \r\n is interpreted
733  * as variable's value (no comment allowed on these lines !)
734  *
735  * Comments are allowed if the first character in the line is #
736  *
737  * Returns -1 and sets errno error codes:
738  * 0	  - OK
739  * -1     - Error
740  */
fw_parse_script(char * fname,struct env_opts * opts)741 int fw_parse_script(char *fname, struct env_opts *opts)
742 {
743 	FILE *fp;
744 	char *line = NULL;
745 	size_t linesize = 0;
746 	char *name;
747 	char *val;
748 	int lineno = 0;
749 	int len;
750 	int ret = 0;
751 
752 	if (!opts)
753 		opts = &default_opts;
754 
755 	if (fw_env_open(opts)) {
756 		fprintf(stderr, "Error: environment not initialized\n");
757 		return -1;
758 	}
759 
760 	if (strcmp(fname, "-") == 0)
761 		fp = stdin;
762 	else {
763 		fp = fopen(fname, "r");
764 		if (fp == NULL) {
765 			fprintf(stderr, "I cannot open %s for reading\n",
766 				fname);
767 			return -1;
768 		}
769 	}
770 
771 	while ((len = getline(&line, &linesize, fp)) != -1) {
772 		lineno++;
773 
774 		/*
775 		 * Read a whole line from the file. If the line is not
776 		 * terminated, reports an error and exit.
777 		 */
778 		if (line[len - 1] != '\n') {
779 			fprintf(stderr,
780 				"Line %d not correctly terminated\n",
781 				lineno);
782 			ret = -1;
783 			break;
784 		}
785 
786 		/* Drop ending line feed / carriage return */
787 		line[--len] = '\0';
788 		if (len && line[len - 1] == '\r')
789 			line[--len] = '\0';
790 
791 		/* Skip comment or empty lines */
792 		if (len == 0 || line[0] == '#')
793 			continue;
794 
795 		/*
796 		 * Search for variable's name remove leading whitespaces
797 		 */
798 		name = skip_blanks(line);
799 		if (!name)
800 			continue;
801 
802 		/* The first white space is the end of variable name */
803 		val = skip_chars(name);
804 		len = strlen(name);
805 		if (val) {
806 			*val++ = '\0';
807 			if ((val - name) < len)
808 				val = skip_blanks(val);
809 			else
810 				val = NULL;
811 		}
812 #ifdef DEBUG
813 		fprintf(stderr, "Setting %s : %s\n",
814 			name, val ? val : " removed");
815 #endif
816 
817 		if (env_flags_validate_type(name, val) < 0) {
818 			ret = -1;
819 			break;
820 		}
821 
822 		/*
823 		 * If there is an error setting a variable,
824 		 * try to save the environment and returns an error
825 		 */
826 		if (fw_env_write(name, val)) {
827 			fprintf(stderr,
828 				"fw_env_write returns with error : %s\n",
829 				strerror(errno));
830 			ret = -1;
831 			break;
832 		}
833 
834 	}
835 	free(line);
836 
837 	/* Close file if not stdin */
838 	if (strcmp(fname, "-") != 0)
839 		fclose(fp);
840 
841 	ret |= fw_env_flush(opts);
842 
843 	fw_env_close(opts);
844 
845 	return ret;
846 }
847 
848 /**
849  * environment_end() - compute offset of first byte right after environment
850  * @dev - index of enviroment buffer
851  * Return:
852  *  device offset of first byte right after environment
853  */
environment_end(int dev)854 off_t environment_end(int dev)
855 {
856 	/* environment is block aligned */
857 	return DEVOFFSET(dev) + ENVSECTORS(dev) * DEVESIZE(dev);
858 }
859 
860 /*
861  * Test for bad block on NAND, just returns 0 on NOR, on NAND:
862  * 0	- block is good
863  * > 0	- block is bad
864  * < 0	- failed to test
865  */
flash_bad_block(int fd,uint8_t mtd_type,loff_t blockstart)866 static int flash_bad_block(int fd, uint8_t mtd_type, loff_t blockstart)
867 {
868 	if (mtd_type == MTD_NANDFLASH) {
869 		int badblock = ioctl(fd, MEMGETBADBLOCK, &blockstart);
870 
871 		if (badblock < 0) {
872 			perror("Cannot read bad block mark");
873 			return badblock;
874 		}
875 
876 		if (badblock) {
877 #ifdef DEBUG
878 			fprintf(stderr, "Bad block at 0x%llx, skipping\n",
879 				(unsigned long long)blockstart);
880 #endif
881 			return badblock;
882 		}
883 	}
884 
885 	return 0;
886 }
887 
888 /*
889  * Read data from flash at an offset into a provided buffer. On NAND it skips
890  * bad blocks but makes sure it stays within ENVSECTORS (dev) starting from
891  * the DEVOFFSET (dev) block. On NOR the loop is only run once.
892  */
flash_read_buf(int dev,int fd,void * buf,size_t count,off_t offset)893 static int flash_read_buf(int dev, int fd, void *buf, size_t count,
894 			  off_t offset)
895 {
896 	size_t blocklen;	/* erase / write length - one block on NAND,
897 				   0 on NOR */
898 	size_t processed = 0;	/* progress counter */
899 	size_t readlen = count;	/* current read length */
900 	off_t block_seek;	/* offset inside the current block to the start
901 				   of the data */
902 	loff_t blockstart;	/* running start of the current block -
903 				   MEMGETBADBLOCK needs 64 bits */
904 	int rc;
905 
906 	blockstart = (offset / DEVESIZE(dev)) * DEVESIZE(dev);
907 
908 	/* Offset inside a block */
909 	block_seek = offset - blockstart;
910 
911 	if (DEVTYPE(dev) == MTD_NANDFLASH) {
912 		/*
913 		 * NAND: calculate which blocks we are reading. We have
914 		 * to read one block at a time to skip bad blocks.
915 		 */
916 		blocklen = DEVESIZE(dev);
917 
918 		/* Limit to one block for the first read */
919 		if (readlen > blocklen - block_seek)
920 			readlen = blocklen - block_seek;
921 	} else {
922 		blocklen = 0;
923 	}
924 
925 	/* This only runs once on NOR flash */
926 	while (processed < count) {
927 		rc = flash_bad_block(fd, DEVTYPE(dev), blockstart);
928 		if (rc < 0)	/* block test failed */
929 			return -1;
930 
931 		if (blockstart + block_seek + readlen > environment_end(dev)) {
932 			/* End of range is reached */
933 			fprintf(stderr, "Too few good blocks within range\n");
934 			return -1;
935 		}
936 
937 		if (rc) {	/* block is bad */
938 			blockstart += blocklen;
939 			continue;
940 		}
941 
942 		/*
943 		 * If a block is bad, we retry in the next block at the same
944 		 * offset - see env/nand.c::writeenv()
945 		 */
946 		lseek(fd, blockstart + block_seek, SEEK_SET);
947 
948 		rc = read(fd, buf + processed, readlen);
949 		if (rc != readlen) {
950 			fprintf(stderr, "Read error on %s: %s\n",
951 				DEVNAME(dev), strerror(errno));
952 			return -1;
953 		}
954 #ifdef DEBUG
955 		fprintf(stderr, "Read 0x%x bytes at 0x%llx on %s\n",
956 			rc, (unsigned long long)blockstart + block_seek,
957 			DEVNAME(dev));
958 #endif
959 		processed += readlen;
960 		readlen = min(blocklen, count - processed);
961 		block_seek = 0;
962 		blockstart += blocklen;
963 	}
964 
965 	return processed;
966 }
967 
968 /*
969  * Write count bytes from begin of environment, but stay within
970  * ENVSECTORS(dev) sectors of
971  * DEVOFFSET (dev). Similar to the read case above, on NOR and dataflash we
972  * erase and write the whole data at once.
973  */
flash_write_buf(int dev,int fd,void * buf,size_t count)974 static int flash_write_buf(int dev, int fd, void *buf, size_t count)
975 {
976 	void *data;
977 	struct erase_info_user erase;
978 	size_t blocklen;	/* length of NAND block / NOR erase sector */
979 	size_t erase_len;	/* whole area that can be erased - may include
980 				   bad blocks */
981 	size_t erasesize;	/* erase / write length - one block on NAND,
982 				   whole area on NOR */
983 	size_t processed = 0;	/* progress counter */
984 	size_t write_total;	/* total size to actually write - excluding
985 				   bad blocks */
986 	off_t erase_offset;	/* offset to the first erase block (aligned)
987 				   below offset */
988 	off_t block_seek;	/* offset inside the erase block to the start
989 				   of the data */
990 	loff_t blockstart;	/* running start of the current block -
991 				   MEMGETBADBLOCK needs 64 bits */
992 	int rc;
993 
994 	/*
995 	 * For mtd devices only offset and size of the environment do matter
996 	 */
997 	if (DEVTYPE(dev) == MTD_ABSENT) {
998 		blocklen = count;
999 		erase_len = blocklen;
1000 		blockstart = DEVOFFSET(dev);
1001 		block_seek = 0;
1002 		write_total = blocklen;
1003 	} else {
1004 		blocklen = DEVESIZE(dev);
1005 
1006 		erase_offset = DEVOFFSET(dev);
1007 
1008 		/* Maximum area we may use */
1009 		erase_len = environment_end(dev) - erase_offset;
1010 
1011 		blockstart = erase_offset;
1012 
1013 		/* Offset inside a block */
1014 		block_seek = DEVOFFSET(dev) - erase_offset;
1015 
1016 		/*
1017 		 * Data size we actually write: from the start of the block
1018 		 * to the start of the data, then count bytes of data, and
1019 		 * to the end of the block
1020 		 */
1021 		write_total = ((block_seek + count + blocklen - 1) /
1022 			       blocklen) * blocklen;
1023 	}
1024 
1025 	/*
1026 	 * Support data anywhere within erase sectors: read out the complete
1027 	 * area to be erased, replace the environment image, write the whole
1028 	 * block back again.
1029 	 */
1030 	if (write_total > count) {
1031 		data = malloc(erase_len);
1032 		if (!data) {
1033 			fprintf(stderr,
1034 				"Cannot malloc %zu bytes: %s\n",
1035 				erase_len, strerror(errno));
1036 			return -1;
1037 		}
1038 
1039 		rc = flash_read_buf(dev, fd, data, write_total, erase_offset);
1040 		if (write_total != rc)
1041 			return -1;
1042 
1043 #ifdef DEBUG
1044 		fprintf(stderr, "Preserving data ");
1045 		if (block_seek != 0)
1046 			fprintf(stderr, "0x%x - 0x%lx", 0, block_seek - 1);
1047 		if (block_seek + count != write_total) {
1048 			if (block_seek != 0)
1049 				fprintf(stderr, " and ");
1050 			fprintf(stderr, "0x%lx - 0x%lx",
1051 				(unsigned long)block_seek + count,
1052 				(unsigned long)write_total - 1);
1053 		}
1054 		fprintf(stderr, "\n");
1055 #endif
1056 		/* Overwrite the old environment */
1057 		memcpy(data + block_seek, buf, count);
1058 	} else {
1059 		/*
1060 		 * We get here, iff offset is block-aligned and count is a
1061 		 * multiple of blocklen - see write_total calculation above
1062 		 */
1063 		data = buf;
1064 	}
1065 
1066 	if (DEVTYPE(dev) == MTD_NANDFLASH) {
1067 		/*
1068 		 * NAND: calculate which blocks we are writing. We have
1069 		 * to write one block at a time to skip bad blocks.
1070 		 */
1071 		erasesize = blocklen;
1072 	} else {
1073 		erasesize = erase_len;
1074 	}
1075 
1076 	erase.length = erasesize;
1077 
1078 	/* This only runs once on NOR flash and SPI-dataflash */
1079 	while (processed < write_total) {
1080 		rc = flash_bad_block(fd, DEVTYPE(dev), blockstart);
1081 		if (rc < 0)	/* block test failed */
1082 			return rc;
1083 
1084 		if (blockstart + erasesize > environment_end(dev)) {
1085 			fprintf(stderr, "End of range reached, aborting\n");
1086 			return -1;
1087 		}
1088 
1089 		if (rc) {	/* block is bad */
1090 			blockstart += blocklen;
1091 			continue;
1092 		}
1093 
1094 		if (DEVTYPE(dev) != MTD_ABSENT) {
1095 			erase.start = blockstart;
1096 			ioctl(fd, MEMUNLOCK, &erase);
1097 			/* These do not need an explicit erase cycle */
1098 			if (DEVTYPE(dev) != MTD_DATAFLASH)
1099 				if (ioctl(fd, MEMERASE, &erase) != 0) {
1100 					fprintf(stderr,
1101 						"MTD erase error on %s: %s\n",
1102 						DEVNAME(dev), strerror(errno));
1103 					return -1;
1104 				}
1105 		}
1106 
1107 		if (lseek(fd, blockstart, SEEK_SET) == -1) {
1108 			fprintf(stderr,
1109 				"Seek error on %s: %s\n",
1110 				DEVNAME(dev), strerror(errno));
1111 			return -1;
1112 		}
1113 #ifdef DEBUG
1114 		fprintf(stderr, "Write 0x%llx bytes at 0x%llx\n",
1115 			(unsigned long long)erasesize,
1116 			(unsigned long long)blockstart);
1117 #endif
1118 		if (write(fd, data + processed, erasesize) != erasesize) {
1119 			fprintf(stderr, "Write error on %s: %s\n",
1120 				DEVNAME(dev), strerror(errno));
1121 			return -1;
1122 		}
1123 
1124 		if (DEVTYPE(dev) != MTD_ABSENT)
1125 			ioctl(fd, MEMLOCK, &erase);
1126 
1127 		processed += erasesize;
1128 		block_seek = 0;
1129 		blockstart += erasesize;
1130 	}
1131 
1132 	if (write_total > count)
1133 		free(data);
1134 
1135 	return processed;
1136 }
1137 
1138 /*
1139  * Set obsolete flag at offset - NOR flash only
1140  */
flash_flag_obsolete(int dev,int fd,off_t offset)1141 static int flash_flag_obsolete(int dev, int fd, off_t offset)
1142 {
1143 	int rc;
1144 	struct erase_info_user erase;
1145 	char tmp = ENV_REDUND_OBSOLETE;
1146 
1147 	erase.start = DEVOFFSET(dev);
1148 	erase.length = DEVESIZE(dev);
1149 	/* This relies on the fact, that ENV_REDUND_OBSOLETE == 0 */
1150 	rc = lseek(fd, offset, SEEK_SET);
1151 	if (rc < 0) {
1152 		fprintf(stderr, "Cannot seek to set the flag on %s\n",
1153 			DEVNAME(dev));
1154 		return rc;
1155 	}
1156 	ioctl(fd, MEMUNLOCK, &erase);
1157 	rc = write(fd, &tmp, sizeof(tmp));
1158 	ioctl(fd, MEMLOCK, &erase);
1159 	if (rc < 0)
1160 		perror("Could not set obsolete flag");
1161 
1162 	return rc;
1163 }
1164 
flash_write(int fd_current,int fd_target,int dev_target)1165 static int flash_write(int fd_current, int fd_target, int dev_target)
1166 {
1167 	int rc;
1168 
1169 	switch (environment.flag_scheme) {
1170 	case FLAG_NONE:
1171 		break;
1172 	case FLAG_INCREMENTAL:
1173 		(*environment.flags)++;
1174 		break;
1175 	case FLAG_BOOLEAN:
1176 		*environment.flags = ENV_REDUND_ACTIVE;
1177 		break;
1178 	default:
1179 		fprintf(stderr, "Unimplemented flash scheme %u\n",
1180 			environment.flag_scheme);
1181 		return -1;
1182 	}
1183 
1184 #ifdef DEBUG
1185 	fprintf(stderr, "Writing new environment at 0x%llx on %s\n",
1186 		DEVOFFSET(dev_target), DEVNAME(dev_target));
1187 #endif
1188 
1189 	if (IS_UBI(dev_target)) {
1190 		if (ubi_update_start(fd_target, CUR_ENVSIZE) < 0)
1191 			return 0;
1192 		return ubi_write(fd_target, environment.image, CUR_ENVSIZE);
1193 	}
1194 
1195 	rc = flash_write_buf(dev_target, fd_target, environment.image,
1196 			     CUR_ENVSIZE);
1197 	if (rc < 0)
1198 		return rc;
1199 
1200 	if (environment.flag_scheme == FLAG_BOOLEAN) {
1201 		/* Have to set obsolete flag */
1202 		off_t offset = DEVOFFSET(dev_current) +
1203 		    offsetof(struct env_image_redundant, flags);
1204 #ifdef DEBUG
1205 		fprintf(stderr,
1206 			"Setting obsolete flag in environment at 0x%llx on %s\n",
1207 			DEVOFFSET(dev_current), DEVNAME(dev_current));
1208 #endif
1209 		flash_flag_obsolete(dev_current, fd_current, offset);
1210 	}
1211 
1212 	return 0;
1213 }
1214 
flash_read(int fd)1215 static int flash_read(int fd)
1216 {
1217 	int rc;
1218 
1219 	if (IS_UBI(dev_current)) {
1220 		DEVTYPE(dev_current) = MTD_ABSENT;
1221 
1222 		return ubi_read(fd, environment.image, CUR_ENVSIZE);
1223 	}
1224 
1225 	rc = flash_read_buf(dev_current, fd, environment.image, CUR_ENVSIZE,
1226 			    DEVOFFSET(dev_current));
1227 	if (rc != CUR_ENVSIZE)
1228 		return -1;
1229 
1230 	return 0;
1231 }
1232 
flash_open_tempfile(const char ** dname,const char ** target_temp)1233 static int flash_open_tempfile(const char **dname, const char **target_temp)
1234 {
1235 	char *dup_name = strdup(DEVNAME(dev_current));
1236 	char *temp_name = NULL;
1237 	int rc = -1;
1238 
1239 	if (!dup_name)
1240 		return -1;
1241 
1242 	*dname = dirname(dup_name);
1243 	if (!*dname)
1244 		goto err;
1245 
1246 	rc = asprintf(&temp_name, "%s/XXXXXX", *dname);
1247 	if (rc == -1)
1248 		goto err;
1249 
1250 	rc = mkstemp(temp_name);
1251 	if (rc == -1) {
1252 		/* fall back to in place write */
1253 		fprintf(stderr,
1254 			"Can't create %s: %s\n", temp_name, strerror(errno));
1255 		free(temp_name);
1256 	} else {
1257 		*target_temp = temp_name;
1258 		/* deliberately leak dup_name as dname /might/ point into
1259 		 * it and we need it for our caller
1260 		 */
1261 		dup_name = NULL;
1262 	}
1263 
1264 err:
1265 	if (dup_name)
1266 		free(dup_name);
1267 
1268 	return rc;
1269 }
1270 
flash_io_write(int fd_current)1271 static int flash_io_write(int fd_current)
1272 {
1273 	int fd_target = -1, rc, dev_target;
1274 	const char *dname, *target_temp = NULL;
1275 
1276 	if (have_redund_env) {
1277 		/* switch to next partition for writing */
1278 		dev_target = !dev_current;
1279 		/* dev_target: fd_target, erase_target */
1280 		fd_target = open(DEVNAME(dev_target), O_RDWR);
1281 		if (fd_target < 0) {
1282 			fprintf(stderr,
1283 				"Can't open %s: %s\n",
1284 				DEVNAME(dev_target), strerror(errno));
1285 			rc = -1;
1286 			goto exit;
1287 		}
1288 	} else {
1289 		struct stat sb;
1290 
1291 		if (fstat(fd_current, &sb) == 0 && S_ISREG(sb.st_mode)) {
1292 			/* if any part of flash_open_tempfile() fails we fall
1293 			 * back to in-place writes
1294 			 */
1295 			fd_target = flash_open_tempfile(&dname, &target_temp);
1296 		}
1297 		dev_target = dev_current;
1298 		if (fd_target == -1)
1299 			fd_target = fd_current;
1300 	}
1301 
1302 	rc = flash_write(fd_current, fd_target, dev_target);
1303 
1304 	if (fsync(fd_current) && !(errno == EINVAL || errno == EROFS)) {
1305 		fprintf(stderr,
1306 			"fsync failed on %s: %s\n",
1307 			DEVNAME(dev_current), strerror(errno));
1308 	}
1309 
1310 	if (fd_current != fd_target) {
1311 		if (fsync(fd_target) &&
1312 		    !(errno == EINVAL || errno == EROFS)) {
1313 			fprintf(stderr,
1314 				"fsync failed on %s: %s\n",
1315 				DEVNAME(dev_current), strerror(errno));
1316 		}
1317 
1318 		if (close(fd_target)) {
1319 			fprintf(stderr,
1320 				"I/O error on %s: %s\n",
1321 				DEVNAME(dev_target), strerror(errno));
1322 			rc = -1;
1323 		}
1324 
1325 		if (rc >= 0 && target_temp) {
1326 			int dir_fd;
1327 
1328 			dir_fd = open(dname, O_DIRECTORY | O_RDONLY);
1329 			if (dir_fd == -1)
1330 				fprintf(stderr,
1331 					"Can't open %s: %s\n",
1332 					dname, strerror(errno));
1333 
1334 			if (rename(target_temp, DEVNAME(dev_target))) {
1335 				fprintf(stderr,
1336 					"rename failed %s => %s: %s\n",
1337 					target_temp, DEVNAME(dev_target),
1338 					strerror(errno));
1339 				rc = -1;
1340 			}
1341 
1342 			if (dir_fd != -1 && fsync(dir_fd))
1343 				fprintf(stderr,
1344 					"fsync failed on %s: %s\n",
1345 					dname, strerror(errno));
1346 
1347 			if (dir_fd != -1 && close(dir_fd))
1348 				fprintf(stderr,
1349 					"I/O error on %s: %s\n",
1350 					dname, strerror(errno));
1351 		}
1352 	}
1353  exit:
1354 	return rc;
1355 }
1356 
flash_io(int mode)1357 static int flash_io(int mode)
1358 {
1359 	int fd_current, rc;
1360 
1361 	/* dev_current: fd_current, erase_current */
1362 	fd_current = open(DEVNAME(dev_current), mode);
1363 	if (fd_current < 0) {
1364 		fprintf(stderr,
1365 			"Can't open %s: %s\n",
1366 			DEVNAME(dev_current), strerror(errno));
1367 		return -1;
1368 	}
1369 
1370 	if (mode == O_RDWR) {
1371 		rc = flash_io_write(fd_current);
1372 	} else {
1373 		rc = flash_read(fd_current);
1374 	}
1375 
1376 	if (close(fd_current)) {
1377 		fprintf(stderr,
1378 			"I/O error on %s: %s\n",
1379 			DEVNAME(dev_current), strerror(errno));
1380 		return -1;
1381 	}
1382 
1383 	return rc;
1384 }
1385 
1386 /*
1387  * Prevent confusion if running from erased flash memory
1388  */
fw_env_open(struct env_opts * opts)1389 int fw_env_open(struct env_opts *opts)
1390 {
1391 	int crc0, crc0_ok;
1392 	unsigned char flag0;
1393 	void *addr0 = NULL;
1394 
1395 	int crc1, crc1_ok;
1396 	unsigned char flag1;
1397 	void *addr1 = NULL;
1398 
1399 	int ret;
1400 
1401 	struct env_image_single *single;
1402 	struct env_image_redundant *redundant;
1403 
1404 	if (!opts)
1405 		opts = &default_opts;
1406 
1407 	if (parse_config(opts))	/* should fill envdevices */
1408 		return -EINVAL;
1409 
1410 	addr0 = calloc(1, CUR_ENVSIZE);
1411 	if (addr0 == NULL) {
1412 		fprintf(stderr,
1413 			"Not enough memory for environment (%ld bytes)\n",
1414 			CUR_ENVSIZE);
1415 		ret = -ENOMEM;
1416 		goto open_cleanup;
1417 	}
1418 
1419 	/* read environment from FLASH to local buffer */
1420 	environment.image = addr0;
1421 
1422 	if (have_redund_env) {
1423 		redundant = addr0;
1424 		environment.crc = &redundant->crc;
1425 		environment.flags = &redundant->flags;
1426 		environment.data = redundant->data;
1427 	} else {
1428 		single = addr0;
1429 		environment.crc = &single->crc;
1430 		environment.flags = NULL;
1431 		environment.data = single->data;
1432 	}
1433 
1434 	dev_current = 0;
1435 	if (flash_io(O_RDONLY)) {
1436 		ret = -EIO;
1437 		goto open_cleanup;
1438 	}
1439 
1440 	crc0 = crc32(0, (uint8_t *)environment.data, ENV_SIZE);
1441 
1442 	crc0_ok = (crc0 == *environment.crc);
1443 	if (!have_redund_env) {
1444 		if (!crc0_ok) {
1445 			fprintf(stderr,
1446 				"Warning: Bad CRC, using default environment\n");
1447 			memcpy(environment.data, default_environment,
1448 			       sizeof(default_environment));
1449 			environment.dirty = 1;
1450 		}
1451 	} else {
1452 		flag0 = *environment.flags;
1453 
1454 		dev_current = 1;
1455 		addr1 = calloc(1, CUR_ENVSIZE);
1456 		if (addr1 == NULL) {
1457 			fprintf(stderr,
1458 				"Not enough memory for environment (%ld bytes)\n",
1459 				CUR_ENVSIZE);
1460 			ret = -ENOMEM;
1461 			goto open_cleanup;
1462 		}
1463 		redundant = addr1;
1464 
1465 		/*
1466 		 * have to set environment.image for flash_read(), careful -
1467 		 * other pointers in environment still point inside addr0
1468 		 */
1469 		environment.image = addr1;
1470 		if (flash_io(O_RDONLY)) {
1471 			ret = -EIO;
1472 			goto open_cleanup;
1473 		}
1474 
1475 		/* Check flag scheme compatibility */
1476 		if (DEVTYPE(dev_current) == MTD_NORFLASH &&
1477 		    DEVTYPE(!dev_current) == MTD_NORFLASH) {
1478 			environment.flag_scheme = FLAG_BOOLEAN;
1479 		} else if (DEVTYPE(dev_current) == MTD_NANDFLASH &&
1480 			   DEVTYPE(!dev_current) == MTD_NANDFLASH) {
1481 			environment.flag_scheme = FLAG_INCREMENTAL;
1482 		} else if (DEVTYPE(dev_current) == MTD_DATAFLASH &&
1483 			   DEVTYPE(!dev_current) == MTD_DATAFLASH) {
1484 			environment.flag_scheme = FLAG_BOOLEAN;
1485 		} else if (DEVTYPE(dev_current) == MTD_UBIVOLUME &&
1486 			   DEVTYPE(!dev_current) == MTD_UBIVOLUME) {
1487 			environment.flag_scheme = FLAG_INCREMENTAL;
1488 		} else if (DEVTYPE(dev_current) == MTD_ABSENT &&
1489 			   DEVTYPE(!dev_current) == MTD_ABSENT &&
1490 			   IS_UBI(dev_current) == IS_UBI(!dev_current)) {
1491 			environment.flag_scheme = FLAG_INCREMENTAL;
1492 		} else {
1493 			fprintf(stderr, "Incompatible flash types!\n");
1494 			ret = -EINVAL;
1495 			goto open_cleanup;
1496 		}
1497 
1498 		crc1 = crc32(0, (uint8_t *)redundant->data, ENV_SIZE);
1499 
1500 		crc1_ok = (crc1 == redundant->crc);
1501 		flag1 = redundant->flags;
1502 
1503 		/*
1504 		 * environment.data still points to ((struct
1505 		 * env_image_redundant *)addr0)->data. If the two
1506 		 * environments differ, or one has bad crc, force a
1507 		 * write-out by marking the environment dirty.
1508 		 */
1509 		if (memcmp(environment.data, redundant->data, ENV_SIZE) ||
1510 		    !crc0_ok || !crc1_ok)
1511 			environment.dirty = 1;
1512 
1513 		if (crc0_ok && !crc1_ok) {
1514 			dev_current = 0;
1515 		} else if (!crc0_ok && crc1_ok) {
1516 			dev_current = 1;
1517 		} else if (!crc0_ok && !crc1_ok) {
1518 			fprintf(stderr,
1519 				"Warning: Bad CRC, using default environment\n");
1520 			memcpy(environment.data, default_environment,
1521 			       sizeof(default_environment));
1522 			environment.dirty = 1;
1523 			dev_current = 0;
1524 		} else {
1525 			switch (environment.flag_scheme) {
1526 			case FLAG_BOOLEAN:
1527 				if (flag0 == ENV_REDUND_ACTIVE &&
1528 				    flag1 == ENV_REDUND_OBSOLETE) {
1529 					dev_current = 0;
1530 				} else if (flag0 == ENV_REDUND_OBSOLETE &&
1531 					   flag1 == ENV_REDUND_ACTIVE) {
1532 					dev_current = 1;
1533 				} else if (flag0 == flag1) {
1534 					dev_current = 0;
1535 				} else if (flag0 == 0xFF) {
1536 					dev_current = 0;
1537 				} else if (flag1 == 0xFF) {
1538 					dev_current = 1;
1539 				} else {
1540 					dev_current = 0;
1541 				}
1542 				break;
1543 			case FLAG_INCREMENTAL:
1544 				if (flag0 == 255 && flag1 == 0)
1545 					dev_current = 1;
1546 				else if ((flag1 == 255 && flag0 == 0) ||
1547 					 flag0 >= flag1)
1548 					dev_current = 0;
1549 				else	/* flag1 > flag0 */
1550 					dev_current = 1;
1551 				break;
1552 			default:
1553 				fprintf(stderr, "Unknown flag scheme %u\n",
1554 					environment.flag_scheme);
1555 				return -1;
1556 			}
1557 		}
1558 
1559 		/*
1560 		 * If we are reading, we don't need the flag and the CRC any
1561 		 * more, if we are writing, we will re-calculate CRC and update
1562 		 * flags before writing out
1563 		 */
1564 		if (dev_current) {
1565 			environment.image = addr1;
1566 			environment.crc = &redundant->crc;
1567 			environment.flags = &redundant->flags;
1568 			environment.data = redundant->data;
1569 			free(addr0);
1570 		} else {
1571 			environment.image = addr0;
1572 			/* Other pointers are already set */
1573 			free(addr1);
1574 		}
1575 #ifdef DEBUG
1576 		fprintf(stderr, "Selected env in %s\n", DEVNAME(dev_current));
1577 #endif
1578 	}
1579 	return 0;
1580 
1581  open_cleanup:
1582 	if (addr0)
1583 		free(addr0);
1584 
1585 	if (addr1)
1586 		free(addr1);
1587 
1588 	return ret;
1589 }
1590 
1591 /*
1592  * Simply free allocated buffer with environment
1593  */
fw_env_close(struct env_opts * opts)1594 int fw_env_close(struct env_opts *opts)
1595 {
1596 	if (environment.image)
1597 		free(environment.image);
1598 
1599 	environment.image = NULL;
1600 
1601 	return 0;
1602 }
1603 
check_device_config(int dev)1604 static int check_device_config(int dev)
1605 {
1606 	struct stat st;
1607 	int32_t lnum = 0;
1608 	int fd, rc = 0;
1609 
1610 	/* Fills in IS_UBI(), converts DEVNAME() with ubi volume name */
1611 	ubi_check_dev(dev);
1612 
1613 	fd = open(DEVNAME(dev), O_RDONLY);
1614 	if (fd < 0) {
1615 		fprintf(stderr,
1616 			"Cannot open %s: %s\n", DEVNAME(dev), strerror(errno));
1617 		return -1;
1618 	}
1619 
1620 	rc = fstat(fd, &st);
1621 	if (rc < 0) {
1622 		fprintf(stderr, "Cannot stat the file %s\n", DEVNAME(dev));
1623 		goto err;
1624 	}
1625 
1626 	if (IS_UBI(dev)) {
1627 		rc = ioctl(fd, UBI_IOCEBISMAP, &lnum);
1628 		if (rc < 0) {
1629 			fprintf(stderr, "Cannot get UBI information for %s\n",
1630 				DEVNAME(dev));
1631 			goto err;
1632 		}
1633 	} else if (S_ISCHR(st.st_mode)) {
1634 		struct mtd_info_user mtdinfo;
1635 		rc = ioctl(fd, MEMGETINFO, &mtdinfo);
1636 		if (rc < 0) {
1637 			fprintf(stderr, "Cannot get MTD information for %s\n",
1638 				DEVNAME(dev));
1639 			goto err;
1640 		}
1641 		if (mtdinfo.type != MTD_NORFLASH &&
1642 		    mtdinfo.type != MTD_NANDFLASH &&
1643 		    mtdinfo.type != MTD_DATAFLASH &&
1644 		    mtdinfo.type != MTD_UBIVOLUME) {
1645 			fprintf(stderr, "Unsupported flash type %u on %s\n",
1646 				mtdinfo.type, DEVNAME(dev));
1647 			goto err;
1648 		}
1649 		DEVTYPE(dev) = mtdinfo.type;
1650 		if (DEVESIZE(dev) == 0)
1651 			/* Assume the erase size is the same as the env-size */
1652 			DEVESIZE(dev) = ENVSIZE(dev);
1653 	} else {
1654 		uint64_t size;
1655 		DEVTYPE(dev) = MTD_ABSENT;
1656 		if (DEVESIZE(dev) == 0)
1657 			/* Assume the erase size to be 512 bytes */
1658 			DEVESIZE(dev) = 0x200;
1659 
1660 		/*
1661 		 * Check for negative offsets, treat it as backwards offset
1662 		 * from the end of the block device
1663 		 */
1664 		if (DEVOFFSET(dev) < 0) {
1665 			rc = ioctl(fd, BLKGETSIZE64, &size);
1666 			if (rc < 0) {
1667 				fprintf(stderr,
1668 					"Could not get block device size on %s\n",
1669 					DEVNAME(dev));
1670 				goto err;
1671 			}
1672 
1673 			DEVOFFSET(dev) = DEVOFFSET(dev) + size;
1674 #ifdef DEBUG
1675 			fprintf(stderr,
1676 				"Calculated device offset 0x%llx on %s\n",
1677 				DEVOFFSET(dev), DEVNAME(dev));
1678 #endif
1679 		}
1680 	}
1681 
1682 	if (ENVSECTORS(dev) == 0)
1683 		/* Assume enough sectors to cover the environment */
1684 		ENVSECTORS(dev) = DIV_ROUND_UP(ENVSIZE(dev), DEVESIZE(dev));
1685 
1686 	if (DEVOFFSET(dev) % DEVESIZE(dev) != 0) {
1687 		fprintf(stderr,
1688 			"Environment does not start on (erase) block boundary\n");
1689 		errno = EINVAL;
1690 		return -1;
1691 	}
1692 
1693 	if (ENVSIZE(dev) > ENVSECTORS(dev) * DEVESIZE(dev)) {
1694 		fprintf(stderr,
1695 			"Environment does not fit into available sectors\n");
1696 		errno = EINVAL;
1697 		return -1;
1698 	}
1699 
1700  err:
1701 	close(fd);
1702 	return rc;
1703 }
1704 
parse_config(struct env_opts * opts)1705 static int parse_config(struct env_opts *opts)
1706 {
1707 	int rc;
1708 
1709 	if (!opts)
1710 		opts = &default_opts;
1711 
1712 #if defined(CONFIG_FILE)
1713 	/* Fills in DEVNAME(), ENVSIZE(), DEVESIZE(). Or don't. */
1714 	if (get_config(opts->config_file)) {
1715 		fprintf(stderr, "Cannot parse config file '%s': %m\n",
1716 			opts->config_file);
1717 		return -1;
1718 	}
1719 #else
1720 	DEVNAME(0) = DEVICE1_NAME;
1721 	DEVOFFSET(0) = DEVICE1_OFFSET;
1722 	ENVSIZE(0) = ENV1_SIZE;
1723 
1724 	/* Set defaults for DEVESIZE, ENVSECTORS later once we
1725 	 * know DEVTYPE
1726 	 */
1727 #ifdef DEVICE1_ESIZE
1728 	DEVESIZE(0) = DEVICE1_ESIZE;
1729 #endif
1730 #ifdef DEVICE1_ENVSECTORS
1731 	ENVSECTORS(0) = DEVICE1_ENVSECTORS;
1732 #endif
1733 
1734 #ifdef HAVE_REDUND
1735 	DEVNAME(1) = DEVICE2_NAME;
1736 	DEVOFFSET(1) = DEVICE2_OFFSET;
1737 	ENVSIZE(1) = ENV2_SIZE;
1738 
1739 	/* Set defaults for DEVESIZE, ENVSECTORS later once we
1740 	 * know DEVTYPE
1741 	 */
1742 #ifdef DEVICE2_ESIZE
1743 	DEVESIZE(1) = DEVICE2_ESIZE;
1744 #endif
1745 #ifdef DEVICE2_ENVSECTORS
1746 	ENVSECTORS(1) = DEVICE2_ENVSECTORS;
1747 #endif
1748 	have_redund_env = 1;
1749 #endif
1750 #endif
1751 	rc = check_device_config(0);
1752 	if (rc < 0)
1753 		return rc;
1754 
1755 	if (have_redund_env) {
1756 		rc = check_device_config(1);
1757 		if (rc < 0)
1758 			return rc;
1759 
1760 		if (ENVSIZE(0) != ENVSIZE(1)) {
1761 			fprintf(stderr,
1762 				"Redundant environments have unequal size\n");
1763 			return -1;
1764 		}
1765 	}
1766 
1767 	usable_envsize = CUR_ENVSIZE - sizeof(uint32_t);
1768 	if (have_redund_env)
1769 		usable_envsize -= sizeof(char);
1770 
1771 	return 0;
1772 }
1773 
1774 #if defined(CONFIG_FILE)
get_config(char * fname)1775 static int get_config(char *fname)
1776 {
1777 	FILE *fp;
1778 	int i = 0;
1779 	int rc;
1780 	char *line = NULL;
1781 	size_t linesize = 0;
1782 	char *devname;
1783 
1784 	fp = fopen(fname, "r");
1785 	if (fp == NULL)
1786 		return -1;
1787 
1788 	while (i < 2 && getline(&line, &linesize, fp) != -1) {
1789 		/* Skip comment strings */
1790 		if (line[0] == '#')
1791 			continue;
1792 
1793 		rc = sscanf(line, "%ms %lli %lx %lx %lx",
1794 			    &devname,
1795 			    &DEVOFFSET(i),
1796 			    &ENVSIZE(i), &DEVESIZE(i), &ENVSECTORS(i));
1797 
1798 		if (rc < 3)
1799 			continue;
1800 
1801 		DEVNAME(i) = devname;
1802 
1803 		/* Set defaults for DEVESIZE, ENVSECTORS later once we
1804 		 * know DEVTYPE
1805 		 */
1806 
1807 		i++;
1808 	}
1809 	free(line);
1810 	fclose(fp);
1811 
1812 	have_redund_env = i - 1;
1813 	if (!i) {		/* No valid entries found */
1814 		errno = EINVAL;
1815 		return -1;
1816 	} else
1817 		return 0;
1818 }
1819 #endif
1820