chiark / gitweb /
Incorporate markups on all paper copies to date.
[userv.git] / lexer.l.m4
1 dnl  userv - lexer.l.m4
2 dnl  lexer, passed through m4 with defs from langauge.i4
3 /*
4  *   Copyright (C)1996-1997 Ian Jackson
5  *  
6  *   This is free software; you can redistribute it and/or modify it
7  *   under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *  
11  *   This program is distributed in the hope that it will be useful, but
12  *   WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  *   General Public License for more details.
15  *  
16  *   You should have received a copy of the GNU General Public License
17  *   along with userv; if not, write to the Free Software
18  *   Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 %{
22 include(language.i4)
23
24 #include <syslog.h>
25 #include <assert.h>
26 #include <stdio.h>
27 #include <stdarg.h>
28 #include <ctype.h>
29 #include <string.h>
30 #include <unistd.h>
31 #include <pwd.h>
32 #include <grp.h>
33 #include <fnmatch.h>
34 #include <limits.h>
35 #include <dirent.h>
36 #include <sys/stat.h>
37 #include <time.h>
38
39 #include "config.h"
40 #include "common.h"
41 #include "daemon.h"
42 #include "lib.h"
43 #include "tokens.h"
44
45 #define HYPHEN '-'
46
47 typedef int directive_fnt(int dtoken);
48 static directive_fnt df_reject, df_execute, df_executefrompath;
49 static directive_fnt df_executefromdirectory, df_executebuiltin;
50 static directive_fnt df_errorstostderr, df_errorstosyslog, df_errorstofile;
51 static directive_fnt dfg_fdwant, dfg_setflag;
52 static directive_fnt df_reset, df_cd, df_userrcfile, df_include;
53 static directive_fnt df_includelookup, df_includedirectory;
54 static directive_fnt df_message, df_error, df_quit, df_eof;
55 static directive_fnt df_if, df_catchquit, df_errorspush;
56 static directive_fnt dfi_includeuserrcfile, dfi_includeclientconfig;
57 /* directive functions return:
58  *  0 for success having scanned up to and including end of line but not beyond,
59  *  or tokv_error or tokv_quit.
60  */
61
62 typedef int parmcondition_fnt(int ctoken, char **parmvalues, int *rtrue);
63 static parmcondition_fnt pcf_glob, pcf_range, pcf_grep;
64 /* all conditional functions return tokv_error for failure or 0 for success
65  *  at parsing and testing, in which case *rtrue is set to 0 or 1.
66  *  On success they have scanned up to and including the condition's
67  *  terminating newline.
68  * The parameter-based conditionals take a list of parameter values
69  * as obtained from the parameter functions and pa_parameter,
70  * and do _not_ free it.
71  */
72
73 typedef int parameter_fnt(int ptoken, char ***rvalues);
74 static parameter_fnt pf_service;
75 static parameter_fnt pf_callinguser, pf_serviceuser;
76 static parameter_fnt pf_callinggroup, pf_servicegroup;
77 static parameter_fnt pf_callingusershell, pf_serviceusershell;
78 /* Parameter functions return tokv_error or 0 for success at parsing
79  * and determining the value, in which case *rvalues is made to be
80  * a mallocd null-terminated array of pointers to mallocd strings.
81  * freeparm can be used to free such an array.
82  */
83
84 typedef int builtinserviceparse_fnt(char ***rnewargs);
85 static builtinserviceparse_fnt bispa_none, bispa_parameter;
86 /* These parse the arguments to a builtin service, including the
87  * newline at the end of the line.  *rnewargs will initially be
88  * null, indicating that no arguments are to be set; the function
89  * may store a mallocd array of mallocd strings in it,
90  * containing the arguments it wishes to have set (null-pointer
91  * terminated).
92  */
93
94 static int yylex(void);
95 /* Returns a token (which may be an eof or error exception) */
96
97 static directive_fnt *lr_dir;
98 static parmcondition_fnt *lr_parmcond;
99 static builtinserviceparse_fnt *lr_bispa;
100 static builtinserviceexec_fnt *lr_bisexec;
101 static parameter_fnt *lr_parameter;
102 static int lr_loglevel, lr_logfacility, lr_min, lr_max, *lr_flag;
103 static int lr_flagval, lr_controlend;
104 static int lr_fdwant_readwrite; /* -1=never, 0=opt, 1=always */
105
106 /* Forward declarations of things used in lexer and parser */
107
108 struct parser_state {
109   int lineno, reportlineno, notedreferer, isinternal;
110   const char *filename;
111   YY_BUFFER_STATE ybuf;
112   struct parser_state *upstate;
113 };
114
115 static struct parser_state *cstate;
116
117 struct error_handling {
118   int handling; /* One of the error handling modes tokt_ehandlemode */
119   int logfacility, loglevel, filekeep;
120   FILE *file;
121   char *filename;
122 };
123
124 static struct error_handling eh = { tokv_word_errorstostderr, 0,0,0,0,0 };
125
126 static int dequote(char *inplace);
127
128 %}
129 %option noyywrap
130 %%
131
132 dnl simple words
133 undivert(3)
134 changequote({*,*})
135 {*
136 [0-9]{1,8}              {
137                           char *ep;
138                           lr_min=lr_max= (int)strtoul(yytext,&ep,10);
139                           assert(!*ep);
140                           return tokv_ordinal;
141                         }
142 [0-9]{1,8}-[0-9]{1,8}   {
143                           char *ep;
144                           lr_min=(int)strtoul(yytext,&ep,10);
145                           assert(*ep == HYPHEN);
146                           assert(*++ep);
147                           lr_max=(int)strtoul(ep,&ep,10);
148                           assert(!*ep);
149                           if (lr_max < lr_min) {
150                             parseerrprint("fd range has min > max");
151                             return tokv_error;
152                           }
153                           return tokv_fdrange;
154                         }
155 [0-9]{1,8}-             {
156                           char *ep;
157                           lr_min= (int)strtoul(yytext,&ep,10);
158                           assert(*ep == HYPHEN);
159                           assert(!*++ep);
160                           lr_max=-1;
161                           return tokv_fdstoend;
162                         }
163 [\ \t]+                 return tokv_lwsp;
164 [\ \t]*\n               cstate->lineno++; return tokv_newline;
165 [\ \t]*\#[^\n]*\n       cstate->lineno++; return tokv_newline;
166 [\ \t]*\#[^\n]*         {
167                           parseerrprint("missing newline at eof after comment");
168                           return tokv_error;
169                         }
170 [^\ \t\n]+              return tokv_barestring;
171 \"([^\\\"\n]|\\[a-z]|\\[0-9]{3}|\\x[0-9A-Fa-f]{2}|\\[:punct:]|\\[ \t]*\n)*\" {
172                           return dequote(yytext);
173                         }
174 \".*                    {
175                           parseerrprint("misquoted or unterminated string");
176                           return tokv_error;
177                         }
178 <<EOF>>                 return tokv_eof;
179 *}
180 changequote(`,')
181 %%
182 `
183 #include "parser.c"
184 '
185 divert(-1)
186 undivert
187