]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/ldconfig/ldconfig.c
zfs: merge openzfs/zfs@6a6bd4939 (zfs-2.1-release) into stable/13
[FreeBSD/FreeBSD.git] / sbin / ldconfig / ldconfig.c
1 /*-
2  * SPDX-License-Identifier: BSD-4-Clause
3  *
4  * Copyright (c) 1993,1995 Paul Kranenburg
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. All advertising materials mentioning features or use of this software
16  *    must display the following acknowledgement:
17  *      This product includes software developed by Paul Kranenburg.
18  * 4. The name of the author may not be used to endorse or promote products
19  *    derived from this software without specific prior written permission
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <sys/param.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #include <sys/mman.h>
37 #include <a.out.h>
38 #include <ctype.h>
39 #include <dirent.h>
40 #include <elf-hints.h>
41 #include <err.h>
42 #include <errno.h>
43 #include <fcntl.h>
44 #include <stdbool.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <unistd.h>
49
50 #include "ldconfig.h"
51 #include "rtld_paths.h"
52
53 #define _PATH_ELFSOFT_HINTS     "/var/run/ld-elf-soft.so.hints"
54
55 static void usage(void);
56
57 int
58 main(int argc, char **argv)
59 {
60         const char *hints_file;
61         int c;
62         bool is_32, is_soft, justread, merge, rescan, verbose;
63
64         is_32 = is_soft = justread = merge = rescan = verbose = false;
65
66         while (argc > 1) {
67                 if (strcmp(argv[1], "-aout") == 0) {
68                         errx(1, "aout is not supported");
69                 } else if (strcmp(argv[1], "-elf") == 0) {
70                         argc--;
71                         argv++;
72                 } else if (strcmp(argv[1], "-32") == 0) {
73                         is_32 = true;
74                         argc--;
75                         argv++;
76                 } else if (strcmp(argv[1], "-soft") == 0) {
77                         is_soft = true;
78                         argc--;
79                         argv++;
80                 } else {
81                         break;
82                 }
83         }
84
85         if (is_soft)
86                 hints_file = _PATH_SOFT_ELF_HINTS;
87         else if (is_32)
88                 hints_file = _PATH_ELF32_HINTS;
89         else
90                 hints_file = _PATH_ELF_HINTS;
91         while((c = getopt(argc, argv, "Rf:imrsv")) != -1) {
92                 switch (c) {
93                 case 'R':
94                         rescan = true;
95                         break;
96                 case 'f':
97                         hints_file = optarg;
98                         break;
99                 case 'i':
100                         insecure = true;
101                         break;
102                 case 'm':
103                         merge = true;
104                         break;
105                 case 'r':
106                         justread = true;
107                         break;
108                 case 's':
109                         /* was nostd */
110                         break;
111                 case 'v':
112                         verbose = true;
113                         break;
114                 default:
115                         usage();
116                         break;
117                 }
118         }
119
120         if (justread) {
121                 list_elf_hints(hints_file);
122         } else {
123                 if (argc == optind)
124                         rescan = true;
125                 update_elf_hints(hints_file, argc - optind,
126                     argv + optind, merge || rescan);
127         }
128         exit(0);
129 }
130
131 static void
132 usage(void)
133 {
134         fprintf(stderr,
135             "usage: ldconfig [-32] [-elf] [-Rimrv] [-f hints_file] "
136             "[directory | file ...]\n");
137         exit(1);
138 }