Home | History | Annotate | Line # | Download | only in fstyp
      1  1.13   mlelstv /*	$NetBSD: fstyp.c,v 1.13 2020/01/03 07:50:58 mlelstv Exp $	*/
      2   1.1  christos 
      3   1.1  christos /*-
      4   1.1  christos  * Copyright (c) 2017 The NetBSD Foundation, Inc.
      5   1.1  christos  * Copyright (c) 2016 The DragonFly Project
      6   1.1  christos  * Copyright (c) 2014 The FreeBSD Foundation
      7   1.1  christos  * All rights reserved.
      8   1.1  christos  *
      9   1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
     10   1.1  christos  * by Tomohiro Kusumi <kusumi.tomohiro (at) gmail.com>.
     11   1.1  christos  *
     12   1.1  christos  * This software was developed by Edward Tomasz Napierala under sponsorship
     13   1.1  christos  * from the FreeBSD Foundation.
     14   1.1  christos  *
     15   1.1  christos  * Redistribution and use in source and binary forms, with or without
     16   1.1  christos  * modification, are permitted provided that the following conditions
     17   1.1  christos  * are met:
     18   1.1  christos  * 1. Redistributions of source code must retain the above copyright
     19   1.1  christos  *    notice, this list of conditions and the following disclaimer.
     20   1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     21   1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     22   1.1  christos  *    documentation and/or other materials provided with the distribution.
     23   1.1  christos  *
     24   1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     25   1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26   1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27   1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     28   1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29   1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30   1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31   1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32   1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33   1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34   1.1  christos  * SUCH DAMAGE.
     35   1.1  christos  *
     36   1.1  christos  */
     37   1.1  christos #include <sys/cdefs.h>
     38  1.13   mlelstv __RCSID("$NetBSD: fstyp.c,v 1.13 2020/01/03 07:50:58 mlelstv Exp $");
     39   1.1  christos 
     40  1.11   tkusumi #include <sys/param.h>
     41   1.1  christos #include <sys/disklabel.h>
     42  1.13   mlelstv #include <sys/disk.h>
     43   1.1  christos #include <sys/ioctl.h>
     44   1.1  christos #include <sys/stat.h>
     45   1.1  christos #include <err.h>
     46   1.1  christos #include <errno.h>
     47   1.6   tkusumi #include <iconv.h>
     48   1.6   tkusumi #include <locale.h>
     49   1.1  christos #include <stdbool.h>
     50   1.1  christos #include <stddef.h>
     51   1.1  christos #include <stdio.h>
     52   1.1  christos #include <stdlib.h>
     53   1.1  christos #include <string.h>
     54   1.1  christos #include <unistd.h>
     55   1.1  christos #include <vis.h>
     56   1.1  christos 
     57   1.1  christos #include "fstyp.h"
     58   1.1  christos 
     59   1.8   tkusumi #define	LABEL_LEN	512
     60   1.1  christos 
     61   1.6   tkusumi bool show_label = false;
     62   1.6   tkusumi 
     63   1.1  christos typedef int (*fstyp_function)(FILE *, char *, size_t);
     64   1.1  christos typedef int (*fsvtyp_function)(const char *, char *, size_t);
     65   1.1  christos 
     66   1.1  christos static struct {
     67   1.1  christos 	const char	*name;
     68   1.1  christos 	fstyp_function	function;
     69   1.1  christos 	bool		unmountable;
     70   1.6   tkusumi 	const char	*precache_encoding;
     71   1.1  christos } fstypes[] = {
     72   1.6   tkusumi 	{ "apfs", &fstyp_apfs, true, NULL },
     73   1.6   tkusumi 	{ "cd9660", &fstyp_cd9660, false, NULL },
     74   1.6   tkusumi 	{ "exfat", &fstyp_exfat, false, EXFAT_ENC },
     75   1.6   tkusumi 	{ "ext2fs", &fstyp_ext2fs, false, NULL },
     76   1.6   tkusumi 	{ "hfs+", &fstyp_hfsp, false, NULL },
     77   1.6   tkusumi 	{ "msdosfs", &fstyp_msdosfs, false, NULL },
     78   1.7   tkusumi 	{ "ntfs", &fstyp_ntfs, false, NTFS_ENC },
     79   1.6   tkusumi 	{ "ufs", &fstyp_ufs, false, NULL },
     80   1.8   tkusumi 	{ "hammer", &fstyp_hammer, false, NULL },
     81   1.8   tkusumi 	{ "hammer2", &fstyp_hammer2, false, NULL },
     82   1.1  christos #ifdef HAVE_ZFS
     83   1.6   tkusumi 	{ "zfs", &fstyp_zfs, true, NULL },
     84   1.1  christos #endif
     85   1.6   tkusumi 	{ NULL, NULL, NULL, NULL }
     86   1.1  christos };
     87   1.1  christos 
     88   1.1  christos static struct {
     89   1.1  christos 	const char	*name;
     90   1.1  christos 	fsvtyp_function	function;
     91   1.1  christos 	bool		unmountable;
     92   1.9   tkusumi 	const char	*precache_encoding;
     93   1.1  christos } fsvtypes[] = {
     94  1.10   tkusumi 	{ "hammer", &fsvtyp_hammer, false, NULL }, /* Must be before partial */
     95  1.10   tkusumi 	{ "hammer(partial)", &fsvtyp_hammer_partial, true, NULL },
     96   1.9   tkusumi 	{ NULL, NULL, NULL, NULL }
     97   1.1  christos };
     98   1.1  christos 
     99   1.1  christos void *
    100   1.1  christos read_buf(FILE *fp, off_t off, size_t len)
    101   1.1  christos {
    102   1.1  christos 	int error;
    103   1.1  christos 	size_t nread;
    104   1.1  christos 	void *buf;
    105   1.1  christos 
    106   1.2    martin 	error = fseeko(fp, off, SEEK_SET);
    107   1.1  christos 	if (error != 0) {
    108   1.1  christos 		warn("cannot seek to %jd", (uintmax_t)off);
    109   1.1  christos 		return NULL;
    110   1.1  christos 	}
    111   1.1  christos 
    112   1.1  christos 	buf = malloc(len);
    113   1.1  christos 	if (buf == NULL) {
    114   1.1  christos 		warn("cannot malloc %zd bytes of memory", len);
    115   1.1  christos 		return NULL;
    116   1.1  christos 	}
    117   1.1  christos 
    118   1.1  christos 	nread = fread(buf, len, 1, fp);
    119   1.1  christos 	if (nread != 1) {
    120   1.1  christos 		free(buf);
    121   1.1  christos 		if (feof(fp) == 0)
    122   1.1  christos 			warn("fread");
    123   1.1  christos 		return NULL;
    124   1.1  christos 	}
    125   1.1  christos 
    126   1.1  christos 	return buf;
    127   1.1  christos }
    128   1.1  christos 
    129   1.1  christos char *
    130   1.1  christos checked_strdup(const char *s)
    131   1.1  christos {
    132   1.1  christos 	char *c;
    133   1.1  christos 
    134   1.1  christos 	c = strdup(s);
    135   1.1  christos 	if (c == NULL)
    136   1.1  christos 		err(EXIT_FAILURE, "strdup");
    137   1.1  christos 	return c;
    138   1.1  christos }
    139   1.1  christos 
    140   1.1  christos void
    141   1.1  christos rtrim(char *label, size_t size)
    142   1.1  christos {
    143   1.1  christos 	for (size_t i = size; i > 0; i--) {
    144   1.1  christos 		size_t j = i - 1;
    145   1.1  christos 		if (label[j] == '\0')
    146   1.1  christos 			continue;
    147   1.1  christos 		else if (label[j] == ' ')
    148   1.1  christos 			label[j] = '\0';
    149   1.1  christos 		else
    150   1.1  christos 			break;
    151   1.1  christos 	}
    152   1.1  christos }
    153   1.1  christos 
    154   1.1  christos __dead static void
    155   1.1  christos usage(void)
    156   1.1  christos {
    157   1.1  christos 
    158   1.1  christos 	fprintf(stderr, "Usage: %s [-l] [-s] [-u] special\n", getprogname());
    159   1.1  christos 	exit(EXIT_FAILURE);
    160   1.1  christos }
    161   1.1  christos 
    162   1.1  christos static void
    163   1.1  christos type_check(const char *path, FILE *fp)
    164   1.1  christos {
    165   1.1  christos 	int error, fd;
    166   1.1  christos 	struct stat sb;
    167   1.1  christos 	struct disklabel dl;
    168  1.13   mlelstv 	struct dkwedge_info dkw;
    169   1.1  christos 
    170   1.1  christos 	fd = fileno(fp);
    171   1.1  christos 
    172   1.1  christos 	error = fstat(fd, &sb);
    173   1.1  christos 	if (error != 0)
    174   1.1  christos 		err(EXIT_FAILURE, "%s: fstat", path);
    175   1.1  christos 
    176   1.1  christos 	if (S_ISREG(sb.st_mode))
    177   1.1  christos 		return;
    178   1.1  christos 
    179   1.1  christos 	error = ioctl(fd, DIOCGDINFO, &dl);
    180   1.1  christos 	if (error != 0)
    181  1.13   mlelstv 		error = ioctl(fd, DIOCGWEDGEINFO, &dkw);
    182  1.13   mlelstv 	if (error != 0)
    183   1.1  christos 		errx(EXIT_FAILURE, "%s: not a disk", path);
    184   1.1  christos }
    185   1.1  christos 
    186   1.1  christos int
    187   1.1  christos main(int argc, char **argv)
    188   1.1  christos {
    189   1.1  christos 	int ch, error, i, nbytes;
    190   1.6   tkusumi 	bool ignore_type = false, show_unmountable = false;
    191   1.1  christos 	char label[LABEL_LEN + 1], strvised[LABEL_LEN * 4 + 1];
    192  1.11   tkusumi 	char fdpath[MAXPATHLEN];
    193  1.11   tkusumi 	char *p;
    194  1.11   tkusumi 	const char *path;
    195   1.1  christos 	const char *name = NULL;
    196   1.1  christos 	FILE *fp;
    197   1.1  christos 	fstyp_function fstyp_f;
    198   1.1  christos 	fsvtyp_function fsvtyp_f;
    199   1.1  christos 
    200   1.1  christos 	while ((ch = getopt(argc, argv, "lsu")) != -1) {
    201   1.1  christos 		switch (ch) {
    202   1.1  christos 		case 'l':
    203   1.1  christos 			show_label = true;
    204   1.1  christos 			break;
    205   1.1  christos 		case 's':
    206   1.1  christos 			ignore_type = true;
    207   1.1  christos 			break;
    208   1.1  christos 		case 'u':
    209   1.1  christos 			show_unmountable = true;
    210   1.1  christos 			break;
    211   1.1  christos 		default:
    212   1.1  christos 			usage();
    213   1.1  christos 		}
    214   1.1  christos 	}
    215   1.1  christos 
    216   1.1  christos 	argc -= optind;
    217   1.1  christos 	argv += optind;
    218   1.1  christos 	if (argc != 1)
    219   1.1  christos 		usage();
    220   1.1  christos 
    221   1.1  christos 	path = argv[0];
    222   1.1  christos 
    223   1.6   tkusumi 	if (setlocale(LC_CTYPE, "") == NULL)
    224   1.6   tkusumi 		err(1, "setlocale");
    225   1.6   tkusumi 
    226  1.11   tkusumi 	/*
    227  1.11   tkusumi 	 * DragonFly: Filesystems may have syntax to decorate path.
    228  1.11   tkusumi 	 * Make a wild guess.
    229  1.11   tkusumi 	 * XXX devpath is unsupported in NetBSD, but at least parse '@' for fp.
    230  1.11   tkusumi 	 */
    231  1.11   tkusumi 	strlcpy(fdpath, path, sizeof(fdpath));
    232  1.11   tkusumi 	p = strchr(fdpath, '@');
    233  1.11   tkusumi 	if (p)
    234  1.11   tkusumi 		*p = '\0';
    235  1.11   tkusumi 
    236  1.11   tkusumi 	fp = fopen(fdpath, "r");
    237  1.11   tkusumi 	if (fp == NULL) {
    238  1.11   tkusumi 		if (strcmp(path, fdpath))
    239  1.11   tkusumi 			fp = fopen(path, "r");
    240  1.11   tkusumi 		if (fp == NULL)
    241  1.11   tkusumi 			goto fsvtyp; /* DragonFly */
    242  1.11   tkusumi 		else
    243  1.11   tkusumi 			strlcpy(fdpath, path, sizeof(fdpath));
    244  1.11   tkusumi 	}
    245   1.1  christos 
    246   1.1  christos 	if (ignore_type == false)
    247  1.11   tkusumi 		type_check(fdpath, fp);
    248   1.1  christos 
    249   1.1  christos 	memset(label, '\0', sizeof(label));
    250   1.1  christos 
    251   1.1  christos 	for (i = 0;; i++) {
    252   1.1  christos 		if (!show_unmountable && fstypes[i].unmountable)
    253   1.1  christos 			continue;
    254   1.1  christos 		fstyp_f = fstypes[i].function;
    255   1.1  christos 		if (fstyp_f == NULL)
    256   1.1  christos 			break;
    257   1.1  christos 
    258   1.1  christos 		error = fstyp_f(fp, label, sizeof(label));
    259   1.1  christos 		if (error == 0) {
    260   1.1  christos 			name = fstypes[i].name;
    261   1.1  christos 			goto done;
    262   1.1  christos 		}
    263   1.1  christos 	}
    264   1.1  christos fsvtyp:
    265   1.1  christos 	for (i = 0;; i++) {
    266   1.1  christos 		if (!show_unmountable && fsvtypes[i].unmountable)
    267   1.1  christos 			continue;
    268   1.1  christos 		fsvtyp_f = fsvtypes[i].function;
    269   1.1  christos 		if (fsvtyp_f == NULL)
    270   1.1  christos 			break;
    271   1.1  christos 
    272   1.1  christos 		error = fsvtyp_f(path, label, sizeof(label));
    273   1.1  christos 		if (error == 0) {
    274   1.1  christos 			name = fsvtypes[i].name;
    275   1.1  christos 			goto done;
    276   1.1  christos 		}
    277   1.1  christos 	}
    278   1.1  christos 
    279   1.1  christos 	err(EXIT_FAILURE, "%s: filesystem not recognized", path);
    280   1.1  christos 	/*NOTREACHED*/
    281   1.1  christos done:
    282   1.1  christos 	if (show_label && label[0] != '\0') {
    283   1.1  christos 		/*
    284   1.1  christos 		 * XXX: I'd prefer VIS_HTTPSTYLE, but it unconditionally
    285   1.1  christos 		 *      encodes spaces.
    286   1.1  christos 		 */
    287   1.1  christos 		nbytes = strsnvis(strvised, sizeof(strvised), label,
    288   1.1  christos 		    VIS_GLOB | VIS_NL, "\"'$");
    289   1.1  christos 		if (nbytes == -1)
    290   1.1  christos 			err(EXIT_FAILURE, "strsnvis");
    291   1.1  christos 
    292   1.1  christos 		printf("%s %s\n", name, strvised);
    293   1.1  christos 	} else {
    294   1.1  christos 		printf("%s\n", name);
    295   1.1  christos 	}
    296   1.1  christos 
    297   1.1  christos 	return EXIT_SUCCESS;
    298   1.1  christos }
    299