1 /* Copyright © 2013, Intel Corporation
3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions:
10 * The above copyright notice and this permission notice shall be included in
11 * all copies or substantial portions of the Software.
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include <sys/types.h>
33 #include <linux/limits.h>
41 /* Terminate a string representing a filename at the final '/' to
42 * eliminate the final filename component, (leaving only the directory
43 * portions of the original path).
45 * Notes: A path containing no '/' character will not be modified.
46 * A path consisting only of "/" will not be modified.
49 chop_trailing_path_component (char *path)
53 slash = strrchr (path, '/');
64 /* Find the absolute path of the currently executing binary.
66 * Returns: a string talloc'ed to 'ctx'
69 get_bin_name (void *ctx)
71 const char *link = "/proc/self/exe";
74 /* Yes, PATH_MAX is cheesy. I would have preferred to have
75 * used lstat and read the resulting st_size, but everytime I
76 * did that with /proc/self/exe I got a value of 0, (whereas
77 * with a "real" symbolic link I make myself I get the length
78 * of the filename being linked to). Go figure. */
79 int name_len = PATH_MAX + 1;
81 name = talloc_size (ctx, name_len);
83 fprintf (stderr, "Out of memory.\n");
87 name_len = readlink (link, name, name_len - 1);
89 fprintf (stderr, "fips: Error: Failed to readlink %s: %s\n", link,
94 name[name_len] = '\0';
99 /* Does path exist? */
101 exists (const char *path)
106 err = stat (path, &st);
108 /* Failed to stat. It either doesn't exist, or might as well not. */
115 /* Given a program name, search the PATH environment variable and
116 * return the first absolute path to 'program'.
118 * Returns: A string talloc'ed to 'ctx'.
120 * Note: This function aborts the current program if 'program' cannot
121 * be located by searching PATH.
124 search_path_for_program (void *ctx, const char *program)
126 char *orig_path, *path, *colon, *dir, *candidate;
127 void *local = talloc_new (ctx);
129 /* If the program name already contains a slash, then this is
130 * an absolute (or relative) path. Either way, we don't search
131 * PATH, since we can directly open this filename. */
132 if (strchr (program, '/'))
133 return talloc_strdup (ctx, program);
135 orig_path = path = getenv ("PATH");
138 colon = strchr (path, ':');
141 dir = talloc_strndup (local, path, colon - path);
145 path = path + strlen (path);
148 candidate = talloc_asprintf(local, "%s/%s", dir, program);
150 if (exists (candidate)) {
151 talloc_steal (ctx, candidate);
155 talloc_free (candidate);
159 fprintf (stderr, "Cannot find program %s (looked in %s)\n",
164 /* Is the given elf program 32 or 64 bit?
166 * Note: This function aborts the current program if 'program' cannot
167 * be opened as a valid ELF file. */
169 elf_bits (const char *program)
174 void *local = talloc_new (NULL);
175 char *absolute_program = search_path_for_program (local, program);
177 fd = open (absolute_program, O_RDONLY, 0);
179 fprintf (stderr, "fips: Failed to open %s: %s\n", absolute_program,
184 if (elf_version (EV_CURRENT ) == EV_NONE) {
185 fprintf (stderr, "fips: Failed to initialize elf library: %s\n",
190 elf = elf_begin (fd, ELF_C_READ, NULL);
192 fprintf (stderr, "fips: Call to elf_begin on %s failed: %s\n",
193 absolute_program, elf_errmsg(-1));
197 if (elf_kind (elf) != ELF_K_ELF) {
198 fprintf (stderr, "fips: Not an ELF object: %s\n", absolute_program);
202 if (gelf_getehdr (elf, &ehdr) == NULL) {
203 fprintf (stderr, "fips: getehdr on %s failed: %s\n",
204 absolute_program, elf_errmsg (-1));
208 class = gelf_getclass (elf);
210 if (class == ELFCLASSNONE) {
211 fprintf (stderr, "fips: getclass on %s failed: %s\n",
212 absolute_program, elf_errmsg (-1));
218 if (class == ELFCLASS32)
225 /* Find the appropriate path to the libfips wrapper.
227 * This involves, first, examining the elf header of the 'program'
228 * binary to be executed to know whether we should look for
229 * libfips-32.so or libfips-64.so.
231 * Next, we find the absolute patch containing the library as follows:
233 * 1. Look in same directory as current executable image
235 * This is to support running from the source directory, without
236 * having installed anything.
238 * 2. Look in relative path from $(foo)/$(bindir) to
239 * $(foo)/$(libdir)/fips based on $(foo) from current executable
240 * image and configured $(bindir) and $(libdir).
242 * We do this rather than looking directly at the configured
243 * $(libdir) to support cases where the application may have been
244 * moved after being installed, (in particular, we want to be
245 * particularly careful not to mix one program with a different
246 * wrapper---so this "nearest search" should most often be
249 * Returns: a string talloc'ed to 'ctx'
252 find_libfips_path (void *ctx, const char *program)
254 char *bin_path, *library, *lib_path;
257 bits = elf_bits (program);
259 library = talloc_asprintf(ctx, "libfips-%d.so", bits);
261 bin_path = get_bin_name (ctx);
263 chop_trailing_path_component (bin_path);
265 lib_path = talloc_asprintf(ctx, "%s/%s", bin_path, library);
267 if (exists (lib_path))
270 talloc_free (lib_path);
272 lib_path = talloc_asprintf(ctx, "%s/" BINDIR_TO_LIBFIPSDIR "/%s",
275 if (exists (lib_path))
278 fprintf (stderr, "Error: Failed to find library %s.\n", library);
279 fprintf (stderr, "Looked in both:\n"
282 "\t%s/" BINDIR_TO_LIBFIPSDIR "\n", bin_path, bin_path);
284 fprintf(stderr, "\nIt's possible fips was not compiled with support for %d-bit applications.\n", bits);
285 fprintf(stderr, "Perhaps you need to install gcc-multilib and re-compile fips?\n");
290 execute_with_fips_preload (int argc, char * const argv[])
292 void *ctx = talloc_new (NULL);
294 char *ld_preload_value;
298 execvp_args = xmalloc((argc + 1) * sizeof(char *));
300 for (i = 0; i < argc; i++) {
301 execvp_args[i] = argv[i];
304 /* execvp needs final NULL */
305 execvp_args[i] = NULL;
307 lib_path = find_libfips_path (ctx, argv[0]);
309 ld_preload_value = getenv ("LD_PRELOAD");
311 if (ld_preload_value) {
312 ld_preload_value = talloc_asprintf(ctx, "%s:%s",
316 ld_preload_value = lib_path;
319 setenv ("LD_PRELOAD", ld_preload_value, 1);
323 execvp (argv[0], argv);
324 fprintf (stderr, "Failed to execute:");
325 for (i = 0; argv[i]; i++) {
326 fprintf (stderr, " %s", argv[i]);
328 fprintf (stderr, "\n");