src/java.base/unix/native/libnio/ch/FileChannelImpl.c
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57804 9b7b9f16dfd9
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
55753
b9798272720b 8227737: avoid implicit-function-declaration on AIX
mbaesken
parents: 49897
diff changeset
     2
 * Copyright (c) 2000, 2019, 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: 2446
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: 2446
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: 2446
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2446
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 <sys/mman.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <sys/stat.h>
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    28
#include <fcntl.h>
49897
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    29
#include <sys/types.h>
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    30
#include <unistd.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
    32
#if defined(__linux__) || defined(__solaris__)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
    33
#include <sys/sendfile.h>
24575
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
    34
#elif defined(_AIX)
55753
b9798272720b 8227737: avoid implicit-function-declaration on AIX
mbaesken
parents: 49897
diff changeset
    35
#include <string.h>
24575
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
    36
#include <sys/socket.h>
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    37
#elif defined(_ALLBSD_SOURCE)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    38
#include <sys/socket.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    39
#include <sys/uio.h>
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    40
#define lseek64 lseek
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
    41
#define mmap64 mmap
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
49897
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    44
#include "jni.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    45
#include "jni_util.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    46
#include "jlong.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    47
#include "nio.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    48
#include "nio_util.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    49
#include "sun_nio_ch_FileChannelImpl.h"
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    50
#include "java_lang_Integer.h"
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    51
#include <assert.h>
49897
117501815bed 8202261: (fc) FileChannel.map and RandomAccessFile.setLength should not preallocate space
alanb
parents: 47428
diff changeset
    52
47428
d72d7d55c765 8164900: Add support for O_DIRECT
bpb
parents: 47216
diff changeset
    53
