spawn_faction_addopen.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* Copyright (C) 2000 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library 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 GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. #include <errno.h>
  15. #include <spawn.h>
  16. #include <unistd.h>
  17. #include "spawn_int.h"
  18. /* Add an action to FILE-ACTIONS which tells the implementation to call
  19. `open' for the given file during the `spawn' call. */
  20. int
  21. posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *file_actions,
  22. int fd, const char *path, int oflag,
  23. mode_t mode)
  24. {
  25. int maxfd = sysconf(_SC_OPEN_MAX);
  26. struct __spawn_action *rec;
  27. /* Test for the validity of the file descriptor. */
  28. if (fd < 0 || fd >= maxfd)
  29. return EBADF;
  30. /* Allocate more memory if needed. */
  31. if (file_actions->__used == file_actions->__allocated
  32. && __posix_spawn_file_actions_realloc (file_actions) != 0)
  33. /* This can only mean we ran out of memory. */
  34. return ENOMEM;
  35. /* Add the new value. */
  36. rec = &file_actions->__actions[file_actions->__used];
  37. rec->tag = spawn_do_open;
  38. rec->action.open_action.fd = fd;
  39. rec->action.open_action.path = path;
  40. rec->action.open_action.oflag = oflag;
  41. rec->action.open_action.mode = mode;
  42. /* Account for the new entry. */
  43. ++file_actions->__used;
  44. return 0;
  45. }