1 /*******************************************************************************
3 * Module Name: utnonansi - Non-ansi C library functions
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
47 #define _COMPONENT ACPI_UTILITIES
48 ACPI_MODULE_NAME("utnonansi")
51 * Non-ANSI C library functions - strlwr, strupr, stricmp, and a 64-bit
54 /*******************************************************************************
56 * FUNCTION: acpi_ut_strlwr (strlwr)
58 * PARAMETERS: src_string - The source string to convert
62 * DESCRIPTION: Convert a string to lowercase
64 ******************************************************************************/
65 void acpi_ut_strlwr(char *src_string
)
69 ACPI_FUNCTION_ENTRY();
75 /* Walk entire string, lowercasing the letters */
77 for (string
= src_string
; *string
; string
++) {
78 *string
= (char)tolower((int)*string
);
82 /*******************************************************************************
84 * FUNCTION: acpi_ut_strupr (strupr)
86 * PARAMETERS: src_string - The source string to convert
90 * DESCRIPTION: Convert a string to uppercase
92 ******************************************************************************/
94 void acpi_ut_strupr(char *src_string
)
98 ACPI_FUNCTION_ENTRY();
104 /* Walk entire string, uppercasing the letters */
106 for (string
= src_string
; *string
; string
++) {
107 *string
= (char)toupper((int)*string
);
111 /******************************************************************************
113 * FUNCTION: acpi_ut_stricmp (stricmp)
115 * PARAMETERS: string1 - first string to compare
116 * string2 - second string to compare
118 * RETURN: int that signifies string relationship. Zero means strings
121 * DESCRIPTION: Case-insensitive string compare. Implementation of the
122 * non-ANSI stricmp function.
124 ******************************************************************************/
126 int acpi_ut_stricmp(char *string1
, char *string2
)
132 c1
= tolower((int)*string1
);
133 c2
= tolower((int)*string2
);
138 while ((c1
== c2
) && (c1
));
143 #if defined (ACPI_DEBUGGER) || defined (ACPI_APPLICATION)
144 /*******************************************************************************
146 * FUNCTION: acpi_ut_safe_strcpy, acpi_ut_safe_strcat, acpi_ut_safe_strncat
148 * PARAMETERS: Adds a "DestSize" parameter to each of the standard string
149 * functions. This is the size of the Destination buffer.
151 * RETURN: TRUE if the operation would overflow the destination buffer.
153 * DESCRIPTION: Safe versions of standard Clib string functions. Ensure that
154 * the result of the operation will not overflow the output string
157 * NOTE: These functions are typically only helpful for processing
158 * user input and command lines. For most ACPICA code, the
159 * required buffer length is precisely calculated before buffer
160 * allocation, so the use of these functions is unnecessary.
162 ******************************************************************************/
164 u8
acpi_ut_safe_strcpy(char *dest
, acpi_size dest_size
, char *source
)
167 if (strlen(source
) >= dest_size
) {
171 strcpy(dest
, source
);
175 u8
acpi_ut_safe_strcat(char *dest
, acpi_size dest_size
, char *source
)
178 if ((strlen(dest
) + strlen(source
)) >= dest_size
) {
182 strcat(dest
, source
);
187 acpi_ut_safe_strncat(char *dest
,
189 char *source
, acpi_size max_transfer_length
)
191 acpi_size actual_transfer_length
;
193 actual_transfer_length
= ACPI_MIN(max_transfer_length
, strlen(source
));
195 if ((strlen(dest
) + actual_transfer_length
) >= dest_size
) {
199 strncat(dest
, source
, max_transfer_length
);
204 /*******************************************************************************
206 * FUNCTION: acpi_ut_strtoul64
208 * PARAMETERS: string - Null terminated string
209 * base - Radix of the string: 16 or ACPI_ANY_BASE;
210 * ACPI_ANY_BASE means 'in behalf of to_integer'
211 * ret_integer - Where the converted integer is returned
213 * RETURN: Status and Converted value
215 * DESCRIPTION: Convert a string into an unsigned value. Performs either a
216 * 32-bit or 64-bit conversion, depending on the current mode
217 * of the interpreter.
219 * NOTES: acpi_gbl_integer_byte_width should be set to the proper width.
220 * For the core ACPICA code, this width depends on the DSDT
221 * version. For iASL, the default byte width is always 8.
223 * Does not support Octal strings, not needed at this time.
225 * There is an earlier version of the function after this one,
226 * below. It is slightly different than this one, and the two
227 * may eventually may need to be merged. (01/2016).
229 ******************************************************************************/
231 acpi_status
acpi_ut_strtoul64(char *string
, u32 base
, u64
*ret_integer
)
234 u64 return_value
= 0;
237 u32 to_integer_op
= (base
== ACPI_ANY_BASE
);
238 u32 mode32
= (acpi_gbl_integer_byte_width
== 4);
243 ACPI_FUNCTION_TRACE_STR(ut_strtoul64
, string
);
255 return_ACPI_STATUS(AE_BAD_PARAMETER
);
262 /* Skip over any white space in the buffer */
264 while ((*string
) && (isspace((int)*string
) || *string
== '\t')) {
270 * Base equal to ACPI_ANY_BASE means 'ToInteger operation case'.
271 * We need to determine if it is decimal or hexadecimal.
273 if ((*string
== '0') && (tolower((int)*(string
+ 1)) == 'x')) {
277 /* Skip over the leading '0x' */
284 /* Any string left? Check that '0x' is not followed by white space. */
286 if (!(*string
) || isspace((int)*string
) || *string
== '\t') {
295 * Perform a 32-bit or 64-bit conversion, depending upon the current
296 * execution mode of the interpreter
298 dividend
= (mode32
) ? ACPI_UINT32_MAX
: ACPI_UINT64_MAX
;
300 /* Main loop: convert the string to a 32- or 64-bit integer */
303 if (isdigit((int)*string
)) {
305 /* Convert ASCII 0-9 to Decimal value */
307 this_digit
= ((u8
)*string
) - '0';
308 } else if (base
== 10) {
310 /* Digit is out of range; possible in to_integer case only */
314 this_digit
= (u8
)toupper((int)*string
);
315 if (isxdigit((int)this_digit
)) {
317 /* Convert ASCII Hex char to value */
319 this_digit
= this_digit
- 'A' + 10;
331 } else if ((valid_digits
== 0) && (this_digit
== 0)
342 && ((valid_digits
> 16)
343 || ((valid_digits
> 8) && mode32
))) {
345 * This is to_integer operation case.
346 * No any restrictions for string-to-integer conversion,
352 /* Divide the digit into the correct position */
354 (void)acpi_ut_short_divide((dividend
- (u64
)this_digit
), base
,
357 if (return_value
> quotient
) {
365 return_value
*= base
;
366 return_value
+= this_digit
;
370 /* All done, normal exit */
374 ACPI_DEBUG_PRINT((ACPI_DB_EXEC
, "Converted value: %8.8X%8.8X\n",
375 ACPI_FORMAT_UINT64(return_value
)));
377 *ret_integer
= return_value
;
378 return_ACPI_STATUS(AE_OK
);
381 /* Base was set/validated above */
384 return_ACPI_STATUS(AE_BAD_DECIMAL_CONSTANT
);
386 return_ACPI_STATUS(AE_BAD_HEX_CONSTANT
);
390 #ifdef _OBSOLETE_FUNCTIONS
391 /* TBD: use version in ACPICA main code base? */
394 /*******************************************************************************
396 * FUNCTION: strtoul64
398 * PARAMETERS: string - Null terminated string
399 * terminater - Where a pointer to the terminating byte
401 * base - Radix of the string
403 * RETURN: Converted value
405 * DESCRIPTION: Convert a string into an unsigned value.
407 ******************************************************************************/
409 acpi_status
strtoul64(char *string
, u32 base
, u64
*ret_integer
)
413 u64 return_value
= 0;
414 acpi_status status
= AE_OK
;
428 * The specified Base parameter is not in the domain of
431 return (AE_BAD_PARAMETER
);
434 /* Skip over any white space in the buffer: */
436 while (isspace((int)*string
) || *string
== '\t') {
441 * The buffer may contain an optional plus or minus sign.
442 * If it does, then skip over it but remember what is was:
444 if (*string
== '-') {
445 sign
= ACPI_SIGN_NEGATIVE
;
447 } else if (*string
== '+') {
449 sign
= ACPI_SIGN_POSITIVE
;
451 sign
= ACPI_SIGN_POSITIVE
;
455 * If the input parameter Base is zero, then we need to
456 * determine if it is octal, decimal, or hexadecimal:
459 if (*string
== '0') {
460 if (tolower((int)*(++string
)) == 'x') {
472 * For octal and hexadecimal bases, skip over the leading
473 * 0 or 0x, if they are present.
475 if (base
== 8 && *string
== '0') {
479 if (base
== 16 && *string
== '0' && tolower((int)*(++string
)) == 'x') {
483 /* Main loop: convert the string to an unsigned long */
486 if (isdigit((int)*string
)) {
487 index
= ((u8
)*string
) - '0';
489 index
= (u8
)toupper((int)*string
);
490 if (isupper((int)index
)) {
491 index
= index
- 'A' + 10;
501 /* Check to see if value is out of range: */
503 if (return_value
> ((ACPI_UINT64_MAX
- (u64
)index
) / (u64
)base
)) {
506 return_value
*= base
;
507 return_value
+= index
;
513 /* If a minus sign was present, then "the conversion is negated": */
515 if (sign
== ACPI_SIGN_NEGATIVE
) {
516 return_value
= (ACPI_UINT32_MAX
- return_value
) + 1;
519 *ret_integer
= return_value
;
526 status
= AE_BAD_OCTAL_CONSTANT
;
531 status
= AE_BAD_DECIMAL_CONSTANT
;
536 status
= AE_BAD_HEX_CONSTANT
;
541 /* Base validated above */