summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarel Zak2019-06-10 11:43:56 +0200
committerKarel Zak2019-06-17 15:46:10 +0200
commit73ec5e164c8e67bb2621c58fcccbdef54da8e1ca (patch)
tree281d3d1bd5ce50cfaeaf15499875328948de8da1
parentlibfdisk: (docs) add notes about fdisk_enable_wipe() (diff)
downloadkernel-qcow2-util-linux-73ec5e164c8e67bb2621c58fcccbdef54da8e1ca.tar.gz
kernel-qcow2-util-linux-73ec5e164c8e67bb2621c58fcccbdef54da8e1ca.tar.xz
kernel-qcow2-util-linux-73ec5e164c8e67bb2621c58fcccbdef54da8e1ca.zip
libfdisk: fix fdisk_script_get_table()
Make sure we never return NULL and we reuse the table in code. Signed-off-by: Karel Zak <kzak@redhat.com>
-rw-r--r--libfdisk/src/script.c32
-rw-r--r--libfdisk/src/table.c2
2 files changed, 20 insertions, 14 deletions
diff --git a/libfdisk/src/script.c b/libfdisk/src/script.c
index 0a165aad4..dbbd53eaf 100644
--- a/libfdisk/src/script.c
+++ b/libfdisk/src/script.c
@@ -162,8 +162,9 @@ static void fdisk_reset_script(struct fdisk_script *dp)
assert(dp);
DBG(SCRIPT, ul_debugobj(dp, "reset"));
- fdisk_unref_table(dp->table);
- dp->table = NULL;
+
+ if (dp->table)
+ fdisk_reset_table(dp->table);
while (!list_empty(&dp->headers)) {
struct fdisk_scriptheader *fi = list_entry(dp->headers.next,
@@ -333,14 +334,22 @@ int fdisk_script_set_header(struct fdisk_script *dp,
*
* The table represents partitions holded by the script. The table is possible to
* fill by fdisk_script_read_context() or fdisk_script_read_file(). All the "read"
- * functions reset the table. See also fdisk_script_set_table().
+ * functions remove old partitions from the table. See also fdisk_script_set_table().
*
* Returns: NULL or script table.
*/
struct fdisk_table *fdisk_script_get_table(struct fdisk_script *dp)
{
assert(dp);
- return dp ? dp->table : NULL;
+
+ if (!dp->table)
+ /*
+ * Make sure user has access to the same table as script. If
+ * there is no table than create a new and reuse it later.
+ */
+ dp->table = fdisk_new_table();
+
+ return dp->table;
}
/**
@@ -448,7 +457,7 @@ int fdisk_script_read_context(struct fdisk_script *dp, struct fdisk_context *cxt
if (!lb)
return -EINVAL;
- /* allocate and fill new table */
+ /* allocate (if not yet) and fill table */
rc = fdisk_get_partitions(cxt, &dp->table);
if (rc)
return rc;
@@ -590,7 +599,7 @@ static int write_file_json(struct fdisk_script *dp, FILE *f)
}
- if (!dp->table) {
+ if (!dp->table || fdisk_table_is_empty(dp->table)) {
DBG(SCRIPT, ul_debugobj(dp, "script table empty"));
goto done;
}
@@ -699,7 +708,7 @@ static int write_file_sfdisk(struct fdisk_script *dp, FILE *f)
devname = fi->data;
}
- if (!dp->table) {
+ if (!dp->table || fdisk_table_is_empty(dp->table)) {
DBG(SCRIPT, ul_debugobj(dp, "script table empty"));
return 0;
}
@@ -1290,11 +1299,8 @@ static int fdisk_script_read_buffer(struct fdisk_script *dp, char *s)
if (!s || !*s)
return 0; /* nothing baby, ignore */
- if (!dp->table) {
- dp->table = fdisk_new_table();
- if (!dp->table)
- return -ENOMEM;
- }
+ if (!dp->table && fdisk_script_get_table(dp) == NULL)
+ return -ENOMEM;
/* parse header lines only if no partition specified yet */
if (fdisk_table_is_empty(dp->table) && is_header_line(s))
@@ -1619,7 +1625,7 @@ static int test_stdin(struct fdisk_test *ts, int argc, char *argv[])
printf("<start>, <size>, <type>, <bootable: *|->\n");
do {
struct fdisk_partition *pa;
- size_t n = fdisk_table_get_nents(dp->table);
+ size_t n = dp->table ? fdisk_table_get_nents(dp->table) : 0;
printf(" #%zu :\n", n + 1);
rc = fdisk_script_read_line(dp, stdin, buf, sizeof(buf));
diff --git a/libfdisk/src/table.c b/libfdisk/src/table.c
index 1f9d5a28a..8a3a935af 100644
--- a/libfdisk/src/table.c
+++ b/libfdisk/src/table.c
@@ -303,7 +303,7 @@ int fdisk_table_remove_partition(struct fdisk_table *tb, struct fdisk_partition
* @tb: returns table
*
* This function adds partitions from disklabel to @table, it allocates a new
- * table if if @table points to NULL.
+ * table if @table points to NULL.
*
* Returns: 0 on success, otherwise, a corresponding error.
*/