From: Adam Kwolek Date: Thu, 22 Dec 2011 20:13:55 +0000 (+1100) Subject: FIX: Verify if array name doesn't exist already X-Git-Tag: mdadm-3.2.3~11 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Fmdadm.git;a=commitdiff_plain;h=3e9df86add05b3a759148a8a1760a44887654322 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 Signed-off-by: NeilBrown --- diff --git a/Create.c b/Create.c index 5d1548b2..90ff3edd 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);