* [PATCH] switch_root: verify initramfs by f_type, not devno
@ 2014-04-02 14:41 Dave Reisner
2014-04-03 1:38 ` Dave Reisner
2014-04-04 12:55 ` Karel Zak
0 siblings, 2 replies; 4+ messages in thread
From: Dave Reisner @ 2014-04-02 14:41 UTC (permalink / raw)
To: util-linux; +Cc: Dave Reisner
As of linux 3.14, the initramfs device will have both major and
minor 0, causing our paranoia check to fail. Make this version agnostic
by checking the filesystem type, rather than a device number.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
---
This is essentially what busybox's switch_root does. I don't think there's much
value in checking the devno at all, as it seems to be a needless restriction.
Let's just allow deleting anything that looks like non-persistent storage.
sys-utils/switch_root.c | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/sys-utils/switch_root.c b/sys-utils/switch_root.c
index 1222fb1..dac946f 100644
--- a/sys-utils/switch_root.c
+++ b/sys-utils/switch_root.c
@@ -23,6 +23,7 @@
#include <sys/mount.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <sys/statfs.h>
#include <sys/param.h>
#include <fcntl.h>
#include <stdio.h>
@@ -36,6 +37,7 @@
#include "c.h"
#include "nls.h"
#include "closestream.h"
+#include "statfs_magic.h"
#ifndef MS_MOVE
#define MS_MOVE 8192
@@ -177,12 +179,12 @@ static int switchroot(const char *newroot)
if (cfd >= 0) {
pid = fork();
if (pid <= 0) {
- if (fstat(cfd, &sb) == 0) {
- if (sb.st_dev == makedev(0, 1))
- recursiveRemove(cfd);
- else
- warn(_("old root filesystem is not an initramfs"));
- }
+ struct statfs stfs;
+ if (fstatfs(cfd, &stfs) == 0 &&
+ (stfs.f_type == STATFS_RAMFS_MAGIC || stfs.f_type == STATFS_TMPFS_MAGIC))
+ recursiveRemove(cfd);
+ else
+ warn(_("old root filesystem is not an initramfs"));
if (pid == 0)
exit(EXIT_SUCCESS);
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] switch_root: verify initramfs by f_type, not devno
2014-04-02 14:41 [PATCH] switch_root: verify initramfs by f_type, not devno Dave Reisner
@ 2014-04-03 1:38 ` Dave Reisner
2014-04-03 8:09 ` Thomas Bächler
2014-04-04 12:55 ` Karel Zak
1 sibling, 1 reply; 4+ messages in thread
From: Dave Reisner @ 2014-04-03 1:38 UTC (permalink / raw)
To: Dave Reisner; +Cc: util-linux, thomas
On Wed, Apr 02, 2014 at 10:41:30AM -0400, Dave Reisner wrote:
> As of linux 3.14, the initramfs device will have both major and
> minor 0, causing our paranoia check to fail. Make this version agnostic
> by checking the filesystem type, rather than a device number.
>
> Signed-off-by: Dave Reisner <dreisner@archlinux.org>
> ---
> This is essentially what busybox's switch_root does. I don't think there's much
> value in checking the devno at all, as it seems to be a needless restriction.
> Let's just allow deleting anything that looks like non-persistent storage.
A bisect of the kernel reveals that 9e30cc9595303 is the responsible
change. It seems the kernel maintains its own mounts which are never
exposed to userspace (which also would explain the FSID gaps in
/proc/self/mountinfo). An instance of sysfs used to be one of these
kernel only mounts but, for some time now, has not needed to be. The
mentioned commit removes this kern_mount() call for sysfs, making the
initramfs the first entry in the mount table -- FSID 0 instead of 1.
I guess FSIDs are about as reliable as the numbering on block devices,
and this comparison in switch_root was never really the right
approach...
>
> sys-utils/switch_root.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
>
> diff --git a/sys-utils/switch_root.c b/sys-utils/switch_root.c
> index 1222fb1..dac946f 100644
> --- a/sys-utils/switch_root.c
> +++ b/sys-utils/switch_root.c
> @@ -23,6 +23,7 @@
> #include <sys/mount.h>
> #include <sys/types.h>
> #include <sys/stat.h>
> +#include <sys/statfs.h>
> #include <sys/param.h>
> #include <fcntl.h>
> #include <stdio.h>
> @@ -36,6 +37,7 @@
> #include "c.h"
> #include "nls.h"
> #include "closestream.h"
> +#include "statfs_magic.h"
>
> #ifndef MS_MOVE
> #define MS_MOVE 8192
> @@ -177,12 +179,12 @@ static int switchroot(const char *newroot)
> if (cfd >= 0) {
> pid = fork();
> if (pid <= 0) {
> - if (fstat(cfd, &sb) == 0) {
> - if (sb.st_dev == makedev(0, 1))
> - recursiveRemove(cfd);
> - else
> - warn(_("old root filesystem is not an initramfs"));
> - }
> + struct statfs stfs;
> + if (fstatfs(cfd, &stfs) == 0 &&
> + (stfs.f_type == STATFS_RAMFS_MAGIC || stfs.f_type == STATFS_TMPFS_MAGIC))
> + recursiveRemove(cfd);
> + else
> + warn(_("old root filesystem is not an initramfs"));
>
> if (pid == 0)
> exit(EXIT_SUCCESS);
> --
> 1.9.1
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] switch_root: verify initramfs by f_type, not devno
2014-04-03 1:38 ` Dave Reisner
@ 2014-04-03 8:09 ` Thomas Bächler
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Bächler @ 2014-04-03 8:09 UTC (permalink / raw)
To: Dave Reisner, util-linux, thomas
[-- Attachment #1: Type: text/plain, Size: 1463 bytes --]
Am 03.04.2014 03:38, schrieb Dave Reisner:
> On Wed, Apr 02, 2014 at 10:41:30AM -0400, Dave Reisner wrote:
>> As of linux 3.14, the initramfs device will have both major and
>> minor 0, causing our paranoia check to fail. Make this version agnostic
>> by checking the filesystem type, rather than a device number.
>>
>> Signed-off-by: Dave Reisner <dreisner@archlinux.org>
>> ---
>> This is essentially what busybox's switch_root does. I don't think there's much
>> value in checking the devno at all, as it seems to be a needless restriction.
>> Let's just allow deleting anything that looks like non-persistent storage.
>
> A bisect of the kernel reveals that 9e30cc9595303 is the responsible
> change. It seems the kernel maintains its own mounts which are never
> exposed to userspace (which also would explain the FSID gaps in
> /proc/self/mountinfo). An instance of sysfs used to be one of these
> kernel only mounts but, for some time now, has not needed to be. The
> mentioned commit removes this kern_mount() call for sysfs, making the
> initramfs the first entry in the mount table -- FSID 0 instead of 1.
>
> I guess FSIDs are about as reliable as the numbering on block devices,
> and this comparison in switch_root was never really the right
> approach...
Thanks for getting to the bottom of this Dave. I guess going the way of
busybox (checking for RAMFS or TMPFS) is the right thing to do, as your
patch suggests.
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] switch_root: verify initramfs by f_type, not devno
2014-04-02 14:41 [PATCH] switch_root: verify initramfs by f_type, not devno Dave Reisner
2014-04-03 1:38 ` Dave Reisner
@ 2014-04-04 12:55 ` Karel Zak
1 sibling, 0 replies; 4+ messages in thread
From: Karel Zak @ 2014-04-04 12:55 UTC (permalink / raw)
To: Dave Reisner; +Cc: util-linux
On Wed, Apr 02, 2014 at 10:41:30AM -0400, Dave Reisner wrote:
> sys-utils/switch_root.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
Applied, thanks.
--
Karel Zak <kzak@redhat.com>
http://karelzak.blogspot.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-04 12:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-02 14:41 [PATCH] switch_root: verify initramfs by f_type, not devno Dave Reisner
2014-04-03 1:38 ` Dave Reisner
2014-04-03 8:09 ` Thomas Bächler
2014-04-04 12:55 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox