]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
env: Add option to only ever append environment
authorMarek Vasut <marex@denx.de>
Tue, 7 Jul 2020 18:51:38 +0000 (20:51 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 31 Jul 2020 14:13:00 +0000 (10:13 -0400)
Add configuration option which prevents the environment hash table to be
ever cleared and reloaded with different content. This is useful in case
the first environment loaded into the hash table contains e.g. sensitive
content which must not be dropped or reloaded.

Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Tom Rini <trini@konsulko.com>
env/Kconfig
env/env.c
lib/hashtable.c

index dcc525d4edef5d832decd6af499fc92bad8fe549..1cae1edf6a9054936872c38bdf6079fcfec298f5 100644 (file)
@@ -614,6 +614,15 @@ config DELAY_ENVIRONMENT
          later by U-Boot code. With CONFIG_OF_CONTROL this is instead
          controlled by the value of /config/load-environment.
 
+config ENV_APPEND
+       bool "Always append the environment with new data"
+       default n
+       help
+         If defined, the environment hash table is only ever appended with new
+         data, but the existing hash table can never be dropped and reloaded
+         with newly imported data. This may be used in combination with static
+         flags to e.g. to protect variables which must not be modified.
+
 config ENV_ACCESS_IGNORE_FORCE
        bool "Block forced environment operations"
        default n
index 2af2fae23cd9f6ddda883930dbe43cf578853b51..42c7d8155e1a5ffebf2663399cbd8eabaca29b10 100644 (file)
--- a/env/env.c
+++ b/env/env.c
@@ -201,7 +201,9 @@ int env_load(void)
                        printf("OK\n");
                        gd->env_load_prio = prio;
 
+#if !CONFIG_IS_ENABLED(ENV_APPEND)
                        return 0;
+#endif
                } else if (ret == -ENOMSG) {
                        /* Handle "bad CRC" case */
                        if (best_prio == -1)
index 7b6781bc3546308f1b2e82a89adb2213c172214c..ef834badc528c1421ffa468950d813bb701f01a0 100644 (file)
@@ -826,6 +826,10 @@ int himport_r(struct hsearch_data *htab,
        if (nvars)
                memcpy(localvars, vars, sizeof(vars[0]) * nvars);
 
+#if CONFIG_IS_ENABLED(ENV_APPEND)
+       flag |= H_NOCLEAR;
+#endif
+
        if ((flag & H_NOCLEAR) == 0 && !nvars) {
                /* Destroy old hash table if one exists */
                debug("Destroy Hash Table: %p table = %p\n", htab,