8347720: [BACKOUT] Portable implementation of FORBID_C_FUNCTION and ALLOW_C_FUNCTION

Reviewed-by: coleenp
This commit is contained in:
Kim Barrett 2025-01-14 17:42:24 +00:00
parent e6902cfca4
commit db76f47f27
32 changed files with 176 additions and 527 deletions

View File

@ -30,7 +30,6 @@
#include <string.h> #include <string.h>
#include "runtime/arguments.hpp" #include "runtime/arguments.hpp"
#include "runtime/os.hpp" #include "runtime/os.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
dynamicOdm::dynamicOdm() { dynamicOdm::dynamicOdm() {
@ -60,7 +59,7 @@ dynamicOdm::~dynamicOdm() {
} }
void odmWrapper::clean_data() { if (_data) { permit_forbidden_function::free(_data); _data = nullptr; } } void odmWrapper::clean_data() { if (_data) { free(_data); _data = nullptr; } }
int odmWrapper::class_offset(const char *field, bool is_aix_5) int odmWrapper::class_offset(const char *field, bool is_aix_5)

View File

@ -38,7 +38,6 @@
#include "logging/log.hpp" #include "logging/log.hpp"
#include "utilities/debug.hpp" #include "utilities/debug.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
// For loadquery() // For loadquery()
#include <sys/ldr.h> #include <sys/ldr.h>
@ -56,7 +55,7 @@ class StringList {
// Enlarge list. If oom, leave old list intact and return false. // Enlarge list. If oom, leave old list intact and return false.
bool enlarge() { bool enlarge() {
int cap2 = _cap + 64; int cap2 = _cap + 64;
char** l2 = (char**) permit_forbidden_function::realloc(_list, sizeof(char*) * cap2); char** l2 = (char**) ::realloc(_list, sizeof(char*) * cap2);
if (!l2) { if (!l2) {
return false; return false;
} }
@ -74,7 +73,7 @@ class StringList {
} }
} }
assert0(_cap > _num); assert0(_cap > _num);
char* s2 = permit_forbidden_function::strdup(s); char* s2 = ::strdup(s);
if (!s2) { if (!s2) {
return nullptr; return nullptr;
} }
@ -168,7 +167,7 @@ static void free_entry_list(loaded_module_t** start) {
loaded_module_t* lm = *start; loaded_module_t* lm = *start;
while (lm) { while (lm) {
loaded_module_t* const lm2 = lm->next; loaded_module_t* const lm2 = lm->next;
permit_forbidden_function::free(lm); ::free(lm);
lm = lm2; lm = lm2;
} }
*start = nullptr; *start = nullptr;
@ -191,7 +190,7 @@ static bool reload_table() {
uint8_t* buffer = nullptr; uint8_t* buffer = nullptr;
size_t buflen = 1024; size_t buflen = 1024;
for (;;) { for (;;) {
buffer = (uint8_t*) permit_forbidden_function::realloc(buffer, buflen); buffer = (uint8_t*) ::realloc(buffer, buflen);
if (loadquery(L_GETINFO, buffer, buflen) == -1) { if (loadquery(L_GETINFO, buffer, buflen) == -1) {
if (errno == ENOMEM) { if (errno == ENOMEM) {
buflen *= 2; buflen *= 2;
@ -211,7 +210,7 @@ static bool reload_table() {
for (;;) { for (;;) {
loaded_module_t* lm = (loaded_module_t*) permit_forbidden_function::malloc(sizeof(loaded_module_t)); loaded_module_t* lm = (loaded_module_t*) ::malloc(sizeof(loaded_module_t));
if (!lm) { if (!lm) {
log_warning(os)("OOM."); log_warning(os)("OOM.");
goto cleanup; goto cleanup;
@ -227,7 +226,7 @@ static bool reload_table() {
lm->path = g_stringlist.add(ldi->ldinfo_filename); lm->path = g_stringlist.add(ldi->ldinfo_filename);
if (!lm->path) { if (!lm->path) {
log_warning(os)("OOM."); log_warning(os)("OOM.");
permit_forbidden_function::free(lm); free(lm);
goto cleanup; goto cleanup;
} }
@ -249,7 +248,7 @@ static bool reload_table() {
lm->member = g_stringlist.add(p_mbr_name); lm->member = g_stringlist.add(p_mbr_name);
if (!lm->member) { if (!lm->member) {
log_warning(os)("OOM."); log_warning(os)("OOM.");
permit_forbidden_function::free(lm); free(lm);
goto cleanup; goto cleanup;
} }
} else { } else {
@ -297,7 +296,7 @@ cleanup:
free_entry_list(&new_list); free_entry_list(&new_list);
} }
permit_forbidden_function::free(buffer); ::free(buffer);
return rc; return rc;

View File

@ -74,7 +74,6 @@
#include "utilities/defaultStream.hpp" #include "utilities/defaultStream.hpp"
#include "utilities/events.hpp" #include "utilities/events.hpp"
#include "utilities/growableArray.hpp" #include "utilities/growableArray.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "utilities/vmError.hpp" #include "utilities/vmError.hpp"
#if INCLUDE_JFR #if INCLUDE_JFR
#include "jfr/support/jfrNativeLibraryLoadEvent.hpp" #include "jfr/support/jfrNativeLibraryLoadEvent.hpp"
@ -365,9 +364,9 @@ static void query_multipage_support() {
// or by environment variable LDR_CNTRL (suboption DATAPSIZE). If none is given, // or by environment variable LDR_CNTRL (suboption DATAPSIZE). If none is given,
// default should be 4K. // default should be 4K.
{ {
void* p = permit_forbidden_function::malloc(16*M); void* p = ::malloc(16*M);
g_multipage_support.datapsize = os::Aix::query_pagesize(p); g_multipage_support.datapsize = os::Aix::query_pagesize(p);
permit_forbidden_function::free(p); ::free(p);
} }
// Query default shm page size (LDR_CNTRL SHMPSIZE). // Query default shm page size (LDR_CNTRL SHMPSIZE).
@ -1410,7 +1409,7 @@ static struct {
} vmem; } vmem;
static void vmembk_add(char* addr, size_t size, size_t pagesize, int type) { static void vmembk_add(char* addr, size_t size, size_t pagesize, int type) {
vmembk_t* p = (vmembk_t*) permit_forbidden_function::malloc(sizeof(vmembk_t)); vmembk_t* p = (vmembk_t*) ::malloc(sizeof(vmembk_t));
assert0(p); assert0(p);
if (p) { if (p) {
MiscUtils::AutoCritSect lck(&vmem.cs); MiscUtils::AutoCritSect lck(&vmem.cs);
@ -1439,7 +1438,7 @@ static void vmembk_remove(vmembk_t* p0) {
for (vmembk_t** pp = &(vmem.first); *pp; pp = &((*pp)->next)) { for (vmembk_t** pp = &(vmem.first); *pp; pp = &((*pp)->next)) {
if (*pp == p0) { if (*pp == p0) {
*pp = p0->next; *pp = p0->next;
permit_forbidden_function::free(p0); ::free(p0);
return; return;
} }
} }

View File

@ -39,7 +39,6 @@
#include "runtime/os.hpp" #include "runtime/os.hpp"
#include "utilities/align.hpp" #include "utilities/align.hpp"
#include "utilities/debug.hpp" #include "utilities/debug.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include <cxxabi.h> #include <cxxabi.h>
#include <sys/debug.h> #include <sys/debug.h>
#include <pthread.h> #include <pthread.h>
@ -251,7 +250,7 @@ bool AixSymbols::get_function_name (
p_name[namelen-1] = '\0'; p_name[namelen-1] = '\0';
} }
if (demangled_name != nullptr) { if (demangled_name != nullptr) {
permit_forbidden_function::free(demangled_name); ALLOW_C_FUNCTION(::free, ::free(demangled_name));
} }
} }
} else { } else {
@ -1082,7 +1081,7 @@ void* Aix_dlopen(const char* filename, int Flags, int *eno, const char** error_r
if (g_handletable_used == max_handletable) { if (g_handletable_used == max_handletable) {
// No place in array anymore; increase array. // No place in array anymore; increase array.
unsigned new_max = MAX2(max_handletable * 2, init_num_handles); unsigned new_max = MAX2(max_handletable * 2, init_num_handles);
struct handletableentry* new_tab = (struct handletableentry*) permit_forbidden_function::realloc(p_handletable, new_max * sizeof(struct handletableentry)); struct handletableentry* new_tab = (struct handletableentry*)::realloc(p_handletable, new_max * sizeof(struct handletableentry));
assert(new_tab != nullptr, "no more memory for handletable"); assert(new_tab != nullptr, "no more memory for handletable");
if (new_tab == nullptr) { if (new_tab == nullptr) {
*error_report = "dlopen: no more memory for handletable"; *error_report = "dlopen: no more memory for handletable";

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2011, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -28,8 +28,6 @@
#include "decoder_machO.hpp" #include "decoder_machO.hpp"
#include "jvm.h" #include "jvm.h"
#include "memory/allocation.inline.hpp" #include "memory/allocation.inline.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include <cxxabi.h> #include <cxxabi.h>
#include <mach-o/loader.h> #include <mach-o/loader.h>
@ -46,7 +44,7 @@ bool MachODecoder::demangle(const char* symbol, char *buf, int buflen) {
if ((result = abi::__cxa_demangle(symbol, nullptr, nullptr, &status)) != nullptr) { if ((result = abi::__cxa_demangle(symbol, nullptr, nullptr, &status)) != nullptr) {
jio_snprintf(buf, buflen, "%s", result); jio_snprintf(buf, buflen, "%s", result);
// call c library's free // call c library's free
permit_forbidden_function::free(result); ::free(result);
return true; return true;
} }
return false; return false;

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -27,7 +27,6 @@
#include "utilities/decoder_elf.hpp" #include "utilities/decoder_elf.hpp"
#include "utilities/elfFile.hpp" #include "utilities/elfFile.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include <cxxabi.h> #include <cxxabi.h>
@ -48,7 +47,7 @@ bool ElfDecoder::demangle(const char* symbol, char *buf, int buflen) {
if ((result = abi::__cxa_demangle(symbol, nullptr, nullptr, &status)) != nullptr) { if ((result = abi::__cxa_demangle(symbol, nullptr, nullptr, &status)) != nullptr) {
jio_snprintf(buf, buflen, "%s", result); jio_snprintf(buf, buflen, "%s", result);
// call c library's free // call c library's free
permit_forbidden_function::free(result); ALLOW_C_FUNCTION(::free, ::free(result);)
return true; return true;
} }
return false; return false;

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,7 +29,6 @@
#include "runtime/globals.hpp" #include "runtime/globals.hpp"
#include "runtime/os.hpp" #include "runtime/os.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>
@ -64,11 +63,11 @@ char* ZMountPoint::get_mountpoint(const char* line, const char* filesystem) cons
strcmp(line_filesystem, filesystem) != 0 || strcmp(line_filesystem, filesystem) != 0 ||
access(line_mountpoint, R_OK|W_OK|X_OK) != 0) { access(line_mountpoint, R_OK|W_OK|X_OK) != 0) {
// Not a matching or accessible filesystem // Not a matching or accessible filesystem
permit_forbidden_function::free(line_mountpoint); ALLOW_C_FUNCTION(::free, ::free(line_mountpoint);)
line_mountpoint = nullptr; line_mountpoint = nullptr;
} }
permit_forbidden_function::free(line_filesystem); ALLOW_C_FUNCTION(::free, ::free(line_filesystem);)
return line_mountpoint; return line_mountpoint;
} }
@ -92,14 +91,14 @@ void ZMountPoint::get_mountpoints(const char* filesystem, ZArray<char*>* mountpo
} }
// readline will return malloced memory. Need raw ::free, not os::free. // readline will return malloced memory. Need raw ::free, not os::free.
permit_forbidden_function::free(line); ALLOW_C_FUNCTION(::free, ::free(line);)
fclose(fd); fclose(fd);
} }
void ZMountPoint::free_mountpoints(ZArray<char*>* mountpoints) const { void ZMountPoint::free_mountpoints(ZArray<char*>* mountpoints) const {
ZArrayIterator<char*> iter(mountpoints); ZArrayIterator<char*> iter(mountpoints);
for (char* mountpoint; iter.next(&mountpoint);) { for (char* mountpoint; iter.next(&mountpoint);) {
permit_forbidden_function::free(mountpoint); // *not* os::free ALLOW_C_FUNCTION(::free, ::free(mountpoint);) // *not* os::free
} }
mountpoints->clear(); mountpoints->clear();
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2023, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -27,7 +27,6 @@
#include "os_linux.hpp" #include "os_linux.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include <malloc.h> #include <malloc.h>
@ -37,7 +36,7 @@ void MallocInfoDcmd::execute(DCmdSource source, TRAPS) {
#ifdef __GLIBC__ #ifdef __GLIBC__
char* buf; char* buf;
size_t size; size_t size;
FILE* stream = ::open_memstream(&buf, &size); ALLOW_C_FUNCTION(::open_memstream, FILE* stream = ::open_memstream(&buf, &size);)
if (stream == nullptr) { if (stream == nullptr) {
_output->print_cr("Error: Could not call malloc_info(3)"); _output->print_cr("Error: Could not call malloc_info(3)");
return; return;
@ -45,7 +44,7 @@ void MallocInfoDcmd::execute(DCmdSource source, TRAPS) {
int err = os::Linux::malloc_info(stream); int err = os::Linux::malloc_info(stream);
if (err == 0) { if (err == 0) {
fflush(stream); ALLOW_C_FUNCTION(::fflush, fflush(stream);)
_output->print_raw(buf); _output->print_raw(buf);
_output->cr(); _output->cr();
} else if (err == -1) { } else if (err == -1) {
@ -55,8 +54,8 @@ void MallocInfoDcmd::execute(DCmdSource source, TRAPS) {
} else { } else {
ShouldNotReachHere(); ShouldNotReachHere();
} }
::fclose(stream); ALLOW_C_FUNCTION(::fclose, ::fclose(stream);)
permit_forbidden_function::free(buf); ALLOW_C_FUNCTION(::free, ::free(buf);)
#else #else
_output->print_cr(malloc_info_unavailable); _output->print_cr(malloc_info_unavailable);
#endif // __GLIBC__ #endif // __GLIBC__

View File

@ -1,54 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef OS_POSIX_FORBIDDENFUNCTIONS_POSIX_HPP
#define OS_POSIX_FORBIDDENFUNCTIONS_POSIX_HPP
#include "utilities/compilerWarnings.hpp"
#include <stddef.h> // for size_t
#include <unistd.h> // clang workaround for _exit - see FORBID macro.
// If needed, add os::strndup and use that instead.
FORBID_C_FUNCTION(char* strndup(const char*, size_t), "don't use");
// These are unimplementable for Windows, and they aren't useful for a
// POSIX implementation of NMT either.
// https://stackoverflow.com/questions/62962839/stdaligned-alloc-missing-from-visual-studio-2019
FORBID_C_FUNCTION(int posix_memalign(void**, size_t, size_t), "don't use");
FORBID_C_FUNCTION(void* aligned_alloc(size_t, size_t), "don't use");
// realpath with a null second argument mallocs a string for the result.
FORBID_C_FUNCTION(char* realpath(const char*, char*), "use os::realpath");
// Returns a malloc'ed string.
FORBID_C_FUNCTION(char* get_current_dir_name(), "use os::get_current_directory");
// Problematic API that should never be used.
FORBID_C_FUNCTION(char* getwd(char*), "use os::get_current_directory");
// BSD utility that is subtly different from realloc.
FORBID_C_FUNCTION(void* reallocf(void*, size_t), "use os::realloc");
#endif // OS_POSIX_FORBIDDENFUNCTIONS_POSIX_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1999, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -49,7 +49,6 @@
#include "utilities/formatBuffer.hpp" #include "utilities/formatBuffer.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/macros.hpp" #include "utilities/macros.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "utilities/vmError.hpp" #include "utilities/vmError.hpp"
#if INCLUDE_JFR #if INCLUDE_JFR
#include "jfr/support/jfrNativeLibraryLoadEvent.hpp" #include "jfr/support/jfrNativeLibraryLoadEvent.hpp"
@ -931,11 +930,11 @@ ssize_t os::connect(int fd, struct sockaddr* him, socklen_t len) {
} }
void os::exit(int num) { void os::exit(int num) {
permit_forbidden_function::exit(num); ALLOW_C_FUNCTION(::exit, ::exit(num);)
} }
void os::_exit(int num) { void os::_exit(int num) {
permit_forbidden_function::_exit(num); ALLOW_C_FUNCTION(::_exit, ::_exit(num);)
} }
void os::naked_yield() { void os::naked_yield() {
@ -992,7 +991,7 @@ char* os::realpath(const char* filename, char* outbuf, size_t outbuflen) {
// This assumes platform realpath() is implemented according to POSIX.1-2008. // This assumes platform realpath() is implemented according to POSIX.1-2008.
// POSIX.1-2008 allows to specify null for the output buffer, in which case // POSIX.1-2008 allows to specify null for the output buffer, in which case
// output buffer is dynamically allocated and must be ::free()'d by the caller. // output buffer is dynamically allocated and must be ::free()'d by the caller.
char* p = permit_forbidden_function::realpath(filename, nullptr); ALLOW_C_FUNCTION(::realpath, char* p = ::realpath(filename, nullptr);)
if (p != nullptr) { if (p != nullptr) {
if (strlen(p) < outbuflen) { if (strlen(p) < outbuflen) {
strcpy(outbuf, p); strcpy(outbuf, p);
@ -1000,7 +999,7 @@ char* os::realpath(const char* filename, char* outbuf, size_t outbuflen) {
} else { } else {
errno = ENAMETOOLONG; errno = ENAMETOOLONG;
} }
permit_forbidden_function::free(p); // *not* os::free ALLOW_C_FUNCTION(::free, ::free(p);) // *not* os::free
} else { } else {
// Fallback for platforms struggling with modern Posix standards (AIX 5.3, 6.1). If realpath // Fallback for platforms struggling with modern Posix standards (AIX 5.3, 6.1). If realpath
// returns EINVAL, this may indicate that realpath is not POSIX.1-2008 compatible and // returns EINVAL, this may indicate that realpath is not POSIX.1-2008 compatible and
@ -1009,7 +1008,7 @@ char* os::realpath(const char* filename, char* outbuf, size_t outbuflen) {
// a memory overwrite. // a memory overwrite.
if (errno == EINVAL) { if (errno == EINVAL) {
outbuf[outbuflen - 1] = '\0'; outbuf[outbuflen - 1] = '\0';
p = permit_forbidden_function::realpath(filename, outbuf); ALLOW_C_FUNCTION(::realpath, p = ::realpath(filename, outbuf);)
if (p != nullptr) { if (p != nullptr) {
guarantee(outbuf[outbuflen - 1] == '\0', "realpath buffer overwrite detected."); guarantee(outbuf[outbuflen - 1] == '\0', "realpath buffer overwrite detected.");
result = p; result = p;

View File

@ -1,45 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef OS_POSIX_PERMITFORBIDDENFUNCTIONS_POSIX_HPP
#define OS_POSIX_PERMITFORBIDDENFUNCTIONS_POSIX_HPP
#include "utilities/compilerWarnings.hpp"
#include "utilities/globalDefinitions.hpp"
// Provide wrappers for some functions otherwise forbidden from use in HotSpot.
// See forbiddenFunctions.hpp for details.
namespace permit_forbidden_function {
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
// Used by the POSIX implementation of os::realpath.
inline char* realpath(const char* path, char* resolved_path) {
return ::realpath(path, resolved_path);
}
END_ALLOW_FORBIDDEN_FUNCTIONS
} // namespace permit_forbidden_function
#endif // OS_POSIX_PERMITFORBIDDENFUNCTIONS_POSIX_HPP

View File

@ -1,38 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef OS_WINDOWS_FORBIDDENFUNCTIONS_WINDOWS_HPP
#define OS_WINDOWS_FORBIDDENFUNCTIONS_WINDOWS_HPP
#include "utilities/compilerWarnings.hpp"
#include <stddef.h> // for size_t
// _fullpath with a null first argument mallocs a string for the result.
FORBID_IMPORTED_C_FUNCTION(char* _fullpath(char*, const char*, size_t), "use os::realpath");
// _snprintf does NOT null terminate if the output would exceed the buffer size.
FORBID_C_FUNCTION(int _snprintf(char*, size_t, const char*, ...), "use os::snprintf");
#endif // OS_WINDOWS_FORBIDDENFUNCTIONS_WINDOWS_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 1997, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -77,7 +77,6 @@
#include "utilities/defaultStream.hpp" #include "utilities/defaultStream.hpp"
#include "utilities/events.hpp" #include "utilities/events.hpp"
#include "utilities/macros.hpp" #include "utilities/macros.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "utilities/population_count.hpp" #include "utilities/population_count.hpp"
#include "utilities/vmError.hpp" #include "utilities/vmError.hpp"
#include "windbghelp.hpp" #include "windbghelp.hpp"
@ -4395,9 +4394,9 @@ static void exit_process_or_thread(Ept what, int exit_code) {
if (what == EPT_THREAD) { if (what == EPT_THREAD) {
_endthreadex((unsigned)exit_code); _endthreadex((unsigned)exit_code);
} else if (what == EPT_PROCESS) { } else if (what == EPT_PROCESS) {
permit_forbidden_function::exit(exit_code); ALLOW_C_FUNCTION(::exit, ::exit(exit_code);)
} else { // EPT_PROCESS_DIE } else { // EPT_PROCESS_DIE
permit_forbidden_function::_exit(exit_code); ALLOW_C_FUNCTION(::_exit, ::_exit(exit_code);)
} }
// Should not reach here // Should not reach here
@ -5160,7 +5159,7 @@ char* os::realpath(const char* filename, char* outbuf, size_t outbuflen) {
} }
char* result = nullptr; char* result = nullptr;
char* p = permit_forbidden_function::_fullpath(nullptr, filename, 0); ALLOW_C_FUNCTION(::_fullpath, char* p = ::_fullpath(nullptr, filename, 0);)
if (p != nullptr) { if (p != nullptr) {
if (strlen(p) < outbuflen) { if (strlen(p) < outbuflen) {
strcpy(outbuf, p); strcpy(outbuf, p);
@ -5168,7 +5167,7 @@ char* os::realpath(const char* filename, char* outbuf, size_t outbuflen) {
} else { } else {
errno = ENAMETOOLONG; errno = ENAMETOOLONG;
} }
permit_forbidden_function::free(p); // *not* os::free ALLOW_C_FUNCTION(::free, ::free(p);) // *not* os::free
} }
return result; return result;
} }

View File

@ -1,45 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef OS_WINDOWS_PERMITFORBIDDENFUNCTIONS_WINDOWS_HPP
#define OS_WINDOWS_PERMITFORBIDDENFUNCTIONS_WINDOWS_HPP
#include "utilities/compilerWarnings.hpp"
#include "utilities/globalDefinitions.hpp"
// Provide wrappers for some functions otherwise forbidden from use in HotSpot.
// See forbiddenFunctions.hpp for details.
namespace permit_forbidden_function {
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
// Used by the Windows implementation of os::realpath.
inline char* _fullpath(char* absPath, const char* relPath, size_t maxLength) {
return ::_fullpath(absPath, relPath, maxLength);
}
END_ALLOW_FORBIDDEN_FUNCTIONS
} // namespace permit_forbidden_function
#endif // OS_WINDOWS_PERMITFORBIDDENFUNCTIONS_WINDOWS_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -27,7 +27,6 @@
#include "symbolengine.hpp" #include "symbolengine.hpp"
#include "utilities/debug.hpp" #include "utilities/debug.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "windbghelp.hpp" #include "windbghelp.hpp"
#include <windows.h> #include <windows.h>
@ -104,7 +103,7 @@ public:
virtual void initialize () { virtual void initialize () {
assert(_p == nullptr && _capacity == 0, "Only call once."); assert(_p == nullptr && _capacity == 0, "Only call once.");
const size_t bytes = OPTIMAL_CAPACITY * sizeof(T); const size_t bytes = OPTIMAL_CAPACITY * sizeof(T);
T* q = (T*) permit_forbidden_function::malloc(bytes); T* q = (T*) ::malloc(bytes);
if (q != nullptr) { if (q != nullptr) {
_p = q; _p = q;
_capacity = OPTIMAL_CAPACITY; _capacity = OPTIMAL_CAPACITY;
@ -120,7 +119,7 @@ public:
// case, where two buffers need to be of identical capacity. // case, where two buffers need to be of identical capacity.
void reset_to_fallback_capacity() { void reset_to_fallback_capacity() {
if (_p != _fallback_buffer) { if (_p != _fallback_buffer) {
permit_forbidden_function::free(_p); ::free(_p);
} }
_p = _fallback_buffer; _p = _fallback_buffer;
_capacity = (int)(sizeof(_fallback_buffer) / sizeof(T)); _capacity = (int)(sizeof(_fallback_buffer) / sizeof(T));

View File

@ -47,7 +47,6 @@
#include "jvmci/jniAccessMark.inline.hpp" #include "jvmci/jniAccessMark.inline.hpp"
#include "jvmci/jvmciCompiler.hpp" #include "jvmci/jvmciCompiler.hpp"
#include "jvmci/jvmciRuntime.hpp" #include "jvmci/jvmciRuntime.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
JVMCICompileState::JVMCICompileState(CompileTask* task, JVMCICompiler* compiler): JVMCICompileState::JVMCICompileState(CompileTask* task, JVMCICompiler* compiler):
_task(task), _task(task),
@ -614,7 +613,7 @@ JVMCIEnv::~JVMCIEnv() {
if (_init_error_msg != nullptr) { if (_init_error_msg != nullptr) {
// The memory allocated in libjvmci was not allocated with os::malloc // The memory allocated in libjvmci was not allocated with os::malloc
// so must not be freed with os::free. // so must not be freed with os::free.
permit_forbidden_function::free((void*)_init_error_msg); ALLOW_C_FUNCTION(::free, ::free((void*) _init_error_msg);)
} }
if (_init_error != JNI_OK) { if (_init_error != JNI_OK) {
return; return;

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -34,7 +34,6 @@
#include "memory/allocation.inline.hpp" #include "memory/allocation.inline.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
LogTagSet* LogTagSet::_list = nullptr; LogTagSet* LogTagSet::_list = nullptr;
size_t LogTagSet::_ntagsets = 0; size_t LogTagSet::_ntagsets = 0;
@ -150,7 +149,7 @@ void LogTagSet::vwrite(LogLevelType level, const char* fmt, va_list args) {
} else { } else {
// Buffer too small, allocate a large enough buffer using malloc/free to avoid circularity. // Buffer too small, allocate a large enough buffer using malloc/free to avoid circularity.
// Since logging is a very basic function, conceivably used within NMT itself, avoid os::malloc/free // Since logging is a very basic function, conceivably used within NMT itself, avoid os::malloc/free
char* newbuf = (char*)permit_forbidden_function::malloc(newbuf_len * sizeof(char)); ALLOW_C_FUNCTION(::malloc, char* newbuf = (char*)::malloc(newbuf_len * sizeof(char));)
if (newbuf != nullptr) { if (newbuf != nullptr) {
prefix_len = _write_prefix(newbuf, newbuf_len); prefix_len = _write_prefix(newbuf, newbuf_len);
ret = os::vsnprintf(newbuf + prefix_len, newbuf_len - prefix_len, fmt, saved_args); ret = os::vsnprintf(newbuf + prefix_len, newbuf_len - prefix_len, fmt, saved_args);
@ -160,7 +159,7 @@ void LogTagSet::vwrite(LogLevelType level, const char* fmt, va_list args) {
if (ret < 0) { if (ret < 0) {
log(level, "Log message newbuf issue"); log(level, "Log message newbuf issue");
} }
permit_forbidden_function::free(newbuf); ALLOW_C_FUNCTION(::free, ::free(newbuf);)
} else { } else {
// Native OOM, use buf to output the least message. At this moment buf is full of either // Native OOM, use buf to output the least message. At this moment buf is full of either
// truncated prefix or truncated prefix + string. Put trunc_msg at the end of buf. // truncated prefix or truncated prefix + string. Put trunc_msg at the end of buf.

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2014, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2014, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -26,8 +26,6 @@
#include "memory/allocation.inline.hpp" #include "memory/allocation.inline.hpp"
#include "nmt/mallocSiteTable.hpp" #include "nmt/mallocSiteTable.hpp"
#include "runtime/atomic.hpp" #include "runtime/atomic.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
// Malloc site hashtable buckets // Malloc site hashtable buckets
MallocSiteHashtableEntry** MallocSiteTable::_table = nullptr; MallocSiteHashtableEntry** MallocSiteTable::_table = nullptr;
@ -43,7 +41,9 @@ const MallocSiteHashtableEntry* MallocSiteTable::_hash_entry_allocation_site = n
* time, it is in single-threaded mode from JVM perspective. * time, it is in single-threaded mode from JVM perspective.
*/ */
bool MallocSiteTable::initialize() { bool MallocSiteTable::initialize() {
_table = (MallocSiteHashtableEntry**)permit_forbidden_function::calloc(table_size, sizeof(MallocSiteHashtableEntry*));
ALLOW_C_FUNCTION(::calloc,
_table = (MallocSiteHashtableEntry**)::calloc(table_size, sizeof(MallocSiteHashtableEntry*));)
if (_table == nullptr) { if (_table == nullptr) {
return false; return false;
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2023, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2023, 2024, Red Hat, Inc. and/or its affiliates. * Copyright (c) 2023, 2024, Red Hat, Inc. and/or its affiliates.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
@ -44,7 +44,6 @@
#include "runtime/vmThread.hpp" #include "runtime/vmThread.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
// Note: throughout this code we will use the term "VMA" for OS system level memory mapping // Note: throughout this code we will use the term "VMA" for OS system level memory mapping
@ -98,8 +97,8 @@ public:
_count(0), _capacity(0), _last(0) {} _count(0), _capacity(0), _last(0) {}
~CachedNMTInformation() { ~CachedNMTInformation() {
permit_forbidden_function::free(_ranges); ALLOW_C_FUNCTION(free, ::free(_ranges);)
permit_forbidden_function::free(_mem_tags); ALLOW_C_FUNCTION(free, ::free(_mem_tags);)
} }
bool add(const void* from, const void* to, MemTag mem_tag) { bool add(const void* from, const void* to, MemTag mem_tag) {
@ -114,8 +113,8 @@ public:
// Enlarge if needed // Enlarge if needed
const size_t new_capacity = MAX2((size_t)4096, 2 * _capacity); const size_t new_capacity = MAX2((size_t)4096, 2 * _capacity);
// Unfortunately, we need to allocate manually, raw, since we must prevent NMT deadlocks (ThreadCritical). // Unfortunately, we need to allocate manually, raw, since we must prevent NMT deadlocks (ThreadCritical).
_ranges = (Range*)permit_forbidden_function::realloc(_ranges, new_capacity * sizeof(Range)); ALLOW_C_FUNCTION(realloc, _ranges = (Range*)::realloc(_ranges, new_capacity * sizeof(Range));)
_mem_tags = (MemTag*)permit_forbidden_function::realloc(_mem_tags, new_capacity * sizeof(MemTag)); ALLOW_C_FUNCTION(realloc, _mem_tags = (MemTag*)::realloc(_mem_tags, new_capacity * sizeof(MemTag));)
if (_ranges == nullptr || _mem_tags == nullptr) { if (_ranges == nullptr || _mem_tags == nullptr) {
// In case of OOM lets make no fuss. Just return. // In case of OOM lets make no fuss. Just return.
return false; return false;

View File

@ -1,6 +1,6 @@
/* /*
* Copyright (c) 2022, 2023 SAP SE. All rights reserved. * Copyright (c) 2022, 2023 SAP SE. All rights reserved.
* Copyright (c) 2022, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,13 +30,12 @@
#include "utilities/debug.hpp" #include "utilities/debug.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
// Obviously we cannot use os::malloc for any dynamic allocation during pre-NMT-init, so we must use // Obviously we cannot use os::malloc for any dynamic allocation during pre-NMT-init, so we must use
// raw malloc; to make this very clear, wrap them. // raw malloc; to make this very clear, wrap them.
static void* raw_malloc(size_t s) { return permit_forbidden_function::malloc(s); } static void* raw_malloc(size_t s) { ALLOW_C_FUNCTION(::malloc, return ::malloc(s);) }
static void* raw_realloc(void* old, size_t s) { return permit_forbidden_function::realloc(old, s); } static void* raw_realloc(void* old, size_t s) { ALLOW_C_FUNCTION(::realloc, return ::realloc(old, s);) }
static void raw_free(void* p) { permit_forbidden_function::free(p); } static void raw_free(void* p) { ALLOW_C_FUNCTION(::free, ::free(p);) }
// To keep matters simple we just raise a fatal error on OOM. Since preinit allocation // To keep matters simple we just raise a fatal error on OOM. Since preinit allocation
// is just used for pre-VM-initialization mallocs, none of which are optional, we don't // is just used for pre-VM-initialization mallocs, none of which are optional, we don't

View File

@ -77,9 +77,7 @@
#include "utilities/defaultStream.hpp" #include "utilities/defaultStream.hpp"
#include "utilities/events.hpp" #include "utilities/events.hpp"
#include "utilities/fastrand.hpp" #include "utilities/fastrand.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/macros.hpp" #include "utilities/macros.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "utilities/powerOfTwo.hpp" #include "utilities/powerOfTwo.hpp"
#ifdef LINUX #ifdef LINUX
@ -120,7 +118,7 @@ int os::snprintf_checked(char* buf, size_t len, const char* fmt, ...) {
} }
int os::vsnprintf(char* buf, size_t len, const char* fmt, va_list args) { int os::vsnprintf(char* buf, size_t len, const char* fmt, va_list args) {
int result = permit_forbidden_function::vsnprintf(buf, len, fmt, args); ALLOW_C_FUNCTION(::vsnprintf, int result = ::vsnprintf(buf, len, fmt, args);)
// If an encoding error occurred (result < 0) then it's not clear // If an encoding error occurred (result < 0) then it's not clear
// whether the buffer is NUL terminated, so ensure it is. // whether the buffer is NUL terminated, so ensure it is.
if ((result < 0) && (len > 0)) { if ((result < 0) && (len > 0)) {
@ -657,7 +655,7 @@ void* os::malloc(size_t size, MemTag mem_tag, const NativeCallStack& stack) {
return nullptr; return nullptr;
} }
void* const outer_ptr = permit_forbidden_function::malloc(outer_size); ALLOW_C_FUNCTION(::malloc, void* const outer_ptr = ::malloc(outer_size);)
if (outer_ptr == nullptr) { if (outer_ptr == nullptr) {
return nullptr; return nullptr;
} }
@ -724,7 +722,7 @@ void* os::realloc(void *memblock, size_t size, MemTag mem_tag, const NativeCallS
header->mark_block_as_dead(); header->mark_block_as_dead();
// the real realloc // the real realloc
void* const new_outer_ptr = permit_forbidden_function::realloc(header, new_outer_size); ALLOW_C_FUNCTION(::realloc, void* const new_outer_ptr = ::realloc(header, new_outer_size);)
if (new_outer_ptr == nullptr) { if (new_outer_ptr == nullptr) {
// realloc(3) failed and the block still exists. // realloc(3) failed and the block still exists.
@ -752,7 +750,7 @@ void* os::realloc(void *memblock, size_t size, MemTag mem_tag, const NativeCallS
} else { } else {
// NMT disabled. // NMT disabled.
rc = permit_forbidden_function::realloc(memblock, size); ALLOW_C_FUNCTION(::realloc, rc = ::realloc(memblock, size);)
if (rc == nullptr) { if (rc == nullptr) {
return nullptr; return nullptr;
} }
@ -780,7 +778,7 @@ void os::free(void *memblock) {
// When NMT is enabled this checks for heap overwrites, then deaccounts the old block. // When NMT is enabled this checks for heap overwrites, then deaccounts the old block.
void* const old_outer_ptr = MemTracker::record_free(memblock); void* const old_outer_ptr = MemTracker::record_free(memblock);
permit_forbidden_function::free(old_outer_ptr); ALLOW_C_FUNCTION(::free, ::free(old_outer_ptr);)
} }
void os::init_random(unsigned int initval) { void os::init_random(unsigned int initval) {

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -88,57 +88,23 @@
// Support warnings for use of certain C functions, except where explicitly // Support warnings for use of certain C functions, except where explicitly
// permitted. // permitted.
// FORBID_C_FUNCTION(Signature, Alternative)
// - Signature: the function that should not normally be used.
// - Alternative: a string literal that may be used in a warning about a use,
// often suggesting an alternative.
// Declares the C-linkage function designated by Signature to be deprecated,
// using the `deprecated` attribute with Alternative as an argument.
// //
// The variants with IMPORTED in the name are to deal with Windows // FORBID_C_FUNCTION(signature, alternative)
// requirements, using FORBIDDEN_FUNCTION_IMPORT_SPEC. See the Visual // - signature: the function that should not normally be used.
// Studio definition of that macro for more details. The default has // - alternative: a string that may be used in a warning about a use, typically
// an empty expansion. The potentially added spec must precede the // suggesting an alternative.
// base signature but follow all attributes.
// //
// FORBID_NORETURN_C_FUNCTION deals with a clang issue. See the clang // ALLOW_C_FUNCTION(name, ... using statement ...)
// definition of FORBIDDEN_FUNCTION_NORETURN_ATTRIBUTE for more // - name: the name of a forbidden function whose use is permitted in statement.
// details. The default expands to `[[noreturn]]`. // - statement: a use of the otherwise forbidden function. Using a variadic
#define FORBID_C_FUNCTION(Signature, Alternative) \ // tail allows the statement to contain non-nested commas.
extern "C" { [[deprecated(Alternative)]] Signature; }
#ifndef FORBIDDEN_FUNCTION_IMPORT_SPEC #ifndef FORBID_C_FUNCTION
#define FORBIDDEN_FUNCTION_IMPORT_SPEC #define FORBID_C_FUNCTION(signature, alternative)
#endif #endif
#ifndef FORBIDDEN_FUNCTION_NORETURN_ATTRIBUTE #ifndef ALLOW_C_FUNCTION
#define FORBIDDEN_FUNCTION_NORETURN_ATTRIBUTE [[noreturn]] #define ALLOW_C_FUNCTION(name, ...) __VA_ARGS__
#endif #endif
#define FORBID_IMPORTED_C_FUNCTION(Signature, Alternative) \
FORBID_C_FUNCTION(FORBIDDEN_FUNCTION_IMPORT_SPEC Signature, Alternative)
#define FORBID_NORETURN_C_FUNCTION(Signature, Alternative) \
FORBID_C_FUNCTION(FORBIDDEN_FUNCTION_NORETURN_ATTRIBUTE Signature, Alternative)
#define FORBID_IMPORTED_NORETURN_C_FUNCTION(Signature, Alternative) \
FORBID_NORETURN_C_FUNCTION(FORBIDDEN_FUNCTION_IMPORT_SPEC Signature, Alternative)
// A BEGIN/END_ALLOW_FORBIDDEN_FUNCTIONS pair establishes a scope in which the
// deprecation warnings used to forbid the use of certain functions are
// suppressed. These macros are not intended for warning suppression at
// individual call sites; see permitForbiddenFunctions.hpp for the approach
// taken for that where needed. Rather, these are used to suppress warnings
// from 3rd-party code included by HotSpot, such as the gtest framework and
// C++ Standard Library headers, which may refer to functions that are
// disallowed in other parts of HotSpot. They are also used in the
// implementation of the "permit" mechanism.
#define BEGIN_ALLOW_FORBIDDEN_FUNCTIONS \
PRAGMA_DIAG_PUSH \
PRAGMA_DEPRECATED_IGNORED
#define END_ALLOW_FORBIDDEN_FUNCTIONS \
PRAGMA_DIAG_POP
#endif // SHARE_UTILITIES_COMPILERWARNINGS_HPP #endif // SHARE_UTILITIES_COMPILERWARNINGS_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -70,45 +70,32 @@
#define PRAGMA_ZERO_AS_NULL_POINTER_CONSTANT_IGNORED \ #define PRAGMA_ZERO_AS_NULL_POINTER_CONSTANT_IGNORED \
PRAGMA_DISABLE_GCC_WARNING("-Wzero-as-null-pointer-constant") PRAGMA_DISABLE_GCC_WARNING("-Wzero-as-null-pointer-constant")
#define PRAGMA_DEPRECATED_IGNORED \ #if (__GNUC__ >= 10)
PRAGMA_DISABLE_GCC_WARNING("-Wdeprecated-declarations") // TODO: Re-enable warning attribute for Clang once
// https://github.com/llvm/llvm-project/issues/56519 is fixed and released.
// || (defined(__clang_major__) && (__clang_major__ >= 14))
// This macro is used by the NORETURN variants of FORBID_C_FUNCTION. // Use "warning" attribute to detect uses of "forbidden" functions.
// //
// The [[noreturn]] attribute requires that the first declaration of a // Note: The warning attribute is available since GCC 9, but disabling pragmas
// function has it if any have it. clang does not treat an old-style noreturn // does not work reliably in ALLOW_C_FUNCTION. GCC 10+ and up work fine.
// attribute on the first declaration as meeting that requirement. But some
// libraries use old-style noreturn attributes. So if we use [[noreturn]] in
// the forbidding declaration, but the library header for the function has
// already been included, we get a compiler error. Similarly, if we use an
// old-style noreturn attribute and the library header is included after the
// forbidding declaration.
// //
// For now, we're only going to worry about the standard library, and not // Note: _FORTIFY_SOURCE transforms calls to certain functions into calls to
// noreturn functions in some other library that we might want to forbid in // associated "checking" functions, and that transformation seems to occur
// the future. If there's more than one library to be accounted for, then // *before* the attribute check. We use fortification in fastdebug builds,
// things may get more complicated. // so uses of functions that are both forbidden and fortified won't cause
// // forbidden warnings in such builds.
// There are several ways we could deal with this. #define FORBID_C_FUNCTION(signature, alternative) \
// extern "C" __attribute__((__warning__(alternative))) signature;
// Probably the most robust is to use the same style of noreturn attribute as
// is used by the library providing the function. That way it doesn't matter
// in which order the inclusion of the library header and the forbidding are
// performed. We could use configure to determine which to use and provide a
// macro to select on here.
//
// Another approach is to always use the old-style attribute in the forbidding
// declaration, but ensure the relevant library header has been included
// before the forbidding declaration. Since there are currently only a couple
// of affected functions, this is easier to implement. So this is the
// approach being taken for now.
//
// And remember, all of this is because clang treats an old-style noreturn
// attribute as not counting toward the [[noreturn]] requirement that the
// first declaration must have a noreturn attribute.
#ifdef __clang__ // Disable warning attribute over the scope of the affected statement.
#define FORBIDDEN_FUNCTION_NORETURN_ATTRIBUTE __attribute__((__noreturn__)) // The name serves only to document the intended function.
#endif // __clang__ #define ALLOW_C_FUNCTION(name, ...) \
PRAGMA_DIAG_PUSH \
PRAGMA_DISABLE_GCC_WARNING("-Wattribute-warning") \
__VA_ARGS__ \
PRAGMA_DIAG_POP
#endif // gcc10+
#endif // SHARE_UTILITIES_COMPILERWARNINGS_GCC_HPP #endif // SHARE_UTILITIES_COMPILERWARNINGS_GCC_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2019, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2019, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -30,17 +30,39 @@
#define PRAGMA_DIAG_PUSH _Pragma("warning(push)") #define PRAGMA_DIAG_PUSH _Pragma("warning(push)")
#define PRAGMA_DIAG_POP _Pragma("warning(pop)") #define PRAGMA_DIAG_POP _Pragma("warning(pop)")
#define PRAGMA_DEPRECATED_IGNORED PRAGMA_DISABLE_MSVC_WARNING(4996) // The Visual Studio implementation of FORBID_C_FUNCTION explicitly does
// nothing, because there doesn't seem to be a way to implement it for Visual
// This macro is used by the IMPORTED variants of FORBID_C_FUNCTION. // Studio. What seems the most likely approach is to use deprecation warnings,
// but that runs into problems.
// //
// Some, but not all, functions we want to forbid using must include a // (1) Declaring the function deprecated (using either __declspec(deprecated)
// `__declspec(dllimport)` in the declaration. Failure to do so where needed // or the C++14 [[deprecated]] attribute) fails with warnings like this:
// leads to "redefinition; different linkage" errors for the forbidding // warning C4273: 'exit': inconsistent dll linkage
// declaration. But including a dllimport specifier if not present in the // It seems attributes are not simply additive with this compiler.
// compiler's header leads to the same errors. It seems one must just know //
// which are imported and which are not, and use the specifier accordingly. // (2) Additionally adding __declspec(dllimport) to deal with (1) fails with
// warnings like this:
// error C2375: 'vsnprintf': redefinition; different linkage
// It seems some functions in the set of interest have different linkage than
// others ("exit" is marked imported while "vsnprintf" is not, for example).
// That makes it difficult to provide a generic macro.
//
// (3) Using __pragma(deprecated(name)) fails with
// warning C4995: 'frobnicate': name was marked as #pragma deprecated
// for a *declaration* (not a use) of a 'frobnicate' function.
//
// ALLOW_C_FUNCTIONS disables deprecation warnings over the statement scope.
// Some of the functions we're interested in allowing are conditionally
// deprecated on Windows, under the control of various preprocessor defines
// such as _CRT_SECURE_NO_WARNINGS. Annotating vetted uses allows those
// warnings to catch unchecked uses.
#define FORBIDDEN_FUNCTION_IMPORT_SPEC __declspec(dllimport) #define FORBID_C_FUNCTION(signature, alternative)
#define ALLOW_C_FUNCTION(name, ...) \
PRAGMA_DIAG_PUSH \
PRAGMA_DISABLE_MSVC_WARNING(4996) \
__VA_ARGS__ \
PRAGMA_DIAG_POP
#endif // SHARE_UTILITIES_COMPILERWARNINGS_VISCPP_HPP #endif // SHARE_UTILITIES_COMPILERWARNINGS_VISCPP_HPP

View File

@ -1,69 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef SHARE_UTILITIES_FORBIDDENFUNCTIONS_HPP
#define SHARE_UTILITIES_FORBIDDENFUNCTIONS_HPP
#include "utilities/compilerWarnings.hpp"
#include "utilities/macros.hpp"
#include <stdarg.h> // for va_list
#include <stddef.h> // for size_t
#include <stdlib.h> // clang workaround for exit, _exit, _Exit - see FORBID macro.
#ifdef _WINDOWS
#include "forbiddenFunctions_windows.hpp"
#else
#include "forbiddenFunctions_posix.hpp"
#endif
// Forbid the use of various C library functions. Some of these have os::
// replacements that should be used instead. Others are considered obsolete
// or have security concerns, either with preferred alternatives, or to be
// avoided entirely.
FORBID_IMPORTED_NORETURN_C_FUNCTION(void exit(int), "use os::exit")
FORBID_IMPORTED_NORETURN_C_FUNCTION(void _Exit(int), "use os::exit")
// Windows puts _exit in <stdlib.h>, POSIX in <unistd.h>.
FORBID_IMPORTED_NORETURN_C_FUNCTION(void _exit(int), "use os::exit")
FORBID_IMPORTED_C_FUNCTION(char* strerror(int), "use os::strerror");
FORBID_IMPORTED_C_FUNCTION(char* strtok(char*, const char*), "use strtok_r");
FORBID_C_FUNCTION(int sprintf(char*, const char*, ...), "use os::snprintf");
FORBID_C_FUNCTION(int vsprintf(char*, const char*, va_list), "use os::vsnprintf");
FORBID_C_FUNCTION(int vsnprintf(char*, size_t, const char*, va_list), "use os::vsnprintf");
// All of the following functions return raw C-heap pointers (sometimes as an
// option, e.g. realpath or getwd) or, in case of free(), take raw C-heap
// pointers. We generally want allocation to be done through NMT.
FORBID_IMPORTED_C_FUNCTION(void* malloc(size_t size), "use os::malloc");
FORBID_IMPORTED_C_FUNCTION(void free(void *ptr), "use os::free");
FORBID_IMPORTED_C_FUNCTION(void* calloc(size_t nmemb, size_t size), "use os::malloc and zero out manually");
FORBID_IMPORTED_C_FUNCTION(void* realloc(void *ptr, size_t size), "use os::realloc");
FORBID_IMPORTED_C_FUNCTION(char* strdup(const char *s), "use os::strdup");
FORBID_IMPORTED_C_FUNCTION(wchar_t* wcsdup(const wchar_t *s), "don't use");
#endif // SHARE_UTILITIES_FORBIDDENFUNCTIONS_HPP

View File

@ -27,7 +27,6 @@
#include "utilities/compilerWarnings.hpp" #include "utilities/compilerWarnings.hpp"
#include "utilities/debug.hpp" #include "utilities/debug.hpp"
#include "utilities/forbiddenFunctions.hpp"
#include "utilities/macros.hpp" #include "utilities/macros.hpp"
// Get constants like JVM_T_CHAR and JVM_SIGNATURE_INT, before pulling in <jvm.h>. // Get constants like JVM_T_CHAR and JVM_SIGNATURE_INT, before pulling in <jvm.h>.
@ -182,6 +181,35 @@ inline uintptr_t p2u(const volatile void* p) {
#define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false") #define BOOL_TO_STR(_b_) ((_b_) ? "true" : "false")
//----------------------------------------------------------------------------------------------------
// Forbid the use of various C library functions.
// Some of these have os:: replacements that should normally be used instead.
// Others are considered security concerns, with preferred alternatives.
FORBID_C_FUNCTION(void exit(int), "use os::exit");
FORBID_C_FUNCTION(void _exit(int), "use os::exit");
FORBID_C_FUNCTION(char* strerror(int), "use os::strerror");
FORBID_C_FUNCTION(char* strtok(char*, const char*), "use strtok_r");
FORBID_C_FUNCTION(int sprintf(char*, const char*, ...), "use os::snprintf");
FORBID_C_FUNCTION(int vsprintf(char*, const char*, va_list), "use os::vsnprintf");
FORBID_C_FUNCTION(int vsnprintf(char*, size_t, const char*, va_list), "use os::vsnprintf");
// All of the following functions return raw C-heap pointers (sometimes as an option, e.g. realpath or getwd)
// or, in case of free(), take raw C-heap pointers. Don't use them unless you are really sure you must.
FORBID_C_FUNCTION(void* malloc(size_t size), "use os::malloc");
FORBID_C_FUNCTION(void* calloc(size_t nmemb, size_t size), "use os::malloc and zero out manually");
FORBID_C_FUNCTION(void free(void *ptr), "use os::free");
FORBID_C_FUNCTION(void* realloc(void *ptr, size_t size), "use os::realloc");
FORBID_C_FUNCTION(char* strdup(const char *s), "use os::strdup");
FORBID_C_FUNCTION(char* strndup(const char *s, size_t n), "don't use");
FORBID_C_FUNCTION(int posix_memalign(void **memptr, size_t alignment, size_t size), "don't use");
FORBID_C_FUNCTION(void* aligned_alloc(size_t alignment, size_t size), "don't use");
FORBID_C_FUNCTION(char* realpath(const char* path, char* resolved_path), "use os::realpath");
FORBID_C_FUNCTION(char* get_current_dir_name(void), "use os::get_current_directory()");
FORBID_C_FUNCTION(char* getwd(char *buf), "use os::get_current_directory()");
FORBID_C_FUNCTION(wchar_t* wcsdup(const wchar_t *s), "don't use");
FORBID_C_FUNCTION(void* reallocf(void *ptr, size_t size), "don't use");
//---------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------
// Constants // Constants

View File

@ -1,73 +0,0 @@
/*
* Copyright (c) 2024, 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.
*
* 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.
*
*/
#ifndef SHARE_UTILITIES_PERMITFORBIDDENFUNCTIONS_HPP
#define SHARE_UTILITIES_PERMITFORBIDDENFUNCTIONS_HPP
#include "utilities/compilerWarnings.hpp"
#include "utilities/globalDefinitions.hpp"
#ifdef _WINDOWS
#include "permitForbiddenFunctions_windows.hpp"
#else
#include "permitForbiddenFunctions_posix.hpp"
#endif
// Provide wrappers for some functions otherwise forbidden from use in HotSpot.
//
// There may be special circumstances where an otherwise forbidden function
// really does need to be used. One example is in the implementation of a
// corresponding os:: function.
//
// Wrapper functions are provided for such forbidden functions. These
// wrappers are defined in a context where the forbidding warnings are
// suppressed. They are defined in a special namespace, to highlight uses as
// unusual and requiring increased scrutiny.
//
// Note that there are several seemingly plausible shorter alternatives to
// these written-out wrapper functions. All that have been tried don't work
// for one reason or another.
namespace permit_forbidden_function {
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
[[noreturn]] inline void exit(int status) { ::exit(status); }
[[noreturn]] inline void _exit(int status) { ::_exit(status); }
ATTRIBUTE_PRINTF(3, 0)
inline int vsnprintf(char* str, size_t size, const char* format, va_list ap) {
return ::vsnprintf(str, size, format, ap);
}
inline void* malloc(size_t size) { return ::malloc(size); }
inline void free(void* ptr) { return ::free(ptr); }
inline void* calloc(size_t nmemb, size_t size) { return ::calloc(nmemb, size); }
inline void* realloc(void* ptr, size_t size) { return ::realloc(ptr, size); }
inline char* strdup(const char* s) { return ::strdup(s); }
END_ALLOW_FORBIDDEN_FUNCTIONS
} // namespace permit_forbidden_function
#endif // SHARE_UTILITIES_PERMITFORBIDDENFUNCTIONS_HPP

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2021, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2021, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -29,12 +29,9 @@
#include "asm/macroAssembler.inline.hpp" #include "asm/macroAssembler.inline.hpp"
#include "compiler/disassembler.hpp" #include "compiler/disassembler.hpp"
#include "memory/resourceArea.hpp" #include "memory/resourceArea.hpp"
#include "utilities/globalDefinitions.hpp"
#include "utilities/vmassert_uninstall.hpp" #include "utilities/vmassert_uninstall.hpp"
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
#include <regex> #include <regex>
END_ALLOW_FORBIDDEN_FUNCTIONS
#include "utilities/vmassert_reinstall.hpp" #include "utilities/vmassert_reinstall.hpp"
#include "unittest.hpp" #include "unittest.hpp"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2022, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
* Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. * Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
@ -27,9 +27,7 @@
#include "utilities/ostream.hpp" #include "utilities/ostream.hpp"
#include "utilities/vmassert_uninstall.hpp" #include "utilities/vmassert_uninstall.hpp"
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
#include <iostream> #include <iostream>
END_ALLOW_FORBIDDEN_FUNCTIONS
#include "utilities/vmassert_reinstall.hpp" #include "utilities/vmassert_reinstall.hpp"
#include "unittest.hpp" #include "unittest.hpp"

View File

@ -24,12 +24,10 @@
#include "precompiled.hpp" #include "precompiled.hpp"
#include "gc/shenandoah/shenandoahSimpleBitMap.hpp" #include "gc/shenandoah/shenandoahSimpleBitMap.hpp"
#include "gc/shenandoah/shenandoahSimpleBitMap.inline.hpp" #include "gc/shenandoah/shenandoahSimpleBitMap.inline.hpp"
#include "utilities/ostream.hpp"
#include "utilities/vmassert_uninstall.hpp"
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
#include <iostream> #include <iostream>
END_ALLOW_FORBIDDEN_FUNCTIONS #include "utilities/ostream.hpp"
#include "utilities/vmassert_uninstall.hpp"
#include "utilities/vmassert_reinstall.hpp" #include "utilities/vmassert_reinstall.hpp"
#include "unittest.hpp" #include "unittest.hpp"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -26,7 +26,6 @@
#include "runtime/os.hpp" #include "runtime/os.hpp"
#include "runtime/thread.inline.hpp" #include "runtime/thread.inline.hpp"
#include "utilities/globalDefinitions.hpp" #include "utilities/globalDefinitions.hpp"
#include "utilities/permitForbiddenFunctions.hpp"
#include "unittest.hpp" #include "unittest.hpp"
#include <stdio.h> #include <stdio.h>
@ -194,7 +193,7 @@ static int num_args_to_skip(char* arg) {
static char** remove_test_runner_arguments(int* argcp, char **argv) { static char** remove_test_runner_arguments(int* argcp, char **argv) {
int argc = *argcp; int argc = *argcp;
char** new_argv = (char**)permit_forbidden_function::malloc(sizeof(char*) * argc); ALLOW_C_FUNCTION(::malloc, char** new_argv = (char**) malloc(sizeof(char*) * argc);)
int new_argc = 0; int new_argc = 0;
int i = 0; int i = 0;
@ -290,7 +289,7 @@ static void runUnitTestsInner(int argc, char** argv) {
int result = RUN_ALL_TESTS(); int result = RUN_ALL_TESTS();
permit_forbidden_function::free(argv); ALLOW_C_FUNCTION(::free, ::free(argv);)
// vm_assert and other_vm tests never reach this point as they either abort, or call // vm_assert and other_vm tests never reach this point as they either abort, or call
// exit() - see TEST_OTHER_VM macro. We will reach here when all same_vm tests have // exit() - see TEST_OTHER_VM macro. We will reach here when all same_vm tests have

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -24,8 +24,6 @@
#ifndef UNITTEST_HPP #ifndef UNITTEST_HPP
#define UNITTEST_HPP #define UNITTEST_HPP
#include "utilities/globalDefinitions.hpp"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
@ -51,10 +49,8 @@
#undef F2 #undef F2
#include "utilities/vmassert_uninstall.hpp" #include "utilities/vmassert_uninstall.hpp"
BEGIN_ALLOW_FORBIDDEN_FUNCTIONS
#include "gmock/gmock.h" #include "gmock/gmock.h"
#include "gtest/gtest.h" #include "gtest/gtest.h"
END_ALLOW_FORBIDDEN_FUNCTIONS
#include "utilities/vmassert_reinstall.hpp" #include "utilities/vmassert_reinstall.hpp"
#ifdef UNDEFINED_Log #ifdef UNDEFINED_Log