Skip to content

Commit 478ef38

Browse files
committedDec 9, 2022
8296812: sprintf is deprecated in Xcode 14
Reviewed-by: stuefe, prr, kbarrett, lucy
1 parent 715bf70 commit 478ef38

26 files changed

+141
-100
lines changed
 

‎src/hotspot/cpu/aarch64/vm_version_aarch64.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ void VM_Version::initialize() {
222222
}
223223

224224
char buf[512];
225-
sprintf(buf, "0x%02x:0x%x:0x%03x:%d", _cpu, _variant, _model, _revision);
226-
if (_model2) sprintf(buf+strlen(buf), "(0x%03x)", _model2);
225+
int buf_used_len = os::snprintf_checked(buf, sizeof(buf), "0x%02x:0x%x:0x%03x:%d", _cpu, _variant, _model, _revision);
226+
if (_model2) os::snprintf_checked(buf + buf_used_len, sizeof(buf) - buf_used_len, "(0x%03x)", _model2);
227227
#define ADD_FEATURE_IF_SUPPORTED(id, name, bit) if (VM_Version::supports_##name()) strcat(buf, ", " #name);
228228
CPU_FEATURE_FLAGS(ADD_FEATURE_IF_SUPPORTED)
229229
#undef ADD_FEATURE_IF_SUPPORTED

