main2.c revision 1.15 1 1.15 rillig /* $NetBSD: main2.c,v 1.15 2021/04/02 12:16:50 rillig Exp $ */
2 1.2 cgd
3 1.1 cgd /*
4 1.1 cgd * Copyright (c) 1994, 1995 Jochen Pohl
5 1.1 cgd * All Rights Reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by Jochen Pohl for
18 1.1 cgd * The NetBSD Project.
19 1.1 cgd * 4. The name of the author may not be used to endorse or promote products
20 1.1 cgd * derived from this software without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.1 cgd * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 cgd * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 cgd * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.1 cgd * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.1 cgd * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.1 cgd * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.1 cgd * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.1 cgd * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.1 cgd * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.7 jmc #if HAVE_NBTOOL_CONFIG_H
35 1.7 jmc #include "nbtool_config.h"
36 1.7 jmc #endif
37 1.7 jmc
38 1.3 christos #include <sys/cdefs.h>
39 1.6 tv #if defined(__RCSID) && !defined(lint)
40 1.15 rillig __RCSID("$NetBSD: main2.c,v 1.15 2021/04/02 12:16:50 rillig Exp $");
41 1.1 cgd #endif
42 1.1 cgd
43 1.1 cgd #include <stdio.h>
44 1.1 cgd #include <stdlib.h>
45 1.1 cgd #include <string.h>
46 1.1 cgd #include <unistd.h>
47 1.1 cgd
48 1.1 cgd #include "lint2.h"
49 1.1 cgd
50 1.1 cgd /* warnings for symbols which are declared but not defined or used */
51 1.13 rillig bool xflag;
52 1.1 cgd
53 1.1 cgd /*
54 1.1 cgd * warnings for symbols which are used and not defined or defined
55 1.1 cgd * and not used
56 1.1 cgd */
57 1.13 rillig bool uflag = true;
58 1.1 cgd
59 1.1 cgd /* Create a lint library in the current directory with name libname. */
60 1.13 rillig bool Cflag;
61 1.13 rillig const char *libname;
62 1.1 cgd
63 1.13 rillig bool pflag;
64 1.1 cgd
65 1.1 cgd /*
66 1.5 wiz * warnings for (tentative) definitions of the same name in more than
67 1.1 cgd * one translation unit
68 1.1 cgd */
69 1.13 rillig bool sflag;
70 1.1 cgd
71 1.11 rillig bool Tflag;
72 1.13 rillig bool tflag;
73 1.1 cgd
74 1.1 cgd /*
75 1.1 cgd * If a complaint stems from a included file, print the name of the included
76 1.10 rillig * file instead of the name specified at the command line followed by '?'
77 1.1 cgd */
78 1.13 rillig bool Hflag;
79 1.1 cgd
80 1.13 rillig bool hflag;
81 1.1 cgd
82 1.1 cgd /* Print full path names, not only the last component */
83 1.13 rillig bool Fflag;
84 1.1 cgd
85 1.1 cgd /*
86 1.1 cgd * List of libraries (from -l flag). These libraries are read after all
87 1.1 cgd * other input files has been read and, for Cflag, after the new lint library
88 1.1 cgd * has been written.
89 1.1 cgd */
90 1.13 rillig const char **libs;
91 1.1 cgd
92 1.4 lukem static void usage(void);
93 1.1 cgd
94 1.1 cgd int
95 1.4 lukem main(int argc, char *argv[])
96 1.1 cgd {
97 1.1 cgd int c, i;
98 1.1 cgd size_t len;
99 1.1 cgd char *lname;
100 1.1 cgd
101 1.15 rillig libs = xcalloc(1, sizeof(*libs));
102 1.1 cgd
103 1.1 cgd opterr = 0;
104 1.11 rillig while ((c = getopt(argc, argv, "hpstxuC:HTFl:")) != -1) {
105 1.1 cgd switch (c) {
106 1.1 cgd case 's':
107 1.13 rillig sflag = true;
108 1.1 cgd break;
109 1.11 rillig case 'T':
110 1.11 rillig Tflag = true;
111 1.11 rillig break;
112 1.1 cgd case 't':
113 1.13 rillig tflag = true;
114 1.1 cgd break;
115 1.1 cgd case 'u':
116 1.13 rillig uflag = false;
117 1.1 cgd break;
118 1.1 cgd case 'x':
119 1.13 rillig xflag = true;
120 1.1 cgd break;
121 1.1 cgd case 'p':
122 1.13 rillig pflag = true;
123 1.1 cgd break;
124 1.1 cgd case 'C':
125 1.1 cgd len = strlen(optarg);
126 1.1 cgd lname = xmalloc(len + 10);
127 1.1 cgd (void)sprintf(lname, "llib-l%s.ln", optarg);
128 1.1 cgd libname = lname;
129 1.13 rillig Cflag = true;
130 1.13 rillig uflag = false;
131 1.1 cgd break;
132 1.1 cgd case 'H':
133 1.13 rillig Hflag = true;
134 1.1 cgd break;
135 1.1 cgd case 'h':
136 1.13 rillig hflag = true;
137 1.1 cgd break;
138 1.1 cgd case 'F':
139 1.13 rillig Fflag = true;
140 1.1 cgd break;
141 1.1 cgd case 'l':
142 1.4 lukem for (i = 0; libs[i] != NULL; i++)
143 1.4 lukem continue;
144 1.15 rillig libs = xrealloc(libs, (i + 2) * sizeof(*libs));
145 1.1 cgd libs[i] = xstrdup(optarg);
146 1.1 cgd libs[i + 1] = NULL;
147 1.1 cgd break;
148 1.1 cgd case '?':
149 1.1 cgd usage();
150 1.1 cgd }
151 1.1 cgd }
152 1.4 lukem
153 1.1 cgd argc -= optind;
154 1.1 cgd argv += optind;
155 1.1 cgd
156 1.1 cgd if (argc == 0)
157 1.1 cgd usage();
158 1.1 cgd
159 1.1 cgd initmem();
160 1.1 cgd
161 1.1 cgd /* initialize hash table */
162 1.1 cgd inithash();
163 1.1 cgd
164 1.1 cgd inittyp();
165 1.1 cgd
166 1.1 cgd for (i = 0; i < argc; i++)
167 1.1 cgd readfile(argv[i]);
168 1.1 cgd
169 1.1 cgd /* write the lint library */
170 1.1 cgd if (Cflag) {
171 1.1 cgd forall(mkstatic);
172 1.1 cgd outlib(libname);
173 1.1 cgd }
174 1.1 cgd
175 1.1 cgd /* read additional libraries */
176 1.1 cgd for (i = 0; libs[i] != NULL; i++)
177 1.1 cgd readfile(libs[i]);
178 1.1 cgd
179 1.1 cgd forall(mkstatic);
180 1.1 cgd
181 1.1 cgd mainused();
182 1.1 cgd
183 1.1 cgd /* perform all tests */
184 1.1 cgd forall(chkname);
185 1.1 cgd
186 1.1 cgd exit(0);
187 1.1 cgd /* NOTREACHED */
188 1.1 cgd }
189 1.1 cgd
190 1.1 cgd static void
191 1.4 lukem usage(void)
192 1.1 cgd {
193 1.1 cgd (void)fprintf(stderr,
194 1.12 rillig "usage: lint2 -hpstxuHFT -Clib -l lib ... src1 ...\n");
195 1.1 cgd exit(1);
196 1.1 cgd }
197