]> git.ipfire.org Git - thirdparty/mdadm.git/blame - sysfs.c
maps: Terminate 'modes' map correctly.
[thirdparty/mdadm.git] / sysfs.c
CommitLineData
e86c9dd6
NB
1/*
2 * sysfs - extract md related information from sysfs. Part of:
3 * mdadm - manage Linux "md" devices aka RAID arrays.
4 *
e736b623 5 * Copyright (C) 2006-2009 Neil Brown <neilb@suse.de>
e86c9dd6
NB
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Author: Neil Brown
23 * Email: <neilb@suse.de>
24 */
25
26#include "mdadm.h"
27#include <dirent.h>
1770662b 28#include <ctype.h>
e86c9dd6 29
bbb52f2b
TM
30#define MAX_SYSFS_PATH_LEN 120
31
193b6c0b 32int load_sys(char *path, char *buf, int len)
e86c9dd6
NB
33{
34 int fd = open(path, O_RDONLY);
35 int n;
36 if (fd < 0)
37 return -1;
193b6c0b 38 n = read(fd, buf, len);
e86c9dd6 39 close(fd);
193b6c0b 40 if (n <0 || n >= len)
e86c9dd6
NB
41 return -1;
42 buf[n] = 0;
8dfb8619 43 if (n && buf[n-1] == '\n')
e86c9dd6
NB
44 buf[n-1] = 0;
45 return 0;
46}
47
7e0f6979 48void sysfs_free(struct mdinfo *sra)
8382f19b 49{
7e0f6979
NB
50 while (sra) {
51 struct mdinfo *sra2 = sra->next;
52 while (sra->devs) {
53 struct mdinfo *d = sra->devs;
54 sra->devs = d->next;
bb758cca 55 free(d->bb.entries);
7e0f6979
NB
56 free(d);
57 }
bb758cca 58 free(sra->bb.entries);
7e0f6979
NB
59 free(sra);
60 sra = sra2;
8382f19b 61 }
8382f19b
NB
62}
63
4dd2df09 64int sysfs_open(char *devnm, char *devname, char *attr)
549e9569 65{
bbb52f2b 66 char fname[MAX_SYSFS_PATH_LEN];
549e9569 67 int fd;
549e9569 68
bbb52f2b 69 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/md/", devnm);
549e9569 70 if (devname) {
bbb52f2b
TM
71 strncat(fname, devname, MAX_SYSFS_PATH_LEN - strlen(fname));
72 strncat(fname, "/", MAX_SYSFS_PATH_LEN - strlen(fname));
549e9569 73 }
bbb52f2b 74 strncat(fname, attr, MAX_SYSFS_PATH_LEN - strlen(fname));
549e9569 75 fd = open(fname, O_RDWR);
ea6d09b0 76 if (fd < 0 && errno == EACCES)
549e9569
NB
77 fd = open(fname, O_RDONLY);
78 return fd;
79}
80
9465f170
GJ
81void sysfs_init_dev(struct mdinfo *mdi, unsigned long devid)
82{
83 snprintf(mdi->sys_name,
84 sizeof(mdi->sys_name), "dev-%s", devid2kname(devid));
85}
86
dae13137 87int sysfs_init(struct mdinfo *mdi, int fd, char *devnm)
f35f2525 88{
67a02d52
JS
89 struct stat stb;
90 char fname[MAX_SYSFS_PATH_LEN];
dae13137 91 int retval = -ENODEV;
67a02d52 92
678a4a36 93 mdi->sys_name[0] = 0;
67a02d52 94 if (fd >= 0)
4dd2df09 95 devnm = fd2devnm(fd);
67a02d52 96
4dd2df09 97 if (devnm == NULL)
dae13137 98 goto out;
67a02d52
JS
99
100 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/md", devnm);
101
102 if (stat(fname, &stb))
dae13137 103 goto out;
67a02d52 104 if (!S_ISDIR(stb.st_mode))
dae13137 105 goto out;
4dd2df09 106 strcpy(mdi->sys_name, devnm);
dae13137
JS
107
108 retval = 0;
109out:
110 return retval;
f35f2525
N
111}
112
4dd2df09 113struct mdinfo *sysfs_read(int fd, char *devnm, unsigned long options)
e86c9dd6 114{
33a6535d
AW
115 char fname[PATH_MAX];
116 char buf[PATH_MAX];
e86c9dd6
NB
117 char *base;
118 char *dbase;
7e0f6979 119 struct mdinfo *sra;
64e103fe 120 struct mdinfo *dev, **devp;
355726fa 121 DIR *dir = NULL;
e86c9dd6
NB
122 struct dirent *de;
123
503975b9 124 sra = xcalloc(1, sizeof(*sra));
dae13137 125 if (sysfs_init(sra, fd, devnm)) {
678a4a36
N
126 free(sra);
127 return NULL;
128 }
e86c9dd6 129
7e0f6979 130 sprintf(fname, "/sys/block/%s/md/", sra->sys_name);
e86c9dd6
NB
131 base = fname + strlen(fname);
132
133 sra->devs = NULL;
8382f19b
NB
134 if (options & GET_VERSION) {
135 strcpy(base, "metadata_version");
193b6c0b 136 if (load_sys(fname, buf, sizeof(buf)))
8382f19b 137 goto abort;
294d6f45 138 if (strncmp(buf, "none", 4) == 0) {
7e0f6979
NB
139 sra->array.major_version =
140 sra->array.minor_version = -1;
294d6f45
NB
141 strcpy(sra->text_version, "");
142 } else if (strncmp(buf, "external:", 9) == 0) {
142cb9e1
NB
143 sra->array.major_version = -1;
144 sra->array.minor_version = -2;
145 strcpy(sra->text_version, buf+9);
b8ac1967 146 } else {
8382f19b 147 sscanf(buf, "%d.%d",
7e0f6979
NB
148 &sra->array.major_version,
149 &sra->array.minor_version);
b8ac1967
NB
150 strcpy(sra->text_version, buf);
151 }
8382f19b 152 }
e86c9dd6
NB
153 if (options & GET_LEVEL) {
154 strcpy(base, "level");
193b6c0b 155 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6 156 goto abort;
7e0f6979 157 sra->array.level = map_name(pers, buf);
e86c9dd6
NB
158 }
159 if (options & GET_LAYOUT) {
160 strcpy(base, "layout");
193b6c0b 161 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6 162 goto abort;
7e0f6979 163 sra->array.layout = strtoul(buf, NULL, 0);
e86c9dd6 164 }
549e9569
NB
165 if (options & GET_DISKS) {
166 strcpy(base, "raid_disks");
193b6c0b 167 if (load_sys(fname, buf, sizeof(buf)))
549e9569
NB
168 goto abort;
169 sra->array.raid_disks = strtoul(buf, NULL, 0);
f1d26766
DW
170 }
171 if (options & GET_DEGRADED) {
172 strcpy(base, "degraded");
193b6c0b 173 if (load_sys(fname, buf, sizeof(buf)))
f1d26766
DW
174 goto abort;
175 sra->array.failed_disks = strtoul(buf, NULL, 0);
549e9569 176 }
e86c9dd6
NB
177 if (options & GET_COMPONENT) {
178 strcpy(base, "component_size");
193b6c0b 179 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6
NB
180 goto abort;
181 sra->component_size = strtoull(buf, NULL, 0);
353632d9
NB
182 /* sysfs reports "K", but we want sectors */
183 sra->component_size *= 2;
e86c9dd6
NB
184 }
185 if (options & GET_CHUNK) {
186 strcpy(base, "chunk_size");
193b6c0b 187 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6 188 goto abort;
7e0f6979 189 sra->array.chunk_size = strtoul(buf, NULL, 0);
e86c9dd6 190 }
758d3a8e
NB
191 if (options & GET_CACHE) {
192 strcpy(base, "stripe_cache_size");
193b6c0b 193 if (load_sys(fname, buf, sizeof(buf)))
6a67848a
N
194 /* Probably level doesn't support it */
195 sra->cache_size = 0;
196 else
197 sra->cache_size = strtoul(buf, NULL, 0);
758d3a8e 198 }
37dfc3d6
NB
199 if (options & GET_MISMATCH) {
200 strcpy(base, "mismatch_cnt");
193b6c0b 201 if (load_sys(fname, buf, sizeof(buf)))
37dfc3d6
NB
202 goto abort;
203 sra->mismatch_cnt = strtoul(buf, NULL, 0);
204 }
1770662b
DW
205 if (options & GET_SAFEMODE) {
206 int scale = 1;
207 int dot = 0;
f21e18ca 208 unsigned i;
1770662b
DW
209 unsigned long msec;
210 size_t len;
211
212 strcpy(base, "safe_mode_delay");
193b6c0b 213 if (load_sys(fname, buf, sizeof(buf)))
1770662b
DW
214 goto abort;
215
216 /* remove a period, and count digits after it */
217 len = strlen(buf);
218 for (i = 0; i < len; i++) {
219 if (dot) {
220 if (isdigit(buf[i])) {
221 buf[i-1] = buf[i];
222 scale *= 10;
223 }
224 buf[i] = 0;
225 } else if (buf[i] == '.') {
226 dot=1;
227 buf[i] = 0;
228 }
229 }
230 msec = strtoul(buf, NULL, 10);
231 msec = (msec * 1000) / scale;
232 sra->safe_mode_delay = msec;
233 }
c0c1acd6
N
234 if (options & GET_BITMAP_LOCATION) {
235 strcpy(base, "bitmap/location");
193b6c0b 236 if (load_sys(fname, buf, sizeof(buf)))
c0c1acd6
N
237 goto abort;
238 if (strncmp(buf, "file", 4) == 0)
239 sra->bitmap_offset = 1;
240 else if (strncmp(buf, "none", 4) == 0)
241 sra->bitmap_offset = 0;
242 else if (buf[0] == '+')
fbdef498 243 sra->bitmap_offset = strtol(buf+1, NULL, 10);
c0c1acd6
N
244 else
245 goto abort;
246 }
e86c9dd6 247
5aa644c6
SL
248 if (options & GET_ARRAY_STATE) {
249 strcpy(base, "array_state");
5e4ca8bb 250 if (load_sys(fname, buf, sizeof(buf)))
5aa644c6 251 goto abort;
5e4ca8bb
JS
252 sra->array_state = map_name(sysfs_array_states, buf);
253 if (sra->array_state == UnSet)
254 sra->array_state = ARRAY_UNKNOWN_STATE;
255 }
5aa644c6 256
5308f117
AP
257 if (options & GET_CONSISTENCY_POLICY) {
258 strcpy(base, "consistency_policy");
259 if (load_sys(fname, buf, sizeof(buf))) {
260 sra->consistency_policy = CONSISTENCY_POLICY_UNKNOWN;
261 } else {
262 sra->consistency_policy = map_name(consistency_policies, buf);
263 if (sra->consistency_policy == UnSet)
264 sra->consistency_policy = CONSISTENCY_POLICY_UNKNOWN;
265 }
266 }
267
e86c9dd6
NB
268 if (! (options & GET_DEVS))
269 return sra;
270
271 /* Get all the devices as well */
272 *base = 0;
273 dir = opendir(fname);
274 if (!dir)
275 goto abort;
7e0f6979 276 sra->array.spare_disks = 0;
e86c9dd6 277
64e103fe
N
278 devp = &sra->devs;
279 sra->devs = NULL;
e86c9dd6
NB
280 while ((de = readdir(dir)) != NULL) {
281 char *ep;
282 if (de->d_ino == 0 ||
283 strncmp(de->d_name, "dev-", 4) != 0)
284 continue;
285 strcpy(base, de->d_name);
286 dbase = base + strlen(base);
287 *dbase++ = '/';
288
bb758cca 289 dev = xcalloc(1, sizeof(*dev));
e86c9dd6
NB
290
291 /* Always get slot, major, minor */
292 strcpy(dbase, "slot");
193b6c0b 293 if (load_sys(fname, buf, sizeof(buf))) {
4795982e
DW
294 /* hmm... unable to read 'slot' maybe the device
295 * is going away?
296 */
297 strcpy(dbase, "block");
298 if (readlink(fname, buf, sizeof(buf)) < 0 &&
299 errno != ENAMETOOLONG) {
300 /* ...yup device is gone */
301 free(dev);
302 continue;
303 } else {
304 /* slot is unreadable but 'block' link
305 * still intact... something bad is happening
306 * so abort
307 */
308 free(dev);
309 goto abort;
310 }
64e103fe 311
4795982e 312 }
4795982e 313 strcpy(dev->sys_name, de->d_name);
06c7f68e
NB
314 dev->disk.raid_disk = strtoul(buf, &ep, 10);
315 if (*ep) dev->disk.raid_disk = -1;
e86c9dd6
NB
316
317 strcpy(dbase, "block/dev");
193b6c0b 318 if (load_sys(fname, buf, sizeof(buf))) {
b526e52d
DW
319 /* assume this is a stale reference to a hot
320 * removed device
321 */
dab4a513 322 free(dev);
b526e52d 323 continue;
dab4a513 324 }
e6fc80a8 325 sra->array.nr_disks++;
06c7f68e 326 sscanf(buf, "%d:%d", &dev->disk.major, &dev->disk.minor);
e86c9dd6 327
dab4a513 328 /* special case check for block devices that can go 'offline' */
b526e52d 329 strcpy(dbase, "block/device/state");
193b6c0b 330 if (load_sys(fname, buf, sizeof(buf)) == 0 &&
b526e52d
DW
331 strncmp(buf, "offline", 7) == 0) {
332 free(dev);
333 continue;
dab4a513
DW
334 }
335
336 /* finally add this disk to the array */
64e103fe
N
337 *devp = dev;
338 devp = & dev->next;
339 dev->next = NULL;
dab4a513 340
e86c9dd6
NB
341 if (options & GET_OFFSET) {
342 strcpy(dbase, "offset");
193b6c0b 343 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6 344 goto abort;
06c7f68e 345 dev->data_offset = strtoull(buf, NULL, 0);
fe384ca0 346 strcpy(dbase, "new_offset");
193b6c0b 347 if (load_sys(fname, buf, sizeof(buf)) == 0)
fe384ca0
N
348 dev->new_data_offset = strtoull(buf, NULL, 0);
349 else
350 dev->new_data_offset = dev->data_offset;
e86c9dd6
NB
351 }
352 if (options & GET_SIZE) {
353 strcpy(dbase, "size");
193b6c0b 354 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6 355 goto abort;
047d2e49 356 dev->component_size = strtoull(buf, NULL, 0) * 2;
e86c9dd6
NB
357 }
358 if (options & GET_STATE) {
06c7f68e 359 dev->disk.state = 0;
e86c9dd6 360 strcpy(dbase, "state");
193b6c0b 361 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6
NB
362 goto abort;
363 if (strstr(buf, "in_sync"))
06c7f68e 364 dev->disk.state |= (1<<MD_DISK_SYNC);
e86c9dd6 365 if (strstr(buf, "faulty"))
06c7f68e
NB
366 dev->disk.state |= (1<<MD_DISK_FAULTY);
367 if (dev->disk.state == 0)
7e0f6979 368 sra->array.spare_disks++;
e86c9dd6
NB
369 }
370 if (options & GET_ERROR) {
371 strcpy(buf, "errors");
193b6c0b 372 if (load_sys(fname, buf, sizeof(buf)))
e86c9dd6
NB
373 goto abort;
374 dev->errors = strtoul(buf, NULL, 0);
375 }
376 }
355726fa 377 closedir(dir);
e86c9dd6
NB
378 return sra;
379
380 abort:
355726fa
NB
381 if (dir)
382 closedir(dir);
8382f19b 383 sysfs_free(sra);
e86c9dd6
NB
384 return NULL;
385}
386
1770662b
DW
387int sysfs_attr_match(const char *attr, const char *str)
388{
389 /* See if attr, read from a sysfs file, matches
390 * str. They must either be the same, or attr can
391 * have a trailing newline or comma
392 */
393 while (*attr && *str && *attr == *str) {
394 attr++;
395 str++;
396 }
397
398 if (*str || (*attr && *attr != ',' && *attr != '\n'))
399 return 0;
400 return 1;
401}
402
403int sysfs_match_word(const char *word, char **list)
404{
405 int n;
406 for (n=0; list[n]; n++)
407 if (sysfs_attr_match(word, list[n]))
408 break;
409 return n;
410}
411
e86c9dd6
NB
412unsigned long long get_component_size(int fd)
413{
414 /* Find out the component size of the array.
415 * We cannot trust GET_ARRAY_INFO ioctl as it's
416 * size field is only 32bits.
417 * So look in /sys/block/mdXXX/md/component_size
353632d9 418 *
8686f3ed 419 * This returns in units of sectors.
e86c9dd6
NB
420 */
421 struct stat stb;
bbb52f2b 422 char fname[MAX_SYSFS_PATH_LEN];
e86c9dd6 423 int n;
36138e4e
JS
424 if (fstat(fd, &stb))
425 return 0;
c07566f1
N
426 snprintf(fname, MAX_SYSFS_PATH_LEN,
427 "/sys/block/%s/md/component_size", stat2devnm(&stb));
e86c9dd6
NB
428 fd = open(fname, O_RDONLY);
429 if (fd < 0)
430 return 0;
431 n = read(fd, fname, sizeof(fname));
432 close(fd);
99f6e521 433 if (n < 0 || n == sizeof(fname))
e86c9dd6
NB
434 return 0;
435 fname[n] = 0;
8686f3ed 436 return strtoull(fname, NULL, 10) * 2;
e86c9dd6
NB
437}
438
7e0f6979 439int sysfs_set_str(struct mdinfo *sra, struct mdinfo *dev,
e86c9dd6
NB
440 char *name, char *val)
441{
bbb52f2b 442 char fname[MAX_SYSFS_PATH_LEN];
f21e18ca 443 unsigned int n;
e86c9dd6 444 int fd;
7e1432fb 445
bbb52f2b 446 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/md/%s/%s",
7e0f6979 447 sra->sys_name, dev?dev->sys_name:"", name);
e86c9dd6
NB
448 fd = open(fname, O_WRONLY);
449 if (fd < 0)
450 return -1;
451 n = write(fd, val, strlen(val));
452 close(fd);
2a24d7b6 453 if (n != strlen(val)) {
1ade5cc1
N
454 dprintf("failed to write '%s' to '%s' (%s)\n",
455 val, fname, strerror(errno));
e86c9dd6 456 return -1;
2a24d7b6 457 }
e86c9dd6
NB
458 return 0;
459}
460
7e0f6979 461int sysfs_set_num(struct mdinfo *sra, struct mdinfo *dev,
e86c9dd6
NB
462 char *name, unsigned long long val)
463{
464 char valstr[50];
465 sprintf(valstr, "%llu", val);
466 return sysfs_set_str(sra, dev, name, valstr);
467}
468
012a8641
JS
469int sysfs_set_num_signed(struct mdinfo *sra, struct mdinfo *dev,
470 char *name, long long val)
471{
472 char valstr[50];
473 sprintf(valstr, "%lli", val);
474 return sysfs_set_str(sra, dev, name, valstr);
475}
476
97590376
N
477int sysfs_uevent(struct mdinfo *sra, char *event)
478{
bbb52f2b 479 char fname[MAX_SYSFS_PATH_LEN];
97590376
N
480 int n;
481 int fd;
482
bbb52f2b 483 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/uevent",
97590376
N
484 sra->sys_name);
485 fd = open(fname, O_WRONLY);
486 if (fd < 0)
487 return -1;
488 n = write(fd, event, strlen(event));
489 close(fd);
e4c72d1d 490 if (n != (int)strlen(event)) {
1ade5cc1
N
491 dprintf("failed to write '%s' to '%s' (%s)\n",
492 event, fname, strerror(errno));
e4c72d1d
LB
493 return -1;
494 }
97590376 495 return 0;
1011e834 496}
97590376 497
bc77ed53
DW
498int sysfs_attribute_available(struct mdinfo *sra, struct mdinfo *dev, char *name)
499{
bbb52f2b 500 char fname[MAX_SYSFS_PATH_LEN];
bc77ed53
DW
501 struct stat st;
502
bbb52f2b 503 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/md/%s/%s",
bc77ed53
DW
504 sra->sys_name, dev?dev->sys_name:"", name);
505
506 return stat(fname, &st) == 0;
507}
508
a6288483
N
509int sysfs_get_fd(struct mdinfo *sra, struct mdinfo *dev,
510 char *name)
e86c9dd6 511{
bbb52f2b 512 char fname[MAX_SYSFS_PATH_LEN];
e86c9dd6 513 int fd;
a6288483 514
bbb52f2b 515 snprintf(fname, MAX_SYSFS_PATH_LEN, "/sys/block/%s/md/%s/%s",
7e0f6979 516 sra->sys_name, dev?dev->sys_name:"", name);
a6288483 517 fd = open(fname, O_RDWR);
e86c9dd6 518 if (fd < 0)
a6288483
N
519 fd = open(fname, O_RDONLY);
520 return fd;
521}
522
523int sysfs_fd_get_ll(int fd, unsigned long long *val)
524{
525 char buf[50];
526 int n;
527 char *ep;
528
529 lseek(fd, 0, 0);
e86c9dd6 530 n = read(fd, buf, sizeof(buf));
5418499a 531 if (n <= 0 || n == sizeof(buf))
6560987b 532 return -2;
e86c9dd6
NB
533 buf[n] = 0;
534 *val = strtoull(buf, &ep, 0);
535 if (ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))
536 return -1;
537 return 0;
538}
2503d23b 539
a6288483
N
540int sysfs_get_ll(struct mdinfo *sra, struct mdinfo *dev,
541 char *name, unsigned long long *val)
542{
543 int n;
544 int fd;
545
546 fd = sysfs_get_fd(sra, dev, name);
547 if (fd < 0)
548 return -1;
549 n = sysfs_fd_get_ll(fd, val);
550 close(fd);
551 return n;
552}
553
2eba8496
N
554int sysfs_fd_get_two(int fd, unsigned long long *v1, unsigned long long *v2)
555{
556 /* two numbers in this sysfs file, either
557 * NNN (NNN)
558 * or
559 * NNN / NNN
560 */
561 char buf[80];
562 int n;
563 char *ep, *ep2;
564
565 lseek(fd, 0, 0);
566 n = read(fd, buf, sizeof(buf));
5418499a 567 if (n <= 0 || n == sizeof(buf))
2eba8496
N
568 return -2;
569 buf[n] = 0;
570 *v1 = strtoull(buf, &ep, 0);
571 if (ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))
572 return -1;
573 while (*ep == ' ' || *ep == '/' || *ep == '(')
574 ep++;
575 *v2 = strtoull(ep, &ep2, 0);
576 if (ep2 == ep || (*ep2 != 0 && *ep2 != '\n' && *ep2 != ' ' && *ep2 != ')')) {
577 *v2 = *v1;
578 return 1;
579 }
580 return 2;
581}
582
583int sysfs_get_two(struct mdinfo *sra, struct mdinfo *dev,
584 char *name, unsigned long long *v1, unsigned long long *v2)
585{
586 int n;
587 int fd;
588
589 fd = sysfs_get_fd(sra, dev, name);
590 if (fd < 0)
591 return -1;
592 n = sysfs_fd_get_two(fd, v1, v2);
593 close(fd);
594 return n;
595}
596
7236ee7a
N
597int sysfs_fd_get_str(int fd, char *val, int size)
598{
599 int n;
600
601 lseek(fd, 0, 0);
602 n = read(fd, val, size);
5418499a 603 if (n <= 0 || n == size)
7236ee7a
N
604 return -1;
605 val[n] = 0;
606 return n;
607}
608
93ecfa01
N
609int sysfs_get_str(struct mdinfo *sra, struct mdinfo *dev,
610 char *name, char *val, int size)
611{
93ecfa01
N
612 int n;
613 int fd;
7236ee7a
N
614
615 fd = sysfs_get_fd(sra, dev, name);
93ecfa01
N
616 if (fd < 0)
617 return -1;
7236ee7a 618 n = sysfs_fd_get_str(fd, val, size);
93ecfa01 619 close(fd);
93ecfa01
N
620 return n;
621}
622
8ed3e5e1
DW
623int sysfs_set_safemode(struct mdinfo *sra, unsigned long ms)
624{
625 unsigned long sec;
626 unsigned long msec;
627 char delay[30];
628
629 sec = ms / 1000;
0dd3ba30 630 msec = ms % 1000;
8ed3e5e1 631
0dd3ba30
DW
632 sprintf(delay, "%ld.%03ld\n", sec, msec);
633 /* this '\n' ^ needed for kernels older than 2.6.28 */
8ed3e5e1
DW
634 return sysfs_set_str(sra, NULL, "safe_mode_delay", delay);
635}
636
f35f2525 637int sysfs_set_array(struct mdinfo *info, int vers)
2503d23b
NB
638{
639 int rv = 0;
f35f2525 640 char ver[100];
a5062b1c 641 int raid_disks = info->array.raid_disks;
f35f2525
N
642
643 ver[0] = 0;
644 if (info->array.major_version == -1 &&
645 info->array.minor_version == -2) {
ddb12f6c
AK
646 char buf[1024];
647
f35f2525
N
648 strcat(strcpy(ver, "external:"), info->text_version);
649
ddb12f6c
AK
650 /* meta version might already be set if we are setting
651 * new geometry for a reshape. In that case we don't
652 * want to over-write the 'readonly' flag that is
653 * stored in the metadata version. So read the current
654 * version first, and preserve the flag
655 */
656 if (sysfs_get_str(info, NULL, "metadata_version",
657 buf, 1024) > 0)
658 if (strlen(buf) >= 9 && buf[9] == '-')
659 ver[9] = '-';
660
f35f2525
N
661 if ((vers % 100) < 2 ||
662 sysfs_set_str(info, NULL, "metadata_version",
663 ver) < 0) {
7a862a02 664 pr_err("This kernel does not support external metadata.\n");
f35f2525
N
665 return 1;
666 }
667 }
2503d23b
NB
668 if (info->array.level < 0)
669 return 0; /* FIXME */
f35f2525 670 rv |= sysfs_set_str(info, NULL, "level",
2503d23b 671 map_num(pers, info->array.level));
a5062b1c
AK
672 if (info->reshape_active && info->delta_disks != UnSet)
673 raid_disks -= info->delta_disks;
674 rv |= sysfs_set_num(info, NULL, "raid_disks", raid_disks);
f35f2525
N
675 rv |= sysfs_set_num(info, NULL, "chunk_size", info->array.chunk_size);
676 rv |= sysfs_set_num(info, NULL, "layout", info->array.layout);
677 rv |= sysfs_set_num(info, NULL, "component_size", info->component_size/2);
da9b4a62
DW
678 if (info->custom_array_size) {
679 int rc;
680
681 rc = sysfs_set_num(info, NULL, "array_size",
682 info->custom_array_size/2);
683 if (rc && errno == ENOENT) {
7a862a02 684 pr_err("This kernel does not have the md/array_size attribute, the array may be larger than expected\n");
da9b4a62
DW
685 rc = 0;
686 }
687 rv |= rc;
688 }
689
f35f2525
N
690 if (info->array.level > 0)
691 rv |= sysfs_set_num(info, NULL, "resync_start", info->resync_start);
f897078e
N
692
693 if (info->reshape_active) {
694 rv |= sysfs_set_num(info, NULL, "reshape_position",
695 info->reshape_progress);
696 rv |= sysfs_set_num(info, NULL, "chunk_size", info->new_chunk);
20a40eca
N
697 rv |= sysfs_set_num(info, NULL, "layout", info->new_layout);
698 rv |= sysfs_set_num(info, NULL, "raid_disks",
a5062b1c 699 info->array.raid_disks);
20a40eca
N
700 /* We don't set 'new_level' here. That can only happen
701 * once the reshape completes.
f897078e
N
702 */
703 }
2432ce9b
AP
704
705 if (info->consistency_policy == CONSISTENCY_POLICY_PPL) {
706 if (sysfs_set_str(info, NULL, "consistency_policy",
707 map_num(consistency_policies,
708 info->consistency_policy))) {
709 pr_err("This kernel does not support PPL\n");
710 return 1;
711 }
712 }
713
2503d23b
NB
714 return rv;
715}
716
2904b26f 717int sysfs_add_disk(struct mdinfo *sra, struct mdinfo *sd, int resume)
2503d23b 718{
33a6535d
AW
719 char dv[PATH_MAX];
720 char nm[PATH_MAX];
2503d23b
NB
721 char *dname;
722 int rv;
bb758cca 723 int i;
2503d23b
NB
724
725 sprintf(dv, "%d:%d", sd->disk.major, sd->disk.minor);
726 rv = sysfs_set_str(sra, NULL, "new_dev", dv);
727 if (rv)
728 return rv;
729
730 memset(nm, 0, sizeof(nm));
bc17158d 731 dname = devid2kname(makedev(sd->disk.major, sd->disk.minor));
2503d23b
NB
732 strcpy(sd->sys_name, "dev-");
733 strcpy(sd->sys_name+4, dname);
734
2904b26f
DW
735 /* test write to see if 'recovery_start' is available */
736 if (resume && sd->recovery_start < MaxSector &&
737 sysfs_set_num(sra, sd, "recovery_start", 0)) {
738 sysfs_set_str(sra, sd, "state", "remove");
739 return -1;
740 }
741
73649188 742 rv = sysfs_set_num(sra, sd, "offset", sd->data_offset);
2503d23b
NB
743 rv |= sysfs_set_num(sra, sd, "size", (sd->component_size+1) / 2);
744 if (sra->array.level != LEVEL_CONTAINER) {
2432ce9b
AP
745 if (sd->consistency_policy == CONSISTENCY_POLICY_PPL) {
746 rv |= sysfs_set_num(sra, sd, "ppl_sector", sd->ppl_sector);
747 rv |= sysfs_set_num(sra, sd, "ppl_size", sd->ppl_size);
748 }
d23534e4 749 if (sd->recovery_start == MaxSector)
462906cd
N
750 /* This can correctly fail if array isn't started,
751 * yet, so just ignore status for now.
752 */
d23534e4 753 sysfs_set_str(sra, sd, "state", "insync");
899aead0
AK
754 if (sd->disk.raid_disk >= 0)
755 rv |= sysfs_set_num(sra, sd, "slot", sd->disk.raid_disk);
2904b26f
DW
756 if (resume)
757 sysfs_set_num(sra, sd, "recovery_start", sd->recovery_start);
2503d23b 758 }
bb758cca
TM
759 if (sd->bb.supported) {
760 if (sysfs_set_str(sra, sd, "state", "external_bbl")) {
761 /*
762 * backward compatibility - if kernel doesn't support
763 * bad blocks for external metadata, let it continue
764 * as long as there are none known so far
765 */
766 if (sd->bb.count) {
767 pr_err("The kernel has no support for bad blocks in external metadata\n");
768 return -1;
769 }
770 }
771
772 for (i = 0; i < sd->bb.count; i++) {
773 char s[30];
774 const struct md_bb_entry *entry = &sd->bb.entries[i];
775
776 snprintf(s, sizeof(s) - 1, "%llu %d\n", entry->sector,
777 entry->length);
778 rv |= sysfs_set_str(sra, sd, "bad_blocks", s);
779 }
780 }
2503d23b
NB
781 return rv;
782}
90c8b707 783
755c99fa 784#if 0
90c8b707
DW
785int sysfs_disk_to_sg(int fd)
786{
787 /* from an open block device, try find and open its corresponding
788 * scsi_generic interface
789 */
790 struct stat st;
791 char path[256];
792 char sg_path[256];
5418499a 793 char sg_major_minor[10];
90c8b707
DW
794 char *c;
795 DIR *dir;
796 struct dirent *de;
797 int major, minor, rv;
798
799 if (fstat(fd, &st))
800 return -1;
801
802 snprintf(path, sizeof(path), "/sys/dev/block/%d:%d/device",
803 major(st.st_rdev), minor(st.st_rdev));
804
805 dir = opendir(path);
806 if (!dir)
807 return -1;
808
809 de = readdir(dir);
810 while (de) {
811 if (strncmp("scsi_generic:", de->d_name,
812 strlen("scsi_generic:")) == 0)
813 break;
814 de = readdir(dir);
815 }
816 closedir(dir);
817
818 if (!de)
819 return -1;
820
821 snprintf(sg_path, sizeof(sg_path), "%s/%s/dev", path, de->d_name);
822 fd = open(sg_path, O_RDONLY);
823 if (fd < 0)
824 return fd;
825
826 rv = read(fd, sg_major_minor, sizeof(sg_major_minor));
827 close(fd);
5418499a 828 if (rv < 0 || rv == sizeof(sg_major_minor))
90c8b707
DW
829 return -1;
830 else
831 sg_major_minor[rv - 1] = '\0';
832
833 c = strchr(sg_major_minor, ':');
834 *c = '\0';
835 c++;
836 major = strtol(sg_major_minor, NULL, 10);
837 minor = strtol(c, NULL, 10);
838 snprintf(path, sizeof(path), "/dev/.tmp.md.%d:%d:%d",
839 (int) getpid(), major, minor);
840 if (mknod(path, S_IFCHR|0600, makedev(major, minor))==0) {
841 fd = open(path, O_RDONLY);
842 unlink(path);
843 return fd;
844 }
845
846 return -1;
847}
755c99fa 848#endif
90c8b707 849
f1665f72
DW
850int sysfs_disk_to_scsi_id(int fd, __u32 *id)
851{
852 /* from an open block device, try to retrieve it scsi_id */
853 struct stat st;
854 char path[256];
f1665f72
DW
855 DIR *dir;
856 struct dirent *de;
d8924477 857 int host, bus, target, lun;
f1665f72
DW
858
859 if (fstat(fd, &st))
860 return 1;
861
fa89bdee 862 snprintf(path, sizeof(path), "/sys/dev/block/%d:%d/device/scsi_device",
f1665f72
DW
863 major(st.st_rdev), minor(st.st_rdev));
864
865 dir = opendir(path);
866 if (!dir)
867 return 1;
868
d8924477
DW
869 for (de = readdir(dir); de; de = readdir(dir)) {
870 int count;
871
872 if (de->d_type != DT_DIR)
873 continue;
874
875 count = sscanf(de->d_name, "%d:%d:%d:%d", &host, &bus, &target, &lun);
876 if (count == 4)
f1665f72 877 break;
f1665f72
DW
878 }
879 closedir(dir);
880
881 if (!de)
882 return 1;
883
d8924477 884 *id = (host << 24) | (bus << 16) | (target << 8) | (lun << 0);
f1665f72
DW
885 return 0;
886}
f94d52f4 887
4dd2df09 888int sysfs_unique_holder(char *devnm, long rdev)
f94d52f4 889{
4dd2df09 890 /* Check that devnm is a holder of rdev,
f94d52f4
NB
891 * and is the only holder.
892 * we should be locked against races by
4dd2df09 893 * an O_EXCL on devnm
aab15415
N
894 * Return values:
895 * 0 - not unique, not even a holder
896 * 1 - unique, this is the only holder.
897 * 2/3 - not unique, there is another holder
898 * -1 - error, cannot find the holders
f94d52f4
NB
899 */
900 DIR *dir;
901 struct dirent *de;
902 char dirname[100];
903 char l;
aab15415 904 int ret = 0;
f94d52f4
NB
905 sprintf(dirname, "/sys/dev/block/%d:%d/holders",
906 major(rdev), minor(rdev));
907 dir = opendir(dirname);
f94d52f4 908 if (!dir)
aab15415 909 return -1;
f94d52f4
NB
910 l = strlen(dirname);
911 while ((de = readdir(dir)) != NULL) {
4dd2df09
N
912 char buf[100];
913 char *sl;
f94d52f4 914 int n;
f94d52f4
NB
915
916 if (de->d_ino == 0)
917 continue;
918 if (de->d_name[0] == '.')
919 continue;
920 strcpy(dirname+l, "/");
921 strcat(dirname+l, de->d_name);
4dd2df09
N
922 n = readlink(dirname, buf, sizeof(buf)-1);
923 if (n <= 0)
93f1df33 924 continue;
f94d52f4 925 buf[n] = 0;
4dd2df09
N
926 sl = strrchr(buf, '/');
927 if (!sl)
aab15415 928 continue;
4dd2df09 929 sl++;
f94d52f4 930
4dd2df09 931 if (strcmp(devnm, sl) == 0)
aab15415
N
932 ret |= 1;
933 else
934 ret |= 2;
f94d52f4
NB
935 }
936 closedir(dir);
aab15415 937 return ret;
f94d52f4 938}
38a07ed6 939
bc77ed53
DW
940int sysfs_freeze_array(struct mdinfo *sra)
941{
942 /* Try to freeze resync/rebuild on this array/container.
943 * Return -1 if the array is busy,
bc77ed53
DW
944 * return 0 if this kernel doesn't support 'frozen'
945 * return 1 if it worked.
946 */
947 char buf[20];
948
949 if (!sysfs_attribute_available(sra, NULL, "sync_action"))
950 return 1; /* no sync_action == frozen */
951 if (sysfs_get_str(sra, NULL, "sync_action", buf, 20) <= 0)
952 return 0;
fd324b08
N
953 if (strcmp(buf, "frozen\n") == 0)
954 /* Already frozen */
955 return 0;
dea3786a 956 if (strcmp(buf, "idle\n") != 0 && strcmp(buf, "recover\n") != 0)
bc77ed53
DW
957 return -1;
958 if (sysfs_set_str(sra, NULL, "sync_action", "frozen") < 0)
959 return 0;
960 return 1;
961}
efc67e8e
N
962
963int sysfs_wait(int fd, int *msec)
964{
965 /* Wait up to '*msec' for fd to have an exception condition.
966 * if msec == NULL, wait indefinitely.
967 */
968 fd_set fds;
969 int n;
970 FD_ZERO(&fds);
971 FD_SET(fd, &fds);
972 if (msec == NULL)
973 n = select(fd+1, NULL, NULL, &fds, NULL);
974 else if (*msec < 0)
975 n = 0;
976 else {
977 struct timeval start, end, tv;
978 gettimeofday(&start, NULL);
4bffc964
N
979 if (*msec < 1000) {
980 tv.tv_sec = 0;
efc67e8e 981 tv.tv_usec = (*msec)*1000;
4bffc964 982 } else {
efc67e8e 983 tv.tv_sec = (*msec)/1000;
4bffc964
N
984 tv.tv_usec = 0;
985 }
efc67e8e
N
986 n = select(fd+1, NULL, NULL, &fds, &tv);
987 gettimeofday(&end, NULL);
988 end.tv_sec -= start.tv_sec;
989 *msec -= (end.tv_sec * 1000 + end.tv_usec/1000
4bffc964 990 - start.tv_usec/1000) + 1;
efc67e8e
N
991 }
992 return n;
993}