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
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
|
%{
/* $OpenBSD: keynote.l,v 1.24 2017/08/28 17:07:19 millert Exp $ */
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)
*
* This code was written by Angelos D. Keromytis in Philadelphia, PA, USA,
* in April-May 1998
*
* Copyright (C) 1998, 1999 by Angelos D. Keromytis.
*
* Permission to use, copy, and modify this software with or without fee
* is hereby granted, provided that this entire notice is included in
* all copies of any software which is or includes a copy or
* modification of this software.
*
* THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTY. IN PARTICULAR, THE AUTHORS MAKES NO
* REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
* MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
* PURPOSE.
*/
#include <sys/time.h>
#include <sys/types.h>
#include <ctype.h>
#include <regex.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "k.tab.h"
#include "keynote.h"
#include "assertion.h"
static void mystrncpy(char *, char *, int);
struct lex_list
{
int lex_type;
void *lex_s;
};
static struct lex_list *keynote_lex_list = NULL;
static int keynote_max_lex_list = 32;
static int keynote_lex_counter = 0;
static int first_tok = 0;
%}
digit [0-9]
specnumber [1-9][0-9]*
number {digit}+
flt {digit}+"."{digit}+
vstring [a-zA-Z_][a-zA-Z0-9_]*
litstring \"(((\\\n)|(\\.)|([^\\\n\"]))*)\"
variable {vstring}
comment "#"[^\n]*
%s ACTIONSTRING LOCALINIT KEYPREDICATE SIGNERINIT KEYNOTEVERSION
%pointer
%option noinput noyywrap never-interactive yylineno
%%
%{
/*
* Return a preset token, so we can have more than one grammars
* in yacc.
*/
extern int first_tok;
if (first_tok)
{
int holdtok = first_tok;
first_tok = 0;
return holdtok;
}
%}
<KEYPREDICATE>{specnumber}"-of" {
knlval.intval = atoi(kntext);
return KOF;
}
<ACTIONSTRING,KEYPREDICATE>"(" return OPENPAREN;
<ACTIONSTRING,KEYPREDICATE>")" return CLOSEPAREN;
<ACTIONSTRING,KEYPREDICATE>"&&" return AND;
<ACTIONSTRING,KEYPREDICATE>"||" return OR;
<ACTIONSTRING>"+" return PLUS;
<ACTIONSTRING>"->" return HINT;
<ACTIONSTRING>"{" return OPENBLOCK;
<ACTIONSTRING>"}" return CLOSEBLOCK;
<ACTIONSTRING>";" return SEMICOLON;
<ACTIONSTRING>"!" return NOT;
<ACTIONSTRING>"~=" return REGEXP;
<ACTIONSTRING>"==" return EQ;
<ACTIONSTRING>"!=" return NE;
<ACTIONSTRING>"<" return LT;
<ACTIONSTRING>">" return GT;
<ACTIONSTRING>"<=" return LE;
<ACTIONSTRING>">=" return GE;
<ACTIONSTRING>"-" return MINUS;
<ACTIONSTRING>"*" return MULT;
<ACTIONSTRING>"/" return DIV;
<ACTIONSTRING>"%" return MOD;
<ACTIONSTRING>"^" return EXP;
"." return DOTT;
<ACTIONSTRING>"true" return TRUE;
<ACTIONSTRING>"false" return FALSE;
{comment} /* eat up comments */
<LOCALINIT>"=" return EQQ;
<KEYPREDICATE>"," return COMMA;
<ACTIONSTRING,KEYPREDICATE,SIGNERINIT,LOCALINIT>{variable} {
int len;
if (keynote_exceptionflag ||
keynote_donteval)
{
knlval.string = NULL;
return VARIABLE;
}
len = strlen(kntext) + 1;
knlval.string = calloc(len, sizeof(char));
if (knlval.string == NULL)
{
keynote_errno = ERROR_MEMORY;
return -1;
}
strlcpy(knlval.string, kntext, len);
if (keynote_lex_add(knlval.string,
LEXTYPE_CHAR) ==
-1)
return -1;
return VARIABLE;
}
"$" return DEREF;
<ACTIONSTRING>"@" return OPENNUM;
<ACTIONSTRING>"&" return OPENFLT;
<ACTIONSTRING>{flt} {
knlval.doubval = atof(kntext);
return FLOAT;
}
<KEYNOTEVERSION>{number} {
int len;
if (keynote_exceptionflag ||
keynote_donteval)
{
knlval.string = NULL;
return STRING;
}
len = strlen(kntext) + 1;
knlval.string = calloc(len, sizeof(char));
if (knlval.string == NULL)
{
keynote_errno = ERROR_MEMORY;
return -1;
}
strlcpy(knlval.string, kntext, len);
if (keynote_lex_add(knlval.string,
LEXTYPE_CHAR) == -1)
return -1;
return STRING;
}
<ACTIONSTRING>{number} {
knlval.intval = atoi(kntext);
return NUM;
}
{litstring} {
if (keynote_exceptionflag ||
keynote_donteval)
{
knlval.string = NULL;
return STRING;
}
knlval.string = calloc(strlen(kntext) - 1,
sizeof(char));
if (knlval.string == NULL)
{
keynote_errno = ERROR_MEMORY;
return -1;
}
mystrncpy(knlval.string, kntext + 1,
strlen(kntext) - 2);
if (keynote_lex_add(knlval.string,
LEXTYPE_CHAR) == -1)
return -1;
return STRING;
}
[ \t\n]
. { keynote_errno = ERROR_SYNTAX;
return -1;
REJECT; /* Avoid -Wall warning. Not reached */
}
%%
/*
* Zap everything.
*/
static void
keynote_lex_zap(void)
{
int i;
if (keynote_lex_counter == 0)
return;
for (i = 0; i < keynote_max_lex_list; i++)
if (keynote_lex_list[i].lex_s != NULL)
{
switch (keynote_lex_list[i].lex_type)
{
case LEXTYPE_CHAR:
free(keynote_lex_list[i].lex_s);
break;
}
keynote_lex_counter--;
keynote_lex_list[i].lex_s = NULL;
keynote_lex_list[i].lex_type = 0;
}
}
/*
* Initialize.
*/
static int
keynote_lex_init(void)
{
if (keynote_lex_list != NULL)
memset(keynote_lex_list, 0,
keynote_max_lex_list * sizeof(struct lex_list));
else
{
keynote_lex_list = calloc(keynote_max_lex_list,
sizeof(struct lex_list));
if (keynote_lex_list == NULL)
{
keynote_errno = ERROR_MEMORY;
return -1;
}
}
return RESULT_TRUE;
}
/*
* Add the string in a list of allocated but "dangling" memory references.
* If out of memory, free the string and return -1 (and set keynote_errno).
*/
int
keynote_lex_add(void *s, int type)
{
struct lex_list *p;
int i;
if (s == NULL)
return RESULT_TRUE;
for (i = 0; i < keynote_max_lex_list; i++)
if (keynote_lex_list[i].lex_s == NULL)
{
keynote_lex_list[i].lex_s = (void *) s;
keynote_lex_list[i].lex_type = type;
keynote_lex_counter++;
return RESULT_TRUE;
}
/* Not enough space, increase the size of the array */
keynote_max_lex_list *= 2;
p = (struct lex_list *) reallocarray(keynote_lex_list,
keynote_max_lex_list,
sizeof(struct lex_list));
if (p == NULL)
{
switch (type)
{
case LEXTYPE_CHAR:
free(s);
break;
}
keynote_max_lex_list /= 2;
keynote_errno = ERROR_MEMORY;
return -1;
}
keynote_lex_list = p;
keynote_lex_list[i].lex_s = s;
keynote_lex_list[i++].lex_type = type;
keynote_lex_counter++;
/* Zero out the rest */
memset(&(keynote_lex_list[i]), 0,
(keynote_max_lex_list - i) * sizeof(struct lex_list));
return RESULT_TRUE;
}
/*
* Remove string.
*/
void
keynote_lex_remove(void *s)
{
int i;
for (i = 0; i < keynote_max_lex_list; i++)
if (keynote_lex_list[i].lex_s == s)
{
memset(&(keynote_lex_list[i]), 0, sizeof(struct lex_list));
keynote_lex_counter--;
return;
}
}
/*
* Return RESULT_TRUE if character is octal digit, RESULT_FALSE otherwise.
*/
static int
is_octal(char c)
{
switch (c)
{
case '0': case '1': case '2': case '3':
case '4': case '5': case '6': case '7':
return RESULT_TRUE;
default:
return RESULT_FALSE;
}
}
/*
* Return octal value (non-zero) if argument starts with such a
* representation, otherwise 0.
*/
static unsigned char
get_octal(char *s, int len, int *adv)
{
unsigned char res = 0;
if (*s == '0')
{
if (len > 0)
{
if (is_octal(*(s + 1)))
{
res = *(s + 1) - '0';
*adv = 2;
if (is_octal(*(s + 2)) && (len - 1 > 0))
{
res = res * 8 + (*(s + 2) - '0');
*adv = 3;
}
}
}
}
else
if (is_octal(*s) && (len - 1 > 0)) /* Non-zero leading */
{
if (is_octal(*(s + 1)) &&
is_octal(*(s + 2)))
{
*adv = 3;
res = (((*s) - '0') * 64) +
(((*(s + 1)) - '0') * 8) +
((*(s + 2)) - '0');
}
}
return res;
}
/*
* Copy at most len characters to string s1 from string s2, taking
* care of escaped characters in the process. String s1 is assumed
* to have enough space, and be zero'ed.
*/
static void
mystrncpy(char *s1, char *s2, int len)
{
unsigned char c;
int advance;
if (len == 0)
return;
while (len-- > 0)
{
if (*s2 == '\\')
{
s2++;
if (len-- <= 0)
break;
if (*s2 == '\n')
{
while (isspace((unsigned char)*(++s2)) && (len-- > 0))
;
}
else
if ((c = get_octal(s2, len, &advance)) != 0)
{
len -= advance - 1;
s2 += advance;
*s1++ = c;
}
else
if (*s2 == 'n') /* Newline */
{
*s1++ = '\n';
s2++;
}
else
if (*s2 == 't') /* Tab */
{
*s1++ = '\t';
s2++;
}
else
if (*s2 == 'r') /* Linefeed */
{
*s1++ = '\r';
s2++;
}
else
if (*s2 == 'f') /* Formfeed */
{
*s1++ = '\f';
s2++;
}
else
if ((*s1++ = *s2++) == 0)
break;
continue;
}
if ((*s1++ = *s2++) == 0)
break;
}
}
/*
* Evaluate an assertion, with as->as_result holding the result.
* Return RESULT_TRUE if all ok. Also return the result.
*/
int
keynote_evaluate_assertion(struct assertion *as)
{
YY_BUFFER_STATE keynote_bs;
/* Non-existent Conditions field means highest return value */
if (as->as_conditions_s == NULL)
{
as->as_result = keynote_current_session->ks_values_num - 1;
return RESULT_TRUE;
}
if (keynote_lex_init() != RESULT_TRUE)
return -1;
keynote_used_variable = 0;
keynote_init_list = as->as_env; /* Setup the local-init var list */
keynote_bs = kn_scan_bytes(as->as_conditions_s,
as->as_conditions_e - as->as_conditions_s);
BEGIN(ACTIONSTRING); /* We're doing conditions-string parsing */
first_tok = ACTSTR;
as->as_result = 0;
keynote_returnvalue = 0;
switch (knparse())
{
case 1: /* Fall through */
keynote_errno = ERROR_SYNTAX;
case -1:
as->as_result = 0;
break;
case 0:
as->as_result = keynote_returnvalue;
break;
}
keynote_env_cleanup(&keynote_temp_list, 1);
keynote_lex_zap();
kn_delete_buffer(keynote_bs);
keynote_used_variable = 0;
keynote_returnvalue = 0;
keynote_temp_list = NULL;
keynote_init_list = NULL;
if (keynote_errno != 0)
return -1;
else
return RESULT_TRUE;
}
/*
* Parse/evaluate a key predicate field.
* Store keys in key predicate as keylist in as->as_keylist, if second
* argument is true.
*/
int
keynote_parse_keypred(struct assertion *as, int record)
{
YY_BUFFER_STATE keypred_state;
int p = 0, err;
if (as->as_keypred_s == NULL)
return keynote_current_session->ks_values_num - 1;
if (keynote_lex_init() != RESULT_TRUE)
return -1;
keynote_used_variable = 0;
keynote_returnvalue = 0;
keynote_justrecord = record; /* Just want the list of keys in predicate */
keynote_init_list = as->as_env;
keypred_state = kn_scan_bytes(as->as_keypred_s,
as->as_keypred_e - as->as_keypred_s);
BEGIN(KEYPREDICATE);
first_tok = KEYPRE;
err = knparse();
if (err != 0)
if (keynote_errno == 0)
keynote_errno = ERROR_SYNTAX;
kn_delete_buffer(keypred_state);
keynote_lex_zap();
keynote_cleanup_kth();
keynote_init_list = NULL;
keynote_justrecord = 0;
p = keynote_returnvalue;
keynote_returnvalue = 0;
if (record)
{
if (keynote_errno != 0)
{
keynote_keylist_free(keynote_keypred_keylist);
keynote_keypred_keylist = NULL;
return -1;
}
else
{
/* Mark for re-processing if/when environment changes */
if (keynote_used_variable)
{
keynote_used_variable = 0;
as->as_internalflags |= ASSERT_IFLAG_WEIRDLICS;
}
if (as->as_keylist)
keynote_keylist_free(as->as_keylist);
as->as_keylist = keynote_keypred_keylist;
keynote_keypred_keylist = NULL;
return RESULT_TRUE;
}
}
else
return p;
}
/* Evaluate an authorizer or signature field. Return RESULT_TRUE on success.
* Store key in as->as_authorizer. Second argument is set only for Authorizer
* field parsing.
*/
int
keynote_evaluate_authorizer(struct assertion *as, int flag)
{
YY_BUFFER_STATE authorizer_state;
int err;
if (keynote_lex_init() != RESULT_TRUE)
return -1;
keynote_init_list = as->as_env;
keynote_justrecord = 1;
keynote_used_variable = 0;
if ((flag) && (as->as_authorizer != NULL))
{
keynote_free_key(as->as_authorizer, as->as_signeralgorithm);
as->as_authorizer = NULL;
}
if (flag)
authorizer_state = kn_scan_bytes(as->as_authorizer_string_s,
as->as_authorizer_string_e -
as->as_authorizer_string_s);
else
authorizer_state = kn_scan_bytes(as->as_signature_string_s,
as->as_signature_string_e -
as->as_signature_string_s);
BEGIN(SIGNERINIT);
if (flag)
first_tok = SIGNERKEY;
else
first_tok = SIGNATUREENTRY;
err = knparse();
if ((err != 0) && (keynote_errno == 0))
keynote_errno = ERROR_SYNTAX;
kn_delete_buffer(authorizer_state);
keynote_lex_zap();
keynote_justrecord = 0;
keynote_init_list = NULL;
keynote_returnvalue = 0;
if (keynote_keypred_keylist != NULL)
{
if (flag)
{
if (keynote_used_variable)
as->as_internalflags |= ASSERT_IFLAG_WEIRDAUTH;
as->as_authorizer = keynote_keypred_keylist->key_key;
as->as_signeralgorithm = keynote_keypred_keylist->key_alg;
}
else
{
if (keynote_used_variable)
as->as_internalflags |= ASSERT_IFLAG_WEIRDSIG;
as->as_signature = keynote_keypred_keylist->key_key;
}
keynote_keypred_keylist->key_key = NULL;
keynote_keylist_free(keynote_keypred_keylist);
keynote_keypred_keylist = NULL;
}
keynote_used_variable = 0;
if (keynote_errno != 0)
return -1;
else
return RESULT_TRUE;
}
/*
* Exportable front-end to keynote_get_private_key().
*/
char *
kn_get_string(char *buf)
{
return keynote_get_private_key(buf);
}
/*
* Parse a private key -- actually, it can deal with any kind of string.
*/
char *
keynote_get_private_key(char *buf)
{
YY_BUFFER_STATE pkey;
char *s;
int err;
if (keynote_lex_init() != RESULT_TRUE)
return NULL;
keynote_privkey = NULL;
pkey = kn_scan_bytes(buf, strlen(buf));
first_tok = PRIVATEKEY;
err = knparse();
kn_delete_buffer(pkey);
keynote_lex_zap();
if (err != 0)
{
if (keynote_privkey != NULL)
{
free(keynote_privkey);
keynote_privkey = NULL;
}
if (keynote_errno == 0)
keynote_errno = ERROR_SYNTAX;
return NULL;
}
s = keynote_privkey;
keynote_privkey = NULL;
return s;
}
/*
* Parse Local-Constants and KeyNote-Version fields.
*/
struct environment *
keynote_get_envlist(char *buf, char *bufend, int whichfield)
{
struct environment *en = NULL;
YY_BUFFER_STATE localinit_state;
int err;
if (keynote_lex_init() != RESULT_TRUE)
return NULL;
localinit_state = kn_scan_bytes(buf, bufend - buf);
if (whichfield == 0)
{
BEGIN(LOCALINIT); /* We're doing Local-Constants parsing */
first_tok = LOCINI;
}
else
{
BEGIN(KEYNOTEVERSION); /* KeyNote-Version parsing */
first_tok = KNVERSION;
}
err = knparse();
if (err != 0)
if (keynote_errno == 0)
keynote_errno = ERROR_SYNTAX;
kn_delete_buffer(localinit_state);
keynote_lex_zap();
if (!whichfield)
{
if (keynote_errno != 0)
keynote_env_cleanup(&keynote_init_list, 1);
else
en = keynote_init_list;
keynote_init_list = NULL;
}
/* Avoid compiler (-Wall) warnings. Never reached. */
if (0)
{
yyunput(0, NULL);
}
return en;
}
|