c57a5a042a5f55ae170734ecbeefce50c2ae83e9
[freeradius.git] / src / lib / token.c
1 /*
2  * token.c      Read the next token from a string.
3  *              Yes it's pretty primitive but effective.
4  *
5  * Version:     $Id$
6  *
7  *   This library is free software; you can redistribute it and/or
8  *   modify it under the terms of the GNU Lesser General Public
9  *   License as published by the Free Software Foundation; either
10  *   version 2.1 of the License, or (at your option) any later version.
11  *
12  *   This library is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  *   Lesser General Public License for more details.
16  *
17  *   You should have received a copy of the GNU Lesser General Public
18  *   License along with this library; if not, write to the Free Software
19  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  *
21  * Copyright 2000,2006  The FreeRADIUS server project
22  */
23
24 #include <freeradius-devel/ident.h>
25 RCSID("$Id$")
26
27 #include <freeradius-devel/libradius.h>
28 #include <freeradius-devel/token.h>
29
30 #include <ctype.h>
31
32 static const LRAD_NAME_NUMBER tokens[] = {
33         { "=~", T_OP_REG_EQ,    }, /* order is important! */
34         { "!~", T_OP_REG_NE,    },
35         { "{",  T_LCBRACE,      },
36         { "}",  T_RCBRACE,      },
37         { "(",  T_LBRACE,       },
38         { ")",  T_RBRACE,       },
39         { ",",  T_COMMA,        },
40         { "+=", T_OP_ADD,       },
41         { "-=", T_OP_SUB,       },
42         { ":=", T_OP_SET,       },
43         { "=*", T_OP_CMP_TRUE,  },
44         { "!*", T_OP_CMP_FALSE, },
45         { "==", T_OP_CMP_EQ,    },
46         { "=",  T_OP_EQ,        },
47         { "!=", T_OP_NE,        },
48         { ">=", T_OP_GE,        },
49         { ">",  T_OP_GT,        },
50         { "<=", T_OP_LE,        },
51         { "<",  T_OP_LT,        },
52         { "#",  T_HASH,         },
53         { ";",  T_SEMICOLON,    },
54         { NULL, 0,              },
55 };
56
57 /*
58  *      This works only as long as special tokens
59  *      are max. 2 characters, but it's fast.
60  */
61 #define TOKEN_MATCH(bptr, tptr) \
62         ( (tptr)[0] == (bptr)[0] && \
63          ((tptr)[1] == (bptr)[1] || (tptr)[1] == 0))
64
65 /*
66  *      Read a word from a buffer and advance pointer.
67  *      This function knows about escapes and quotes.
68  *
69  *      At end-of-line, buf[0] is set to '\0'.
70  *      Returns 0 or special token value.
71  */
72 static LRAD_TOKEN getthing(char **ptr, char *buf, int buflen, int tok,
73                            const LRAD_NAME_NUMBER *tokenlist)
74 {
75         char    *s, *p;
76         int     quote;
77         int     escape;
78         unsigned int    x;
79         const LRAD_NAME_NUMBER*t;
80         LRAD_TOKEN rcode;
81
82         buf[0] = 0;
83
84         /* Skip whitespace */
85         p = *ptr;
86         while (*p && isspace((int) *p))
87                 p++;
88
89         if (*p == 0) {
90                 *ptr = p;
91                 return T_EOL;
92         }
93
94         /*
95          *      Might be a 1 or 2 character token.
96          */
97         if (tok) for (t = tokenlist; t->name; t++) {
98                 if (TOKEN_MATCH(p, t->name)) {
99                         strcpy(buf, t->name);
100                         p += strlen(t->name);
101                         while (isspace((int) *p))
102                                 p++;
103                         *ptr = p;
104                         return (LRAD_TOKEN) t->number;
105                 }
106         }
107
108         /* Read word. */
109         quote = 0;
110         if ((*p == '"') ||
111             (*p == '\'') ||
112             (*p == '`')) {
113                 quote = *p;
114                 p++;
115         }
116         s = buf;
117         escape = 0;
118
119         while (*p && buflen-- > 1) {
120                 if (quote && (*p == '\\')) {
121                         p++;
122
123                         switch(*p) {
124                                 case 'r':
125                                         *s++ = '\r';
126                                         break;
127                                 case 'n':
128                                         *s++ = '\n';
129                                         break;
130                                 case 't':
131                                         *s++ = '\t';
132                                         break;
133                                 case '\0':
134                                         *s++ = '\\';
135                                         p--; /* force EOS */
136                                         break;
137                                 default:
138                                         if (*p >= '0' && *p <= '9' &&
139                                             sscanf(p, "%3o", &x) == 1) {
140                                                 *s++ = x;
141                                                 p += 2;
142                                         } else
143                                                 *s++ = *p;
144                                         break;
145                         }
146                         p++;
147                         continue;
148                 }
149                 if (quote && (*p == quote)) {
150                         p++;
151                         break;
152                 }
153                 if (!quote) {
154                         if (isspace((int) *p))
155                                 break;
156                         if (tok) {
157                                 for (t = tokenlist; t->name; t++)
158                                         if (TOKEN_MATCH(p, t->name))
159                                                 break;
160                                 if (t->name != NULL)
161                                         break;
162                         }
163                 }
164                 *s++ = *p++;
165         }
166         *s++ = 0;
167
168         /* Skip whitespace again. */
169         while (*p && isspace((int) *p))
170                 p++;
171         *ptr = p;
172
173         /* we got SOME form of output string, even if it is empty */
174         switch (quote) {
175         default:
176           rcode = T_BARE_WORD;
177           break;
178
179         case '\'':
180           rcode = T_SINGLE_QUOTED_STRING;
181           break;
182
183         case '"':
184           rcode = T_DOUBLE_QUOTED_STRING;
185           break;
186
187         case '`':
188           rcode = T_BACK_QUOTED_STRING;
189           break;
190         }
191
192         return rcode;
193 }
194
195 /*
196  *      Read a "word" - this means we don't honor
197  *      tokens as delimiters.
198  */
199 int getword(char **ptr, char *buf, int buflen)
200 {
201         return getthing(ptr, buf, buflen, 0, tokens) == T_EOL ? 0 : 1;
202 }
203
204 /*
205  *      Read a bare "word" - this means we don't honor
206  *      tokens as delimiters.
207  */
208 int getbareword(char **ptr, char *buf, int buflen)
209 {
210         LRAD_TOKEN token;
211
212         token = getthing(ptr, buf, buflen, 0, NULL);
213         if (token != T_BARE_WORD) {
214                 return 0;
215         }
216
217         return 1;
218 }
219
220 /*
221  *      Read the next word, use tokens as delimiters.
222  */
223 LRAD_TOKEN gettoken(char **ptr, char *buf, int buflen)
224 {
225         return getthing(ptr, buf, buflen, 1, tokens);
226 }
227
228 /*
229  *      Expect a string.
230  */
231 LRAD_TOKEN getstring(char **ptr, char *buf, int buflen)
232 {
233         char *p = *ptr;
234
235         while (p && (isspace((int)*p))) p++;
236
237         *ptr = p;
238
239         if ((*p == '"') || (*p == '\'') || (*p == '`')) {
240                 return gettoken(ptr, buf, buflen);
241         }
242
243         return getthing(ptr, buf, buflen, 0, tokens);
244 }
245
246 /*
247  *      Convert a string to an integer
248  */
249 int lrad_str2int(const LRAD_NAME_NUMBER *table, const char *name, int def)
250 {
251         const LRAD_NAME_NUMBER *this;
252
253         for (this = table; this->name != NULL; this++) {
254                 if (strcasecmp(this->name, name) == 0) {
255                         return this->number;
256                 }
257         }
258
259         return def;
260 }
261
262 /*
263  *      Convert an integer to a string.
264  */
265 const char *lrad_int2str(const LRAD_NAME_NUMBER *table, int number,
266                          const char *def)
267 {
268         const LRAD_NAME_NUMBER *this;
269
270         for (this = table; this->name != NULL; this++) {
271                 if (this->number == number) {
272                         return this->name;
273                 }
274         }
275
276         return def;
277 }