1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
/* input.c
Copyright (C) 2002, 2003, 2008 Niels Möller
This file is part of GNU Nettle.
GNU Nettle is free software: you can redistribute it and/or
modify it under the terms of either:
* the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your
option) any later version.
or
* the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your
option) any later version.
or both in parallel, as here.
GNU Nettle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received copies of the GNU General Public License and
the GNU Lesser General Public License along with this program. If
not, see http://www.gnu.org/licenses/.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include <assert.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "input.h"
void
sexp_input_init(struct sexp_input *input, FILE *f)
{
input->f = f;
input->coding = NULL;
}
static void
sexp_get_raw_char(struct sexp_input *input)
{
int c = getc(input->f);
if (c < 0)
{
if (ferror(input->f))
die("Read error: %s\n", strerror(errno));
input->ctype = SEXP_EOF_CHAR;
}
else
{
input->ctype = SEXP_NORMAL_CHAR;
input->c = c;
}
}
void
sexp_get_char(struct sexp_input *input)
{
if (input->coding)
for (;;)
{
size_t done;
sexp_get_raw_char(input);
if (input->ctype == SEXP_EOF_CHAR)
die("Unexpected end of file in coded data.\n");
if (input->c == input->terminator)
{
input->ctype = SEXP_END_CHAR;
return;
}
done = 1;
/* Decodes in place. Should always work, when we decode one
* character at a time. */
if (!input->coding->decode_update(&input->state,
&done, &input->c,
1, (const char*) &input->c))
die("Invalid coded data.\n");
if (done)
return;
}
else
sexp_get_raw_char(input);
}
static uint8_t
sexp_next_char(struct sexp_input *input)
{
sexp_get_char(input);
if (input->ctype != SEXP_NORMAL_CHAR)
die("Unexpected end of file.\n");
return input->c;
}
static void
sexp_push_char(struct sexp_input *input,
struct nettle_buffer *string)
{
assert(input->ctype == SEXP_NORMAL_CHAR);
if (!NETTLE_BUFFER_PUTC(string, input->c))
die("Virtual memory exhasuted.\n");
}
static void
sexp_input_start_coding(struct sexp_input *input,
const struct nettle_armor *coding,
uint8_t terminator)
{
assert(!input->coding);
input->coding = coding;
input->coding->decode_init(&input->state);
input->terminator = terminator;
}
static void
sexp_input_end_coding(struct sexp_input *input)
{
assert(input->coding);
if (!input->coding->decode_final(&input->state))
die("Invalid coded data.\n");
input->coding = NULL;
}
/* Return 0 at end-of-string */
static int
sexp_get_quoted_char(struct sexp_input *input)
{
sexp_next_char(input);
switch (input->c)
{
default:
return 1;
case '\"':
return 0;
case '\\':
sexp_next_char(input);
switch (input->c)
{
case 'b': input->c = '\b'; return 1;
case 't': input->c = '\t'; return 1;
case 'n': input->c = '\n'; return 1;
case 'f': input->c = '\f'; return 1;
case 'r': input->c = '\r'; return 1;
case '\\': input->c = '\\'; return 1;
case 'o':
case 'x':
/* FIXME: Not implemnted */
abort();
case '\n':
if (sexp_next_char(input) == '\r')
sexp_next_char(input);
break;
case '\r':
if (sexp_next_char(input) == '\n')
sexp_next_char(input);
break;
}
return 1;
}
}
static void
sexp_get_token_string(struct sexp_input *input,
struct nettle_buffer *string)
{
assert(!input->coding);
assert(input->ctype == SEXP_NORMAL_CHAR);
if (!TOKEN_CHAR(input->c))
die("Invalid token.\n");
do
{
sexp_push_char(input, string);
sexp_get_char(input);
}
while (input->ctype == SEXP_NORMAL_CHAR && TOKEN_CHAR(input->c));
assert (string->size);
}
static void
sexp_get_string(struct sexp_input *input,
struct nettle_buffer *string)
{
nettle_buffer_reset(string);
input->token = SEXP_STRING;
switch (input->c)
{
case '\"':
while (sexp_get_quoted_char(input))
sexp_push_char(input, string);
sexp_get_char(input);
break;
case '#':
sexp_input_start_coding(input, &nettle_base16, '#');
goto decode;
case '|':
sexp_input_start_coding(input, &nettle_base64, '|');
decode:
for (;;)
{
sexp_get_char(input);
switch (input->ctype)
{
case SEXP_NORMAL_CHAR:
sexp_push_char(input, string);
break;
case SEXP_EOF_CHAR:
die("Unexpected end of file in coded string.\n");
case SEXP_END_CHAR:
sexp_input_end_coding(input);
sexp_get_char(input);
return;
}
}
break;
default:
sexp_get_token_string(input, string);
break;
}
}
static void
sexp_get_string_length(struct sexp_input *input, enum sexp_mode mode,
struct nettle_buffer *string)
{
unsigned length;
nettle_buffer_reset(string);
input->token = SEXP_STRING;
length = input->c - '0';
if (!length)
/* There must be no more digits */
sexp_next_char(input);
else
{
assert(length < 10);
/* Get rest of digits */
for (;;)
{
sexp_next_char(input);
if (input->c < '0' || input->c > '9')
break;
/* FIXME: Check for overflow? */
length = length * 10 + input->c - '0';
}
}
if (input->c == ':')
/* Verbatim */
for (; length; length--)
{
sexp_next_char(input);
sexp_push_char(input, string);
}
else if (mode != SEXP_ADVANCED)
die("Encountered advanced string in canonical mode.\n");
else
switch(input->c)
{
case '"':
for (; length; length--)
if (sexp_get_quoted_char(input))
sexp_push_char(input, string);
else
die("Unexpected end of string.\n");
if (sexp_get_quoted_char(input))
die("Quoted string longer than expected.\n");
break;
case '#':
sexp_input_start_coding(input, &nettle_base16, '#');
goto decode;
case '|':
sexp_input_start_coding(input, &nettle_base64, '|');
decode:
for (; length; length--)
{
sexp_next_char(input);
sexp_push_char(input, string);
}
sexp_get_char(input);
if (input->ctype != SEXP_END_CHAR)
die("Coded string too long.\n");
sexp_input_end_coding(input);
break;
default:
die("Invalid string.\n");
}
/* Skip the ending character. */
sexp_get_char(input);
}
static void
sexp_get_comment(struct sexp_input *input, struct nettle_buffer *string)
{
nettle_buffer_reset(string);
assert(input->ctype == SEXP_NORMAL_CHAR);
assert(input->c == ';');
do
{
sexp_push_char(input, string);
sexp_get_raw_char(input);
}
while (input->ctype == SEXP_NORMAL_CHAR && input->c != '\n');
input->token = SEXP_COMMENT;
}
/* When called, input->c should be the first character of the current
* token.
*
* When returning, input->c should be the first character of the next
* token. */
void
sexp_get_token(struct sexp_input *input, enum sexp_mode mode,
struct nettle_buffer *string)
{
for(;;)
switch(input->ctype)
{
case SEXP_EOF_CHAR:
input->token = SEXP_EOF;
return;
case SEXP_END_CHAR:
input->token = SEXP_CODING_END;
sexp_input_end_coding(input);
sexp_get_char(input);
return;
case SEXP_NORMAL_CHAR:
switch(input->c)
{
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
sexp_get_string_length(input, mode, string);
return;
case '(':
input->token = SEXP_LIST_START;
sexp_get_char(input);
return;
case ')':
input->token = SEXP_LIST_END;
sexp_get_char(input);
return;
case '[':
input->token = SEXP_DISPLAY_START;
sexp_get_char(input);
return;
case ']':
input->token = SEXP_DISPLAY_END;
sexp_get_char(input);
return;
case '{':
if (mode == SEXP_CANONICAL)
die("Unexpected transport data in canonical mode.\n");
sexp_input_start_coding(input, &nettle_base64, '}');
sexp_get_char(input);
input->token = SEXP_TRANSPORT_START;
return;
case ' ': /* SPC, TAB, LF, CR */
case '\t':
case '\n':
case '\r':
if (mode == SEXP_CANONICAL)
die("Whitespace encountered in canonical mode.\n");
sexp_get_char(input);
break;
case ';': /* Comments */
if (mode == SEXP_CANONICAL)
die("Comment encountered in canonical mode.\n");
sexp_get_comment(input, string);
return;
default:
/* Ought to be a string */
if (mode != SEXP_ADVANCED)
die("Encountered advanced string in canonical mode.\n");
sexp_get_string(input, string);
return;
}
}
}
|