forked from sysstat/sysstat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.c
918 lines (802 loc) · 22.8 KB
/
common.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
/*
* sar, sadc, sadf, mpstat and iostat common routines.
* (C) 1999-2014 by Sebastien GODARD (sysstat <at> orange.fr)
*
***************************************************************************
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without the implied warranty of MERCHANTABILITY *
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
* for more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program; if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
***************************************************************************
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <errno.h>
#include <unistd.h> /* For STDOUT_FILENO, among others */
#include <sys/ioctl.h>
#include <sys/types.h>
#include <dirent.h>
#include <ctype.h>
#include <libgen.h>
#include "version.h"
#include "common.h"
#include "ioconf.h"
#include "rd_stats.h"
#ifdef USE_NLS
#include <locale.h>
#include <libintl.h>
#define _(string) gettext(string)
#else
#define _(string) (string)
#endif
/* Number of ticks per second */
unsigned int hz;
/* Number of bit shifts to convert pages to kB */
unsigned int kb_shift;
/* Type of persistent device names used in sar and iostat */
char persistent_name_type[MAX_FILE_LEN];
/*
***************************************************************************
* Print sysstat version number and exit.
***************************************************************************
*/
void print_version(void)
{
printf(_("sysstat version %s\n"), VERSION);
printf("(C) Sebastien Godard (sysstat <at> orange.fr)\n");
exit(0);
}
/*
***************************************************************************
* Get local date and time.
*
* IN:
* @d_off Day offset (number of days to go back in the past).
*
* OUT:
* @rectime Current local date and time.
*
* RETURNS:
* Value of time in seconds since the Epoch.
***************************************************************************
*/
time_t get_localtime(struct tm *rectime, int d_off)
{
time_t timer;
struct tm *ltm;
time(&timer);
timer -= SEC_PER_DAY * d_off;
ltm = localtime(&timer);
if (ltm) {
*rectime = *ltm;
}
return timer;
}
/*
***************************************************************************
* Get date and time expressed in UTC.
*
* IN:
* @d_off Day offset (number of days to go back in the past).
*
* OUT:
* @rectime Current date and time expressed in UTC.
*
* RETURNS:
* Value of time in seconds since the Epoch.
***************************************************************************
*/
time_t get_gmtime(struct tm *rectime, int d_off)
{
time_t timer;
struct tm *ltm;
time(&timer);
timer -= SEC_PER_DAY * d_off;
ltm = gmtime(&timer);
if (ltm) {
*rectime = *ltm;
}
return timer;
}
/*
***************************************************************************
* Get date and time and take into account <ENV_TIME_DEFTM> variable.
*
* IN:
* @d_off Day offset (number of days to go back in the past).
*
* OUT:
* @rectime Current date and time.
*
* RETURNS:
* Value of time in seconds since the Epoch.
***************************************************************************
*/
time_t get_time(struct tm *rectime, int d_off)
{
static int utc = 0;
char *e;
if (!utc) {
/* Read environment variable value once */
if ((e = getenv(ENV_TIME_DEFTM)) != NULL) {
utc = !strcmp(e, K_UTC);
}
utc++;
}
if (utc == 2)
return get_gmtime(rectime, d_off);
else
return get_localtime(rectime, d_off);
}
/*
***************************************************************************
* Count number of comma-separated values in arguments list. For example,
* the number will be 3 for the list "foobar -p 1 -p 2,3,4 2 5".
*
* IN:
* @arg_c Number of arguments in the list.
* @arg_v Arguments list.
*
* RETURNS:
* Number of comma-separated values in the list.
***************************************************************************
*/
int count_csvalues(int arg_c, char **arg_v)
{
int opt = 1;
int nr = 0;
char *t;
while (opt < arg_c) {
if (strchr(arg_v[opt], ',')) {
for (t = arg_v[opt]; t; t = strchr(t + 1, ',')) {
nr++;
}
}
opt++;
}
return nr;
}
/*
***************************************************************************
* Look for partitions of a given block device in /sys filesystem.
*
* IN:
* @dev_name Name of the block device.
*
* RETURNS:
* Number of partitions for the given block device.
***************************************************************************
*/
int get_dev_part_nr(char *dev_name)
{
DIR *dir;
struct dirent *drd;
char dfile[MAX_PF_NAME], line[MAX_PF_NAME];
int part = 0;
snprintf(dfile, MAX_PF_NAME, "%s/%s", SYSFS_BLOCK, dev_name);
dfile[MAX_PF_NAME - 1] = '\0';
/* Open current device directory in /sys/block */
if ((dir = opendir(dfile)) == NULL)
return 0;
/* Get current file entry */
while ((drd = readdir(dir)) != NULL) {
if (!strcmp(drd->d_name, ".") || !strcmp(drd->d_name, ".."))
continue;
snprintf(line, MAX_PF_NAME, "%s/%s/%s", dfile, drd->d_name, S_STAT);
line[MAX_PF_NAME - 1] = '\0';
/* Try to guess if current entry is a directory containing a stat file */
if (!access(line, R_OK)) {
/* Yep... */
part++;
}
}
/* Close directory */
closedir(dir);
return part;
}
/*
***************************************************************************
* Look for block devices present in /sys/ filesystem:
* Check first that sysfs is mounted (done by trying to open /sys/block
* directory), then find number of devices registered.
*
* IN:
* @display_partitions Set to TRUE if partitions must also be counted.
*
* RETURNS:
* Total number of block devices (and partitions if @display_partitions was
* set).
***************************************************************************
*/
int get_sysfs_dev_nr(int display_partitions)
{
DIR *dir;
struct dirent *drd;
char line[MAX_PF_NAME];
int dev = 0;
/* Open /sys/block directory */
if ((dir = opendir(SYSFS_BLOCK)) == NULL)
/* sysfs not mounted, or perhaps this is an old kernel */
return 0;
/* Get current file entry in /sys/block directory */
while ((drd = readdir(dir)) != NULL) {
if (!strcmp(drd->d_name, ".") || !strcmp(drd->d_name, ".."))
continue;
snprintf(line, MAX_PF_NAME, "%s/%s/%s", SYSFS_BLOCK, drd->d_name, S_STAT);
line[MAX_PF_NAME - 1] = '\0';
/* Try to guess if current entry is a directory containing a stat file */
if (!access(line, R_OK)) {
/* Yep... */
dev++;
if (display_partitions) {
/* We also want the number of partitions for this device */
dev += get_dev_part_nr(drd->d_name);
}
}
}
/* Close /sys/block directory */
closedir(dir);
return dev;
}
/*
***************************************************************************
* Read /proc/devices file and get device-mapper major number.
* If device-mapper entry is not found in file, use DEFAULT_DEMAP_MAJOR
* number.
*
* RETURNS:
* Device-mapper major number.
***************************************************************************
*/
unsigned int get_devmap_major(void)
{
FILE *fp;
char line[128];
unsigned int dm_major = DEFAULT_DEVMAP_MAJOR;
if ((fp = fopen(DEVICES, "r")) == NULL)
return dm_major;
while (fgets(line, sizeof(line), fp) != NULL) {
if (strstr(line, "device-mapper")) {
/* Read device-mapper major number */
sscanf(line, "%u", &dm_major);
}
}
fclose(fp);
return dm_major;
}
/*
***************************************************************************
* Print banner.
*
* IN:
* @rectime Date to display (don't use time fields).
* @sysname System name to display.
* @release System release number to display.
* @nodename Hostname to display.
* @machine Machine architecture to display.
* @cpu_nr Number of CPU.
*
* RETURNS:
* TRUE if S_TIME_FORMAT is set to ISO, or FALSE otherwise.
***************************************************************************
*/
int print_gal_header(struct tm *rectime, char *sysname, char *release,
char *nodename, char *machine, int cpu_nr)
{
char cur_date[64];
char *e;
int rc = 0;
if (rectime == NULL) {
strcpy(cur_date, "?/?/?");
}
else if (((e = getenv(ENV_TIME_FMT)) != NULL) && !strcmp(e, K_ISO)) {
strftime(cur_date, sizeof(cur_date), "%Y-%m-%d", rectime);
rc = 1;
}
else {
strftime(cur_date, sizeof(cur_date), "%x", rectime);
}
printf("%s %s (%s) \t%s \t_%s_\t(%d CPU)\n", sysname, release, nodename,
cur_date, machine, cpu_nr);
return rc;
}
#ifdef USE_NLS
/*
***************************************************************************
* Init National Language Support.
***************************************************************************
*/
void init_nls(void)
{
setlocale(LC_MESSAGES, "");
setlocale(LC_CTYPE, "");
setlocale(LC_TIME, "");
setlocale(LC_NUMERIC, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
}
#endif
/*
***************************************************************************
* Get number of rows for current window.
*
* RETURNS:
* Number of rows.
***************************************************************************
*/
int get_win_height(void)
{
struct winsize win;
/*
* This default value will be used whenever STDOUT
* is redirected to a pipe or a file
*/
int rows = 3600 * 24;
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) != -1) {
if (win.ws_row > 2) {
rows = win.ws_row - 2;
}
}
return rows;
}
/*
***************************************************************************
* Canonicalize and remove /dev from path name.
*
* IN:
* @name Device name (may begin with "/dev/" or can be a symlink).
*
* RETURNS:
* Device basename.
***************************************************************************
*/
char *device_name(char *name)
{
static char out[MAX_FILE_LEN];
char *resolved_name;
int i = 0;
/* realpath() creates new string, so we need to free it later */
resolved_name = realpath(name, NULL);
/* If path doesn't exist, just return input */
if (!resolved_name) {
return name;
}
if (!strncmp(resolved_name, "/dev/", 5)) {
i = 5;
}
strncpy(out, resolved_name + i, MAX_FILE_LEN);
out[MAX_FILE_LEN - 1] = '\0';
free(resolved_name);
return out;
}
/*
***************************************************************************
* Test whether given name is a device or a partition, using sysfs.
* This is more straightforward that using ioc_iswhole() function from
* ioconf.c which should be used only with kernels that don't have sysfs.
*
* IN:
* @name Device or partition name.
* @allow_virtual TRUE if virtual devices are also accepted.
* The device is assumed to be virtual if no
* /sys/block/<device>/device link exists.
*
* RETURNS:
* TRUE if @name is not a partition.
***************************************************************************
*/
int is_device(char *name, int allow_virtual)
{
char syspath[PATH_MAX];
char *slash;
/* Some devices may have a slash in their name (eg. cciss/c0d0...) */
while ((slash = strchr(name, '/'))) {
*slash = '!';
}
snprintf(syspath, sizeof(syspath), "%s/%s%s", SYSFS_BLOCK, name,
allow_virtual ? "" : "/device");
return !(access(syspath, F_OK));
}
/*
***************************************************************************
* Get page shift in kB.
***************************************************************************
*/
void get_kb_shift(void)
{
int shift = 0;
long size;
/* One can also use getpagesize() to get the size of a page */
if ((size = sysconf(_SC_PAGESIZE)) == -1) {
perror("sysconf");
}
size >>= 10; /* Assume that a page has a minimum size of 1 kB */
while (size > 1) {
shift++;
size >>= 1;
}
kb_shift = (unsigned int) shift;
}
/*
***************************************************************************
* Get number of clock ticks per second.
***************************************************************************
*/
void get_HZ(void)
{
long ticks;
if ((ticks = sysconf(_SC_CLK_TCK)) == -1) {
perror("sysconf");
}
hz = (unsigned int) ticks;
}
/*
***************************************************************************
* Workaround for CPU counters read from /proc/stat: Dyn-tick kernels
* have a race issue that can make those counters go backward.
***************************************************************************
*/
double ll_sp_value(unsigned long long value1, unsigned long long value2,
unsigned long long itv)
{
if (value2 < value1)
return (double) 0;
else
return SP_VALUE(value1, value2, itv);
}
/*
***************************************************************************
* Compute time interval.
*
* IN:
* @prev_uptime Previous uptime value in jiffies.
* @curr_uptime Current uptime value in jiffies.
*
* RETURNS:
* Interval of time in jiffies.
***************************************************************************
*/
unsigned long long get_interval(unsigned long long prev_uptime,
unsigned long long curr_uptime)
{
unsigned long long itv;
/* prev_time=0 when displaying stats since system startup */
itv = curr_uptime - prev_uptime;
if (!itv) { /* Paranoia checking */
itv = 1;
}
return itv;
}
/*
***************************************************************************
* Since ticks may vary slightly from CPU to CPU, we'll want
* to recalculate itv based on this CPU's tick count, rather
* than that reported by the "cpu" line. Otherwise we
* occasionally end up with slightly skewed figures, with
* the skew being greater as the time interval grows shorter.
*
* IN:
* @scc Current sample statistics for current CPU.
* @scp Previous sample statistics for current CPU.
*
* RETURNS:
* Interval of time based on current CPU.
***************************************************************************
*/
unsigned long long get_per_cpu_interval(struct stats_cpu *scc,
struct stats_cpu *scp)
{
unsigned long long ishift = 0LL;
if ((scc->cpu_user - scc->cpu_guest) < (scp->cpu_user - scp->cpu_guest)) {
/*
* Sometimes the nr of jiffies spent in guest mode given by the guest
* counter in /proc/stat is slightly higher than that included in
* the user counter. Update the interval value accordingly.
*/
ishift += (scp->cpu_user - scp->cpu_guest) -
(scc->cpu_user - scc->cpu_guest);
}
if ((scc->cpu_nice - scc->cpu_guest_nice) < (scp->cpu_nice - scp->cpu_guest_nice)) {
/*
* Idem for nr of jiffies spent in guest_nice mode.
*/
ishift += (scp->cpu_nice - scp->cpu_guest_nice) -
(scc->cpu_nice - scc->cpu_guest_nice);
}
/*
* Don't take cpu_guest and cpu_guest_nice into account
* because cpu_user and cpu_nice already include them.
*/
return ((scc->cpu_user + scc->cpu_nice +
scc->cpu_sys + scc->cpu_iowait +
scc->cpu_idle + scc->cpu_steal +
scc->cpu_hardirq + scc->cpu_softirq) -
(scp->cpu_user + scp->cpu_nice +
scp->cpu_sys + scp->cpu_iowait +
scp->cpu_idle + scp->cpu_steal +
scp->cpu_hardirq + scp->cpu_softirq) +
ishift);
}
/*
***************************************************************************
* Unhandled situation: Panic and exit. Should never happen.
*
* IN:
* @function Function name where situation occured.
* @error_code Error code.
***************************************************************************
*/
void sysstat_panic(const char *function, int error_code)
{
fprintf(stderr, "sysstat: %s[%d]: Internal error...\n",
function, error_code);
exit(1);
}
/*
***************************************************************************
* Count number of bits set in an array.
*
* IN:
* @ptr Pointer to array.
* @size Size of array in bytes.
*
* RETURNS:
* Number of bits set in the array.
***************************************************************************
*/
int count_bits(void *ptr, int size)
{
int nr = 0, i, k;
char *p;
p = ptr;
for (i = 0; i < size; i++, p++) {
k = 0x80;
while (k) {
if (*p & k)
nr++;
k >>= 1;
}
}
return nr;
}
/*
***************************************************************************
* Compute "extended" device statistics (service time, etc.).
*
* IN:
* @sdc Structure with current device statistics.
* @sdp Structure with previous device statistics.
* @itv Interval of time in jiffies.
*
* OUT:
* @xds Structure with extended statistics.
***************************************************************************
*/
void compute_ext_disk_stats(struct stats_disk *sdc, struct stats_disk *sdp,
unsigned long long itv, struct ext_disk_stats *xds)
{
double tput
= ((double) (sdc->nr_ios - sdp->nr_ios)) * HZ / itv;
xds->util = S_VALUE(sdp->tot_ticks, sdc->tot_ticks, itv);
xds->svctm = tput ? xds->util / tput : 0.0;
/*
* Kernel gives ticks already in milliseconds for all platforms
* => no need for further scaling.
*/
xds->await = (sdc->nr_ios - sdp->nr_ios) ?
((sdc->rd_ticks - sdp->rd_ticks) + (sdc->wr_ticks - sdp->wr_ticks)) /
((double) (sdc->nr_ios - sdp->nr_ios)) : 0.0;
xds->arqsz = (sdc->nr_ios - sdp->nr_ios) ?
((sdc->rd_sect - sdp->rd_sect) + (sdc->wr_sect - sdp->wr_sect)) /
((double) (sdc->nr_ios - sdp->nr_ios)) : 0.0;
}
/*
***************************************************************************
* Convert in-place input string to lowercase.
*
* IN:
* @str String to be converted.
*
* OUT:
* @str String in lowercase.
*
* RETURNS:
* String in lowercase.
***************************************************************************
*/
char *strtolower(char *str)
{
char *cp = str;
while (*cp) {
*cp = tolower(*cp);
cp++;
}
return(str);
}
/*
***************************************************************************
* Get persistent type name directory from type.
*
* IN:
* @type Persistent type name (UUID, LABEL, etc.)
*
* RETURNS:
* Path to the persistent type name directory, or NULL if access is denied.
***************************************************************************
*/
char *get_persistent_type_dir(char *type)
{
static char dir[32];
snprintf(dir, 32, "%s-%s", DEV_DISK_BY, type);
if (access(dir, R_OK)) {
return (NULL);
}
return (dir);
}
/*
***************************************************************************
* Get persistent name absolute path.
*
* IN:
* @name Persistent name.
*
* RETURNS:
* Path to the persistent name, or NULL if file doesn't exist.
***************************************************************************
*/
char *get_persistent_name_path(char *name)
{
static char path[PATH_MAX];
snprintf(path, PATH_MAX, "%s/%s",
get_persistent_type_dir(persistent_name_type), name);
if (access(path, F_OK)) {
return (NULL);
}
return (path);
}
/*
***************************************************************************
* Get files from persistent type name directory.
*
* RETURNS:
* List of files in the persistent type name directory in alphabetical order.
***************************************************************************
*/
char **get_persistent_names(void)
{
int n, i, k = 0;
char *dir;
char **files = NULL;
struct dirent **namelist;
/* Get directory name for selected persistent type */
dir = get_persistent_type_dir(persistent_name_type);
if (!dir)
return (NULL);
n = scandir(dir, &namelist, NULL, alphasort);
if (n < 0)
return (NULL);
/* If directory is empty, it contains 2 entries: "." and ".." */
if (n <= 2)
/* Free list and return NULL */
goto free_list;
/* Ignore the "." and "..", but keep place for one last NULL. */
files = (char **) calloc(n - 1, sizeof(char *));
if (!files)
goto free_list;
/*
* i is for traversing namelist, k is for files.
* i != k because we are ignoring "." and ".." entries.
*/
for (i = 0; i < n; i++) {
/* Ignore "." and "..". */
if (!strcmp(".", namelist[i]->d_name) ||
!strcmp("..", namelist[i]->d_name))
continue;
files[k] = (char *) calloc(strlen(namelist[i]->d_name) + 1, sizeof(char));
if (!files[k])
continue;
strcpy(files[k++], namelist[i]->d_name);
}
files[k] = NULL;
free_list:
for (i = 0; i < n; i++) {
free(namelist[i]);
}
free(namelist);
return (files);
}
/*
***************************************************************************
* Get persistent name from pretty name.
*
* IN:
* @pretty Pretty name (e.g. sda, sda1, ..).
*
* RETURNS:
* Persistent name.
***************************************************************************
*/
char *get_persistent_name_from_pretty(char *pretty)
{
int i = -1;
ssize_t r;
char *link, *name;
char **persist_names;
char target[PATH_MAX];
static char persist_name[FILENAME_MAX];
persist_name[0] = '\0';
/* Get list of files from persistent type name directory */
persist_names = get_persistent_names();
if (!persist_names)
return (NULL);
while (persist_names[++i]) {
/* Get absolute path for current persistent name */
link = get_persistent_name_path(persist_names[i]);
if (!link)
continue;
/* Persistent name is usually a symlink: Read it... */
r = readlink(link, target, PATH_MAX);
if ((r <= 0) || (r >= PATH_MAX))
continue;
target[r] = '\0';
/* ... and get device pretty name it points at */
name = basename(target);
if (!name || (name[0] == '\0'))
continue;
if (!strncmp(name, pretty, FILENAME_MAX)) {
/* We have found pretty name for current persistent one */
strncpy(persist_name, persist_names[i], FILENAME_MAX);
persist_name[FILENAME_MAX - 1] = '\0';
break;
}
}
i = -1;
while (persist_names[++i]) {
free (persist_names[i]);
}
free (persist_names);
if (strlen(persist_name) <= 0)
return (NULL);
return persist_name;
}
/*
***************************************************************************
* Get pretty name (sda, sda1...) from persistent name.
*
* IN:
* @persistent Persistent name.
*
* RETURNS:
* Pretty name.
***************************************************************************
*/
char *get_pretty_name_from_persistent(char *persistent)
{
ssize_t r;
char *link, *pretty, target[PATH_MAX];
/* Get absolute path for persistent name */
link = get_persistent_name_path(persistent);
if (!link)
return (NULL);
/* Persistent name is usually a symlink: Read it... */
r = readlink(link, target, PATH_MAX);
if ((r <= 0) || (r >= PATH_MAX))
return (NULL);
target[r] = '\0';
/* ... and get device pretty name it points at */
pretty = basename(target);
if (!pretty || (pretty[0] == '\0'))
return (NULL);
return pretty;
}