src/java.base/unix/native/libnio/ch/InheritedChannel.c
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 43889 jdk/src/java.base/unix/native/libnio/ch/InheritedChannel.c@212e765112d4
child 58295 7973073dd048
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
/*
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
     2
 * Copyright (c) 2003, 2017, 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 <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <sys/types.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#include <sys/socket.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#include <unistd.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include <fcntl.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include "net_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#include "sun_nio_ch_InheritedChannel.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
    40
static int matchFamily(SOCKETADDRESS *sa) {
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
    41
    return (sa->sa.sa_family == (ipv6_available() ? AF_INET6 : AF_INET));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
26207
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    44
JNIEXPORT void JNICALL
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    45
Java_sun_nio_ch_InheritedChannel_initIDs(JNIEnv *env, jclass cla)
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    46
{
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    47
    /* Initialize InetAddress IDs before later use of NET_XXX functions */
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    48
    initInetAddressIDs(env);
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    49
}
a02f6165d5be 8055955: (ch) Remove unnecessary initialization of InetAddress from FileChannel
chegar
parents: 25859
diff changeset
    50
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
JNIEXPORT jobject JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
Java_sun_nio_ch_InheritedChannel_peerAddress0(JNIEnv *env, jclass cla, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
{
41380
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    54
    SOCKETADDRESS sa;
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    55
    socklen_t len = sizeof(SOCKETADDRESS);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    jobject remote_ia = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    jint remote_port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
41380
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    59
    if (getpeername(fd, &sa.sa, &len) == 0) {
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
    60
        if (matchFamily(&sa)) {
43100
a7e3457672c7 8170544: Fix code scan findings in libnet
clanger
parents: 41380
diff changeset
    61
            remote_ia = NET_SockaddrToInetAddress(env, &sa, (int *)&remote_port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    return remote_ia;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
Java_sun_nio_ch_InheritedChannel_peerPort0(JNIEnv *env, jclass cla, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
{
41380
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    71
    SOCKETADDRESS sa;
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    72
    socklen_t len = sizeof(SOCKETADDRESS);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    jint remote_port = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
41380
c27cf95dd7e6 8167295: Further cleanup to the native parts of libnet/libnio
clanger
parents: 26207
diff changeset
    75
    if (getpeername(fd, &sa.sa, &len) == 0) {
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
    76
        if (matchFamily(&sa)) {
43100
a7e3457672c7 8170544: Fix code scan findings in libnet
clanger
parents: 41380
diff changeset
    77
            NET_SockaddrToInetAddress(env, &sa, (int *)&remote_port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    return remote_port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
Java_sun_nio_ch_InheritedChannel_soType0(JNIEnv *env, jclass cla, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
{
895
67f1dc69ad10 6726309: Compiler warnings in nio code
alanb
parents: 2
diff changeset
    87
    int sotype;
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
    88
    socklen_t arglen = sizeof(sotype);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    if (getsockopt(fd, SOL_SOCKET, SO_TYPE, (void *)&sotype, &arglen) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        if (sotype == SOCK_STREAM)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            return sun_nio_ch_InheritedChannel_SOCK_STREAM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        if (sotype == SOCK_DGRAM)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            return sun_nio_ch_InheritedChannel_SOCK_DGRAM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    return sun_nio_ch_InheritedChannel_UNKNOWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
Java_sun_nio_ch_InheritedChannel_dup(JNIEnv *env, jclass cla, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
   int newfd = dup(fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
   if (newfd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        JNU_ThrowIOExceptionWithLastError(env, "dup failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
   return (jint)newfd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
Java_sun_nio_ch_InheritedChannel_dup2(JNIEnv *env, jclass cla, jint fd, jint fd2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
   if (dup2(fd, fd2) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        JNU_ThrowIOExceptionWithLastError(env, "dup2 failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
Java_sun_nio_ch_InheritedChannel_open0(JNIEnv *env, jclass cla, jstring path, jint oflag)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
{
43889
212e765112d4 8174834: nio (ch): Remove #ifdef AF_INET6 guards in native coding
clanger
parents: 43100
diff changeset
   119
    const char *str;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    int oflag_actual;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /* convert to OS specific value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    switch (oflag) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        case sun_nio_ch_InheritedChannel_O_RDWR :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            oflag_actual = O_RDWR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        case sun_nio_ch_InheritedChannel_O_RDONLY :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            oflag_actual = O_RDONLY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        case sun_nio_ch_InheritedChannel_O_WRONLY :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            oflag_actual = O_WRONLY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        default :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            JNU_ThrowInternalError(env, "Unrecognized file mode");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    str = JNU_GetStringPlatformChars(env, path, NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    if (str == NULL) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        return (jint)-1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        int fd = open(str, oflag_actual);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        if (fd < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            JNU_ThrowIOExceptionWithLastError(env, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        JNU_ReleaseStringPlatformChars(env, path, str);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return (jint)fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
Java_sun_nio_ch_InheritedChannel_close0(JNIEnv *env, jclass cla, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    if (close(fd) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        JNU_ThrowIOExceptionWithLastError(env, "close failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}