From 9dc24d994efc3837e248ef8db9b3976e8775235e Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Sat, 10 Aug 2019 10:21:44 -0700 Subject: blkid: add -s, SEC_TYPE, f2fs LABEL, and fix vfat/ntfs UUID. This gets the tests passing with both toybox and util-linux 2.32.1 blkid. We use -s to get around the fact that we still don't support ntfs' $VOLUME_NAME attribute. --- toys/other/blkid.c | 76 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 56 insertions(+), 20 deletions(-) (limited to 'toys/other') diff --git a/toys/other/blkid.c b/toys/other/blkid.c index 38559981..40391de4 100644 --- a/toys/other/blkid.c +++ b/toys/other/blkid.c @@ -3,20 +3,22 @@ * Copyright 2013 Brad Conroy * * See ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.24/libblkid-docs/api-index-full.html + * TODO: -U and -L should require arguments -USE_BLKID(NEWTOY(blkid, "UL[!LU]", TOYFLAG_BIN)) +USE_BLKID(NEWTOY(blkid, "ULs*[!LU]", TOYFLAG_BIN)) USE_FSTYPE(NEWTOY(fstype, "<1", TOYFLAG_BIN)) config BLKID bool "blkid" default y help - usage: blkid [-UL] DEV... + usage: blkid [-s TAG] [-UL] DEV... Print type, label and UUID of filesystem on a block device or image. -U Show UUID only (or device with that UUID) -L Show LABEL only (or device with that LABEL) + -s TAG Only show matching tags (default all) config FSTYPE bool "fstype" @@ -30,6 +32,10 @@ config FSTYPE #define FOR_blkid #include "toys.h" +GLOBALS( + struct arg_list *s; +) + struct fstype { char *name; uint64_t magic; @@ -39,13 +45,13 @@ struct fstype { {"swap", 0x4341505350415753LL, 8, 4086, 1036, 15, 1052}, // NTFS label actually 8/16 0x4d80 but horrible: 16 bit wide characters via // codepage, something called a uuid that's only 8 bytes long... - {"ntfs", 0x5346544e, 4, 3, 0x48+(8<<24), 0, 0}, + {"ntfs", 0x5346544e, 4, 3, 0x48, 0, 0}, {"adfs", 0xadf5, 2, 0xc00, 0,0,0}, {"bfs", 0x1badface, 4, 0, 0,0,0}, {"btrfs", 0x4D5F53665248425FULL, 8, 65600, 65803, 256, 65819}, {"cramfs", 0x28cd3d45, 4, 0, 0, 16, 48}, - {"f2fs", 0xF2F52010, 4, 1024, 1132, 16, 1110}, + {"f2fs", 0xF2F52010, 4, 1024, 1132, 512, 0x47c}, {"jfs", 0x3153464a, 4, 32768, 32920, 16, 32904}, {"nilfs", 0x3434, 2, 1030, 1176, 80, 1192}, {"reiserfs", 0x724573496552ULL, 6, 8244, 8276, 16, 8292}, @@ -54,10 +60,22 @@ struct fstype { {"squashfs", 0x73717368, 4, 0, 0,0,0}, {"xiafs", 0x012fd16d, 4, 572, 0,0,0}, {"xfs", 0x42534658, 4, 0, 32, 12, 108}, - {"vfat", 0x3233544146ULL, 5, 82, 67+(4<<24), 11, 71}, // fat32 - {"vfat", 0x31544146, 4, 54, 39+(4<<24), 11, 43} // fat1 + {"vfat", 0x3233544146ULL, 5, 82, 67, 11, 71}, // fat32 + {"vfat", 0x31544146, 4, 54, 39, 11, 43} // fat1 }; +static void show_tag(char *key, char *value) +{ + int show = 0; + struct arg_list *al; + + if (TT.s) { + for (al = TT.s; al; al = al->next) if (!strcmp(key, al->arg)) show = 1; + } else show = 1; + + if (show) printf(" %s=\"%s\"", key, value); +} + static void flagshow(char *s, char *name) { if (*toys.optargs && strcmp(s, *toys.optargs)) return; @@ -112,8 +130,6 @@ static void do_blkid(int fd, char *name) if (toybuf[1120]&64) type = "ext4"; } - // Could special case NTFS here... - // Output for fstype if (*toys.which->name == 'f') { puts(type); @@ -121,39 +137,59 @@ static void do_blkid(int fd, char *name) } // output for blkid - if (!toys.optflags) printf("%s:",name); + if (!FLAG(L) && !FLAG(U)) printf("%s:",name); len = fstypes[i].label_len; if (!FLAG(U) && len) { s = toybuf+fstypes[i].label_off-off; if (!strcmp(type, "vfat")) { + show_tag("SEC_TYPE", "msdos"); while (len && s[len-1]==' ') len--; if (strstart(&s, "NO NAME")) len=0; } - if (len && *s) { - sprintf(buf, "%.*s", len, s); + // TODO: special case NTFS $VOLUME_NAME here... + if (len) { + if (!strcmp(type, "f2fs")) { + // Convert UTF16LE to ASCII by replacing non-ASCII with '?'. + // TODO: support non-ASCII. + for (j=0; j> 24, uoff = (len&((1<<24)-1))-off; + int uoff = len-off; // Assemble UUID with whatever size and set of dashes this filesystem uses - if (size) bits = 4*(size == 4); - else size = 16; - for (j = 0, s = buf; j < size; j++) - s += sprintf(s, "-%02x"+!(bits & (1<= 0; --j) s += sprintf(s, "%02X", toybuf[uoff+j]); + } else if (!strcmp(type, "vfat")) { + s += sprintf(s, "%02X%02X-%02X%02X", toybuf[uoff+3], toybuf[uoff+2], + toybuf[uoff+1], toybuf[uoff]); + } else { + for (j = 0; j < 16; j++) + s += sprintf(s, "-%02x"+!(0x550 & (1<