aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ldd_utils.c
diff options
context:
space:
mode:
authorLibravatar startx2017 <vradu.startx@yandex.com>2018-03-12 08:41:01 -0400
committerLibravatar startx2017 <vradu.startx@yandex.com>2018-03-12 08:41:01 -0400
commit14b5746d8fba392c02733ce4c90befc32a93fb15 (patch)
tree2ac6a7de4adaafc730511a70f11b88aca1f47244 /src/lib/ldd_utils.c
parentfix bash on CentOS 7 (diff)
downloadfirejail-14b5746d8fba392c02733ce4c90befc32a93fb15.tar.gz
firejail-14b5746d8fba392c02733ce4c90befc32a93fb15.tar.zst
firejail-14b5746d8fba392c02733ce4c90befc32a93fb15.zip
private-lib bug: 32 bit libraries being copied instead of 64 bit versions; splitting common code for firejail and fldd in a common static library
Diffstat (limited to 'src/lib/ldd_utils.c')
-rw-r--r--src/lib/ldd_utils.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/lib/ldd_utils.c b/src/lib/ldd_utils.c
new file mode 100644
index 000000000..556fb02eb
--- /dev/null
+++ b/src/lib/ldd_utils.c
@@ -0,0 +1,62 @@
1/*
2 * Copyright (C) 2014-2018 Firejail Authors
3 *
4 * This file is part of firejail project
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/
20
21#include "../include/ldd_utils.h"
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <fcntl.h>
25
26const char * const default_lib_paths[] = {
27 "/lib",
28 "/lib/x86_64-linux-gnu",
29 "/lib64",
30 "/usr/lib",
31 "/usr/lib/x86_64-linux-gnu",
32 LIBDIR,
33 "/usr/local/lib",
34 "/usr/lib/x86_64-linux-gnu/mesa", // libGL.so is sometimes a symlink into this directory
35 "/usr/lib/x86_64-linux-gnu/mesa-egl", // libGL.so is sometimes a symlink into this directory
36// "/usr/lib/x86_64-linux-gnu/plasma-discover",
37 NULL
38};
39
40// return 1 if this is a 64 bit program/library
41int is_lib_64(const char *exe) {
42 int retval = 0;
43 int fd = open(exe, O_RDONLY);
44 if (fd < 0)
45 return 0;
46
47 unsigned char buf[EI_NIDENT];
48 ssize_t len = 0;
49 while (len < EI_NIDENT) {
50 ssize_t sz = read(fd, buf, EI_NIDENT);
51 if (sz <= 0)
52 goto doexit;
53 len += sz;
54 }
55
56 if (buf[EI_CLASS] == ELFCLASS64)
57 retval = 1;
58
59doexit:
60 close(fd);
61 return retval;
62}