]> git.ipfire.org Git - people/ms/u-boot.git/blame - env/fat.c
Fix misaligned buffer in env_fat_save
[people/ms/u-boot.git] / env / fat.c
CommitLineData
57210c7c
MS
1/*
2 * (c) Copyright 2011 by Tigris Elektronik GmbH
3 *
4 * Author:
5 * Maximilian Schwerin <mvs@tigris.de>
6 *
3765b3e7 7 * SPDX-License-Identifier: GPL-2.0+
57210c7c
MS
8 */
9
10#include <common.h>
11
12#include <command.h>
13#include <environment.h>
14#include <linux/stddef.h>
15#include <malloc.h>
cf92e05c 16#include <memalign.h>
57210c7c
MS
17#include <search.h>
18#include <errno.h>
19#include <fat.h>
20#include <mmc.h>
21
4415f1d1
SG
22#ifdef CONFIG_SPL_BUILD
23/* TODO(sjg@chromium.org): Figure out why this is needed */
24# if !defined(CONFIG_TARGET_AM335X_EVM) || defined(CONFIG_SPL_OS_BOOT)
25# define LOADENV
26# endif
27#else
28# define LOADENV
29# if defined(CONFIG_CMD_SAVEENV)
30# define CMD_SAVEENV
31# endif
32#endif
33
57210c7c
MS
34DECLARE_GLOBAL_DATA_PTR;
35
4415f1d1 36#ifdef CMD_SAVEENV
e5bce247 37static int env_fat_save(void)
57210c7c 38{
cda87ec5 39 env_t __aligned(ARCH_DMA_MINALIGN) env_new;
4101f687 40 struct blk_desc *dev_desc = NULL;
be354c1a
WJ
41 disk_partition_t info;
42 int dev, part;
9aa90c1d 43 int err;
1ad0b98a 44 loff_t size;
57210c7c 45
7ce1526e
MV
46 err = env_export(&env_new);
47 if (err)
48 return err;
57210c7c 49
43ba3c59
TR
50 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
51 CONFIG_ENV_FAT_DEVICE_AND_PART,
be354c1a
WJ
52 &dev_desc, &info, 1);
53 if (part < 0)
57210c7c 54 return 1;
9aa90c1d 55
bcce53d0 56 dev = dev_desc->devnum;
be354c1a 57 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
58 /*
59 * This printf is embedded in the messages from env_save that
60 * will calling it. The missing \n is intentional.
61 */
62 printf("Unable to use %s %d:%d... ",
43ba3c59 63 CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
64 return 1;
65 }
66
43ba3c59 67 err = file_fat_write(CONFIG_ENV_FAT_FILE, (void *)&env_new, 0, sizeof(env_t),
1ad0b98a 68 &size);
9aa90c1d 69 if (err == -1) {
d0816da5
MR
70 /*
71 * This printf is embedded in the messages from env_save that
72 * will calling it. The missing \n is intentional.
73 */
74 printf("Unable to write \"%s\" from %s%d:%d... ",
43ba3c59 75 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
57210c7c
MS
76 return 1;
77 }
78
57210c7c
MS
79 return 0;
80}
4415f1d1 81#endif /* CMD_SAVEENV */
57210c7c 82
4415f1d1 83#ifdef LOADENV
c5951991 84static int env_fat_load(void)
57210c7c 85{
6d1966e1 86 ALLOC_CACHE_ALIGN_BUFFER(char, buf, CONFIG_ENV_SIZE);
4101f687 87 struct blk_desc *dev_desc = NULL;
be354c1a
WJ
88 disk_partition_t info;
89 int dev, part;
9aa90c1d 90 int err;
57210c7c 91
43ba3c59
TR
92 part = blk_get_device_part_str(CONFIG_ENV_FAT_INTERFACE,
93 CONFIG_ENV_FAT_DEVICE_AND_PART,
be354c1a
WJ
94 &dev_desc, &info, 1);
95 if (part < 0)
96 goto err_env_relocate;
97
bcce53d0 98 dev = dev_desc->devnum;
be354c1a 99 if (fat_set_blk_dev(dev_desc, &info) != 0) {
d0816da5
MR
100 /*
101 * This printf is embedded in the messages from env_save that
102 * will calling it. The missing \n is intentional.
103 */
104 printf("Unable to use %s %d:%d... ",
43ba3c59 105 CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 106 goto err_env_relocate;
57210c7c
MS
107 }
108
43ba3c59 109 err = file_fat_read(CONFIG_ENV_FAT_FILE, buf, CONFIG_ENV_SIZE);
9aa90c1d 110 if (err == -1) {
d0816da5
MR
111 /*
112 * This printf is embedded in the messages from env_save that
113 * will calling it. The missing \n is intentional.
114 */
115 printf("Unable to read \"%s\" from %s%d:%d... ",
43ba3c59 116 CONFIG_ENV_FAT_FILE, CONFIG_ENV_FAT_INTERFACE, dev, part);
be354c1a 117 goto err_env_relocate;
57210c7c
MS
118 }
119
2166ebf7 120 return env_import(buf, 1);
be354c1a
WJ
121
122err_env_relocate:
123 set_default_env(NULL);
c5951991
SG
124
125 return -EIO;
57210c7c 126}
4415f1d1
SG
127#endif /* LOADENV */
128
129U_BOOT_ENV_LOCATION(fat) = {
130 .location = ENVL_FAT,
ac358beb 131 ENV_NAME("FAT")
4415f1d1 132#ifdef LOADENV
e5bce247 133 .load = env_fat_load,
4415f1d1
SG
134#endif
135#ifdef CMD_SAVEENV
e5bce247 136 .save = env_save_ptr(env_fat_save),
4415f1d1 137#endif
4415f1d1 138};