]> git.decadent.org.uk Git - nfs-utils.git/blob - support/nfs/cacheio.c
In recent Fedora builds, the '-D _FORTIFY_SOURCE=2' compile
[nfs-utils.git] / support / nfs / cacheio.c
1 /*
2  * support/nfs/cacheio.c
3  * support IO on the cache channel files in 2.5 and beyond.
4  * These use 'qwords' which are like words, but with a little quoting.
5  *
6  */
7
8
9 /*
10  * Support routines for text-based upcalls.
11  * Fields are separated by spaces.
12  * Fields are either mangled to quote space tab newline slosh with slosh
13  * or a hexified with a leading \x
14  * Record is terminated with newline.
15  *
16  */
17
18 #include <nfslib.h>
19 #include <stdio.h>
20 #include <stdio_ext.h>
21 #include <ctype.h>
22 #include <unistd.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <time.h>
27 #include <errno.h>
28
29 void qword_add(char **bpp, int *lp, char *str)
30 {
31         char *bp = *bpp;
32         int len = *lp;
33         char c;
34
35         if (len < 0) return;
36
37         while ((c=*str++) && len)
38                 switch(c) {
39                 case ' ':
40                 case '\t':
41                 case '\n':
42                 case '\\':
43                         if (len >= 4) {
44                                 *bp++ = '\\';
45                                 *bp++ = '0' + ((c & 0300)>>6);
46                                 *bp++ = '0' + ((c & 0070)>>3);
47                                 *bp++ = '0' + ((c & 0007)>>0);
48                         }
49                         len -= 4;
50                         break;
51                 default:
52                         *bp++ = c;
53                         len--;
54                 }
55         if (c || len <1) len = -1;
56         else {
57                 *bp++ = ' ';
58                 len--;
59         }
60         *bpp = bp;
61         *lp = len;
62 }
63
64 void qword_addhex(char **bpp, int *lp, char *buf, int blen)
65 {
66         char *bp = *bpp;
67         int len = *lp;
68
69         if (len < 0) return;
70
71         if (len > 2) {
72                 *bp++ = '\\';
73                 *bp++ = 'x';
74                 len -= 2;
75                 while (blen && len >= 2) {
76                         unsigned char c = *buf++;
77                         *bp++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
78                         *bp++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
79                         len -= 2;
80                         blen--;
81                 }
82         }
83         if (blen || len<1) len = -1;
84         else {
85                 *bp++ = ' ';
86                 len--;
87         }
88         *bpp = bp;
89         *lp = len;
90 }
91
92 void qword_addint(char **bpp, int *lp, int n)
93 {
94         int len;
95
96         len = snprintf(*bpp, *lp, "%d ", n);
97         if (len > *lp)
98                 len = *lp;
99         *bpp += len;
100         *lp -= len;
101 }
102
103 void qword_adduint(char **bpp, int *lp, unsigned int n)
104 {
105         int len;
106
107         len = snprintf(*bpp, *lp, "%u ", n);
108         if (len > *lp)
109                 len = *lp;
110         *bpp += len;
111         *lp -= len;
112 }
113
114 void qword_addeol(char **bpp, int *lp)
115 {
116         if (*lp <= 0)
117                 return;
118         **bpp = '\n';
119         (*bpp)++;
120         (*lp)--;
121 }
122
123 static char qword_buf[8192];
124 void qword_print(FILE *f, char *str)
125 {
126         char *bp = qword_buf;
127         int len = sizeof(qword_buf);
128         qword_add(&bp, &len, str);
129         if (fwrite(qword_buf, bp-qword_buf, 1, f) != 1) {
130                 xlog_warn("qword_print: fwrite failed: errno %d (%s)",
131                         errno, strerror(errno));
132         }
133 }
134
135 void qword_printhex(FILE *f, char *str, int slen)
136 {
137         char *bp = qword_buf;
138         int len = sizeof(qword_buf);
139         qword_addhex(&bp, &len, str, slen);
140         if (fwrite(qword_buf, bp-qword_buf, 1, f) != 1) {
141                 xlog_warn("qword_printhex: fwrite failed: errno %d (%s)",
142                         errno, strerror(errno));
143         }
144 }
145
146 void qword_printint(FILE *f, int num)
147 {
148         fprintf(f, "%d ", num);
149 }
150
151 int qword_eol(FILE *f)
152 {
153         int err;
154
155         fprintf(f,"\n");
156         err = fflush(f);
157         /*
158          * We must send one line (and one line only) in a single write
159          * call.  In case of a write error, libc may accumulate the
160          * unwritten data and try to write it again later, resulting in a
161          * multi-line write.  So we must explicitly ask it to throw away
162          * any such cached data:
163          */
164         __fpurge(f);
165         return fflush(f);
166 }
167
168
169
170 #define isodigit(c) (isdigit(c) && c <= '7')
171 int qword_get(char **bpp, char *dest, int bufsize)
172 {
173         /* return bytes copied, or -1 on error */
174         char *bp = *bpp;
175         int len = 0;
176
177         while (*bp == ' ') bp++;
178
179         if (bp[0] == '\\' && bp[1] == 'x') {
180                 /* HEX STRING */
181                 bp += 2;
182                 while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) {
183                         int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
184                         bp++;
185                         byte <<= 4;
186                         byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
187                         *dest++ = byte;
188                         bp++;
189                         len++;
190                 }
191         } else {
192                 /* text with \nnn octal quoting */
193                 while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) {
194                         if (*bp == '\\' &&
195                             isodigit(bp[1]) && (bp[1] <= '3') &&
196                             isodigit(bp[2]) &&
197                             isodigit(bp[3])) {
198                                 int byte = (*++bp -'0');
199                                 bp++;
200                                 byte = (byte << 3) | (*bp++ - '0');
201                                 byte = (byte << 3) | (*bp++ - '0');
202                                 *dest++ = byte;
203                                 len++;
204                         } else {
205                                 *dest++ = *bp++;
206                                 len++;
207                         }
208                 }
209         }
210
211         if (*bp != ' ' && *bp != '\n' && *bp != '\0')
212                 return -1;
213         while (*bp == ' ') bp++;
214         *bpp = bp;
215         *dest = '\0';
216         return len;
217 }
218
219 int qword_get_int(char **bpp, int *anint)
220 {
221         char buf[50];
222         char *ep;
223         int rv;
224         int len = qword_get(bpp, buf, 50);
225         if (len < 0) return -1;
226         if (len ==0) return -1;
227         rv = strtol(buf, &ep, 0);
228         if (*ep) return -1;
229         *anint = rv;
230         return 0;
231 }
232
233 #define READLINE_BUFFER_INCREMENT 2048
234
235 int readline(int fd, char **buf, int *lenp)
236 {
237         /* read a line into *buf, which is malloced *len long
238          * realloc if needed until we find a \n
239          * nul out the \n and return
240          * 0 on eof, 1 on success
241          */
242         int len;
243
244         if (*lenp == 0) {
245                 char *b = malloc(READLINE_BUFFER_INCREMENT);
246                 if (b == NULL)
247                         return 0;
248                 *buf = b;
249                 *lenp = READLINE_BUFFER_INCREMENT;
250         }
251         len = read(fd, *buf, *lenp);
252         if (len <= 0)
253                 return 0;
254         while ((*buf)[len-1] != '\n') {
255         /* now the less common case.  There was no newline,
256          * so we have to keep reading after re-alloc
257          */
258                 char *new;
259                 int nl;
260                 *lenp += READLINE_BUFFER_INCREMENT;
261                 new = realloc(*buf, *lenp);
262                 if (new == NULL)
263                         return 0;
264                 *buf = new;
265                 nl = read(fd, *buf + len, *lenp - len);
266                 if (nl <= 0)
267                         return 0;
268                 len += nl;
269         }
270         (*buf)[len-1] = '\0';
271         return 1;
272 }
273
274
275 /* Check if we should use the new caching interface
276  * This succeeds iff the "nfsd" filesystem is mounted on
277  * /proc/fs/nfs
278  */
279 int
280 check_new_cache(void)
281 {
282         struct stat stb;
283         return  (stat("/proc/fs/nfs/filehandle", &stb) == 0) ||
284                 (stat("/proc/fs/nfsd/filehandle", &stb) == 0);
285 }       
286
287
288 /* flush the kNFSd caches.
289  * Set the flush time to the mtime of _PATH_ETAB or
290  * if force, to now.
291  * the caches to flush are:
292  *  auth.unix.ip nfsd.export nfsd.fh
293  */
294
295 void
296 cache_flush(int force)
297 {
298         struct stat stb;
299         int c;
300         char stime[20];
301         char path[200];
302         time_t now;
303         /* Note: the order of these caches is important.
304          * They need to be flushed in dependancy order. So
305          * a cache that references items in another cache,
306          * as nfsd.fh entries reference items in nfsd.export,
307          * must be flushed before the cache that it references.
308          */
309         static char *cachelist[] = {
310                 "auth.unix.ip",
311                 "auth.unix.gid",
312                 "nfsd.fh",
313                 "nfsd.export",
314                 NULL
315         };
316         now = time(0);
317         if (force ||
318             stat(_PATH_ETAB, &stb) != 0 ||
319             stb.st_mtime > now)
320                 stb.st_mtime = time(0);
321         
322         sprintf(stime, "%ld\n", stb.st_mtime);
323         for (c=0; cachelist[c]; c++) {
324                 int fd;
325                 sprintf(path, "/proc/net/rpc/%s/flush", cachelist[c]);
326                 fd = open(path, O_RDWR);
327                 if (fd >= 0) {
328                         if (write(fd, stime, strlen(stime)) != strlen(stime)) {
329                                 xlog_warn("Writing to '%s' failed: errno %d (%s)",
330                                 path, errno, strerror(errno));
331                         }
332                         close(fd);
333                 }
334         }
335 }