static jfieldID chan_fd;        /* jobject 'fd' in sun.nio.ch.FileChannelImpl */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
JNIEXPORT jlong JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
Java_sun_nio_ch_FileChannelImpl_initIDs(JNIEnv *env, jclass clazz)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    jlong pageSize = sysconf(_SC_PAGESIZE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    chan_fd = (*env)->GetFieldID(env, clazz, "fd", "Ljava/io/FileDescriptor;");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    return pageSize;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
static jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
handle(JNIEnv *env, jlong rv, char *msg)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    if (rv >= 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        return rv;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    if (errno == EINTR)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        return IOS_INTERRUPTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    JNU_ThrowIOExceptionWithLastError(env, msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
JNIEXPORT jlong JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
Java_sun_nio_ch_FileChannelImpl_map0(JNIEnv *env, jobject this,
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    77
                                     jint prot, jlong off, jlong len, jboolean map_sync)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    void *mapAddress = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    jobject fdo = (*env)->GetObjectField(env, this, chan_fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    jint fd = fdval(env, fdo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    int protections = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    int flags = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    85
    // should never be called with map_sync and prot == PRIVATE
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    86
    assert((prot != sun_nio_ch_FileChannelImpl_MAP_PV) || !map_sync);
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    87
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    if (prot == sun_nio_ch_FileChannelImpl_MAP_RO) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        protections = PROT_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        flags = MAP_SHARED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    } else if (prot == sun_nio_ch_FileChannelImpl_MAP_RW) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        protections = PROT_WRITE | PROT_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        flags = MAP_SHARED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    } else if (prot == sun_nio_ch_FileChannelImpl_MAP_PV) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        protections =  PROT_WRITE | PROT_READ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        flags = MAP_PRIVATE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
    99
    // if MAP_SYNC and MAP_SHARED_VALIDATE are not defined then it is
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   100
    // best to define them here. This ensures the code compiles on old
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   101
    // OS releases which do not provide the relevant headers. If run
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   102
    // on the same machine then it will work if the kernel contains
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   103
    // the necessary support otherwise mmap should fail with an
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   104
    // invalid argument error
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   105
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   106
#ifndef MAP_SYNC
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   107
#define MAP_SYNC 0x80000
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   108
#endif
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   109
#ifndef MAP_SHARED_VALIDATE
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   110
#define MAP_SHARED_VALIDATE 0x03
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   111
#endif
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   112
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   113
    if (map_sync) {
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   114
        // ensure
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   115
        //  1) this is Linux on AArch64 or x86_64
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   116
        //  2) the mmap APIs are available/ at compile time
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   117
#if !defined(LINUX) || ! (defined(aarch64) || (defined(amd64) && defined(_LP64)))
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   118
        // TODO - implement for solaris/AIX/BSD/WINDOWS and for 32 bit
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   119
        JNU_ThrowInternalError(env, "should never call map on platform where MAP_SYNC is unimplemented");
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   120
        return IOS_THROWN;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   121
#else
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   122
        flags |= MAP_SYNC | MAP_SHARED_VALIDATE;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   123
#endif
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   124
    }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   125
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    mapAddress = mmap64(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        0,                    /* Let OS decide location */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        len,                  /* Number of bytes to map */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        protections,          /* File permissions */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        flags,                /* Changes are shared */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        fd,                   /* File descriptor of mapped file */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        off);                 /* Offset into file */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    if (mapAddress == MAP_FAILED) {
57804
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   135
        if (map_sync && errno == ENOTSUP) {
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   136
            JNU_ThrowIOExceptionWithLastError(env, "map with mode MAP_SYNC unsupported");
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   137
            return IOS_THROWN;
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   138
        }
9b7b9f16dfd9 8224974: Implement JEP 352
adinn
parents: 55753
diff changeset
   139
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (errno == ENOMEM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            JNU_ThrowOutOfMemoryError(env, "Map failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        return handle(env, -1, "Map failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    return ((jlong) (unsigned long) mapAddress);
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 jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
Java_sun_nio_ch_FileChannelImpl_unmap0(JNIEnv *env, jobject this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                                       jlong address, jlong len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    void *a = (void *)jlong_to_ptr(address);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    return handle(env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                  munmap(a, (size_t)len),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                  "Unmap failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
JNIEXPORT jlong JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
Java_sun_nio_ch_FileChannelImpl_transferTo0(JNIEnv *env, jobject this,
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 25859
diff changeset
   163
                                            jobject srcFDO,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                                            jlong position, jlong count,
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 25859
diff changeset
   165
                                            jobject dstFDO)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
{
27937
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 25859
diff changeset
   167
    jint srcFD = fdval(env, srcFDO);
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 25859
diff changeset
   168
    jint dstFD = fdval(env, dstFDO);
0c9f63e42e91 8064407: (fc) FileChannel transferTo should use TransmitFile on Windows
alanb
parents: 25859
diff changeset
   169
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   170
#if defined(__linux__)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   171
    off64_t offset = (off64_t)position;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   172
    jlong n = sendfile64(dstFD, srcFD, &offset, (size_t)count);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    if (n < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if (errno == EAGAIN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            return IOS_UNAVAILABLE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        if ((errno == EINVAL) && ((ssize_t)count >= 0))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            return IOS_UNSUPPORTED_CASE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        if (errno == EINTR) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            return IOS_INTERRUPTED;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        JNU_ThrowIOExceptionWithLastError(env, "Transfer failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        return IOS_THROWN;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    return n;
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   185
#elif defined (__solaris__)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   186
    sendfilevec64_t sfv;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   187
    size_t numBytes = 0;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   188
    jlong result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   190
    sfv.sfv_fd = srcFD;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   191
    sfv.sfv_flag = 0;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   192
    sfv.sfv_off = (off64_t)position;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   193
    sfv.sfv_len = count;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   195
    result = sendfilev64(dstFD, &sfv, 1, &numBytes);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   197
    /* Solaris sendfilev() will return -1 even if some bytes have been
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   198
     * transferred, so we check numBytes first.
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   199
     */
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   200
    if (numBytes > 0)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   201
        return numBytes;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   202
    if (result < 0) {
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   203
        if (errno == EAGAIN)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   204
            return IOS_UNAVAILABLE;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   205
        if (errno == EOPNOTSUPP)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   206
            return IOS_UNSUPPORTED_CASE;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   207
        if ((errno == EINVAL) && ((ssize_t)count >= 0))
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   208
            return IOS_UNSUPPORTED_CASE;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   209
        if (errno == EINTR)
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   210
            return IOS_INTERRUPTED;
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   211
        JNU_ThrowIOExceptionWithLastError(env, "Transfer failed");
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   212
        return IOS_THROWN;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   214
    return result;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   215
#elif defined(__APPLE__)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   216
    off_t numBytes;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   217
    int result;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   218
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   219
    numBytes = count;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   220
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   221
    result = sendfile(srcFD, dstFD, position, &numBytes, NULL, 0);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   222
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   223
    if (numBytes > 0)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   224
        return numBytes;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   225
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   226
    if (result == -1) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   227
        if (errno == EAGAIN)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   228
            return IOS_UNAVAILABLE;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   229
        if (errno == EOPNOTSUPP || errno == ENOTSOCK || errno == ENOTCONN)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   230
            return IOS_UNSUPPORTED_CASE;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   231
        if ((errno == EINVAL) && ((ssize_t)count >= 0))
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   232
            return IOS_UNSUPPORTED_CASE;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   233
        if (errno == EINTR)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   234
            return IOS_INTERRUPTED;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   235
        JNU_ThrowIOExceptionWithLastError(env, "Transfer failed");
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   236
        return IOS_THROWN;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   237
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   238
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 9035
diff changeset
   239
    return result;
24575
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   240
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   241
#elif defined(_AIX)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   242
    jlong max = (jlong)java_lang_Integer_MAX_VALUE;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   243
    struct sf_parms sf_iobuf;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   244
    jlong result;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   245
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   246
    if (position > max)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   247
        return IOS_UNSUPPORTED_CASE;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   248
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   249
    if (count > max)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   250
        count = max;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   251
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   252
    memset(&sf_iobuf, 0, sizeof(sf_iobuf));
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   253
    sf_iobuf.file_descriptor = srcFD;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   254
    sf_iobuf.file_offset = (off_t)position;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   255
    sf_iobuf.file_bytes = count;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   256
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   257
    result = send_file(&dstFD, &sf_iobuf, SF_SYNC_CACHE);
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   258
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   259
    /* AIX send_file() will return 0 when this operation complete successfully,
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   260
     * return 1 when partial bytes transfered and return -1 when an error has
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   261
     * Occured.
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   262
     */
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   263
    if (result == -1) {
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   264
        if (errno == EWOULDBLOCK)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   265
            return IOS_UNAVAILABLE;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   266
        if ((errno == EINVAL) && ((ssize_t)count >= 0))
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   267
            return IOS_UNSUPPORTED_CASE;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   268
        if (errno == EINTR)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   269
            return IOS_INTERRUPTED;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   270
        if (errno == ENOTSOCK)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   271
            return IOS_UNSUPPORTED;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   272
        JNU_ThrowIOExceptionWithLastError(env, "Transfer failed");
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   273
        return IOS_THROWN;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   274
    }
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   275
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   276
    if (sf_iobuf.bytes_sent > 0)
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   277
        return (jlong)sf_iobuf.bytes_sent;
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   278
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   279
    return IOS_UNSUPPORTED_CASE;
7971
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   280
#else
ca5a32210b1b 7002957: (fc) FileChannel.transferTo fails to load libsendfile on Solaris 64-bit
alanb
parents: 5506
diff changeset
   281
    return IOS_UNSUPPORTED_CASE;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
}
24575
c1b197bb86c2 8043495: Add native FileChannelImpl.transferTo0() implementation for AIX
luchsh
parents: 14342
diff changeset
   284