blob: 3011ed7a86aedd132d06bd0fe0dcc12455f34102 [file] [log] [blame]
San Mehat168415b2009-05-06 11:14:21 -07001/*
Mark Salyzyn23f04102012-01-24 20:30:10 -08002 * Copyright (C) 2008-2014 The Android Open Source Project
San Mehat168415b2009-05-06 11:14:21 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include <stdio.h>
17#include <errno.h>
18#include <stdlib.h>
19#include <sys/socket.h>
20#include <sys/select.h>
21#include <sys/time.h>
22#include <sys/types.h>
23#include <sys/un.h>
24
25#define LOG_TAG "SocketListener"
26#include <cutils/log.h>
San Mehat168415b2009-05-06 11:14:21 -070027#include <cutils/sockets.h>
28
29#include <sysutils/SocketListener.h>
San Mehatfa644ff2009-05-08 11:15:53 -070030#include <sysutils/SocketClient.h>
San Mehat168415b2009-05-06 11:14:21 -070031
Mark Salyzyn44b99c22014-01-08 12:44:23 -080032#define CtrlPipe_Shutdown 0
33#define CtrlPipe_Wakeup 1
34
San Mehatfa644ff2009-05-08 11:15:53 -070035SocketListener::SocketListener(const char *socketName, bool listen) {
Robert Greenwalt8702bb12012-02-07 12:23:14 -080036 init(socketName, -1, listen, false);
San Mehat168415b2009-05-06 11:14:21 -070037}
38
San Mehatfa644ff2009-05-08 11:15:53 -070039SocketListener::SocketListener(int socketFd, bool listen) {
Robert Greenwalt8702bb12012-02-07 12:23:14 -080040 init(NULL, socketFd, listen, false);
41}
42
43SocketListener::SocketListener(const char *socketName, bool listen, bool useCmdNum) {
44 init(socketName, -1, listen, useCmdNum);
45}
46
47void SocketListener::init(const char *socketName, int socketFd, bool listen, bool useCmdNum) {
San Mehatfa644ff2009-05-08 11:15:53 -070048 mListen = listen;
Robert Greenwalt8702bb12012-02-07 12:23:14 -080049 mSocketName = socketName;
San Mehat168415b2009-05-06 11:14:21 -070050 mSock = socketFd;
Robert Greenwalt8702bb12012-02-07 12:23:14 -080051 mUseCmdNum = useCmdNum;
San Mehatfa644ff2009-05-08 11:15:53 -070052 pthread_mutex_init(&mClientsLock, NULL);
53 mClients = new SocketClientCollection();
San Mehat168415b2009-05-06 11:14:21 -070054}
55
San Mehatc4a895b2009-06-23 21:10:57 -070056SocketListener::~SocketListener() {
57 if (mSocketName && mSock > -1)
58 close(mSock);
59
60 if (mCtrlPipe[0] != -1) {
61 close(mCtrlPipe[0]);
62 close(mCtrlPipe[1]);
63 }
64 SocketClientCollection::iterator it;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +010065 for (it = mClients->begin(); it != mClients->end();) {
Brad Fitzpatrick13aa8ad2011-03-17 15:41:20 -070066 (*it)->decRef();
San Mehatc4a895b2009-06-23 21:10:57 -070067 it = mClients->erase(it);
68 }
69 delete mClients;
70}
71
San Mehatfa644ff2009-05-08 11:15:53 -070072int SocketListener::startListener() {
Mark Salyzyn581edc12013-11-20 13:38:52 -080073 return startListener(4);
74}
75
76int SocketListener::startListener(int backlog) {
San Mehat168415b2009-05-06 11:14:21 -070077
78 if (!mSocketName && mSock == -1) {
San Mehat7e8529a2010-03-25 09:31:42 -070079 SLOGE("Failed to start unbound listener");
San Mehat168415b2009-05-06 11:14:21 -070080 errno = EINVAL;
81 return -1;
82 } else if (mSocketName) {
83 if ((mSock = android_get_control_socket(mSocketName)) < 0) {
San Mehat7e8529a2010-03-25 09:31:42 -070084 SLOGE("Obtaining file descriptor socket '%s' failed: %s",
San Mehat168415b2009-05-06 11:14:21 -070085 mSocketName, strerror(errno));
86 return -1;
87 }
Robert Greenwalt8702bb12012-02-07 12:23:14 -080088 SLOGV("got mSock = %d for %s", mSock, mSocketName);
Jeff Sharkey55fd3162015-04-01 22:31:40 -070089 fcntl(mSock, F_SETFD, FD_CLOEXEC);
San Mehat168415b2009-05-06 11:14:21 -070090 }
91
Mark Salyzyn581edc12013-11-20 13:38:52 -080092 if (mListen && listen(mSock, backlog) < 0) {
San Mehat7e8529a2010-03-25 09:31:42 -070093 SLOGE("Unable to listen on socket (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -070094 return -1;
San Mehatdf6c1b92009-05-13 08:58:43 -070095 } else if (!mListen)
Robert Greenwalt8702bb12012-02-07 12:23:14 -080096 mClients->push_back(new SocketClient(mSock, false, mUseCmdNum));
San Mehat168415b2009-05-06 11:14:21 -070097
San Mehatc4a895b2009-06-23 21:10:57 -070098 if (pipe(mCtrlPipe)) {
San Mehat7e8529a2010-03-25 09:31:42 -070099 SLOGE("pipe failed (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -0700100 return -1;
San Mehatc4a895b2009-06-23 21:10:57 -0700101 }
San Mehatfa644ff2009-05-08 11:15:53 -0700102
San Mehatc4a895b2009-06-23 21:10:57 -0700103 if (pthread_create(&mThread, NULL, SocketListener::threadStart, this)) {
San Mehat7e8529a2010-03-25 09:31:42 -0700104 SLOGE("pthread_create (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -0700105 return -1;
San Mehatc4a895b2009-06-23 21:10:57 -0700106 }
San Mehatfa644ff2009-05-08 11:15:53 -0700107
108 return 0;
109}
110
111int SocketListener::stopListener() {
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800112 char c = CtrlPipe_Shutdown;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100113 int rc;
San Mehatfa644ff2009-05-08 11:15:53 -0700114
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100115 rc = TEMP_FAILURE_RETRY(write(mCtrlPipe[1], &c, 1));
116 if (rc != 1) {
San Mehat7e8529a2010-03-25 09:31:42 -0700117 SLOGE("Error writing to control pipe (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -0700118 return -1;
119 }
120
San Mehatfa644ff2009-05-08 11:15:53 -0700121 void *ret;
122 if (pthread_join(mThread, &ret)) {
San Mehat7e8529a2010-03-25 09:31:42 -0700123 SLOGE("Error joining to listener thread (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -0700124 return -1;
125 }
San Mehatdbdb0db2009-05-12 15:50:26 -0700126 close(mCtrlPipe[0]);
127 close(mCtrlPipe[1]);
San Mehatc4a895b2009-06-23 21:10:57 -0700128 mCtrlPipe[0] = -1;
129 mCtrlPipe[1] = -1;
130
131 if (mSocketName && mSock > -1) {
132 close(mSock);
133 mSock = -1;
134 }
135
136 SocketClientCollection::iterator it;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100137 for (it = mClients->begin(); it != mClients->end();) {
San Mehatc4a895b2009-06-23 21:10:57 -0700138 delete (*it);
139 it = mClients->erase(it);
140 }
San Mehatfa644ff2009-05-08 11:15:53 -0700141 return 0;
142}
143
144void *SocketListener::threadStart(void *obj) {
145 SocketListener *me = reinterpret_cast<SocketListener *>(obj);
146
147 me->runListener();
San Mehatfa644ff2009-05-08 11:15:53 -0700148 pthread_exit(NULL);
149 return NULL;
150}
151
152void SocketListener::runListener() {
153
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800154 SocketClientCollection pendingList;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100155
San Mehat168415b2009-05-06 11:14:21 -0700156 while(1) {
San Mehatfa644ff2009-05-08 11:15:53 -0700157 SocketClientCollection::iterator it;
San Mehat168415b2009-05-06 11:14:21 -0700158 fd_set read_fds;
San Mehat168415b2009-05-06 11:14:21 -0700159 int rc = 0;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100160 int max = -1;
San Mehatfa644ff2009-05-08 11:15:53 -0700161
San Mehat168415b2009-05-06 11:14:21 -0700162 FD_ZERO(&read_fds);
163
San Mehatfa644ff2009-05-08 11:15:53 -0700164 if (mListen) {
San Mehat168415b2009-05-06 11:14:21 -0700165 max = mSock;
San Mehatfa644ff2009-05-08 11:15:53 -0700166 FD_SET(mSock, &read_fds);
San Mehat168415b2009-05-06 11:14:21 -0700167 }
168
San Mehatfa644ff2009-05-08 11:15:53 -0700169 FD_SET(mCtrlPipe[0], &read_fds);
170 if (mCtrlPipe[0] > max)
171 max = mCtrlPipe[0];
172
173 pthread_mutex_lock(&mClientsLock);
174 for (it = mClients->begin(); it != mClients->end(); ++it) {
Mark Salyzyn23f04102012-01-24 20:30:10 -0800175 // NB: calling out to an other object with mClientsLock held (safe)
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100176 int fd = (*it)->getSocket();
177 FD_SET(fd, &read_fds);
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800178 if (fd > max) {
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100179 max = fd;
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800180 }
San Mehatfa644ff2009-05-08 11:15:53 -0700181 }
182 pthread_mutex_unlock(&mClientsLock);
Robert Greenwalt8702bb12012-02-07 12:23:14 -0800183 SLOGV("mListen=%d, max=%d, mSocketName=%s", mListen, max, mSocketName);
San Mehatdf6c1b92009-05-13 08:58:43 -0700184 if ((rc = select(max + 1, &read_fds, NULL, NULL, NULL)) < 0) {
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100185 if (errno == EINTR)
186 continue;
Robert Greenwalt8702bb12012-02-07 12:23:14 -0800187 SLOGE("select failed (%s) mListen=%d, max=%d", strerror(errno), mListen, max);
San Mehatfa644ff2009-05-08 11:15:53 -0700188 sleep(1);
San Mehat168415b2009-05-06 11:14:21 -0700189 continue;
San Mehatdf6c1b92009-05-13 08:58:43 -0700190 } else if (!rc)
San Mehatfa644ff2009-05-08 11:15:53 -0700191 continue;
San Mehat168415b2009-05-06 11:14:21 -0700192
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800193 if (FD_ISSET(mCtrlPipe[0], &read_fds)) {
194 char c = CtrlPipe_Shutdown;
195 TEMP_FAILURE_RETRY(read(mCtrlPipe[0], &c, 1));
196 if (c == CtrlPipe_Shutdown) {
197 break;
198 }
199 continue;
200 }
San Mehatfa644ff2009-05-08 11:15:53 -0700201 if (mListen && FD_ISSET(mSock, &read_fds)) {
202 struct sockaddr addr;
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100203 socklen_t alen;
San Mehatfa644ff2009-05-08 11:15:53 -0700204 int c;
205
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100206 do {
207 alen = sizeof(addr);
208 c = accept(mSock, &addr, &alen);
Robert Greenwalt8702bb12012-02-07 12:23:14 -0800209 SLOGV("%s got %d from accept", mSocketName, c);
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100210 } while (c < 0 && errno == EINTR);
211 if (c < 0) {
San Mehat7e8529a2010-03-25 09:31:42 -0700212 SLOGE("accept failed (%s)", strerror(errno));
San Mehatfa644ff2009-05-08 11:15:53 -0700213 sleep(1);
214 continue;
215 }
Jeff Sharkey55fd3162015-04-01 22:31:40 -0700216 fcntl(c, F_SETFD, FD_CLOEXEC);
San Mehatfa644ff2009-05-08 11:15:53 -0700217 pthread_mutex_lock(&mClientsLock);
Robert Greenwalt8702bb12012-02-07 12:23:14 -0800218 mClients->push_back(new SocketClient(c, true, mUseCmdNum));
San Mehatfa644ff2009-05-08 11:15:53 -0700219 pthread_mutex_unlock(&mClientsLock);
220 }
221
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100222 /* Add all active clients to the pending list first */
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800223 pendingList.clear();
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100224 pthread_mutex_lock(&mClientsLock);
225 for (it = mClients->begin(); it != mClients->end(); ++it) {
Mark Salyzyn23f04102012-01-24 20:30:10 -0800226 SocketClient* c = *it;
227 // NB: calling out to an other object with mClientsLock held (safe)
228 int fd = c->getSocket();
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100229 if (FD_ISSET(fd, &read_fds)) {
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800230 pendingList.push_back(c);
Mark Salyzyn23f04102012-01-24 20:30:10 -0800231 c->incRef();
San Mehat168415b2009-05-06 11:14:21 -0700232 }
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100233 }
234 pthread_mutex_unlock(&mClientsLock);
235
236 /* Process the pending list, since it is owned by the thread,
237 * there is no need to lock it */
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800238 while (!pendingList.empty()) {
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100239 /* Pop the first item from the list */
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800240 it = pendingList.begin();
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100241 SocketClient* c = *it;
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800242 pendingList.erase(it);
243 /* Process it, if false is returned, remove from list */
244 if (!onDataAvailable(c)) {
245 release(c, false);
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100246 }
Mark Salyzyn23f04102012-01-24 20:30:10 -0800247 c->decRef();
David 'Digit' Turner100c0e22011-01-17 03:10:31 +0100248 }
San Mehat168415b2009-05-06 11:14:21 -0700249 }
Mark Salyzyn44b99c22014-01-08 12:44:23 -0800250}
251
252bool SocketListener::release(SocketClient* c, bool wakeup) {
253 bool ret = false;
254 /* if our sockets are connection-based, remove and destroy it */
255 if (mListen && c) {
256 /* Remove the client from our array */
257 SLOGV("going to zap %d for %s", c->getSocket(), mSocketName);
258 pthread_mutex_lock(&mClientsLock);
259 SocketClientCollection::iterator it;
260 for (it = mClients->begin(); it != mClients->end(); ++it) {
261 if (*it == c) {
262 mClients->erase(it);
263 ret = true;
264 break;
265 }
266 }
267 pthread_mutex_unlock(&mClientsLock);
268 if (ret) {
269 ret = c->decRef();
270 if (wakeup) {
271 char b = CtrlPipe_Wakeup;
272 TEMP_FAILURE_RETRY(write(mCtrlPipe[1], &b, 1));
273 }
274 }
275 }
276 return ret;
San Mehat168415b2009-05-06 11:14:21 -0700277}
278
San Mehatdb017542009-05-20 15:27:14 -0700279void SocketListener::sendBroadcast(int code, const char *msg, bool addErrno) {
Mark Salyzyn23f04102012-01-24 20:30:10 -0800280 SocketClientCollection safeList;
281
282 /* Add all active clients to the safe list first */
283 safeList.clear();
San Mehatd7680662009-05-12 11:16:59 -0700284 pthread_mutex_lock(&mClientsLock);
285 SocketClientCollection::iterator i;
286
287 for (i = mClients->begin(); i != mClients->end(); ++i) {
Mark Salyzyn23f04102012-01-24 20:30:10 -0800288 SocketClient* c = *i;
289 c->incRef();
290 safeList.push_back(c);
Guang Zhua8185a62012-02-07 19:13:28 -0800291 }
292 pthread_mutex_unlock(&mClientsLock);
Mark Salyzyn23f04102012-01-24 20:30:10 -0800293
294 while (!safeList.empty()) {
295 /* Pop the first item from the list */
296 i = safeList.begin();
297 SocketClient* c = *i;
298 safeList.erase(i);
299 // broadcasts are unsolicited and should not include a cmd number
300 if (c->sendMsg(code, msg, addErrno, false)) {
301 SLOGW("Error sending broadcast (%s)", strerror(errno));
302 }
303 c->decRef();
304 }
305}
306
307void SocketListener::runOnEachSocket(SocketClientCommand *command) {
308 SocketClientCollection safeList;
309
310 /* Add all active clients to the safe list first */
311 safeList.clear();
312 pthread_mutex_lock(&mClientsLock);
313 SocketClientCollection::iterator i;
314
315 for (i = mClients->begin(); i != mClients->end(); ++i) {
316 SocketClient* c = *i;
317 c->incRef();
318 safeList.push_back(c);
319 }
320 pthread_mutex_unlock(&mClientsLock);
321
322 while (!safeList.empty()) {
323 /* Pop the first item from the list */
324 i = safeList.begin();
325 SocketClient* c = *i;
326 safeList.erase(i);
327 command->runSocketCommand(c);
328 c->decRef();
329 }
Guang Zhua8185a62012-02-07 19:13:28 -0800330}