scripts: bundle-libraries: fix build on OS X (FS#1493)
[oweals/openwrt.git] / scripts / bundle-libraries.sh
1 #!/usr/bin/env bash
2 #
3 #   Script to install host system binaries along with required libraries.
4 #
5 #   Copyright (C) 2012-2017 Jo-Philipp Wich <jo@mein.io>
6 #
7 #   This program is free software; you can redistribute it and/or modify
8 #   it under the terms of the GNU General Public License as published by
9 #   the Free Software Foundation; either version 2 of the License, or
10 #   (at your option) any later version.
11 #
12 #   This program is distributed in the hope that it will be useful,
13 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #   GNU General Public License for more details.
16 #
17 #   You should have received a copy of the GNU General Public License
18 #   along with this program; if not, write to the Free Software
19 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 DIR="$1"; shift
22
23 _cp() {
24         cp ${VERBOSE:+-v} -L "$1" "$2" || {
25                 echo "cp($1 $2) failed" >&2
26                 exit 1
27         }
28 }
29
30 _mv() {
31         mv ${VERBOSE:+-v} "$1" "$2" || {
32                 echo "mv($1 $2) failed" >&2
33                 exit 1
34         }
35 }
36
37 _md() {
38         mkdir ${VERBOSE:+-v} -p "$1" || {
39                 echo "mkdir($1) failed" >&2
40                 exit 2
41         }
42 }
43
44 _ln() {
45         ln ${VERBOSE:+-v} -sf "$1" "$2" || {
46                 echo "ln($1 $2) failed" >&2
47                 exit 3
48         }
49 }
50
51 _relpath() {
52         local base="$(readlink -f "$1")"
53         local dest="$(readlink -f "$2")"
54         local up
55
56         [ -d "$base" ] || base="${base%/*}"
57         [ -d "$dest" ] || dest="${dest%/*}"
58
59         while true; do
60                 case "$base"
61                         in "$dest"/*)
62                                 echo "$up/${base#$dest/}"
63                                 break
64                         ;;
65                         *)
66                                 dest="${dest%/*}"
67                                 up="${up:+$up/}.."
68                         ;;
69                 esac
70         done
71 }
72
73 _runas_so() {
74         cat <<-EOT | ${CC:-gcc} -x c -fPIC -shared -o "$1" -
75                 #include <unistd.h>
76                 #include <stdio.h>
77                 #include <stdlib.h>
78
79                 int mangle_arg0(int argc, char **argv, char **env) {
80                         char *arg0 = getenv("RUNAS_ARG0");
81
82                         if (arg0) {
83                                 argv[0] = arg0;
84                                 unsetenv("RUNAS_ARG0");
85                         }
86
87                         return 0;
88                 }
89
90                 #ifdef __APPLE__
91                 __attribute__((section("__DATA,__mod_init_func")))
92                 #else
93                 __attribute__((section(".init_array")))
94                 #endif
95                 static void *mangle_arg0_constructor = &mangle_arg0;
96         EOT
97
98         [ -x "$1" ] || {
99                 echo "compiling preload library failed" >&2
100                 exit 5
101         }
102 }
103
104 _patch_ldso() {
105         _cp "$1" "$1.patched"
106         sed -i -e 's,/\(usr\|lib\|etc\)/,/###/,g' "$1.patched"
107
108         if "$1.patched" 2>&1 | grep -q -- --library-path; then
109                 _mv "$1.patched" "$1"
110         else
111                 echo "binary patched ${1##*/} not executable, using original" >&2
112                 rm -f "$1.patched"
113         fi
114 }
115
116 for LDD in ${PATH//://ldd }/ldd; do
117         "$LDD" --version >/dev/null 2>/dev/null && break
118         LDD=""
119 done
120
121 [ -n "$LDD" -a -x "$LDD" ] || LDD=
122
123 for BIN in "$@"; do
124         [ -n "$BIN" -a -n "$DIR" ] || {
125                 echo "Usage: $0 <destdir> <executable> ..." >&2
126                 exit 1
127         }
128
129         [ ! -d "$DIR/lib" ] && {
130                 _md "$DIR/lib"
131                 _md "$DIR/usr"
132                 _ln "../lib" "$DIR/usr/lib"
133         }
134
135         [ ! -x "$DIR/lib/runas.so" ] && {
136                 _runas_so "$DIR/lib/runas.so"
137         }
138
139         LDSO=""
140
141         [ -n "$LDD" ] && [ -x "$BIN" ] && file "$BIN" | grep -sqE "ELF.*(executable|interpreter)" && {
142                 for token in $("$LDD" "$BIN" 2>/dev/null); do
143                         case "$token" in */*.so*)
144                                 case "$token" in
145                                         *ld-*.so*) LDSO="${token##*/}" ;;
146                                 esac
147
148                                 dest="$DIR/lib/${token##*/}"
149                                 ddir="${dest%/*}"
150
151                                 [ -f "$token" -a ! -f "$dest" ] && {
152                                         _md "$ddir"
153                                         _cp "$token" "$dest"
154                                         [ -n "$LDSO" ] && _patch_ldso "$dest"
155                                 }
156                         ;; esac
157                 done
158         }
159
160         # is a dynamically linked executable
161         if [ -n "$LDSO" ]; then
162                 echo "Bundling ${BIN##*/}"
163
164                 RUNDIR="$(readlink -f "$BIN")"; RUNDIR="${RUNDIR%/*}"
165                 RUN="${LDSO#ld-}"; RUN="run-${RUN%%.so*}.sh"
166                 REL="$(_relpath "$DIR/lib" "$BIN")"
167
168                 _mv "$BIN" "$RUNDIR/.${BIN##*/}.bin"
169
170                 cat <<-EOF > "$BIN"
171                         #!/usr/bin/env bash
172                         dir="\$(dirname "\$0")"
173                         export RUNAS_ARG0="\$0"
174                         export LD_PRELOAD="\$dir/${REL:+$REL/}runas.so"
175                         exec "\$dir/${REL:+$REL/}$LDSO" --library-path "\$dir/${REL:+$REL/}" "\$dir/.${BIN##*/}.bin" "\$@"
176                 EOF
177
178                 chmod ${VERBOSE:+-v} 0755 "$BIN"
179         fi
180 done