2 * Copyright (c) 1998 John D. Polstra
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
26 * $FreeBSD: src/sbin/ldconfig/elfhints.c,v 1.3.2.3 2001/07/11 23:59:10 obrien Exp $
27 * $DragonFly: src/sbin/ldconfig/elfhints.c,v 1.2 2003/06/17 04:27:33 dillon Exp $
30 #include <sys/param.h>
36 #include <elf-hints.h>
47 #define MAXDIRS 1024 /* Maximum directories in path */
48 #define MAXFILESIZE (16*1024) /* Maximum hints file size */
50 static void add_dir(const char *, const char *, int);
51 static void read_dirs_from_file(const char *, const char *);
52 static void read_elf_hints(const char *, int);
53 static void write_elf_hints(const char *);
55 static const char *dirs
[MAXDIRS
];
60 add_dir(const char *hintsfile
, const char *name
, int trusted
)
65 /* Do some security checks */
66 if (!trusted
&& !insecure
) {
67 if (stat(name
, &stbuf
) == -1) {
71 if (stbuf
.st_uid
!= 0) {
72 warnx("%s: ignoring directory not owned by root", name
);
75 if ((stbuf
.st_mode
& S_IWOTH
) != 0) {
76 warnx("%s: ignoring world-writable directory", name
);
79 if ((stbuf
.st_mode
& S_IWGRP
) != 0) {
80 warnx("%s: ignoring group-writable directory", name
);
85 for (i
= 0; i
< ndirs
; i
++)
86 if (strcmp(dirs
[i
], name
) == 0)
89 errx(1, "\"%s\": Too many directories in path", hintsfile
);
94 list_elf_hints(const char *hintsfile
)
99 read_elf_hints(hintsfile
, 1);
100 printf("%s:\n", hintsfile
);
101 printf("\tsearch directories:");
102 for (i
= 0; i
< ndirs
; i
++)
103 printf("%c%s", i
== 0 ? ' ' : ':', dirs
[i
]);
107 for (i
= 0; i
< ndirs
; i
++) {
111 if ((dirp
= opendir(dirs
[i
])) == NULL
)
113 while ((dp
= readdir(dirp
)) != NULL
) {
119 /* Name can't be shorter than "libx.so.0" */
120 if ((len
= strlen(dp
->d_name
)) < 9 ||
121 strncmp(dp
->d_name
, "lib", 3) != 0)
123 name
= dp
->d_name
+ 3;
124 vers
= dp
->d_name
+ len
;
125 while (vers
> dp
->d_name
&& isdigit(*(vers
-1)))
127 if (vers
== dp
->d_name
+ len
)
129 if (vers
< dp
->d_name
+ 4 ||
130 strncmp(vers
- 4, ".so.", 4) != 0)
133 /* We have a valid shared library name. */
134 namelen
= (vers
- 4) - name
;
135 printf("\t%d:-l%.*s.%s => %s/%s\n", nlibs
,
136 namelen
, name
, vers
, dirs
[i
], dp
->d_name
);
144 read_dirs_from_file(const char *hintsfile
, const char *listfile
)
147 char buf
[MAXPATHLEN
];
150 if ((fp
= fopen(listfile
, "r")) == NULL
)
151 err(1, "%s", listfile
);
154 while (fgets(buf
, sizeof buf
, fp
) != NULL
) {
159 /* Skip leading white space. */
162 if (*cp
== '#' || *cp
== '\0')
165 /* Advance over the directory name. */
166 while (!isspace(*cp
) && *cp
!= '\0')
168 /* Terminate the string and skip trailing white space. */
174 /* Now we had better be at the end of the line. */
176 warnx("%s:%d: trailing characters ignored",
179 if ((sp
= strdup(sp
)) == NULL
)
180 errx(1, "Out of memory");
181 add_dir(hintsfile
, sp
, 0);
188 read_elf_hints(const char *hintsfile
, int must_exist
)
193 struct elfhints_hdr
*hdr
;
198 if ((fd
= open(hintsfile
, O_RDONLY
)) == -1) {
199 if (errno
== ENOENT
&& !must_exist
)
201 err(1, "Cannot open \"%s\"", hintsfile
);
203 if (fstat(fd
, &s
) == -1)
204 err(1, "Cannot stat \"%s\"", hintsfile
);
205 if (s
.st_size
> MAXFILESIZE
)
206 errx(1, "\"%s\" is unreasonably large", hintsfile
);
208 * We use a read-write, private mapping so that we can null-terminate
209 * some strings in it without affecting the underlying file.
211 mapbase
= mmap(NULL
, s
.st_size
, PROT_READ
|PROT_WRITE
,
213 if (mapbase
== MAP_FAILED
)
214 err(1, "Cannot mmap \"%s\"", hintsfile
);
217 hdr
= (struct elfhints_hdr
*)mapbase
;
218 if (hdr
->magic
!= ELFHINTS_MAGIC
)
219 errx(1, "\"%s\": invalid file format", hintsfile
);
220 if (hdr
->version
!= 1)
221 errx(1, "\"%s\": unrecognized file version (%d)", hintsfile
,
224 strtab
= (char *)mapbase
+ hdr
->strtab
;
225 dirlist
= strtab
+ hdr
->dirlist
;
227 if (*dirlist
!= '\0')
228 while ((p
= strsep(&dirlist
, ":")) != NULL
)
229 add_dir(hintsfile
, p
, 1);
233 update_elf_hints(const char *hintsfile
, int argc
, char **argv
, int merge
)
238 read_elf_hints(hintsfile
, 0);
239 for (i
= 0; i
< argc
; i
++) {
242 if (stat(argv
[i
], &s
) == -1)
243 warn("warning: %s", argv
[i
]);
244 else if (S_ISREG(s
.st_mode
))
245 read_dirs_from_file(hintsfile
, argv
[i
]);
247 add_dir(hintsfile
, argv
[i
], 0);
249 write_elf_hints(hintsfile
);
253 write_elf_hints(const char *hintsfile
)
255 struct elfhints_hdr hdr
;
261 if (asprintf(&tempname
, "%s.XXXXXX", hintsfile
) == -1)
262 errx(1, "Out of memory");
263 if ((fd
= mkstemp(tempname
)) == -1)
264 err(1, "mkstemp(%s)", tempname
);
265 if (fchmod(fd
, 0444) == -1)
266 err(1, "fchmod(%s)", tempname
);
267 if ((fp
= fdopen(fd
, "wb")) == NULL
)
268 err(1, "fdopen(%s)", tempname
);
270 hdr
.magic
= ELFHINTS_MAGIC
;
272 hdr
.strtab
= sizeof hdr
;
275 memset(hdr
.spare
, 0, sizeof hdr
.spare
);
277 /* Count up the size of the string table. */
279 hdr
.strsize
+= strlen(dirs
[0]);
280 for (i
= 1; i
< ndirs
; i
++)
281 hdr
.strsize
+= 1 + strlen(dirs
[i
]);
283 hdr
.dirlistlen
= hdr
.strsize
;
284 hdr
.strsize
++; /* For the null terminator */
286 /* Write the header. */
287 if (fwrite(&hdr
, 1, sizeof hdr
, fp
) != sizeof hdr
)
288 err(1, "%s: write error", tempname
);
289 /* Write the strings. */
291 if (fputs(dirs
[0], fp
) == EOF
)
292 err(1, "%s: write error", tempname
);
293 for (i
= 1; i
< ndirs
; i
++)
294 if (fprintf(fp
, ":%s", dirs
[i
]) < 0)
295 err(1, "%s: write error", tempname
);
297 if (putc('\0', fp
) == EOF
|| fclose(fp
) == EOF
)
298 err(1, "%s: write error", tempname
);
300 if (rename(tempname
, hintsfile
) == -1)
301 err(1, "rename %s to %s", tempname
, hintsfile
);