php_posix.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Kristian Koehntopp <kris@koehntopp.de> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #ifndef PHP_POSIX_H
  19. #define PHP_POSIX_H
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #if HAVE_POSIX
  24. #ifndef DLEXPORT
  25. #define DLEXPORT
  26. #endif
  27. extern zend_module_entry posix_module_entry;
  28. #define posix_module_ptr &posix_module_entry
  29. #include "php_version.h"
  30. #define PHP_POSIX_VERSION PHP_VERSION
  31. /* POSIX.1, 3.3 */
  32. PHP_FUNCTION(posix_kill);
  33. /* POSIX.1, 4.1 */
  34. PHP_FUNCTION(posix_getpid);
  35. PHP_FUNCTION(posix_getppid);
  36. /* POSIX.1, 4.2 */
  37. PHP_FUNCTION(posix_getuid);
  38. PHP_FUNCTION(posix_getgid);
  39. PHP_FUNCTION(posix_geteuid);
  40. PHP_FUNCTION(posix_getegid);
  41. PHP_FUNCTION(posix_setuid);
  42. PHP_FUNCTION(posix_setgid);
  43. #ifdef HAVE_SETEUID
  44. PHP_FUNCTION(posix_seteuid);
  45. #endif
  46. #ifdef HAVE_SETEGID
  47. PHP_FUNCTION(posix_setegid);
  48. #endif
  49. #ifdef HAVE_GETGROUPS
  50. PHP_FUNCTION(posix_getgroups);
  51. #endif
  52. #ifdef HAVE_GETLOGIN
  53. PHP_FUNCTION(posix_getlogin);
  54. #endif
  55. /* POSIX.1, 4.3 */
  56. PHP_FUNCTION(posix_getpgrp);
  57. #ifdef HAVE_SETSID
  58. PHP_FUNCTION(posix_setsid);
  59. #endif
  60. PHP_FUNCTION(posix_setpgid);
  61. /* Non-Posix functions which are common */
  62. #ifdef HAVE_GETPGID
  63. PHP_FUNCTION(posix_getpgid);
  64. #endif
  65. #ifdef HAVE_GETSID
  66. PHP_FUNCTION(posix_getsid);
  67. #endif
  68. /* POSIX.1, 4.4 */
  69. PHP_FUNCTION(posix_uname);
  70. PHP_FUNCTION(posix_times);
  71. /* POSIX.1, 4.5 */
  72. #ifdef HAVE_CTERMID
  73. PHP_FUNCTION(posix_ctermid);
  74. #endif
  75. PHP_FUNCTION(posix_ttyname);
  76. PHP_FUNCTION(posix_isatty);
  77. /* POSIX.1, 5.2 */
  78. PHP_FUNCTION(posix_getcwd);
  79. /* POSIX.1, 5.4 */
  80. #ifdef HAVE_MKFIFO
  81. PHP_FUNCTION(posix_mkfifo);
  82. #endif
  83. #ifdef HAVE_MKNOD
  84. PHP_FUNCTION(posix_mknod);
  85. #endif
  86. /* POSIX.1, 5.6 */
  87. PHP_FUNCTION(posix_access);
  88. /* POSIX.1, 9.2 */
  89. PHP_FUNCTION(posix_getgrnam);
  90. PHP_FUNCTION(posix_getgrgid);
  91. PHP_FUNCTION(posix_getpwnam);
  92. PHP_FUNCTION(posix_getpwuid);
  93. #ifdef HAVE_GETRLIMIT
  94. PHP_FUNCTION(posix_getrlimit);
  95. #endif
  96. #ifdef HAVE_SETRLIMIT
  97. PHP_FUNCTION(posix_setrlimit);
  98. #endif
  99. #ifdef HAVE_INITGROUPS
  100. PHP_FUNCTION(posix_initgroups);
  101. #endif
  102. PHP_FUNCTION(posix_get_last_error);
  103. PHP_FUNCTION(posix_strerror);
  104. ZEND_BEGIN_MODULE_GLOBALS(posix)
  105. int last_error;
  106. ZEND_END_MODULE_GLOBALS(posix)
  107. #ifdef ZTS
  108. # define POSIX_G(v) TSRMG(posix_globals_id, zend_posix_globals *, v)
  109. #else
  110. # define POSIX_G(v) (posix_globals.v)
  111. #endif
  112. #else
  113. #define posix_module_ptr NULL
  114. #endif
  115. #define phpext_posix_ptr posix_module_ptr
  116. #endif /* PHP_POSIX_H */