-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradm.l
785 lines (714 loc) · 20.7 KB
/
gradm.l
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
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
%{
/*
* Copyright (C) 2002-2014 Bradley Spengler, Open Source Security, Inc.
* http://www.grsecurity.net [email protected]
*
* This file is part of gradm.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program 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 a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "gradm.h"
#include "gradm.tab.h"
unsigned long lineno;
char *gr_line;
unsigned int old_state;
unsigned int old_state2;
int gradmerror(const char *s);
int gradmwrap(void);
int is_eof(void);
void add_include(char *includename);
struct include_entry {
unsigned long lineno;
YY_BUFFER_STATE buffer;
FILE *file;
char *name;
struct include_entry *dirents;
struct include_entry *next;
struct include_entry **stack;
int sp;
};
static struct include_entry include_stack;
static struct include_entry *main_stack;
%}
IP [0-9]{1,3}"."[0-9]{1,3}"."[0-9]{1,3}"."[0-9]{1,3}
%option nounput
%x ROLE_STATE SUBJECT_STATE IP_STATE RES_STATE COMMENT_STATE ROLETYPE_STATE
%x INCLUDE_STATE IPNETMASK_STATE IPPORT_STATE ROLETRANS_STATE UMASK_STATE
%x VAR_STATE VAR_OBJ_STATE IDTRANS_STATE DOMAIN_STATE DOMAINTYPE_STATE
%x DOMAINLIST_STATE IPIP_STATE IPONLY_STATE REP_STATE CAP_STATE FAMILY_STATE
%x VAR_IPIP_STATE VAR_CAP_STATE VAR_IPNETMASK_STATE VAR_IP_STATE VAR_IPPORT_STATE
%%
<*>"\n" {
lineno++;
if (YYSTATE == COMMENT_STATE)
BEGIN(old_state2);
if (YYSTATE == VAR_IPIP_STATE || YYSTATE == VAR_CAP_STATE || YYSTATE == VAR_IPNETMASK_STATE ||
YYSTATE == VAR_IP_STATE || YYSTATE == VAR_IPPORT_STATE)
BEGIN(VAR_OBJ_STATE);
if (YYSTATE != VAR_STATE && YYSTATE != VAR_OBJ_STATE)
BEGIN(INITIAL);
}
<*>"#" {
if (YYSTATE != COMMENT_STATE)
old_state2 = YYSTATE;
BEGIN(COMMENT_STATE);
}
<*>[ \t]+ ;
<COMMENT_STATE>.* ;
<ROLETYPE_STATE>[ugslGNATPR]* {
gradmlval.shortnum = role_mode_conv(yytext);
return ROLE_TYPE;
}
<DOMAINTYPE_STATE>([ug][GTl]*)|([GTl]*[ug]) {
BEGIN(DOMAINLIST_STATE);
gradmlval.string = gr_strdup(yytext);
return DOMAIN_TYPE;
}
<DOMAINLIST_STATE>"\\\n" ;
<UMASK_STATE>[0-7]{3,4} {
sscanf(yytext, "%ho", &gradmlval.shortnum);
return UMASK;
}
<ROLE_STATE>[_a-zA-Z0-9.-]{1,64} {
BEGIN(ROLETYPE_STATE);
gradmlval.string = gr_strdup(yytext);
return ROLE_NAME;
}
<DOMAIN_STATE>[_a-zA-Z0-9.-]{1,64} {
BEGIN(DOMAINTYPE_STATE);
gradmlval.string = gr_strdup(yytext);
return ROLE_NAME;
}
<DOMAINLIST_STATE>[_a-zA-Z0-9.-]{1,64} {
gradmlval.string = gr_strdup(yytext);
return ROLE_NAME;
}
<ROLETRANS_STATE>[_a-zA-Z0-9.-]{1,64} {
gradmlval.string = gr_strdup(yytext);
return ROLE_NAME;
}
<SUBJECT_STATE>":" {
return ':';
}
<SUBJECT_STATE>([/]|$[(])[^ :\t\n]* {
gradmlval.string = strip_trailing_slash(process_string_replace(yytext));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") ||
strstr(gradmlval.string, "/../") || strchr(gradmlval.string, '*') ||
strchr(gradmlval.string, '?'), strchr(gradmlval.string, '['))
gradmerror("invalid pathname error");
return SUBJ_NAME;
}
<SUBJECT_STATE>["]([/]|$[(])[^:\n]*["] {
gr_line = yytext;
gr_line++;
*(gr_line + strlen(gr_line) - 1) = '\0';
gradmlval.string = strip_trailing_slash(process_string_replace(gr_line));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return SUBJ_NAME;
}
<SUBJECT_STATE>$HOME[/]?[^ :\t\n]* {
gradmlval.string = strip_trailing_slash(process_string_replace(yytext));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return SUBJ_NAME;
}
<SUBJECT_STATE>["]$HOME[/]?[^:\n]*["] {
gr_line = yytext;
gr_line++;
*(gr_line + strlen(gr_line) - 1) = '\0';
gradmlval.string = strip_trailing_slash(process_string_replace(gr_line));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return SUBJ_NAME;
}
<SUBJECT_STATE>[TKCAOtolhpkvdbriasxZ]+ {
gradmlval.num = proc_subject_mode_conv(yytext);
return SUBJ_MODE;
}
<RES_STATE>"unlimited" {
gradmlval.string = gr_strdup(yytext);
return RES_SOFTHARD;
}
<RES_STATE>[0-9]+[smhdKMG]? {
gradmlval.string = gr_strdup(yytext);
return RES_SOFTHARD;
}
<VAR_IPIP_STATE,IPIP_STATE>"!" {
return NOT;
}
<VAR_IPIP_STATE,IPIP_STATE>[-a-zA-Z0-9_]{1,7}("#"[0-9]{1,3})? {
if (YYSTATE == IPIP_STATE)
BEGIN(IP_STATE);
else
BEGIN(VAR_IP_STATE);
gr_line = yytext;
gradmlval.string = gr_strdup(gr_line);
gr_line = strchr(gradmlval.string, '#');
if (gr_line != NULL)
*gr_line = ':';
return INTERFACE;
}
<VAR_IPIP_STATE,IPIP_STATE>"disabled" {
return DISABLED;
}
<VAR_IPIP_STATE,IPIP_STATE>[-0-9a-zA-Z.]*[a-zA-Z][-0-9a-zA-Z.]* {
if (YYSTATE == IPIP_STATE)
BEGIN(IP_STATE);
else
BEGIN(VAR_IP_STATE);
gradmlval.string = gr_strdup(yytext);
return HOSTNAME;
}
<IPONLY_STATE>{IP} {
gradmlval.num = get_ip(yytext);
return IPADDR;
}
<VAR_IPIP_STATE,IPIP_STATE>{IP} {
if (YYSTATE == IPIP_STATE)
BEGIN(IP_STATE);
else
BEGIN(VAR_IP_STATE);
gradmlval.num = get_ip(yytext);
return IPADDR;
}
<VAR_IP_STATE,IP_STATE>[/] {
if (YYSTATE == IP_STATE)
BEGIN(IPNETMASK_STATE);
else
BEGIN(VAR_IPNETMASK_STATE);
return *yytext;
}
<VAR_IP_STATE,IP_STATE>[:-] {
if (YYSTATE == IP_STATE)
BEGIN(IPPORT_STATE);
else
BEGIN(VAR_IPPORT_STATE);
return *yytext;
}
<VAR_IP_STATE,IP_STATE>"raw_sock"|"dgram"|"rdm"|"stream"|"any_sock" {
gradmlval.string = gr_strdup(yytext);
return IPTYPE;
}
<VAR_IP_STATE,IP_STATE>[a-z_-]+ {
gradmlval.string = gr_strdup(yytext);
return IPPROTO;
}
<VAR_IP_STATE,IP_STATE>"proto:"[0-9]{1,3} {
gradmlval.string = gr_strdup(yytext);
return IPPROTO;
}
<FAMILY_STATE>[0-9a-z]+ {
gradmlval.string = gr_strdup(yytext);
return SOCKFAMILY;
}
<VAR_IPNETMASK_STATE,IPNETMASK_STATE>[0-9]{1,2} {
unsigned int bits = atoi(yytext);
if (YYSTATE == IPNETMASK_STATE)
BEGIN(IP_STATE);
else
BEGIN(VAR_IP_STATE);
if (!bits)
gradmlval.num = 0;
else
gradmlval.num = 0xffffffff << (32 - bits);
return IPNETMASK;
}
<VAR_IPPORT_STATE,IPPORT_STATE>[0-9]{1,5} {
unsigned int portcheck = atoi(yytext);
if (YYSTATE == IPPORT_STATE)
BEGIN(IP_STATE);
else
BEGIN(VAR_IP_STATE);
if (portcheck > 65535)
gradmerror("invalid port number error");
gradmlval.shortnum = portcheck;
return IPPORT;
}
<REP_STATE>[^ "':()\t\n]+ {
gradmlval.string = gr_strdup(yytext);
return REP_ARG;
}
<REP_STATE>["][^"\t\n]+["] {
gr_line = yytext;
gr_line++;
*(gr_line + strlen(gr_line) - 1) = '\0';
gradmlval.string = gr_strdup(gr_line);
return REP_ARG;
}
"replace" {
old_state = YYSTATE;
BEGIN(REP_STATE);
return REPLACE;
}
"define" {
old_state = YYSTATE;
BEGIN(VAR_STATE);
return DEFINE;
}
[$][a-zA-Z0-9_]+ {
gr_line = yytext;
if (!strcmp(gr_line, "$HOME")) {
gradmlval.string = gr_strdup(gr_line);
return OBJ_NAME;
} else {
gr_line++;
gradmlval.string = gr_strdup(gr_line);
return VARIABLE;
}
}
<VAR_STATE>[a-zA-Z0-9_]+ {
gradmlval.string = gr_strdup(yytext);
return DEFINE_NAME;
}
<VAR_STATE>"{" {
BEGIN(VAR_OBJ_STATE);
return '{';
}
<VAR_OBJ_STATE>"}" {
BEGIN(old_state);
return '}';
}
<IDTRANS_STATE>[_a-zA-Z0-9.-]{1,64} {
gradmlval.string = gr_strdup(yytext);
return ID_NAME;
}
"user_transition_allow" {
BEGIN(IDTRANS_STATE);
return USER_TRANS_ALLOW;
}
"user_transition_deny" {
BEGIN(IDTRANS_STATE);
return USER_TRANS_DENY;
}
"group_transition_allow" {
BEGIN(IDTRANS_STATE);
return GROUP_TRANS_ALLOW;
}
"group_transition_deny" {
BEGIN(IDTRANS_STATE);
return GROUP_TRANS_DENY;
}
"role" {
BEGIN(ROLE_STATE);
return ROLE;
}
"domain" {
BEGIN(DOMAIN_STATE);
return DOMAIN;
}
"role_allow_ip" {
BEGIN(IPIP_STATE);
return ROLE_ALLOW_IP;
}
"role_umask" {
BEGIN(UMASK_STATE);
return ROLE_UMASK;
}
"role_transitions" {
BEGIN(ROLETRANS_STATE);
return ROLE_TRANSITION;
}
"subject" {
BEGIN(SUBJECT_STATE);
return SUBJECT;
}
<INITIAL,VAR_OBJ_STATE>"connect" {
if (YYSTATE == INITIAL)
BEGIN(IPIP_STATE);
else
BEGIN(VAR_IPIP_STATE);
return CONNECT;
}
<INITIAL,VAR_OBJ_STATE>"bind" {
if (YYSTATE == INITIAL)
BEGIN(IPIP_STATE);
else
BEGIN(VAR_IPIP_STATE);
return BIND;
}
"ip_override" {
BEGIN(IPONLY_STATE);
return IPOVERRIDE;
}
"sock_allow_family" {
BEGIN(FAMILY_STATE);
return SOCKALLOWFAMILY;
}
"include"[ \t]*[<][/].*[>] {
gr_line = strchr(yytext, '/');
*(gr_line + strlen(gr_line) - 1) = '\0';
add_include(gr_line);
}
<CAP_STATE,VAR_CAP_STATE>"audit"|"suppress" {
gradmlval.string = gr_strdup(yytext);
return AUDIT;
}
<INITIAL,VAR_OBJ_STATE>[+-]"CAP_"[_A-Z]+ {
if (YYSTATE == INITIAL)
BEGIN(CAP_STATE);
else
BEGIN(VAR_CAP_STATE);
gradmlval.string = gr_strdup(yytext);
return CAP_NAME;
}
[+-]"PAX_"[_A-Z]+ {
gradmlval.string = gr_strdup(yytext);
return PAX_NAME;
}
[+-][a-z][_a-z0-9]+\(\) {
gradmlval.string = gr_strdup(yytext);
return SC_NAME;
}
[+-]"CLONE_"[A-Z]+ {
gradmlval.string = gr_strdup(yytext);
return NS_NAME;
}
"RES_"[A-Z]+ {
BEGIN(RES_STATE);
gradmlval.string = gr_strdup(yytext);
return RES_NAME;
}
<INITIAL,VAR_OBJ_STATE>([/]|$[(])[^ \t\n]* {
gradmlval.string = strip_trailing_slash(process_string_replace(yytext));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return OBJ_NAME;
}
<INITIAL,VAR_OBJ_STATE>["]([/]|$[(]).*["] {
gr_line = yytext;
gr_line++;
*(gr_line + strlen(gr_line) - 1) = '\0';
gradmlval.string = strip_trailing_slash(process_string_replace(gr_line));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return OBJ_NAME;
}
<INITIAL,VAR_OBJ_STATE>$HOME[/]?[^ \t\n]* {
gradmlval.string = strip_trailing_slash(gr_strdup(yytext));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return OBJ_NAME;
}
<INITIAL,VAR_OBJ_STATE>["]$HOME[/]?.*["] {
gr_line = yytext;
gr_line++;
*(gr_line + strlen(gr_line) - 1) = '\0';
gradmlval.string = strip_trailing_slash(gr_strdup(gr_line));
if (strstr(gradmlval.string, "//") || strstr(gradmlval.string, "/./") || strstr(gradmlval.string, "/../"))
gradmerror("invalid pathname error");
return OBJ_NAME;
}
<INITIAL,VAR_OBJ_STATE>[rwxahitmlLFRWXAIMcCdDspofZ]+ {
gradmlval.num = proc_object_mode_conv(yytext);
return OBJ_MODE;
}
[|&()-] {
return *yytext;
}
<*>[{}] ;
<<EOF>> {
if (is_eof())
yyterminate();
}
<*>. { gradmerror("invalid character"); }
%%
void push_include(unsigned long linenum, YY_BUFFER_STATE buffer,
FILE *file, char *name)
{
int sp = main_stack->sp;
main_stack->stack = (struct include_entry **) realloc(main_stack->stack,(1 + main_stack->sp) * sizeof(struct include_entry *));
if (main_stack->stack == NULL)
failure("realloc");
main_stack->stack[sp] = (struct include_entry *)calloc(1, sizeof(struct include_entry));
if (main_stack->stack[sp] == NULL)
failure("calloc");
main_stack->stack[sp]->sp = -1;
main_stack->stack[sp]->lineno = linenum;
main_stack->stack[sp]->file = gradmin;
main_stack->stack[sp]->name = current_acl_file;
main_stack->stack[sp]->buffer = YY_CURRENT_BUFFER;
return;
}
void add_include(char *includename)
{
struct stat fstat;
FILE *tmpfile;
struct dirent **namelist;
struct include_entry *last = NULL;
struct include_entry *first = NULL;
struct include_entry *tmp = NULL;
char *path;
int n, i;
int sp;
sp = ++main_stack->sp;
if (sp >= MAX_INCLUDE_DEPTH) {
fprintf(stderr, "Includes too deep while trying to process "
"%s\n", includename);
exit(EXIT_FAILURE);
}
if (stat(includename, &fstat)) {
fprintf(stderr, "Unable to access included path: %s.\n"
"Error: %s\n", includename, strerror(errno));
exit(EXIT_FAILURE);
}
push_include(lineno, YY_CURRENT_BUFFER, gradmin, current_acl_file);
lineno = 1;
if (!S_ISDIR(fstat.st_mode))
goto not_a_dir;
n = scandir(includename, &namelist, 0, alphasort);
if (n < 3)
return;
for (i = 0; i < n; i++) {
if (!strcmp(namelist[i]->d_name, ".") || !strcmp(namelist[i]->d_name, "..") ||
!strcmp(namelist[i]->d_name+strlen(namelist[i]->d_name)-1, "~"))
continue;
tmp = (struct include_entry *)calloc(1, sizeof(struct include_entry));
if (tmp == NULL)
failure("calloc");
path = (char *)calloc(1, strlen(includename) + strlen(namelist[i]->d_name) + 2);
if (path == NULL)
failure("calloc");
sprintf(path, "%s/%s", includename, namelist[i]->d_name);
if (stat(path, &fstat)) {
fprintf(stderr, "Unable to access included path: %s.\n"
"Error: %s\n", includename, strerror(errno));
exit(EXIT_FAILURE);
}
if (S_ISDIR(fstat.st_mode)) {
/* ignore the .svn and CVS directories */
if (!strcmp(namelist[i]->d_name, ".svn") || !strcmp(namelist[i]->d_name, "CVS")) {
free(tmp);
free(path);
continue;
}
fprintf(stderr, "Including the nested directory %s is not currently supported.\n", path);
exit(EXIT_FAILURE);
}
tmp->sp = -1;
tmp->name = path;
tmp->lineno = 1;
if (last)
last->next = tmp;
last = tmp;
if (first == NULL)
first = tmp;
}
if (first == NULL)
return;
main_stack->stack[main_stack->sp]->dirents = first->next;
path = first->name;
change_current_acl_file(path);
tmpfile = fopen(path, "r");
if (!tmpfile) {
fprintf(stderr, "Unable to open included file: %s\n", path);
exit(EXIT_FAILURE);
}
gradmin = tmpfile;
yy_switch_to_buffer(yy_create_buffer(gradmin, YY_BUF_SIZE));
return;
not_a_dir:
tmpfile = fopen(includename, "r");
if (!tmpfile) {
fprintf(stderr, "Unable to open included file: %s\n",
includename);
exit(EXIT_FAILURE);
}
change_current_acl_file(includename);
gradmin = tmpfile;
yy_switch_to_buffer(yy_create_buffer(gradmin, YY_BUF_SIZE));
return;
}
int is_eof(void)
{
struct include_entry *tmp = NULL;
fclose(gradmin);
if (main_stack->sp < 0)
return 1;
tmp = main_stack->stack[main_stack->sp];
if (tmp->dirents != NULL) {
tmp = tmp->dirents;
main_stack->stack[main_stack->sp]->dirents = tmp->next;
change_current_acl_file(tmp->name);
yy_delete_buffer(YY_CURRENT_BUFFER);
gradmin = fopen(tmp->name, "r");
if (gradmin == NULL) {
fprintf(stderr, "Unable to open included file: %s\n", tmp->name);
exit(EXIT_FAILURE);
}
lineno = tmp->lineno;
yy_switch_to_buffer(yy_create_buffer(gradmin, YY_BUF_SIZE));
return 0;
} else if (!strcmp(main_stack->stack[main_stack->sp]->name, current_acl_file))
return 1;
tmp = main_stack->stack[main_stack->sp];
change_current_acl_file(tmp->name);
yy_delete_buffer(YY_CURRENT_BUFFER);
lineno = tmp->lineno;
gradmin = tmp->file;
yy_switch_to_buffer(tmp->buffer);
if (main_stack->sp > 0)
main_stack->sp--;
return 0;
}
int gradmwrap(void)
{
return 1;
}
int gradmerror(const char *s)
{
fflush(stderr);
fprintf(stderr, "\"%s\" caused a %s on line %lu of %s\n", yytext, s,
lineno, current_acl_file);
exit(EXIT_FAILURE);
}
static void no_coredump(void)
{
struct rlimit rlim;
rlim.rlim_cur = 0;
rlim.rlim_max = 0;
setrlimit(RLIMIT_CORE, &rlim);
return;
}
static void tailor_to_kernel(void)
{
struct utsname buf;
uname(&buf);
if (!strncmp(buf.release, "2.4", 3))
is_24_kernel = 1;
else
is_24_kernel = 0;
return;
}
#ifdef GRADM_DEBUG
void show_policy(void) {
struct file_acl *filp;
struct ip_acl *ipp;
struct proc_acl *proc;
struct role_acl *rolp;
struct role_transition *rolet;
int i;
for (rolp = current_role;rolp;rolp=rolp->prev) {
printf("ROLE: %s type:%s uid/gid:%u\n", rolp->rolename,
rolp->roletype & GR_ROLE_SPECIAL ? "special" :
rolp->roletype & GR_ROLE_USER ? "user" :
rolp->roletype & GR_ROLE_GROUP ? "group" :
rolp->roletype & GR_ROLE_DEFAULT ? "default" : "",
rolp->uidgid);
printf("\tTRANSITIONS:");
for (rolet = rolp->transitions; rolet; rolet=rolet->prev)
printf(" %s", rolet->rolename);
printf("\n");
for (proc = rolp->hash->first;proc;proc=proc->prev) {
printf("\tSUBJECT: %s dev:%lu inode:%lu mode:%lu c_raise:%x c_drop:%x\n",
proc->filename, proc->dev, proc->inode, proc->mode, cap_invert(proc->cap_drop),
proc->cap_drop);
if (proc->user_trans_num > 0) {
printf("\tUSER_TRANSITIONS_");
if (proc->user_trans_type & GR_ID_ALLOW)
printf("ALLOW:");
else
printf("DENY:");
for (i = 0; i < proc->user_trans_num; i++)
printf(" %u", proc->user_transitions[i]);
printf("\n");
}
if (proc->group_trans_num > 0) {
printf("\tGROUP_TRANSITIONS_");
if (proc->group_trans_type & GR_ID_ALLOW)
printf("ALLOW:");
else
printf("DENY:");
for (i = 0; i < proc->group_trans_num; i++)
printf(" %u", proc->group_transitions[i]);
printf("\n");
}
for (i = 0; i < proc->ip_num; i++) {
char ipaddr[4];
int c;
int netmask = 0;
ipp = *(proc->ips + i);
memcpy(&ipaddr, &(ipp->addr), sizeof(ipaddr));
for (c = 0; c < 32; c++)
if (ipp->netmask & (1U << c))
netmask++;
if (ipp->mode &= GR_IP_CONNECT)
printf("\t\tCONNECT %s %u.%u.%u.%u/%u:%d-%d", ipp->mode & GR_IP_INVERT ? "!" : "", ipaddr[0], ipaddr[1], ipaddr[2], ipaddr[3], netmask, ipp->low, ipp->high);
else
printf("\t\tBIND %s %u.%u.%u.%u/%u:%d-%d", ipp->mode & GR_IP_INVERT ? "!" : "", ipaddr[0], ipaddr[1], ipaddr[2], ipaddr[3], netmask, ipp->low, ipp->high);
for (c = 1; c < 5; c++) {
if (ipp->type & (1U << c)) {
switch (c) {
case SOCK_RAW:
printf(" raw_sock");
break;
case SOCK_DGRAM:
printf(" dgram");
break;
case SOCK_STREAM:
printf(" stream");
break;
case SOCK_RDM:
printf(" rdm");
break;
}
}
}
for (c = 0; c < 256; c++) {
if (ipp->proto[c / 32] & (1U << (c % 32))) {
if (c == IPPROTO_RAW)
printf(" raw_proto");
else {
struct protoent *proto;
proto = getprotobynumber(c);
if(proto)
printf(" %s", proto->p_name);
else
printf(" proto:%d", c);
}
}
}
printf("\n");
}
for (filp = proc->hash->first;filp;filp=filp->prev)
printf("\t\tOBJECT: %s dev:%lu inode:%lu mode:%lu\n", filp->filename, filp->dev, filp->inode, filp->mode);
for (i=0;i<GR_NLIMITS;i++)
if (proc->resmask & (1U << i))
printf("\t\t%s: soft: %lu hard: %lu\n", rlim_table[i], proc->res[i].rlim_cur, proc->res[i].rlim_max);
}
}
}
#endif
int main(int argc, char *argv[])
{
if (geteuid() != getuid()) {
fprintf(stderr, "gradm is not meant to run suid root.\n");
exit(EXIT_FAILURE);
}
init_res_table();
special_role_uid = 0;
tailor_to_kernel();
#ifndef GRADM_DEBUG
no_coredump();
#endif
main_stack = &include_stack;
memset(main_stack, 0, sizeof(struct include_entry));
main_stack->sp = -1;
init_variables();
parse_args(argc, argv);
#ifdef GRADM_DEBUG
show_policy();
#endif
return 0;
}