All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] FIX: Verify if array name doesn't exist already
@ 2011-12-22 14:21 Adam Kwolek
  2011-12-22 20:15 ` NeilBrown
  0 siblings, 1 reply; 2+ messages in thread
From: Adam Kwolek @ 2011-12-22 14:21 UTC (permalink / raw)
  To: neilb; +Cc: linux-raid, ed.ciechanowski, marcin.labun, dan.j.williams

When e.g. array name (an) is correct and it is the same as container name (cn),
file element creation /dev/md/an will replace /dev/md/cn.
This can cause that user cannot access container using /dev/md/cn.

Verify during array creation if chosen name is not already existing one.

Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
---

 Create.c |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/Create.c b/Create.c
index 5d1548b..e522d8e 100644
--- a/Create.c
+++ b/Create.c
@@ -558,6 +558,17 @@ int Create(struct supertype *st, char *mddev,
 		map_unlock(&map);
 		return 1;
 	}
+	/* verify if chosen_name is not in use,
+	 * it could be in conflict with already existing device
+	 * e.g. container, array
+	 */
+	if (stat(chosen_name, &stb) != -1) {
+		fprintf(stderr, Name ": Array name %s is in use already.\n",
+			chosen_name);
+		close(mdfd);
+		map_unlock(&map);
+		return 1;
+	}
 	mddev = chosen_name;
 
 	vers = md_get_version(mdfd);


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] FIX: Verify if array name doesn't exist already
  2011-12-22 14:21 [PATCH] FIX: Verify if array name doesn't exist already Adam Kwolek
@ 2011-12-22 20:15 ` NeilBrown
  0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2011-12-22 20:15 UTC (permalink / raw)
  To: Adam Kwolek; +Cc: linux-raid, ed.ciechanowski, marcin.labun, dan.j.williams

[-- Attachment #1: Type: text/plain, Size: 2750 bytes --]

On Thu, 22 Dec 2011 15:21:10 +0100 Adam Kwolek <adam.kwolek@intel.com> wrote:

> When e.g. array name (an) is correct and it is the same as container name (cn),
> file element creation /dev/md/an will replace /dev/md/cn.
> This can cause that user cannot access container using /dev/md/cn.
> 
> Verify during array creation if chosen name is not already existing one.
> 
> Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
> ---
> 
>  Create.c |   11 +++++++++++
>  1 files changed, 11 insertions(+), 0 deletions(-)
> 
> diff --git a/Create.c b/Create.c
> index 5d1548b..e522d8e 100644
> --- a/Create.c
> +++ b/Create.c
> @@ -558,6 +558,17 @@ int Create(struct supertype *st, char *mddev,
>  		map_unlock(&map);
>  		return 1;
>  	}
> +	/* verify if chosen_name is not in use,
> +	 * it could be in conflict with already existing device
> +	 * e.g. container, array
> +	 */
> +	if (stat(chosen_name, &stb) != -1) {
> +		fprintf(stderr, Name ": Array name %s is in use already.\n",
> +			chosen_name);
> +		close(mdfd);
> +		map_unlock(&map);
> +		return 1;
> +	}
>  	mddev = chosen_name;
>  
>  	vers = md_get_version(mdfd);


Thanks.  However I would rather use map_by_name to check for prior existence,
as create_mddev can actually create the device in /dev if udev is not in use.

So this is what I have committed.

NeilBrown

commit 3e9df86add05b3a759148a8a1760a44887654322
Author: Adam Kwolek <adam.kwolek@intel.com>
Date:   Fri Dec 23 07:13:55 2011 +1100

    FIX: Verify if array name doesn't exist already
    
    When e.g. array name (an) is correct and it is the same as container name (cn),
    file element creation /dev/md/an will replace /dev/md/cn.
    This can cause that user cannot access container using /dev/md/cn.
    
    Verify during array creation if chosen name is not already existing
    one.
    
    [Changed to use map_by_name() rather than stat() to determine prior
     existence - NeilBrown]
    
    
    Signed-off-by: Adam Kwolek <adam.kwolek@intel.com>
    Signed-off-by: NeilBrown <neilb@suse.de>

diff --git a/Create.c b/Create.c
index 5d1548b..90ff3ed 100644
--- a/Create.c
+++ b/Create.c
@@ -558,6 +558,18 @@ int Create(struct supertype *st, char *mddev,
 		map_unlock(&map);
 		return 1;
 	}
+	/* verify if chosen_name is not in use,
+	 * it could be in conflict with already existing device
+	 * e.g. container, array
+	 */
+	if (strncmp(chosen_name, "/dev/md/", 8) == 0
+	    && map_by_name(&map, chosen_name+8) != NULL) {
+		fprintf(stderr, Name ": Array name %s is in use already.\n",
+			chosen_name);
+		close(mdfd);
+		map_unlock(&map);
+		return 1;
+	}
 	mddev = chosen_name;
 
 	vers = md_get_version(mdfd);

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-22 20:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-22 14:21 [PATCH] FIX: Verify if array name doesn't exist already Adam Kwolek
2011-12-22 20:15 ` NeilBrown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.