]>
Commit | Line | Data |
---|---|---|
1 | ## | |
2 | # Copyright (c) 2005 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 | ### | |
27 | ### This test case is to verify that dyld cannot be tricked into loading | |
28 | ### the "same" library twice. | |
29 | ### | |
30 | ### The tricky scenario is: | |
31 | ### 1) a library dyld is to load is specified with a symlink path | |
32 | ### 2) the library the that is the target of the symlink is already loaded | |
33 | ### via a different path. In this case becuase of DYLD_LIBRARY_PATH. | |
34 | ### | |
35 | ### | |
36 | ### | |
37 | ### | |
38 | ||
39 | PWD = $(shell pwd) | |
40 | ||
41 | all-check: all check | |
42 | ||
43 | check: | |
44 | ./main | |
45 | export DYLD_LIBRARY_PATH="${PWD}/fake" && ./main | |
46 | ||
47 | ||
48 | all: main real/liblink.dylib real/libtest.dylib fake/libtest.dylib | |
49 | ||
50 | ||
51 | main: main.c stub/libtest.dylib stub/liblink.dylib real/libbase.dylib | |
52 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -o main main.c stub/libtest.dylib stub/liblink.dylib real/libbase.dylib | |
53 | ||
54 | stub/libtest.dylib: test.c | |
55 | mkdir -p stub | |
56 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib test.c -DDO_NOTHING -o stub/libtest.dylib -install_name "${PWD}/real/libtest.dylib" | |
57 | ||
58 | stub/liblink.dylib: link.c | |
59 | mkdir -p stub | |
60 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib link.c -o stub/liblink.dylib -install_name "${PWD}/real/liblink.dylib" | |
61 | ||
62 | ||
63 | real/libbase.dylib: base.c | |
64 | mkdir -p real | |
65 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib base.c -o "${PWD}/real/libbase.dylib" | |
66 | ||
67 | real/libtest.dylib: test.c real/libbase.dylib | |
68 | mkdir -p real | |
69 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib test.c real/libbase.dylib -o "${PWD}/real/libtest.dylib" | |
70 | ||
71 | real/liblink.dylib: link.c | |
72 | mkdir -p real | |
73 | cd real && ln -s libtest.dylib liblink.dylib | |
74 | ||
75 | ||
76 | fake/libtest.dylib: test.c real/libbase.dylib | |
77 | mkdir -p fake | |
78 | ${CC} ${CCFLAGS} -I${TESTROOT}/include -dynamiclib test.c real/libbase.dylib -o "${PWD}/fake/libtest.dylib" -install_name "${PWD}/real/libtest.dylib" | |
79 | ||
80 | ||
81 | ||
82 | ||
83 | clean: | |
84 | ${RM} ${RMFLAGS} *~ main real stub fake | |
85 |