Doug Ledford: Create directory to contain mapfile ( Assuming parent exists and

Martin F. Krafft madduck at alioth.debian.org
Sat Aug 28 18:43:55 UTC 2010


Module: mdadm
Branch: build
Commit: 435b90e7d41a17f35a984112cace471c975906f4
URL:    http://git.debian.org/?p=pkg-mdadm/mdadm.git;a=commit;h=435b90e7d41a17f35a984112cace471c975906f4

Author: Doug Ledford <dledford at redhat.com>
Date:   Tue Mar 16 23:00:11 2010 -0400

Create directory to contain mapfile (Assuming parent exists and
filesystem is writable).
This particularly keeps udev happy if VAR_RUN is set to /dev/md.

Signed-off-by: Doug Ledford <dledford at redhat.com>
Signed-off-by: NeilBrown <neilb at suse.de>

---

 mapfile.c |   17 +++++++++++++----
 mdmon.c   |    2 +-
 2 files changed, 14 insertions(+), 5 deletions(-)

diff --git a/mapfile.c b/mapfile.c
index 366ebe3..89187ac 100644
--- a/mapfile.c
+++ b/mapfile.c
@@ -29,7 +29,7 @@
  */
 
 /* /var/run/mdadm.map is used to track arrays being created in --incremental
- * more.  It particularly allows lookup from UUID to array device, but
+ * mode.  It particularly allows lookup from UUID to array device, but
  * also allows the array device name to be easily found.
  *
  * The map file is line based with space separated fields.  The fields are:
@@ -42,8 +42,8 @@
  * However /var/run may not exist or be writable in early boot.  And if
  * no-one has created /var/run/mdadm, we still want to survive.
  * So possible locations are:
- *   /var/run/mdadm/map  /var/run/mdadm.map  /dev/.mdadm.map
- * the last, because udev requires a writable /dev very early.
+ *   /var/run/mdadm/map  /var/run/mdadm.map  /lib/initrw/madam/map
+ * The last can easily be change at compile to e.g. somewhere in /dev.
  * We read from the first one that exists and write to the first
  * one that we can.
  */
@@ -57,6 +57,7 @@ char *mapname[3][3] = {
 	mapnames("/var/run/mdadm.map"),
 	mapnames(ALT_RUN "/map")
 };
+char *mapdir[3] = { VAR_RUN, NULL, ALT_RUN };
 
 int mapmode[3] = { O_RDONLY, O_RDWR|O_CREAT, O_RDWR|O_CREAT | O_TRUNC };
 char *mapsmode[3] = { "r", "w", "w"};
@@ -64,8 +65,16 @@ char *mapsmode[3] = { "r", "w", "w"};
 FILE *open_map(int modenum, int *choice)
 {
 	int i;
+
 	for (i = 0 ; i < 3 ; i++) {
-		int fd = open(mapname[i][modenum], mapmode[modenum], 0600);
+		int fd;
+		if ((mapmode[modenum] & O_CREAT) &&
+		    mapdir[modenum])
+			/* Attempt to create directory, don't worry about
+			 * failure.
+			 */
+			mkdir(mapdir[modenum], 0755);
+		fd = open(mapname[i][modenum], mapmode[modenum], 0600);
 		if (fd >= 0) {
 			*choice = i;
 			return fdopen(fd, mapsmode[modenum]);
diff --git a/mdmon.c b/mdmon.c
index 961aa77..69c320e 100644
--- a/mdmon.c
+++ b/mdmon.c
@@ -120,7 +120,7 @@ static int make_pidfile(char *devname)
 	int fd;
 	int n;
 
-	if (mkdir(pid_dir, 0600) < 0 &&
+	if (mkdir(pid_dir, 0700) < 0 &&
 	    errno != EEXIST)
 		return -errno;
 	sprintf(path, "%s/%s.pid", pid_dir, devname);




More information about the pkg-mdadm-commits mailing list