java-topology/src/java.net.http/share/classes/jdk/internal/net/http/LimitingSubscriber.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com

Patches, unit tests, benchmarks, whitepaper, and outreach briefs.
Public domain — no copyright claimed. Use freely.
2026-03-26 17:11:57 -04:00

148 lines
4.7 KiB
Java

/*
* Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jdk.internal.net.http;
import jdk.internal.net.http.ResponseSubscribers.TrustedSubscriber;
import jdk.internal.net.http.common.Utils;
import java.io.IOException;
import java.net.http.HttpResponse.BodySubscriber;
import java.nio.ByteBuffer;
import java.util.List;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.Flow.Subscription;
import static java.util.Objects.requireNonNull;
/**
* A subscriber limiting the maximum number of bytes that are allowed to be consumed by a downstream subscriber.
*
* @param <T> the response type
*/
public final class LimitingSubscriber<T> implements TrustedSubscriber<T> {
private final BodySubscriber<T> downstreamSubscriber;
private final long capacity;
private State state;
private long length;
private interface State {
State TERMINATED = new State() {};
record Subscribed(Subscription subscription) implements State {}
}
/**
* @param downstreamSubscriber the downstream subscriber to pass received data to
* @param capacity the maximum number of bytes that are allowed
* @throws IllegalArgumentException if {@code capacity} is negative
*/
public LimitingSubscriber(BodySubscriber<T> downstreamSubscriber, long capacity) {
if (capacity < 0) {
throw new IllegalArgumentException("capacity must not be negative: " + capacity);
}
this.downstreamSubscriber = requireNonNull(downstreamSubscriber, "downstreamSubscriber");
this.capacity = capacity;
}
@Override
public void onSubscribe(Subscription subscription) {
requireNonNull(subscription, "subscription");
if (state != null) {
subscription.cancel();
} else {
state = new State.Subscribed(subscription);
downstreamSubscriber.onSubscribe(subscription);
}
}
@Override
public void onNext(List<ByteBuffer> buffers) {
// Check arguments
requireNonNull(buffers, "buffers");
assert Utils.hasRemaining(buffers);
// Short-circuit if not subscribed
if (!(state instanceof State.Subscribed subscribed)) {
return;
}
// See if we may consume the input
boolean lengthAllocated = allocateLength(buffers);
if (lengthAllocated) {
downstreamSubscriber.onNext(buffers);
} else { // Otherwise, trigger failure
state = State.TERMINATED;
downstreamSubscriber.onError(new IOException("body exceeds capacity: " + capacity));
subscribed.subscription.cancel();
}
}
private boolean allocateLength(List<ByteBuffer> buffers) {
long bufferLength = Utils.remaining(buffers);
long nextLength;
try {
nextLength = Math.addExact(length, bufferLength);
} catch (ArithmeticException _) {
return false;
}
if (nextLength > capacity) {
return false;
}
length = nextLength;
return true;
}
@Override
public void onError(Throwable throwable) {
requireNonNull(throwable, "throwable");
if (state instanceof State.Subscribed) {
state = State.TERMINATED;
downstreamSubscriber.onError(throwable);
}
}
@Override
public void onComplete() {
if (state instanceof State.Subscribed) {
state = State.TERMINATED;
downstreamSubscriber.onComplete();
}
}
@Override
public CompletionStage<T> getBody() {
return downstreamSubscriber.getBody();
}
}