]>
Commit | Line | Data |
---|---|---|
d9a64523 A |
1 | /* |
2 | * Copyright (c) 2018 Apple Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
5 | * | |
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. The rights granted to you under the License | |
10 | * may not be used to create, or enable the creation or redistribution of, | |
11 | * unlawful or unlicensed copies of an Apple operating system, or to | |
12 | * circumvent, violate, or enable the circumvention or violation of, any | |
13 | * terms of an Apple operating system software license agreement. | |
14 | * | |
15 | * Please obtain a copy of the License at | |
16 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
17 | * | |
18 | * The Original Code and all software distributed under the License are | |
19 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
22 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
23 | * Please see the License for the specific language governing rights and | |
24 | * limitations under the License. | |
25 | * | |
26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
27 | */ | |
28 | ||
29 | #include <errno.h> | |
30 | #include <mach/host_special_ports.h> | |
31 | #include <mach/task_special_ports.h> | |
32 | #include <mach/port_descriptions.h> | |
33 | #include <stdlib.h> | |
34 | #include <strings.h> | |
35 | ||
36 | const char * | |
37 | mach_host_special_port_description(int port) | |
38 | { | |
39 | int port_index = (int)port; | |
40 | ||
41 | if (port_index < 0 || port_index > HOST_MAX_SPECIAL_PORT) { | |
42 | return NULL; | |
43 | } | |
44 | ||
45 | static const char *hsp_descs[] = { | |
46 | [HOST_PORT] = "host (restricted)", | |
47 | [HOST_PRIV_PORT] = "host private (restricted)", | |
48 | [HOST_IO_MASTER_PORT] = "I/O master (restricted)", | |
49 | ||
50 | [HOST_DYNAMIC_PAGER_PORT] = "dynamic pager", | |
51 | [HOST_AUDIT_CONTROL_PORT] = "audit control", | |
52 | [HOST_USER_NOTIFICATION_PORT] = "user notification", | |
53 | [HOST_AUTOMOUNTD_PORT] = "automounter", | |
54 | [HOST_LOCKD_PORT] = "lockd", | |
55 | [HOST_KTRACE_BACKGROUND_PORT] = "ktrace background notification", | |
56 | [HOST_SEATBELT_PORT] = "seatbelt", | |
57 | [HOST_KEXTD_PORT] = "kextd", | |
58 | [HOST_LAUNCHCTL_PORT] = "launchctl", | |
59 | [HOST_UNFREED_PORT] = "fairplay", | |
60 | [HOST_AMFID_PORT] = "amfi", | |
61 | [HOST_GSSD_PORT] = "gssd", | |
62 | [HOST_TELEMETRY_PORT] = "telemetry", | |
63 | [HOST_ATM_NOTIFICATION_PORT] = "atm notification", | |
64 | [HOST_COALITION_PORT] = "coalition notification", | |
65 | [HOST_SYSDIAGNOSE_PORT] = "sysdiagnose notification", | |
66 | [HOST_XPC_EXCEPTION_PORT] = "XPC exception", | |
67 | [HOST_CONTAINERD_PORT] = "container manager", | |
68 | [HOST_NODE_PORT] = "node", | |
69 | [HOST_RESOURCE_NOTIFY_PORT] = "resource notify", | |
70 | [HOST_CLOSURED_PORT] = "closured", | |
71 | [HOST_SYSPOLICYD_PORT] = "syspolicyd", | |
cb323159 A |
72 | [HOST_FILECOORDINATIOND_PORT] = "filecoordinationd", |
73 | [HOST_FAIRPLAYD_PORT] = "fairplayd", | |
d9a64523 | 74 | }; |
cb323159 | 75 | _Static_assert(HOST_FAIRPLAYD_PORT == HOST_MAX_SPECIAL_PORT, |
0a7de745 | 76 | "all host special ports must have descriptions"); |
d9a64523 A |
77 | |
78 | return hsp_descs[port_index]; | |
79 | } | |
80 | ||
81 | const char * | |
82 | mach_task_special_port_description(int port) | |
83 | { | |
84 | int port_index = (int)port; | |
85 | ||
86 | if (port_index < 0 || port_index > TASK_MAX_SPECIAL_PORT) { | |
87 | return NULL; | |
88 | } | |
89 | ||
90 | static const char *tsp_descs[] = { | |
91 | [TASK_KERNEL_PORT] = "kernel", | |
92 | [TASK_HOST_PORT] = "host", | |
93 | [TASK_NAME_PORT] = "name", | |
94 | [TASK_BOOTSTRAP_PORT] = "bootstrap", | |
95 | [TASK_SEATBELT_PORT] = "seatbelt", | |
96 | [TASK_ACCESS_PORT] = "access", | |
97 | [TASK_DEBUG_CONTROL_PORT] = "debug control", | |
98 | [TASK_RESOURCE_NOTIFY_PORT] = "resource notify", | |
99 | }; | |
100 | _Static_assert(TASK_RESOURCE_NOTIFY_PORT == TASK_MAX_SPECIAL_PORT, | |
0a7de745 | 101 | "all task special ports must have descriptions"); |
d9a64523 A |
102 | |
103 | return tsp_descs[port_index]; | |
104 | } | |
105 | ||
106 | static int | |
107 | port_for_id_internal(const char *id, const char **ids, int nids) | |
108 | { | |
109 | if (!id) { | |
110 | errno = EINVAL; | |
111 | return -1; | |
112 | } | |
113 | ||
114 | for (int i = 0; i < nids; i++) { | |
115 | if (ids[i] && strcmp(ids[i], id) == 0) { | |
116 | return i; | |
117 | } | |
118 | } | |
119 | ||
120 | errno = ENOENT; | |
121 | return -1; | |
122 | } | |
123 | ||
124 | int | |
125 | mach_host_special_port_for_id(const char *id) | |
126 | { | |
127 | static const char *hsp_ids[] = { | |
128 | #define SP_ENTRY(id) [id] = #id | |
129 | SP_ENTRY(HOST_PORT), | |
130 | SP_ENTRY(HOST_PRIV_PORT), | |
131 | SP_ENTRY(HOST_IO_MASTER_PORT), | |
132 | SP_ENTRY(HOST_DYNAMIC_PAGER_PORT), | |
133 | SP_ENTRY(HOST_AUDIT_CONTROL_PORT), | |
134 | SP_ENTRY(HOST_USER_NOTIFICATION_PORT), | |
135 | SP_ENTRY(HOST_AUTOMOUNTD_PORT), | |
136 | SP_ENTRY(HOST_LOCKD_PORT), | |
137 | SP_ENTRY(HOST_KTRACE_BACKGROUND_PORT), | |
138 | SP_ENTRY(HOST_SEATBELT_PORT), | |
139 | SP_ENTRY(HOST_KEXTD_PORT), | |
140 | SP_ENTRY(HOST_LAUNCHCTL_PORT), | |
141 | SP_ENTRY(HOST_UNFREED_PORT), | |
142 | SP_ENTRY(HOST_AMFID_PORT), | |
143 | SP_ENTRY(HOST_GSSD_PORT), | |
144 | SP_ENTRY(HOST_TELEMETRY_PORT), | |
145 | SP_ENTRY(HOST_ATM_NOTIFICATION_PORT), | |
146 | SP_ENTRY(HOST_COALITION_PORT), | |
147 | SP_ENTRY(HOST_SYSDIAGNOSE_PORT), | |
148 | SP_ENTRY(HOST_XPC_EXCEPTION_PORT), | |
149 | SP_ENTRY(HOST_CONTAINERD_PORT), | |
150 | SP_ENTRY(HOST_NODE_PORT), | |
151 | SP_ENTRY(HOST_RESOURCE_NOTIFY_PORT), | |
152 | SP_ENTRY(HOST_CLOSURED_PORT), | |
153 | SP_ENTRY(HOST_SYSPOLICYD_PORT), | |
cb323159 | 154 | SP_ENTRY(HOST_FILECOORDINATIOND_PORT), |
d9a64523 A |
155 | }; |
156 | ||
157 | return port_for_id_internal(id, hsp_ids, | |
0a7de745 | 158 | sizeof(hsp_ids) / sizeof(hsp_ids[0])); |
d9a64523 A |
159 | } |
160 | ||
161 | int | |
162 | mach_task_special_port_for_id(const char *id) | |
163 | { | |
164 | static const char *tsp_ids[] = { | |
165 | SP_ENTRY(TASK_KERNEL_PORT), | |
166 | SP_ENTRY(TASK_HOST_PORT), | |
167 | SP_ENTRY(TASK_NAME_PORT), | |
168 | SP_ENTRY(TASK_BOOTSTRAP_PORT), | |
169 | SP_ENTRY(TASK_SEATBELT_PORT), | |
170 | SP_ENTRY(TASK_ACCESS_PORT), | |
171 | SP_ENTRY(TASK_DEBUG_CONTROL_PORT), | |
172 | SP_ENTRY(TASK_RESOURCE_NOTIFY_PORT), | |
173 | #undef SP_ENTRY | |
174 | }; | |
175 | ||
176 | return port_for_id_internal(id, tsp_ids, | |
0a7de745 | 177 | sizeof(tsp_ids) / sizeof(tsp_ids[0])); |
d9a64523 | 178 | } |