123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved.
- *
- * @APPLE_LICENSE_HEADER_START@
- *
- * This file contains Original Code and/or Modifications of Original Code
- * as defined in and that are subject to the Apple Public Source License
- * Version 2.0 (the 'License'). You may not use this file except in
- * compliance with the License. Please obtain a copy of the License at
- * http://www.opensource.apple.com/apsl/ and read it before using this
- * file.
- *
- * The Original Code and all software distributed under the License are
- * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- * Please see the License for the specific language governing rights and
- * limitations under the License.
- *
- * @APPLE_LICENSE_HEADER_END@
- */
- // Copyright 1988-1996 NeXT Software, Inc.
- #if !__OBJC2__
- #include "objc-private.h"
- #include "objc-runtime-old.h"
- #include "objc-file-old.h"
- #if TARGET_OS_WIN32
- /*
- Module
- _getObjcModules(const header_info *hi, size_t *nmodules)
- {
- if (nmodules) *nmodules = hi->moduleCount;
- return hi->modules;
- }
- */
- SEL *
- _getObjcSelectorRefs(const header_info *hi, size_t *nmess)
- {
- if (nmess) *nmess = hi->selrefCount;
- return hi->selrefs;
- }
- struct old_protocol **
- _getObjcProtocols(const header_info *hi, size_t *nprotos)
- {
- if (nprotos) *nprotos = hi->protocolCount;
- return hi->protocols;
- }
- Class*
- _getObjcClassRefs(const header_info *hi, size_t *nclasses)
- {
- if (nclasses) *nclasses = hi->clsrefCount;
- return (Class*)hi->clsrefs;
- }
- // __OBJC,__class_names section only emitted by CodeWarrior rdar://4951638
- const char *
- _getObjcClassNames(const header_info *hi, size_t *size)
- {
- if (size) *size = 0;
- return NULL;
- }
- #else
- #define GETSECT(name, type, segname, sectname) \
- type *name(const headerType *mhdr, size_t *outCount) \
- { \
- unsigned long byteCount = 0; \
- type *data = (type *) \
- getsectiondata(mhdr, segname, sectname, &byteCount); \
- *outCount = byteCount / sizeof(type); \
- return data; \
- } \
- type *name(const header_info *hi, size_t *outCount) \
- { \
- return name(hi->mhdr(), outCount); \
- }
- GETSECT(_getObjcModules, objc_module, "__OBJC", "__module_info");
- GETSECT(_getObjcSelectorRefs, SEL, "__OBJC", "__message_refs");
- GETSECT(_getObjcClassRefs, Class, "__OBJC", "__cls_refs");
- GETSECT(_getObjcClassNames, const char, "__OBJC", "__class_names");
- // __OBJC,__class_names section only emitted by CodeWarrior rdar://4951638
- GETSECT(getLibobjcInitializers, UnsignedInitializer, "__DATA", "__objc_init_func");
- objc_image_info *
- _getObjcImageInfo(const headerType *mhdr, size_t *outBytes)
- {
- unsigned long byteCount = 0;
- objc_image_info *info = (objc_image_info *)
- getsectiondata(mhdr, SEG_OBJC, "__image_info", &byteCount);
- *outBytes = byteCount;
- return info;
- }
- struct old_protocol **
- _getObjcProtocols(const header_info *hi, size_t *nprotos)
- {
- unsigned long size = 0;
- struct old_protocol *protos = (struct old_protocol *)
- getsectiondata(hi->mhdr(), SEG_OBJC, "__protocol", &size);
- *nprotos = size / sizeof(struct old_protocol);
-
- if (!hi->proto_refs && *nprotos) {
- size_t i;
- header_info *whi = (header_info *)hi;
- whi->proto_refs = (struct old_protocol **)
- malloc(*nprotos * sizeof(*hi->proto_refs));
- for (i = 0; i < *nprotos; i++) {
- hi->proto_refs[i] = protos+i;
- }
- }
-
- return hi->proto_refs;
- }
- static const segmentType *
- getsegbynamefromheader(const headerType *head, const char *segname)
- {
- const segmentType *sgp;
- unsigned long i;
-
- sgp = (const segmentType *) (head + 1);
- for (i = 0; i < head->ncmds; i++){
- if (sgp->cmd == SEGMENT_CMD) {
- if (strncmp(sgp->segname, segname, sizeof(sgp->segname)) == 0) {
- return sgp;
- }
- }
- sgp = (const segmentType *)((char *)sgp + sgp->cmdsize);
- }
- return NULL;
- }
- bool
- _hasObjcContents(const header_info *hi)
- {
- // Look for an __OBJC,* section other than __OBJC,__image_info
- const segmentType *seg = getsegbynamefromheader(hi->mhdr(), "__OBJC");
- const sectionType *sect;
- uint32_t i;
- for (i = 0; i < seg->nsects; i++) {
- sect = ((const sectionType *)(seg+1))+i;
- if (0 != strncmp(sect->sectname, "__image_info", 12)) {
- return YES;
- }
- }
- return NO;
- }
- #endif
- #endif
|