summaryrefslogtreecommitdiffstats
path: root/commands/partition.c
blob: 164d4f0b5e4fe9bdb22c56fdfd6c11d2e6bd81d5 (plain)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
 * partition.c - parse a linux-like mtd partition definition and register
 *               the new partitions
 *
 * Copyright (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/**
 * @file
 * @brief partition handling and addpart and delpart command
 */

#ifdef CONFIG_ENABLE_PARTITION_NOISE
# define DEBUG
#endif

#include <common.h>
#include <command.h>
#include <driver.h>
#include <malloc.h>
#include <partition.h>
#include <errno.h>
#include <xfuncs.h>

static int dev_del_partitions(struct device_d *physdev)
{
	struct device_d *child, *tmp;
	int ret;

	device_for_each_child_safe(physdev, tmp, child) {
		struct partition *part = child->type_data;

		if (part->flags & PARTITION_FIXED) {
			debug("Skip fixed partition: %s\n", child->id);
			continue;
		}

		ret = unregister_device(child);
		if (ret) {
			printf("delete partition `%s' failed: %s\n", child->id, errno_str());
			return errno;
		}

		debug("deleted partition: %s\n", child->id);

		free(part);
	}

	return 0;
}

static int dev_check_fixed(struct device_d *physdev, struct partition *new_part)
{
	struct device_d *child;

	device_for_each_child(physdev, child) {
		struct partition *part = child->type_data;

		debug("check aginst partition: %s -", child->id);

		if (!(part->flags & PARTITION_FIXED)) {
			debug("  not fixed, ok\n");
			continue;
		}

		if  (new_part->offset == part->offset &&		/* new_part is exactly part */
		    ((new_part->device.size==0) || (new_part->device.size == part->device.size)) ) {
			debug("  fixed, but same size, ok\n");
			continue;
		}

		if ((new_part->offset >= part->offset &&
		     new_part->offset < part->offset + part->device.size) ||
		    (new_part->offset + new_part->device.size > part->offset &&
		     new_part->offset + new_part->device.size <= part->offset + part->device.size)) {
			printf(
				" failed\n"
				" partition spec %s \n"
				"   violates fixed partition %s\n", new_part->name, child->id);
			errno = -EINVAL;
			return errno;
		}
		else
			debug("  fixed and within limit?, ok\n");
	}

	return 0;
}

static int mtd_part_do_parse_one(struct partition *part, const char *str,
				 char **endp)
{
	ulong size;
	char *end;
	char buf[MAX_DRIVER_NAME];

	memset(buf, 0, MAX_DRIVER_NAME);

	if (*str == '-') {
		size = part->physdev->size - part->offset;
		end = (char *)str + 1;
	} else {
		size = strtoul_suffix(str, &end, 0);
	}

	if (size + part->offset > part->physdev->size) {
		printf("partition %s end is beyond device\n", part->name);
		return -EINVAL;
	}

	str = end;

	if (*str == '(') {
		str++;
		end = strchr(str, ')');
		if (!end) {
			printf("could not find matching ')'\n");
			return -EINVAL;
		}
		if (end - str >= MAX_DRIVER_NAME) {
			printf("device name too long\n");
			return -EINVAL;
		}

		memcpy(part->name, str, end - str);
		end++;
	}

	str = end;

	if (*str == 'r' && *(str + 1) == 'o') {
		part->flags |= PARTITION_READONLY;
		end = (char *)(str + 2);
	}

	if (endp)
		*endp = end;

	strcpy(part->device.name, "partition");
	part->device.size = size;

	return 0;
}

static int do_addpart(cmd_tbl_t * cmdtp, int argc, char *argv[])
{
	struct partition *part;
	struct device_d *dev;
	char *endp;
	int num = 0;
	unsigned long offset;

	if (argc != 3) {
		printf("Usage:\n  %s\n", cmdtp->usage);
		return 1;
	}

	dev = get_device_by_path(argv[1]);
	if (!dev) {
		printf("no such device: %s\n", argv[1]);
		return 1;
	}

	dev_del_partitions(dev);

	offset = 0;

	endp = argv[2];

	while (1) {
		part = xzalloc(sizeof(struct partition));

		part->offset = offset;
		part->physdev = dev;
		part->num = num;
		part->device.map_base = dev->map_base + offset;
		part->device.type_data = part;

		if (mtd_part_do_parse_one(part, endp, &endp))
			goto free_out;

		if (dev_check_fixed(dev, part))
			goto free_out;

		sprintf(part->device.id, "%s.%s", dev->id, part->name);
		if (register_device(&part->device))
			goto free_out;

		dev_add_child(dev, &part->device);

		offset += part->device.size;
		num++;

		if (!*endp)
			break;

		if (*endp != ',') {
			printf("parse error\n");
			goto err_out;
		}
		endp++;
	}

	return 0;

free_out:
	free(part);
err_out:
	dev_del_partitions(dev);
	return 1;
}

static __maybe_unused char cmd_addpart_help[] =
"Usage: addpart <device> <partition description>\n"
"\n"
"addpart adds a partition description to a device. The partition description\n"
"has the form\n"
"size1(name1)[ro],size2(name2)[ro],...\n"
"<device> is the device name under. Size can be given in decimal or if prefixed\n"
"with 0x in hex. Sizes can have an optional suffix K,M,G. The size of the last\n"
"partition can be specified as '-' for the remaining space of the device.\n"
"This format is the same as used in the Linux kernel for cmdline mtd partitions.\n"
"\n"
"Note: That this command has to be reworked and will probably change it's API.";

U_BOOT_CMD_START(addpart)
	.maxargs = 3,
	.cmd = do_addpart,
	.usage = "adds a partition table to a device",
	U_BOOT_CMD_HELP(cmd_addpart_help)
U_BOOT_CMD_END

/** @page addpart_command addpart Add a partition to a device
 *
 * Usage is: addpart \<device> \<partition description>
 *
 * Adds a partition description to a device. The partition description has the
 * form
 *
 * size1(name1)[ro],size2(name2)[ro],...
 *
 * \<device> is the device name under. Sizes can be given in decimal or - if
 * prefixed with 0x - in hex. Sizes can have an optional suffix K,M,G. The
 * size of the last partition can be specified as '-' for the remaining space
 * of the device.
 *
 * @note The format is the same as used in the Linux kernel for cmdline mtd
 * partitions.
 *
 * @note This command has to be reworked and will probably change it's API.
 */

static int do_delpart(cmd_tbl_t * cmdtp, int argc, char *argv[])
{
	struct device_d *dev;

	if (argc != 2) {
		printf("Usage:\n%s\n", cmdtp->usage);
		return 1;
	}

	dev = get_device_by_path(argv[1]);
	if (!dev) {
		printf("no such device: %s\n", argv[1]);
		return 1;
	}

	dev_del_partitions(dev);

	return 0;
}

static __maybe_unused char cmd_delpart_help[] =
"Usage: delpart <device>\n"
"Delete partitions previously added to a device with addpart.\n";

U_BOOT_CMD_START(delpart)
	.maxargs = 2,
	.cmd = do_delpart,
	.usage = "delete a partition table from a device",
	U_BOOT_CMD_HELP(cmd_delpart_help)
U_BOOT_CMD_END

/** @page delpart_command delpart Delete a partition
 *
 * Usage is: delpart \<device>
 *
 * Delete a partition previously added to a device with addpart.
 */