ldconfig.c revision 1.12 1 1.1 pk /*
2 1.9 pk * Copyright (c) 1993,1995 Paul Kranenburg
3 1.1 pk * All rights reserved.
4 1.1 pk *
5 1.1 pk * Redistribution and use in source and binary forms, with or without
6 1.1 pk * modification, are permitted provided that the following conditions
7 1.1 pk * are met:
8 1.1 pk * 1. Redistributions of source code must retain the above copyright
9 1.1 pk * notice, this list of conditions and the following disclaimer.
10 1.1 pk * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 pk * notice, this list of conditions and the following disclaimer in the
12 1.1 pk * documentation and/or other materials provided with the distribution.
13 1.1 pk * 3. All advertising materials mentioning features or use of this software
14 1.1 pk * must display the following acknowledgement:
15 1.1 pk * This product includes software developed by Paul Kranenburg.
16 1.1 pk * 4. The name of the author may not be used to endorse or promote products
17 1.5 jtc * derived from this software without specific prior written permission
18 1.1 pk *
19 1.1 pk * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 1.1 pk * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 1.1 pk * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 1.1 pk * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 1.1 pk * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 1.1 pk * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 1.1 pk * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 1.1 pk * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 1.1 pk * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 1.1 pk * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 1.1 pk *
30 1.12 pk * $Id: ldconfig.c,v 1.12 1995/08/25 11:35:35 pk Exp $
31 1.1 pk */
32 1.1 pk
33 1.1 pk #include <sys/param.h>
34 1.1 pk #include <sys/types.h>
35 1.1 pk #include <sys/stat.h>
36 1.1 pk #include <sys/file.h>
37 1.1 pk #include <sys/time.h>
38 1.1 pk #include <sys/mman.h>
39 1.1 pk #include <sys/resource.h>
40 1.7 pk #include <dirent.h>
41 1.7 pk #include <errno.h>
42 1.1 pk #include <fcntl.h>
43 1.1 pk #include <ar.h>
44 1.1 pk #include <ranlib.h>
45 1.1 pk #include <a.out.h>
46 1.1 pk #include <stab.h>
47 1.7 pk #include <stdio.h>
48 1.7 pk #include <stdlib.h>
49 1.1 pk #include <string.h>
50 1.7 pk #include <unistd.h>
51 1.1 pk
52 1.1 pk #include "ld.h"
53 1.1 pk
54 1.1 pk #undef major
55 1.1 pk #undef minor
56 1.1 pk
57 1.8 pk extern char *__progname;
58 1.8 pk
59 1.1 pk static int verbose;
60 1.1 pk static int nostd;
61 1.1 pk static int justread;
62 1.9 pk static int merge;
63 1.1 pk
64 1.1 pk struct shlib_list {
65 1.1 pk /* Internal list of shared libraries found */
66 1.1 pk char *name;
67 1.1 pk char *path;
68 1.1 pk int dewey[MAXDEWEY];
69 1.1 pk int ndewey;
70 1.1 pk #define major dewey[0]
71 1.1 pk #define minor dewey[1]
72 1.1 pk struct shlib_list *next;
73 1.1 pk };
74 1.1 pk
75 1.1 pk static struct shlib_list *shlib_head = NULL, **shlib_tail = &shlib_head;
76 1.1 pk
77 1.1 pk static void enter __P((char *, char *, char *, int *, int));
78 1.3 pk static int dodir __P((char *, int));
79 1.9 pk static int buildhints __P((void));
80 1.9 pk static int readhints __P((void));
81 1.9 pk static void listhints __P((void));
82 1.1 pk
83 1.1 pk int
84 1.1 pk main(argc, argv)
85 1.1 pk int argc;
86 1.1 pk char *argv[];
87 1.1 pk {
88 1.1 pk int i, c;
89 1.1 pk int rval = 0;
90 1.1 pk
91 1.9 pk while ((c = getopt(argc, argv, "mrsv")) != EOF) {
92 1.1 pk switch (c) {
93 1.9 pk case 'm':
94 1.9 pk merge = 1;
95 1.9 pk break;
96 1.9 pk case 'r':
97 1.9 pk justread = 1;
98 1.1 pk break;
99 1.1 pk case 's':
100 1.1 pk nostd = 1;
101 1.1 pk break;
102 1.9 pk case 'v':
103 1.9 pk verbose = 1;
104 1.1 pk break;
105 1.1 pk default:
106 1.9 pk errx(1, "Usage: %s [-r][-s][-v][dir ...]",
107 1.8 pk __progname);
108 1.1 pk break;
109 1.1 pk }
110 1.1 pk }
111 1.1 pk
112 1.9 pk if (justread || merge) {
113 1.9 pk if ((rval = readhints()) != 0)
114 1.9 pk return rval;
115 1.9 pk if (justread) {
116 1.9 pk listhints();
117 1.9 pk return;
118 1.9 pk }
119 1.9 pk }
120 1.1 pk
121 1.9 pk if (!nostd && !merge)
122 1.7 pk std_search_path();
123 1.1 pk
124 1.1 pk for (i = 0; i < n_search_dirs; i++)
125 1.3 pk rval |= dodir(search_dirs[i], 1);
126 1.1 pk
127 1.1 pk for (i = optind; i < argc; i++)
128 1.3 pk rval |= dodir(argv[i], 0);
129 1.1 pk
130 1.9 pk rval |= buildhints();
131 1.1 pk
132 1.1 pk return rval;
133 1.1 pk }
134 1.1 pk
135 1.1 pk int
136 1.3 pk dodir(dir, silent)
137 1.1 pk char *dir;
138 1.3 pk int silent;
139 1.1 pk {
140 1.1 pk DIR *dd;
141 1.1 pk struct dirent *dp;
142 1.10 pk char name[MAXPATHLEN];
143 1.1 pk int dewey[MAXDEWEY], ndewey;
144 1.1 pk
145 1.1 pk if ((dd = opendir(dir)) == NULL) {
146 1.3 pk if (!silent || errno != ENOENT)
147 1.9 pk warn("%s", dir);
148 1.1 pk return -1;
149 1.1 pk }
150 1.1 pk
151 1.1 pk while ((dp = readdir(dd)) != NULL) {
152 1.10 pk register int n;
153 1.10 pk register char *cp;
154 1.1 pk
155 1.10 pk /* Check for `lib' prefix */
156 1.10 pk if (dp->d_name[0] != 'l' ||
157 1.10 pk dp->d_name[1] != 'i' ||
158 1.10 pk dp->d_name[2] != 'b')
159 1.10 pk continue;
160 1.10 pk
161 1.10 pk /* Copy the entry minus prefix */
162 1.10 pk (void)strcpy(name, dp->d_name + 3);
163 1.10 pk n = strlen(name);
164 1.10 pk if (n < 4)
165 1.10 pk continue;
166 1.1 pk
167 1.10 pk /* Find ".so." in name */
168 1.10 pk for (cp = name + n - 4; cp > name; --cp) {
169 1.10 pk if (cp[0] == '.' &&
170 1.10 pk cp[1] == 's' &&
171 1.10 pk cp[2] == 'o' &&
172 1.10 pk cp[3] == '.')
173 1.10 pk break;
174 1.10 pk }
175 1.10 pk if (cp <= name)
176 1.10 pk continue;
177 1.1 pk
178 1.10 pk *cp = '\0';
179 1.10 pk if (!isdigit(*(cp+4)))
180 1.1 pk continue;
181 1.1 pk
182 1.10 pk bzero((caddr_t)dewey, sizeof(dewey));
183 1.10 pk ndewey = getdewey(dewey, cp + 4);
184 1.1 pk enter(dir, dp->d_name, name, dewey, ndewey);
185 1.1 pk }
186 1.1 pk
187 1.1 pk return 0;
188 1.1 pk }
189 1.1 pk
190 1.1 pk static void
191 1.1 pk enter(dir, file, name, dewey, ndewey)
192 1.1 pk char *dir, *file, *name;
193 1.1 pk int dewey[], ndewey;
194 1.1 pk {
195 1.1 pk struct shlib_list *shp;
196 1.1 pk
197 1.1 pk for (shp = shlib_head; shp; shp = shp->next) {
198 1.1 pk if (strcmp(name, shp->name) != 0 || major != shp->major)
199 1.1 pk continue;
200 1.1 pk
201 1.1 pk /* Name matches existing entry */
202 1.1 pk if (cmpndewey(dewey, ndewey, shp->dewey, shp->ndewey) > 0) {
203 1.1 pk
204 1.1 pk /* Update this entry with higher versioned lib */
205 1.1 pk if (verbose)
206 1.1 pk printf("Updating lib%s.%d.%d to %s/%s\n",
207 1.1 pk shp->name, shp->major, shp->minor,
208 1.1 pk dir, file);
209 1.1 pk
210 1.1 pk free(shp->name);
211 1.1 pk shp->name = strdup(name);
212 1.1 pk free(shp->path);
213 1.1 pk shp->path = concat(dir, "/", file);
214 1.1 pk bcopy(dewey, shp->dewey, sizeof(shp->dewey));
215 1.1 pk shp->ndewey = ndewey;
216 1.1 pk }
217 1.1 pk break;
218 1.1 pk }
219 1.1 pk
220 1.1 pk if (shp)
221 1.1 pk /* Name exists: older version or just updated */
222 1.1 pk return;
223 1.1 pk
224 1.1 pk /* Allocate new list element */
225 1.1 pk if (verbose)
226 1.1 pk printf("Adding %s/%s\n", dir, file);
227 1.1 pk
228 1.1 pk shp = (struct shlib_list *)xmalloc(sizeof *shp);
229 1.1 pk shp->name = strdup(name);
230 1.1 pk shp->path = concat(dir, "/", file);
231 1.1 pk bcopy(dewey, shp->dewey, MAXDEWEY);
232 1.1 pk shp->ndewey = ndewey;
233 1.1 pk shp->next = NULL;
234 1.1 pk
235 1.1 pk *shlib_tail = shp;
236 1.1 pk shlib_tail = &shp->next;
237 1.1 pk }
238 1.1 pk
239 1.1 pk
240 1.1 pk #if DEBUG
241 1.1 pk /* test */
242 1.1 pk #undef _PATH_LD_HINTS
243 1.1 pk #define _PATH_LD_HINTS "./ld.so.hints"
244 1.1 pk #endif
245 1.1 pk
246 1.1 pk int
247 1.1 pk hinthash(cp, vmajor, vminor)
248 1.1 pk char *cp;
249 1.1 pk int vmajor, vminor;
250 1.1 pk {
251 1.1 pk int k = 0;
252 1.1 pk
253 1.1 pk while (*cp)
254 1.1 pk k = (((k << 1) + (k >> 14)) ^ (*cp++)) & 0x3fff;
255 1.1 pk
256 1.1 pk k = (((k << 1) + (k >> 14)) ^ (vmajor*257)) & 0x3fff;
257 1.1 pk k = (((k << 1) + (k >> 14)) ^ (vminor*167)) & 0x3fff;
258 1.1 pk
259 1.1 pk return k;
260 1.1 pk }
261 1.1 pk
262 1.1 pk int
263 1.9 pk buildhints()
264 1.1 pk {
265 1.1 pk struct hints_header hdr;
266 1.1 pk struct hints_bucket *blist;
267 1.1 pk struct shlib_list *shp;
268 1.1 pk char *strtab;
269 1.1 pk int i, n, str_index = 0;
270 1.1 pk int strtab_sz = 0; /* Total length of strings */
271 1.1 pk int nhints = 0; /* Total number of hints */
272 1.1 pk int fd;
273 1.1 pk char *tmpfile;
274 1.1 pk
275 1.1 pk for (shp = shlib_head; shp; shp = shp->next) {
276 1.1 pk strtab_sz += 1 + strlen(shp->name);
277 1.1 pk strtab_sz += 1 + strlen(shp->path);
278 1.1 pk nhints++;
279 1.1 pk }
280 1.1 pk
281 1.1 pk /* Fill hints file header */
282 1.1 pk hdr.hh_magic = HH_MAGIC;
283 1.1 pk hdr.hh_version = LD_HINTS_VERSION_1;
284 1.1 pk hdr.hh_nbucket = 1 * nhints;
285 1.1 pk n = hdr.hh_nbucket * sizeof(struct hints_bucket);
286 1.1 pk hdr.hh_hashtab = sizeof(struct hints_header);
287 1.1 pk hdr.hh_strtab = hdr.hh_hashtab + n;
288 1.1 pk hdr.hh_strtab_sz = strtab_sz;
289 1.1 pk hdr.hh_ehints = hdr.hh_strtab + hdr.hh_strtab_sz;
290 1.1 pk
291 1.1 pk if (verbose)
292 1.1 pk printf("Totals: entries %d, buckets %d, string size %d\n",
293 1.1 pk nhints, hdr.hh_nbucket, strtab_sz);
294 1.1 pk
295 1.1 pk /* Allocate buckets and string table */
296 1.1 pk blist = (struct hints_bucket *)xmalloc(n);
297 1.1 pk bzero((char *)blist, n);
298 1.1 pk for (i = 0; i < hdr.hh_nbucket; i++)
299 1.1 pk /* Empty all buckets */
300 1.1 pk blist[i].hi_next = -1;
301 1.1 pk
302 1.1 pk strtab = (char *)xmalloc(strtab_sz);
303 1.1 pk
304 1.1 pk /* Enter all */
305 1.1 pk for (shp = shlib_head; shp; shp = shp->next) {
306 1.1 pk struct hints_bucket *bp;
307 1.1 pk
308 1.1 pk bp = blist +
309 1.1 pk (hinthash(shp->name, shp->major, shp->minor) % hdr.hh_nbucket);
310 1.1 pk
311 1.1 pk if (bp->hi_pathx) {
312 1.1 pk int i;
313 1.1 pk
314 1.1 pk for (i = 0; i < hdr.hh_nbucket; i++) {
315 1.1 pk if (blist[i].hi_pathx == 0)
316 1.1 pk break;
317 1.1 pk }
318 1.1 pk if (i == hdr.hh_nbucket) {
319 1.9 pk warnx("Bummer!");
320 1.1 pk return -1;
321 1.1 pk }
322 1.1 pk while (bp->hi_next != -1)
323 1.1 pk bp = &blist[bp->hi_next];
324 1.1 pk bp->hi_next = i;
325 1.1 pk bp = blist + i;
326 1.1 pk }
327 1.1 pk
328 1.1 pk /* Insert strings in string table */
329 1.1 pk bp->hi_namex = str_index;
330 1.1 pk strcpy(strtab + str_index, shp->name);
331 1.1 pk str_index += 1 + strlen(shp->name);
332 1.1 pk
333 1.1 pk bp->hi_pathx = str_index;
334 1.1 pk strcpy(strtab + str_index, shp->path);
335 1.1 pk str_index += 1 + strlen(shp->path);
336 1.1 pk
337 1.1 pk /* Copy versions */
338 1.1 pk bcopy(shp->dewey, bp->hi_dewey, sizeof(bp->hi_dewey));
339 1.1 pk bp->hi_ndewey = shp->ndewey;
340 1.1 pk }
341 1.1 pk
342 1.12 pk tmpfile = concat(_PATH_LD_HINTS, ".XXXXXX", "");
343 1.12 pk if ((tmpfile = mktemp(tmpfile)) == NULL) {
344 1.12 pk warn("%s", tmpfile);
345 1.12 pk return -1;
346 1.12 pk }
347 1.12 pk
348 1.12 pk umask(0); /* Create with exact permissions */
349 1.1 pk if ((fd = open(tmpfile, O_RDWR|O_CREAT|O_TRUNC, 0444)) == -1) {
350 1.9 pk warn("%s", _PATH_LD_HINTS);
351 1.1 pk return -1;
352 1.1 pk }
353 1.1 pk
354 1.4 pk if (write(fd, &hdr, sizeof(struct hints_header)) !=
355 1.12 pk sizeof(struct hints_header)) {
356 1.9 pk warn("%s", _PATH_LD_HINTS);
357 1.4 pk return -1;
358 1.4 pk }
359 1.4 pk if (write(fd, blist, hdr.hh_nbucket * sizeof(struct hints_bucket)) !=
360 1.12 pk hdr.hh_nbucket * sizeof(struct hints_bucket)) {
361 1.9 pk warn("%s", _PATH_LD_HINTS);
362 1.4 pk return -1;
363 1.4 pk }
364 1.4 pk if (write(fd, strtab, strtab_sz) != strtab_sz) {
365 1.9 pk warn("%s", _PATH_LD_HINTS);
366 1.4 pk return -1;
367 1.4 pk }
368 1.1 pk if (close(fd) != 0) {
369 1.9 pk warn("%s", _PATH_LD_HINTS);
370 1.1 pk return -1;
371 1.1 pk }
372 1.1 pk
373 1.4 pk /* Install it */
374 1.1 pk if (unlink(_PATH_LD_HINTS) != 0 && errno != ENOENT) {
375 1.9 pk warn("%s", _PATH_LD_HINTS);
376 1.1 pk return -1;
377 1.1 pk }
378 1.1 pk
379 1.1 pk if (rename(tmpfile, _PATH_LD_HINTS) != 0) {
380 1.9 pk warn("%s", _PATH_LD_HINTS);
381 1.1 pk return -1;
382 1.1 pk }
383 1.1 pk
384 1.1 pk return 0;
385 1.1 pk }
386 1.1 pk
387 1.7 pk static int
388 1.9 pk readhints()
389 1.1 pk {
390 1.1 pk int fd;
391 1.1 pk caddr_t addr;
392 1.1 pk long msize;
393 1.1 pk struct hints_header *hdr;
394 1.1 pk struct hints_bucket *blist;
395 1.1 pk char *strtab;
396 1.9 pk struct shlib_list *shp;
397 1.1 pk int i;
398 1.1 pk
399 1.1 pk if ((fd = open(_PATH_LD_HINTS, O_RDONLY, 0)) == -1) {
400 1.9 pk warn("%s", _PATH_LD_HINTS);
401 1.1 pk return -1;
402 1.1 pk }
403 1.1 pk
404 1.1 pk msize = PAGSIZ;
405 1.6 cgd addr = mmap(0, msize, PROT_READ, MAP_COPY, fd, 0);
406 1.1 pk
407 1.1 pk if (addr == (caddr_t)-1) {
408 1.9 pk warn("%s", _PATH_LD_HINTS);
409 1.1 pk return -1;
410 1.1 pk }
411 1.1 pk
412 1.1 pk hdr = (struct hints_header *)addr;
413 1.1 pk if (HH_BADMAG(*hdr)) {
414 1.9 pk warnx("%s: Bad magic: %o",
415 1.7 pk _PATH_LD_HINTS, hdr->hh_magic);
416 1.1 pk return -1;
417 1.1 pk }
418 1.1 pk
419 1.1 pk if (hdr->hh_version != LD_HINTS_VERSION_1) {
420 1.9 pk warnx("Unsupported version: %d", hdr->hh_version);
421 1.1 pk return -1;
422 1.1 pk }
423 1.1 pk
424 1.1 pk if (hdr->hh_ehints > msize) {
425 1.1 pk if (mmap(addr+msize, hdr->hh_ehints - msize,
426 1.6 cgd PROT_READ, MAP_COPY|MAP_FIXED,
427 1.1 pk fd, msize) != (caddr_t)(addr+msize)) {
428 1.1 pk
429 1.9 pk warn("%s", _PATH_LD_HINTS);
430 1.1 pk return -1;
431 1.1 pk }
432 1.1 pk }
433 1.1 pk close(fd);
434 1.1 pk
435 1.1 pk blist = (struct hints_bucket *)(addr + hdr->hh_hashtab);
436 1.1 pk strtab = (char *)(addr + hdr->hh_strtab);
437 1.1 pk
438 1.1 pk for (i = 0; i < hdr->hh_nbucket; i++) {
439 1.1 pk struct hints_bucket *bp = &blist[i];
440 1.1 pk
441 1.1 pk /* Sanity check */
442 1.1 pk if (bp->hi_namex >= hdr->hh_strtab_sz) {
443 1.9 pk warnx("Bad name index: %#x", bp->hi_namex);
444 1.1 pk return -1;
445 1.1 pk }
446 1.1 pk if (bp->hi_pathx >= hdr->hh_strtab_sz) {
447 1.9 pk warnx("Bad path index: %#x", bp->hi_pathx);
448 1.1 pk return -1;
449 1.1 pk }
450 1.1 pk
451 1.9 pk /* Allocate new list element */
452 1.9 pk shp = (struct shlib_list *)xmalloc(sizeof *shp);
453 1.9 pk shp->name = strdup(strtab + bp->hi_namex);
454 1.9 pk shp->path = strdup(strtab + bp->hi_pathx);
455 1.9 pk bcopy(bp->hi_dewey, shp->dewey, sizeof(shp->dewey));
456 1.9 pk shp->ndewey = bp->hi_ndewey;
457 1.9 pk shp->next = NULL;
458 1.9 pk
459 1.9 pk *shlib_tail = shp;
460 1.9 pk shlib_tail = &shp->next;
461 1.1 pk }
462 1.1 pk
463 1.1 pk return 0;
464 1.1 pk }
465 1.1 pk
466 1.9 pk static void
467 1.9 pk listhints()
468 1.9 pk {
469 1.9 pk struct shlib_list *shp;
470 1.9 pk int i;
471 1.9 pk
472 1.9 pk printf("%s:\n", _PATH_LD_HINTS);
473 1.9 pk
474 1.9 pk for (i = 0, shp = shlib_head; shp; i++, shp = shp->next)
475 1.9 pk printf("\t%d:-l%s.%d.%d => %s\n",
476 1.9 pk i, shp->name, shp->major, shp->minor, shp->path);
477 1.9 pk
478 1.9 pk return;
479 1.9 pk }
480