Commit 856a6f1d authored by Peter Rajnoha's avatar Peter Rajnoha Committed by Alasdair G Kergon

dm ioctl: return uevent flag after rename

All the dm ioctls that generate uevents set the DM_UEVENT_GENERATED flag so
that userspace knows whether or not to wait for a uevent to be processed
before continuing,

The dm rename ioctl sets this flag but was not structured to return it
to userspace.  This patch restructures the rename ioctl processing to
behave like the other ioctls that return data and so fix this.
Signed-off-by: default avatarPeter Rajnoha <prajnoha@redhat.com>
Signed-off-by: default avatarAlasdair G Kergon <agk@redhat.com>
parent 094ea9a0
...@@ -285,19 +285,20 @@ static void dm_hash_remove_all(int keep_open_devices) ...@@ -285,19 +285,20 @@ static void dm_hash_remove_all(int keep_open_devices)
up_write(&_hash_lock); up_write(&_hash_lock);
} }
static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old, static struct mapped_device *dm_hash_rename(struct dm_ioctl *param,
const char *new) const char *new)
{ {
char *new_name, *old_name; char *new_name, *old_name;
struct hash_cell *hc; struct hash_cell *hc;
struct dm_table *table; struct dm_table *table;
struct mapped_device *md;
/* /*
* duplicate new. * duplicate new.
*/ */
new_name = kstrdup(new, GFP_KERNEL); new_name = kstrdup(new, GFP_KERNEL);
if (!new_name) if (!new_name)
return -ENOMEM; return ERR_PTR(-ENOMEM);
down_write(&_hash_lock); down_write(&_hash_lock);
...@@ -306,24 +307,24 @@ static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old, ...@@ -306,24 +307,24 @@ static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old,
*/ */
hc = __get_name_cell(new); hc = __get_name_cell(new);
if (hc) { if (hc) {
DMWARN("asked to rename to an already existing name %s -> %s", DMWARN("asked to rename to an already-existing name %s -> %s",
old, new); param->name, new);
dm_put(hc->md); dm_put(hc->md);
up_write(&_hash_lock); up_write(&_hash_lock);
kfree(new_name); kfree(new_name);
return -EBUSY; return ERR_PTR(-EBUSY);
} }
/* /*
* Is there such a device as 'old' ? * Is there such a device as 'old' ?
*/ */
hc = __get_name_cell(old); hc = __get_name_cell(param->name);
if (!hc) { if (!hc) {
DMWARN("asked to rename a non existent device %s -> %s", DMWARN("asked to rename a non-existent device %s -> %s",
old, new); param->name, new);
up_write(&_hash_lock); up_write(&_hash_lock);
kfree(new_name); kfree(new_name);
return -ENXIO; return ERR_PTR(-ENXIO);
} }
/* /*
...@@ -345,13 +346,14 @@ static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old, ...@@ -345,13 +346,14 @@ static int dm_hash_rename(uint32_t cookie, uint32_t *flags, const char *old,
dm_table_put(table); dm_table_put(table);
} }
if (!dm_kobject_uevent(hc->md, KOBJ_CHANGE, cookie)) if (!dm_kobject_uevent(hc->md, KOBJ_CHANGE, param->event_nr))
*flags |= DM_UEVENT_GENERATED_FLAG; param->flags |= DM_UEVENT_GENERATED_FLAG;
dm_put(hc->md); md = hc->md;
up_write(&_hash_lock); up_write(&_hash_lock);
kfree(old_name); kfree(old_name);
return 0;
return md;
} }
/*----------------------------------------------------------------- /*-----------------------------------------------------------------
...@@ -760,6 +762,7 @@ static int dev_rename(struct dm_ioctl *param, size_t param_size) ...@@ -760,6 +762,7 @@ static int dev_rename(struct dm_ioctl *param, size_t param_size)
{ {
int r; int r;
char *new_name = (char *) param + param->data_start; char *new_name = (char *) param + param->data_start;
struct mapped_device *md;
if (new_name < param->data || if (new_name < param->data ||
invalid_str(new_name, (void *) param + param_size) || invalid_str(new_name, (void *) param + param_size) ||
...@@ -772,10 +775,14 @@ static int dev_rename(struct dm_ioctl *param, size_t param_size) ...@@ -772,10 +775,14 @@ static int dev_rename(struct dm_ioctl *param, size_t param_size)
if (r) if (r)
return r; return r;
param->data_size = 0; md = dm_hash_rename(param, new_name);
if (IS_ERR(md))
return PTR_ERR(md);
return dm_hash_rename(param->event_nr, &param->flags, param->name, __dev_status(md, param);
new_name); dm_put(md);
return 0;
} }
static int dev_set_geometry(struct dm_ioctl *param, size_t param_size) static int dev_set_geometry(struct dm_ioctl *param, size_t param_size)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment