1 /*
2 * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 #include <sys/ioctl.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include "jni.h"
32 #include "jni_util.h"
33 #include "jlong.h"
34 #include "io_util.h"
35 #include "io_util_md.h"
36
37 #include "jvm.h"
38
39
40 #include <fcntl.h>
41 #include <limits.h>
42
43 #include "io_util_md.h"
44 #include <nativehelper/JNIHelp.h>
45
46 #define NATIVE_METHOD(className, functionName, signature) \
47 { #functionName, signature, (void*)(className ## _ ## functionName) }
48
49 /*******************************************************************/
50 /* BEGIN JNI ********* BEGIN JNI *********** BEGIN JNI ************/
51 /*******************************************************************/
52
53 jfieldID fis_fd; /* id for jobject 'fd' in java.io.FileInputStream */
54
55 /**************************************************************
56 * Input stream
57 */
58
59
FileInputStream_initIDs(JNIEnv * env)60 static void FileInputStream_initIDs(JNIEnv *env) {
61 jclass clazz = (*env)->FindClass(env, "java/io/FileInputStream");
62 fis_fd = (*env)->GetFieldID(env, clazz, "fd", "Ljava/io/FileDescriptor;");
63 }
64
65 JNIEXPORT void JNICALL
FileInputStream_open0(JNIEnv * env,jobject this,jstring path)66 FileInputStream_open0(JNIEnv *env, jobject this, jstring path) {
67 fileOpen(env, this, path, fis_fd, O_RDONLY);
68 }
69
70 JNIEXPORT jlong JNICALL
FileInputStream_skip0(JNIEnv * env,jobject this,jlong toSkip)71 FileInputStream_skip0(JNIEnv *env, jobject this, jlong toSkip) {
72 jlong cur = jlong_zero;
73 jlong end = jlong_zero;
74 FD fd = GET_FD(this, fis_fd);
75 if (fd == -1) {
76 JNU_ThrowIOException (env, "Stream Closed");
77 return 0;
78 }
79 if ((cur = IO_Lseek(fd, (jlong)0, (jint)SEEK_CUR)) == -1) {
80 if (errno == ESPIPE) {
81 JNU_ThrowByName(env, "java/io/FileInputStream$UseManualSkipException", NULL);
82 } else {
83 JNU_ThrowIOExceptionWithLastError(env, "Seek error");
84 }
85 } else if ((end = IO_Lseek(fd, toSkip, (jint)SEEK_CUR)) == -1) {
86 JNU_ThrowIOExceptionWithLastError(env, "Seek error");
87 }
88 return (end - cur);
89 }
90
available(int fd,jlong * bytes)91 static int available(int fd, jlong *bytes) {
92 // BEGIN Android-added: Fuchsia does not support FIONREAD. http://b/120566512
93 #if defined(__Fuchsia__)
94 *bytes = 0;
95 return 1;
96 #else
97 // END Android-added: Fuchsia does not support FIONREAD. http://b/120566512
98 int n;
99 // Unlike the original OpenJdk implementation, we use FIONREAD for all file
100 // types. For regular files, this is specified to return the difference
101 // between the current position and the file size. Note that this can be
102 // negative if we're positioned past the end of the file. We must return 0
103 // in that case.
104 if (ioctl(fd, FIONREAD, &n) != -1) {
105 if (n < 0) {
106 n = 0;
107 }
108 *bytes = n;
109 return 1;
110 }
111
112 // FIONREAD is specified to return ENOTTY when fd refers to a file
113 // type for which this ioctl isn't implemented.
114 if (errno == ENOTTY) {
115 *bytes = 0;
116 return 1;
117 }
118
119 // Raise an exception for all other error types.
120 return 0;
121 // Android-added: Fuchsia does not support the FIONREAD code. http://b/120566512
122 #endif
123 }
124
125 JNIEXPORT jint JNICALL
FileInputStream_available0(JNIEnv * env,jobject this)126 FileInputStream_available0(JNIEnv *env, jobject this) {
127 jlong ret;
128 FD fd = GET_FD(this, fis_fd);
129 if (fd == -1) {
130 JNU_ThrowIOException (env, "Stream Closed");
131 return 0;
132 }
133 if (available(fd, &ret)) {
134 if (ret > INT_MAX) {
135 ret = (jlong) INT_MAX;
136 }
137 return jlong_to_jint(ret);
138 }
139 JNU_ThrowIOExceptionWithLastError(env, NULL);
140 return 0;
141 }
142
143 static JNINativeMethod gMethods[] = {
144 NATIVE_METHOD(FileInputStream, open0, "(Ljava/lang/String;)V"),
145 NATIVE_METHOD(FileInputStream, skip0, "(J)J"),
146 NATIVE_METHOD(FileInputStream, available0, "()I"),
147 };
148
register_java_io_FileInputStream(JNIEnv * env)149 void register_java_io_FileInputStream(JNIEnv* env) {
150 jniRegisterNativeMethods(env, "java/io/FileInputStream", gMethods, NELEM(gMethods));
151 FileInputStream_initIDs(env);
152 }
153