src/java.base/linux/native/libnio/ch/EPollArrayWrapper.c
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 37789 jdk/src/java.base/linux/native/libnio/ch/EPollArrayWrapper.c@d18410086785
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
37789
d18410086785 8153192: (se) Selector.select(long) uses wrong timeout after EINTR (lnx)
bpb
parents: 25859
diff changeset
     2
 * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "sun_nio_ch_EPollArrayWrapper.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include <unistd.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include <sys/time.h>
12672
6daea025e1dd 7166048: Remove the embeded epoll data structure.
zhouyx
parents: 5506
diff changeset
    35
#include <sys/epoll.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#define RESTARTABLE(_cmd, _result) do { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
  do { \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    _result = _cmd; \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
  } while((_result == -1) && (errno == EINTR)); \
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
} while(0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
static int
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
iepoll(int epfd, struct epoll_event *events, int numfds, jlong timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    jlong start, now;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    int remaining = timeout;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    struct timeval t;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    int diff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    gettimeofday(&t, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    start = t.tv_sec * 1000 + t.tv_usec / 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    for (;;) {
37789
d18410086785 8153192: (se) Selector.select(long) uses wrong timeout after EINTR (lnx)
bpb
parents: 25859
diff changeset
    56
        int res = epoll_wait(epfd, events, numfds, remaining);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        if (res < 0 && errno == EINTR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            if (remaining >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                gettimeofday(&t, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                now = t.tv_sec * 1000 + t.tv_usec / 1000;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                diff = now - start;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                remaining -= diff;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                if (diff < 0 || remaining <= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                start = now;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
            return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
Java_sun_nio_ch_EPollArrayWrapper_init(JNIEnv *env, jclass this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
Java_sun_nio_ch_EPollArrayWrapper_epollCreate(JNIEnv *env, jobject this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * epoll_create expects a size as a hint to the kernel about how to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * dimension internal structures. We can't predict the size in advance.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     */
12672
6daea025e1dd 7166048: Remove the embeded epoll data structure.
zhouyx
parents: 5506
diff changeset
    86
    int epfd = epoll_create(256);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    if (epfd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
       JNU_ThrowIOExceptionWithLastError(env, "epoll_create failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    return epfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
JNIEXPORT jint JNICALL
1142
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    94
Java_sun_nio_ch_EPollArrayWrapper_sizeofEPollEvent(JNIEnv* env, jclass this)
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    95
{
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    96
    return sizeof(struct epoll_event);
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    97
}
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    98
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
    99
JNIEXPORT jint JNICALL
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
   100
Java_sun_nio_ch_EPollArrayWrapper_offsetofData(JNIEnv* env, jclass this)
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
   101
{
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
   102
    return offsetof(struct epoll_event, data);
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
   103
}
e01e390f6551 6728542: (se) epoll based SelectorProvider should be portable to platforms other than x86 and x64
alanb
parents: 2
diff changeset
   104
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
Java_sun_nio_ch_EPollArrayWrapper_epollCtl(JNIEnv *env, jobject this, jint epfd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                                           jint opcode, jint fd, jint events)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    struct epoll_event event;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    int res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    event.events = events;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    event.data.fd = fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
12672
6daea025e1dd 7166048: Remove the embeded epoll data structure.
zhouyx
parents: 5506
diff changeset
   115
    RESTARTABLE(epoll_ctl(epfd, (int)opcode, (int)fd, &event), res);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * A channel may be registered with several Selectors. When each Selector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * is polled a EPOLL_CTL_DEL op will be inserted into its pending update
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * list to remove the file descriptor from epoll. The "last" Selector will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * close the file descriptor which automatically unregisters it from each
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * epoll descriptor. To avoid costly synchronization between Selectors we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * allow pending updates to be processed, ignoring errors. The errors are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * harmless as the last update for the file descriptor is guaranteed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * be EPOLL_CTL_DEL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    if (res < 0 && errno != EBADF && errno != ENOENT && errno != EPERM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        JNU_ThrowIOExceptionWithLastError(env, "epoll_ctl failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
Java_sun_nio_ch_EPollArrayWrapper_epollWait(JNIEnv *env, jobject this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                                            jlong address, jint numfds,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
                                            jlong timeout, jint epfd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    struct epoll_event *events = jlong_to_ptr(address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    int res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    if (timeout <= 0) {           /* Indefinite or no wait */
12672
6daea025e1dd 7166048: Remove the embeded epoll data structure.
zhouyx
parents: 5506
diff changeset
   141
        RESTARTABLE(epoll_wait(epfd, events, numfds, timeout), res);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    } else {                      /* Bounded wait; bounded restarts */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        res = iepoll(epfd, events, numfds, timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    if (res < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        JNU_ThrowIOExceptionWithLastError(env, "epoll_wait failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
Java_sun_nio_ch_EPollArrayWrapper_interrupt(JNIEnv *env, jobject this, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    int fakebuf[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    fakebuf[0] = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    if (write(fd, fakebuf, 1) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        JNU_ThrowIOExceptionWithLastError(env,"write to interrupt fd failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
}