Whamcloud - gitweb
LU-14462 gss: fix support for namespace in lgss_keyring
[fs/lustre-release.git] / lustre / utils / gss / cacheio.c
1 /*
2   Copyright (c) 2004 The Regents of the University of Michigan.
3   All rights reserved.
4
5   Redistribution and use in source and binary forms, with or without
6   modification, are permitted provided that the following conditions
7   are met:
8
9   1. Redistributions of source code must retain the above copyright
10      notice, this list of conditions and the following disclaimer.
11   2. Redistributions in binary form must reproduce the above copyright
12      notice, this list of conditions and the following disclaimer in the
13      documentation and/or other materials provided with the distribution.
14   3. Neither the name of the University nor the names of its
15      contributors may be used to endorse or promote products derived
16      from this software without specific prior written permission.
17
18   THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
19   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
20   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21   DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
25   BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 /*
32  * support/nfs/cacheio.c
33  * support IO on the cache channel files in 2.5 and beyond.
34  * These use 'qwords' which are like words, but with a little quoting.
35  *
36  */
37
38
39 /*
40  * Support routines for text-based upcalls.
41  * Fields are separated by spaces.
42  * Fields are either mangled to quote space tab newline slosh with slosh
43  * or a hexified with a leading \x
44  * Record is terminated with newline.
45  *
46  */
47
48 #include "cacheio.h"
49 #include <stdio.h>
50 #include <ctype.h>
51 #include <unistd.h>
52 #include <sys/types.h>
53 #include <sys/stat.h>
54 #include <fcntl.h>
55 #include <time.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <errno.h>
59 #include <libcfs/util/string.h>
60 #include "err_util.h"
61
62 void qword_add(char **bpp, int *lp, const char *str)
63 {
64         char *bp = *bpp;
65         int len = *lp;
66         char c;
67
68         if (len < 0) return;
69
70         while ((c=*str++) && len)
71                 switch(c) {
72                 case ' ':
73                 case '\t':
74                 case '\n':
75                 case '\\':
76                         if (len >= 4) {
77                                 *bp++ = '\\';
78                                 *bp++ = '0' + ((c & 0300)>>6);
79                                 *bp++ = '0' + ((c & 0070)>>3);
80                                 *bp++ = '0' + ((c & 0007)>>0);
81                         }
82                         len -= 4;
83                         break;
84                 default:
85                         *bp++ = c;
86                         len--;
87                 }
88         if (c || len <1) len = -1;
89         else {
90                 *bp++ = ' ';
91                 len--;
92         }
93         *bpp = bp;
94         *lp = len;
95 }
96
97 void qword_addhex(char **bpp, int *lp, char *buf, int blen)
98 {
99         char *bp = *bpp;
100         int len = *lp;
101
102         if (len < 0) return;
103
104         if (len > 2) {
105                 *bp++ = '\\';
106                 *bp++ = 'x';
107                 len -= 2;
108                 while (blen && len >= 2) {
109                         unsigned char c = *buf++;
110                         *bp++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
111                         *bp++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
112                         len -= 2;
113                         blen--;
114                 }
115         }
116         if (blen || len<1) len = -1;
117         else {
118                 *bp++ = ' ';
119                 len--;
120         }
121         *bpp = bp;
122         *lp = len;
123 }
124
125 void qword_addint(char **bpp, int *lp, int n)
126 {
127         int len;
128
129         len = scnprintf(*bpp, *lp, "%d ", n);
130         *bpp += len;
131         *lp -= len;
132 }
133
134 void qword_adduint(char **bpp, int *lp, unsigned int n)
135 {
136         int len;
137
138         len = scnprintf(*bpp, *lp, "%u ", n);
139         *bpp += len;
140         *lp -= len;
141 }
142
143 void qword_addeol(char **bpp, int *lp)
144 {
145         if (*lp <= 0)
146                 return;
147         **bpp = '\n';
148         (*bpp)++;
149         (*lp)--;
150 }
151
152 static char qword_buf[8192];
153 static char tmp_buf[8192];
154 int qword_print(FILE *f, const char *str)
155 {
156         char *bp = qword_buf;
157         int len = sizeof(qword_buf);
158         size_t sret;
159
160         qword_add(&bp, &len, str);
161         sret = fwrite(qword_buf, bp-qword_buf, 1, f);
162         /* XXX: */
163         memcpy(tmp_buf, qword_buf, bp-qword_buf);
164         tmp_buf[bp-qword_buf] = '\0';
165         printerr(2, "%s", tmp_buf);
166
167         return sret != 1;
168 }
169
170 int qword_printhex(FILE *f, char *str, int slen)
171 {
172         char *bp = qword_buf;
173         int len = sizeof(qword_buf);
174         size_t sret;
175
176         qword_addhex(&bp, &len, str, slen);
177         sret = fwrite(qword_buf, bp-qword_buf, 1, f);
178         /* XXX: */
179         memcpy(tmp_buf, qword_buf, bp-qword_buf);
180         tmp_buf[bp-qword_buf] = '\0';
181         printerr(2, "%s", tmp_buf);
182
183         return sret != 1;
184 }
185
186 void qword_printint(FILE *f, int num)
187 {
188         fprintf(f, "%d ", num);
189         printerr(2, "%d ", num);
190 }
191
192 int qword_eol(FILE *f)
193 {
194         int err;
195         fprintf(f,"\n");
196         err = fflush(f);
197         printerr(2, "\n");
198         return err;
199 }
200
201
202
203 #define isodigit(c) (isdigit(c) && c <= '7')
204 int qword_get(char **bpp, char *dest, int bufsize)
205 {
206         /* return bytes copied, or -1 on error */
207         char *bp = *bpp;
208         int len = 0;
209
210         while (*bp == ' ') bp++;
211
212         if (bp[0] == '\\' && bp[1] == 'x') {
213                 /* HEX STRING */
214                 bp += 2;
215                 while (isxdigit(bp[0]) && isxdigit(bp[1]) && len < bufsize) {
216                         int byte = isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
217                         bp++;
218                         byte <<= 4;
219                         byte |= isdigit(*bp) ? *bp-'0' : toupper(*bp)-'A'+10;
220                         *dest++ = byte;
221                         bp++;
222                         len++;
223                 }
224         } else {
225                 /* text with \nnn octal quoting */
226                 while (*bp != ' ' && *bp != '\n' && *bp && len < bufsize-1) {
227                         if (*bp == '\\' &&
228                             isodigit(bp[1]) && (bp[1] <= '3') &&
229                             isodigit(bp[2]) &&
230                             isodigit(bp[3])) {
231                                 int byte = (*++bp -'0');
232                                 bp++;
233                                 byte = (byte << 3) | (*bp++ - '0');
234                                 byte = (byte << 3) | (*bp++ - '0');
235                                 *dest++ = byte;
236                                 len++;
237                         } else {
238                                 *dest++ = *bp++;
239                                 len++;
240                         }
241                 }
242         }
243
244         if (*bp != ' ' && *bp != '\n' && *bp != '\0')
245                 return -1;
246         while (*bp == ' ') bp++;
247         *bpp = bp;
248 // why should we clear *dest???
249 //      *dest = '\0';
250         return len;
251 }
252
253 int qword_get_int(char **bpp, int *anint)
254 {
255         char buf[50];
256         char *ep;
257         int rv;
258         int len = qword_get(bpp, buf, 50);
259         if (len < 0) return -1;
260         if (len ==0) return -1;
261         rv = strtol(buf, &ep, 0);
262         if (*ep) return -1;
263         *anint = rv;
264         return 0;
265 }
266
267 #define READLINE_BUFFER_INCREMENT 2048
268
269 int readline(int fd, char **buf, int *lenp)
270 {
271         /* read a line into *buf, which is malloced *len long
272          * realloc if needed until we find a \n
273          * nul out the \n and return
274          * 0 of eof, 1 of success
275          */
276         int len;
277
278         if (*lenp == 0) {
279                 char *b = malloc(READLINE_BUFFER_INCREMENT);
280                 if (b == NULL)
281                         return 0;
282                 *buf = b;
283                 *lenp = READLINE_BUFFER_INCREMENT;
284         }
285         len = read(fd, *buf, *lenp);
286         if (len <= 0) {
287                 printerr(0, "readline: read error: len %d errno %d (%s)\n",
288                          len, errno, strerror(errno));
289                 return 0;
290         }
291         while ((*buf)[len-1] != '\n') {
292         /* now the less common case.  There was no newline,
293          * so we have to keep reading after re-alloc
294          */
295                 char *new;
296                 int nl;
297                 *lenp += READLINE_BUFFER_INCREMENT;
298                 new = realloc(*buf, *lenp);
299                 if (new == NULL)
300                         return 0;
301                 *buf = new;
302                 nl = read(fd, *buf +len, *lenp - len);
303                 if (nl <= 0 ) {
304                         printerr(0, "readline: read error: len %d "
305                                  "errno %d (%s)\n", nl, errno, strerror(errno));
306                         return 0;
307                 }
308                 len += nl;
309         }
310         (*buf)[len-1] = 0;
311         printerr(3, "readline: read %d chars into buffer of size %d:\n%s\n",
312                  len, *lenp, *buf);
313         return 1;
314 }