blob: 719a53271aed45fe814abc1cf81a4b304e50055c [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
Bart Van Asschea1c8a622022-10-14 09:41:17 -070048 auto [it, inserted] = epoll_handlers_.emplace(
49 fd, Info{
Bart Van Asschedcd23df2022-10-14 12:55:35 -070050 .handler = std::move(handler),
Neill Kapron551c6012024-10-04 15:54:26 +000051 .events = events,
Bart Van Asschea1c8a622022-10-14 09:41:17 -070052 });
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070053 if (!inserted) {
54 return Error() << "Cannot specify two epoll handlers for a given FD";
55 }
Bart Van Asschea1c8a622022-10-14 09:41:17 -070056 epoll_event ev = {
57 .events = events,
58 .data.fd = fd,
59 };
Bart Van Asscheaee2ec82022-12-02 18:48:15 -080060 if (epoll_ctl(epoll_fd_.get(), 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) {
Bart Van Asscheaee2ec82022-12-02 18:48:15 -080069 if (epoll_ctl(epoll_fd_.get(), EPOLL_CTL_DEL, fd, nullptr) == -1) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070070 return ErrnoError() << "epoll_ctl failed to remove fd";
71 }
Bart Van Asschebc5c4a42022-10-14 09:13:19 -070072 auto it = epoll_handlers_.find(fd);
73 if (it == epoll_handlers_.end()) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070074 return Error() << "Attempting to remove epoll handler for FD without an existing handler";
75 }
Bart Van Asschebc5c4a42022-10-14 09:13:19 -070076 to_remove_.insert(it->first);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070077 return {};
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070078}
79
Bart Van Asschea2c16042022-10-14 09:35:35 -070080void Epoll::SetFirstCallback(std::function<void()> first_callback) {
81 first_callback_ = std::move(first_callback);
82}
83
Bart Van Asschebc5c4a42022-10-14 09:13:19 -070084Result<int> Epoll::Wait(std::optional<std::chrono::milliseconds> timeout) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070085 int timeout_ms = -1;
86 if (timeout && timeout->count() < INT_MAX) {
87 timeout_ms = timeout->count();
88 }
Tom Cherry905a5df2019-08-30 14:12:56 -070089 const auto max_events = epoll_handlers_.size();
90 epoll_event ev[max_events];
Bart Van Asscheaee2ec82022-12-02 18:48:15 -080091 auto num_events = TEMP_FAILURE_RETRY(epoll_wait(epoll_fd_.get(), ev, max_events, timeout_ms));
Tom Cherry905a5df2019-08-30 14:12:56 -070092 if (num_events == -1) {
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070093 return ErrnoError() << "epoll_wait failed";
Mark Salyzyn6c6ec722015-10-24 16:20:18 -070094 }
Bart Van Asschea2c16042022-10-14 09:35:35 -070095 if (num_events > 0 && first_callback_) {
96 first_callback_();
97 }
Tom Cherry905a5df2019-08-30 14:12:56 -070098 for (int i = 0; i < num_events; ++i) {
Bart Van Asscheb0177a02022-10-18 15:48:31 -070099 const auto it = epoll_handlers_.find(ev[i].data.fd);
100 if (it == epoll_handlers_.end()) {
101 continue;
102 }
103 const Info& info = it->second;
David Anderson0fa7c402022-03-07 19:10:57 -0800104 if ((info.events & (EPOLLIN | EPOLLPRI)) == (EPOLLIN | EPOLLPRI) &&
105 (ev[i].events & EPOLLIN) != ev[i].events) {
106 // This handler wants to know about exception events, and just got one.
107 // Log something informational.
108 LOG(ERROR) << "Received unexpected epoll event set: " << ev[i].events;
109 }
Bart Van Asschedcd23df2022-10-14 12:55:35 -0700110 info.handler();
Bart Van Asschebc5c4a42022-10-14 09:13:19 -0700111 for (auto fd : to_remove_) {
112 epoll_handlers_.erase(fd);
113 }
114 to_remove_.clear();
Tom Cherry905a5df2019-08-30 14:12:56 -0700115 }
Bart Van Asschebc5c4a42022-10-14 09:13:19 -0700116 return num_events;
Mark Salyzyn6c6ec722015-10-24 16:20:18 -0700117}
118
119} // namespace init
120} // namespace android