(root)/
glibc-2.38/
libio/
bits/
stdio2.h
       1  /* Checking macros for stdio functions.
       2     Copyright (C) 2004-2023 Free Software Foundation, Inc.
       3     This file is part of the GNU C Library.
       4  
       5     The GNU C Library is free software; you can redistribute it and/or
       6     modify it under the terms of the GNU Lesser General Public
       7     License as published by the Free Software Foundation; either
       8     version 2.1 of the License, or (at your option) any later version.
       9  
      10     The GNU C Library is distributed in the hope that it will be useful,
      11     but WITHOUT ANY WARRANTY; without even the implied warranty of
      12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      13     Lesser General Public License for more details.
      14  
      15     You should have received a copy of the GNU Lesser General Public
      16     License along with the GNU C Library; if not, see
      17     <https://www.gnu.org/licenses/>.  */
      18  
      19  #ifndef _BITS_STDIO2_H
      20  #define _BITS_STDIO2_H 1
      21  
      22  #ifndef _STDIO_H
      23  # error "Never include <bits/stdio2.h> directly; use <stdio.h> instead."
      24  #endif
      25  
      26  #ifdef __va_arg_pack
      27  __fortify_function int
      28  __NTH (sprintf (char *__restrict __s, const char *__restrict __fmt, ...))
      29  {
      30    return __builtin___sprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      31  				  __glibc_objsize (__s), __fmt,
      32  				  __va_arg_pack ());
      33  }
      34  #elif !defined __cplusplus
      35  # define sprintf(str, ...) \
      36    __builtin___sprintf_chk (str, __USE_FORTIFY_LEVEL - 1,		      \
      37  			   __glibc_objsize (str), __VA_ARGS__)
      38  #endif
      39  
      40  __fortify_function int
      41  __NTH (vsprintf (char *__restrict __s, const char *__restrict __fmt,
      42  		 __gnuc_va_list __ap))
      43  {
      44    return __builtin___vsprintf_chk (__s, __USE_FORTIFY_LEVEL - 1,
      45  				   __glibc_objsize (__s), __fmt, __ap);
      46  }
      47  
      48  #if defined __USE_ISOC99 || defined __USE_UNIX98
      49  # ifdef __va_arg_pack
      50  __fortify_function int
      51  __NTH (snprintf (char *__restrict __s, size_t __n,
      52  		 const char *__restrict __fmt, ...))
      53  {
      54    return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
      55  				   __glibc_objsize (__s), __fmt,
      56  				   __va_arg_pack ());
      57  }
      58  # elif !defined __cplusplus
      59  #  define snprintf(str, len, ...) \
      60    __builtin___snprintf_chk (str, len, __USE_FORTIFY_LEVEL - 1,		      \
      61  			    __glibc_objsize (str), __VA_ARGS__)
      62  # endif
      63  
      64  __fortify_function int
      65  __NTH (vsnprintf (char *__restrict __s, size_t __n,
      66  		  const char *__restrict __fmt, __gnuc_va_list __ap))
      67  {
      68    return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
      69  				    __glibc_objsize (__s), __fmt, __ap);
      70  }
      71  
      72  #endif
      73  
      74  #if __USE_FORTIFY_LEVEL > 1
      75  # ifdef __va_arg_pack
      76  __fortify_function int
      77  fprintf (FILE *__restrict __stream, const char *__restrict __fmt, ...)
      78  {
      79    return __fprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt,
      80  			__va_arg_pack ());
      81  }
      82  
      83  __fortify_function int
      84  printf (const char *__restrict __fmt, ...)
      85  {
      86    return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ());
      87  }
      88  # elif !defined __cplusplus
      89  #  define printf(...) \
      90    __printf_chk (__USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
      91  #  define fprintf(stream, ...) \
      92    __fprintf_chk (stream, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
      93  # endif
      94  
      95  __fortify_function int
      96  vprintf (const char *__restrict __fmt, __gnuc_va_list __ap)
      97  {
      98  #ifdef __USE_EXTERN_INLINES
      99    return __vfprintf_chk (stdout, __USE_FORTIFY_LEVEL - 1, __fmt, __ap);
     100  #else
     101    return __vprintf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __ap);
     102  #endif
     103  }
     104  
     105  __fortify_function int
     106  vfprintf (FILE *__restrict __stream,
     107  	  const char *__restrict __fmt, __gnuc_va_list __ap)
     108  {
     109    return __vfprintf_chk (__stream, __USE_FORTIFY_LEVEL - 1, __fmt, __ap);
     110  }
     111  
     112  # ifdef __USE_XOPEN2K8
     113  #  ifdef __va_arg_pack
     114  __fortify_function int
     115  dprintf (int __fd, const char *__restrict __fmt, ...)
     116  {
     117    return __dprintf_chk (__fd, __USE_FORTIFY_LEVEL - 1, __fmt,
     118  			__va_arg_pack ());
     119  }
     120  #  elif !defined __cplusplus
     121  #   define dprintf(fd, ...) \
     122    __dprintf_chk (fd, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
     123  #  endif
     124  
     125  __fortify_function int
     126  vdprintf (int __fd, const char *__restrict __fmt, __gnuc_va_list __ap)
     127  {
     128    return __vdprintf_chk (__fd, __USE_FORTIFY_LEVEL - 1, __fmt, __ap);
     129  }
     130  # endif
     131  
     132  # ifdef __USE_GNU
     133  #  ifdef __va_arg_pack
     134  __fortify_function int
     135  __NTH (asprintf (char **__restrict __ptr, const char *__restrict __fmt, ...))
     136  {
     137    return __asprintf_chk (__ptr, __USE_FORTIFY_LEVEL - 1, __fmt,
     138  			 __va_arg_pack ());
     139  }
     140  
     141  __fortify_function int
     142  __NTH (__asprintf (char **__restrict __ptr, const char *__restrict __fmt,
     143  		   ...))
     144  {
     145    return __asprintf_chk (__ptr, __USE_FORTIFY_LEVEL - 1, __fmt,
     146  			 __va_arg_pack ());
     147  }
     148  
     149  __fortify_function int
     150  __NTH (obstack_printf (struct obstack *__restrict __obstack,
     151  		       const char *__restrict __fmt, ...))
     152  {
     153    return __obstack_printf_chk (__obstack, __USE_FORTIFY_LEVEL - 1, __fmt,
     154  			       __va_arg_pack ());
     155  }
     156  #  elif !defined __cplusplus
     157  #   define asprintf(ptr, ...) \
     158    __asprintf_chk (ptr, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
     159  #   define __asprintf(ptr, ...) \
     160    __asprintf_chk (ptr, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
     161  #   define obstack_printf(obstack, ...) \
     162    __obstack_printf_chk (obstack, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
     163  #  endif
     164  
     165  __fortify_function int
     166  __NTH (vasprintf (char **__restrict __ptr, const char *__restrict __fmt,
     167  		  __gnuc_va_list __ap))
     168  {
     169    return __vasprintf_chk (__ptr, __USE_FORTIFY_LEVEL - 1, __fmt, __ap);
     170  }
     171  
     172  __fortify_function int
     173  __NTH (obstack_vprintf (struct obstack *__restrict __obstack,
     174  			const char *__restrict __fmt, __gnuc_va_list __ap))
     175  {
     176    return __obstack_vprintf_chk (__obstack, __USE_FORTIFY_LEVEL - 1, __fmt,
     177  				__ap);
     178  }
     179  
     180  # endif
     181  
     182  #endif
     183  
     184  #if __GLIBC_USE (DEPRECATED_GETS)
     185  __fortify_function __wur char *
     186  gets (char *__str)
     187  {
     188    if (__glibc_objsize (__str) != (size_t) -1)
     189      return __gets_chk (__str, __glibc_objsize (__str));
     190    return __gets_warn (__str);
     191  }
     192  #endif
     193  
     194  __fortify_function __wur __fortified_attr_access (__write_only__, 1, 2) char *
     195  fgets (char *__restrict __s, int __n, FILE *__restrict __stream)
     196  {
     197    size_t sz = __glibc_objsize (__s);
     198    if (__glibc_safe_or_unknown_len (__n, sizeof (char), sz))
     199      return __fgets_alias (__s, __n, __stream);
     200    if (__glibc_unsafe_len (__n, sizeof (char), sz))
     201      return __fgets_chk_warn (__s, sz, __n, __stream);
     202    return __fgets_chk (__s, sz, __n, __stream);
     203  }
     204  
     205  __fortify_function __wur size_t
     206  fread (void *__restrict __ptr, size_t __size, size_t __n,
     207         FILE *__restrict __stream)
     208  {
     209    size_t sz = __glibc_objsize0 (__ptr);
     210    if (__glibc_safe_or_unknown_len (__n, __size, sz))
     211      return __fread_alias (__ptr, __size, __n, __stream);
     212    if (__glibc_unsafe_len (__n, __size, sz))
     213      return __fread_chk_warn (__ptr, sz, __size, __n, __stream);
     214    return __fread_chk (__ptr, sz, __size, __n, __stream);
     215  }
     216  
     217  #ifdef __USE_GNU
     218  __fortify_function __wur __fortified_attr_access (__write_only__, 1, 2) char *
     219  fgets_unlocked (char *__restrict __s, int __n, FILE *__restrict __stream)
     220  {
     221    size_t sz = __glibc_objsize (__s);
     222    if (__glibc_safe_or_unknown_len (__n, sizeof (char), sz))
     223      return __fgets_unlocked_alias (__s, __n, __stream);
     224    if (__glibc_unsafe_len (__n, sizeof (char), sz))
     225      return __fgets_unlocked_chk_warn (__s, sz, __n, __stream);
     226    return __fgets_unlocked_chk (__s, sz, __n, __stream);
     227  }
     228  #endif
     229  
     230  #ifdef __USE_MISC
     231  # undef fread_unlocked
     232  __fortify_function __wur size_t
     233  fread_unlocked (void *__restrict __ptr, size_t __size, size_t __n,
     234  		FILE *__restrict __stream)
     235  {
     236    size_t sz = __glibc_objsize0 (__ptr);
     237    if (__glibc_safe_or_unknown_len (__n, __size, sz))
     238      {
     239  # ifdef __USE_EXTERN_INLINES
     240        if (__builtin_constant_p (__size)
     241  	  && __builtin_constant_p (__n)
     242  	  && (__size | __n) < (((size_t) 1) << (8 * sizeof (size_t) / 2))
     243  	  && __size * __n <= 8)
     244  	{
     245  	  size_t __cnt = __size * __n;
     246  	  char *__cptr = (char *) __ptr;
     247  	  if (__cnt == 0)
     248  	    return 0;
     249  
     250  	  for (; __cnt > 0; --__cnt)
     251  	    {
     252  	      int __c = getc_unlocked (__stream);
     253  	      if (__c == EOF)
     254  		break;
     255  	      *__cptr++ = __c;
     256  	    }
     257  	  return (__cptr - (char *) __ptr) / __size;
     258  	}
     259  # endif
     260        return __fread_unlocked_alias (__ptr, __size, __n, __stream);
     261      }
     262    if (__glibc_unsafe_len (__n, __size, sz))
     263      return __fread_unlocked_chk_warn (__ptr, sz, __size, __n, __stream);
     264    return __fread_unlocked_chk (__ptr, sz, __size, __n, __stream);
     265  
     266  }
     267  #endif
     268  
     269  #endif /* bits/stdio2.h.  */