chiark / gitweb /
volume_id: really fix endianess bug in linux_raid detection
[elogind.git] / extras / volume_id / vol_id.c
1 /*
2  * vol_id - read filesystem label and uuid
3  *
4  * Copyright (C) 2005-2006 Kay Sievers <kay.sievers@vrfy.org>
5  *
6  *      This program is free software; you can redistribute it and/or modify it
7  *      under the terms of the GNU General Public License as published by the
8  *      Free Software Foundation version 2 of the License.
9  * 
10  *      This program is distributed in the hope that it will be useful, but
11  *      WITHOUT ANY WARRANTY; without even the implied warranty of
12  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *      General Public License for more details.
14  * 
15  *      You should have received a copy of the GNU General Public License along
16  *      with this program; if not, write to the Free Software Foundation, Inc.,
17  *      675 Mass Ave, Cambridge, MA 02139, USA.
18  *
19  */
20
21 #ifndef _GNU_SOURCE
22 #define _GNU_SOURCE 1
23 #endif
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <ctype.h>
30 #include <errno.h>
31 #include <pwd.h>
32 #include <grp.h>
33 #include <sys/ioctl.h>
34
35 #include "../../udev.h"
36 #include "lib/libvolume_id.h"
37
38 #define BLKGETSIZE64 _IOR(0x12,114,size_t)
39
40 #ifdef USE_LOG
41 void log_message(int priority, const char *format, ...)
42 {
43         va_list args;
44         static int udev_log = -1;
45
46         if (udev_log == -1) {
47                 const char *value;
48
49                 value = getenv("UDEV_LOG");
50                 if (value)
51                         udev_log = log_priority(value);
52                 else
53                         udev_log = LOG_ERR;
54         }
55
56         if (priority > udev_log)
57                 return;
58
59         va_start(args, format);
60         vsyslog(priority, format, args);
61         va_end(args);
62 }
63 #endif
64
65 static void vid_log(int priority, const char *file, int line, const char *format, ...)
66 {
67 #ifdef USE_LOG
68         char log_str[1024];
69         va_list args;
70
71         va_start(args, format);
72         vsnprintf(log_str, sizeof(log_str), format, args);
73         log_str[sizeof(log_str)-1] = '\0';
74         log_message(priority, "%s:%i %s", file, line, log_str);
75         va_end(args);
76 #endif
77         return;
78 }
79
80 static void set_str(char *to, const char *from, size_t count)
81 {
82         size_t i, j, len;
83
84         /* strip trailing whitespace */
85         len = strnlen(from, count);
86         while (len && isspace(from[len-1]))
87                 len--;
88
89         /* strip leading whitespace */
90         i = 0;
91         while (isspace(from[i]) && (i < len))
92                 i++;
93
94         j = 0;
95         while (i < len) {
96                 /* substitute multiple whitespace */
97                 if (isspace(from[i])) {
98                         while (isspace(from[i]))
99                                 i++;
100                         to[j++] = '_';
101                 }
102                 /* skip chars */
103                 if (from[i] == '/') {
104                         i++;
105                         continue;
106                 }
107                 to[j++] = from[i++];
108         }
109         to[j] = '\0';
110 }
111
112 int main(int argc, char *argv[])
113 {
114         const char help[] = "Usage: vol_id [options] <device>\n"
115                             " --export        export key/value pairs\n"
116                             "  -t             filesystem type\n"
117                             "  -l             filesystem label\n"
118                             "  -u             filesystem uuid\n"
119                             "  -L             raw label\n"
120                             " --skip-raid     don't probe for raid\n"
121                             " --probe-all     find possibly conflicting signatures\n"
122                             " --help\n"
123                             "\n";
124         enum print_type {
125                 PRINT_EXPORT,
126                 PRINT_TYPE,
127                 PRINT_LABEL,
128                 PRINT_UUID,
129                 PRINT_RAW_LABEL,
130         } print = PRINT_EXPORT;
131         struct volume_id *vid = NULL;
132         static char name[VOLUME_ID_LABEL_SIZE];
133         int i;
134         uint64_t size;
135         int skip_raid = 0;
136         int probe_all = 0;
137         const char *node = NULL;
138         struct passwd *pw;
139         int retval;
140         int rc = 0;
141
142         logging_init("vol_id");
143
144         /* hook in our debug into libvolume_id */
145         volume_id_log_fn = vid_log;
146
147         for (i = 1 ; i < argc; i++) {
148                 char *arg = argv[i];
149
150                 if (strcmp(arg, "--export") == 0) {
151                         print = PRINT_EXPORT;
152                 } else if (strcmp(arg, "-t") == 0) {
153                         print = PRINT_TYPE;
154                 } else if (strcmp(arg, "-l") == 0) {
155                         print = PRINT_LABEL;
156                 } else if (strcmp(arg, "-u") == 0) {
157                         print = PRINT_UUID;
158                 } else if (strcmp(arg, "-L") == 0) {
159                         print = PRINT_RAW_LABEL;
160                 } else if (strcmp(arg, "--skip-raid") == 0) {
161                         skip_raid = 1;
162                 } else if (strcmp(arg, "--probe-all") == 0) {
163                         probe_all = 1;
164                 } else if (strcmp(arg, "--help") == 0 || strcmp(arg, "-h") == 0) {
165                         printf(help);
166                         goto exit;
167                 } else
168                         node = arg;
169         }
170         if (!node) {
171                 err("no node specified");
172                 fprintf(stderr, help);
173                 rc = 1;
174                 goto exit;
175         }
176
177         vid = volume_id_open_node(node);
178         if (vid == NULL) {
179                 fprintf(stderr, "%s: error open volume\n", node);
180                 rc = 2;
181                 goto exit;
182         }
183
184         if (ioctl(vid->fd, BLKGETSIZE64, &size) != 0)
185                 size = 0;
186         dbg("BLKGETSIZE64=%llu", size);
187
188         /* try to drop all privileges before reading disk content */
189         pw = getpwnam ("nobody");
190         if (pw != NULL && pw->pw_uid > 0 && pw->pw_gid > 0) {
191                 dbg("dropping privileges to %u:%u", (unsigned int)pw->pw_uid, (unsigned int)pw->pw_gid);
192                 if (setgroups(0, NULL) != 0 ||
193                     setgid(pw->pw_gid) != 0 ||
194                     setuid(pw->pw_uid) != 0) {
195                         fprintf(stderr, "error dropping privileges: %s\n", strerror(errno));
196                         rc = 3;
197                         goto exit;
198                 }
199         }
200
201         if (probe_all) {
202                 if (volume_id_probe_linux_raid(vid, 0, size) == 0)
203                         printf("%s\n", vid->type);
204                 if (volume_id_probe_intel_software_raid(vid, 0, size) == 0)
205                         printf("%s\n", vid->type);
206                 if (volume_id_probe_lsi_mega_raid(vid, 0, size) == 0)
207                         printf("%s\n", vid->type);
208                 if (volume_id_probe_via_raid(vid, 0, size) == 0)
209                         printf("%s\n", vid->type);
210                 if (volume_id_probe_silicon_medley_raid(vid, 0, size) == 0)
211                         printf("%s\n", vid->type);
212                 if (volume_id_probe_nvidia_raid(vid, 0, size) == 0)
213                         printf("%s\n", vid->type);
214                 if (volume_id_probe_promise_fasttrack_raid(vid, 0, size) == 0)
215                         printf("%s\n", vid->type);
216                 if (volume_id_probe_highpoint_45x_raid(vid, 0, size) == 0)
217                         printf("%s\n", vid->type);
218                 if (volume_id_probe_adaptec_raid(vid, 0, size) == 0)
219                         printf("%s\n", vid->type);
220                 if (volume_id_probe_jmicron_raid(vid, 0, size) == 0)
221                         printf("%s\n", vid->type);
222                 if (volume_id_probe_vfat(vid, 0, 0) == 0)
223                         printf("%s\n", vid->type);
224                 if (volume_id_probe_linux_swap(vid, 0, 0) == 0)
225                         printf("%s\n", vid->type);
226                 if (volume_id_probe_luks(vid, 0, 0) == 0)
227                         printf("%s\n", vid->type);
228                 if (volume_id_probe_xfs(vid, 0, 0) == 0)
229                         printf("%s\n", vid->type);
230                 if (volume_id_probe_ext(vid, 0, 0) == 0)
231                         printf("%s\n", vid->type);
232                 if (volume_id_probe_reiserfs(vid, 0, 0) == 0)
233                         printf("%s\n", vid->type);
234                 if (volume_id_probe_jfs(vid, 0, 0) == 0)
235                         printf("%s\n", vid->type);
236                 if (volume_id_probe_udf(vid, 0, 0) == 0)
237                         printf("%s\n", vid->type);
238                 if (volume_id_probe_iso9660(vid, 0, 0) == 0)
239                         printf("%s\n", vid->type);
240                 if (volume_id_probe_hfs_hfsplus(vid, 0, 0) == 0)
241                         printf("%s\n", vid->type);
242                 if (volume_id_probe_ufs(vid, 0, 0) == 0)
243                         printf("%s\n", vid->type);
244                 if (volume_id_probe_ntfs(vid, 0, 0)  == 0)
245                         printf("%s\n", vid->type);
246                 if (volume_id_probe_cramfs(vid, 0, 0) == 0)
247                         printf("%s\n", vid->type);
248                 if (volume_id_probe_romfs(vid, 0, 0) == 0)
249                         printf("%s\n", vid->type);
250                 if (volume_id_probe_hpfs(vid, 0, 0) == 0)
251                         printf("%s\n", vid->type);
252                 if (volume_id_probe_sysv(vid, 0, 0) == 0)
253                         printf("%s\n", vid->type);
254                 if (volume_id_probe_minix(vid, 0, 0) == 0)
255                         printf("%s\n", vid->type);
256                 if (volume_id_probe_ocfs1(vid, 0, 0) == 0)
257                         printf("%s\n", vid->type);
258                 if (volume_id_probe_ocfs2(vid, 0, 0) == 0)
259                         printf("%s\n", vid->type);
260                 if (volume_id_probe_vxfs(vid, 0, 0) == 0)
261                         printf("%s\n", vid->type);
262                 if (volume_id_probe_squashfs(vid, 0, 0) == 0)
263                         printf("%s\n", vid->type);
264                 if (volume_id_probe_netware(vid, 0, 0) == 0)
265                         printf("%s\n", vid->type);
266                 if (volume_id_probe_gfs(vid, 0, 0) == 0)
267                         printf("%s\n", vid->type);
268                 if (volume_id_probe_gfs2(vid, 0, 0) == 0)
269                         printf("%s\n", vid->type);
270
271                 goto exit;
272         }
273
274         if (skip_raid)
275                 retval = volume_id_probe_filesystem(vid, 0, size);
276         else
277                 retval = volume_id_probe_all(vid, 0, size);
278         if (retval != 0) {
279                 fprintf(stderr, "%s: unknown volume type\n", node);
280                 rc = 4;
281                 goto exit;
282         }
283
284         set_str(name, vid->label, sizeof(vid->label));
285         replace_untrusted_chars(name);
286
287         switch (print) {
288         case PRINT_EXPORT:
289                 printf("ID_FS_USAGE=%s\n", vid->usage);
290                 printf("ID_FS_TYPE=%s\n", vid->type);
291                 printf("ID_FS_VERSION=%s\n", vid->type_version);
292                 printf("ID_FS_UUID=%s\n", vid->uuid);
293                 printf("ID_FS_LABEL=%s\n", vid->label);
294                 printf("ID_FS_LABEL_SAFE=%s\n", name);
295                 break;
296         case PRINT_TYPE:
297                 printf("%s\n", vid->type);
298                 break;
299         case PRINT_LABEL:
300                 if (name[0] == '\0' || vid->usage_id == VOLUME_ID_RAID) {
301                         rc = 3;
302                         goto exit;
303                 }
304                 printf("%s\n", name);
305                 break;
306         case PRINT_UUID:
307                 if (vid->uuid[0] == '\0' || vid->usage_id == VOLUME_ID_RAID) {
308                         rc = 4;
309                         goto exit;
310                 }
311                 printf("%s\n", vid->uuid);
312                 break;
313         case PRINT_RAW_LABEL:
314                 if (vid->label[0] == '\0' || vid->usage_id == VOLUME_ID_RAID) {
315                         rc = 3;
316                         goto exit;
317                 }
318                 printf("%s\n", vid->label);
319                 break;
320         }
321
322 exit:
323         if (vid != NULL)
324                 volume_id_close(vid);
325
326         logging_close();
327         return rc;
328 }