src/java.base/share/native/libjava/io_util.c
author ihse
Wed, 28 Mar 2018 23:56:08 +0200
changeset 49440 396ea30afbd5
parent 47216 71c04702a3d5
child 51671 9f6903174bad
permissions -rw-r--r--
8200178: Remove mapfiles for JDK native libraries Reviewed-by: erikj, alanb, mchung, prr, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 47216
diff changeset
     2
 * Copyright (c) 1994, 2018, 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: 1773
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: 1773
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: 1773
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1773
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1773
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 <string.h>
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    28
#include <stddef.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "io_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "io_util_md.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/* IO helper functions */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    38
jint
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
readSingle(JNIEnv *env, jobject this, jfieldID fid) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    40
    jint nread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    char ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    FD fd = GET_FD(this, fid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    if (fd == -1) {
44
9291315d799d 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin
parents: 2
diff changeset
    44
        JNU_ThrowIOException(env, "Stream Closed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    }
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
    47
    nread = IO_Read(fd, &ret, 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    if (nread == 0) { /* EOF */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        return -1;
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
    50
    } else if (nread == -1) { /* error */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        JNU_ThrowIOExceptionWithLastError(env, "Read error");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    return ret & 0xFF;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
/* The maximum size of a stack-allocated buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
#define BUF_SIZE 8192
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
1768
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    60
/*
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    61
 * Returns true if the array slice defined by the given offset and length
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    62
 * is out of bounds.
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    63
 */
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    64
static int
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    65
outOfBounds(JNIEnv *env, jint off, jint len, jbyteArray array) {
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    66
    return ((off < 0) ||
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    67
            (len < 0) ||
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    68
            // We are very careful to avoid signed integer overflow,
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    69
            // the result of which is undefined in C.
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    70
            ((*env)->GetArrayLength(env, array) - off < len));
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    71
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    73
jint
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
readBytes(JNIEnv *env, jobject this, jbyteArray bytes,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
          jint off, jint len, jfieldID fid)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
{
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    77
    jint nread;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    char stackBuf[BUF_SIZE];
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    79
    char *buf = NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    FD fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    if (IS_NULL(bytes)) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    83
        JNU_ThrowNullPointerException(env, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
1768
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
    87
    if (outOfBounds(env, off, len, bytes)) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    88
        JNU_ThrowByName(env, "java/lang/IndexOutOfBoundsException", NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    if (len == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    } else if (len > BUF_SIZE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        buf = malloc(len);
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    96
        if (buf == NULL) {
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
    97
            JNU_ThrowOutOfMemoryError(env, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        buf = stackBuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    fd = GET_FD(this, fid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    if (fd == -1) {
44
9291315d799d 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin
parents: 2
diff changeset
   106
        JNU_ThrowIOException(env, "Stream Closed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        nread = -1;
1769
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   108
    } else {
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   109
        nread = IO_Read(fd, buf, len);
1769
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   110
        if (nread > 0) {
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   111
            (*env)->SetByteArrayRegion(env, bytes, off, nread, (jbyte *)buf);
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
   112
        } else if (nread == -1) {
1769
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   113
            JNU_ThrowIOExceptionWithLastError(env, "Read error");
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   114
        } else { /* EOF */
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   115
            nread = -1;
27a33d1b16ec 6791458: FileInputStream/RandomAccessFile.read leaks memory if invoked on closed stream with len > 8k
martin
parents: 1768
diff changeset
   116
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    if (buf != stackBuf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        free(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    return nread;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
void
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   126
writeSingle(JNIEnv *env, jobject this, jint byte, jboolean append, jfieldID fid) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   127
    // Discard the 24 high-order bits of byte. See OutputStream#write(int)
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   128
    char c = (char) byte;
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   129
    jint n;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    FD fd = GET_FD(this, fid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    if (fd == -1) {
44
9291315d799d 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin
parents: 2
diff changeset
   132
        JNU_ThrowIOException(env, "Stream Closed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   135
    if (append == JNI_TRUE) {
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   136
        n = IO_Append(fd, &c, 1);
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   137
    } else {
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   138
        n = IO_Write(fd, &c, 1);
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   139
    }
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
   140
    if (n == -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        JNU_ThrowIOExceptionWithLastError(env, "Write error");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
void
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
writeBytes(JNIEnv *env, jobject this, jbyteArray bytes,
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   147
           jint off, jint len, jboolean append, jfieldID fid)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
{
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   149
    jint n;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
    char stackBuf[BUF_SIZE];
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   151
    char *buf = NULL;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    FD fd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    if (IS_NULL(bytes)) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   155
        JNU_ThrowNullPointerException(env, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
1768
27f2d52ea088 6788196: (porting) Bounds checks in io_util.c rely on undefined behaviour
martin
parents: 715
diff changeset
   159
    if (outOfBounds(env, off, len, bytes)) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   160
        JNU_ThrowByName(env, "java/lang/IndexOutOfBoundsException", NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    if (len == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    } else if (len > BUF_SIZE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        buf = malloc(len);
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   168
        if (buf == NULL) {
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   169
            JNU_ThrowOutOfMemoryError(env, NULL);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        buf = stackBuf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    (*env)->GetByteArrayRegion(env, bytes, off, len, (jbyte *)buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    if (!(*env)->ExceptionOccurred(env)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        off = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        while (len > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            fd = GET_FD(this, fid);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            if (fd == -1) {
44
9291315d799d 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin
parents: 2
diff changeset
   183
                JNU_ThrowIOException(env, "Stream Closed");
9291315d799d 6632696: Writing to closed output files (writeBytes) leaks native memory (unix)
martin
parents: 2
diff changeset
   184
                break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            }
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   186
            if (append == JNI_TRUE) {
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   187
                n = IO_Append(fd, buf+off, len);
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   188
            } else {
11116
3e486ce0019d 7030624: size_t usages in src/windows/native/java/io/io_util_md.c need to be re-visited
alanb
parents: 9035
diff changeset
   189
                n = IO_Write(fd, buf+off, len);
7515
43202796198e 6709457: (fc) lock/tryLock() throws IOException "Access is denied" when file opened for append [win]
alanb
parents: 5506
diff changeset
   190
            }
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
   191
            if (n == -1) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                JNU_ThrowIOExceptionWithLastError(env, "Write error");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            off += n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            len -= n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    if (buf != stackBuf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        free(buf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 47216
diff changeset
   204
JNIEXPORT void JNICALL
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
throwFileNotFoundException(JNIEnv *env, jstring path)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    char buf[256];
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
   208
    size_t n;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    jobject x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    jstring why = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
16476
e269be167fae 8001334: Remove use of JVM_* functions from java.io code
dxu
parents: 11116
diff changeset
   212
    n = getLastErrorString(buf, sizeof(buf));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    if (n > 0) {
19032
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
   214
#ifdef WIN32
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
   215
        why = (*env)->NewStringUTF(env, buf);
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
   216
#else
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   217
        why = JNU_NewStringPlatform(env, buf);
19032
e31afe87fb92 8016579: (process) IOException thrown by ProcessBuilder.start() method is incorrectly encoded
uta
parents: 16476
diff changeset
   218
#endif
22641
e47f8892133e 8033372: Check jdk/src/share/native/java/lang for JNI pending exception issues
alanb
parents: 19032
diff changeset
   219
        CHECK_NULL(why);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    x = JNU_NewObjectByName(env,
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   222
                            "java/io/FileNotFoundException",
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   223
                            "(Ljava/lang/String;Ljava/lang/String;)V",
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   224
                            path, why);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    if (x != NULL) {
1773
1be34caf9662 6792066: src/share/native/java/io/io_util.c clean-ups
martin
parents: 1769
diff changeset
   226
        (*env)->Throw(env, x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
}