sysvsem.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 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. /* $Id$ */
  20. /* Latest update build anc tested on Linux 2.2.14
  21. *
  22. * This has been built and tested on Solaris 2.6 and Linux 2.1.122.
  23. * It may not compile or execute correctly on other systems.
  24. *
  25. * sas: Works for me on Linux 2.0.36 and FreeBSD 3.0-current
  26. */
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30. #include "php.h"
  31. #if HAVE_SYSVSEM
  32. #include <sys/types.h>
  33. #include <sys/ipc.h>
  34. #include <sys/sem.h>
  35. #include <errno.h>
  36. #include "php_sysvsem.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. 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. NULL,
  86. NO_VERSION_YET,
  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_rsrc_list_entry *rsrc TSRMLS_DC)
  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. #define SETVAL_WANTS_PTR
  150. #if defined(_AIX)
  151. #undef SETVAL_WANTS_PTR
  152. #endif
  153. /* {{{ proto resource sem_get(int key [, int max_acquire [, int perm [, int auto_release]])
  154. Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously */
  155. PHP_FUNCTION(sem_get)
  156. {
  157. long key, max_acquire = 1, perm = 0666, auto_release = 1;
  158. int semid;
  159. struct sembuf sop[3];
  160. int count;
  161. sysvsem_sem *sem_ptr;
  162. if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|lll", &key, &max_acquire, &perm, &auto_release)) {
  163. RETURN_FALSE;
  164. }
  165. /* Get/create the semaphore. Note that we rely on the semaphores
  166. * being zeroed when they are created. Despite the fact that
  167. * the(?) Linux semget() man page says they are not initialized,
  168. * the kernel versions 2.0.x and 2.1.z do in fact zero them.
  169. */
  170. semid = semget(key, 3, perm|IPC_CREAT);
  171. if (semid == -1) {
  172. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  173. RETURN_FALSE;
  174. }
  175. /* Find out how many processes are using this semaphore. Note
  176. * that on Linux (at least) there is a race condition here because
  177. * semaphore undo on process exit is not atomic, so we could
  178. * acquire SYSVSEM_SETVAL before a crashed process has decremented
  179. * SYSVSEM_USAGE in which case count will be greater than it
  180. * should be and we won't set max_acquire. Fortunately this
  181. * doesn't actually matter in practice.
  182. */
  183. /* Wait for sem 1 to be zero . . . */
  184. sop[0].sem_num = SYSVSEM_SETVAL;
  185. sop[0].sem_op = 0;
  186. sop[0].sem_flg = 0;
  187. /* . . . and increment it so it becomes non-zero . . . */
  188. sop[1].sem_num = SYSVSEM_SETVAL;
  189. sop[1].sem_op = 1;
  190. sop[1].sem_flg = SEM_UNDO;
  191. /* . . . and increment the usage count. */
  192. sop[2].sem_num = SYSVSEM_USAGE;
  193. sop[2].sem_op = 1;
  194. sop[2].sem_flg = SEM_UNDO;
  195. while (semop(semid, sop, 3) == -1) {
  196. if (errno != EINTR) {
  197. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed acquiring SYSVSEM_SETVAL for key 0x%lx: %s", key, strerror(errno));
  198. break;
  199. }
  200. }
  201. /* Get the usage count. */
  202. count = semctl(semid, SYSVSEM_USAGE, GETVAL, NULL);
  203. if (count == -1) {
  204. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  205. }
  206. /* If we are the only user, then take this opportunity to set the max. */
  207. if (count == 1) {
  208. #if HAVE_SEMUN
  209. /* This is correct for Linux which has union semun. */
  210. union semun semarg;
  211. semarg.val = max_acquire;
  212. if (semctl(semid, SYSVSEM_SEM, SETVAL, semarg) == -1) {
  213. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  214. }
  215. #elif defined(SETVAL_WANTS_PTR)
  216. /* This is correct for Solaris 2.6 which does not have union semun. */
  217. if (semctl(semid, SYSVSEM_SEM, SETVAL, &max_acquire) == -1) {
  218. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  219. }
  220. #else
  221. /* This works for i.e. AIX */
  222. if (semctl(semid, SYSVSEM_SEM, SETVAL, max_acquire) == -1) {
  223. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for key 0x%lx: %s", key, strerror(errno));
  224. }
  225. #endif
  226. }
  227. /* Set semaphore 1 back to zero. */
  228. sop[0].sem_num = SYSVSEM_SETVAL;
  229. sop[0].sem_op = -1;
  230. sop[0].sem_flg = SEM_UNDO;
  231. while (semop(semid, sop, 1) == -1) {
  232. if (errno != EINTR) {
  233. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed releasing SYSVSEM_SETVAL for key 0x%lx: %s", key, strerror(errno));
  234. break;
  235. }
  236. }
  237. sem_ptr = (sysvsem_sem *) emalloc(sizeof(sysvsem_sem));
  238. sem_ptr->key = key;
  239. sem_ptr->semid = semid;
  240. sem_ptr->count = 0;
  241. sem_ptr->auto_release = auto_release;
  242. sem_ptr->id = ZEND_REGISTER_RESOURCE(return_value, sem_ptr, php_sysvsem_module.le_sem);
  243. }
  244. /* }}} */
  245. /* {{{ php_sysvsem_semop
  246. */
  247. static void php_sysvsem_semop(INTERNAL_FUNCTION_PARAMETERS, int acquire)
  248. {
  249. zval *arg_id;
  250. zend_bool nowait = 0;
  251. sysvsem_sem *sem_ptr;
  252. struct sembuf sop;
  253. if (acquire) {
  254. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|b", &arg_id, &nowait) == FAILURE) {
  255. return;
  256. }
  257. } else {
  258. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &arg_id) == FAILURE) {
  259. return;
  260. }
  261. }
  262. ZEND_FETCH_RESOURCE(sem_ptr, sysvsem_sem *, &arg_id, -1, "SysV semaphore", php_sysvsem_module.le_sem);
  263. if (!acquire && sem_ptr->count == 0) {
  264. php_error_docref(NULL TSRMLS_CC, E_WARNING, "SysV semaphore %ld (key 0x%x) is not currently acquired", Z_LVAL_P(arg_id), sem_ptr->key);
  265. RETURN_FALSE;
  266. }
  267. sop.sem_num = SYSVSEM_SEM;
  268. sop.sem_op = acquire ? -1 : 1;
  269. sop.sem_flg = SEM_UNDO | (nowait ? IPC_NOWAIT : 0);
  270. while (semop(sem_ptr->semid, &sop, 1) == -1) {
  271. if (errno != EINTR) {
  272. if (errno != EAGAIN) {
  273. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed to %s key 0x%x: %s", acquire ? "acquire" : "release", sem_ptr->key, strerror(errno));
  274. }
  275. RETURN_FALSE;
  276. }
  277. }
  278. sem_ptr->count -= acquire ? -1 : 1;
  279. RETURN_TRUE;
  280. }
  281. /* }}} */
  282. /* {{{ proto bool sem_acquire(resource id)
  283. Acquires the semaphore with the given id, blocking if necessary */
  284. PHP_FUNCTION(sem_acquire)
  285. {
  286. php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
  287. }
  288. /* }}} */
  289. /* {{{ proto bool sem_release(resource id)
  290. Releases the semaphore with the given id */
  291. PHP_FUNCTION(sem_release)
  292. {
  293. php_sysvsem_semop(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
  294. }
  295. /* }}} */
  296. /* {{{ proto bool sem_remove(resource id)
  297. Removes semaphore from Unix systems */
  298. /*
  299. * contributed by Gavin Sherry gavin@linuxworld.com.au
  300. * Fri Mar 16 00:50:13 EST 2001
  301. */
  302. PHP_FUNCTION(sem_remove)
  303. {
  304. zval *arg_id;
  305. sysvsem_sem *sem_ptr;
  306. #if HAVE_SEMUN
  307. union semun un;
  308. struct semid_ds buf;
  309. #endif
  310. if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &arg_id) == FAILURE) {
  311. return;
  312. }
  313. ZEND_FETCH_RESOURCE(sem_ptr, sysvsem_sem *, &arg_id, -1, "SysV semaphore", php_sysvsem_module.le_sem);
  314. #if HAVE_SEMUN
  315. un.buf = &buf;
  316. if (semctl(sem_ptr->semid, 0, IPC_STAT, un) < 0) {
  317. #else
  318. if (semctl(sem_ptr->semid, 0, IPC_STAT, NULL) < 0) {
  319. #endif
  320. php_error_docref(NULL TSRMLS_CC, E_WARNING, "SysV semaphore %ld does not (any longer) exist", Z_LVAL_P(arg_id));
  321. RETURN_FALSE;
  322. }
  323. #if HAVE_SEMUN
  324. if (semctl(sem_ptr->semid, 0, IPC_RMID, un) < 0) {
  325. #else
  326. if (semctl(sem_ptr->semid, 0, IPC_RMID, NULL) < 0) {
  327. #endif
  328. php_error_docref(NULL TSRMLS_CC, E_WARNING, "failed for SysV sempphore %ld: %s", Z_LVAL_P(arg_id), strerror(errno));
  329. RETURN_FALSE;
  330. }
  331. /* let release_sysvsem_sem know we have removed
  332. * the semaphore to avoid issues with releasing.
  333. */
  334. sem_ptr->count = -1;
  335. RETURN_TRUE;
  336. }
  337. /* }}} */
  338. #endif /* HAVE_SYSVSEM */
  339. /*
  340. * Local variables:
  341. * tab-width: 4
  342. * c-basic-offset: 4
  343. * End:
  344. * vim600: sw=4 ts=4 fdm=marker
  345. * vim<600: sw=4 ts=4
  346. */