home: hub: mkinitfs

Download patch

ref: bedf249e829f34d51cc8c4e4eef864b9b6163450
parent: eea062f170e92ae36d498cdc1f6dd010a135978d
author: Natanael Copa <ncopa@alpinelinux.org>
date: Wed May 29 08:19:24 CDT 2019

nlplug-findfs: fix when cryptheader is a regular file

Handle case when the crypt header is a normal file which is included in
initramfs and not a blockdevice.

--- a/nlplug-findfs.c
+++ b/nlplug-findfs.c
@@ -1213,6 +1213,13 @@
 	exit(rc);
 }
 
+static int regular_file(const char *path)
+{
+	struct stat st;
+	int r = stat(path, &st);
+	return r == -1 ? 0 : S_ISREG(st.st_mode);
+}
+
 int main(int argc, char *argv[])
 {
 	struct pollfd fds[3];
@@ -1262,6 +1269,12 @@
 		break;
 	case 'H':
 		conf.crypt.header.device = EARGF(usage(1));
+		/* the header may be in a regular file and not a device */
+		if (regular_file(conf.crypt.header.device)) {
+			snprintf(conf.crypt.header.devnode,
+				sizeof(conf.crypt.header.devnode),
+				"%s", conf.crypt.header.device);
+		}
 		break;
 	case 'h':
 		usage(0);