blob: 2ffd908d4d071248c12b4c3db434ddde797c77de [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/* http://frotznet.googlecode.com/svn/trunk/utils/fdevent.c
2**
3** Copyright 2006, Brian Swetland <swetland@frotz.net>
4**
Elliott Hughesaa245492015-08-03 10:38:08 -07005** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08008**
Elliott Hughesaa245492015-08-03 10:38:08 -07009** http://www.apache.org/licenses/LICENSE-2.0
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080010**
Elliott Hughesaa245492015-08-03 10:38:08 -070011** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080015** limitations under the License.
16*/
17
Yabin Cuiaed3c612015-09-22 15:52:57 -070018#define TRACE_TAG FDEVENT
JP Abgrall408fa572011-03-16 15:57:42 -070019
Dan Albert33134262015-03-19 15:21:08 -070020#include "sysdeps.h"
21#include "fdevent.h"
22
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <fcntl.h>
Yabin Cuia1080162015-09-04 16:19:56 -070024#include <poll.h>
Dan Albert33134262015-03-19 15:21:08 -070025#include <stdlib.h>
26#include <string.h>
27#include <sys/ioctl.h>
28#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080029
Yabin Cuia1080162015-09-04 16:19:56 -070030#include <list>
31#include <unordered_map>
32#include <vector>
33
34#include <base/logging.h>
35#include <base/stringprintf.h>
36
Dan Albertcc731cc2015-02-24 21:26:58 -080037#include "adb_io.h"
leozwangd3fc15f2014-07-29 12:50:02 -070038#include "adb_trace.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080039
Yabin Cuia1080162015-09-04 16:19:56 -070040#if !ADB_HOST
JP Abgrall408fa572011-03-16 15:57:42 -070041// This socket is used when a subproc shell service exists.
42// It wakes up the fdevent_loop() and cause the correct handling
43// of the shell's pseudo-tty master. I.e. force close it.
44int SHELL_EXIT_NOTIFY_FD = -1;
Alex Vallée947cb3e2015-07-17 15:30:59 -040045#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080046
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047#define FDE_EVENTMASK 0x00ff
48#define FDE_STATEMASK 0xff00
49
50#define FDE_ACTIVE 0x0100
51#define FDE_PENDING 0x0200
52#define FDE_CREATED 0x0400
53
Yabin Cuia1080162015-09-04 16:19:56 -070054struct PollNode {
55 fdevent* fde;
56 pollfd pollfd;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057
Yabin Cuia1080162015-09-04 16:19:56 -070058 PollNode(fdevent* fde) : fde(fde) {
59 memset(&pollfd, 0, sizeof(pollfd));
60 pollfd.fd = fde->fd;
Yabin Cuiaa77e222015-09-29 12:25:33 -070061
62#if defined(__linux__)
63 // Always enable POLLRDHUP, so the host server can take action when some clients disconnect.
64 // Then we can avoid leaving many sockets in CLOSE_WAIT state. See http://b/23314034.
65 pollfd.events = POLLRDHUP;
66#endif
Yabin Cuia1080162015-09-04 16:19:56 -070067 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080068};
69
Yabin Cuia1080162015-09-04 16:19:56 -070070// All operations to fdevent should happen only in the main thread.
71// That's why we don't need a lock for fdevent.
72static std::unordered_map<int, PollNode> g_poll_node_map;
73static std::list<fdevent*> g_pending_list;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074
Yabin Cuia1080162015-09-04 16:19:56 -070075static std::string dump_fde(const fdevent* fde) {
76 std::string state;
77 if (fde->state & FDE_ACTIVE) {
78 state += "A";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 }
Yabin Cuia1080162015-09-04 16:19:56 -070080 if (fde->state & FDE_PENDING) {
81 state += "P";
82 }
83 if (fde->state & FDE_CREATED) {
84 state += "C";
85 }
86 if (fde->state & FDE_READ) {
87 state += "R";
88 }
89 if (fde->state & FDE_WRITE) {
90 state += "W";
91 }
92 if (fde->state & FDE_ERROR) {
93 state += "E";
94 }
95 if (fde->state & FDE_DONT_CLOSE) {
96 state += "D";
97 }
98 return android::base::StringPrintf("(fdevent %d %s)", fde->fd, state.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080099}
100
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800101fdevent *fdevent_create(int fd, fd_func func, void *arg)
102{
103 fdevent *fde = (fdevent*) malloc(sizeof(fdevent));
104 if(fde == 0) return 0;
105 fdevent_install(fde, fd, func, arg);
106 fde->state |= FDE_CREATED;
107 return fde;
108}
109
110void fdevent_destroy(fdevent *fde)
111{
112 if(fde == 0) return;
113 if(!(fde->state & FDE_CREATED)) {
Yabin Cuia1080162015-09-04 16:19:56 -0700114 LOG(FATAL) << "destroying fde not created by fdevent_create(): " << dump_fde(fde);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800115 }
116 fdevent_remove(fde);
SungHyun Kwonabb80e02015-03-03 13:56:42 +0900117 free(fde);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118}
119
Yabin Cuia1080162015-09-04 16:19:56 -0700120void fdevent_install(fdevent* fde, int fd, fd_func func, void* arg) {
121 CHECK_GE(fd, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800122 memset(fde, 0, sizeof(fdevent));
123 fde->state = FDE_ACTIVE;
124 fde->fd = fd;
125 fde->func = func;
126 fde->arg = arg;
Yabin Cuia1080162015-09-04 16:19:56 -0700127 if (fcntl(fd, F_SETFL, O_NONBLOCK) != 0) {
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700128 // Here is not proper to handle the error. If it fails here, some error is
129 // likely to be detected by poll(), then we can let the callback function
130 // to handle it.
131 LOG(ERROR) << "failed to fcntl(" << fd << ") to be nonblock";
Yabin Cuia1080162015-09-04 16:19:56 -0700132 }
133 auto pair = g_poll_node_map.emplace(fde->fd, PollNode(fde));
134 CHECK(pair.second) << "install existing fd " << fd;
135 D("fdevent_install %s", dump_fde(fde).c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800136}
137
Yabin Cuia1080162015-09-04 16:19:56 -0700138void fdevent_remove(fdevent* fde) {
139 D("fdevent_remove %s", dump_fde(fde).c_str());
140 if (fde->state & FDE_ACTIVE) {
141 g_poll_node_map.erase(fde->fd);
142 if (fde->state & FDE_PENDING) {
143 g_pending_list.remove(fde);
144 }
145 if (!(fde->state & FDE_DONT_CLOSE)) {
146 adb_close(fde->fd);
147 fde->fd = -1;
148 }
149 fde->state = 0;
150 fde->events = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800151 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152}
153
Yabin Cuia1080162015-09-04 16:19:56 -0700154static void fdevent_update(fdevent* fde, unsigned events) {
155 auto it = g_poll_node_map.find(fde->fd);
156 CHECK(it != g_poll_node_map.end());
157 PollNode& node = it->second;
158 if (events & FDE_READ) {
159 node.pollfd.events |= POLLIN;
160 } else {
161 node.pollfd.events &= ~POLLIN;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162 }
163
Yabin Cuia1080162015-09-04 16:19:56 -0700164 if (events & FDE_WRITE) {
165 node.pollfd.events |= POLLOUT;
166 } else {
167 node.pollfd.events &= ~POLLOUT;
168 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800169 fde->state = (fde->state & FDE_STATEMASK) | events;
Yabin Cuia1080162015-09-04 16:19:56 -0700170}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800171
Yabin Cuia1080162015-09-04 16:19:56 -0700172void fdevent_set(fdevent* fde, unsigned events) {
173 events &= FDE_EVENTMASK;
174 if ((fde->state & FDE_EVENTMASK) == events) {
175 return;
176 }
177 if (fde->state & FDE_ACTIVE) {
178 fdevent_update(fde, events);
179 D("fdevent_set: %s, events = %u", dump_fde(fde).c_str(), events);
180
181 if (fde->state & FDE_PENDING) {
182 // If we are pending, make sure we don't signal an event that is no longer wanted.
183 fde->events &= ~events;
184 if (fde->events == 0) {
185 g_pending_list.remove(fde);
186 fde->state &= ~FDE_PENDING;
187 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800188 }
189 }
190}
191
Yabin Cuia1080162015-09-04 16:19:56 -0700192void fdevent_add(fdevent* fde, unsigned events) {
193 fdevent_set(fde, (fde->state & FDE_EVENTMASK) | events);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800194}
195
Yabin Cuia1080162015-09-04 16:19:56 -0700196void fdevent_del(fdevent* fde, unsigned events) {
197 fdevent_set(fde, (fde->state & FDE_EVENTMASK) & ~events);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800198}
199
Yabin Cuia1080162015-09-04 16:19:56 -0700200static std::string dump_pollfds(const std::vector<pollfd>& pollfds) {
201 std::string result;
202 for (auto& pollfd : pollfds) {
203 std::string op;
204 if (pollfd.events & POLLIN) {
205 op += "R";
206 }
207 if (pollfd.events & POLLOUT) {
208 op += "W";
209 }
210 android::base::StringAppendF(&result, " %d(%s)", pollfd.fd, op.c_str());
211 }
212 return result;
213}
214
215static void fdevent_process() {
216 std::vector<pollfd> pollfds;
217 for (auto it = g_poll_node_map.begin(); it != g_poll_node_map.end(); ++it) {
218 pollfds.push_back(it->second.pollfd);
219 }
220 CHECK_GT(pollfds.size(), 0u);
221 D("poll(), pollfds = %s", dump_pollfds(pollfds).c_str());
222 int ret = TEMP_FAILURE_RETRY(poll(&pollfds[0], pollfds.size(), -1));
223 if (ret == -1) {
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700224 PLOG(ERROR) << "poll(), ret = " << ret;
225 return;
Yabin Cuia1080162015-09-04 16:19:56 -0700226 }
227 for (auto& pollfd : pollfds) {
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700228 if (pollfd.revents != 0) {
229 D("for fd %d, revents = %x", pollfd.fd, pollfd.revents);
230 }
Yabin Cuia1080162015-09-04 16:19:56 -0700231 unsigned events = 0;
232 if (pollfd.revents & POLLIN) {
233 events |= FDE_READ;
234 }
235 if (pollfd.revents & POLLOUT) {
236 events |= FDE_WRITE;
237 }
238 if (pollfd.revents & (POLLERR | POLLHUP | POLLNVAL)) {
239 // We fake a read, as the rest of the code assumes that errors will
240 // be detected at that point.
241 events |= FDE_READ | FDE_ERROR;
242 }
Yabin Cuiaa77e222015-09-29 12:25:33 -0700243#if defined(__linux__)
244 if (pollfd.revents & POLLRDHUP) {
245 events |= FDE_READ | FDE_ERROR;
246 }
247#endif
Yabin Cuia1080162015-09-04 16:19:56 -0700248 if (events != 0) {
249 auto it = g_poll_node_map.find(pollfd.fd);
250 CHECK(it != g_poll_node_map.end());
251 fdevent* fde = it->second.fde;
252 CHECK_EQ(fde->fd, pollfd.fd);
253 fde->events |= events;
254 D("%s got events %x", dump_fde(fde).c_str(), events);
255 fde->state |= FDE_PENDING;
256 g_pending_list.push_back(fde);
257 }
258 }
259}
260
261static void fdevent_call_fdfunc(fdevent* fde)
262{
263 unsigned events = fde->events;
264 fde->events = 0;
265 if(!(fde->state & FDE_PENDING)) return;
266 fde->state &= (~FDE_PENDING);
267 D("fdevent_call_fdfunc %s", dump_fde(fde).c_str());
268 fde->func(fde->fd, events, fde->arg);
269}
270
271#if !ADB_HOST
272static void fdevent_subproc_event_func(int fd, unsigned ev,
273 void* /* userdata */)
274{
275
276 D("subproc handling on fd = %d, ev = %x", fd, ev);
277
278 CHECK_GE(fd, 0);
279
280 if (ev & FDE_READ) {
281 int subproc_fd;
282
283 if(!ReadFdExactly(fd, &subproc_fd, sizeof(subproc_fd))) {
284 LOG(FATAL) << "Failed to read the subproc's fd from " << fd;
285 }
286 auto it = g_poll_node_map.find(subproc_fd);
287 if (it == g_poll_node_map.end()) {
288 D("subproc_fd %d cleared from fd_table", subproc_fd);
289 return;
290 }
291 fdevent* subproc_fde = it->second.fde;
292 if(subproc_fde->fd != subproc_fd) {
293 // Already reallocated?
294 D("subproc_fd(%d) != subproc_fde->fd(%d)", subproc_fd, subproc_fde->fd);
295 return;
296 }
297
298 subproc_fde->force_eof = 1;
299
300 int rcount = 0;
301 ioctl(subproc_fd, FIONREAD, &rcount);
302 D("subproc with fd %d has rcount=%d, err=%d", subproc_fd, rcount, errno);
303 if (rcount != 0) {
304 // If there is data left, it will show up in the select().
305 // This works because there is no other thread reading that
306 // data when in this fd_func().
307 return;
308 }
309
310 D("subproc_fde %s", dump_fde(subproc_fde).c_str());
311 subproc_fde->events |= FDE_READ;
312 if(subproc_fde->state & FDE_PENDING) {
313 return;
314 }
315 subproc_fde->state |= FDE_PENDING;
316 fdevent_call_fdfunc(subproc_fde);
317 }
318}
319
320void fdevent_subproc_setup()
321{
322 int s[2];
323
324 if(adb_socketpair(s)) {
325 PLOG(FATAL) << "cannot create shell-exit socket-pair";
326 }
327 D("fdevent_subproc: socket pair (%d, %d)", s[0], s[1]);
328
329 SHELL_EXIT_NOTIFY_FD = s[0];
330 fdevent *fde = fdevent_create(s[1], fdevent_subproc_event_func, NULL);
331 CHECK(fde != nullptr) << "cannot create fdevent for shell-exit handler";
332 fdevent_add(fde, FDE_READ);
333}
334#endif // !ADB_HOST
335
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800336void fdevent_loop()
337{
Alex Vallée947cb3e2015-07-17 15:30:59 -0400338#if !ADB_HOST
JP Abgrall408fa572011-03-16 15:57:42 -0700339 fdevent_subproc_setup();
Alex Vallée947cb3e2015-07-17 15:30:59 -0400340#endif // !ADB_HOST
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +0200341
Elliott Hughesaa245492015-08-03 10:38:08 -0700342 while (true) {
Yabin Cuia1080162015-09-04 16:19:56 -0700343 D("--- --- waiting for events");
JP Abgrall408fa572011-03-16 15:57:42 -0700344
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800345 fdevent_process();
David 'Digit' Turnerf6330a22009-05-18 17:36:28 +0200346
Yabin Cuia1080162015-09-04 16:19:56 -0700347 while (!g_pending_list.empty()) {
348 fdevent* fde = g_pending_list.front();
349 g_pending_list.pop_front();
JP Abgrall408fa572011-03-16 15:57:42 -0700350 fdevent_call_fdfunc(fde);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800351 }
352 }
353}
Yabin Cuic1b1f6f2015-09-15 16:27:09 -0700354
355size_t fdevent_installed_count() {
356 return g_poll_node_map.size();
357}
358
359void fdevent_reset() {
360 g_poll_node_map.clear();
361 g_pending_list.clear();
362}