2 * Copyright (c) 2005 Apple Computer, 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>
26 #include "test.h" // PASS(), FAIL()
30 /// The point of this test case is to "load" a bundle once, but link it multiple times.
31 /// Each link creats a new instantiation of the bundle (e.g. new base address and new globals).
35 typedef void (*setter
)(int);
36 typedef int (*getter
)(void);
40 NSObjectFileImage ofi
;
41 if ( NSCreateObjectFileImageFromFile("test.bundle", &ofi
) != NSObjectFileImageSuccess
) {
42 FAIL("NSCreateObjectFileImageFromFile failed");
46 NSModule mod
= NSLinkModule(ofi
, "test.bundle", NSLINKMODULE_OPTION_NONE
);
48 FAIL("NSLinkModule failed");
52 NSSymbol sym
= NSLookupSymbolInModule(mod
, "_setValue");
54 FAIL("NSLookupSymbolInModule failed");
58 setter func
= NSAddressOfSymbol(sym
);
60 //fprintf(stderr, "address of foo() = %p in bundle first load %p\n", func, mod);
63 NSModule mod2
= NSLinkModule(ofi
, "test2.bundle", NSLINKMODULE_OPTION_NONE
);
65 NSLinkEditErrors c
; int errorNumber
; const char* fileName
; const char* errorString
;
66 NSLinkEditError(&c
, &errorNumber
, &fileName
, &errorString
);
67 FAIL("2nd NSLinkModule failed: %s", errorString
);
71 FAIL("2nd NSLinkModule return same function address as first");
75 NSSymbol sym2getter
= NSLookupSymbolInModule(mod2
, "_getValue");
76 if ( sym2getter
== NULL
) {
77 FAIL("2nd NSLookupSymbolInModule failed");
80 getter func2getter
= NSAddressOfSymbol(sym2getter
);
81 if ( (*func2getter
)() != 0 ) {
82 FAIL("_getValue() on second link returned non-zero");
86 NSSymbol sym2
= NSLookupSymbolInModule(mod2
, "_setValue");
88 FAIL("2nd NSLookupSymbolInModule failed");
91 setter func2
= NSAddressOfSymbol(sym2
);
94 //fprintf(stderr, "address of foo() = %p in bundle second load %p\n", func2, mod2);
95 if ( func
== func2
) {
96 FAIL("2nd NSAddressOfSymbol return same function address as 1st");
101 NSModule mod3
= NSLinkModule(ofi
, "test3.bundle", NSLINKMODULE_OPTION_NONE
);
102 if ( mod3
== NULL
) {
103 FAIL("3rd NSLinkModule failed");
107 FAIL("3rd NSLinkModule return same function address as 1st");
110 if ( mod3
== mod2
) {
111 FAIL("3rd NSLinkModule return same function address as 2nd");
115 NSSymbol sym3
= NSLookupSymbolInModule(mod3
, "_setValue");
116 if ( sym3
== NULL
) {
117 FAIL("3rd NSLookupSymbolInModule failed");
120 setter func3
= NSAddressOfSymbol(sym3
);
122 //fprintf(stderr, "address of foo() = %p in bundle third load %p\n", func3, mod3);
123 if ( func3
== func
) {
124 FAIL("3rd NSAddressOfSymbol return same function address as 1st");
127 if ( func3
== func2
) {
128 FAIL("3rd NSAddressOfSymbol return same function address as 2nd");
132 if ( !NSUnLinkModule(mod
, NSUNLINKMODULE_OPTION_NONE
) ) {
133 FAIL("NSUnLinkModule failed");
137 if ( !NSUnLinkModule(mod3
, NSUNLINKMODULE_OPTION_NONE
) ) {
138 FAIL("3rd NSUnLinkModule failed");
142 if ( !NSUnLinkModule(mod2
, NSUNLINKMODULE_OPTION_NONE
) ) {
143 FAIL("2nd NSUnLinkModule failed");
147 // now link again after unlinking everything
148 NSModule mod4
= NSLinkModule(ofi
, "test4.bundle", NSLINKMODULE_OPTION_NONE
);
149 if ( mod4
== NULL
) {
150 FAIL("4th NSLinkModule failed");
154 // check that this is really a new copy by verifying the getValue() returns zero
155 NSSymbol sym4getter
= NSLookupSymbolInModule(mod4
, "_getValue");
156 if ( sym4getter
== NULL
) {
157 FAIL("4th NSLookupSymbolInModule failed");
160 getter func4getter
= NSAddressOfSymbol(sym4getter
);
161 if ( (*func4getter
)() != 0 ) {
162 FAIL("_getValue() on fourth link returned non-zero");
166 if ( !NSUnLinkModule(mod4
, NSUNLINKMODULE_OPTION_NONE
) ) {
167 FAIL("4th NSUnLinkModule failed");
172 if ( !NSDestroyObjectFileImage(ofi
) ) {
173 FAIL("NSDestroyObjectFileImage failed");
177 PASS("bundle-multi-link");