chiark / gitweb /
c55c2e26495dec3ae05f6a1b1aec1f0223b1824b
[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,1999 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/types.h>
37 #include <sys/stat.h>
38 #include <time.h>
39 #include <errno.h>
40
41 #include "config.h"
42 #include "common.h"
43 #include "daemon.h"
44 #include "lib.h"
45 #include "tokens.h"
46
47 #define HYPHEN '-'
48
49 typedef int directive_fnt(int dtoken);
50 static directive_fnt df_reject, df_execute, df_executefrompath;
51 static directive_fnt df_executefromdirectory, df_executebuiltin;
52 static directive_fnt df_errorstostderr, df_errorstosyslog, df_errorstofile;
53 static directive_fnt dfg_fdwant, dfg_setflag;
54 static directive_fnt df_reset, df_cd, df_userrcfile, df_include;
55 static directive_fnt df_includelookup, df_includedirectory;
56 static directive_fnt df_message, df_error, df_quit, df_eof;
57 static directive_fnt df_if, df_catchquit, df_errorspush;
58 static directive_fnt dfi_includeuserrcfile, dfi_includeclientconfig;
59 /* directive functions return:
60  *  0 for success having scanned up to and including end of line but not beyond,
61  *  or tokv_error or tokv_quit.
62  * They expect to parse the whitespace before their parameters (if any).
63  */
64
65 typedef int parmcondition_fnt(int ctoken, char *const *parmvalues, int *rtrue);
66 static parmcondition_fnt pcf_glob, pcf_range, pcf_grep;
67 /* all conditional functions return tokv_error for failure or 0 for success
68  *  at parsing and testing, in which case *rtrue is set to 0 or 1.
69  *  On success they have scanned up to and including the condition's
70  *  terminating newline; the pcf_... functions expect to parse the whitespace
71  *  between the parameter name and the condition's arguments.
72  * Otherwise they return tokv_error.
73  * The parameter-based conditionals take a list of parameter values
74  * as obtained from the parameter functions and pa_parameter,
75  * and do _not_ free it.
76  */
77
78 typedef int parameter_fnt(int ptoken, char ***rvalues);
79 static parameter_fnt pf_service;
80 static parameter_fnt pf_callinguser, pf_serviceuser;
81 static parameter_fnt pf_callinggroup, pf_servicegroup;
82 static parameter_fnt pf_callingusershell, pf_serviceusershell;
83 /* Parameter functions return tokv_error or 0 for success at parsing
84  * and determining the value, in which case *rvalues is made to be
85  * a mallocd null-terminated array of pointers to mallocd strings.
86  * freeparm can be used to free such an array.
87  */
88
89 typedef int builtinserviceparse_fnt(char ***rnewargs);
90 static builtinserviceparse_fnt bispa_none, bispa_parameter;
91 /* These parse the arguments to a builtin service, including the
92  * newline at the end of the line.  *rnewargs will initially be
93  * null, indicating that no arguments are to be set; the function
94  * may store a mallocd array of mallocd strings in it,
95  * containing the arguments it wishes to have set (null-pointer
96  * terminated).
97  */
98
99 static int yylex(void);
100 /* Returns a token (which may be an eof or error exception) */
101
102 static directive_fnt *lr_dir;
103 static parmcondition_fnt *lr_parmcond;
104 static builtinserviceparse_fnt *lr_bispa;
105 static builtinserviceexec_fnt *lr_bisexec;
106 static parameter_fnt *lr_parameter;
107 static int lr_loglevel, lr_logfacility, lr_min, lr_max, *lr_flag;
108 static int lr_flagval, lr_controlend;
109 static int lr_fdwant_readwrite; /* -1=never, 0=opt, 1=always */
110
111 /* Forward declarations of things used in lexer and parser */
112
113 struct parser_state {
114   int lineno, reportlineno, notedreferer, isinternal;
115   const char *filename;
116   struct stat filestab;
117   YY_BUFFER_STATE ybuf;
118   struct parser_state *upstate;
119 };
120
121 static struct parser_state *cstate;
122
123 struct error_handling {
124   int handling; /* One of the error handling modes tokt_ehandlemode */
125   int logfacility, loglevel;
126   int filekeep; /* File is in use by higher-level errors-push, leave it open */
127   FILE *file;
128   char *filename;
129 };
130
131 static struct error_handling eh = { tokv_word_errorstostderr, 0,0,0,0,0 };
132
133 static int dequote(char *inplace);
134
135 #define YY_NO_UNPUT
136
137 %}
138
139 %option noyywrap
140
141 %%
142
143 dnl simple words
144 undivert(3)
145 changequote({*,*})
146 {*
147 [0-9]{1,8}              {
148                           char *ep;
149                           lr_min=lr_max= (int)strtoul(yytext,&ep,10);
150                           assert(!*ep);
151                           return tokv_ordinal;
152                         }
153 [0-9]{1,8}-[0-9]{1,8}   {
154                           char *ep;
155                           lr_min= (int)strtoul(yytext,&ep,10);
156                           assert(*ep == HYPHEN);
157                           assert(*++ep);
158                           lr_max= (int)strtoul(ep,&ep,10);
159                           assert(!*ep);
160                           if (lr_max < lr_min) {
161                             parseerrprint("fd range has min > max");
162                             return tokv_error;
163                           }
164                           return tokv_fdrange;
165                         }
166 [0-9]{1,8}-             {
167                           char *ep;
168                           lr_min= (int)strtoul(yytext,&ep,10);
169                           assert(*ep == HYPHEN);
170                           assert(!*++ep);
171                           lr_max=-1;
172                           return tokv_fdstoend;
173                         }
174 [\ \t]+                 return tokv_lwsp;
175 [\ \t]*\n               cstate->lineno++; return tokv_newline;
176 [\ \t]*\#[^\n]*\n       cstate->lineno++; return tokv_newline;
177 [\ \t]*\#[^\n]*         {
178                           parseerrprint("missing newline at eof after comment");
179                           return tokv_error;
180                         }
181 \"([^\\\"\n]|\\[a-z]|\\[0-9]{3}|\\x[0-9A-Fa-f]{2}|\\[[:punct:]]|\\[ \t]*\n)*\" {
182                           return dequote(yytext);
183                         }
184 \".*                    {
185                           parseerrprint("misquoted or unterminated string");
186                           return tokv_error;
187                         }
188 [^\ \t\n]+              return tokv_barestring;
189 <<EOF>>                 return tokv_eof;
190 *}
191 changequote(`,')
192 %%
193
194 const char *const builtinservicehelpstrings[]= {
195 undivert(5)dnl
196    0
197 };
198 `
199 #include "parser.c"
200 '
201 divert(-1)
202 undivert