4
0

open-safer.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /* Invoke open, but avoid some glitches.
  2. Copyright (C) 2005, 2006 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. #include <config.h>
  16. #include "fcntl-safer.h"
  17. #include <fcntl.h>
  18. #include <stdarg.h>
  19. #include "unistd-safer.h"
  20. int
  21. open_safer (char const *file, int flags, ...)
  22. {
  23. mode_t mode = 0;
  24. if (flags & O_CREAT)
  25. {
  26. va_list ap;
  27. va_start (ap, flags);
  28. /* Assume mode_t promotes to int if and only if it is smaller.
  29. This assumption isn't guaranteed by the C standard, but we
  30. don't know of any real-world counterexamples. */
  31. mode = (sizeof (mode_t) < sizeof (int)
  32. ? va_arg (ap, int)
  33. : va_arg (ap, mode_t));
  34. va_end (ap);
  35. }
  36. return fd_safer (open (file, flags, mode));
  37. }