f151625285c36e6e92dcd2667c18beb3430a6478
[musl] / src / linux / mntent.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <mntent.h>
4 #include <errno.h>
5
6 FILE *setmntent(const char *name, const char *mode)
7 {
8         return fopen(name, mode);
9 }
10
11 int endmntent(FILE *f)
12 {
13         fclose(f);
14         return 1;
15 }
16
17 struct mntent *getmntent_r(FILE *f, struct mntent *mnt, char *linebuf, int buflen)
18 {
19         int cnt, n[8];
20
21         mnt->mnt_freq = 0;
22         mnt->mnt_passno = 0;
23
24         do {
25                 fgets(linebuf, buflen, f);
26                 if (feof(f) || ferror(f)) return 0;
27                 if (!strchr(linebuf, '\n')) {
28                         if (fseeko(f, -(off_t)strlen(linebuf), SEEK_CUR))
29                                 fscanf(f, "%*[^\n]%*[\n]");
30                         errno = ERANGE;
31                         return 0;
32                 }
33                 cnt = sscanf(linebuf, " %n%*s%n %n%*s%n %n%*s%n %n%*s%n %d %d",
34                         n, n+1, n+2, n+3, n+4, n+5, n+6, n+7,
35                         &mnt->mnt_freq, &mnt->mnt_passno);
36         } while (cnt < 2 || linebuf[n[0]] == '#');
37
38         linebuf[n[1]] = 0;
39         linebuf[n[3]] = 0;
40         linebuf[n[5]] = 0;
41         linebuf[n[7]] = 0;
42
43         mnt->mnt_fsname = linebuf+n[0];
44         mnt->mnt_dir = linebuf+n[2];
45         mnt->mnt_type = linebuf+n[4];
46         mnt->mnt_opts = linebuf+n[6];
47
48         return mnt;
49 }
50
51 struct mntent *getmntent(FILE *f)
52 {
53         static char linebuf[256];
54         static struct mntent mnt;
55         return getmntent_r(f, &mnt, linebuf, sizeof linebuf);
56 }
57
58 int addmntent(FILE *f, const struct mntent *mnt)
59 {
60         if (fseek(f, 0, SEEK_END)) return 1;
61         return fprintf(f, "%s\t%s\t%s\t%s\t%d\t%d\n",
62                 mnt->mnt_fsname, mnt->mnt_dir, mnt->mnt_type, mnt->mnt_opts,
63                 mnt->mnt_freq, mnt->mnt_passno) < 0;
64 }
65
66 char *hasmntopt(const struct mntent *mnt, const char *opt)
67 {
68         return strstr(mnt->mnt_opts, opt);
69 }