Replace all calls to `strerror' with `sstrerror'
[collectd.git] / src / utils_mount.c
1 /**
2  * collectd - src/utils_mount.c
3  * Copyright (C) 2005,2006  Niki W. Waibel
4  *
5  * This program is free software; you can redistribute it and/
6  * or modify it under the terms of the GNU General Public Li-
7  * cence as published by the Free Software Foundation; either
8  * version 2 of the Licence, or any later version.
9  *
10  * This program is distributed in the hope that it will be use-
11  * ful, but WITHOUT ANY WARRANTY; without even the implied war-
12  * ranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU General Public Licence for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * Licence along with this program; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
18  * USA.
19  *
20  * Author:
21  *   Niki W. Waibel <niki.waibel@gmx.net>
22 **/
23
24
25
26 #include "common.h"
27 #if HAVE_XFS_XQM_H
28 # include <xfs/xqm.h>
29 #define XFS_SUPER_MAGIC_STR "XFSB"
30 #define XFS_SUPER_MAGIC2_STR "BSFX"
31 #endif
32
33 #include "plugin.h"
34 #include "utils_mount.h"
35
36 #if HAVE_GETVFSSTAT
37 #  if HAVE_SYS_TYPES_H
38 #    include <sys/types.h>
39 #  endif
40 #  if HAVE_SYS_STATVFS_H
41 #    include <sys/statvfs.h>
42 #  endif
43 /* #endif HAVE_GETVFSSTAT */
44
45 #elif HAVE_GETFSSTAT
46 #  if HAVE_SYS_PARAM_H
47 #    include <sys/param.h>
48 #  endif
49 #  if HAVE_SYS_UCRED_H
50 #    include <sys/ucred.h>
51 #  endif
52 #  if HAVE_SYS_MOUNT_H
53 #    include <sys/mount.h>
54 #  endif
55 #endif /* HAVE_GETFSSTAT */
56
57 #if HAVE_MNTENT_H
58 #  include <mntent.h>
59 #endif
60 #if HAVE_SYS_MNTTAB_H
61 #  include <sys/mnttab.h>
62 #endif
63
64 #if HAVE_PATHS_H
65 #  include <paths.h>
66 #endif
67
68 #ifdef COLLECTD_MNTTAB
69 #  undef COLLECTD_MNTTAB
70 #endif
71
72 #if defined(_PATH_MOUNTED) /* glibc */
73 #  define COLLECTD_MNTTAB _PATH_MOUNTED
74 #elif defined(MNTTAB) /* Solaris */
75 #  define COLLECTD_MNTTAB MNTTAB
76 #elif defined(MNT_MNTTAB)
77 #  define COLLECTD_MNTTAB MNT_MNTTAB
78 #elif defined(MNTTABNAME)
79 #  define COLLECTD_MNTTAB MNTTABNAME
80 #elif defined(KMTAB)
81 #  define COLLECTD_MNTTAB KMTAB
82 #else
83 #  define COLLECTD_MNTTAB "/etc/mnttab"
84 #endif
85
86 /* *** *** *** ********************************************* *** *** *** */
87 /* *** *** *** *** *** ***   private functions   *** *** *** *** *** *** */
88 /* *** *** *** ********************************************* *** *** *** */
89
90 /* stolen from quota-3.13 (quota-tools) */
91
92 #define PROC_PARTITIONS "/proc/partitions"
93 #define DEVLABELDIR     "/dev"
94 #define UUID   1
95 #define VOL    2
96
97 static struct uuidCache_s {
98         struct uuidCache_s *next;
99         char uuid[16];
100         char *label;
101         char *device;
102 } *uuidCache = NULL;
103
104 #define EXT2_SUPER_MAGIC 0xEF53
105 struct ext2_super_block {
106         unsigned char s_dummy1[56];
107         unsigned char s_magic[2];
108         unsigned char s_dummy2[46];
109         unsigned char s_uuid[16];
110         char s_volume_name[16];
111 };
112 #define ext2magic(s) ((unsigned int)s.s_magic[0] \
113         + (((unsigned int)s.s_magic[1]) << 8))
114
115 #if HAVE_XFS_XQM_H
116 struct xfs_super_block {
117         unsigned char s_magic[4];
118         unsigned char s_dummy[28];
119         unsigned char s_uuid[16];
120         unsigned char s_dummy2[60];
121         char s_fsname[12];
122 };
123 #endif /* HAVE_XFS_XQM_H */
124
125 #define REISER_SUPER_MAGIC "ReIsEr2Fs"
126 struct reiserfs_super_block {
127         unsigned char s_dummy1[52];
128         unsigned char s_magic[10];
129         unsigned char s_dummy2[22];
130         unsigned char s_uuid[16];
131         char s_volume_name[16];
132 };
133
134 /* for now, only ext2 and xfs are supported */
135 static int
136 get_label_uuid(const char *device, char **label, char *uuid)
137 {
138         /* start with ext2 and xfs tests, taken from mount_guess_fstype */
139         /* should merge these later */
140         int fd, rv = 1;
141         size_t namesize;
142         struct ext2_super_block e2sb;
143 #if HAVE_XFS_XQM_H
144         struct xfs_super_block xfsb;
145 #endif
146         struct reiserfs_super_block reisersb;
147
148         fd = open(device, O_RDONLY);
149         if(fd == -1) {
150                 return rv;
151         }
152
153         if(lseek(fd, 1024, SEEK_SET) == 1024
154         && read(fd, (char *)&e2sb, sizeof(e2sb)) == sizeof(e2sb)
155         && ext2magic(e2sb) == EXT2_SUPER_MAGIC) {
156                 memcpy(uuid, e2sb.s_uuid, sizeof(e2sb.s_uuid));
157                 namesize = sizeof(e2sb.s_volume_name);
158                 *label = smalloc(namesize + 1);
159                 sstrncpy(*label, e2sb.s_volume_name, namesize);
160                 rv = 0;
161 #if HAVE_XFS_XQM_H
162         } else if(lseek(fd, 0, SEEK_SET) == 0
163         && read(fd, (char *)&xfsb, sizeof(xfsb)) == sizeof(xfsb)
164         && (strncmp((char *)&xfsb.s_magic, XFS_SUPER_MAGIC_STR, 4) == 0 ||
165         strncmp((char *)&xfsb.s_magic, XFS_SUPER_MAGIC2_STR, 4) == 0)) {
166                 memcpy(uuid, xfsb.s_uuid, sizeof(xfsb.s_uuid));
167                 namesize = sizeof(xfsb.s_fsname);
168                 *label = smalloc(namesize + 1);
169                 sstrncpy(*label, xfsb.s_fsname, namesize);
170                 rv = 0;
171 #endif /* HAVE_XFS_XQM_H */
172         } else if(lseek(fd, 65536, SEEK_SET) == 65536
173         && read(fd, (char *)&reisersb, sizeof(reisersb)) == sizeof(reisersb)
174         && !strncmp((char *)&reisersb.s_magic, REISER_SUPER_MAGIC, 9)) {
175                 memcpy(uuid, reisersb.s_uuid, sizeof(reisersb.s_uuid));
176                 namesize = sizeof(reisersb.s_volume_name);
177                 *label = smalloc(namesize + 1);
178                 sstrncpy(*label, reisersb.s_volume_name, namesize);
179                 rv = 0;
180         }
181         close(fd);
182         return rv;
183 }
184
185 static void
186 uuidcache_addentry(char *device, char *label, char *uuid)
187 {
188         struct uuidCache_s *last;
189
190         if(!uuidCache) {
191                 last = uuidCache = smalloc(sizeof(*uuidCache));
192         } else {
193                 for(last = uuidCache; last->next; last = last->next);
194                 last->next = smalloc(sizeof(*uuidCache));
195                 last = last->next;
196         }
197         last->next = NULL;
198         last->device = device;
199         last->label = label;
200         memcpy(last->uuid, uuid, sizeof(last->uuid));
201 }
202
203 static void
204 uuidcache_init(void)
205 {
206         char line[100];
207         char *s;
208         int ma, mi, sz;
209         static char ptname[100];
210         FILE *procpt;
211         char uuid[16], *label = NULL;
212         char device[110];
213         int firstPass;
214         int handleOnFirst;
215
216         if(uuidCache) {
217                 return;
218         }
219
220         procpt = fopen(PROC_PARTITIONS, "r");
221         if(procpt == NULL) {
222                 return;
223         }
224
225         for(firstPass = 1; firstPass >= 0; firstPass--) {
226                 fseek(procpt, 0, SEEK_SET);
227                 while(fgets(line, sizeof(line), procpt)) {
228                         if(sscanf(line, " %d %d %d %[^\n ]",
229                                 &ma, &mi, &sz, ptname) != 4)
230                         {
231                                 continue;
232                         }
233
234                         /* skip extended partitions (heuristic: size 1) */
235                         if(sz == 1) {
236                                 continue;
237                         }
238
239                         /* look only at md devices on first pass */
240                         handleOnFirst = !strncmp(ptname, "md", 2);
241                         if(firstPass != handleOnFirst) {
242                                 continue;
243                         }
244
245                         /* skip entire disk (minor 0, 64, ... on ide;
246                         0, 16, ... on sd) */
247                         /* heuristic: partition name ends in a digit */
248
249                         for(s = ptname; *s; s++);
250
251                         if(isdigit((int)s[-1])) {
252                         /*
253                         * Note: this is a heuristic only - there is no reason
254                         * why these devices should live in /dev.
255                         * Perhaps this directory should be specifiable by option.
256                         * One might for example have /devlabel with links to /dev
257                         * for the devices that may be accessed in this way.
258                         * (This is useful, if the cdrom on /dev/hdc must not
259                         * be accessed.)
260                         */
261                                 snprintf(device, sizeof(device), "%s/%s",
262                                         DEVLABELDIR, ptname);
263                                 if(!get_label_uuid(device, &label, uuid)) {
264                                         uuidcache_addentry(sstrdup(device),
265                                                 label, uuid);
266                                 }
267                         }
268                 }
269         }
270         fclose(procpt);
271 }
272
273 static unsigned char
274 fromhex(char c)
275 {
276         if(isdigit((int)c)) {
277                 return (c - '0');
278         } else if(islower((int)c)) {
279                 return (c - 'a' + 10);
280         } else {
281                 return (c - 'A' + 10);
282         }
283 }
284
285 static char *
286 get_spec_by_x(int n, const char *t)
287 {
288         struct uuidCache_s *uc;
289
290         uuidcache_init();
291         uc = uuidCache;
292
293         while(uc) {
294                 switch(n) {
295                 case UUID:
296                         if(!memcmp(t, uc->uuid, sizeof(uc->uuid))) {
297                                 return sstrdup(uc->device);
298                         }
299                         break;
300                 case VOL:
301                         if(!strcmp(t, uc->label)) {
302                                 return sstrdup(uc->device);
303                         }
304                         break;
305                 }
306                 uc = uc->next;
307         }
308         return NULL;
309 }
310
311 static char *
312 get_spec_by_uuid(const char *s)
313 {
314         char uuid[16];
315         int i;
316
317         if(strlen(s) != 36
318         || s[8] != '-' || s[13] != '-' || s[18] != '-' || s[23] != '-') {
319                 goto bad_uuid;
320         }
321
322         for(i=0; i<16; i++) {
323                 if(*s == '-') {
324                         s++;
325                 }
326                 if(!isxdigit((int)s[0]) || !isxdigit((int)s[1])) {
327                         goto bad_uuid;
328                 }
329                 uuid[i] = ((fromhex(s[0]) << 4) | fromhex(s[1]));
330                 s += 2;
331         }
332         return get_spec_by_x(UUID, uuid);
333
334         bad_uuid:
335                 DEBUG("Found an invalid UUID: %s", s);
336         return NULL;
337 }
338
339 static char *get_spec_by_volume_label(const char *s)
340 {
341         return get_spec_by_x (VOL, s);
342 }
343
344 static char *get_device_name(const char *optstr)
345 {
346         char *rc;
347
348         if (optstr == NULL)
349         {
350                 return (NULL);
351         }
352         else if (strncmp (optstr, "UUID=", 5) == 0)
353         {
354                 DEBUG ("TODO: check UUID= code!");
355                 rc = get_spec_by_uuid (optstr + 5);
356         }
357         else if (strncmp (optstr, "LABEL=", 6) == 0)
358         {
359                 DEBUG ("TODO: check LABEL= code!");
360                 rc = get_spec_by_volume_label (optstr + 6);
361         }
362         else
363         {
364                 rc = sstrdup (optstr);
365         }
366
367         if(!rc)
368         {
369                 DEBUG ("Error checking device name: optstr = %s", optstr);
370         }
371         return rc;
372 }
373
374 /* What weird OS is this..? I can't find any info with google :/ -octo */
375 #if HAVE_LISTMNTENT && 0
376 static cu_mount_t *cu_mount_listmntent (void)
377 {
378         cu_mount_t *last = *list;
379         struct tabmntent *p;
380         struct mntent *mnt;
381
382         struct tabmntent *mntlist;
383         if(listmntent(&mntlist, COLLECTD_MNTTAB, NULL, NULL) < 0) {
384                 char errbuf[1024];
385                 DEBUG("calling listmntent() failed: %s",
386                                 sstrerror (errno, errbuf, sizeof (errbuf)));
387         }
388
389         for(p = mntlist; p; p = p->next) {
390                 char *loop = NULL, *device = NULL;
391
392                 mnt = p->ment;
393                 loop = cu_mount_getoptionvalue(mnt->mnt_opts, "loop=");
394                 if(loop == NULL) {   /* no loop= mount */
395                         device = get_device_name(mnt->mnt_fsname);
396                         if(device == NULL) {
397                                 DEBUG("can't get devicename for fs (%s) %s (%s)"
398                                         ": ignored", mnt->mnt_type,
399                                         mnt->mnt_dir, mnt->mnt_fsname);
400                                 continue;
401                         }
402                 } else {
403                         device = loop;
404                 }
405                 if(*list == NULL) {
406                         *list = (cu_mount_t *)smalloc(sizeof(cu_mount_t));
407                         last = *list;
408                 } else {
409                         while(last->next != NULL) { /* is last really last? */
410                                 last = last->next;
411                         }
412                         last->next = (cu_mount_t *)smalloc(sizeof(cu_mount_t));
413                         last = last->next;
414                 }
415                 last->dir = sstrdup(mnt->mnt_dir);
416                 last->spec_device = sstrdup(mnt->mnt_fsname);
417                 last->device = device;
418                 last->type = sstrdup(mnt->mnt_type);
419                 last->options = sstrdup(mnt->mnt_opts);
420                 last->next = NULL;
421         } /* for(p = mntlist; p; p = p->next) */
422
423         return(last);
424 } /* cu_mount_t *cu_mount_listmntent(void) */
425 /* #endif HAVE_LISTMNTENT */
426
427 /* 4.4BSD and Mac OS X (getfsstat) or NetBSD (getvfsstat) */
428 #elif HAVE_GETVFSSTAT || HAVE_GETFSSTAT
429 static cu_mount_t *cu_mount_getfsstat (void)
430 {
431 #if HAVE_GETVFSSTAT
432 #  define STRUCT_STATFS struct statvfs
433 #  define CMD_STATFS    getvfsstat
434 #  define FLAGS_STATFS  ST_NOWAIT
435 /* #endif HAVE_GETVFSSTAT */
436 #elif HAVE_GETFSSTAT
437 #  define STRUCT_STATFS struct statfs
438 #  define CMD_STATFS    getfsstat
439 #  define FLAGS_STATFS  MNT_NOWAIT
440 #endif /* HAVE_GETFSSTAT */
441
442         int bufsize;
443         STRUCT_STATFS *buf;
444
445         int num;
446         int i;
447
448         cu_mount_t *first = NULL;
449         cu_mount_t *last  = NULL;
450         cu_mount_t *new   = NULL;
451
452         /* Get the number of mounted file systems */
453         if ((bufsize = CMD_STATFS (NULL, 0, FLAGS_STATFS)) < 1)
454         {
455                 char errbuf[1024];
456                 DEBUG ("getv?fsstat failed: %s",
457                                 sstrerror (errno, errbuf, sizeof (errbuf)));
458                 return (NULL);
459         }
460
461         if ((buf = (STRUCT_STATFS *) malloc (bufsize * sizeof (STRUCT_STATFS)))
462                         == NULL)
463                 return (NULL);
464         memset (buf, '\0', bufsize * sizeof (STRUCT_STATFS));
465
466         /* The bufsize needs to be passed in bytes. Really. This is not in the
467          * manpage.. -octo */
468         if ((num = CMD_STATFS (buf, bufsize * sizeof (STRUCT_STATFS), FLAGS_STATFS)) < 1)
469         {
470                 char errbuf[1024];
471                 DEBUG ("getv?fsstat failed: %s",
472                                 sstrerror (errno, errbuf, sizeof (errbuf)));
473                 free (buf);
474                 return (NULL);
475         }
476
477         for (i = 0; i < num; i++)
478         {
479                 if ((new = malloc (sizeof (cu_mount_t))) == NULL)
480                         break;
481                 memset (new, '\0', sizeof (cu_mount_t));
482                 
483                 /* Copy values from `struct mnttab' */
484                 new->dir         = sstrdup (buf[i].f_mntonname);
485                 new->spec_device = sstrdup (buf[i].f_mntfromname);
486                 new->type        = sstrdup (buf[i].f_fstypename);
487                 new->options     = NULL;
488                 new->device      = get_device_name (new->options);
489                 new->next = NULL;
490
491                 /* Append to list */
492                 if (first == NULL)
493                 {
494                         first = new;
495                         last  = new;
496                 }
497                 else
498                 {
499                         last->next = new;
500                         last       = new;
501                 }
502         }
503
504         free (buf);
505
506         return (first);
507 }
508 /* #endif HAVE_GETVFSSTAT || HAVE_GETFSSTAT */
509
510 /* Solaris (SunOS 10): int getmntent(FILE *fp, struct mnttab *mp); */
511 #elif HAVE_TWO_GETMNTENT || HAVE_GEN_GETMNTENT || HAVE_SUN_GETMNTENT
512 static cu_mount_t *cu_mount_gen_getmntent (void)
513 {
514         struct mnttab mt;
515         FILE *fp;
516
517         cu_mount_t *first = NULL;
518         cu_mount_t *last  = NULL;
519         cu_mount_t *new   = NULL;
520
521         DEBUG ("(void); COLLECTD_MNTTAB = %s", COLLECTD_MNTTAB);
522
523         if ((fp = fopen (COLLECTD_MNTTAB, "r")) == NULL)
524         {
525                 char errbuf[1024];
526                 ERROR ("fopen (%s): %s", COLLECTD_MNTTAB,
527                                 sstrerror (errno, errbuf, sizeof (errbuf)));
528                 return (NULL);
529         }
530
531         while (getmntent (fp, &mt) == 0)
532         {
533                 if ((new = malloc (sizeof (cu_mount_t))) == NULL)
534                         break;
535                 memset (new, '\0', sizeof (cu_mount_t));
536                 
537                 /* Copy values from `struct mnttab' */
538                 new->dir         = sstrdup (mt.mnt_mountp);
539                 new->spec_device = sstrdup (mt.mnt_special);
540                 new->type        = sstrdup (mt.mnt_fstype);
541                 new->options     = sstrdup (mt.mnt_mntopts);
542                 new->device      = get_device_name (new->options);
543                 new->next = NULL;
544
545                 /* Append to list */
546                 if (first == NULL)
547                 {
548                         first = new;
549                         last  = new;
550                 }
551                 else
552                 {
553                         last->next = new;
554                         last       = new;
555                 }
556         }
557
558         fclose (fp);
559
560         return (first);
561 } /* static cu_mount_t *cu_mount_gen_getmntent (void) */
562 /* #endif HAVE_TWO_GETMNTENT || HAVE_GEN_GETMNTENT || HAVE_SUN_GETMNTENT */
563
564 #elif HAVE_SEQ_GETMNTENT
565 #warn "This version of `getmntent' hat not yet been implemented!"
566 /* #endif HAVE_SEQ_GETMNTENT */
567
568 #elif HAVE_ONE_GETMNTENT
569 static cu_mount_t *cu_mount_getmntent (void)
570 {
571         FILE *fp;
572         struct mntent *me;
573
574         cu_mount_t *first = NULL;
575         cu_mount_t *last  = NULL;
576         cu_mount_t *new   = NULL;
577
578         DEBUG ("(void); COLLECTD_MNTTAB = %s", COLLECTD_MNTTAB);
579
580         if ((fp = setmntent (COLLECTD_MNTTAB, "r")) == NULL)
581         {
582                 char errbuf[1024];
583                 ERROR ("setmntent (%s): %s", COLLECTD_MNTTAB,
584                                 sstrerror (errno, errbuf, sizeof (errbuf)));
585                 return (NULL);
586         }
587
588         while ((me = getmntent (fp)) != NULL)
589         {
590                 if ((new = malloc (sizeof (cu_mount_t))) == NULL)
591                         break;
592                 memset (new, '\0', sizeof (cu_mount_t));
593                 
594                 /* Copy values from `struct mntent *' */
595                 new->dir         = sstrdup (me->mnt_dir);
596                 new->spec_device = sstrdup (me->mnt_fsname);
597                 new->type        = sstrdup (me->mnt_type);
598                 new->options     = sstrdup (me->mnt_opts);
599                 new->device      = get_device_name (new->options);
600                 new->next        = NULL;
601
602                 DEBUG ("new = {dir = %s, spec_device = %s, type = %s, options = %s, device = %s}",
603                                 new->dir, new->spec_device, new->type, new->options, new->device);
604
605                 /* Append to list */
606                 if (first == NULL)
607                 {
608                         first = new;
609                         last  = new;
610                 }
611                 else
612                 {
613                         last->next = new;
614                         last       = new;
615                 }
616         }
617
618         endmntent (fp);
619
620         DEBUG ("return (0x%p)", (void *) first);
621
622         return (first);
623 }
624 #endif /* HAVE_ONE_GETMNTENT */
625
626 /* *** *** *** ******************************************** *** *** *** */
627 /* *** *** *** *** *** ***   public functions   *** *** *** *** *** *** */
628 /* *** *** *** ******************************************** *** *** *** */
629
630 cu_mount_t *cu_mount_getlist(cu_mount_t **list)
631 {
632         cu_mount_t *new;
633         cu_mount_t *first = NULL;
634         cu_mount_t *last  = NULL;
635
636         if (list == NULL)
637                 return (NULL);
638
639         if (*list != NULL)
640         {
641                 first = *list;
642                 last  =  first;
643                 while (last->next != NULL)
644                         last = last->next;
645         }
646
647 #if HAVE_LISTMNTENT && 0
648         new = cu_mount_listmntent ();
649 #elif HAVE_GETVFSSTAT || HAVE_GETFSSTAT
650         new = cu_mount_getfsstat ();
651 #elif HAVE_TWO_GETMNTENT || HAVE_GEN_GETMNTENT || HAVE_SUN_GETMNTENT
652         new = cu_mount_gen_getmntent ();
653 #elif HAVE_SEQ_GETMNTENT
654 # warn "This version of `getmntent' hat not yet been implemented!"
655 #elif HAVE_ONE_GETMNTENT
656         new = cu_mount_getmntent ();
657 #else
658         new = NULL;
659 #endif
660
661         if (first != NULL)
662         {
663                 last->next = new;
664         }
665         else
666         {
667                 first = new;
668                 last  = new;
669                 *list = first;
670         }
671
672         while ((last != NULL) && (last->next != NULL))
673                 last = last->next;
674
675         return (last);
676 } /* cu_mount_t *cu_mount_getlist(cu_mount_t **list) */
677
678 void cu_mount_freelist (cu_mount_t *list)
679 {
680         cu_mount_t *this;
681         cu_mount_t *next;
682
683         DEBUG ("(list = 0x%p)", (void *) list);
684
685         for (this = list; this != NULL; this = next)
686         {
687                 next = this->next;
688
689                 sfree (this->dir);
690                 sfree (this->spec_device);
691                 sfree (this->device);
692                 sfree (this->type);
693                 sfree (this->options);
694                 sfree (this);
695         }
696 } /* void cu_mount_freelist(cu_mount_t *list) */
697
698 char *
699 cu_mount_checkoption(char *line, char *keyword, int full)
700 {
701         char *line2, *l2;
702         int l = strlen(keyword);
703         char *p1, *p2;
704
705         if(line == NULL || keyword == NULL) {
706                 return NULL;
707         }
708         if(full != 0) {
709                 full = 1;
710         }
711
712         line2 = sstrdup(line);
713         l2 = line2;
714         while(*l2 != '\0') {
715                 if(*l2 == ',') {
716                         *l2 = '\0';
717                 }
718                 l2++;
719         }
720
721         p1 = line - 1;
722         p2 = strchr(line, ',');
723         do {
724                 if(strncmp(line2+(p1-line)+1, keyword, l+full) == 0) {
725                         free(line2);
726                         return p1+1;
727                 }
728                 p1 = p2;
729                 if(p1 != NULL) {
730                         p2 = strchr(p1+1, ',');
731                 }
732         } while(p1 != NULL);
733
734         free(line2);
735         return NULL;
736 } /* char *cu_mount_checkoption(char *line, char *keyword, int full) */
737
738 char *
739 cu_mount_getoptionvalue(char *line, char *keyword)
740 {
741         char *r;
742
743         r = cu_mount_checkoption(line, keyword, 0);
744         if(r != NULL) {
745                 char *p;
746                 r += strlen(keyword);
747                 p = strchr(r, ',');
748                 if(p == NULL) {
749                         if(strlen(r) == 0) {
750                                 return NULL;
751                         }
752                         return sstrdup(r);
753                 } else {
754                         char *m;
755                         if((p-r) == 1) {
756                                 return NULL;
757                         }
758                         m = (char *)smalloc(p-r+1);
759                         sstrncpy(m, r, p-r+1);
760                         return m;
761                 }
762         }
763         return r;
764 } /* char *cu_mount_getoptionvalue(char *line, char *keyword) */
765
766
767
768 int
769 cu_mount_type(const char *type)
770 {
771         if(strcmp(type, "ext3") == 0) return CUMT_EXT3;
772         if(strcmp(type, "ext2") == 0) return CUMT_EXT2;
773         if(strcmp(type, "ufs")  == 0) return CUMT_UFS;
774         if(strcmp(type, "vxfs") == 0) return CUMT_VXFS;
775         if(strcmp(type, "zfs")  == 0) return CUMT_ZFS;
776         return CUMT_UNKNOWN;
777 } /* int cu_mount_type(const char *type) */
778
779
780