main2.c revision 1.29 1 1.29 rillig /* $NetBSD: main2.c,v 1.29 2023/06/09 13:03:49 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.24 rillig #if defined(__RCSID)
40 1.29 rillig __RCSID("$NetBSD: main2.c,v 1.29 2023/06/09 13:03:49 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.1 cgd /*
64 1.5 wiz * warnings for (tentative) definitions of the same name in more than
65 1.1 cgd * one translation unit
66 1.1 cgd */
67 1.13 rillig bool sflag;
68 1.1 cgd
69 1.13 rillig bool tflag;
70 1.1 cgd
71 1.1 cgd /*
72 1.1 cgd * If a complaint stems from a included file, print the name of the included
73 1.10 rillig * file instead of the name specified at the command line followed by '?'
74 1.1 cgd */
75 1.13 rillig bool Hflag;
76 1.1 cgd
77 1.13 rillig bool hflag;
78 1.1 cgd
79 1.1 cgd /* Print full path names, not only the last component */
80 1.13 rillig bool Fflag;
81 1.1 cgd
82 1.1 cgd /*
83 1.1 cgd * List of libraries (from -l flag). These libraries are read after all
84 1.1 cgd * other input files has been read and, for Cflag, after the new lint library
85 1.1 cgd * has been written.
86 1.1 cgd */
87 1.28 rillig static const char **libs;
88 1.1 cgd
89 1.17 rillig static void usage(void) __attribute__((noreturn));
90 1.1 cgd
91 1.19 rillig static void
92 1.26 rillig check_name_non_const(hte_t *hte)
93 1.19 rillig {
94 1.26 rillig check_name(hte);
95 1.19 rillig }
96 1.19 rillig
97 1.1 cgd int
98 1.4 lukem main(int argc, char *argv[])
99 1.1 cgd {
100 1.29 rillig int c, i;
101 1.29 rillig size_t len;
102 1.29 rillig char *lname;
103 1.1 cgd
104 1.15 rillig libs = xcalloc(1, sizeof(*libs));
105 1.1 cgd
106 1.1 cgd opterr = 0;
107 1.22 rillig while ((c = getopt(argc, argv, "hstxuC:HFl:")) != -1) {
108 1.1 cgd switch (c) {
109 1.1 cgd case 's':
110 1.13 rillig sflag = true;
111 1.1 cgd 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 'C':
122 1.1 cgd len = strlen(optarg);
123 1.1 cgd lname = xmalloc(len + 10);
124 1.1 cgd (void)sprintf(lname, "llib-l%s.ln", optarg);
125 1.1 cgd libname = lname;
126 1.13 rillig Cflag = true;
127 1.13 rillig uflag = false;
128 1.1 cgd break;
129 1.1 cgd case 'H':
130 1.13 rillig Hflag = true;
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 'F':
136 1.13 rillig Fflag = true;
137 1.1 cgd break;
138 1.1 cgd case 'l':
139 1.4 lukem for (i = 0; libs[i] != NULL; i++)
140 1.4 lukem continue;
141 1.15 rillig libs = xrealloc(libs, (i + 2) * sizeof(*libs));
142 1.1 cgd libs[i] = xstrdup(optarg);
143 1.1 cgd libs[i + 1] = NULL;
144 1.1 cgd break;
145 1.16 rillig default:
146 1.1 cgd usage();
147 1.1 cgd }
148 1.1 cgd }
149 1.4 lukem
150 1.1 cgd argc -= optind;
151 1.1 cgd argv += optind;
152 1.1 cgd
153 1.1 cgd if (argc == 0)
154 1.1 cgd usage();
155 1.1 cgd
156 1.23 rillig symtab_init();
157 1.1 cgd
158 1.1 cgd for (i = 0; i < argc; i++)
159 1.1 cgd readfile(argv[i]);
160 1.1 cgd
161 1.1 cgd /* write the lint library */
162 1.1 cgd if (Cflag) {
163 1.20 rillig symtab_forall(mkstatic);
164 1.1 cgd outlib(libname);
165 1.1 cgd }
166 1.1 cgd
167 1.1 cgd /* read additional libraries */
168 1.1 cgd for (i = 0; libs[i] != NULL; i++)
169 1.1 cgd readfile(libs[i]);
170 1.1 cgd
171 1.20 rillig symtab_forall(mkstatic);
172 1.1 cgd
173 1.26 rillig mark_main_as_used();
174 1.1 cgd
175 1.1 cgd /* perform all tests */
176 1.26 rillig symtab_forall_sorted(check_name_non_const);
177 1.1 cgd
178 1.27 rillig return 0;
179 1.1 cgd }
180 1.1 cgd
181 1.1 cgd static void
182 1.4 lukem usage(void)
183 1.1 cgd {
184 1.1 cgd (void)fprintf(stderr,
185 1.12 rillig "usage: lint2 -hpstxuHFT -Clib -l lib ... src1 ...\n");
186 1.1 cgd exit(1);
187 1.1 cgd }
188