2 * Copyright (c) 2005-2009 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
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
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.
21 * @APPLE_LICENSE_HEADER_END@
24 #include <mach-o/dyld.h>
25 #include <Availability.h>
27 #include "test.h" // PASS(), FAIL()
31 /// The point of this test case is to "load" a bundle once, but link it multiple times.
32 /// Each link creats a new instantiation of the bundle (e.g. new base address and new globals).
36 typedef void (*setter
)(int);
37 typedef int (*getter
)(void);
41 // NSCreateObjectFileImageFromMemory is only available on Mac OS X - not iPhone OS
42 #if __MAC_OS_X_VERSION_MIN_REQUIRED
43 NSObjectFileImage ofi
;
44 if ( NSCreateObjectFileImageFromFile("test.bundle", &ofi
) != NSObjectFileImageSuccess
) {
45 FAIL("NSCreateObjectFileImageFromFile failed");
49 NSModule mod
= NSLinkModule(ofi
, "test.bundle", NSLINKMODULE_OPTION_NONE
);
51 FAIL("NSLinkModule failed");
55 NSSymbol sym
= NSLookupSymbolInModule(mod
, "_setValue");
57 FAIL("NSLookupSymbolInModule failed");
61 setter func
= NSAddressOfSymbol(sym
);
63 //fprintf(stderr, "address of foo() = %p in bundle first load %p\n", func, mod);
66 NSModule mod2
= NSLinkModule(ofi
, "test2.bundle", NSLINKMODULE_OPTION_NONE
);
68 NSLinkEditErrors c
; int errorNumber
; const char* fileName
; const char* errorString
;
69 NSLinkEditError(&c
, &errorNumber
, &fileName
, &errorString
);
70 FAIL("2nd NSLinkModule failed: %s", errorString
);
74 FAIL("2nd NSLinkModule return same function address as first");
78 NSSymbol sym2getter
= NSLookupSymbolInModule(mod2
, "_getValue");
79 if ( sym2getter
== NULL
) {
80 FAIL("2nd NSLookupSymbolInModule failed");
83 getter func2getter
= NSAddressOfSymbol(sym2getter
);
84 if ( (*func2getter
)() != 0 ) {
85 FAIL("_getValue() on second link returned non-zero");
89 NSSymbol sym2
= NSLookupSymbolInModule(mod2
, "_setValue");
91 FAIL("2nd NSLookupSymbolInModule failed");
94 setter func2
= NSAddressOfSymbol(sym2
);
97 //fprintf(stderr, "address of foo() = %p in bundle second load %p\n", func2, mod2);
98 if ( func
== func2
) {
99 FAIL("2nd NSAddressOfSymbol return same function address as 1st");
104 NSModule mod3
= NSLinkModule(ofi
, "test3.bundle", NSLINKMODULE_OPTION_NONE
);
105 if ( mod3
== NULL
) {
106 FAIL("3rd NSLinkModule failed");
110 FAIL("3rd NSLinkModule return same function address as 1st");
113 if ( mod3
== mod2
) {
114 FAIL("3rd NSLinkModule return same function address as 2nd");
118 NSSymbol sym3
= NSLookupSymbolInModule(mod3
, "_setValue");
119 if ( sym3
== NULL
) {
120 FAIL("3rd NSLookupSymbolInModule failed");
123 setter func3
= NSAddressOfSymbol(sym3
);
125 //fprintf(stderr, "address of foo() = %p in bundle third load %p\n", func3, mod3);
126 if ( func3
== func
) {
127 FAIL("3rd NSAddressOfSymbol return same function address as 1st");
130 if ( func3
== func2
) {
131 FAIL("3rd NSAddressOfSymbol return same function address as 2nd");
135 if ( !NSUnLinkModule(mod
, NSUNLINKMODULE_OPTION_NONE
) ) {
136 FAIL("NSUnLinkModule failed");
140 if ( !NSUnLinkModule(mod3
, NSUNLINKMODULE_OPTION_NONE
) ) {
141 FAIL("3rd NSUnLinkModule failed");
145 if ( !NSUnLinkModule(mod2
, NSUNLINKMODULE_OPTION_NONE
) ) {
146 FAIL("2nd NSUnLinkModule failed");
150 // now link again after unlinking everything
151 NSModule mod4
= NSLinkModule(ofi
, "test4.bundle", NSLINKMODULE_OPTION_NONE
);
152 if ( mod4
== NULL
) {
153 FAIL("4th NSLinkModule failed");
157 // check that this is really a new copy by verifying the getValue() returns zero
158 NSSymbol sym4getter
= NSLookupSymbolInModule(mod4
, "_getValue");
159 if ( sym4getter
== NULL
) {
160 FAIL("4th NSLookupSymbolInModule failed");
163 getter func4getter
= NSAddressOfSymbol(sym4getter
);
164 if ( (*func4getter
)() != 0 ) {
165 FAIL("_getValue() on fourth link returned non-zero");
169 if ( !NSUnLinkModule(mod4
, NSUNLINKMODULE_OPTION_NONE
) ) {
170 FAIL("4th NSUnLinkModule failed");
175 if ( !NSDestroyObjectFileImage(ofi
) ) {
176 FAIL("NSDestroyObjectFileImage failed");
181 PASS("bundle-multi-link");