xref: /freebsd/usr.sbin/fstyp/geli.c (revision 1d386b48a555f61cb7325543adbbb5c3f3407a66)
1398e498eSAllan Jude /*-
2398e498eSAllan Jude  * Copyright (c) 2015 Allan Jude <allanjude@FreeBSD.org>
3398e498eSAllan Jude  * All rights reserved.
4398e498eSAllan Jude  *
5398e498eSAllan Jude  * Redistribution and use in source and binary forms, with or without
6398e498eSAllan Jude  * modification, are permitted provided that the following conditions
7398e498eSAllan Jude  * are met:
8398e498eSAllan Jude  * 1. Redistributions of source code must retain the above copyright
9398e498eSAllan Jude  *    notice, this list of conditions and the following disclaimer.
10398e498eSAllan Jude  * 2. Redistributions in binary form must reproduce the above copyright
11398e498eSAllan Jude  *    notice, this list of conditions and the following disclaimer in the
12398e498eSAllan Jude  *    documentation and/or other materials provided with the distribution.
13398e498eSAllan Jude  *
14398e498eSAllan Jude  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15398e498eSAllan Jude  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16398e498eSAllan Jude  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17398e498eSAllan Jude  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18398e498eSAllan Jude  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19398e498eSAllan Jude  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20398e498eSAllan Jude  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21398e498eSAllan Jude  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22398e498eSAllan Jude  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23398e498eSAllan Jude  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24398e498eSAllan Jude  * SUCH DAMAGE.
25398e498eSAllan Jude  */
26398e498eSAllan Jude 
27398e498eSAllan Jude #include <sys/cdefs.h>
28398e498eSAllan Jude #include <sys/disk.h>
29398e498eSAllan Jude #include <sys/types.h>
30398e498eSAllan Jude #include <stdio.h>
31398e498eSAllan Jude #include <stdlib.h>
32398e498eSAllan Jude #include <string.h>
33398e498eSAllan Jude 
34398e498eSAllan Jude #include <geom/eli/g_eli.h>
35398e498eSAllan Jude 
36398e498eSAllan Jude #include "fstyp.h"
37398e498eSAllan Jude 
38398e498eSAllan Jude int
fstyp_geli(FILE * fp,char * label __unused,size_t labelsize __unused)39398e498eSAllan Jude fstyp_geli(FILE *fp, char *label __unused, size_t labelsize __unused)
40398e498eSAllan Jude {
41398e498eSAllan Jude 	int error;
42398e498eSAllan Jude 	off_t mediasize;
43398e498eSAllan Jude 	u_int sectorsize;
44398e498eSAllan Jude 	struct g_eli_metadata md;
45398e498eSAllan Jude 	u_char *buf;
46398e498eSAllan Jude 
47398e498eSAllan Jude 	error = ioctl(fileno(fp), DIOCGMEDIASIZE, &mediasize);
48398e498eSAllan Jude 	if (error != 0)
49398e498eSAllan Jude 		return (1);
50398e498eSAllan Jude 	error = ioctl(fileno(fp), DIOCGSECTORSIZE, &sectorsize);
51398e498eSAllan Jude 	if (error != 0)
52398e498eSAllan Jude 		return (1);
53398e498eSAllan Jude 	buf = (u_char *)read_buf(fp, mediasize - sectorsize, sectorsize);
54398e498eSAllan Jude 	if (buf == NULL)
55398e498eSAllan Jude 		goto gelierr;
56398e498eSAllan Jude 	error = eli_metadata_decode(buf, &md);
57398e498eSAllan Jude 	if (error)
58398e498eSAllan Jude 		goto gelierr;
59398e498eSAllan Jude 
60*f2dedc73SBjoern A. Zeeb 	if (strcmp(md.md_magic, G_ELI_MAGIC) == 0) {
61398e498eSAllan Jude 		free(buf);
62398e498eSAllan Jude 		return (0);
63398e498eSAllan Jude 	}
64398e498eSAllan Jude 
65398e498eSAllan Jude gelierr:
66398e498eSAllan Jude 	free(buf);
67398e498eSAllan Jude 
68398e498eSAllan Jude 	return (1);
69398e498eSAllan Jude }
70