blob: 0580f8608464fe3ca725b51b2862f0c25389701c [file] [log] [blame]
Mark Salyzyn6c6ec722015-10-24 16:20:18 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
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
17#include "epoll.h"
18
Mark Salyzyn37bbf802019-03-13 07:25:52 -070019#include <stdint.h>
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070020#include <sys/epoll.h>
21
22#include <chrono>
23#include <functional>
24#include <map>
25
David Anderson0fa7c402022-03-07 19:10:57 -080026#include <android-base/logging.h>
27
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070028namespace android {
29namespace init {
30
31Epoll::Epoll() {}
32
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070033Result<void> Epoll::Open() {
34 if (epoll_fd_ >= 0) return {};
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070035 epoll_fd_.reset(epoll_create1(EPOLL_CLOEXEC));
36
37 if (epoll_fd_ == -1) {
38 return ErrnoError() << "epoll_create1 failed";
39 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070040 return {};
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070041}
42
David Anderson1de73842021-05-13 20:18:14 -070043Result<void> Epoll::RegisterHandler(int fd, Handler handler, uint32_t events) {
Mark Salyzyn37bbf802019-03-13 07:25:52 -070044 if (!events) {
45 return Error() << "Must specify events";
46 }
David Anderson0fa7c402022-03-07 19:10:57 -080047
48 Info info;
49 info.events = events;
50 info.handler = std::make_shared<decltype(handler)>(std::move(handler));
51 auto [it, inserted] = epoll_handlers_.emplace(fd, std::move(info));
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070052 if (!inserted) {
53 return Error() << "Cannot specify two epoll handlers for a given FD";
54 }
55 epoll_event ev;
Mark Salyzyn37bbf802019-03-13 07:25:52 -070056 ev.events = events;
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070057 // std::map's iterators do not get invalidated until erased, so we use the
58 // pointer to the std::function in the map directly for epoll_ctl.
59 ev.data.ptr = reinterpret_cast<void*>(&it->second);
60 if (epoll_ctl(epoll_fd_, EPOLL_CTL_ADD, fd, &ev) == -1) {
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070061 Result<void> result = ErrnoError() << "epoll_ctl failed to add fd";
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070062 epoll_handlers_.erase(fd);
63 return result;
64 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070065 return {};
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070066}
67
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070068Result<void> Epoll::UnregisterHandler(int fd) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070069 if (epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, fd, nullptr) == -1) {
70 return ErrnoError() << "epoll_ctl failed to remove fd";
71 }
72 if (epoll_handlers_.erase(fd) != 1) {
73 return Error() << "Attempting to remove epoll handler for FD without an existing handler";
74 }
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070075 return {};
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070076}
77
David Anderson1de73842021-05-13 20:18:14 -070078Result<std::vector<std::shared_ptr<Epoll::Handler>>> Epoll::Wait(
Tom Cherry905a5df2019-08-30 14:12:56 -070079 std::optional<std::chrono::milliseconds> timeout) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070080 int timeout_ms = -1;
81 if (timeout && timeout->count() < INT_MAX) {
82 timeout_ms = timeout->count();
83 }
Tom Cherry905a5df2019-08-30 14:12:56 -070084 const auto max_events = epoll_handlers_.size();
85 epoll_event ev[max_events];
86 auto num_events = TEMP_FAILURE_RETRY(epoll_wait(epoll_fd_, ev, max_events, timeout_ms));
87 if (num_events == -1) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070088 return ErrnoError() << "epoll_wait failed";
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070089 }
David Anderson1de73842021-05-13 20:18:14 -070090 std::vector<std::shared_ptr<Handler>> pending_functions;
Tom Cherry905a5df2019-08-30 14:12:56 -070091 for (int i = 0; i < num_events; ++i) {
David Anderson0fa7c402022-03-07 19:10:57 -080092 auto& info = *reinterpret_cast<Info*>(ev[i].data.ptr);
93 if ((info.events & (EPOLLIN | EPOLLPRI)) == (EPOLLIN | EPOLLPRI) &&
94 (ev[i].events & EPOLLIN) != ev[i].events) {
95 // This handler wants to know about exception events, and just got one.
96 // Log something informational.
97 LOG(ERROR) << "Received unexpected epoll event set: " << ev[i].events;
98 }
99 pending_functions.emplace_back(info.handler);
Tom Cherry905a5df2019-08-30 14:12:56 -0700100 }
101
102 return pending_functions;
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700103}
104
105} // namespace init
106} // namespace android