Bug 155581 - vsscanf failed to convert long string
Summary: vsscanf failed to convert long string
Status: NEW
Alias: None
Product: Other
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 low
Assignee: other_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-08-30 06:55 UTC by yeger00
Modified: 2016-09-01 10:09 UTC (History)
1 user (show)

See Also:
Kernel Version: 4.7
Subsystem:
Regression: No
Bisected commit-id:


Attachments

Description yeger00 2016-08-30 06:55:21 UTC
Hello,
When using vsscanf to convert string to int, it uses simple_strtol, and it fails to convert if the string is longer then 16 bytes. 


Example code:

const char hexstring[] = "deadbeef10203040b0", *pos = hexstring;
unsigned char val[9];
size_t count = 0;

for(count = 0; count < sizeof(val)/sizeof(val[0]); count++) {
	sscanf(pos, "%2hhx", &val[count]);
	pos += 2;
}

/* val will be 00adbeef10203040b0 instead of deadbeef10203040b0. */

Thank you
Comment 1 Alexey Dobriyan 2016-09-01 10:09:51 UTC
confirmed, glibc scans "deadbeef...".

Note You need to log in before you can comment on or make changes to this bug.