Home | History | Annotate | Line # | Download | only in utilities
utnonansi.c revision 1.2
      1  1.1  christos /*******************************************************************************
      2  1.1  christos  *
      3  1.1  christos  * Module Name: utnonansi - Non-ansi C library functions
      4  1.1  christos  *
      5  1.1  christos  ******************************************************************************/
      6  1.1  christos 
      7  1.1  christos /*
      8  1.2  christos  * Copyright (C) 2000 - 2018, Intel Corp.
      9  1.1  christos  * All rights reserved.
     10  1.1  christos  *
     11  1.1  christos  * Redistribution and use in source and binary forms, with or without
     12  1.1  christos  * modification, are permitted provided that the following conditions
     13  1.1  christos  * are met:
     14  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     15  1.1  christos  *    notice, this list of conditions, and the following disclaimer,
     16  1.1  christos  *    without modification.
     17  1.1  christos  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
     18  1.1  christos  *    substantially similar to the "NO WARRANTY" disclaimer below
     19  1.1  christos  *    ("Disclaimer") and any redistribution must be conditioned upon
     20  1.1  christos  *    including a substantially similar Disclaimer requirement for further
     21  1.1  christos  *    binary redistribution.
     22  1.1  christos  * 3. Neither the names of the above-listed copyright holders nor the names
     23  1.1  christos  *    of any contributors may be used to endorse or promote products derived
     24  1.1  christos  *    from this software without specific prior written permission.
     25  1.1  christos  *
     26  1.1  christos  * Alternatively, this software may be distributed under the terms of the
     27  1.1  christos  * GNU General Public License ("GPL") version 2 as published by the Free
     28  1.1  christos  * Software Foundation.
     29  1.1  christos  *
     30  1.1  christos  * NO WARRANTY
     31  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
     32  1.1  christos  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
     33  1.1  christos  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
     34  1.1  christos  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
     35  1.1  christos  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     39  1.1  christos  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
     40  1.1  christos  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     41  1.1  christos  * POSSIBILITY OF SUCH DAMAGES.
     42  1.1  christos  */
     43  1.1  christos 
     44  1.1  christos #include "acpi.h"
     45  1.1  christos #include "accommon.h"
     46  1.1  christos 
     47  1.1  christos 
     48  1.1  christos #define _COMPONENT          ACPI_UTILITIES
     49  1.1  christos         ACPI_MODULE_NAME    ("utnonansi")
     50  1.1  christos 
     51  1.1  christos /*
     52  1.2  christos  * Non-ANSI C library functions - strlwr, strupr, stricmp, and "safe"
     53  1.2  christos  * string functions.
     54  1.1  christos  */
     55  1.1  christos 
     56  1.1  christos /*******************************************************************************
     57  1.1  christos  *
     58  1.1  christos  * FUNCTION:    AcpiUtStrlwr (strlwr)
     59  1.1  christos  *
     60  1.1  christos  * PARAMETERS:  SrcString       - The source string to convert
     61  1.1  christos  *
     62  1.1  christos  * RETURN:      None
     63  1.1  christos  *
     64  1.1  christos  * DESCRIPTION: Convert a string to lowercase
     65  1.1  christos  *
     66  1.1  christos  ******************************************************************************/
     67  1.1  christos 
     68  1.1  christos void
     69  1.1  christos AcpiUtStrlwr (
     70  1.1  christos     char                    *SrcString)
     71  1.1  christos {
     72  1.1  christos     char                    *String;
     73  1.1  christos 
     74  1.1  christos 
     75  1.1  christos     ACPI_FUNCTION_ENTRY ();
     76  1.1  christos 
     77  1.1  christos 
     78  1.1  christos     if (!SrcString)
     79  1.1  christos     {
     80  1.1  christos         return;
     81  1.1  christos     }
     82  1.1  christos 
     83  1.1  christos     /* Walk entire string, lowercasing the letters */
     84  1.1  christos 
     85  1.1  christos     for (String = SrcString; *String; String++)
     86  1.1  christos     {
     87  1.1  christos         *String = (char) tolower ((int) *String);
     88  1.1  christos     }
     89  1.1  christos }
     90  1.1  christos 
     91  1.1  christos 
     92  1.1  christos /*******************************************************************************
     93  1.1  christos  *
     94  1.1  christos  * FUNCTION:    AcpiUtStrupr (strupr)
     95  1.1  christos  *
     96  1.1  christos  * PARAMETERS:  SrcString       - The source string to convert
     97  1.1  christos  *
     98  1.1  christos  * RETURN:      None
     99  1.1  christos  *
    100  1.1  christos  * DESCRIPTION: Convert a string to uppercase
    101  1.1  christos  *
    102  1.1  christos  ******************************************************************************/
    103  1.1  christos 
    104  1.1  christos void
    105  1.1  christos AcpiUtStrupr (
    106  1.1  christos     char                    *SrcString)
    107  1.1  christos {
    108  1.1  christos     char                    *String;
    109  1.1  christos 
    110  1.1  christos 
    111  1.1  christos     ACPI_FUNCTION_ENTRY ();
    112  1.1  christos 
    113  1.1  christos 
    114  1.1  christos     if (!SrcString)
    115  1.1  christos     {
    116  1.1  christos         return;
    117  1.1  christos     }
    118  1.1  christos 
    119  1.1  christos     /* Walk entire string, uppercasing the letters */
    120  1.1  christos 
    121  1.1  christos     for (String = SrcString; *String; String++)
    122  1.1  christos     {
    123  1.1  christos         *String = (char) toupper ((int) *String);
    124  1.1  christos     }
    125  1.1  christos }
    126  1.1  christos 
    127  1.1  christos 
    128  1.1  christos /******************************************************************************
    129  1.1  christos  *
    130  1.1  christos  * FUNCTION:    AcpiUtStricmp (stricmp)
    131  1.1  christos  *
    132  1.1  christos  * PARAMETERS:  String1             - first string to compare
    133  1.1  christos  *              String2             - second string to compare
    134  1.1  christos  *
    135  1.1  christos  * RETURN:      int that signifies string relationship. Zero means strings
    136  1.1  christos  *              are equal.
    137  1.1  christos  *
    138  1.1  christos  * DESCRIPTION: Case-insensitive string compare. Implementation of the
    139  1.1  christos  *              non-ANSI stricmp function.
    140  1.1  christos  *
    141  1.1  christos  ******************************************************************************/
    142  1.1  christos 
    143  1.1  christos int
    144  1.1  christos AcpiUtStricmp (
    145  1.1  christos     char                    *String1,
    146  1.1  christos     char                    *String2)
    147  1.1  christos {
    148  1.1  christos     int                     c1;
    149  1.1  christos     int                     c2;
    150  1.1  christos 
    151  1.1  christos 
    152  1.1  christos     do
    153  1.1  christos     {
    154  1.1  christos         c1 = tolower ((int) *String1);
    155  1.1  christos         c2 = tolower ((int) *String2);
    156  1.1  christos 
    157  1.1  christos         String1++;
    158  1.1  christos         String2++;
    159  1.1  christos     }
    160  1.1  christos     while ((c1 == c2) && (c1));
    161  1.1  christos 
    162  1.1  christos     return (c1 - c2);
    163  1.1  christos }
    164  1.1  christos 
    165  1.1  christos 
    166  1.2  christos #if defined (ACPI_DEBUGGER) || defined (ACPI_APPLICATION) || defined (ACPI_DEBUG_OUTPUT)
    167  1.1  christos /*******************************************************************************
    168  1.1  christos  *
    169  1.1  christos  * FUNCTION:    AcpiUtSafeStrcpy, AcpiUtSafeStrcat, AcpiUtSafeStrncat
    170  1.1  christos  *
    171  1.1  christos  * PARAMETERS:  Adds a "DestSize" parameter to each of the standard string
    172  1.1  christos  *              functions. This is the size of the Destination buffer.
    173  1.1  christos  *
    174  1.1  christos  * RETURN:      TRUE if the operation would overflow the destination buffer.
    175  1.1  christos  *
    176  1.1  christos  * DESCRIPTION: Safe versions of standard Clib string functions. Ensure that
    177  1.1  christos  *              the result of the operation will not overflow the output string
    178  1.1  christos  *              buffer.
    179  1.1  christos  *
    180  1.1  christos  * NOTE:        These functions are typically only helpful for processing
    181  1.1  christos  *              user input and command lines. For most ACPICA code, the
    182  1.1  christos  *              required buffer length is precisely calculated before buffer
    183  1.1  christos  *              allocation, so the use of these functions is unnecessary.
    184  1.1  christos  *
    185  1.1  christos  ******************************************************************************/
    186  1.1  christos 
    187  1.1  christos BOOLEAN
    188  1.1  christos AcpiUtSafeStrcpy (
    189  1.1  christos     char                    *Dest,
    190  1.1  christos     ACPI_SIZE               DestSize,
    191  1.1  christos     char                    *Source)
    192  1.1  christos {
    193  1.1  christos 
    194  1.1  christos     if (strlen (Source) >= DestSize)
    195  1.1  christos     {
    196  1.1  christos         return (TRUE);
    197  1.1  christos     }
    198  1.1  christos 
    199  1.1  christos     strcpy (Dest, Source);
    200  1.1  christos     return (FALSE);
    201  1.1  christos }
    202  1.1  christos 
    203  1.1  christos BOOLEAN
    204  1.1  christos AcpiUtSafeStrcat (
    205  1.1  christos     char                    *Dest,
    206  1.1  christos     ACPI_SIZE               DestSize,
    207  1.1  christos     char                    *Source)
    208  1.1  christos {
    209  1.1  christos 
    210  1.1  christos     if ((strlen (Dest) + strlen (Source)) >= DestSize)
    211  1.1  christos     {
    212  1.1  christos         return (TRUE);
    213  1.1  christos     }
    214  1.1  christos 
    215  1.1  christos     strcat (Dest, Source);
    216  1.1  christos     return (FALSE);
    217  1.1  christos }
    218  1.1  christos 
    219  1.1  christos BOOLEAN
    220  1.1  christos AcpiUtSafeStrncat (
    221  1.1  christos     char                    *Dest,
    222  1.1  christos     ACPI_SIZE               DestSize,
    223  1.1  christos     char                    *Source,
    224  1.1  christos     ACPI_SIZE               MaxTransferLength)
    225  1.1  christos {
    226  1.1  christos     ACPI_SIZE               ActualTransferLength;
    227  1.1  christos 
    228  1.1  christos 
    229  1.1  christos     ActualTransferLength = ACPI_MIN (MaxTransferLength, strlen (Source));
    230  1.1  christos 
    231  1.1  christos     if ((strlen (Dest) + ActualTransferLength) >= DestSize)
    232  1.1  christos     {
    233  1.1  christos         return (TRUE);
    234  1.1  christos     }
    235  1.1  christos 
    236  1.1  christos     strncat (Dest, Source, MaxTransferLength);
    237  1.1  christos     return (FALSE);
    238  1.1  christos }
    239  1.2  christos 
    240  1.2  christos void
    241  1.2  christos AcpiUtSafeStrncpy (
    242  1.2  christos     char                    *Dest,
    243  1.2  christos     const char              *Source,
    244  1.2  christos     ACPI_SIZE               DestSize)
    245  1.2  christos {
    246  1.2  christos     /* Always terminate destination string */
    247  1.2  christos 
    248  1.2  christos     strncpy (Dest, Source, DestSize);
    249  1.2  christos     Dest[DestSize - 1] = 0;
    250  1.2  christos }
    251  1.2  christos 
    252  1.1  christos #endif
    253