Initial import from FreeBSD RELENG_4:
[dragonfly.git] / lib / libc / gen / getobjformat.c
1 /*-
2  * Copyright (c) 1998 John D. Polstra
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/lib/libc/gen/getobjformat.c,v 1.3 1999/12/18 04:47:43 obrien Exp $
27  */
28
29 #include <sys/param.h>
30 #include <objformat.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34
35 #define PATH_OBJFORMAT  "/etc/objformat"
36
37 static int copyformat(char *, const char *, size_t);
38
39 static const char *known_formats[] = { OBJFORMAT_NAMES, NULL };
40
41 static int
42 copyformat(char *buf, const char *fmt, size_t bufsize)
43 {
44         size_t           len;
45
46         len = strlen(fmt);
47         if (len > bufsize - 1)
48                 return -1;
49         strcpy(buf, fmt);
50         return len;
51 }
52
53 int
54 getobjformat(char *buf, size_t bufsize, int *argcp, char **argv)
55 {
56         const char       *fmt;
57         char            **src, **dst;
58         const char       *env;
59         FILE             *fp;
60
61         fmt = NULL;
62
63         if (argv != NULL) {
64                 /* 
65                  * Scan for arguments setting known formats, e.g., "-elf".
66                  * If "argcp" is non-NULL, delete these arguments from the
67                  * list and update the argument count in "*argcp".
68                  */
69                 for (dst = src = argv;  *src != NULL;  src++) {
70                         if ((*src)[0] == '-') {
71                                 const char **p;
72
73                                 for (p = known_formats;  *p != NULL;  p++)
74                                         if (strcmp(*src + 1, *p) == 0)
75                                                 break;
76                                 if (*p != NULL) {
77                                         fmt = *p;
78                                         if (argcp == NULL)  /* Don't delete */
79                                                 *dst++ = *src;
80                                 } else
81                                         *dst++ = *src;
82                         } else
83                                 *dst++ = *src;
84                 }
85                 *dst = NULL;
86                 if (argcp != NULL)
87                         *argcp -= src - dst;
88                 if (fmt != NULL)
89                         return copyformat(buf, fmt, bufsize);
90         }
91
92         /* Check the OBJFORMAT environment variable. */
93         if ((env = getenv("OBJFORMAT")) != NULL)
94                 return copyformat(buf, env, bufsize);
95
96         /* Take a look at "/etc/objformat". */
97         if ((fp = fopen(PATH_OBJFORMAT, "r")) != NULL) {
98                 char line[1024];
99                 int found;
100                 int len;
101
102                 found = len = 0;
103                 while (fgets(line, sizeof line, fp) != NULL) {
104                         if (strncmp(line, "OBJFORMAT=", 10) == 0) {
105                                 char *p = &line[10];
106
107                                 p[strcspn(p, " \t\n")] = '\0';
108                                 len = copyformat(buf, p, bufsize);
109                                 found = 1;
110                         }
111                 }
112                 fclose(fp);
113                 if (found)
114                         return len;
115         }
116
117         /* As a last resort, use the compiled in default. */
118         return copyformat(buf, OBJFORMAT_DEFAULT, bufsize);
119 }