Home | History | Annotate | Line # | Download | only in compiler
aslfileio.c revision 1.6
      1  1.1  christos /******************************************************************************
      2  1.1  christos  *
      3  1.1  christos  * Module Name: aslfileio - File I/O support
      4  1.1  christos  *
      5  1.1  christos  *****************************************************************************/
      6  1.1  christos 
      7  1.1  christos /*
      8  1.6  christos  * Copyright (C) 2000 - 2016, 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 "aslcompiler.h"
     45  1.3  christos #include "acapps.h"
     46  1.1  christos 
     47  1.1  christos #define _COMPONENT          ACPI_COMPILER
     48  1.1  christos         ACPI_MODULE_NAME    ("aslfileio")
     49  1.1  christos 
     50  1.1  christos 
     51  1.1  christos /*******************************************************************************
     52  1.1  christos  *
     53  1.1  christos  * FUNCTION:    FlFileError
     54  1.1  christos  *
     55  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
     56  1.1  christos  *              ErrorId             - Index into error message array
     57  1.1  christos  *
     58  1.1  christos  * RETURN:      None
     59  1.1  christos  *
     60  1.1  christos  * DESCRIPTION: Decode errno to an error message and add the entire error
     61  1.1  christos  *              to the error log.
     62  1.1  christos  *
     63  1.1  christos  ******************************************************************************/
     64  1.1  christos 
     65  1.1  christos void
     66  1.1  christos FlFileError (
     67  1.1  christos     UINT32                  FileId,
     68  1.1  christos     UINT8                   ErrorId)
     69  1.1  christos {
     70  1.1  christos 
     71  1.4  christos     snprintf (MsgBuffer, sizeof(MsgBuffer), "\"%s\" (%s) - %s", Gbl_Files[FileId].Filename,
     72  1.4  christos         Gbl_Files[FileId].Description, strerror (errno));
     73  1.6  christos 
     74  1.1  christos     AslCommonError (ASL_ERROR, ErrorId, 0, 0, 0, 0, NULL, MsgBuffer);
     75  1.1  christos }
     76  1.1  christos 
     77  1.1  christos 
     78  1.1  christos /*******************************************************************************
     79  1.1  christos  *
     80  1.1  christos  * FUNCTION:    FlOpenFile
     81  1.1  christos  *
     82  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
     83  1.1  christos  *              Filename            - file pathname to open
     84  1.1  christos  *              Mode                - Open mode for fopen
     85  1.1  christos  *
     86  1.1  christos  * RETURN:      None
     87  1.1  christos  *
     88  1.1  christos  * DESCRIPTION: Open a file.
     89  1.1  christos  *              NOTE: Aborts compiler on any error.
     90  1.1  christos  *
     91  1.1  christos  ******************************************************************************/
     92  1.1  christos 
     93  1.1  christos void
     94  1.1  christos FlOpenFile (
     95  1.1  christos     UINT32                  FileId,
     96  1.1  christos     char                    *Filename,
     97  1.1  christos     char                    *Mode)
     98  1.1  christos {
     99  1.1  christos     FILE                    *File;
    100  1.1  christos 
    101  1.1  christos 
    102  1.4  christos     Gbl_Files[FileId].Filename = Filename;
    103  1.4  christos     Gbl_Files[FileId].Handle = NULL;
    104  1.4  christos 
    105  1.1  christos     File = fopen (Filename, Mode);
    106  1.1  christos     if (!File)
    107  1.1  christos     {
    108  1.1  christos         FlFileError (FileId, ASL_MSG_OPEN);
    109  1.1  christos         AslAbort ();
    110  1.1  christos     }
    111  1.1  christos 
    112  1.4  christos     Gbl_Files[FileId].Handle = File;
    113  1.1  christos }
    114  1.1  christos 
    115  1.1  christos 
    116  1.1  christos /*******************************************************************************
    117  1.1  christos  *
    118  1.1  christos  * FUNCTION:    FlGetFileSize
    119  1.1  christos  *
    120  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    121  1.1  christos  *
    122  1.1  christos  * RETURN:      File Size
    123  1.1  christos  *
    124  1.3  christos  * DESCRIPTION: Get current file size. Uses common seek-to-EOF function.
    125  1.3  christos  *              File must be open. Aborts compiler on error.
    126  1.1  christos  *
    127  1.1  christos  ******************************************************************************/
    128  1.1  christos 
    129  1.1  christos UINT32
    130  1.1  christos FlGetFileSize (
    131  1.1  christos     UINT32                  FileId)
    132  1.1  christos {
    133  1.1  christos     UINT32                  FileSize;
    134  1.1  christos 
    135  1.1  christos 
    136  1.3  christos     FileSize = CmGetFileSize (Gbl_Files[FileId].Handle);
    137  1.3  christos     if (FileSize == ACPI_UINT32_MAX)
    138  1.3  christos     {
    139  1.3  christos         AslAbort();
    140  1.3  christos     }
    141  1.1  christos 
    142  1.1  christos     return (FileSize);
    143  1.1  christos }
    144  1.1  christos 
    145  1.1  christos 
    146  1.1  christos /*******************************************************************************
    147  1.1  christos  *
    148  1.1  christos  * FUNCTION:    FlReadFile
    149  1.1  christos  *
    150  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    151  1.1  christos  *              Buffer              - Where to place the data
    152  1.1  christos  *              Length              - Amount to read
    153  1.1  christos  *
    154  1.1  christos  * RETURN:      Status. AE_ERROR indicates EOF.
    155  1.1  christos  *
    156  1.1  christos  * DESCRIPTION: Read data from an open file.
    157  1.1  christos  *              NOTE: Aborts compiler on any error.
    158  1.1  christos  *
    159  1.1  christos  ******************************************************************************/
    160  1.1  christos 
    161  1.1  christos ACPI_STATUS
    162  1.1  christos FlReadFile (
    163  1.1  christos     UINT32                  FileId,
    164  1.1  christos     void                    *Buffer,
    165  1.1  christos     UINT32                  Length)
    166  1.1  christos {
    167  1.1  christos     UINT32                  Actual;
    168  1.1  christos 
    169  1.1  christos 
    170  1.1  christos     /* Read and check for error */
    171  1.1  christos 
    172  1.1  christos     Actual = fread (Buffer, 1, Length, Gbl_Files[FileId].Handle);
    173  1.1  christos     if (Actual < Length)
    174  1.1  christos     {
    175  1.1  christos         if (feof (Gbl_Files[FileId].Handle))
    176  1.1  christos         {
    177  1.1  christos             /* End-of-file, just return error */
    178  1.1  christos 
    179  1.1  christos             return (AE_ERROR);
    180  1.1  christos         }
    181  1.1  christos 
    182  1.1  christos         FlFileError (FileId, ASL_MSG_READ);
    183  1.1  christos         AslAbort ();
    184  1.1  christos     }
    185  1.1  christos 
    186  1.1  christos     return (AE_OK);
    187  1.1  christos }
    188  1.1  christos 
    189  1.1  christos 
    190  1.1  christos /*******************************************************************************
    191  1.1  christos  *
    192  1.1  christos  * FUNCTION:    FlWriteFile
    193  1.1  christos  *
    194  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    195  1.1  christos  *              Buffer              - Data to write
    196  1.1  christos  *              Length              - Amount of data to write
    197  1.1  christos  *
    198  1.1  christos  * RETURN:      None
    199  1.1  christos  *
    200  1.1  christos  * DESCRIPTION: Write data to an open file.
    201  1.1  christos  *              NOTE: Aborts compiler on any error.
    202  1.1  christos  *
    203  1.1  christos  ******************************************************************************/
    204  1.1  christos 
    205  1.1  christos void
    206  1.1  christos FlWriteFile (
    207  1.1  christos     UINT32                  FileId,
    208  1.1  christos     void                    *Buffer,
    209  1.1  christos     UINT32                  Length)
    210  1.1  christos {
    211  1.1  christos     UINT32                  Actual;
    212  1.1  christos 
    213  1.1  christos 
    214  1.1  christos     /* Write and check for error */
    215  1.1  christos 
    216  1.1  christos     Actual = fwrite ((char *) Buffer, 1, Length, Gbl_Files[FileId].Handle);
    217  1.1  christos     if (Actual != Length)
    218  1.1  christos     {
    219  1.1  christos         FlFileError (FileId, ASL_MSG_WRITE);
    220  1.1  christos         AslAbort ();
    221  1.1  christos     }
    222  1.5  christos 
    223  1.5  christos     if ((FileId == ASL_FILE_PREPROCESSOR) && Gbl_PreprocessorOutputFlag)
    224  1.5  christos     {
    225  1.5  christos         /* Duplicate the output to the user preprocessor (.i) file */
    226  1.5  christos 
    227  1.5  christos         Actual = fwrite ((char *) Buffer, 1, Length,
    228  1.5  christos             Gbl_Files[ASL_FILE_PREPROCESSOR_USER].Handle);
    229  1.5  christos         if (Actual != Length)
    230  1.5  christos         {
    231  1.5  christos             FlFileError (FileId, ASL_MSG_WRITE);
    232  1.5  christos             AslAbort ();
    233  1.5  christos         }
    234  1.5  christos     }
    235  1.1  christos }
    236  1.1  christos 
    237  1.1  christos 
    238  1.1  christos /*******************************************************************************
    239  1.1  christos  *
    240  1.1  christos  * FUNCTION:    FlPrintFile
    241  1.1  christos  *
    242  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    243  1.1  christos  *              Format              - Printf format string
    244  1.1  christos  *              ...                 - Printf arguments
    245  1.1  christos  *
    246  1.1  christos  * RETURN:      None
    247  1.1  christos  *
    248  1.1  christos  * DESCRIPTION: Formatted write to an open file.
    249  1.1  christos  *              NOTE: Aborts compiler on any error.
    250  1.1  christos  *
    251  1.1  christos  ******************************************************************************/
    252  1.1  christos 
    253  1.1  christos void
    254  1.1  christos FlPrintFile (
    255  1.1  christos     UINT32                  FileId,
    256  1.1  christos     char                    *Format,
    257  1.1  christos     ...)
    258  1.1  christos {
    259  1.1  christos     INT32                   Actual;
    260  1.1  christos     va_list                 Args;
    261  1.1  christos 
    262  1.1  christos 
    263  1.1  christos     va_start (Args, Format);
    264  1.1  christos     Actual = vfprintf (Gbl_Files[FileId].Handle, Format, Args);
    265  1.1  christos     va_end (Args);
    266  1.1  christos 
    267  1.1  christos     if (Actual == -1)
    268  1.1  christos     {
    269  1.1  christos         FlFileError (FileId, ASL_MSG_WRITE);
    270  1.1  christos         AslAbort ();
    271  1.1  christos     }
    272  1.5  christos 
    273  1.6  christos     if ((FileId == ASL_FILE_PREPROCESSOR) &&
    274  1.6  christos         Gbl_PreprocessorOutputFlag)
    275  1.5  christos     {
    276  1.5  christos         /*
    277  1.5  christos          * Duplicate the output to the user preprocessor (.i) file,
    278  1.5  christos          * except: no #line directives.
    279  1.5  christos          */
    280  1.5  christos         if (!strncmp (Format, "#line", 5))
    281  1.5  christos         {
    282  1.5  christos             return;
    283  1.5  christos         }
    284  1.5  christos 
    285  1.5  christos         va_start (Args, Format);
    286  1.5  christos         Actual = vfprintf (Gbl_Files[ASL_FILE_PREPROCESSOR_USER].Handle,
    287  1.5  christos             Format, Args);
    288  1.5  christos         va_end (Args);
    289  1.5  christos 
    290  1.5  christos         if (Actual == -1)
    291  1.5  christos         {
    292  1.5  christos             FlFileError (FileId, ASL_MSG_WRITE);
    293  1.5  christos             AslAbort ();
    294  1.5  christos         }
    295  1.5  christos     }
    296  1.1  christos }
    297  1.1  christos 
    298  1.1  christos 
    299  1.1  christos /*******************************************************************************
    300  1.1  christos  *
    301  1.1  christos  * FUNCTION:    FlSeekFile
    302  1.1  christos  *
    303  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    304  1.1  christos  *              Offset              - Absolute byte offset in file
    305  1.1  christos  *
    306  1.1  christos  * RETURN:      None
    307  1.1  christos  *
    308  1.1  christos  * DESCRIPTION: Seek to absolute offset.
    309  1.1  christos  *              NOTE: Aborts compiler on any error.
    310  1.1  christos  *
    311  1.1  christos  ******************************************************************************/
    312  1.1  christos 
    313  1.1  christos void
    314  1.1  christos FlSeekFile (
    315  1.1  christos     UINT32                  FileId,
    316  1.1  christos     long                    Offset)
    317  1.1  christos {
    318  1.1  christos     int                     Error;
    319  1.1  christos 
    320  1.1  christos 
    321  1.1  christos     Error = fseek (Gbl_Files[FileId].Handle, Offset, SEEK_SET);
    322  1.1  christos     if (Error)
    323  1.1  christos     {
    324  1.1  christos         FlFileError (FileId, ASL_MSG_SEEK);
    325  1.1  christos         AslAbort ();
    326  1.1  christos     }
    327  1.1  christos }
    328  1.1  christos 
    329  1.1  christos 
    330  1.1  christos /*******************************************************************************
    331  1.1  christos  *
    332  1.1  christos  * FUNCTION:    FlCloseFile
    333  1.1  christos  *
    334  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    335  1.1  christos  *
    336  1.1  christos  * RETURN:      None
    337  1.1  christos  *
    338  1.1  christos  * DESCRIPTION: Close an open file. Aborts compiler on error
    339  1.1  christos  *
    340  1.1  christos  ******************************************************************************/
    341  1.1  christos 
    342  1.1  christos void
    343  1.1  christos FlCloseFile (
    344  1.1  christos     UINT32                  FileId)
    345  1.1  christos {
    346  1.1  christos     int                     Error;
    347  1.1  christos 
    348  1.1  christos 
    349  1.1  christos     if (!Gbl_Files[FileId].Handle)
    350  1.1  christos     {
    351  1.1  christos         return;
    352  1.1  christos     }
    353  1.1  christos 
    354  1.1  christos     Error = fclose (Gbl_Files[FileId].Handle);
    355  1.1  christos     if (Error)
    356  1.1  christos     {
    357  1.1  christos         FlFileError (FileId, ASL_MSG_CLOSE);
    358  1.1  christos         AslAbort ();
    359  1.1  christos     }
    360  1.1  christos 
    361  1.3  christos     /* Do not clear/free the filename string */
    362  1.3  christos 
    363  1.1  christos     Gbl_Files[FileId].Handle = NULL;
    364  1.1  christos     return;
    365  1.1  christos }
    366  1.1  christos 
    367  1.1  christos 
    368  1.1  christos /*******************************************************************************
    369  1.1  christos  *
    370  1.1  christos  * FUNCTION:    FlDeleteFile
    371  1.1  christos  *
    372  1.1  christos  * PARAMETERS:  FileId              - Index into file info array
    373  1.1  christos  *
    374  1.1  christos  * RETURN:      None
    375  1.1  christos  *
    376  1.1  christos  * DESCRIPTION: Delete a file.
    377  1.1  christos  *
    378  1.1  christos  ******************************************************************************/
    379  1.1  christos 
    380  1.1  christos void
    381  1.1  christos FlDeleteFile (
    382  1.1  christos     UINT32                  FileId)
    383  1.1  christos {
    384  1.1  christos     ASL_FILE_INFO           *Info = &Gbl_Files[FileId];
    385  1.1  christos 
    386  1.1  christos 
    387  1.1  christos     if (!Info->Filename)
    388  1.1  christos     {
    389  1.1  christos         return;
    390  1.1  christos     }
    391  1.1  christos 
    392  1.1  christos     if (remove (Info->Filename))
    393  1.1  christos     {
    394  1.1  christos         printf ("%s (%s file) ",
    395  1.1  christos             Info->Filename, Info->Description);
    396  1.1  christos         perror ("Could not delete");
    397  1.1  christos     }
    398  1.1  christos 
    399  1.1  christos     Info->Filename = NULL;
    400  1.1  christos     return;
    401  1.1  christos }
    402