Revert "objformat(1): Remove an unneeded default case."
[dragonfly.git] / usr.bin / objformat / objformat.c
1 /*-
2  * Copyright (c) 2004, The DragonFly Project.  All rights reserved.
3  * Copyright (c) 1998, Peter Wemm <peter@netplex.com.au>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD: src/usr.bin/objformat/objformat.c,v 1.6 1998/10/24 02:01:30 jdp Exp $
28  */
29
30 #include <sys/param.h>
31
32 #include <err.h>
33 #include <objformat.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <unistd.h>
38
39 #ifndef CCVER_DEFAULT
40 #define CCVER_DEFAULT "gcc44"
41 #endif
42
43 #ifndef BINUTILSVER_DEFAULT
44 #define BINUTILSVER_DEFAULT "binutils221"
45 #endif
46
47 #ifndef OBJFORMAT_PATH_DEFAULT
48 #define OBJFORMAT_PATH_DEFAULT ""
49 #endif
50
51 enum cmd_type { OBJFORMAT, COMPILER, BINUTILS };
52
53 struct command {
54         const char *cmd;
55         enum cmd_type type;
56 };
57
58 static struct command commands[] = {
59         {"CC",          COMPILER},
60         {"c++",         COMPILER},
61         {"c++filt",     COMPILER},
62         {"cc",          COMPILER},
63         {"cpp",         COMPILER},
64         {"g++",         COMPILER},
65         {"gcc",         COMPILER},
66         {"gcov",        COMPILER},
67         {"addr2line",   BINUTILS},
68         {"ar",          BINUTILS},
69         {"as",          BINUTILS},
70 #if 0
71         {"c++filt",     BINUTILS},
72 #endif
73         {"elfedit",     BINUTILS},
74         {"ld",          BINUTILS},
75         {"nm",          BINUTILS},
76         {"objcopy",     BINUTILS},
77         {"objdump",     BINUTILS},
78         {"ranlib",      BINUTILS},
79         {"readelf",     BINUTILS},
80         {"size",        BINUTILS},
81         {"strings",     BINUTILS},
82         {"strip",       BINUTILS},
83         {"objformat",   OBJFORMAT},
84         {"",            -1}
85 };
86
87 int
88 main(int argc, char **argv)
89 {
90         struct command *cmds;
91         char objformat[32];
92         char *path, *chunk;
93         char *cmd, *newcmd = NULL;
94         const char *objformat_path;
95         const char *ccver;
96         const char *buver;
97         const char *env_value = NULL;
98         const char *base_path = NULL;
99         int use_objformat = 0;
100
101         if (getobjformat(objformat, sizeof objformat, &argc, argv) == -1)
102                 errx(1, "Invalid object format");
103
104         /*
105          * Get the last path element of the program name being executed
106          */
107         cmd = strrchr(argv[0], '/');
108         if (cmd != NULL)
109                 cmd++;
110         else
111                 cmd = argv[0];
112
113         for (cmds = commands; cmds < &commands[NELEM(commands) - 1]; ++cmds) {
114                 if (strcmp(cmd, cmds->cmd) == 0)
115                         break;
116         }
117
118         if ((ccver = getenv("CCVER")) == NULL || ccver[0] == 0)
119                 ccver = CCVER_DEFAULT;
120         if ((buver = getenv("BINUTILSVER")) == NULL) {
121                 buver = BINUTILSVER_DEFAULT;
122         }
123
124         if (cmds) {
125                 switch (cmds->type) {
126                 case COMPILER:
127                         base_path = "/usr/libexec";
128                         use_objformat = 0;
129                         env_value = ccver;
130                         break;
131                 case BINUTILS:
132                         base_path = "/usr/libexec";
133                         use_objformat = 1;
134                         env_value = buver;
135                         break;
136                 case OBJFORMAT:
137                         break;
138                 default:
139                         errx(1, "unknown command type");
140                         break;
141                 }
142         }
143
144         /*
145          * The objformat command itself doesn't need another exec
146          */
147         if (cmds->type == OBJFORMAT) {
148                 if (argc != 1) {
149                         fprintf(stderr, "Usage: objformat\n");
150                         exit(1);
151                 }
152
153                 printf("%s\n", objformat);
154                 exit(0);
155         }
156
157         /*
158          * make buildworld glue and CCVER overrides.
159          */
160         objformat_path = getenv("OBJFORMAT_PATH");
161         if (objformat_path == NULL)
162                 objformat_path = OBJFORMAT_PATH_DEFAULT;
163
164 again:
165         path = strdup(objformat_path);
166
167         if (setenv("OBJFORMAT", objformat, 1) == -1)
168                 err(1, "setenv: cannot set OBJFORMAT=%s", objformat);
169
170         /*
171          * objformat_path could be sequence of colon-separated paths.
172          */
173         while ((chunk = strsep(&path, ":")) != NULL) {
174                 if (newcmd != NULL) {
175                         free(newcmd);
176                         newcmd = NULL;
177                 }
178                 if (use_objformat) {
179                         asprintf(&newcmd, "%s%s/%s/%s/%s",
180                                 chunk, base_path, env_value, objformat, cmd);
181                 } else {
182                         asprintf(&newcmd, "%s%s/%s/%s",
183                                 chunk, base_path, env_value, cmd);
184                 }
185                 if (newcmd == NULL)
186                         err(1, "cannot allocate memory");
187
188                 argv[0] = newcmd;
189                 execv(newcmd, argv);
190         }
191
192         /*
193          * Fallback:  if we're searching for a compiler, but didn't
194          * find any, try again using the custom compiler driver.
195          */
196         if (cmds && cmds->type == COMPILER &&
197             strcmp(env_value, "custom") != 0) {
198                 env_value = "custom";
199                 goto again;
200         }
201
202         if (use_objformat) {
203                 err(1, "in path [%s]%s/%s/%s/%s",
204                         objformat_path, base_path, env_value, objformat, cmd);
205         } else {
206                 err(1, "in path [%s]%s/%s/%s",
207                         objformat_path, base_path, env_value, cmd);
208         }
209 }