libblkid-tiny: add blkid_probe_set_id_label() stub
[project/fstools.git] / libblkid-tiny / libblkid-tiny.c
1 #include <stdio.h>
2 #include <sys/utsname.h>
3
4 #include "libblkid-tiny.h"
5 #include "superblocks.h"
6 #include "linux_version.h"
7
8 #if 0
9 #define DEBUG(fmt, ...) printf(fmt, __VA_ARGS__)
10 #else
11 #define DEBUG(fmt, ...)
12 #endif
13
14 int blkid_debug_mask = 0;
15
16 int get_linux_version (void)
17 {
18 static int kver = -1;
19 struct utsname uts;
20 int major = 0;
21 int minor = 0;
22 int teeny = 0;
23 int n;
24
25 if (kver != -1)
26 return kver;
27 if (uname (&uts))
28 return kver = 0;
29
30 n = sscanf(uts.release, "%d.%d.%d", &major, &minor, &teeny);
31 if (n < 1 || n > 3)
32 return kver = 0;
33
34 return kver = KERNEL_VERSION(major, minor, teeny);
35 }
36
37 int blkid_probe_is_tiny(blkid_probe pr)
38 {
39 /* never true ? */
40 return 0;
41 }
42
43 int blkid_probe_set_value(blkid_probe pr, const char *name,
44 unsigned char *data, size_t len)
45 {
46 /* empty stub */
47 return 0;
48 }
49
50 int blkid_probe_set_version(blkid_probe pr, const char *version)
51 {
52 int len = strlen(version);
53 if (len > (sizeof(pr->version) - 1)) {
54 fprintf(stderr, "version buffer too small %d\n", len);
55 return -1;
56 }
57
58 strncpy(pr->version, version, sizeof(pr->version));
59
60 return 0;
61 }
62
63 int blkid_probe_sprintf_version(blkid_probe pr, const char *fmt, ...)
64 {
65 va_list ap;
66 int n;
67
68 va_start(ap, fmt);
69 n = vsnprintf(pr->version, sizeof(pr->version), fmt, ap);
70 va_end(ap);
71
72 if (n >= sizeof(pr->version))
73 fprintf(stderr, "version buffer too small %d\n", n);
74
75 return 0;
76 }
77
78 unsigned char *blkid_probe_get_buffer(blkid_probe pr,
79 blkid_loff_t off, blkid_loff_t len)
80 {
81 struct blkid_bufinfo *bf;
82 int ret;
83
84 bf = malloc(sizeof(*bf) + len);
85 if (!bf)
86 return NULL;
87 memset(bf, 0, sizeof(*bf));
88 bf->data = ((unsigned char *)bf) + sizeof(*bf);
89
90 lseek(pr->fd, off, SEEK_SET);
91 ret = read(pr->fd, bf->data, len);
92
93 if (ret != len) {
94 fprintf(stderr, "faile to read blkid\n");
95 free(bf);
96 return NULL;
97 }
98
99 list_add_tail(&bf->bufs, &pr->buffers);
100
101 return bf->data;
102 }
103
104 int blkid_probe_set_id_label(blkid_probe pr, const char *name,
105 const unsigned char *data, size_t len)
106 {
107 return -ENOTSUP;
108 }
109
110 int blkid_probe_set_label(blkid_probe pr, unsigned char *label, size_t len)
111 {
112 if (len > (sizeof(pr->label) - 1)) {
113 fprintf(stderr, "label buffer too small %d > %d\n",
114 (int) len, (int) sizeof(pr->label) - 1);
115 return -1;
116 }
117 memcpy(pr->label, label, len + 1);
118
119 return 0;
120 }
121
122 int blkid_probe_set_utf8label(blkid_probe pr, unsigned char *label,
123 size_t len, int enc)
124 {
125 if (len > (sizeof(pr->label) - 1)) {
126 fprintf(stderr, "label buffer too small %d > %d\n",
127 (int) len, (int) sizeof(pr->label) - 1);
128 return -1;
129 }
130
131 blkid_encode_to_utf8(enc,(unsigned char*) pr->label, len,
132 label, len+1);
133
134 return 0;
135 }
136
137 int blkid_probe_set_uuid_as(blkid_probe pr, unsigned char *uuid, const char *name)
138 {
139 short unsigned int*u = (short unsigned int*) uuid;
140
141 if (u[0] && (!name || !strcmp(name, "UUID"))) {
142 sprintf(pr->uuid,
143 "%04x%04x-%04x-%04x-%04x-%04x%04x%04x",
144 be16_to_cpu(u[0]), be16_to_cpu(u[1]), be16_to_cpu(u[2]), be16_to_cpu(u[3]),
145 be16_to_cpu(u[4]), be16_to_cpu(u[5]), be16_to_cpu(u[6]), be16_to_cpu(u[7]));
146 }
147
148 return 0;
149 }
150
151 int blkid_probe_set_uuid(blkid_probe pr, unsigned char *uuid)
152 {
153 return blkid_probe_set_uuid_as(pr, uuid, NULL);
154 }
155
156 int blkid_probe_sprintf_uuid(blkid_probe pr, unsigned char *uuid,
157 size_t len, const char *fmt, ...)
158 {
159 va_list ap;
160
161 va_start(ap, fmt);
162 vsnprintf(pr->uuid, sizeof(pr->uuid), fmt, ap);
163 va_end(ap);
164
165 return 0;
166 }
167
168 static const struct blkid_idinfo *idinfos[] =
169 {
170 &vfat_idinfo,
171 &swsuspend_idinfo,
172 &swap_idinfo,
173 &ext4dev_idinfo,
174 &ext4_idinfo,
175 &ext3_idinfo,
176 &ext2_idinfo,
177 &jbd_idinfo,
178 &ntfs_idinfo,
179 &squashfs_idinfo,
180 &ubi_idinfo,
181 &ubifs_idinfo,
182 &jffs2_idinfo,
183 &hfsplus_idinfo,
184 &hfs_idinfo,
185 &btrfs_idinfo,
186 &f2fs_idinfo,
187 };
188
189 int probe_block(char *block, struct blkid_struct_probe *pr)
190 {
191 struct stat s;
192 int i;
193
194 if (stat(block, &s) || (!S_ISBLK(s.st_mode) && !S_ISREG(s.st_mode) && !strncmp(block, "ubi", 3)))
195 return -1;
196
197 pr->err = -1;
198 pr->fd = open(block, O_RDONLY);
199 if (!pr->fd)
200 return -1;
201
202 for (i = 0; i < ARRAY_SIZE(idinfos); i++) {
203 /* loop over all magic handlers */
204 const struct blkid_idmag *mag;
205
206 /* loop over all probe handlers */
207 DEBUG("scanning %s\n", idinfos[i]->name);
208
209 mag = &idinfos[i]->magics[0];
210
211 while (mag->magic) {
212 int off = (mag->kboff * 1024) + mag->sboff;
213 char magic[32] = { 0 };
214
215 lseek(pr->fd, off, SEEK_SET);
216 if (read(pr->fd, magic, mag->len) < 0)
217 return -1;
218
219 DEBUG("magic: %s %s %d\n", mag->magic, magic, mag->len);
220 if (!memcmp(mag->magic, magic, mag->len))
221 break;
222 mag++;
223 }
224
225 if (mag && mag->magic) {
226 DEBUG("probing %s\n", idinfos[i]->name);
227 pr->err = idinfos[i]->probefunc(pr, mag);
228 pr->id = idinfos[i];
229 strcpy(pr->dev, block);
230 if (!pr->err)
231 break;
232 }
233 }
234
235 close(pr->fd);
236
237 return 0;
238 }