1995-04-28 10:54:58 +04:00
|
|
|
%{
|
2007-11-09 08:06:08 +03:00
|
|
|
/* $NetBSD: scan.l,v 1.8 2007/11/09 05:06:08 cube Exp $ */
|
1996-03-03 20:21:25 +03:00
|
|
|
|
1996-03-17 09:29:19 +03:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Lawrence Berkeley Laboratories.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 15:25:11 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-04-28 10:54:58 +04:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* from: @(#)scan.l 8.1 (Berkeley) 6/6/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <errno.h>
|
2002-11-18 02:36:19 +03:00
|
|
|
#include <libgen.h>
|
1995-04-28 10:54:58 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2005-09-10 19:38:46 +04:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <ctype.h>
|
2006-08-26 22:17:13 +04:00
|
|
|
#include <util.h>
|
|
|
|
#undef ECHO
|
2002-01-29 13:20:28 +03:00
|
|
|
#include "defs.h"
|
1998-04-09 04:32:31 +04:00
|
|
|
#include "gram.h"
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
int yyline;
|
|
|
|
const char *yyfile;
|
|
|
|
const char *lastfile;
|
2005-09-10 19:38:46 +04:00
|
|
|
char curinclpath[PATH_MAX];
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Data for returning to previous files from include files.
|
|
|
|
*/
|
|
|
|
struct incl {
|
|
|
|
struct incl *in_prev; /* previous includes in effect, if any */
|
|
|
|
YY_BUFFER_STATE in_buf; /* previous lex state */
|
|
|
|
const char *in_fname; /* previous file name */
|
|
|
|
int in_lineno; /* previous line number */
|
1996-11-12 02:54:17 +03:00
|
|
|
int in_ateof; /* token to insert at EOF */
|
2001-12-17 18:39:43 +03:00
|
|
|
int in_interesting; /* previous value for "interesting" */
|
1995-04-28 10:54:58 +04:00
|
|
|
};
|
|
|
|
static struct incl *incl;
|
2000-10-02 23:48:34 +04:00
|
|
|
static int endinclude(void);
|
2005-09-10 19:38:46 +04:00
|
|
|
static int getincludepath(void);
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
#define yywrap() 1
|
|
|
|
|
|
|
|
%}
|
|
|
|
|
1996-11-12 02:54:17 +03:00
|
|
|
PATH [A-Za-z_0-9]*[./][-A-Za-z_0-9./]*
|
2005-09-10 19:38:46 +04:00
|
|
|
QCHARS ([^"\n]|\\\")+
|
1995-04-28 10:54:58 +04:00
|
|
|
WORD [A-Za-z_][-A-Za-z_0-9]*
|
2005-09-10 19:38:46 +04:00
|
|
|
FILENAME ({PATH}|\"{QCHARS}\")
|
2007-11-09 08:06:08 +03:00
|
|
|
RESTOFLINE [ \t]*(#[^\n]*)?\n
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
%%
|
1996-11-13 21:42:18 +03:00
|
|
|
/* Local variables for yylex() */
|
|
|
|
int tok;
|
|
|
|
|
|
|
|
and return AND;
|
|
|
|
at return AT;
|
|
|
|
attach return ATTACH;
|
2002-09-06 17:18:43 +04:00
|
|
|
block return BLOCK;
|
1996-11-13 21:42:18 +03:00
|
|
|
build return BUILD;
|
2002-09-06 17:18:43 +04:00
|
|
|
char return CHAR;
|
1996-11-13 21:42:18 +03:00
|
|
|
compile-with return COMPILE_WITH;
|
|
|
|
config return CONFIG;
|
1998-02-19 03:27:00 +03:00
|
|
|
deffs return DEFFS;
|
1996-11-13 21:42:18 +03:00
|
|
|
define return DEFINE;
|
1998-06-24 15:20:54 +04:00
|
|
|
defflag return DEFFLAG;
|
1997-02-03 00:12:30 +03:00
|
|
|
defopt return DEFOPT;
|
1998-06-24 15:20:54 +04:00
|
|
|
defparam return DEFPARAM;
|
1999-07-07 04:02:09 +04:00
|
|
|
defpseudo return DEFPSEUDO;
|
1998-02-17 01:05:35 +03:00
|
|
|
devclass return DEVCLASS;
|
1996-11-13 21:42:18 +03:00
|
|
|
device return DEVICE;
|
2002-09-06 17:18:43 +04:00
|
|
|
device-major return DEVICE_MAJOR;
|
1996-11-13 21:42:18 +03:00
|
|
|
dumps return DUMPS;
|
|
|
|
file return XFILE;
|
1997-01-31 06:12:30 +03:00
|
|
|
file-system return FILE_SYSTEM;
|
1996-11-13 21:42:18 +03:00
|
|
|
flags return FLAGS;
|
2000-01-24 02:37:42 +03:00
|
|
|
ident return IDENT;
|
1996-11-13 21:42:18 +03:00
|
|
|
machine return XMACHINE;
|
|
|
|
major return MAJOR;
|
|
|
|
makeoptions return MAKEOPTIONS;
|
|
|
|
maxpartitions return MAXPARTITIONS;
|
|
|
|
maxusers return MAXUSERS;
|
|
|
|
minor return MINOR;
|
|
|
|
needs-count return NEEDS_COUNT;
|
|
|
|
needs-flag return NEEDS_FLAG;
|
2002-06-05 14:56:17 +04:00
|
|
|
no return NO;
|
1997-10-10 14:27:53 +04:00
|
|
|
object return XOBJECT;
|
Introduce two new statements:
obsolete defflag <option> [, <option> [, ...]]
obsolete defparam <option> [, <option> [, ...]]
The two statements actually do the same thing (there could be only one),
but it makes things less cryptic that way. The optional ": deps" part of
a 'defflag' or 'defparam' still has to be dropped when it gets obsoleted.
When the user has 'options OBSOLETE_OPTION' in his configuration file, it
is ignored (that is, opt_*.h files are generated as if it wasn't there),
and the user gets a warning about it.
Bump version to 20060525.
When someone first uses that syntax in the tree, a "version 20060525"
statement should be added before its occurrence, preferably at the top
of sys/conf/files.
Suggested by Matt Thomas a few months ago.
2006-05-26 02:28:38 +04:00
|
|
|
obsolete return OBSOLETE;
|
1996-11-13 21:42:18 +03:00
|
|
|
on return ON;
|
|
|
|
options return OPTIONS;
|
1999-07-09 10:44:58 +04:00
|
|
|
prefix return PREFIX;
|
1996-11-13 21:42:18 +03:00
|
|
|
pseudo-device return PSEUDO_DEVICE;
|
|
|
|
root return ROOT;
|
|
|
|
source return SOURCE;
|
1997-01-31 06:12:30 +03:00
|
|
|
type return TYPE;
|
Introduce versioning to config(1). This will allow us to provide a way to
error out in a bit more friendly way when the user is trying to use
config(1) on a too old or too recent source tree.
To achieve that, introduce the "version NUMBER" statement which can be use
about anywhere in the config files. Also, use two defines, CONFIG_VERSION
(which is the actual version of binary), and CONFIG_MINVERSION, which is
the minimum version the binary supports.
Allowing a range of versions serves several purposes: first it allows me
to introduce the versioning without requiring it to be used right away in
the kernel tree, which means it will be possible to introduce new features
of config(1) rather progressively in the future. E.g., using 'no pci' in
a config file could only require the new version in that config file, so
that the rest remains compatible.
In the end, an actual bump of the main config system (i.e., in conf/files)
will only be required when e.g., ioconf.c semantics change.
(Mostly-)silently accepted on tech-kern. Error messages turned into
correct and meaningful English thanks to Tracy and Perry.
2005-10-12 05:17:43 +04:00
|
|
|
version return VERSION;
|
1996-11-13 21:42:18 +03:00
|
|
|
with return WITH;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
2004-06-04 08:38:27 +04:00
|
|
|
\+= return PLUSEQ;
|
2007-01-09 16:03:47 +03:00
|
|
|
:= return COLONEQ;
|
2004-06-04 08:38:27 +04:00
|
|
|
|
2007-11-09 08:06:08 +03:00
|
|
|
include[ \t]+{FILENAME}{RESTOFLINE} {
|
|
|
|
yyline++;
|
2005-09-10 19:38:46 +04:00
|
|
|
if (getincludepath()) {
|
|
|
|
include(curinclpath, 0, 0, 1);
|
|
|
|
} else {
|
|
|
|
yyerror("bad include path-name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:06:08 +03:00
|
|
|
cinclude[ \t]+{FILENAME}{RESTOFLINE} {
|
|
|
|
yyline++;
|
2005-09-10 19:38:46 +04:00
|
|
|
if (getincludepath()) {
|
|
|
|
include(curinclpath, 0, 1, 1);
|
|
|
|
} else {
|
|
|
|
yyerror("bad cinclude path-name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:06:08 +03:00
|
|
|
package[ \t]+{FILENAME}{RESTOFLINE} {
|
|
|
|
yyline++;
|
2005-09-10 19:38:46 +04:00
|
|
|
if (!oktopackage) {
|
|
|
|
yyerror("package not allowed here");
|
|
|
|
} else if (getincludepath()) {
|
|
|
|
package(curinclpath);
|
|
|
|
} else {
|
|
|
|
yyerror("bad package path-name");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1996-11-13 21:42:18 +03:00
|
|
|
{PATH} {
|
|
|
|
yylval.str = intern(yytext);
|
|
|
|
return PATHNAME;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1996-11-13 21:42:18 +03:00
|
|
|
{WORD} {
|
|
|
|
yylval.str = intern(yytext);
|
|
|
|
return WORD;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1997-10-10 13:32:03 +04:00
|
|
|
\"\" {
|
|
|
|
yylval.str = intern("");
|
2006-08-26 22:17:13 +04:00
|
|
|
return EMPTYSTRING;
|
1997-10-10 13:32:03 +04:00
|
|
|
}
|
2005-09-10 19:38:46 +04:00
|
|
|
|
|
|
|
\"{QCHARS} {
|
1996-11-13 21:42:18 +03:00
|
|
|
tok = input(); /* eat closing quote */
|
|
|
|
if (tok != '"') {
|
2007-01-14 02:47:36 +03:00
|
|
|
cfgerror("closing quote missing\n");
|
1996-11-13 21:42:18 +03:00
|
|
|
unput(tok);
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
yylval.str = intern(yytext + 1);
|
2002-06-22 06:04:28 +04:00
|
|
|
return QSTRING;
|
1995-04-28 10:54:58 +04:00
|
|
|
}
|
|
|
|
0[0-7]* {
|
2003-11-19 21:06:13 +03:00
|
|
|
yylval.num.fmt = 8;
|
|
|
|
yylval.num.val = strtoll(yytext, NULL, 8);
|
1995-04-28 10:54:58 +04:00
|
|
|
return NUMBER;
|
|
|
|
}
|
|
|
|
0[xX][0-9a-fA-F]+ {
|
2003-11-19 21:06:13 +03:00
|
|
|
yylval.num.fmt = 16;
|
|
|
|
yylval.num.val = strtoull(yytext + 2, NULL, 16);
|
1995-04-28 10:54:58 +04:00
|
|
|
return NUMBER;
|
|
|
|
}
|
|
|
|
[1-9][0-9]* {
|
2003-11-19 21:06:13 +03:00
|
|
|
yylval.num.fmt = 10;
|
|
|
|
yylval.num.val = strtoll(yytext, NULL, 10);
|
1995-04-28 10:54:58 +04:00
|
|
|
return NUMBER;
|
|
|
|
}
|
1996-11-13 21:42:18 +03:00
|
|
|
\n[ \t] {
|
1996-11-12 20:42:47 +03:00
|
|
|
/*
|
|
|
|
* Note: newline followed by whitespace is always a
|
|
|
|
* continuation of the previous line, so do NOT
|
|
|
|
* return a token in this case.
|
|
|
|
*/
|
|
|
|
yyline++;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
\n {
|
|
|
|
yyline++;
|
|
|
|
return '\n';
|
|
|
|
}
|
2002-11-07 23:07:07 +03:00
|
|
|
\00 {
|
2002-11-08 00:06:04 +03:00
|
|
|
/* Detect NUL characters in the config file and
|
2002-11-07 23:07:07 +03:00
|
|
|
* error out.
|
|
|
|
*/
|
2007-01-14 02:47:36 +03:00
|
|
|
cfgerror("NUL character detected at line %i\n", yyline);
|
2002-11-07 23:07:07 +03:00
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
#.* { /* ignored (comment) */; }
|
1996-11-13 21:42:18 +03:00
|
|
|
[ \t]+ { /* ignored (white space) */; }
|
1995-04-28 10:54:58 +04:00
|
|
|
. { return yytext[0]; }
|
|
|
|
<<EOF>> {
|
1996-11-12 02:54:17 +03:00
|
|
|
if (incl == NULL)
|
|
|
|
return YY_NULL;
|
|
|
|
tok = endinclude();
|
|
|
|
if (tok)
|
|
|
|
return tok;
|
|
|
|
/* otherwise continue scanning */
|
1995-04-28 10:54:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
%%
|
|
|
|
|
2001-12-17 18:39:43 +03:00
|
|
|
int interesting = 1;
|
|
|
|
|
2003-09-03 22:56:37 +04:00
|
|
|
static int
|
|
|
|
curdir_push(const char *fname)
|
|
|
|
{
|
|
|
|
struct prefix *pf;
|
|
|
|
char *p, *d, *f;
|
|
|
|
|
|
|
|
/* Set up the initial "current directory" for include directives. */
|
|
|
|
d = dirname(f = estrdup(fname));
|
|
|
|
if (*d == '/')
|
|
|
|
p = estrdup(d);
|
|
|
|
else {
|
|
|
|
char *cwd, buf[PATH_MAX];
|
|
|
|
|
|
|
|
if ((cwd = getcwd(buf, sizeof(buf))) == NULL)
|
|
|
|
return (-1);
|
|
|
|
p = emalloc(strlen(cwd) + strlen(d) + 2);
|
|
|
|
sprintf(p, "%s/%s", cwd, d);
|
|
|
|
}
|
2003-09-08 21:50:12 +04:00
|
|
|
free(f);
|
2003-11-25 00:44:37 +03:00
|
|
|
pf = ecalloc(1, sizeof(*pf));
|
2003-09-03 22:56:37 +04:00
|
|
|
pf->pf_prefix = p;
|
|
|
|
SLIST_INSERT_HEAD(&curdirs, pf, pf_next);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
curdir_pop(void)
|
|
|
|
{
|
|
|
|
struct prefix *pf;
|
|
|
|
|
|
|
|
pf = SLIST_FIRST(&curdirs);
|
|
|
|
SLIST_REMOVE_HEAD(&curdirs, pf_next);
|
|
|
|
if (SLIST_EMPTY(&curdirs))
|
|
|
|
panic("curdirs is empty");
|
|
|
|
/* LINTED cast away const (pf_prefix is malloc'd for curdirs) */
|
|
|
|
free((void *)pf->pf_prefix);
|
|
|
|
free(pf);
|
|
|
|
}
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Open the "main" file (conffile).
|
|
|
|
*/
|
|
|
|
int
|
2000-10-02 23:48:34 +04:00
|
|
|
firstfile(const char *fname)
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
|
|
|
|
2003-04-11 14:53:52 +04:00
|
|
|
#if defined(__NetBSD__)
|
|
|
|
if ((yyin = fopen(fname, "rf")) == NULL)
|
|
|
|
#else
|
1995-04-28 10:54:58 +04:00
|
|
|
if ((yyin = fopen(fname, "r")) == NULL)
|
2003-04-11 14:53:52 +04:00
|
|
|
#endif
|
1995-04-28 10:54:58 +04:00
|
|
|
return (-1);
|
2003-09-03 22:56:37 +04:00
|
|
|
|
|
|
|
if (curdir_push(fname) == -1)
|
|
|
|
return (-1);
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
yyfile = conffile = fname;
|
|
|
|
yyline = 1;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2002-11-18 02:36:19 +03:00
|
|
|
/*
|
|
|
|
* Add a "package" to the configuration. This is essentially
|
|
|
|
* syntactic sugar around the sequence:
|
|
|
|
*
|
|
|
|
* prefix ../some/directory
|
|
|
|
* include "files.package"
|
|
|
|
* prefix
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
package(const char *fname)
|
|
|
|
{
|
|
|
|
char *fname1 = estrdup(fname);
|
|
|
|
char *fname2 = estrdup(fname);
|
|
|
|
char *dir = dirname(fname1);
|
|
|
|
char *file = basename(fname2);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Push the prefix on to the prefix stack and process the include
|
|
|
|
* file. When we reach the end of the include file, inserting
|
|
|
|
* the PREFIX token into the input stream will pop the prefix off
|
|
|
|
* of the prefix stack.
|
|
|
|
*/
|
|
|
|
prefix_push(dir);
|
|
|
|
(void) include(file, PREFIX, 0, 1);
|
|
|
|
|
|
|
|
free(fname1);
|
|
|
|
free(fname2);
|
|
|
|
}
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Open the named file for inclusion at the current point. Returns 0 on
|
|
|
|
* success (file opened and previous state pushed), nonzero on failure
|
|
|
|
* (fopen failed, complaint made). The `ateof' parameter controls the
|
1996-11-12 02:54:17 +03:00
|
|
|
* token to be inserted at the end of the include file (i.e. ENDFILE).
|
|
|
|
* If ateof == 0 then nothing is inserted.
|
1995-04-28 10:54:58 +04:00
|
|
|
*/
|
|
|
|
int
|
2001-12-17 18:39:43 +03:00
|
|
|
include(const char *fname, int ateof, int conditional, int direct)
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
1996-11-12 02:54:17 +03:00
|
|
|
FILE *fp;
|
|
|
|
struct incl *in;
|
1996-09-01 00:58:16 +04:00
|
|
|
char *s;
|
1996-11-12 02:54:17 +03:00
|
|
|
static int havedirs;
|
2000-01-05 14:24:02 +03:00
|
|
|
extern int vflag;
|
1996-11-12 02:54:17 +03:00
|
|
|
|
|
|
|
if (havedirs == 0) {
|
|
|
|
havedirs = 1;
|
|
|
|
setupdirs();
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
2003-09-03 22:56:37 +04:00
|
|
|
if (fname[0] == '/')
|
|
|
|
s = estrdup(fname);
|
|
|
|
else if (fname[0] == '.' && fname[1] == '/') {
|
|
|
|
struct prefix *pf = SLIST_FIRST(&curdirs);
|
|
|
|
s = emalloc(strlen(pf->pf_prefix) + strlen(fname));
|
|
|
|
sprintf(s, "%s/%s", pf->pf_prefix, fname + 2);
|
|
|
|
} else
|
|
|
|
s = sourcepath(fname);
|
1996-09-01 00:58:16 +04:00
|
|
|
if ((fp = fopen(s, "r")) == NULL) {
|
1999-07-07 04:02:09 +04:00
|
|
|
if (conditional == 0)
|
2007-01-14 02:47:36 +03:00
|
|
|
cfgerror("cannot open %s for reading: %s\n", s,
|
1999-07-07 04:02:09 +04:00
|
|
|
strerror(errno));
|
2000-01-05 14:24:02 +03:00
|
|
|
else if (vflag)
|
2007-01-14 02:47:36 +03:00
|
|
|
cfgwarn("cannot open conditional include file %s: %s",
|
2000-01-05 14:24:02 +03:00
|
|
|
s, strerror(errno));
|
1996-09-01 00:58:16 +04:00
|
|
|
free(s);
|
1995-04-28 10:54:58 +04:00
|
|
|
return (-1);
|
|
|
|
}
|
2003-09-03 22:56:37 +04:00
|
|
|
if (curdir_push(s) == -1) {
|
2007-01-14 02:47:36 +03:00
|
|
|
cfgerror("cannot record current working directory for %s\n", s);
|
2003-09-03 22:56:37 +04:00
|
|
|
fclose(fp);
|
|
|
|
free(s);
|
|
|
|
return (-1);
|
|
|
|
}
|
2003-11-25 00:44:37 +03:00
|
|
|
in = ecalloc(1, sizeof *in);
|
1995-04-28 10:54:58 +04:00
|
|
|
in->in_prev = incl;
|
|
|
|
in->in_buf = YY_CURRENT_BUFFER;
|
|
|
|
in->in_fname = yyfile;
|
|
|
|
in->in_lineno = yyline;
|
1996-11-12 02:54:17 +03:00
|
|
|
in->in_ateof = ateof;
|
2001-12-17 18:39:43 +03:00
|
|
|
in->in_interesting = interesting;
|
|
|
|
interesting = direct & interesting;
|
|
|
|
if (interesting)
|
|
|
|
logconfig_include(fp, fname);
|
1995-04-28 10:54:58 +04:00
|
|
|
incl = in;
|
|
|
|
yy_switch_to_buffer(yy_create_buffer(fp, YY_BUF_SIZE));
|
1996-09-01 00:58:16 +04:00
|
|
|
yyfile = intern(s);
|
1995-04-28 10:54:58 +04:00
|
|
|
yyline = 1;
|
1996-09-01 00:58:16 +04:00
|
|
|
free(s);
|
1995-04-28 10:54:58 +04:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-09-10 19:38:46 +04:00
|
|
|
/*
|
|
|
|
* Extract the pathname from a include/cinclude/package into curinclpath
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
getincludepath()
|
|
|
|
{
|
|
|
|
const char *p = yytext;
|
2007-11-09 08:06:08 +03:00
|
|
|
ptrdiff_t len;
|
|
|
|
const char *e;
|
2005-09-10 19:38:46 +04:00
|
|
|
|
2007-11-09 08:06:08 +03:00
|
|
|
while (*p && isascii((unsigned int)*p) && !isspace((unsigned int)*p))
|
2005-09-10 19:38:46 +04:00
|
|
|
p++;
|
2007-11-09 08:06:08 +03:00
|
|
|
while (*p && isascii((unsigned int)*p) && isspace((unsigned int)*p))
|
2005-09-10 19:38:46 +04:00
|
|
|
p++;
|
|
|
|
if (!*p)
|
|
|
|
return 0;
|
|
|
|
if (*p == '"') {
|
2007-11-09 08:06:08 +03:00
|
|
|
p++;
|
|
|
|
e = strchr(p, '"');
|
2005-09-10 19:38:46 +04:00
|
|
|
if (!e) return 0;
|
|
|
|
} else {
|
2007-11-09 08:06:08 +03:00
|
|
|
e = p;
|
|
|
|
while (*e && isascii((unsigned int)*e)
|
|
|
|
&& !isspace((unsigned int)*e))
|
|
|
|
e++;
|
2005-09-10 19:38:46 +04:00
|
|
|
}
|
|
|
|
|
2007-11-09 08:06:08 +03:00
|
|
|
len = e-p;
|
|
|
|
if (len > sizeof(curinclpath)-1)
|
|
|
|
len = sizeof(curinclpath)-1;
|
|
|
|
strncpy(curinclpath, p, sizeof(curinclpath));
|
|
|
|
curinclpath[len] = '\0';
|
|
|
|
|
2005-09-10 19:38:46 +04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Terminate the most recent inclusion.
|
|
|
|
*/
|
1996-11-12 02:54:17 +03:00
|
|
|
static int
|
2000-10-02 23:48:34 +04:00
|
|
|
endinclude(void)
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
1996-11-12 02:54:17 +03:00
|
|
|
struct incl *in;
|
|
|
|
int ateof;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
2003-09-03 22:56:37 +04:00
|
|
|
curdir_pop();
|
1995-04-28 10:54:58 +04:00
|
|
|
if ((in = incl) == NULL)
|
|
|
|
panic("endinclude");
|
|
|
|
incl = in->in_prev;
|
|
|
|
lastfile = yyfile;
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
|
|
|
(void)fclose(yyin);
|
|
|
|
yy_switch_to_buffer(in->in_buf);
|
|
|
|
yyfile = in->in_fname;
|
|
|
|
yyline = in->in_lineno;
|
1996-11-12 02:54:17 +03:00
|
|
|
ateof = in->in_ateof;
|
2001-12-17 18:39:43 +03:00
|
|
|
interesting = in->in_interesting;
|
1995-04-28 10:54:58 +04:00
|
|
|
free(in);
|
1996-11-12 02:54:17 +03:00
|
|
|
|
|
|
|
return (ateof);
|
1995-04-28 10:54:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the current line number. If yacc has looked ahead and caused
|
|
|
|
* us to consume a newline, we have to subtract one. yychar is yacc's
|
|
|
|
* token lookahead, so we can tell.
|
|
|
|
*/
|
|
|
|
int
|
2000-10-02 23:48:34 +04:00
|
|
|
currentline(void)
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
|
|
|
extern int yychar;
|
|
|
|
|
|
|
|
return (yyline - (yychar == '\n'));
|
|
|
|
}
|