package org.apache.catalina.connector;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import jakarta.servlet.ReadListener;
import jakarta.servlet.ServletInputStream;
import org.apache.catalina.security.SecurityUtil;
import org.apache.tomcat.util.res.StringManager;
public class CoyoteInputStream extends ServletInputStream {
protected static final StringManager sm = StringManager.getManager(CoyoteInputStream.class);
protected InputBuffer ib;
protected CoyoteInputStream(InputBuffer ib) {
this.ib = ib;
}
void clear() {
ib = null;
}
@Override
protected Object clone() throws CloneNotSupportedException {
throw new CloneNotSupportedException();
}
@Override
public int read() throws IOException {
checkNonBlockingRead();
if (SecurityUtil.isPackageProtectionEnabled()) {
try {
Integer result = AccessController.doPrivileged(new PrivilegedRead(ib));
return result.intValue();
} catch (PrivilegedActionException pae) {
Exception e = pae.getException();
if (e instanceof IOException) {
throw (IOException) e;
} else {
throw new RuntimeException(e.getMessage(), e);
}
}
} else {
return ib.readByte();
}
}
@Override
public int available() throws IOException {
if (SecurityUtil.isPackageProtectionEnabled()) {
try {
Integer result = AccessController.doPrivileged(new PrivilegedAvailable(ib));
return result.intValue();
} catch (PrivilegedActionException pae) {
Exception e = pae.getException();
if (e instanceof IOException) {
throw (IOException) e;
} else {
throw new RuntimeException(e.getMessage(), e);
}
}
} else {
return ib.available();
}
}
@Override
public int read(final byte[] b) throws IOException {
return read(b, 0, b.length);
}
@Override
public int read(final byte[] b, final int off, final int len) throws IOException {
checkNonBlockingRead();
if (SecurityUtil.isPackageProtectionEnabled()) {
try {
Integer result = AccessController.doPrivileged(
new PrivilegedReadArray(ib, b, off, len));
return result.intValue();
} catch (PrivilegedActionException pae) {
Exception e = pae.getException();
if (e instanceof IOException) {
throw (IOException) e;
} else {
throw new RuntimeException(e.getMessage(), e);
}
}
} else {
return ib.read(b, off, len);
}
}
public int read(final ByteBuffer b) throws IOException {
checkNonBlockingRead();
if (SecurityUtil.isPackageProtectionEnabled()) {
try {
Integer result = AccessController.doPrivileged(new PrivilegedReadBuffer(ib, b));
return result.intValue();
} catch (PrivilegedActionException pae) {
Exception e = pae.getException();
if (e instanceof IOException) {
throw (IOException) e;
} else {
throw new RuntimeException(e.getMessage(), e);
}
}
} else {
return ib.read(b);
}
}
@Override
public void close() throws IOException {
if (SecurityUtil.isPackageProtectionEnabled()) {
try {
AccessController.doPrivileged(new PrivilegedClose(ib));
} catch (PrivilegedActionException pae) {
Exception e = pae.getException();
if (e instanceof IOException) {
throw (IOException) e;
} else {
throw new RuntimeException(e.getMessage(), e);
}
}
} else {
ib.close();
}
}
@Override
public boolean isFinished() {
return ib.isFinished();
}
@Override
public boolean isReady() {
return ib.isReady();
}
@Override
public void setReadListener(ReadListener listener) {
ib.setReadListener(listener);
}
private void checkNonBlockingRead() {
if (!ib.isBlocking() && !ib.isReady()) {
throw new IllegalStateException(sm.getString("coyoteInputStream.nbNotready"));
}
}
private static class PrivilegedAvailable implements PrivilegedExceptionAction<Integer> {
private final InputBuffer inputBuffer;
public PrivilegedAvailable(InputBuffer inputBuffer) {
this.inputBuffer = inputBuffer;
}
@Override
public Integer run() throws IOException {
return Integer.valueOf(inputBuffer.available());
}
}
private static class PrivilegedClose implements PrivilegedExceptionAction<Void> {
private final InputBuffer inputBuffer;
public PrivilegedClose(InputBuffer inputBuffer) {
this.inputBuffer = inputBuffer;
}
@Override
public Void run() throws IOException {
inputBuffer.close();
return null;
}
}
private static class PrivilegedRead implements PrivilegedExceptionAction<Integer> {
private final InputBuffer inputBuffer;
public PrivilegedRead(InputBuffer inputBuffer) {
this.inputBuffer = inputBuffer;
}
@Override
public Integer run() throws IOException {
Integer integer = Integer.valueOf(inputBuffer.readByte());
return integer;
}
}
private static class PrivilegedReadArray implements PrivilegedExceptionAction<Integer> {
private final InputBuffer inputBuffer;
private final byte[] buf;
private final int off;
private final int len;
public PrivilegedReadArray(InputBuffer inputBuffer, byte[] buf, int off, int len) {
this.inputBuffer = inputBuffer;
this.buf = buf;
this.off = off;
this.len = len;
}
@Override
public Integer run() throws IOException {
Integer integer = Integer.valueOf(inputBuffer.read(buf, off, len));
return integer;
}
}
private static class PrivilegedReadBuffer implements PrivilegedExceptionAction<Integer> {
private final InputBuffer inputBuffer;
private final ByteBuffer bb;
public PrivilegedReadBuffer(InputBuffer inputBuffer, ByteBuffer bb) {
this.inputBuffer = inputBuffer;
this.bb = bb;
}
@Override
public Integer run() throws IOException {
Integer integer = Integer.valueOf(inputBuffer.read(bb));
return integer;
}
}
}