]>
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 | ||
39a8cd10 A |
35 | all-check: all check |
36 | ||
37 | check: | |
bac542e6 A |
38 | ./main_exe "setuid-executable_path" || echo "FAIL setuid-executable_path @executable_path not setuid" |
39 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path @executable_path" "setuid-executable_path @executable_path" ./main_exe-suid "setuid-executable_path" | |
40 | ./main_loader "setuid-executable_path" || echo "FAIL setuid-executable_path @loader_path not setuid" | |
41 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path @loader_path" "setuid-executable_path @loader_path" ./main_loader-suid "setuid-executable_path" | |
42 | ./main_rel "setuid-executable_path" || echo "FAIL setuid-executable_path relative path not setuid" | |
43 | ${TESTROOT}/bin/exit-non-zero-pass.pl "setuid-executable_path relative path" "setuid-executable_path relative path" ./main_rel-suid "setuid-executable_path" | |
44 | ||
45 | ||
46 | ||
47 | all: main_exe main_exe-suid main_loader main_loader-suid main_rel main_rel-suid | |
48 | ||
49 | dir1/libfoo.dylib : foo.c | |
50 | mkdir -p dir1 | |
51 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o dir1/libfoo.dylib -install_name @executable_path/dir1/libfoo.dylib | |
52 | ||
53 | dir2/libbar.dylib : foo.c | |
54 | mkdir -p dir2 | |
55 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o dir2/libbar.dylib -install_name @loader_path/dir2/libbar.dylib | |
56 | ||
57 | dir3/libbaz.dylib : foo.c | |
58 | mkdir -p dir3 | |
59 | ${CC} ${CCFLAGS} foo.c -dynamiclib -o ./dir3/libbaz.dylib | |
60 | ||
61 | main_exe: main.c dir1/libfoo.dylib | |
62 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_exe main.c dir1/libfoo.dylib | |
63 | cp main_exe main_exe-suid | |
64 | sudo chown root main_exe-suid | |
65 | sudo chmod 4755 main_exe-suid | |
66 | ||
67 | main_loader: main.c dir2/libbar.dylib | |
68 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_loader main.c dir2/libbar.dylib | |
69 | cp main_loader main_loader-suid | |
70 | sudo chown root main_loader-suid | |
71 | sudo chmod 4755 main_loader-suid | |
72 | ||
73 | main_rel: main.c dir3/libbaz.dylib | |
74 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main_rel main.c dir3/libbaz.dylib | |
75 | cp main_rel main_rel-suid | |
76 | sudo chown root main_rel-suid | |
77 | sudo chmod 4755 main_rel-suid | |
78 | ||
79 | ||
80 | ||
81 | ||
82 | clean: | |
83 | ${RM} ${RMFLAGS} *~ main_exe main_exe-suid main_loader main_loader-suid main_rel main_rel-suid dir1 dir2 dir3 | |
84 |