2 * (C) Copyright 2011 Free Electrons
3 * David Wagner <david.wagner@free-electrons.com>
5 * Inspired from envcrc.c:
7 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 /* We want the GNU version of basename() */
38 #include <sys/types.h>
41 #include <u-boot/crc.h>
44 #define CRC_SIZE sizeof(uint32_t)
46 static void usage(const char *exec_name)
48 fprintf(stderr, "%s [-h] [-r] [-b] [-p <byte>] -s <environment partition size> -o <output> <input file>\n"
50 "This tool takes a key=value input file (same as would a `printenv' show) and generates the corresponding environment image, ready to be flashed.\n"
52 "\tThe input file is in format:\n"
56 "\t-r : the environment has multiple copies in flash\n"
57 "\t-b : the target is big endian (default is little endian)\n"
58 "\t-p <byte> : fill the image with <byte> bytes instead of 0xff bytes\n"
59 "\t-V : print version information and exit\n"
61 "If the input file is \"-\", data is read from standard input\n",
65 int main(int argc, char **argv)
67 uint32_t crc, targetendian_crc;
68 const char *txt_filename = NULL, *bin_filename = NULL;
70 unsigned char *dataptr, *envptr;
71 unsigned char *filebuf = NULL;
72 unsigned int filesize = 0, envsize = 0, datasize = 0;
75 unsigned char padbyte = 0xff;
78 int ret = EXIT_SUCCESS;
80 struct stat txt_file_stat;
85 prg = basename(argv[0]);
87 /* Turn off getopt()'s internal error message */
90 /* Parse the cmdline */
91 while ((option = getopt(argc, argv, ":s:o:rbp:hV")) != -1) {
94 datasize = strtol(optarg, NULL, 0);
97 bin_filename = strdup(optarg);
99 fprintf(stderr, "Can't strdup() the output filename\n");
110 padbyte = strtol(optarg, NULL, 0);
116 printf("%s version %s\n", prg, PLAIN_VERSION);
119 fprintf(stderr, "Missing argument for option -%c\n",
124 fprintf(stderr, "Wrong option -%c\n", optopt);
130 /* Check datasize and allocate the data */
132 fprintf(stderr, "Please specify the size of the environment partition.\n");
137 dataptr = malloc(datasize * sizeof(*dataptr));
139 fprintf(stderr, "Can't alloc %d bytes for dataptr.\n",
145 * envptr points to the beginning of the actual environment (after the
146 * crc and possible `redundant' byte
148 envsize = datasize - (CRC_SIZE + redundant);
149 envptr = dataptr + CRC_SIZE + redundant;
151 /* Pad the environment with the padding byte */
152 memset(envptr, padbyte, envsize);
154 /* Open the input file ... */
155 if (optind >= argc) {
156 fprintf(stderr, "Please specify an input filename\n");
160 txt_filename = argv[optind];
161 if (strcmp(txt_filename, "-") == 0) {
163 int readlen = sizeof(*envptr) * 2048;
164 txt_fd = STDIN_FILENO;
167 filebuf = realloc(filebuf, readlen);
168 readbytes = read(txt_fd, filebuf + filesize, readlen);
169 filesize += readbytes;
170 } while (readbytes == readlen);
173 txt_fd = open(txt_filename, O_RDONLY);
175 fprintf(stderr, "Can't open \"%s\": %s\n",
176 txt_filename, strerror(errno));
179 /* ... and check it */
180 ret = fstat(txt_fd, &txt_file_stat);
182 fprintf(stderr, "Can't stat() on \"%s\": %s\n",
183 txt_filename, strerror(errno));
187 filesize = txt_file_stat.st_size;
188 /* Read the raw input file and transform it */
189 filebuf = malloc(sizeof(*envptr) * filesize);
190 ret = read(txt_fd, filebuf, sizeof(*envptr) * filesize);
191 if (ret != sizeof(*envptr) * filesize) {
192 fprintf(stderr, "Can't read the whole input file\n");
197 /* The +1 is for the additionnal ending \0. See below. */
198 if (filesize + 1 > envsize) {
199 fprintf(stderr, "The input file is larger than the environment partition size\n");
203 /* Replace newlines separating variables with \0 */
204 for (fp = 0, ep = 0 ; fp < filesize ; fp++) {
205 if (filebuf[fp] == '\n') {
208 * Newlines at the beginning of the file ?
212 } else if (filebuf[fp-1] == '\\') {
214 * Embedded newline in a variable.
216 * The backslash was added to the envptr; rewind
217 * and replace it with a newline
222 /* End of a variable */
225 } else if (filebuf[fp] == '#') {
226 if (fp != 0 && filebuf[fp-1] == '\n') {
227 /* This line is a comment, let's skip it */
228 while (fp < txt_file_stat.st_size && fp++ &&
229 filebuf[fp] != '\n');
231 envptr[ep++] = filebuf[fp];
234 envptr[ep++] = filebuf[fp];
238 * Make sure there is a final '\0'
239 * And do it again on the next byte to mark the end of the environment.
241 if (envptr[ep-1] != '\0') {
244 * The text file doesn't have an ending newline. We need to
245 * check the env size again to make sure we have room for two \0
248 fprintf(stderr, "The environment file is too large for the target environment storage\n");
256 /* Computes the CRC and put it at the beginning of the data */
257 crc = crc32(0, envptr, envsize);
258 targetendian_crc = bigendian ? cpu_to_be32(crc) : cpu_to_le32(crc);
260 memcpy(dataptr, &targetendian_crc, sizeof(uint32_t));
262 bin_fd = creat(bin_filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
264 fprintf(stderr, "Can't open output file \"%s\": %s\n",
265 bin_filename, strerror(errno));
269 if (write(bin_fd, dataptr, sizeof(*dataptr) * datasize) !=
270 sizeof(*dataptr) * datasize) {
271 fprintf(stderr, "write() failed: %s\n", strerror(errno));