closefromtest.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2006 Darren Tucker
  3. *
  4. * Permission to use, copy, modify, and distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include <sys/types.h>
  17. #include <sys/stat.h>
  18. #include <fcntl.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <unistd.h>
  22. #define NUM_OPENS 10
  23. int closefrom(int);
  24. void
  25. fail(char *msg)
  26. {
  27. fprintf(stderr, "closefrom: %s\n", msg);
  28. exit(1);
  29. }
  30. int
  31. main(void)
  32. {
  33. int i, max, fds[NUM_OPENS];
  34. char buf[512];
  35. for (i = 0; i < NUM_OPENS; i++)
  36. if ((fds[i] = open("/dev/null", O_RDONLY)) == -1)
  37. exit(0); /* can't test */
  38. max = i - 1;
  39. /* should close last fd only */
  40. closefrom(fds[max]);
  41. if (close(fds[max]) != -1)
  42. fail("failed to close highest fd");
  43. /* make sure we can still use remaining descriptors */
  44. for (i = 0; i < max; i++)
  45. if (read(fds[i], buf, sizeof(buf)) == -1)
  46. fail("closed descriptors it should not have");
  47. /* should close all fds */
  48. closefrom(fds[0]);
  49. for (i = 0; i < NUM_OPENS; i++)
  50. if (close(fds[i]) != -1)
  51. fail("failed to close from lowest fd");
  52. return 0;
  53. }