java-topology/src/java.base/linux/classes/sun/nio/ch/EPollPoller.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

157 lines
5 KiB
Java

/*
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.nio.ch;
import java.io.IOException;
import java.lang.ref.Cleaner.Cleanable;
import jdk.internal.ref.CleanerFactory;
import static sun.nio.ch.EPoll.*;
/**
* Poller implementation based on the epoll facility.
*/
class EPollPoller extends Poller {
private static final int ENOENT = 2;
private final int epfd;
private final int event;
private final int maxEvents;
private final long address;
private final EventFD eventfd; // wakeup event, used for shutdown
// close action, and cleaner if this is subpoller
private final Runnable closer;
private final Cleanable cleaner;
EPollPoller(Poller.Mode mode, boolean subPoller, boolean read) throws IOException {
boolean wakeable = (mode == Mode.POLLER_PER_CARRIER) && subPoller;
int maxEvents = (subPoller) ? 16 : 64;
int epfd = EPoll.create();
long address = 0L;
EventFD eventfd = null;
try {
address = EPoll.allocatePollArray(maxEvents);
// register one end of the pipe with epoll to allow for wakeup
if (wakeable) {
eventfd = new EventFD();
IOUtil.configureBlocking(eventfd.efd(), false);
EPoll.ctl(epfd, EPOLL_CTL_ADD, eventfd.efd(), EPOLLIN);
}
} catch (Throwable e) {
FileDispatcherImpl.closeIntFD(epfd);
if (address != 0L) EPoll.freePollArray(address);
if (eventfd != null) eventfd.close();
throw e;
}
this.epfd = epfd;
this.event = (read) ? EPOLLIN : EPOLLOUT;
this.maxEvents = maxEvents;
this.address = address;
this.eventfd = eventfd;
// create action to close epoll instance, register cleaner when wakeable
this.closer = closer(epfd, address, eventfd);
if (wakeable) {
this.cleaner = CleanerFactory.cleaner().register(this, closer);
} else {
this.cleaner = null;
}
}
/**
* Returns an action to close the epoll instance and release other resources.
*/
private static Runnable closer(int epfd, long address, EventFD eventfd) {
return () -> {
try {
FileDispatcherImpl.closeIntFD(epfd);
EPoll.freePollArray(address);
if (eventfd != null) eventfd.close();
} catch (IOException _) { }
};
}
@Override
void close() {
if (cleaner != null) {
cleaner.clean();
} else {
closer.run();
}
}
@Override
int fdVal() {
return epfd;
}
@Override
void implStartPoll(int fdVal) throws IOException {
// re-enable if already registered but disabled (previously polled)
int err = EPoll.ctl(epfd, EPOLL_CTL_MOD, fdVal, (event | EPOLLONESHOT));
if (err == ENOENT)
err = EPoll.ctl(epfd, EPOLL_CTL_ADD, fdVal, (event | EPOLLONESHOT));
if (err != 0)
throw new IOException("epoll_ctl failed: " + err);
}
@Override
void implStopPoll(int fdVal, boolean polled) {
// event is disabled if already polled
if (!polled) {
EPoll.ctl(epfd, EPOLL_CTL_DEL, fdVal, 0);
}
}
@Override
void wakeupPoller() throws IOException {
if (eventfd == null) {
throw new UnsupportedOperationException();
}
eventfd.set();
}
@Override
int poll(int timeout) throws IOException {
int n = EPoll.wait(epfd, address, maxEvents, timeout);
int polled = 0;
int i = 0;
while (i < n) {
long eventAddress = EPoll.getEvent(address, i);
int fd = EPoll.getDescriptor(eventAddress);
if (eventfd == null || fd != eventfd.efd()) {
polled(fd);
polled++;
}
i++;
}
return polled;
}
}