summaryrefslogtreecommitdiffstats
path: root/usr.bin/objformat/objformat.c
blob: 827af6eda1e9aed88421f52ccb7c07ef6eb01dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*-
 * Copyright (c) 1998, Peter Wemm <peter@netplex.com.au>
 * All rights reserved.
 *
 * 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.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
 *
 * $FreeBSD$
 */

#include <sys/types.h>

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#ifdef FREEBSD_ELF
int objformat_aout = 0;
#else
int objformat_aout = 1;
#endif

void
getobjfmt(void)
{
	char *env;
	int i;

	/* first hint is /etc/objformat */
	FILE *fp = fopen("/etc/objformat", "r");
	if (fp) {
		char buf[1024];
		buf[1023] = '\0';
		while (fgets(buf, sizeof(buf) - 1, fp) != NULL) {
			i = strlen(buf);
			if (buf[i - 1] == '\n')
				buf[i - 1] = '\0';
			if (strcmp(buf, "OBJFORMAT=aout") == 0)
				objformat_aout = 1;
			else if (strcmp(buf, "OBJFORMAT=elf") == 0)
				objformat_aout = 0;
			else
				fprintf(stderr, "Unrecognized line in /etc/objformat: %s\n", buf);
		}
		fclose(fp);
	}
	/* but the user $OBJFORMAT overrides system default */
	env = getenv("OBJFORMAT");
	if (env) {
		if (strcmp(env, "aout") == 0)
			objformat_aout = 1;
		else if (strcmp(env, "elf") == 0)
			objformat_aout = 0;
		else
			fprintf(stderr, "Unrecognized value of $OBJFORMAT: %s\n", env);
	}
}

void
scanargv(int *argc, char **argv, int strip)
{
	int i, j;

	for (i = 1; i < *argc; i++) {
		if (strcmp (argv[i], "-aout") == 0) {
			objformat_aout = 1;
			continue;
		} else if (strcmp (argv[i], "-elf") == 0) {
			objformat_aout = 0;
			continue;
		}
	}

	/* if just looking, return now */
	if (!strip)
		return;

	/* otherwise, remove all traces of switches from argv */
	for (i = 1; i < *argc; i++) {
		if (strcmp (argv[i], "-aout") == 0 ||
		    strcmp (argv[i], "-elf") == 0) {
			/* copy NULL at end of argv as well */
			for (j = i + 1; j <= *argc; j++) {
				argv[j - 1] = argv[j];
			}
			(*argc)--;
		}
	}
}


#ifdef MAIN
int
main(int argc, char **argv)
{
	char *path, *chunk;
	char *postfix;
	char *cmd, *newcmd = NULL;
	char *objformat_path;
	int i;

	cmd = strrchr(argv[0], '/');
	if (cmd)
		cmd++;
	else
		cmd = argv[0];

	getobjfmt();
	scanargv(&argc, argv, 1);

	if (strcmp(cmd, "objformat") == 0) {
		if (objformat_aout)
			printf("aout\n");
		else
			printf("elf\n");
		exit(0);
	}

	/* 'make world' glue */
	objformat_path = getenv("OBJFORMAT_PATH");
	if (objformat_path == NULL)
		objformat_path = "/usr/libexec";
	path = strdup(objformat_path);

	if (objformat_aout) {
		putenv("OBJFORMAT=aout");
		postfix = "aout";
	} else {
		putenv("OBJFORMAT=elf");
		postfix = "elf";
	}

	while ((chunk = strsep(&path, ":")) != NULL) {
		if (newcmd != NULL) {
			free(newcmd);
			newcmd = NULL;
		}
		asprintf(&newcmd, "%s/%s/%s", chunk, postfix, cmd);
		if (newcmd == NULL)
			err(1, "cannot allocate memory for new command");

		if (getenv("OBJFORMAT_DEBUG") != NULL) {
			fprintf(stderr, "objformat: %s -> %s\n", cmd, newcmd);
#if 0
			for (i = 1; i < argc; i++) 
				fprintf(stderr, "argv[%d]: %s\n", i, argv[i]);
#endif
		}

		argv[0] = newcmd;
		execv(newcmd, argv);
	}
	err(1, "could not exec %s/%s in %s", postfix, cmd, objformat_path);
}

#endif
OpenPOWER on IntegriCloud