]> git.decadent.org.uk Git - nfs-utils.git/blob - support/nfs/cacheio.c
cacheio: return any original error from qword_eol
[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         if (err) {
158                 xlog_warn("qword_eol: fflush failed: errno %d (%s)",
159                             errno, strerror(errno));
160         }
161         /*
162          * We must send one line (and one line only) in a single write
163          * call.  In case of a write error, libc may accumulate the
164          * unwritten data and try to write it again later, resulting in a
165          * multi-line write.  So we must explicitly ask it to throw away
166          * any such cached data.  But we return any original error
167          * indication to the caller.
168          */
169         __fpurge(f);
170         fflush(f);
171         return err;
172 }
173
174
175
176 #define isodigit(c) (isdigit(c) && c <= '7')
177 int qword_get(char **bpp, char *dest, int bufsize)
178 {
179         /* return bytes copied, or -1 on error */
180         char *bp = *bpp;
181         int len = 0;
182
183         while (*bp == ' ') bp++;
184
185         if (bp[0] == '\\' && bp[1] == 'x') {
186                 /* HEX STRING */
187                 bp += 2;
188                 while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) {
189                         int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
190                         bp++;
191                         byte <<= 4;
192                         byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
193                         *dest++ = byte;
194                         bp++;
195                         len++;
196                 }
197         } else {
198                 /* text with \nnn octal quoting */
199                 while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) {
200                         if (*bp == '\\' &&
201                             isodigit(bp[1]) && (bp[1] <= '3') &&
202                             isodigit(bp[2]) &&
203                             isodigit(bp[3])) {
204                                 int byte = (*++bp -'0');
205                                 bp++;
206                                 byte = (byte << 3) | (*bp++ - '0');
207                                 byte = (byte << 3) | (*bp++ - '0');
208                                 *dest++ = byte;
209                                 len++;
210                         } else {
211                                 *dest++ = *bp++;
212                                 len++;
213                         }
214                 }
215         }
216
217         if (*bp != ' ' && *bp != '\n' && *bp != '\0')
218                 return -1;
219         while (*bp == ' ') bp++;
220         *bpp = bp;
221         *dest = '\0';
222         return len;
223 }
224
225 int qword_get_int(char **bpp, int *anint)
226 {
227         char buf[50];
228         char *ep;
229         int rv;
230         int len = qword_get(bpp, buf, 50);
231         if (len < 0) return -1;
232         if (len ==0) return -1;
233         rv = strtol(buf, &ep, 0);
234         if (*ep) return -1;
235         *anint = rv;
236         return 0;
237 }
238
239 #define READLINE_BUFFER_INCREMENT 2048
240
241 int readline(int fd, char **buf, int *lenp)
242 {
243         /* read a line into *buf, which is malloced *len long
244          * realloc if needed until we find a \n
245          * nul out the \n and return
246          * 0 on eof, 1 on success
247          */
248         int len;
249
250         if (*lenp == 0) {
251                 char *b = malloc(READLINE_BUFFER_INCREMENT);
252                 if (b == NULL)
253                         return 0;
254                 *buf = b;
255                 *lenp = READLINE_BUFFER_INCREMENT;
256         }
257         len = read(fd, *buf, *lenp);
258         if (len <= 0)
259                 return 0;
260         while ((*buf)[len-1] != '\n') {
261         /* now the less common case.  There was no newline,
262          * so we have to keep reading after re-alloc
263          */
264                 char *new;
265                 int nl;
266                 *lenp += READLINE_BUFFER_INCREMENT;
267                 new = realloc(*buf, *lenp);
268                 if (new == NULL)
269                         return 0;
270                 *buf = new;
271                 nl = read(fd, *buf + len, *lenp - len);
272                 if (nl <= 0)
273                         return 0;
274                 len += nl;
275         }
276         (*buf)[len-1] = '\0';
277         return 1;
278 }
279
280
281 /* Check if we should use the new caching interface
282  * This succeeds iff the "nfsd" filesystem is mounted on
283  * /proc/fs/nfs
284  */
285 int
286 check_new_cache(void)
287 {
288         struct stat stb;
289         return  (stat("/proc/fs/nfs/filehandle", &stb) == 0) ||
290                 (stat("/proc/fs/nfsd/filehandle", &stb) == 0);
291 }       
292
293
294 /* flush the kNFSd caches.
295  * Set the flush time to the mtime of _PATH_ETAB or
296  * if force, to now.
297  * the caches to flush are:
298  *  auth.unix.ip nfsd.export nfsd.fh
299  */
300
301 void
302 cache_flush(int force)
303 {
304         struct stat stb;
305         int c;
306         char stime[20];
307         char path[200];
308         time_t now;
309         /* Note: the order of these caches is important.
310          * They need to be flushed in dependancy order. So
311          * a cache that references items in another cache,
312          * as nfsd.fh entries reference items in nfsd.export,
313          * must be flushed before the cache that it references.
314          */
315         static char *cachelist[] = {
316                 "auth.unix.ip",
317                 "auth.unix.gid",
318                 "nfsd.fh",
319                 "nfsd.export",
320                 NULL
321         };
322         now = time(0);
323         if (force ||
324             stat(_PATH_ETAB, &stb) != 0 ||
325             stb.st_mtime > now)
326                 stb.st_mtime = time(0);
327         
328         sprintf(stime, "%ld\n", stb.st_mtime);
329         for (c=0; cachelist[c]; c++) {
330                 int fd;
331                 sprintf(path, "/proc/net/rpc/%s/flush", cachelist[c]);
332                 fd = open(path, O_RDWR);
333                 if (fd >= 0) {
334                         if (write(fd, stime, strlen(stime)) != strlen(stime)) {
335                                 xlog_warn("Writing to '%s' failed: errno %d (%s)",
336                                 path, errno, strerror(errno));
337                         }
338                         close(fd);
339                 }
340         }
341 }