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.
This commit is contained in:
commit
0a580b313d
70422 changed files with 17213626 additions and 0 deletions
159
test/jdk/java/foreign/TestSharedAccess.java
Normal file
159
test/jdk/java/foreign/TestSharedAccess.java
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
/*
|
||||
* Copyright (c) 2019, 2023, 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.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @run testng/othervm --enable-native-access=ALL-UNNAMED TestSharedAccess
|
||||
*/
|
||||
|
||||
import java.lang.foreign.*;
|
||||
import java.lang.invoke.VarHandle;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Spliterator;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import org.testng.annotations.*;
|
||||
|
||||
import static org.testng.Assert.*;
|
||||
|
||||
public class TestSharedAccess {
|
||||
|
||||
static final VarHandle intHandle = ValueLayout.JAVA_INT.varHandle();
|
||||
|
||||
@Test
|
||||
public void testShared() throws Throwable {
|
||||
SequenceLayout layout = MemoryLayout.sequenceLayout(1024, ValueLayout.JAVA_INT);
|
||||
try (Arena arena = Arena.ofShared()) {
|
||||
MemorySegment s = arena.allocate(layout);;
|
||||
for (int i = 0 ; i < layout.elementCount() ; i++) {
|
||||
setInt(s.asSlice(i * 4), 42);
|
||||
}
|
||||
List<Thread> threads = new ArrayList<>();
|
||||
List<Spliterator<MemorySegment>> spliterators = new ArrayList<>();
|
||||
spliterators.add(s.spliterator(layout.elementLayout()));
|
||||
while (true) {
|
||||
boolean progress = false;
|
||||
List<Spliterator<MemorySegment>> newSpliterators = new ArrayList<>();
|
||||
for (Spliterator<MemorySegment> spliterator : spliterators) {
|
||||
Spliterator<MemorySegment> sub = spliterator.trySplit();
|
||||
if (sub != null) {
|
||||
progress = true;
|
||||
newSpliterators.add(sub);
|
||||
}
|
||||
}
|
||||
spliterators.addAll(newSpliterators);
|
||||
if (!progress) break;
|
||||
}
|
||||
|
||||
AtomicInteger accessCount = new AtomicInteger();
|
||||
for (Spliterator<MemorySegment> spliterator : spliterators) {
|
||||
threads.add(new Thread(() -> {
|
||||
spliterator.tryAdvance(local -> {
|
||||
assertEquals(getInt(local), 42);
|
||||
accessCount.incrementAndGet();
|
||||
});
|
||||
}));
|
||||
}
|
||||
threads.forEach(Thread::start);
|
||||
threads.forEach(t -> {
|
||||
try {
|
||||
t.join();
|
||||
} catch (Throwable e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
});
|
||||
assertEquals(accessCount.get(), 1024);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSharedUnsafe() throws Throwable {
|
||||
try (Arena arena = Arena.ofShared()) {
|
||||
MemorySegment s = arena.allocate(4, 1);;
|
||||
setInt(s, 42);
|
||||
assertEquals(getInt(s), 42);
|
||||
List<Thread> threads = new ArrayList<>();
|
||||
for (int i = 0 ; i < 1000 ; i++) {
|
||||
threads.add(new Thread(() -> {
|
||||
assertEquals(getInt(s), 42);
|
||||
}));
|
||||
}
|
||||
threads.forEach(Thread::start);
|
||||
threads.forEach(t -> {
|
||||
try {
|
||||
t.join();
|
||||
} catch (Throwable e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOutsideConfinementThread() throws Throwable {
|
||||
CountDownLatch a = new CountDownLatch(1);
|
||||
CountDownLatch b = new CountDownLatch(1);
|
||||
CompletableFuture<?> r;
|
||||
try (Arena arena = Arena.ofConfined()) {
|
||||
MemoryLayout layout = MemoryLayout.sequenceLayout(2, ValueLayout.JAVA_INT);
|
||||
MemorySegment s1 = arena.allocate(layout);;
|
||||
r = CompletableFuture.runAsync(() -> {
|
||||
try {
|
||||
ByteBuffer bb = s1.asByteBuffer();
|
||||
|
||||
MemorySegment s2 = MemorySegment.ofBuffer(bb);
|
||||
a.countDown();
|
||||
|
||||
try {
|
||||
b.await();
|
||||
} catch (InterruptedException e) {
|
||||
}
|
||||
|
||||
setInt(s2.asSlice(4), -42);
|
||||
fail();
|
||||
} catch (WrongThreadException ex) {
|
||||
assertTrue(ex.getMessage().contains("owning thread"));
|
||||
}
|
||||
});
|
||||
|
||||
a.await();
|
||||
setInt(s1.asSlice(4), 42);
|
||||
}
|
||||
|
||||
b.countDown();
|
||||
r.get();
|
||||
}
|
||||
|
||||
static int getInt(MemorySegment base) {
|
||||
return (int)intHandle.getVolatile(base, 0L);
|
||||
}
|
||||
|
||||
static void setInt(MemorySegment base, int value) {
|
||||
intHandle.setVolatile(base, 0L, value);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue