open-safer.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Invoke open, but avoid some glitches.
  2. Copyright (C) 2005 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software Foundation,
  13. Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
  14. /* Written by Paul Eggert. */
  15. #ifdef HAVE_CONFIG_H
  16. # include <config.h>
  17. #endif
  18. #include "fcntl-safer.h"
  19. #include <fcntl.h>
  20. #include <stdarg.h>
  21. #include "unistd-safer.h"
  22. int
  23. open_safer (char const *file, int flags, ...)
  24. {
  25. mode_t mode = 0;
  26. if (flags & O_CREAT)
  27. {
  28. va_list ap;
  29. va_start (ap, flags);
  30. /* Assume mode_t promotes to int if and only if it is smaller.
  31. This assumption isn't guaranteed by the C standard, but we
  32. don't know of any real-world counterexamples. */
  33. mode = (sizeof (mode_t) < sizeof (int)
  34. ? va_arg (ap, int)
  35. : va_arg (ap, mode_t));
  36. va_end (ap);
  37. }
  38. return fd_safer (open (file, flags, mode));
  39. }