]> git.saurik.com Git - apple/launchd.git/blob - launchd/src/launchproxy.c
launchd-106.13.tar.gz
[apple/launchd.git] / launchd / src / launchproxy.c
1 /*
2 * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_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. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23 #include <Security/Authorization.h>
24 #include <Security/AuthorizationTags.h>
25 #include <Security/AuthSession.h>
26 #include <sys/types.h>
27 #include <sys/select.h>
28 #include <sys/event.h>
29 #include <sys/socket.h>
30 #include <sys/time.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <stdbool.h>
34 #include <unistd.h>
35 #include <string.h>
36 #include <errno.h>
37 #include <fcntl.h>
38 #include <syslog.h>
39 #include <libgen.h>
40 #include <getopt.h>
41 #include <signal.h>
42 #include <netdb.h>
43
44 #include "launch.h"
45
46 #if __GNUC__ >= 4
47 OSStatus SessionCreate(SessionCreationFlags flags, SessionAttributeBits attributes) __attribute__((weak));
48 #endif
49
50 static int kq = 0;
51
52 static void find_fds(launch_data_t o, const char *key __attribute__((unused)), void *context __attribute__((unused)))
53 {
54 struct kevent kev;
55 size_t i;
56 int fd;
57
58 switch (launch_data_get_type(o)) {
59 case LAUNCH_DATA_FD:
60 fd = launch_data_get_fd(o);
61 if (-1 == fd)
62 break;
63 fcntl(fd, F_SETFD, 1);
64 EV_SET(&kev, fd, EVFILT_READ, EV_ADD, 0, 0, NULL);
65 if (kevent(kq, &kev, 1, NULL, 0, NULL) == -1)
66 syslog(LOG_DEBUG, "kevent(%d): %m", fd);
67 break;
68 case LAUNCH_DATA_ARRAY:
69 for (i = 0; i < launch_data_array_get_count(o); i++)
70 find_fds(launch_data_array_get_index(o, i), NULL, NULL);
71 break;
72 case LAUNCH_DATA_DICTIONARY:
73 launch_data_dict_iterate(o, find_fds, NULL);
74 break;
75 default:
76 break;
77 }
78 }
79
80 int main(int argc __attribute__((unused)), char *argv[])
81 {
82 struct timespec timeout = { 10, 0 };
83 struct sockaddr_storage ss;
84 socklen_t slen = sizeof(ss);
85 struct kevent kev;
86 int r, ec = EXIT_FAILURE;
87 launch_data_t tmp, resp, msg = launch_data_alloc(LAUNCH_DATA_STRING);
88 const char *prog = argv[1];
89 bool w = false, dupstdout = true, dupstderr = true;
90
91 launch_data_set_string(msg, LAUNCH_KEY_CHECKIN);
92
93 openlog(getprogname(), LOG_PERROR|LOG_PID|LOG_CONS, LOG_LAUNCHD);
94
95 kq = kqueue();
96
97 if ((resp = launch_msg(msg)) == NULL) {
98 syslog(LOG_ERR, "launch_msg(%s): %m", LAUNCH_KEY_CHECKIN);
99 goto out;
100 }
101
102 launch_data_free(msg);
103
104 tmp = launch_data_dict_lookup(resp, LAUNCH_JOBKEY_SOCKETS);
105 if (tmp) {
106 find_fds(tmp, NULL, NULL);
107 } else {
108 syslog(LOG_ERR, "No FDs found to answer requests on!");
109 goto out;
110 }
111
112 tmp = launch_data_dict_lookup(resp, LAUNCH_JOBKEY_TIMEOUT);
113 if (tmp)
114 timeout.tv_sec = launch_data_get_integer(tmp);
115
116 tmp = launch_data_dict_lookup(resp, LAUNCH_JOBKEY_PROGRAM);
117 if (tmp)
118 prog = launch_data_get_string(tmp);
119
120 tmp = launch_data_dict_lookup(resp, LAUNCH_JOBKEY_INETDCOMPATIBILITY);
121 if (tmp) {
122 tmp = launch_data_dict_lookup(tmp, LAUNCH_JOBINETDCOMPATIBILITY_WAIT);
123 if (tmp)
124 w = launch_data_get_bool(tmp);
125 }
126
127 if (launch_data_dict_lookup(resp, LAUNCH_JOBKEY_STANDARDOUTPATH))
128 dupstdout = false;
129
130 if (launch_data_dict_lookup(resp, LAUNCH_JOBKEY_STANDARDERRORPATH))
131 dupstderr = false;
132
133 if (!w)
134 signal(SIGCHLD, SIG_IGN);
135
136 for (;;) {
137 if ((r = kevent(kq, NULL, 0, &kev, 1, &timeout)) == -1) {
138 syslog(LOG_DEBUG, "kevent(): %m");
139 goto out;
140 } else if (r == 0) {
141 ec = EXIT_SUCCESS;
142 goto out;
143 }
144
145 if (w) {
146 dup2(kev.ident, STDIN_FILENO);
147 if (dupstdout)
148 dup2(kev.ident, STDOUT_FILENO);
149 if (dupstderr)
150 dup2(kev.ident, STDERR_FILENO);
151 execv(prog, argv + 1);
152 syslog(LOG_ERR, "execv(): %m");
153 exit(EXIT_FAILURE);
154 }
155
156 if ((r = accept(kev.ident, (struct sockaddr *)&ss, &slen)) == -1) {
157 if (errno == EWOULDBLOCK)
158 continue;
159 syslog(LOG_DEBUG, "accept(): %m");
160 goto out;
161 } else {
162 char fromhost[NI_MAXHOST];
163 char fromport[NI_MAXSERV];
164 int gni_r;
165
166 gni_r = getnameinfo((struct sockaddr *)&ss, slen,
167 fromhost, sizeof(fromhost),
168 fromport, sizeof(fromport),
169 NI_NUMERICHOST | NI_NUMERICSERV);
170
171 if (gni_r) {
172 syslog(LOG_WARNING, "%s: getnameinfo(): %s", prog, gai_strerror(gni_r));
173 } else {
174 syslog(LOG_INFO, "%s: Connection from: %s on port: %s", prog, fromhost, fromport);
175 }
176
177 switch (fork()) {
178 case -1:
179 syslog(LOG_WARNING, "fork(): %m");
180 goto out;
181 case 0:
182 break;
183 default:
184 close(r);
185 continue;
186 }
187
188 if ((tmp = launch_data_dict_lookup(resp, LAUNCH_JOBKEY_SESSIONCREATE)) && launch_data_get_bool(tmp)) {
189 if (SessionCreate) {
190 OSStatus scr = SessionCreate(0, 0);
191 if (scr != noErr)
192 syslog(LOG_NOTICE, "%s: SessionCreate() failed: %d", prog, scr);
193 } else {
194 syslog(LOG_NOTICE, "%s: SessionCreate == NULL!", prog);
195 }
196 }
197 fcntl(r, F_SETFL, 0);
198 dup2(r, STDIN_FILENO);
199 if (dupstdout)
200 dup2(r, STDOUT_FILENO);
201 if (dupstderr)
202 dup2(r, STDERR_FILENO);
203 signal(SIGCHLD, SIG_DFL);
204 execv(prog, argv + 1);
205 syslog(LOG_ERR, "execv(): %m");
206 exit(EXIT_FAILURE);
207 }
208 }
209
210 out:
211 exit(ec);
212 }