-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathremap.sh
executable file
·56 lines (47 loc) · 1.32 KB
/
remap.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash
WORKINGDIR=$1
SRCDIR=$2
CCLINE=$3
UNIQ=$4
cat <<EOF | $CCLINE -I $SRCDIR -shared -DWORKINGDIR=\"$WORKINGDIR\" -DUNIQ=\"$UNIQ\" -o $WORKINGDIR/libremap$UNIQ.so -fPIC -x c -
#define REMAP_CONF_TEST
#define debug_printf printf
#define debug_printf2 printf
#define debug_printf3 printf
#define err_printf printf
#define spindle_free free
#define test_log(X)
#define MAX_PATH_LEN 4096
#include <string.h>
void get_relocated_file(int ldcs_id, char *orig_exec, int dso, char **reloc_exec, int *errcode)
{
*reloc_exec = strdup(WORKINGDIR "/remap2" UNIQ);
*errcode = 0;
}
#include "src/client/client/remap_exec.c"
int dowork()
{
char buffer[4097];
memset(buffer, 0, 4096);
remap_executable(0);
if (readlink("/proc/self/exe", buffer, 4096) == -1)
return -1;
if (strstr(buffer, "remap2"))
return -1;
return 0;
}
EOF
echo $CCLINE -o $WORKINGDIR/remap$UNIQ -L$WORKINGDIR -lremap$UNIQ -Wl,-rpath,$WORKINGDIR -x c -
cat <<EOF | $CCLINE -o $WORKINGDIR/remap$UNIQ -L$WORKINGDIR -x c - -lremap$UNIQ -Wl,-rpath,$WORKINGDIR
extern int dowork();
int data = 5;
int main(int argc, char *argv[])
{
return dowork();
}
EOF
cp $WORKINGDIR/remap$UNIQ $WORKINGDIR/remap2$UNIQ
$WORKINGDIR/remap$UNIQ > /dev/null
RETVAL=$?
#rm -f $WORKINGDIR/remap$UNIQ $WORKINGDIR/remap2$UNIQ $WORKINGDIR/libremap$UNIQ.so
exit $RETVAL