sysvsem.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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. | Authors: Tom May <tom@go2net.com> |
  16. | Gavin Sherry <gavin@linuxworld.com.au> |
  17. +----------------------------------------------------------------------+
  18. */
  19. /* Latest update build anc tested on Linux 2.2.14
  20. *
  21. * This has been built and tested on Solaris 2.6 and Linux 2.1.122.
  22. * It may not compile or execute correctly on other systems.
  23. *
  24. * sas: Works for me on Linux 2.0.36 and FreeBSD 3.0-current
  25. */
  26. #ifdef HAVE_CONFIG_H
  27. #include "config.h"
  28. #endif
  29. #include "php.h"
  30. #if HAVE_SYSVSEM
  31. #include <sys/types.h>
  32. #include <sys/ipc.h>
  33. #include <sys/sem.h>
  34. #include <errno.h>
  35. #include "php_sysvsem.h"
  36. #include "ext/standard/info.h"
  37. #if !HAVE_SEMUN
  38. union semun {
  39. int val; /* value for SETVAL */
  40. struct semid_ds *buf; /* buffer for IPC_STAT, IPC_SET */
  41. unsigned short int *array; /* array for GETALL, SETALL */
  42. struct seminfo *__buf; /* buffer for IPC_INFO */
  43. };
  44. #undef HAVE_SEMUN
  45. #define HAVE_SEMUN 1
  46. #endif
  47. /* {{{ arginfo */
  48. ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_get, 0, 0, 1)
  49. ZEND_ARG_INFO(0, key)
  50. ZEND_ARG_INFO(0, max_acquire)
  51. ZEND_ARG_INFO(0, perm)
  52. ZEND_ARG_INFO(0, auto_release)
  53. ZEND_END_ARG_INFO()
  54. ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_acquire, 0, 0, 1)
  55. ZEND_ARG_INFO(0, sem_identifier)
  56. ZEND_ARG_INFO(0, nowait)
  57. ZEND_END_ARG_INFO()
  58. ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_release, 0, 0, 1)
  59. ZEND_ARG_INFO(0, sem_identifier)
  60. ZEND_END_ARG_INFO()
  61. ZEND_BEGIN_ARG_INFO_EX(arginfo_sem_remove, 0, 0, 1)
  62. ZEND_ARG_INFO(0, sem_identifier)
  63. ZEND_END_ARG_INFO()
  64. /* }}} */
  65. /* {{{ sysvsem_functions[]
  66. */
  67. static const zend_function_entry sysvsem_functions[] = {
  68. PHP_FE(sem_get, arginfo_sem_get)
  69. PHP_FE(sem_acquire, arginfo_sem_acquire)
  70. PHP_FE(sem_release, arginfo_sem_release)
  71. PHP_FE(sem_remove, arginfo_sem_remove)
  72. PHP_FE_END
  73. };
  74. /* }}} */
  75. /* {{{ sysvsem_module_entry
  76. */
  77. zend_module_entry sysvsem_module_entry = {
  78. STANDARD_MODULE_HEADER,
  79. "sysvsem",
  80. sysvsem_functions,
  81. PHP_MINIT(sysvsem),
  82. NULL,
  83. NULL,
  84. NULL,
  85. PHP_MINFO(sysvsem),
  86. PHP_SYSVSEM_VERSION,
  87. STANDARD_MODULE_PROPERTIES
  88. };
  89. /* }}} */
  90. #ifdef COMPILE_DL_SYSVSEM
  91. ZEND_GET_MODULE(sysvsem)
  92. #endif
  93. THREAD_LS sysvsem_module php_sysvsem_module;
  94. /* Semaphore functions using System V semaphores. Each semaphore
  95. * actually consists of three semaphores allocated as a unit under the
  96. * same key. Semaphore 0 (SYSVSEM_SEM) is the actual semaphore, it is
  97. * initialized to max_acquire and decremented as processes acquire it.
  98. * The value of semaphore 1 (SYSVSEM_USAGE) is a count of the number
  99. * of processes using the semaphore. After calling semget(), if a
  100. * process finds that the usage count is 1, it will set the value of
  101. * SYSVSEM_SEM to max_acquire. This allows max_acquire to be set and
  102. * track the PHP code without having a global init routine or external
  103. * semaphore init code. Except see the bug regarding a race condition
  104. * php_sysvsem_get(). Semaphore 2 (SYSVSEM_SETVAL) serializes the
  105. * calls to GETVAL SYSVSEM_USAGE and SETVAL SYSVSEM_SEM. It can be
  106. * acquired only when it is zero.
  107. */
  108. #define SYSVSEM_SEM 0
  109. #define SYSVSEM_USAGE 1
  110. #define SYSVSEM_SETVAL 2
  111. /* {{{ release_sysvsem_sem
  112. */
  113. static void release_sysvsem_sem(zend_resource *rsrc)
  114. {
  115. sysvsem_sem *sem_ptr = (sysvsem_sem *)rsrc->ptr;
  116. struct sembuf sop[2];
  117. int opcount = 1;
  118. /*
  119. * if count == -1, semaphore has been removed
  120. * Need better way to handle this
  121. */
  122. if (sem_ptr->count == -1 || !sem_ptr->auto_release) {
  123. efree(sem_ptr);
  124. return;
  125. }
  126. /* Decrement the usage count. */
  127. sop[0].sem_num = SYSVSEM_USAGE;
  128. sop[0].sem_op = -1;
  129. sop[0].sem_flg = SEM_UNDO;
  130. /* Release the semaphore if it has been acquired but not released. */
  131. if (sem_ptr->count) {
  132. sop[1].sem_num = SYSVSEM_SEM;
  133. sop[1].sem_op = sem_ptr->count;
  134. sop[1].sem_flg = SEM_UNDO;
  135. opcount++;
  136. }
  137. semop(sem_ptr->semid, sop, opcount);
  138. efree(sem_ptr);
  139. }
  140. /* }}} */
  141. /* {{{ PHP_MINIT_FUNCTION
  142. */
  143. PHP_MINIT_FUNCTION(sysvsem)
  144. {
  145. php_sysvsem_module.le_sem = zend_register_list_destructors_ex(release_sysvsem_sem, NULL, "sysvsem", module_number);
  146. return SUCCESS;
  147. }
  148. /* }}} */
  149. /* {{{ PHP_MINFO_FUNCTION
  150. */
  151. PHP_MINFO_FUNCTION(sysvsem)
  152. {
  153. php_info_print_table_start();
  154. php_info_print_table_row(2, "sysvsem support", "enabled");
  155. php_info_print_table_end();
  156. }
  157. /* }}} */
  158. #define SETVAL_WANTS_PTR
  159. #if defined(_AIX)
  160. #undef SETVAL_WANTS_PTR
  161. #endif
  162. /* {{{ proto resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]])
  163. Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously */
  164. PHP_FUNCTION(sem_get)
  165. {
  166. zend_long key, max_acquire = 1, perm = 0666, auto_release = 1;
  167. int semid;
  168. struct sembuf sop[3];
  169. int count;
  170. sysvsem_sem *sem_ptr;
  171. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS(), "l|lll", &key, &max_acquire, &perm, &auto_release)) {
  172. RETURN_FALSE;
  173. }
  174. /* Get/create the semaphore. Note that we rely on the semaphores
  175. * being zeroed when they are created. Despite the fact that
  176. * the(?) Linux semget() man page says they are not initialized,
  177. * the kernel versions 2.0.x and 2.1.z do in fact zero them.
  178. */
  179. semid = semget(key, 3, perm|IPC_CREAT);
  180. if (semid == -1) {
  181. php_error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno));
  182. RETURN_FALSE;
  183. }
  184. /* Find out how many processes are using this semaphore. Note
  185. * that on Linux (at least) there is a race condition here because
  186. * semaphore undo on process exit is not atomic, so we could
  187. * acquire SYSVSEM_SETVAL before a crashed process has decremented
  188. * SYSVSEM_USAGE in which case count will be greater than it
  189. * should be and we won't set max_acquire. Fortunately this
  190. * doesn't actually matter in practice.
  191. */
  192. /* Wait for sem 1 to be zero . . . */
  193. sop[0].sem_num = SYSVSEM_SETVAL;
  194. sop[0].sem_op = 0;
  195. sop[0].sem_flg = 0;
  196. /* . . . and increment it so it becomes non-zero . . . */
  197. sop[1].sem_num = SYSVSEM_SETVAL;
  198. sop[1].sem_op = 1;
  199. sop[1].sem_flg = SEM_UNDO;
  200. /* . . . and increment the usage count. */
  201. sop[2].sem_num = SYSVSEM_USAGE;
  202. sop[2].sem_op = 1;
  203. sop[2].sem_flg = SEM_UNDO;
  204. while (semop(semid, sop, 3) == -1) {
  205. if (errno != EINTR) {
  206. php_error_docref(NULL, E_WARNING, "failed acquiring SYSVSEM_SETVAL for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno));
  207. break;
  208. }
  209. }
  210. /* Get the usage count. */
  211. count = semctl(semid, SYSVSEM_USAGE, GETVAL, NULL);
  212. if (count == -1) {
  213. php_error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno));
  214. }
  215. /* If we are the only user, then take this opportunity to set the max. */
  216. if (count == 1) {
  217. #if HAVE_SEMUN
  218. /* This is correct for Linux which has union semun. */
  219. union semun semarg;
  220. semarg.val = max_acquire;
  221. if (semctl(semid, SYSVSEM_SEM, SETVAL, semarg) == -1) {
  222. php_error_docref(NULL, E_WARNING, "failed for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno));
  223. }
  224. #elif defined(SETVAL_WANTS_PTR)
  225. /* This is correct for Solaris 2.6 which does not have union semun. */
  226. if (semctl(semid, SYSVSEM_SEM, SETVAL, &max_acquire) == -1) {
  227. php_error_docref(NULL, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  228. }
  229. #else
  230. /* This works for i.e. AIX */
  231. if (semctl(semid, SYSVSEM_SEM, SETVAL, max_acquire) == -1) {
  232. php_error_docref(NULL, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  233. }
  234. #endif
  235. }
  236. /* Set semaphore 1 back to zero. */
  237. sop[0].sem_num = SYSVSEM_SETVAL;
  238. sop[0].sem_op = -1;
  239. sop[0].sem_flg = SEM_UNDO;
  240. while (semop(semid, sop, 1) == -1) {
  241. if (errno != EINTR) {
  242. php_error_docref(NULL, E_WARNING, "failed releasing SYSVSEM_SETVAL for key 0x" ZEND_XLONG_FMT ": %s", key, strerror(errno));
  243. break;
  244. }
  245. }
  246. sem_ptr = (sysvsem_sem *) emalloc(sizeof(sysvsem_sem));
  247. sem_ptr->key = key;
  248. sem_ptr->semid = semid;
  249. sem_ptr->count = 0;
  250. sem_ptr->auto_release = auto_release;
  251. RETVAL_RES(zend_register_resource(sem_ptr, php_sysvsem_module.le_sem));
  252. sem_ptr->id = Z_RES_HANDLE_P(return_value);
  253. }
  254. /* }}} */
  255. /* {{{ php_sysvsem_semop
  256. */
  257. static void php_sysvsem_semop(INTERNAL_FUNCTION_PARAMETERS, int acquire)
  258. {
  259. zval *arg_id;
  260. zend_bool nowait = 0;
  261. sysvsem_sem *sem_ptr;
  262. struct sembuf sop;
  263. if (acquire) {
  264. if (zend_parse_parameters(ZEND_NUM_ARGS(), "r|b", &arg_id, &nowait) == FAILURE) {
  265. return;
  266. }
  267. } else {
  268. if (zend_parse_parameters(ZEND_NUM_ARGS(), "r", &arg_id) == FAILURE) {
  269. return;
  270. }
  271. }
  272. if ((sem_ptr = (sysvsem_sem *)zend_fetch_resource(Z_RES_P(arg_id), "SysV semaphore", php_sysvsem_module.le_sem)) == NULL) {
  273. RETURN_FALSE;
  274. }
  275. if (!acquire && sem_ptr->count == 0) {
  276. php_error_docref(NULL, E_WARNING, "SysV semaphore " ZEND_LONG_FMT " (key 0x%x) is not currently acquired", Z_LVAL_P(arg_id), sem_ptr->key);
  277. RETURN_FALSE;
  278. }
  279. sop.sem_num = SYSVSEM_SEM;
  280. sop.sem_op = acquire ? -1 : 1;
  281. sop.sem_flg = SEM_UNDO | (nowait ? IPC_NOWAIT : 0);
  282. while (semop(sem_ptr->semid, &sop, 1) == -1) {
  283. if (errno != EINTR) {
  284. if (errno != EAGAIN) {
  285. php_error_docref(NULL, E_WARNING, "failed to %s key 0x%x: %s", acquire ? "acquire" : "release", sem_ptr->key, strerror(errno));
  286. }
  287. RETURN_FALSE;
  288. }
  289. }
  290. sem_ptr->count -= acquire ? -1 : 1;
  291. RETURN_TRUE;
  292. }
  293. /* }}} */
  294. /* {{{ proto bool sem_acquire(resource id)
  295. Acquires the semaphore with the given id, blocking if necessary */
  296. PHP_FUNCTION(sem_acquire)
  297. {
  298. php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
  299. }
  300. /* }}} */
  301. /* {{{ proto bool sem_release(resource id)
  302. Releases the semaphore with the given id */
  303. PHP_FUNCTION(sem_release)
  304. {
  305. php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
  306. }
  307. /* }}} */
  308. /* {{{ proto bool sem_remove(resource id)
  309. Removes semaphore from Unix systems */
  310. /*
  311. * contributed by Gavin Sherry gavin@linuxworld.com.au
  312. * Fri Mar 16 00:50:13 EST 2001
  313. */
  314. PHP_FUNCTION(sem_remove)
  315. {
  316. zval *arg_id;
  317. sysvsem_sem *sem_ptr;
  318. #if HAVE_SEMUN
  319. union semun un;
  320. struct semid_ds buf;
  321. #endif
  322. if (zend_parse_parameters(ZEND_NUM_ARGS(), "r", &arg_id) == FAILURE) {
  323. return;
  324. }
  325. if ((sem_ptr = (sysvsem_sem *)zend_fetch_resource(Z_RES_P(arg_id), "SysV semaphore", php_sysvsem_module.le_sem)) == NULL) {
  326. RETURN_FALSE;
  327. }
  328. #if HAVE_SEMUN
  329. un.buf = &buf;
  330. if (semctl(sem_ptr->semid, 0, IPC_STAT, un) < 0) {
  331. #else
  332. if (semctl(sem_ptr->semid, 0, IPC_STAT, NULL) < 0) {
  333. #endif
  334. php_error_docref(NULL, E_WARNING, "SysV semaphore " ZEND_LONG_FMT " does not (any longer) exist", Z_LVAL_P(arg_id));
  335. RETURN_FALSE;
  336. }
  337. #if HAVE_SEMUN
  338. if (semctl(sem_ptr->semid, 0, IPC_RMID, un) < 0) {
  339. #else
  340. if (semctl(sem_ptr->semid, 0, IPC_RMID, NULL) < 0) {
  341. #endif
  342. php_error_docref(NULL, E_WARNING, "failed for SysV semaphore " ZEND_LONG_FMT ": %s", Z_LVAL_P(arg_id), strerror(errno));
  343. RETURN_FALSE;
  344. }
  345. /* let release_sysvsem_sem know we have removed
  346. * the semaphore to avoid issues with releasing.
  347. */
  348. sem_ptr->count = -1;
  349. RETURN_TRUE;
  350. }
  351. /* }}} */
  352. #endif /* HAVE_SYSVSEM */
  353. /*
  354. * Local variables:
  355. * tab-width: 4
  356. * c-basic-offset: 4
  357. * End:
  358. * vim600: sw=4 ts=4 fdm=marker
  359. * vim<600: sw=4 ts=4
  360. */