forked from ProcursusTeam/launchctl
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plist.c
239 lines (210 loc) · 7.61 KB
/
plist.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
/*-
* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (c) 2023 Procursus Team <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/stat.h>
#include <sys/fcntl.h>
#include <sys/mman.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <mach-o/loader.h>
#include <mach-o/fat.h>
#include <xpc/xpc.h>
#include "xpc_private.h"
#include "launchctl.h"
static xpc_object_t
get_plist_from_section_32(struct mach_header *header, const char *segmentname, const char *sectionname)
{
xpc_object_t plist = NULL;
uint32_t loadCmdCount = header->ncmds;
uintptr_t loadCmdTable = (uintptr_t)header + sizeof(struct mach_header);
struct load_command *loadCmd = (struct load_command *)loadCmdTable;
for (uint32_t j = 0; j < loadCmdCount; j++, loadCmd = (struct load_command *)((uintptr_t)loadCmd + loadCmd->cmdsize)) {
if (loadCmd->cmd == LC_SEGMENT) {
struct segment_command *segmentCmd = (struct segment_command *)loadCmd;
if (strcmp(segmentCmd->segname, segmentname) == 0) {
uint32_t sectionCount = segmentCmd->nsects;
struct section *sectionTable = (struct section *)((uintptr_t)segmentCmd + sizeof(struct segment_command));
for (uint32_t k = 0; k < sectionCount; k++) {
struct section *section = &(sectionTable[k]);
if (strcmp(section->sectname, sectionname) == 0) {
size_t dataSize = (size_t)(section->size);
void *secdata = (void *)((uintptr_t)header + section->offset);
plist = xpc_create_from_plist(secdata, dataSize);
if (plist != NULL) {
return plist;
}
}
}
}
}
}
fprintf(stderr, "32-bit Mach-O does not have a %s,%s or is invalid.\n\n", segmentname, sectionname);
return NULL;
}
static xpc_object_t
get_plist_from_section_64(struct mach_header_64 *header, const char *segmentname, const char *sectionname)
{
xpc_object_t plist = NULL;
uint32_t loadCmdCount = header->ncmds;
uintptr_t loadCmdTable = (uintptr_t)header + sizeof(struct mach_header_64);
struct load_command *loadCmd = (struct load_command *)loadCmdTable;
for (uint32_t j = 0; j < loadCmdCount; j++, loadCmd = (struct load_command *)((uintptr_t)loadCmd + loadCmd->cmdsize)) {
if (loadCmd->cmd == LC_SEGMENT_64) {
struct segment_command_64 *segmentCmd = (struct segment_command_64 *)loadCmd;
if (strcmp(segmentCmd->segname, segmentname) == 0) {
uint32_t sectionCount = segmentCmd->nsects;
struct section_64 *sectionTable = (struct section_64 *)((uintptr_t)segmentCmd + sizeof(struct segment_command_64));
for (uint32_t k = 0; k < sectionCount; k++) {
struct section_64 *section = &(sectionTable[k]);
if (strcmp(section->sectname, sectionname) == 0) {
size_t dataSize = (size_t)(section->size);
void *secdata = (void *)((uintptr_t)header + section->offset);
plist = xpc_create_from_plist(secdata, dataSize);
if (plist != NULL) {
return plist;
}
}
}
}
}
}
fprintf(stderr, "64-bit Mach-O does not have a %s,%s or is invalid.\n\n", segmentname, sectionname);
return NULL;
}
int
plist_cmd(xpc_object_t *msg, int argc, char **argv, char **envp, char **apple)
{
int err = 0;
const char *wantedSegment = NULL;
const char *wantedSection = NULL;
const char *path = NULL;
int fd = -1;
size_t mappingSize = 0;
void *mapping = NULL;
xpc_object_t plist = NULL;
if (argc < 2) {
return EUSAGE;
}
if (argc != 3) {
wantedSegment = SEG_TEXT;
wantedSection = "__info_plist";
path = argv[1];
} else {
char *specifier = argv[1];
char *found = strchr(specifier, ',');
if (found == NULL) {
return EUSAGE;
}
*found = 0;
wantedSegment = specifier;
wantedSection = (char *)((uintptr_t)found + 1);
path = argv[2];
}
fd = open(path, O_RDONLY);
if (fd == -1) {
fprintf(stderr, "open(): %d: %s\n", errno, strerror(errno));
goto end;
}
struct stat status = {};
err = fstat(fd, &status);
if (err == -1) {
fprintf(stderr, "fdstat(): %d: %s\n", errno, strerror(errno));
goto end;
}
mappingSize = status.st_size;
mapping = mmap(NULL, mappingSize, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0);
if (mapping == MAP_FAILED) {
fprintf(stderr, "mmap(): %d: %s\n", errno, strerror(errno));
goto end;
}
if (mappingSize < sizeof(uint32_t) && mappingSize < sizeof(struct mach_header) && mappingSize < sizeof(struct mach_header_64) && mappingSize < sizeof(struct fat_header)) {
fprintf(stderr, "File is not a valid Mach-O or fat file.\n");
goto end;
}
uint32_t magic = *(uint32_t *)mapping;
if (magic == MH_MAGIC) {
plist = get_plist_from_section_32(mapping, wantedSegment, wantedSection);
} else if (magic == MH_MAGIC_64) {
plist = get_plist_from_section_64(mapping, wantedSegment, wantedSection);
} else if (magic == FAT_CIGAM || magic == FAT_CIGAM_64) {
struct fat_header *fatHeader = (struct fat_header *)mapping;
uint32_t archCount = ntohl(fatHeader->nfat_arch);
void *archTable = (void *)((uintptr_t)fatHeader + sizeof(struct fat_header));
for (uint32_t i = 0; i < archCount; i++) {
void *archMapping = NULL;
if (magic == FAT_CIGAM) {
struct fat_arch *arch = (struct fat_arch *)((uintptr_t)archTable + (i * sizeof(struct fat_arch)));
uint64_t archOffset = ntohl(arch->offset);
archMapping = (void *)((uintptr_t)mapping + archOffset);
} else if (magic == FAT_CIGAM_64) {
struct fat_arch_64 *arch = (struct fat_arch_64 *)((uintptr_t)archTable + (i * sizeof(struct fat_arch_64)));
uint64_t archOffset = ntohl(arch->offset);
archMapping = (void *)((uintptr_t)mapping + archOffset);
}
uint32_t archMagic = *(uint32_t *)archMapping;
if (archMagic == MH_MAGIC) {
plist = get_plist_from_section_32(archMapping, wantedSegment, wantedSection);
if (plist != NULL) {
goto print;
} else {
goto end;
}
} else if (archMagic == MH_MAGIC_64) {
plist = get_plist_from_section_64(archMapping, wantedSegment, wantedSection);
if (plist != NULL) {
goto print;
} else {
goto end;
}
}
}
fprintf(stderr, "Fat file does not contain valid architectures.\n");
goto end;
} else {
fprintf(stderr, "File is not a valid Mach-O or fat file.\n");
goto end;
}
print:
launchctl_xpc_object_print(plist, NULL, 0);
end:
if (plist != NULL) {
xpc_release(plist);
}
if (mapping != NULL) {
munmap(mapping, mappingSize);
}
if (fd != -1) {
close(fd);
}
return 0;
}