Polled from branch_1_1 fix for bug #348
[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  The FreeRADIUS server project
22  */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <ctype.h>
28 #include <freeradius-devel/token.h>
29
30 static const char rcsid[] = "$Id$";
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         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 (escape) {
121                         escape = 0;
122                         switch(*p) {
123                                 case 'r':
124                                         *s++ = '\r';
125                                         break;
126                                 case 'n':
127                                         *s++ = '\n';
128                                         break;
129                                 case 't':
130                                         *s++ = '\t';
131                                         break;
132                                 case '"':
133                                         *s++ = '"';
134                                         break;
135                                 case '\'':
136                                         *s++ = '\'';
137                                         break;
138                                 case '`':
139                                         *s++ = '`';
140                                         break;
141                                 default:
142                                         if (*p >= '0' && *p <= '9' &&
143                                             sscanf(p, "%3o", &x) == 1) {
144                                                 *s++ = x;
145                                                 p += 2;
146                                         } else
147                                                 *s++ = *p;
148                                         break;
149                         }
150                         p++;
151                         continue;
152                 }
153                 if (*p == '\\') {
154                         p++;
155                         escape = 1;
156                         continue;
157                 }
158                 if (quote && (*p == quote)) {
159                         p++;
160                         break;
161                 }
162                 if (!quote) {
163                         if (isspace((int) *p))
164                                 break;
165                         if (tok) {
166                                 for (t = tokenlist; t->name; t++)
167                                         if (TOKEN_MATCH(p, t->name))
168                                                 break;
169                                 if (t->name != NULL)
170                                         break;
171                         }
172                 }
173                 *s++ = *p++;
174         }
175         *s++ = 0;
176
177         /* Skip whitespace again. */
178         while (*p && isspace((int) *p))
179                 p++;
180         *ptr = p;
181
182         /* we got SOME form of output string, even if it is empty */
183         switch (quote) {
184         default:
185           rcode = T_BARE_WORD;
186           break;
187
188         case '\'':
189           rcode = T_SINGLE_QUOTED_STRING;
190           break;
191
192         case '"':
193           rcode = T_DOUBLE_QUOTED_STRING;
194           break;
195
196         case '`':
197           rcode = T_BACK_QUOTED_STRING;
198           break;
199         }
200
201         return rcode;
202 }
203
204 /*
205  *      Read a "word" - this means we don't honor
206  *      tokens as delimiters.
207  */
208 int getword(char **ptr, char *buf, int buflen)
209 {
210         return getthing(ptr, buf, buflen, 0, tokens) == T_EOL ? 0 : 1;
211 }
212
213 /*
214  *      Read a bare "word" - this means we don't honor
215  *      tokens as delimiters.
216  */
217 int getbareword(char **ptr, char *buf, int buflen)
218 {
219         LRAD_TOKEN token;
220
221         token = getthing(ptr, buf, buflen, 0, NULL);
222         if (token != T_BARE_WORD) {
223                 return 0;
224         }
225
226         return 1;
227 }
228
229 /*
230  *      Read the next word, use tokens as delimiters.
231  */
232 LRAD_TOKEN gettoken(char **ptr, char *buf, int buflen)
233 {
234         return getthing(ptr, buf, buflen, 1, tokens);
235 }
236
237 /*
238  *      Convert a string to an integer
239  */
240 int lrad_str2int(const LRAD_NAME_NUMBER *table, const char *name, int def)
241 {
242         const LRAD_NAME_NUMBER *this;
243
244         for (this = table; this->name != NULL; this++) {
245                 if (strcasecmp(this->name, name) == 0) {
246                         return this->number;
247                 }
248         }
249
250         return def;
251 }
252
253 /*
254  *      Convert an integer to a string.
255  */
256 const char *lrad_int2str(const LRAD_NAME_NUMBER *table, int number,
257                          const char *def)
258 {
259         const LRAD_NAME_NUMBER *this;
260
261         for (this = table; this->name != NULL; this++) {
262                 if (this->number == number) {
263                         return this->name;
264                 }
265         }
266
267         return def;
268 }