-
Notifications
You must be signed in to change notification settings - Fork 30
/
codesign.c
469 lines (433 loc) · 11.9 KB
/
codesign.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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
/*-
* xnumon - monitor macOS for malicious activity
* https://www.roe.ch/xnumon
*
* Copyright (c) 2017-2019, Daniel Roethlisberger <[email protected]>.
* All rights reserved.
*
* Licensed under the Open Software License version 3.0.
*/
#include "codesign.h"
#include "cf.h"
#include "debug.h"
#include <stdio.h>
#include <stdlib.h>
#include <CoreFoundation/CoreFoundation.h>
#include <Security/Security.h>
/* CarbonCore MacErrors.h */
#ifndef kPOSIXErrorESRCH
#define kPOSIXErrorESRCH 100003
#endif
static config_t *config;
typedef struct {
int origin;
SecRequirementRef req;
} origin_req_tuple_t;
origin_req_tuple_t reqs[] = {
{CODESIGN_ORIGIN_APPLE_SYSTEM, NULL},
{CODESIGN_ORIGIN_MAC_APP_STORE, NULL},
{CODESIGN_ORIGIN_DEVELOPER_ID, NULL},
{CODESIGN_ORIGIN_APPLE_GENERIC, NULL},
{CODESIGN_ORIGIN_TRUSTED_CA, NULL},
};
#define CREATE_REQ(REQ, REQSTR) \
{ \
REQ = NULL; \
if (SecRequirementCreateWithString(CFSTR(REQSTR), \
kSecCSDefaultFlags, \
&REQ) != errSecSuccess || !REQ) \
return -1; \
}
int
codesign_init(config_t *cfg) {
if (config)
return -1;
config = cfg;
/*
* Order needs to match the order of the origin values in reqs above;
* should be most specific first. Will be tested from top to bottom
* until the first fulfilled requirement. Current list obtained from
* 10.11.6 El Capitan using `spctl --list --type execute`.
*/
CREATE_REQ(reqs[0].req, "anchor apple");
CREATE_REQ(reqs[1].req, "anchor apple generic and "
"certificate leaf[field.1.2.840.113635.100.6.1.9] exists");
CREATE_REQ(reqs[2].req, "anchor apple generic and "
"certificate 1[field.1.2.840.113635.100.6.2.6] exists and "
"certificate leaf[field.1.2.840.113635.100.6.1.13] exists");
CREATE_REQ(reqs[3].req, "anchor apple generic");
CREATE_REQ(reqs[4].req, "anchor trusted");
return 0;
}
void
codesign_fini() {
for (size_t i = 0; i < sizeof(reqs)/sizeof(origin_req_tuple_t); i++) {
if (reqs[i].req) {
CFRelease(reqs[i].req);
reqs[i].req = NULL;
}
}
config = NULL;
}
#undef CREATE_REQ
void
codesign_free(codesign_t *cs) {
if (cs->cdhash)
free(cs->cdhash);
if (cs->ident)
free(cs->ident);
if (cs->teamid)
free(cs->teamid);
if (cs->certcn)
free(cs->certcn);
free(cs);
}
codesign_t *
codesign_dup(const codesign_t *other) {
codesign_t *cs;
cs = malloc(sizeof(codesign_t));
if (!cs)
return NULL;
bzero(cs, sizeof(codesign_t));
cs->result = other->result;
cs->origin = other->origin;
if (other->ident) {
cs->ident = strdup(other->ident);
if (!cs->ident)
goto errout;
}
if (other->cdhash) {
cs->cdhashsz = other->cdhashsz;
cs->cdhash = malloc(cs->cdhashsz);
if (!cs->cdhash)
goto errout;
memcpy(cs->cdhash, other->cdhash, cs->cdhashsz);
}
if (other->teamid) {
cs->teamid = strdup(other->teamid);
if (!cs->teamid)
goto errout;
}
if (other->certcn) {
cs->certcn = strdup(other->certcn);
if (!cs->certcn)
goto errout;
}
return cs;
errout:
codesign_free(cs);
return NULL;
}
/*
* Extract code signature meta-data from either an on-disk executable or a pid.
* Either cpath must be NULL or pid must be -1.
*
* We cannot safely acquire code signature information by pid in xnumon.
* Nevertheless, the chkcs utility can acquire code signature information from
* running processes for experimentation and comparison against codesign(1).
*
* Returns NULL and errno = ENOENT if the path could not be found.
* Returns NULL and errno = ESRCH if the pid could not be found.
* Returns NULL and errno = ENOMEM if out of memory.
* All other, unexpected errors return a newly allocated codesign_t with result
* CODESIGN_RESULT_ERROR.
*/
codesign_t *
codesign_new(const char *cpath, pid_t pid) {
codesign_t *cs;
OSStatus rv;
assert((cpath && pid == (pid_t)-1) || (!cpath && pid != (pid_t)-1));
cs = malloc(sizeof(codesign_t));
if (!cs)
goto enomemout;
bzero(cs, sizeof(codesign_t));
SecStaticCodeRef scode = NULL;
if (cpath) {
CFURLRef url = cf_url(cpath);
if (!url)
goto enomemout;
rv = SecStaticCodeCreateWithPath(url,
kSecCSDefaultFlags,
&scode);
CFRelease(url);
switch (rv) {
case errSecSuccess:
break;
case errSecCSStaticCodeNotFound:
errno = ENOENT;
goto errout;
default:
DEBUG(config->debug,
"codesign_error",
"SecStaticCodeCreateWithPath(%s) => %i",
cpath, rv);
cs->result = CODESIGN_RESULT_ERROR;
return cs;
}
} else {
CFNumberRef cfnpid = cf_number(pid);
if (!cfnpid)
goto enomemout;
CFDictionaryRef cfdpid = cf_dictionary1(kSecGuestAttributePid,
cfnpid);
if (!cfdpid) {
CFRelease(cfnpid);
goto enomemout;
}
rv = SecCodeCopyGuestWithAttributes(NULL,
cfdpid,
kSecCSDefaultFlags,
(SecCodeRef*)&scode);
CFRelease(cfdpid);
CFRelease(cfnpid);
switch (rv) {
case errSecSuccess:
break;
case kPOSIXErrorESRCH: /* 100003 */
errno = ESRCH;
goto errout;
default:
DEBUG(config->debug,
"codesign_error",
"SecCodeCopyGuestWithAttributes(%i) => %i",
pid, rv);
cs->result = CODESIGN_RESULT_ERROR;
return cs;
}
}
/* verify signature using embedded designated requirement */
SecRequirementRef designated_req = NULL;
rv = SecCodeCopyDesignatedRequirement(scode, kSecCSDefaultFlags,
&designated_req);
switch (rv) {
case errSecSuccess:
break;
case errSecCSUnsigned:
cs->result = CODESIGN_RESULT_UNSIGNED;
CFRelease(scode);
return cs;
default:
DEBUG(config->debug, "codesign_error",
"SecCodeCopyDesignatedRequirement(%s) => %i",
cpath, rv);
/* fallthrough */
case errSecCSBadObjectFormat:
cs->result = CODESIGN_RESULT_ERROR;
CFRelease(scode);
return cs;
}
SecCSFlags csflags = kSecCSDefaultFlags|
kSecCSStrictValidate|
kSecCSEnforceRevocationChecks|
kSecCSConsiderExpiration;
if (cpath) {
csflags |= kSecCSCheckAllArchitectures|
kSecCSCheckNestedCode|
kSecCSDoNotValidateResources;
rv = SecStaticCodeCheckValidity(scode,
csflags,
designated_req);
} else {
rv = SecCodeCheckValidity((SecCodeRef)scode,
csflags,
designated_req);
}
const char *badreason;
if (config->debug) {
switch (rv) {
case errSecSuccess:
badreason = "success";
break;
case CSSMERR_TP_CERT_REVOKED:
/* includes revocation of certs seen on malware */
badreason = "revoked";
break;
default:
badreason = "other";
break;
}
}
if (cpath) {
DEBUG(config->debug && rv != errSecSuccess,
"codesign_bad",
"SecStaticCodeCheckValidity(%s, full, designated_req)"
" => %i (%s)", cpath, rv, badreason);
} else {
DEBUG(config->debug && rv != errSecSuccess,
"codesign_bad",
"SecCodeCheckValidity(%i, full, designated_req)"
" => %i (%s)", pid, rv, badreason);
}
CFRelease(designated_req);
if (rv != errSecSuccess) {
cs->result = CODESIGN_RESULT_BAD;
CFRelease(scode);
return cs;
}
/* retrieve information from signature */
CFDictionaryRef dict = NULL;
rv = SecCodeCopySigningInformation(scode,
kSecCSSigningInformation|
kSecCSInternalInformation|
kSecCSRequirementInformation,
&dict);
if (rv != errSecSuccess || !dict) {
CFRelease(scode);
DEBUG(config->debug, "codesign_error",
"SecCodeCopySigningInformation(%s)"
" => %i", cpath, rv);
cs->result = CODESIGN_RESULT_ERROR;
return cs;
}
/* reduced set of flags, we are only checking requirements here */
csflags = kSecCSDefaultFlags|
kSecCSStrictValidate;
if (cpath)
csflags |= kSecCSCheckAllArchitectures|
kSecCSDoNotValidateResources;
for (size_t i = 0; i < sizeof(reqs)/sizeof(origin_req_tuple_t); i++) {
if (cpath)
rv = SecStaticCodeCheckValidity(scode,
csflags,
reqs[i].req);
else
rv = SecCodeCheckValidity((SecCodeRef)scode,
csflags,
reqs[i].req);
if (rv == errSecSuccess) {
cs->origin = reqs[i].origin;
break;
}
}
CFRelease(scode);
if (rv != errSecSuccess) {
/* signature is okay, but none of the requirements match;
* either the signature is from a self-signed certificate, a
* certificate issued by an untrusted CA, or it is an ad-hoc
* code signature. Treat all of these as untrusted. */
cs->result = CODESIGN_RESULT_UNTRUSTED;
} else {
cs->result = CODESIGN_RESULT_GOOD;
}
/* extract CDHash */
CFDataRef cdhash = CFDictionaryGetValue(dict, kSecCodeInfoUnique);
if (cdhash && cf_is_data(cdhash)) {
cs->cdhashsz = CFDataGetLength(cdhash);
cs->cdhash = malloc(cs->cdhashsz);
if (!cs->cdhash) {
CFRelease(dict);
goto enomemout;
}
memcpy(cs->cdhash, CFDataGetBytePtr(cdhash), cs->cdhashsz);
}
/* extract identity-related info only for good signatures */
if (cs->result != CODESIGN_RESULT_GOOD)
goto out;
/* extract ident */
CFStringRef ident = CFDictionaryGetValue(dict, kSecCodeInfoIdentifier);
if (ident && cf_is_string(ident)) {
cs->ident = cf_cstr(ident);
if (!cs->ident) {
CFRelease(dict);
goto enomemout;
}
}
/* extract Team ID */
CFStringRef teamid = CFDictionaryGetValue(dict,
kSecCodeInfoTeamIdentifier);
if (teamid && cf_is_string(teamid)) {
cs->teamid = cf_cstr(teamid);
if (!cs->teamid) {
CFRelease(dict);
goto enomemout;
}
}
/* skip certificate CN extraction where it holds no interesting data */
if (cs->origin == CODESIGN_ORIGIN_APPLE_SYSTEM ||
cs->origin == CODESIGN_ORIGIN_MAC_APP_STORE)
goto out;
/* extract CN of first certificate in chain */
CFArrayRef chain = CFDictionaryGetValue(dict,
kSecCodeInfoCertificates);
if (chain && cf_is_array(chain) && CFArrayGetCount(chain) >= 1) {
SecCertificateRef crt =
(SecCertificateRef)CFArrayGetValueAtIndex(chain, 0);
if (crt && cf_is_cert(crt)) {
CFStringRef s = SecCertificateCopySubjectSummary(crt);
if (!s) {
CFRelease(dict);
goto enomemout;
}
cs->certcn = cf_cstr(s);
CFRelease(s);
if (!cs->certcn) {
CFRelease(dict);
goto enomemout;
}
}
}
out:
CFRelease(dict);
return cs;
enomemout:
errno = ENOMEM;
errout:
if (cs)
codesign_free(cs);
return NULL;
}
const char *
codesign_result_s(codesign_t *cs) {
switch (cs->result) {
case CODESIGN_RESULT_UNSIGNED:
return "unsigned";
case CODESIGN_RESULT_GOOD:
return "good";
case CODESIGN_RESULT_UNTRUSTED:
return "untrusted";
case CODESIGN_RESULT_BAD:
return "bad";
case CODESIGN_RESULT_ERROR:
return "error";
default:
/* this should never happen */
return "undefined";
}
}
const char *
codesign_origin_s(codesign_t *cs) {
switch (cs->origin) {
case CODESIGN_ORIGIN_APPLE_SYSTEM:
return "system";
case CODESIGN_ORIGIN_MAC_APP_STORE:
return "appstore";
case CODESIGN_ORIGIN_DEVELOPER_ID:
return "devid";
case CODESIGN_ORIGIN_APPLE_GENERIC:
return "generic";
case CODESIGN_ORIGIN_TRUSTED_CA:
return "trusted";
default:
/* this should never happen if a signature is present */
return "undefined";
}
}
void
codesign_fprint(FILE *f, codesign_t *cs) {
fprintf(f, "signature: %s\n", codesign_result_s(cs));
if (cs->origin)
fprintf(f, "origin: %s\n", codesign_origin_s(cs));
if (cs->cdhash) {
fprintf(f, "cdhash: ");
for (size_t i = 0; i < cs->cdhashsz; i++) {
fprintf(f, "%02x", cs->cdhash[i]);
}
fprintf(f, "\n");
}
if (cs->ident)
fprintf(f, "ident: %s\n", cs->ident);
if (cs->teamid)
fprintf(f, "teamid: %s\n", cs->teamid);
if (cs->certcn)
fprintf(f, "certcn: %s\n", cs->certcn);
}