From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 07/17] move cmdline partition parsing code to separate file
Date: Thu, 12 Feb 2015 09:54:24 +0100 [thread overview]
Message-ID: <1423731274-9860-8-git-send-email-s.hauer@pengutronix.de> (raw)
In-Reply-To: <1423731274-9860-1-git-send-email-s.hauer@pengutronix.de>
So it's no longer local to the addpart/delpart code and can be used
from other code.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
commands/partition.c | 81 +++----------------------------------------
include/cmdlinepart.h | 11 ++++++
lib/Makefile | 1 +
lib/cmdlinepart.c | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 111 insertions(+), 77 deletions(-)
create mode 100644 include/cmdlinepart.h
create mode 100644 lib/cmdlinepart.c
diff --git a/commands/partition.c b/commands/partition.c
index ef6d9c9..c95433f 100644
--- a/commands/partition.c
+++ b/commands/partition.c
@@ -35,82 +35,9 @@
#include <linux/stat.h>
#include <libgen.h>
#include <getopt.h>
+#include <cmdlinepart.h>
#include <linux/err.h>
-#define SIZE_REMAINING ((ulong)-1)
-
-#define PART_ADD_DEVNAME (1 << 0)
-
-static int mtd_part_do_parse_one(char *devname, const char *partstr,
- char **endp, loff_t *offset,
- loff_t devsize, size_t *retsize,
- unsigned int pflags)
-{
- loff_t size;
- char *end;
- char buf[PATH_MAX] = {};
- unsigned long flags = 0;
- int ret = 0;
- struct cdev *cdev;
-
- memset(buf, 0, PATH_MAX);
-
- if (*partstr == '-') {
- size = SIZE_REMAINING;
- end = (char *)partstr + 1;
- } else {
- size = strtoull_suffix(partstr, &end, 0);
- }
-
- if (*end == '@')
- *offset = strtoull_suffix(end+1, &end, 0);
-
- if (size == SIZE_REMAINING)
- size = devsize - *offset;
-
- partstr = end;
-
- if (*partstr == '(') {
- partstr++;
- end = strchr((char *) partstr, ')');
- if (!end) {
- printf("could not find matching ')'\n");
- return -EINVAL;
- }
-
- if (pflags & PART_ADD_DEVNAME)
- sprintf(buf, "%s.", devname);
- memcpy(buf + strlen(buf), partstr, end - partstr);
-
- end++;
- }
-
- if (size + *offset > devsize) {
- printf("%s: partition end is beyond device\n", buf);
- return -EINVAL;
- }
-
- partstr = end;
-
- if (*partstr == 'r' && *(partstr + 1) == 'o') {
- flags |= DEVFS_PARTITION_READONLY;
- end = (char *)(partstr + 2);
- }
-
- if (endp)
- *endp = end;
-
- *retsize = size;
-
- cdev = devfs_add_partition(devname, *offset, size, flags, buf);
- if (IS_ERR(cdev)) {
- ret = PTR_ERR(cdev);
- printf("cannot create %s: %s\n", buf, strerror(-ret));
- }
-
- return ret;
-}
-
static int do_addpart(int argc, char *argv[])
{
char *devname;
@@ -119,12 +46,12 @@ static int do_addpart(int argc, char *argv[])
loff_t devsize;
struct stat s;
int opt;
- unsigned int flags = PART_ADD_DEVNAME;
+ unsigned int flags = CMDLINEPART_ADD_DEVNAME;
while ((opt = getopt(argc, argv, "n")) > 0) {
switch (opt) {
case 'n':
- flags &= ~PART_ADD_DEVNAME;
+ flags &= ~CMDLINEPART_ADD_DEVNAME;
break;
}
}
@@ -145,7 +72,7 @@ static int do_addpart(int argc, char *argv[])
while (1) {
size_t size = 0;
- if (mtd_part_do_parse_one(devname, endp, &endp, &offset,
+ if (cmdlinepart_do_parse_one(devname, endp, &endp, &offset,
devsize, &size, flags))
return 1;
diff --git a/include/cmdlinepart.h b/include/cmdlinepart.h
new file mode 100644
index 0000000..5ffa3c4
--- /dev/null
+++ b/include/cmdlinepart.h
@@ -0,0 +1,11 @@
+#ifndef __CMD_LINE_PART_H
+#define __CMD_LINE_PART_H
+
+#define CMDLINEPART_ADD_DEVNAME (1 << 0)
+
+int cmdlinepart_do_parse_one(char *devname, const char *partstr,
+ char **endp, loff_t *offset,
+ loff_t devsize, size_t *retsize,
+ unsigned int partition_flags);
+
+#endif /* __CMD_LINE_PART_H */
diff --git a/lib/Makefile b/lib/Makefile
index 226570a..b97e52d 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -18,6 +18,7 @@ obj-y += kfifo.o
obj-y += libbb.o
obj-y += libgen.o
obj-y += stringlist.o
+obj-y += cmdlinepart.o
obj-y += recursive_action.o
obj-y += make_directory.o
obj-y += math.o
diff --git a/lib/cmdlinepart.c b/lib/cmdlinepart.c
new file mode 100644
index 0000000..0474992
--- /dev/null
+++ b/lib/cmdlinepart.c
@@ -0,0 +1,95 @@
+/*
+ * command line partition parsing code
+ *
+ * Copyright (c) 2015 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.
+ *
+ */
+#include <common.h>
+#include <driver.h>
+#include <fs.h>
+#include <linux/err.h>
+#include <cmdlinepart.h>
+
+#define SIZE_REMAINING ((size_t)-1)
+
+int cmdlinepart_do_parse_one(char *devname, const char *partstr,
+ char **endp, loff_t *offset,
+ loff_t devsize, size_t *retsize,
+ unsigned int partition_flags)
+{
+ loff_t size;
+ char *end;
+ char buf[PATH_MAX] = {};
+ unsigned long flags = 0;
+ int ret = 0;
+ struct cdev *cdev;
+
+ memset(buf, 0, PATH_MAX);
+
+ if (*partstr == '-') {
+ size = SIZE_REMAINING;
+ end = (char *)partstr + 1;
+ } else {
+ size = strtoull_suffix(partstr, &end, 0);
+ }
+
+ if (*end == '@')
+ *offset = strtoull_suffix(end+1, &end, 0);
+
+ if (size == SIZE_REMAINING)
+ size = devsize - *offset;
+
+ partstr = end;
+
+ if (*partstr == '(') {
+ partstr++;
+ end = strchr((char *) partstr, ')');
+ if (!end) {
+ printf("could not find matching ')'\n");
+ return -EINVAL;
+ }
+
+ if (partition_flags & CMDLINEPART_ADD_DEVNAME)
+ sprintf(buf, "%s.", devname);
+ memcpy(buf + strlen(buf), partstr, end - partstr);
+
+ end++;
+ }
+
+ if (size + *offset > devsize) {
+ printf("%s: partition end is beyond device\n", buf);
+ return -EINVAL;
+ }
+
+ partstr = end;
+
+ if (*partstr == 'r' && *(partstr + 1) == 'o') {
+ flags |= DEVFS_PARTITION_READONLY;
+ end = (char *)(partstr + 2);
+ }
+
+ if (endp)
+ *endp = end;
+
+ *retsize = size;
+
+ cdev = devfs_add_partition(devname, *offset, size, flags, buf);
+ if (IS_ERR(cdev)) {
+ ret = PTR_ERR(cdev);
+ printf("cannot create %s: %s\n", buf, strerror(-ret));
+ }
+
+ return ret;
+}
--
2.1.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2015-02-12 8:55 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-12 8:54 mtd partition handling updates Sascha Hauer
2015-02-12 8:54 ` [PATCH 01/17] of: Add for_each_child_of_node_safe Sascha Hauer
2015-02-12 8:54 ` [PATCH 02/17] mtd: core: add error checks Sascha Hauer
2015-02-12 8:54 ` [PATCH 03/17] mtd: partitions: Use xstrdup Sascha Hauer
2015-02-12 8:54 ` [PATCH 04/17] mtd: partitions: Add error check Sascha Hauer
2015-02-12 8:54 ` [PATCH 05/17] mtd: Add partitions to list Sascha Hauer
2015-02-12 8:54 ` [PATCH 06/17] mtd: nand: remove automatically created bb devices Sascha Hauer
2015-02-12 8:54 ` Sascha Hauer [this message]
2015-02-12 8:54 ` [PATCH 08/17] cmdlinepart: Change SIZE_REMAINING to loff_t Sascha Hauer
2015-02-12 8:54 ` [PATCH 09/17] cmdlinepart: make argument types safer Sascha Hauer
2015-02-12 8:54 ` [PATCH 10/17] cmdlinepart: add function to parse a cmdline partition string Sascha Hauer
2015-02-12 8:54 ` [PATCH 11/17] cmndlinepart: skip devname if partstr already contains it Sascha Hauer
2015-02-12 8:54 ` [PATCH 12/17] mtd: forbid conflicting mtd partitions Sascha Hauer
2015-02-12 8:54 ` [PATCH 13/17] mtd: Use flags parameter in mtd_add_partition Sascha Hauer
2015-02-12 8:54 ` [PATCH 14/17] mtd: Add a partitions parameter to mtd devices Sascha Hauer
2015-02-12 8:54 ` [PATCH 15/17] mtd: fixup device tree partitions Sascha Hauer
2015-02-12 8:54 ` [PATCH 16/17] defaultenv-2: mtdparts-add: remove unused variable Sascha Hauer
2015-02-12 8:54 ` [PATCH 17/17] defaultenv-2: mtdparts-add: Use new partition parameter Sascha Hauer
2015-02-13 5:54 ` mtd partition handling updates Bo Shen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1423731274-9860-8-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox