-
Notifications
You must be signed in to change notification settings - Fork 0
/
markgc.c
451 lines (417 loc) · 14.8 KB
/
markgc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/*
* Copyright (c) 2007-2009, 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@
*/
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#import <stdio.h>
#include <fcntl.h>
#import <sys/stat.h>
#import <mach-o/fat.h>
#import <mach-o/arch.h>
#import <mach-o/loader.h>
typedef char bool;
#define true 1
#define false 0
bool debug;
bool verbose;
bool quiet;
bool rrOnly;
bool patch = true;
struct gcinfo {
bool hasObjC;
bool hasInfo;
uint32_t flags;
char *arch;
} GCInfo[4];
void dumpinfo(char *filename);
int Errors = 0;
char *FileBase;
size_t FileSize;
const char *FileName;
int main(int argc, char *argv[]) {
//NSAutoreleasePool *pool = [NSAutoreleasePool new];
int i;
//dumpinfo("/System/Library/Frameworks/AppKit.framework/AppKit");
if (argc == 1) {
printf("Usage: gcinfo [-v] [-r] [--] library_or_executable_image [image2 ...]\n");
printf(" prints Garbage Collection readiness of named images, ignoring those without ObjC segments\n");
printf(" 'GC' - compiled with write-barriers, presumably otherwise aware\n");
printf(" 'RR' - retain/release (presumed) aware for non-GC\n");
printf(" 'GC-only' - compiled with write-barriers and marked at compile time as not being retain/release savvy\n");
printf(" -v - provide archtectural details\n");
printf(" -r - only show libraries that are non-GC, e.g. RR only\n");
printf(" -- - read files & directories from stdin, e.g. find /Plug-ins | gcinfo --\n");
printf("\nAuthor: [email protected]\n");
exit(0);
}
for (i = 1; i < argc; ++i) {
if (!strcmp(argv[i], "-v")) {
verbose = true;
continue;
}
if (!strcmp(argv[i], "-d")) {
debug = true;
continue;
}
if (!strcmp(argv[i], "-q")) {
quiet = true;
continue;
}
if (!strcmp(argv[i], "-r")) {
quiet = true;
rrOnly = true;
continue;
}
if (!strcmp(argv[i], "-p")) {
patch = true;
continue;
}
if (!strcmp(argv[i], "--")) {
char buf[1024];
while (fgets(buf, 1024, stdin)) {
int len = strlen(buf);
buf[len-1] = 0;
dumpinfo(buf);
}
continue;
}
dumpinfo(argv[i]);
}
return Errors;
}
struct imageInfo {
uint32_t version;
uint32_t flags;
};
void patchFile(uint32_t value, size_t offset) {
int fd = open(FileName, 1);
off_t lresult = lseek(fd, offset, SEEK_SET);
if (lresult == -1) {
printf("couldn't seek to %x position on fd %d\n", offset, fd);
++Errors;
return;
}
int wresult = write(fd, &value, 4);
if (wresult != 4) {
++Errors;
printf("didn't write new value\n");
}
else {
printf("patched %s at offset %p\n", FileName, offset);
}
close(fd);
}
uint32_t iiflags(struct imageInfo *ii, uint32_t size, bool needsFlip) {
if (needsFlip) {
ii->flags = OSSwapInt32(ii->flags);
}
if (debug) printf("flags->%x, nitems %d\n", ii->flags, size/sizeof(struct imageInfo));
uint32_t flags = ii->flags;
if (patch && (flags&0x2)==0) {
//printf("will patch %s at offset %p\n", FileName, (char*)(&ii->flags) - FileBase);
uint32_t newvalue = flags | 0x2;
if (needsFlip) newvalue = OSSwapInt32(newvalue);
patchFile(newvalue, (char*)(&ii->flags) - FileBase);
}
for(int niis = 1; niis < size/sizeof(struct imageInfo); ++niis) {
if (needsFlip) ii[niis].flags = OSSwapInt32(ii[niis].flags);
if (ii[niis].flags != flags) {
// uh, oh.
printf("XXX ii[%d].flags %x != ii[0].flags %x\n", niis, ii[niis].flags, flags);
++Errors;
}
}
return flags;
}
void printflags(uint32_t flags) {
if (flags & 0x1) printf(" F&C");
if (flags & 0x2) printf(" GC");
if (flags & 0x4) printf(" GC-only");
else printf(" RR");
}
/*
void doimageinfo(struct imageInfo *ii, uint32_t size, bool needsFlip) {
uint32_t flags = iiflags(ii, size, needsFlip);
printflags(flags);
}
*/
void dosect32(void *start, struct section *sect, bool needsFlip, struct gcinfo *gcip) {
if (debug) printf("section %s from segment %s\n", sect->sectname, sect->segname);
if (strcmp(sect->segname, "__OBJC")) return;
gcip->hasObjC = true;
if (strcmp(sect->sectname, "__image_info")) return;
gcip->hasInfo = true;
if (needsFlip) {
sect->offset = OSSwapInt32(sect->offset);
sect->size = OSSwapInt32(sect->size);
}
// these guys aren't inline - they point elsewhere
gcip->flags = iiflags(start + sect->offset, sect->size, needsFlip);
}
void dosect64(void *start, struct section_64 *sect, bool needsFlip, struct gcinfo *gcip) {
if (debug) printf("section %s from segment %s\n", sect->sectname, sect->segname);
if (strcmp(sect->segname, "__OBJC") && strcmp(sect->segname, "__DATA")) return;
if (strcmp(sect->sectname, "__image_info") && strncmp(sect->sectname, "__objc_imageinfo", 16)) return;
gcip->hasObjC = true;
gcip->hasInfo = true;
if (needsFlip) {
sect->offset = OSSwapInt32(sect->offset);
sect->size = OSSwapInt64(sect->size);
}
// these guys aren't inline - they point elsewhere
gcip->flags = iiflags(start + sect->offset, sect->size, needsFlip);
}
void doseg32(void *start, struct segment_command *seg, bool needsFlip, struct gcinfo *gcip) {
// lets do sections
if (needsFlip) {
seg->fileoff = OSSwapInt32(seg->fileoff);
seg->nsects = OSSwapInt32(seg->nsects);
}
if (debug) printf("segment name: %s, nsects %d\n", seg->segname, seg->nsects);
if (seg->segname[0]) {
if (strcmp("__OBJC", seg->segname)) return;
}
int nsects;
struct section *sect = (struct section *)(seg + 1);
for (int nsects = 0; nsects < seg->nsects; ++nsects) {
// sections directly follow
dosect32(start, sect + nsects, needsFlip, gcip);
}
}
void doseg64(void *start, struct segment_command_64 *seg, bool needsFlip, struct gcinfo *gcip) {
if (debug) printf("segment name: %s\n", seg->segname);
if (seg->segname[0] && strcmp("__OBJC", seg->segname) && strcmp("__DATA", seg->segname)) return;
gcip->hasObjC = true;
// lets do sections
if (needsFlip) {
seg->fileoff = OSSwapInt64(seg->fileoff);
seg->nsects = OSSwapInt32(seg->nsects);
}
int nsects;
struct section_64 *sect = (struct section_64 *)(seg + 1);
for (int nsects = 0; nsects < seg->nsects; ++nsects) {
// sections directly follow
dosect64(start, sect + nsects, needsFlip, gcip);
}
}
#if 0
/*
* A variable length string in a load command is represented by an lc_str
* union. The strings are stored just after the load command structure and
* the offset is from the start of the load command structure. The size
* of the string is reflected in the cmdsize field of the load command.
* Once again any padded bytes to bring the cmdsize field to a multiple
* of 4 bytes must be zero.
*/
union lc_str {
uint32_t offset; /* offset to the string */
#ifndef __LP64__
char *ptr; /* pointer to the string */
#endif
};
struct dylib {
union lc_str name; /* library's path name */
uint32_t timestamp; /* library's build time stamp */
uint32_t current_version; /* library's current version number */
uint32_t compatibility_version; /* library's compatibility vers number*/
};
* A dynamically linked shared library (filetype == MH_DYLIB in the mach header)
* contains a dylib_command (cmd == LC_ID_DYLIB) to identify the library.
* An object that uses a dynamically linked shared library also contains a
* dylib_command (cmd == LC_LOAD_DYLIB, LC_LOAD_WEAK_DYLIB, or
* LC_REEXPORT_DYLIB) for each library it uses.
struct dylib_command {
uint32_t cmd; /* LC_ID_DYLIB, LC_LOAD_{,WEAK_}DYLIB,
LC_REEXPORT_DYLIB */
uint32_t cmdsize; /* includes pathname string */
struct dylib dylib; /* the library identification */
};
#endif
void dodylib(void *start, struct dylib_command *dylibCmd, bool needsFlip) {
if (!verbose) return;
if (needsFlip) {
}
int count = dylibCmd->cmdsize - sizeof(struct dylib_command);
//printf("offset is %d, count is %d\n", dylibCmd->dylib.name.offset, count);
if (dylibCmd->dylib.name.offset > count) return;
//printf("-->%.*s<---", count, ((void *)dylibCmd)+dylibCmd->dylib.name.offset);
if (verbose) printf("load %s\n", ((void *)dylibCmd)+dylibCmd->dylib.name.offset);
}
struct load_command *doloadcommand(void *start, struct load_command *lc, bool needsFlip, bool is32, struct gcinfo *gcip) {
if (needsFlip) {
lc->cmd = OSSwapInt32(lc->cmd);
lc->cmdsize = OSSwapInt32(lc->cmdsize);
}
switch(lc->cmd) {
case LC_SEGMENT_64:
if (debug) printf("...segment64\n");
if (is32) printf("XXX we have a 64-bit segment in a 32-bit mach-o\n");
doseg64(start, (struct segment_command_64 *)lc, needsFlip, gcip);
break;
case LC_SEGMENT:
if (debug) printf("...segment32\n");
doseg32(start, (struct segment_command *)lc, needsFlip, gcip);
break;
case LC_SYMTAB: if (debug) printf("...dynamic symtab\n"); break;
case LC_DYSYMTAB: if (debug) printf("...symtab\n"); break;
case LC_LOAD_DYLIB:
dodylib(start, (struct dylib_command *)lc, needsFlip);
break;
case LC_SUB_UMBRELLA: if (debug) printf("...load subumbrella\n"); break;
default: if (debug) printf("cmd is %x\n", lc->cmd); break;
}
return (struct load_command *)((void *)lc + lc->cmdsize);
}
void doofile(void *start, uint32_t size, struct gcinfo *gcip) {
struct mach_header *mh = (struct mach_header *)start;
bool isFlipped = false;
if (mh->magic == MH_CIGAM || mh->magic == MH_CIGAM_64) {
if (debug) printf("(flipping)\n");
mh->magic = OSSwapInt32(mh->magic);
mh->cputype = OSSwapInt32(mh->cputype);
mh->cpusubtype = OSSwapInt32(mh->cpusubtype);
mh->filetype = OSSwapInt32(mh->filetype);
mh->ncmds = OSSwapInt32(mh->ncmds);
mh->sizeofcmds = OSSwapInt32(mh->sizeofcmds);
mh->flags = OSSwapInt32(mh->flags);
isFlipped = true;
}
if (rrOnly && mh->filetype != 6) return; // ignore executables
NXArchInfo *info = (NXArchInfo *)NXGetArchInfoFromCpuType(mh->cputype, mh->cpusubtype);
//printf("%s:", info->description);
gcip->arch = (char *)info->description;
//if (debug) printf("...description is %s\n", info->description);
bool is32 = (mh->cputype == 18 || mh->cputype == 7);
if (debug) printf("is 32? %d\n", is32);
if (debug) printf("filetype -> %d\n", mh->filetype);
if (debug) printf("ncmds -> %d\n", mh->ncmds);
struct load_command *lc = (is32 ? (struct load_command *)(mh + 1) : (struct load_command *)((struct mach_header_64 *)start + 1));
int ncmds;
for (ncmds = 0; ncmds < mh->ncmds; ++ncmds) {
lc = doloadcommand(start, lc, isFlipped, is32, gcip);
}
//printf("\n");
}
void initGCInfo() {
bzero((void *)GCInfo, sizeof(GCInfo));
}
void printGCInfo(char *filename) {
if (!GCInfo[0].hasObjC) return; // don't bother
// verify that flags are all the same
uint32_t flags = GCInfo[0].flags;
bool allSame = true;
for (int i = 1; i < 4 && GCInfo[i].arch; ++i) {
if (flags != GCInfo[i].flags) {
allSame = false;
}
}
if (rrOnly) {
if (allSame && (flags & 0x2))
return;
printf("*** not all GC in %s:\n", filename);
}
if (allSame && !verbose) {
printf("%s:", filename);
printflags(flags);
printf("\n");
}
else {
printf("%s:\n", filename);
for (int i = 0; i < 4 && GCInfo[i].arch; ++i) {
printf("%s:", GCInfo[i].arch);
printflags(GCInfo[i].flags);
printf("\n");
}
printf("\n");
}
}
void dofat(void *start) {
struct fat_header *fh = start;
bool needsFlip = false;
if (fh->magic == FAT_CIGAM) {
fh->nfat_arch = OSSwapInt32(fh->nfat_arch);
needsFlip = true;
}
if (debug) printf("%d architectures\n", fh->nfat_arch);
int narchs;
struct fat_arch *arch_ptr = (struct fat_arch *)(fh + 1);
for (narchs = 0; narchs < fh->nfat_arch; ++narchs) {
if (needsFlip) {
arch_ptr->offset = OSSwapInt32(arch_ptr->offset);
arch_ptr->size = OSSwapInt32(arch_ptr->size);
}
doofile(start+arch_ptr->offset, arch_ptr->size, &GCInfo[narchs]);
arch_ptr++;
}
}
bool openFile(const char *filename) {
FileName = filename;
// get size
struct stat statb;
int fd = open(filename, 0);
if (fd < 0) {
printf("couldn't open %s for reading\n", filename);
return false;
}
int osresult = fstat(fd, &statb);
if (osresult != 0) {
printf("couldn't get size of %s\n", filename);
close(fd);
return false;
}
FileSize = statb.st_size;
FileBase = malloc(FileSize);
if (!FileBase) {
printf("couldn't malloc %d bytes\n", FileSize);
close(fd);
return false;
}
off_t readsize = read(fd, FileBase, FileSize);
if (readsize != FileSize) {
printf("read %d bytes, wanted %d\n", readsize, FileSize);
close(fd);
return false;
}
close(fd);
return true;
}
void closeFile() {
free(FileBase);
}
void dumpinfo(char *filename) {
initGCInfo();
openFile(filename);
struct fat_header *fh = (struct fat_header *)FileBase;
if (fh->magic == FAT_MAGIC || fh->magic == FAT_CIGAM) {
dofat((void *)FileBase);
//printGCInfo(filename);
}
else if (fh->magic == MH_MAGIC || fh->magic == MH_CIGAM || fh->magic == MH_MAGIC_64 || fh->magic == MH_CIGAM_64) {
doofile((void *)FileBase, FileSize, &GCInfo[0]);
//printGCInfo(filename);
}
else if (!quiet) {
printf("don't understand %s!\n", filename);
}
closeFile();
}