summaryrefslogtreecommitdiffstats
path: root/sbin/fdisk
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2010-09-06 04:15:49 +0000
committerbrian <brian@FreeBSD.org>2010-09-06 04:15:49 +0000
commit2e7fd38ddc587c0ca625685c9029dfd15cc11f0d (patch)
tree69147bd0f481c7c5a0c543e9e1977dca5858e97d /sbin/fdisk
parentbc339155433f72b9eaf04c2a77cd4aa0757c3519 (diff)
downloadFreeBSD-src-2e7fd38ddc587c0ca625685c9029dfd15cc11f0d.zip
FreeBSD-src-2e7fd38ddc587c0ca625685c9029dfd15cc11f0d.tar.gz
Handle geli-encrypted root disk devices.
MFC after: 2 weeks
Diffstat (limited to 'sbin/fdisk')
-rw-r--r--sbin/fdisk/fdisk.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/sbin/fdisk/fdisk.c b/sbin/fdisk/fdisk.c
index 1e121bb..c53ef85 100644
--- a/sbin/fdisk/fdisk.c
+++ b/sbin/fdisk/fdisk.c
@@ -1461,6 +1461,7 @@ sanitize_partition(struct dos_partition *partp)
* /dev/ad0s1a => /dev/ad0
* /dev/da0a => /dev/da0
* /dev/vinum/root => /dev/vinum/root
+ * A ".eli" part is removed if it exists (see geli(8)).
*/
static char *
get_rootdisk(void)
@@ -1469,7 +1470,7 @@ get_rootdisk(void)
regex_t re;
#define NMATCHES 2
regmatch_t rm[NMATCHES];
- char *s;
+ char dev[PATH_MAX], *s;
int rv;
if (statfs("/", &rootfs) == -1)
@@ -1478,7 +1479,11 @@ get_rootdisk(void)
if ((rv = regcomp(&re, "^(/dev/[a-z/]+[0-9]+)([sp][0-9]+)?[a-h]?$",
REG_EXTENDED)) != 0)
errx(1, "regcomp() failed (%d)", rv);
- if ((rv = regexec(&re, rootfs.f_mntfromname, NMATCHES, rm, 0)) != 0)
+ strlcpy(dev, rootfs.f_mntfromname, sizeof (dev));
+ if ((s = strstr(dev, ".eli")) != NULL)
+ memmove(s, s+4, strlen(s + 4) + 1);
+
+ if ((rv = regexec(&re, dev, NMATCHES, rm, 0)) != 0)
errx(1,
"mounted root fs resource doesn't match expectations (regexec returned %d)",
rv);
OpenPOWER on IntegriCloud