forked from pengutronix/genimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimage-file.c
135 lines (111 loc) · 3.01 KB
/
image-file.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* Copyright (c) 2011 Sascha Hauer <[email protected]>, Pengutronix
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <confuse.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <sys/stat.h>
#include "genimage.h"
struct file {
char *name;
char *infile;
cfg_bool_t copy;
};
static int file_parse_holes(struct image *image, cfg_t *cfg)
{
int i;
image->n_holes = cfg ? cfg_size(cfg, "holes") : 0;
if (image->n_holes == 0)
return 0;
image->holes = xzalloc(image->n_holes * sizeof(*image->holes));
for (i = 0; i < image->n_holes; i++) {
const char *s = cfg_getnstr(cfg, "holes", i);
char *start, *end;
int len;
if (sscanf(s, " ( %m[0-9skKMG] ; %m[0-9skKMG] ) %n", &start, &end, &len) != 2 ||
len != (int)strlen(s)) {
image_error(image, "invalid hole specification '%s', use '(<start>;<end>)'\n",
s);
return -EINVAL;
}
image->holes[i].start = strtoul_suffix(start, NULL, NULL);
image->holes[i].end = strtoul_suffix(end, NULL, NULL);
free(start);
free(end);
image_debug(image, "added hole (%llu, %llu)\n", image->holes[i].start, image->holes[i].end);
}
return 0;
}
static int file_generate(struct image *image)
{
struct file *f = image->handler_priv;
int ret;
if (!f->copy)
return 0;
if (!strcmp(f->infile, imageoutfile(image)))
return 0;
ret = systemp(image, "cp '%s' '%s'", f->infile, imageoutfile(image));
return ret;
}
static int file_setup(struct image *image, cfg_t *cfg)
{
struct file *f = xzalloc(sizeof(*f));
struct stat s;
int ret;
if (cfg)
f->name = cfg_getstr(cfg, "name");
if (!f->name)
f->name = strdup(image->file);
if (f->name[0] == '/')
f->infile = strdup(f->name);
else
xasprintf(&f->infile, "%s/%s", inputpath(), f->name);
ret = stat(f->infile, &s);
if (ret) {
ret = -errno;
image_error(image, "stat(%s) failed: %s\n", f->infile,
strerror(errno));
return ret;
}
if (!image->size)
image->size = s.st_size;
if (cfg)
f->copy = cfg_getbool(cfg, "copy");
else
f->copy = cfg_false;
if (!f->copy) {
free(image->outfile);
image->outfile = strdup(f->infile);
}
ret = file_parse_holes(image, cfg);
if (ret)
return ret;
image->handler_priv = f;
return 0;
}
static cfg_opt_t file_opts[] = {
CFG_STR("name", NULL, CFGF_NONE),
CFG_BOOL("copy", cfg_true, CFGF_NONE),
CFG_STR_LIST("holes", NULL, CFGF_NONE),
CFG_END()
};
struct image_handler file_handler = {
.type = "file",
.generate = file_generate,
.setup = file_setup,
.opts = file_opts,
};