probe: add full libblkid support
[project/fstools.git] / probe.c
1 /*
2  * Copyright (C) 2016 Jo-Philipp Wich <jo@mein.io>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License version 2.1
6  * as published by the Free Software Foundation
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #include <string.h>
15 #include <libubox/utils.h>
16
17 #include "probe.h"
18 #include "libblkid-tiny/libblkid-tiny.h"
19
20 static struct probe_info *
21 probe_path_tiny(const char *path)
22 {
23         struct probe_info *info = NULL;
24         struct blkid_struct_probe pr = { };
25         char *type, *dev, *uuid, *label, *name, *version;
26
27         if (probe_block((char *)path, &pr) == 0 && pr.id && !pr.err) {
28                 info = calloc_a(sizeof(*info),
29                                 &type,    strlen(pr.id->name) + 1,
30                                 &dev,     strlen(pr.dev)      + 1,
31                                 &uuid,    strlen(pr.uuid)     + 1,
32                                 &label,   strlen(pr.label)    + 1,
33                                 &name,    strlen(pr.name)     + 1,
34                                 &version, strlen(pr.version)  + 1);
35
36                 if (info) {
37                         info->type = strcpy(type, pr.id->name);
38
39                         if (pr.dev[0])
40                                 info->dev = strcpy(dev, pr.dev);
41
42                         if (pr.uuid[0])
43                                 info->uuid = strcpy(uuid, pr.uuid);
44
45                         if (pr.label[0])
46                                 info->label = strcpy(label, pr.label);
47
48                         if (pr.name[0])
49                                 info->name = strcpy(name, pr.name);
50
51                         if (pr.version[0])
52                                 info->version = strcpy(version, pr.version);
53                 }
54         }
55
56         return info;
57 }
58
59 struct probe_info *
60 probe_path(const char *path)
61 {
62         struct probe_info *info;
63
64         info = probe_path_tiny(path);
65
66         if (!info)
67                 info = probe_path_libblkid(path);
68
69         return info;
70 }
71
72 int
73 make_devs(void)
74 {
75         return mkblkdev();
76 }