]>
Commit | Line | Data |
---|---|---|
bac542e6 A |
1 | ## |
2 | # Copyright (c) 2006 Apple Computer, Inc. All rights reserved. | |
3 | # | |
4 | # @APPLE_LICENSE_HEADER_START@ | |
5 | # | |
6 | # This file contains Original Code and/or Modifications of Original Code | |
7 | # as defined in and that are subject to the Apple Public Source License | |
8 | # Version 2.0 (the 'License'). You may not use this file except in | |
9 | # compliance with the License. Please obtain a copy of the License at | |
10 | # http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | # file. | |
12 | # | |
13 | # The Original Code and all software distributed under the License are | |
14 | # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | # Please see the License for the specific language governing rights and | |
19 | # limitations under the License. | |
20 | # | |
21 | # @APPLE_LICENSE_HEADER_END@ | |
22 | ## | |
23 | TESTROOT = ../.. | |
24 | include ${TESTROOT}/include/common.makefile | |
25 | ||
26 | SHELL = bash # use bash shell so we can redirect just stderr | |
27 | ||
28 | ||
29 | # | |
30 | # Use of @exectuable_path in setuid binaries is not allowed | |
31 | # Use of @loader_path in setuid binaries is not allowed | |
32 | # Use of relative paths in setuid binaries is not allowed | |
33 | # | |
34 | ||
35 | run: all | |
36 | ./main_exe "setuid-executable_path" || echo "FAIL setuid-executable_path @executable_path not setuid" | |
37 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path @executable_path" "setuid-executable_path @executable_path" ./main_exe-suid "setuid-executable_path" | |
38 | ./main_loader "setuid-executable_path" || echo "FAIL setuid-executable_path @loader_path not setuid" | |
39 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path @loader_path" "setuid-executable_path @loader_path" ./main_loader-suid "setuid-executable_path" | |
40 | ./main_rel "setuid-executable_path" || echo "FAIL setuid-executable_path relative path not setuid" | |
41 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path relative path" "setuid-executable_path relative path" ./main_rel-suid "setuid-executable_path" | |
42 | ||
43 | ||
44 | ||
45 | all: main_exe main_exe-suid main_loader main_loader-suid main_rel main_rel-suid | |
46 | ||
47 | dir1/libfoo.dylib : foo.c | |
48 | mkdir -p dir1 | |
49 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o dir1/libfoo.dylib -install_name @executable_path/dir1/libfoo.dylib | |
50 | ||
51 | dir2/libbar.dylib : foo.c | |
52 | mkdir -p dir2 | |
53 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o dir2/libbar.dylib -install_name @loader_path/dir2/libbar.dylib | |
54 | ||
55 | dir3/libbaz.dylib : foo.c | |
56 | mkdir -p dir3 | |
57 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o ./dir3/libbaz.dylib | |
58 | ||
59 | main_exe: main.c dir1/libfoo.dylib | |
60 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_exe main.c dir1/libfoo.dylib | |
61 | cp main_exe main_exe-suid | |
62 | sudo chown root main_exe-suid | |
63 | sudo chmod 4755 main_exe-suid | |
64 | ||
65 | main_loader: main.c dir2/libbar.dylib | |
66 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_loader main.c dir2/libbar.dylib | |
67 | cp main_loader main_loader-suid | |
68 | sudo chown root main_loader-suid | |
69 | sudo chmod 4755 main_loader-suid | |
70 | ||
71 | main_rel: main.c dir3/libbaz.dylib | |
72 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_rel main.c dir3/libbaz.dylib | |
73 | cp main_rel main_rel-suid | |
74 | sudo chown root main_rel-suid | |
75 | sudo chmod 4755 main_rel-suid | |
76 | ||
77 | ||
78 | ||
79 | ||
80 | clean: | |
81 | ${RM} ${RMFLAGS} *~ main_exe main_exe-suid main_loader main_loader-suid main_rel main_rel-suid dir1 dir2 dir3 | |
82 |