‎src/hotspot/os/bsd/attachListener_bsd.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ int BsdAttachListener::init() {
248248
//
249249
BsdAttachOperation* BsdAttachListener::read_request(int s) {
250250
char ver_str[8];
251-
sprintf(ver_str, "%d", ATTACH_PROTOCOL_VER);
251+
size_t ver_str_len = os::snprintf_checked(ver_str, sizeof(ver_str), "%d", ATTACH_PROTOCOL_VER);
252252

253253
// The request is a sequence of strings so we first figure out the
254254
// expected count and the maximum possible length of the request.
@@ -288,11 +288,11 @@ BsdAttachOperation* BsdAttachListener::read_request(int s) {
288288
// The first string is <ver> so check it now to
289289
// check for protocol mismatch
290290
if (str_count == 1) {
291-
if ((strlen(buf) != strlen(ver_str)) ||
291+
if ((strlen(buf) != ver_str_len) ||
292292
(atoi(buf) != ATTACH_PROTOCOL_VER)) {
293293
char msg[32];
294-
sprintf(msg, "%d\n", ATTACH_ERROR_BADVERSION);
295-
write_fully(s, msg, strlen(msg));
294+
int msg_len = os::snprintf_checked(msg, sizeof(msg), "%d\n", ATTACH_ERROR_BADVERSION);
295+
write_fully(s, msg, msg_len);
296296
return NULL;
297297
}
298298
}
@@ -411,8 +411,8 @@ void BsdAttachOperation::complete(jint result, bufferedStream* st) {
411411

412412
// write operation result
413413
char msg[32];
414-
sprintf(msg, "%d\n", result);
415-
int rc = BsdAttachListener::write_fully(this->socket(), msg, strlen(msg));
414+
int msg_len = os::snprintf_checked(msg, sizeof(msg), "%d\n", result);
415+
int rc = BsdAttachListener::write_fully(this->socket(), msg, msg_len);
416416

417417
// write any result data
418418
if (rc == 0) {

‎src/hotspot/os/bsd/os_bsd.cpp

+11-14
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ void os::init_system_properties_values() {
320320

321321
#ifndef __APPLE__
322322

323-
// Buffer that fits several sprintfs.
323+
// Buffer that fits several snprintfs.
324324
// Note that the space for the colon and the trailing null are provided
325325
// by the nulls included by the sizeof operator.
326326
const size_t bufsize =
@@ -376,17 +376,16 @@ void os::init_system_properties_values() {
376376
const char *v_colon = ":";
377377
if (v == NULL) { v = ""; v_colon = ""; }
378378
// That's +1 for the colon and +1 for the trailing '\0'.
379-
char *ld_library_path = NEW_C_HEAP_ARRAY(char,
380-
strlen(v) + 1 +
381-
sizeof(SYS_EXT_DIR) + sizeof("/lib/") + strlen(cpu_arch) + sizeof(DEFAULT_LIBPATH) + 1,
382-
mtInternal);
383-
sprintf(ld_library_path, "%s%s" SYS_EXT_DIR "/lib/%s:" DEFAULT_LIBPATH, v, v_colon, cpu_arch);
379+
const size_t ld_library_path_size = strlen(v) + 1 + sizeof(SYS_EXT_DIR) +
380+
sizeof("/lib/") + strlen(cpu_arch) + sizeof(DEFAULT_LIBPATH) + 1;
381+
char *ld_library_path = NEW_C_HEAP_ARRAY(char, ld_library_path_size, mtInternal);
382+
os::snprintf_checked(ld_library_path, ld_library_path_size, "%s%s" SYS_EXT_DIR "/lib/%s:" DEFAULT_LIBPATH, v, v_colon, cpu_arch);
384383
Arguments::set_library_path(ld_library_path);
385384
FREE_C_HEAP_ARRAY(char, ld_library_path);
386385
}
387386

388387
// Extensions directories.
389-
sprintf(buf, "%s" EXTENSIONS_DIR ":" SYS_EXT_DIR EXTENSIONS_DIR, Arguments::get_java_home());
388+
os::snprintf_checked(buf, bufsize, "%s" EXTENSIONS_DIR ":" SYS_EXT_DIR EXTENSIONS_DIR, Arguments::get_java_home());
390389
Arguments::set_ext_dirs(buf);
391390

392391
FREE_C_HEAP_ARRAY(char, buf);
@@ -401,7 +400,7 @@ void os::init_system_properties_values() {
401400
size_t system_ext_size = strlen(user_home_dir) + sizeof(SYS_EXTENSIONS_DIR) +
402401
sizeof(SYS_EXTENSIONS_DIRS);
403402

404-
// Buffer that fits several sprintfs.
403+
// Buffer that fits several snprintfs.
405404
// Note that the space for the colon and the trailing null are provided
406405
// by the nulls included by the sizeof operator.
407406
const size_t bufsize =
@@ -471,11 +470,9 @@ void os::init_system_properties_values() {
471470
// could cause a change in behavior, but Apple's Java6 behavior
472471
// can be achieved by putting "." at the beginning of the
473472
// JAVA_LIBRARY_PATH environment variable.
474-
char *ld_library_path = NEW_C_HEAP_ARRAY(char,
475-
strlen(v) + 1 + strlen(l) + 1 +
476-
system_ext_size + 3,
477-
mtInternal);
478-
sprintf(ld_library_path, "%s%s%s%s%s" SYS_EXTENSIONS_DIR ":" SYS_EXTENSIONS_DIRS ":.",
473+
const size_t ld_library_path_size = strlen(v) + 1 + strlen(l) + 1 + system_ext_size + 3;
474+
char *ld_library_path = NEW_C_HEAP_ARRAY(char, ld_library_path_size, mtInternal);
475+
os::snprintf_checked(ld_library_path, ld_library_path_size, "%s%s%s%s%s" SYS_EXTENSIONS_DIR ":" SYS_EXTENSIONS_DIRS ":.",
479476
v, v_colon, l, l_colon, user_home_dir);
480477
Arguments::set_library_path(ld_library_path);
481478
FREE_C_HEAP_ARRAY(char, ld_library_path);
@@ -486,7 +483,7 @@ void os::init_system_properties_values() {
486483
// Note that the space for the colon and the trailing null are provided
487484
// by the nulls included by the sizeof operator (so actually one byte more
488485
// than necessary is allocated).
489-
sprintf(buf, "%s" SYS_EXTENSIONS_DIR ":%s" EXTENSIONS_DIR ":" SYS_EXTENSIONS_DIRS,
486+
os::snprintf_checked(buf, bufsize, "%s" SYS_EXTENSIONS_DIR ":%s" EXTENSIONS_DIR ":" SYS_EXTENSIONS_DIRS,
490487
user_home_dir, Arguments::get_java_home());
491488
Arguments::set_ext_dirs(buf);
492489

‎src/hotspot/share/adlc/adlc.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,8 @@ typedef unsigned int uintptr_t;
100100
// it everywhere it needs to be available.
101101
extern ArchDesc* globalAD;
102102

103+
// Performs snprintf and asserts the result is non-negative (so there was not
104+
// an encoding error) and that the output was not truncated.
105+
extern int snprintf_checked(char* buf, size_t len, const char* fmt, ...);
106+
103107
#endif // SHARE_ADLC_ADLC_HPP

‎src/hotspot/share/adlc/adlparse.cpp

+15-10
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,9 @@ void ADLParser::instr_parse(void) {
211211
return;
212212
}
213213
assert(match_rules_cnt < 100," too many match rule clones");
214-
char* buf = (char*) AdlAllocateHeap(strlen(instr->_ident) + 4);
215-
sprintf(buf, "%s_%d", instr->_ident, match_rules_cnt++);
214+
const size_t buf_size = strlen(instr->_ident) + 4;
215+
char* buf = (char*) AdlAllocateHeap(buf_size);
216+
snprintf_checked(buf, buf_size, "%s_%d", instr->_ident, match_rules_cnt++);
216217
rule->_result = buf;
217218
// Check for commutative operations with tree operands.
218219
matchrule_clone_and_swap(rule, instr->_ident, match_rules_cnt);
@@ -2876,8 +2877,9 @@ void ADLParser::ins_encode_parse_block(InstructForm& inst) {
28762877
// Create a new encoding name based on the name of the instruction
28772878
// definition, which should be unique.
28782879
const char* prefix = "__ins_encode_";
2879-
char* ec_name = (char*) AdlAllocateHeap(strlen(inst._ident) + strlen(prefix) + 1);
2880-
sprintf(ec_name, "%s%s", prefix, inst._ident);
2880+
const size_t ec_name_size = strlen(inst._ident) + strlen(prefix) + 1;
2881+
char* ec_name = (char*) AdlAllocateHeap(ec_name_size);
2882+
snprintf_checked(ec_name, ec_name_size, "%s%s", prefix, inst._ident);
28812883

28822884
assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
28832885
EncClass* encoding = _AD._encode->add_EncClass(ec_name);
@@ -3347,8 +3349,9 @@ void ADLParser::constant_parse(InstructForm& inst) {
33473349
// Create a new encoding name based on the name of the instruction
33483350
// definition, which should be unique.
33493351
const char* prefix = "__constant_";
3350-
char* ec_name = (char*) AdlAllocateHeap(strlen(inst._ident) + strlen(prefix) + 1);
3351-
sprintf(ec_name, "%s%s", prefix, inst._ident);
3352+
const size_t ec_name_size = strlen(inst._ident) + strlen(prefix) + 1;
3353+
char* ec_name = (char*) AdlAllocateHeap(ec_name_size);
3354+
snprintf_checked(ec_name, ec_name_size, "%s%s", prefix, inst._ident);
33523355

33533356
assert(_AD._encode->encClass(ec_name) == NULL, "shouldn't already exist");
33543357
EncClass* encoding = _AD._encode->add_EncClass(ec_name);
@@ -4667,8 +4670,9 @@ char *ADLParser::get_ident_or_literal_constant(const char* description) {
46674670
// Grab a constant expression.
46684671
param = get_paren_expr(description);
46694672
if (param[0] != '(') {
4670-
char* buf = (char*) AdlAllocateHeap(strlen(param) + 3);
4671-
sprintf(buf, "(%s)", param);
4673+
const size_t buf_size = strlen(param) + 3;
4674+
char* buf = (char*) AdlAllocateHeap(buf_size);
4675+
snprintf_checked(buf, buf_size, "(%s)", param);
46724676
param = buf;
46734677
}
46744678
assert(is_literal_constant(param),
@@ -5275,8 +5279,9 @@ void ADLParser::next_line() {
52755279
char* ADLParser::get_line_string(int linenum) {
52765280
const char* file = _AD._ADL_file._name;
52775281
int line = linenum ? linenum : this->linenum();
5278-
char* location = (char *)AdlAllocateHeap(strlen(file) + 100);
5279-
sprintf(location, "\n#line %d \"%s\"\n", line, file);
5282+
const size_t location_size = strlen(file) + 100;
5283+
char* location = (char *)AdlAllocateHeap(location_size);
5284+
snprintf_checked(location, location_size, "\n#line %d \"%s\"\n", line, file);
52805285
return location;
52815286
}
52825287

‎src/hotspot/share/adlc/archDesc.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ static const char *getRegMask(const char *reg_class_name) {
815815
const char *mask = "_mask";
816816
int length = (int)strlen(rc_name) + (int)strlen(mask) + 5;
817817
char *regMask = new char[length];
818-
sprintf(regMask,"%s%s()", rc_name, mask);
818+
snprintf_checked(regMask, length, "%s%s()", rc_name, mask);
819819
delete[] rc_name;
820820
return regMask;
821821
}
@@ -908,7 +908,7 @@ char *ArchDesc::stack_or_reg_mask(OperandForm &opForm) {
908908
const char *stack_or = "STACK_OR_";
909909
int length = (int)strlen(stack_or) + (int)strlen(reg_mask_name) + 1;
910910
char *result = new char[length];
911-
sprintf(result,"%s%s", stack_or, reg_mask_name);
911+
snprintf_checked(result, length, "%s%s", stack_or, reg_mask_name);
912912

913913
return result;
914914
}

‎src/hotspot/share/adlc/dfa.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -212,13 +212,13 @@ Expr *ArchDesc::calc_cost(FILE *fp, const char *spaces, MatchList &mList, Produc
212212
Expr *c = new Expr("0");
213213
if (mList._lchild) { // If left child, add it in
214214
const char* lchild_to_upper = ArchDesc::getMachOperEnum(mList._lchild);
215-
sprintf(Expr::buffer(), "_kids[0]->_cost[%s]", lchild_to_upper);
215+
snprintf_checked(Expr::buffer(), STRING_BUFFER_LENGTH, "_kids[0]->_cost[%s]", lchild_to_upper);
216216
c->add(Expr::buffer());
217217
delete[] lchild_to_upper;
218218
}
219219
if (mList._rchild) { // If right child, add it in
220220
const char* rchild_to_upper = ArchDesc::getMachOperEnum(mList._rchild);
221-
sprintf(Expr::buffer(), "_kids[1]->_cost[%s]", rchild_to_upper);
221+
snprintf_checked(Expr::buffer(), STRING_BUFFER_LENGTH, "_kids[1]->_cost[%s]", rchild_to_upper);
222222
c->add(Expr::buffer());
223223
delete[] rchild_to_upper;
224224
}
@@ -757,7 +757,7 @@ const char *Expr::compute_expr(const Expr *c1, const Expr *c2) {
757757
snprintf(string_buffer, STRING_BUFFER_LENGTH, "%s", c2->_expr);
758758
}
759759
else {
760-
sprintf( string_buffer, "0");
760+
snprintf_checked(string_buffer, STRING_BUFFER_LENGTH, "0");
761761
}
762762
string_buffer[STRING_BUFFER_LENGTH - 1] = '\0';
763763
char *cost = strdup(string_buffer);

‎src/hotspot/share/adlc/formssel.cpp

+7-4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
// FORMS.CPP - Definitions for ADL Parser Forms Classes
2626
#include "adlc.hpp"
2727

28+
#define remaining_buflen(buffer, position) (sizeof(buffer) - ((position) - (buffer)))
29+
2830
//==============================Instructions===================================
2931
//------------------------------InstructForm-----------------------------------
3032
InstructForm::InstructForm(const char *id, bool ideal_only)
@@ -1533,7 +1535,7 @@ Predicate *InstructForm::build_predicate() {
15331535
s += strlen(s);
15341536
}
15351537
// Add predicate to working buffer
1536-
sprintf(s,"/*%s*/(",(char*)i._key);
1538+
snprintf_checked(s, remaining_buflen(buf, s), "/*%s*/(",(char*)i._key);
15371539
s += strlen(s);
15381540
mnode->build_instr_pred(s,(char*)i._key, 0, path_bitmask, 0);
15391541
s += strlen(s);
@@ -3472,7 +3474,7 @@ void MatchNode::build_internalop( ) {
34723474
_rChild->_internalop : _rChild->_opType) : "";
34733475
len += (int)strlen(lstr) + (int)strlen(rstr);
34743476
subtree = (char *)AdlAllocateHeap(len);
3475-
sprintf(subtree,"_%s_%s_%s", _opType, lstr, rstr);
3477+
snprintf_checked(subtree, len, "_%s_%s_%s", _opType, lstr, rstr);
34763478
// Hash the subtree string in _internalOps; if a name exists, use it
34773479
iop = (char *)_AD._internalOps[subtree];
34783480
// Else create a unique name, and add it to the hash table
@@ -3919,8 +3921,9 @@ void MatchRule::matchrule_swap_commutative_op(const char* instr_ident, int count
39193921
MatchRule* clone = new MatchRule(_AD, this);
39203922
// Swap operands of commutative operation
39213923
((MatchNode*)clone)->swap_commutative_op(true, count);
3922-
char* buf = (char*) AdlAllocateHeap(strlen(instr_ident) + 4);
3923-
sprintf(buf, "%s_%d", instr_ident, match_rules_cnt++);
3924+
const size_t buf_size = strlen(instr_ident) + 4;
3925+
char* buf = (char*) AdlAllocateHeap(buf_size);
3926+
snprintf_checked(buf, buf_size, "%s_%d", instr_ident, match_rules_cnt++);
39243927
clone->_result = buf;
39253928

39263929
clone->_next = this->_next;

‎src/hotspot/share/adlc/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ static char *base_plus_suffix(const char* base, const char *suffix)
466466
int len = (int)strlen(base) + (int)strlen(suffix) + 1;
467467

468468
char* fname = new char[len];
469-
sprintf(fname,"%s%s",base,suffix);
469+
snprintf_checked(fname,len,"%s%s",base,suffix);
470470
return fname;
471471
}
472472

0 commit comments

Comments
 (0)
Please sign in to comment.