com0shm.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:24k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The communication through shared memory
  3. (c) 1995 Innobase Oy
  4. Created 9/25/1995 Heikki Tuuri
  5. *******************************************************/
  6. #include "com0shm.h"
  7. #ifdef UNIV_NONINL
  8. #include "com0shm.ic"
  9. #endif
  10. #include "mem0mem.h"
  11. #include "ut0mem.h"
  12. #include "com0com.h"
  13. #include "os0shm.h"
  14. #include "sync0sync.h"
  15. #include "sync0ipm.h"
  16. #include "hash0hash.h"
  17. /*
  18. IMPLEMENTATION OF COMMUNICATION PRIMITIVES
  19. ==========================================
  20. When bind is called for an endpoint, a shared memory area of
  21. a size specified by com_shm_set_option is created with the
  22. name of the address given concatenated to "_IBSHM".
  23. Also a mutex is created for controlling the access to the
  24. shared memory area. The name of the mutex is address + "_IBSHM_MTX".
  25. An event with name address + "_IBSHM_EV_NE" is created. This event
  26. is in signaled state when the shared memory area is not empty, i.e.,
  27. there is a datagram to read. An event address + "_IBSHM_EV_EM"
  28. is signaled, when the area is empty, i.e., a datagram can be
  29. written to it.
  30. The shared memory area consists of an info struct
  31. at the beginning, containing fields telling:
  32. if the area is valid, i.e., is anybody going to
  33. read it, whether it currently contains a datagram, the
  34. length of the address from which the datagram was received,
  35. the length of the datagram, and the maximum allowed length of
  36. a datagram.
  37. After the info struct, there is a string of bytes
  38. containing the sender address and the data
  39. of the datagram.
  40. */
  41. /* The following is set TRUE when the first endpoint is created. */
  42. ibool com_shm_initialized = FALSE;
  43. /* When a datagram is sent, the shared memory area
  44. corresponding to the destination address is mapped
  45. to the address space of this (sender) process.
  46. We preserve it and keep the relevant info in the
  47. following list. We can save a lot of CPU time
  48. if the destination can be found on the list. The list is
  49. protected by the mutex below. */
  50. mutex_t com_shm_destination_mutex;
  51. hash_table_t* com_shm_destination_cache;
  52. UT_LIST_BASE_NODE_T(com_shm_endpoint_t)
  53. com_shm_destination_list;
  54. /* The number of successfully bound endpoints in this process. When this
  55. number drops to 0, the destination cache is freed. This variable is protected
  56. by com_shm_destination_mutex above. */
  57. ulint com_shm_bind_count = 0;
  58. /* The performance of communication in NT depends on how
  59. many times a system call is made (excluding os_thread_yield,
  60. as that is the fastest way to switch thread).
  61. The following variable counts such events. */
  62. ulint com_shm_system_call_count = 0;
  63. /* The info struct at the beginning of a shared memory area */
  64. typedef struct com_shm_info_struct com_shm_info_t;
  65. /* An area of shared memory consists of an info struct followed
  66. by a string of bytes. */
  67. typedef com_shm_info_t com_shm_t;
  68. struct com_shm_endpoint_struct{
  69. ibool owns_shm; /* This is true if the shared memory
  70. area is owned by this endpoint structure
  71. (it may also be opened for this endpoint,
  72. not created, in which case does not own it) */
  73. char* addr; /* pointer to address the endpoint is bound
  74. to, NULL if not bound */
  75. ulint addr_len; /* address length */
  76. ulint size; /* maximum allowed datagram size, initialized
  77. to 0 at creation */
  78. os_shm_t shm; /* operating system handle of the shared
  79. memory area */
  80. com_shm_t* map; /* pointer to the start address of the shared
  81. memory area */
  82. os_event_t not_empty; /* this is in the signaled state if
  83. the area currently may contain a datagram;
  84. NOTE: automatic event */
  85. os_event_t empty;  /* this is in the signaled state if the area
  86. currently may be empty; NOTE: automatic event */
  87. ip_mutex_hdl_t* ip_mutex; /* handle to the interprocess mutex
  88. protecting the shared memory */
  89. UT_LIST_NODE_T(com_shm_endpoint_t) list; /* If the endpoint struct
  90. is inserted into a list, this contains
  91. pointers to next and prev */
  92. com_shm_endpoint_t* addr_hash;
  93. /* hash table link */
  94. };
  95. struct com_shm_info_struct{
  96. ulint valid; /* This is COM_SHM_VALID if the creator
  97. of the shared memory area has it still
  98. mapped to its address space. Otherwise,
  99. we may conclude that the datagram cannot
  100. be delivered. */
  101. ibool not_empty; /* TRUE if the area currently contains
  102. a datagram */
  103. ulint empty_waiters; /* Count of (writer) threads which are
  104. waiting for the empty-event */
  105. ulint max_len;/* maximum allowed length for a datagram */
  106. ulint addr_len;/* address length for the sender address */
  107. ulint data_len;/* datagram length */
  108. ip_mutex_t ip_mutex;/* fast interprocess mutex protecting
  109. the shared memory area */
  110. };
  111. #define COM_SHM_VALID 76640
  112. /*************************************************************************
  113. Accessor functions for a shared memory endpoint */
  114. UNIV_INLINE
  115. ibool
  116. com_shm_endpoint_get_owns_shm(
  117. /*==========================*/
  118. com_shm_endpoint_t* ep)
  119. {
  120. ut_ad(ep);
  121. return(ep->owns_shm);
  122. }
  123. UNIV_INLINE
  124. void
  125. com_shm_endpoint_set_owns_shm(
  126. /*==========================*/
  127. com_shm_endpoint_t* ep,
  128. ibool flag)
  129. {
  130. ut_ad(ep);
  131. ep->owns_shm = flag;
  132. }
  133. UNIV_INLINE
  134. char*
  135. com_shm_endpoint_get_addr(
  136. /*======================*/
  137. com_shm_endpoint_t* ep)
  138. {
  139. ut_ad(ep);
  140. return(ep->addr);
  141. }
  142. UNIV_INLINE
  143. void
  144. com_shm_endpoint_set_addr(
  145. /*======================*/
  146. com_shm_endpoint_t* ep,
  147. char* addr)
  148. {
  149. ut_ad(ep);
  150. ep->addr = addr;
  151. }
  152. UNIV_INLINE
  153. ulint
  154. com_shm_endpoint_get_addr_len(
  155. /*==========================*/
  156. com_shm_endpoint_t* ep)
  157. {
  158. return(ep->addr_len);
  159. }
  160. UNIV_INLINE
  161. void
  162. com_shm_endpoint_set_addr_len(
  163. /*==========================*/
  164. com_shm_endpoint_t* ep,
  165. ulint len)
  166. {
  167. ut_ad(ep);
  168. ut_ad(len > 0);
  169. ep->addr_len = len;
  170. }
  171. ulint
  172. com_shm_endpoint_get_size(
  173. /*======================*/
  174. com_shm_endpoint_t* ep)
  175. {
  176. return(ep->size);
  177. }
  178. UNIV_INLINE
  179. void
  180. com_shm_endpoint_set_size(
  181. /*======================*/
  182. com_shm_endpoint_t* ep,
  183. ulint size)
  184. {
  185. ut_ad(ep);
  186. ep->size = size;
  187. }
  188. UNIV_INLINE
  189. os_shm_t
  190. com_shm_endpoint_get_shm(
  191. /*=====================*/
  192. com_shm_endpoint_t* ep)
  193. {
  194. return(ep->shm);
  195. }
  196. UNIV_INLINE
  197. void
  198. com_shm_endpoint_set_shm(
  199. /*=====================*/
  200. com_shm_endpoint_t* ep,
  201. os_shm_t shm)
  202. {
  203. ut_ad(ep);
  204. ut_ad(shm);
  205. ep->shm = shm;
  206. }
  207. UNIV_INLINE
  208. com_shm_t*
  209. com_shm_endpoint_get_map(
  210. /*=====================*/
  211. com_shm_endpoint_t* ep)
  212. {
  213. return(ep->map);
  214. }
  215. UNIV_INLINE
  216. void
  217. com_shm_endpoint_set_map(
  218. /*=====================*/
  219. com_shm_endpoint_t* ep,
  220. com_shm_t* map)
  221. {
  222. ut_ad(ep);
  223. ut_ad(map);
  224. ep->map = map;
  225. }
  226. UNIV_INLINE
  227. os_event_t
  228. com_shm_endpoint_get_empty(
  229. /*=======================*/
  230. com_shm_endpoint_t* ep)
  231. {
  232. return(ep->empty);
  233. }
  234. UNIV_INLINE
  235. void
  236. com_shm_endpoint_set_empty(
  237. /*=======================*/
  238. com_shm_endpoint_t* ep,
  239. os_event_t event)
  240. {
  241. ut_ad(ep);
  242. ut_ad(event);
  243. ep->empty = event;
  244. }
  245. UNIV_INLINE
  246. os_event_t
  247. com_shm_endpoint_get_not_empty(
  248. /*===========================*/
  249. com_shm_endpoint_t* ep)
  250. {
  251. return(ep->not_empty);
  252. }
  253. UNIV_INLINE
  254. void
  255. com_shm_endpoint_set_not_empty(
  256. /*===========================*/
  257. com_shm_endpoint_t* ep,
  258. os_event_t event)
  259. {
  260. ut_ad(ep);
  261. ut_ad(event);
  262. ep->not_empty = event;
  263. }
  264. /************************************************************************
  265. Accessor functions for the shared memory area info struct. */
  266. UNIV_INLINE
  267. ulint
  268. com_shm_get_valid(
  269. /*==============*/
  270. com_shm_info_t* info)
  271. {
  272. return(info->valid);
  273. }
  274. UNIV_INLINE
  275. void
  276. com_shm_set_valid(
  277. /*==============*/
  278. com_shm_info_t* info,
  279. ulint flag)
  280. {
  281. ut_ad(info);
  282. info->valid = flag;
  283. }
  284. UNIV_INLINE
  285. ibool
  286. com_shm_get_not_empty(
  287. /*==================*/
  288. com_shm_info_t* info)
  289. {
  290. return(info->not_empty);
  291. }
  292. UNIV_INLINE
  293. void
  294. com_shm_set_not_empty(
  295. /*==================*/
  296. com_shm_info_t* info,
  297. ibool flag)
  298. {
  299. ut_ad(info);
  300. info->not_empty = flag;
  301. }
  302. UNIV_INLINE
  303. ulint
  304. com_shm_get_empty_waiters(
  305. /*======================*/
  306. com_shm_info_t* info)
  307. {
  308. ut_ad(info->empty_waiters < 1000);
  309. return(info->empty_waiters);
  310. }
  311. UNIV_INLINE
  312. void
  313. com_shm_set_empty_waiters(
  314. /*======================*/
  315. com_shm_info_t* info,
  316. ulint count)
  317. {
  318. ut_ad(info);
  319. ut_ad(count < 1000);
  320. info->empty_waiters = count;
  321. }
  322. UNIV_INLINE
  323. ulint
  324. com_shm_get_max_len(
  325. /*================*/
  326. com_shm_info_t* info)
  327. {
  328. return(info->max_len);
  329. }
  330. UNIV_INLINE
  331. void
  332. com_shm_set_max_len(
  333. /*================*/
  334. com_shm_info_t* info,
  335. ulint len)
  336. {
  337. ut_ad(info);
  338. ut_ad(len > 0);
  339. info->max_len = len;
  340. }
  341. UNIV_INLINE
  342. ulint
  343. com_shm_get_addr_len(
  344. /*=================*/
  345. com_shm_info_t* info)
  346. {
  347. return(info->addr_len);
  348. }
  349. UNIV_INLINE
  350. void
  351. com_shm_set_addr_len(
  352. /*=================*/
  353. com_shm_info_t* info,
  354. ulint len)
  355. {
  356. ut_ad(info);
  357. ut_ad(len > 0);
  358. info->addr_len = len;
  359. }
  360. UNIV_INLINE
  361. ulint
  362. com_shm_get_data_len(
  363. /*=================*/
  364. com_shm_info_t* info)
  365. {
  366. return(info->data_len);
  367. }
  368. UNIV_INLINE
  369. void
  370. com_shm_set_data_len(
  371. /*=================*/
  372. com_shm_info_t* info,
  373. ulint len)
  374. {
  375. ut_ad(info);
  376. ut_ad(len > 0);
  377. info->data_len = len;
  378. }
  379. UNIV_INLINE
  380. ip_mutex_t*
  381. com_shm_get_ip_mutex(
  382. /*=================*/
  383. com_shm_info_t* info)
  384. {
  385. return(&(info->ip_mutex));
  386. }
  387. /*************************************************************************
  388. Accessor functions for the address and datagram fields inside a
  389. shared memory area. */
  390. UNIV_INLINE
  391. char*
  392. com_shm_get_addr(
  393. /*=============*/
  394. com_shm_t* area)
  395. {
  396. return((char*)area + sizeof(com_shm_info_t));
  397. }
  398. UNIV_INLINE
  399. byte*
  400. com_shm_get_data(
  401. /*=============*/
  402. com_shm_t* area)
  403. {
  404. return((byte*)com_shm_get_addr(area) + com_shm_get_addr_len(area));
  405. }
  406. /*************************************************************************
  407. Initializes the shared memory communication system for this
  408. process. */
  409. UNIV_INLINE
  410. void
  411. com_shm_init(void)
  412. /*==============*/
  413. {
  414. mutex_create(&com_shm_destination_mutex);
  415. mutex_set_level(&com_shm_destination_mutex, SYNC_ANY_LATCH);
  416. com_shm_destination_cache = hash_create(1000);
  417. UT_LIST_INIT(com_shm_destination_list);
  418. com_shm_initialized = TRUE;
  419. }
  420. /*************************************************************************
  421. Reserves the ip mutex of the shared memory area of an endpoint. */
  422. UNIV_INLINE
  423. void
  424. com_shm_enter(
  425. /*==========*/
  426. com_shm_endpoint_t* ep)
  427. {
  428. ulint ret;
  429. ret = ip_mutex_enter(ep->ip_mutex, 10000000);
  430. if (ret != 0) {
  431. mutex_list_print_info();
  432. ut_error;
  433. }
  434. }
  435. /*************************************************************************
  436. Releases the ip mutex of the shared memory area of an endpoint. */
  437. UNIV_INLINE
  438. void
  439. com_shm_exit(
  440. /*=========*/
  441. com_shm_endpoint_t* ep)
  442. {
  443. ip_mutex_exit(ep->ip_mutex);
  444. }
  445. /*************************************************************************
  446. Looks for the given address in the cached destination addresses. */
  447. UNIV_INLINE
  448. com_shm_endpoint_t*
  449. com_shm_destination_cache_search(
  450. /*=============================*/
  451. /* out: cached endpoint structure if found, else NULL */
  452. char* addr, /* in: destination address */
  453. ulint len) /* in: address length */
  454. {
  455. com_shm_endpoint_t* ep;
  456. ulint fold;
  457. fold = ut_fold_binary((byte*)addr, len);
  458. /*
  459. printf("Searching dest. cache %s %lu fold %lun", addr, len, fold);
  460. */
  461. mutex_enter(&com_shm_destination_mutex);
  462. HASH_SEARCH(addr_hash, com_shm_destination_cache, fold, ep,
  463. ((ep->addr_len == len)
  464.   && (0 == ut_memcmp(addr, ep->addr, len))));
  465. mutex_exit(&com_shm_destination_mutex);
  466. return(ep);
  467. }
  468. /*************************************************************************
  469. Inserts the given endpoint structure in the cached destination addresses. */
  470. static
  471. void
  472. com_shm_destination_cache_insert(
  473. /*=============================*/
  474. com_shm_endpoint_t* ep) /* in: endpoint struct to insert */
  475. {
  476. ulint fold;
  477. fold = ut_fold_binary((byte*)(ep->addr), ep->addr_len);
  478. mutex_enter(&com_shm_destination_mutex);
  479. /* Add to hash table */
  480. HASH_INSERT(com_shm_endpoint_t,
  481. addr_hash, com_shm_destination_cache, fold, ep);
  482. UT_LIST_ADD_LAST(list, com_shm_destination_list, ep);
  483. /* printf("Inserting to dest. cache %s %lu fold %lun", ep->addr,
  484. ep->addr_len, fold);
  485. */
  486. mutex_exit(&com_shm_destination_mutex);
  487. }
  488. /*************************************************************************
  489. Frees the endpoint structs in the destination cache if the bind count is zero.
  490. If it is not, some send operation may just be using a cached endpoint and it
  491. cannot be freed. */
  492. static
  493. void
  494. com_shm_destination_cache_no_binds(void)
  495. /*====================================*/
  496. {
  497. com_shm_endpoint_t* ep;
  498. ulint fold;
  499. mutex_enter(&com_shm_destination_mutex);
  500. if (com_shm_bind_count != 0) {
  501. mutex_exit(&com_shm_destination_mutex);
  502. return;
  503. }
  504. while (UT_LIST_GET_LEN(com_shm_destination_list) != 0) {
  505. ep = UT_LIST_GET_FIRST(com_shm_destination_list);
  506. UT_LIST_REMOVE(list, com_shm_destination_list, ep);
  507. fold = ut_fold_binary((byte*)ep->addr, ep->addr_len);
  508. /*
  509. printf("Deleting from dest. cache %s %lu fold %lun",
  510. ep->addr,
  511. ep->addr_len, fold);
  512. */
  513. HASH_DELETE(com_shm_endpoint_t, addr_hash,
  514. com_shm_destination_cache, fold, ep);
  515. com_shm_endpoint_free(ep);
  516. }
  517. mutex_exit(&com_shm_destination_mutex);
  518. }
  519. /***********************************************************************
  520. Unbinds an endpoint at the time of freeing. */
  521. static
  522. void
  523. com_shm_unbind(
  524. /*===========*/
  525. com_shm_endpoint_t* ep) /* in: endpoint */
  526. {
  527. com_shm_t* map;
  528. map = com_shm_endpoint_get_map(ep);
  529. /* Mark the shared memory area invalid */
  530. com_shm_set_valid(map, 0);
  531. /* Decrement the count of bindings */
  532. mutex_enter(&com_shm_destination_mutex);
  533. com_shm_bind_count--;
  534. mutex_exit(&com_shm_destination_mutex);
  535. /* If there are no binds left, free the cached endpoints */
  536. com_shm_destination_cache_no_binds();
  537. }
  538. /*************************************************************************
  539. Creates a communications endpoint. */
  540. com_shm_endpoint_t*
  541. com_shm_endpoint_create(void)
  542. /*=========================*/
  543. /* out, own: communications endpoint, NULL if
  544. did not succeed */
  545. {
  546. com_shm_endpoint_t* ep;
  547. if (!com_shm_initialized) {
  548. com_shm_init();
  549. }
  550. ep = mem_alloc(sizeof(com_shm_endpoint_t));
  551. com_shm_endpoint_set_owns_shm(ep, FALSE);
  552. com_shm_endpoint_set_addr(ep, NULL);
  553. com_shm_endpoint_set_size(ep, 0);
  554. return(ep);
  555. }
  556. /*************************************************************************
  557. Frees a communications endpoint. */
  558. ulint
  559. com_shm_endpoint_free(
  560. /*==================*/
  561. /* out: O if succeed, else error number */
  562. com_shm_endpoint_t* ep) /* in, own: communications endpoint */
  563. {
  564. com_shm_t* map;
  565. ut_ad(ep);
  566. if (com_shm_endpoint_get_addr(ep) != NULL) {
  567. map = com_shm_endpoint_get_map(ep);
  568. if (com_shm_endpoint_get_owns_shm(ep)) {
  569. com_shm_unbind(ep);
  570. }
  571. /* We do not destroy the data structures in the shared memory
  572. area, because we cannot be sure that there is currently no
  573. process accessing it. Therefore we just close the ip_mutex
  574. residing in the area. */
  575. ip_mutex_close(ep->ip_mutex);
  576. os_event_free(com_shm_endpoint_get_not_empty(ep));
  577. os_event_free(com_shm_endpoint_get_empty(ep));
  578. os_shm_unmap(map);
  579. os_shm_free(com_shm_endpoint_get_shm(ep));
  580. mem_free(com_shm_endpoint_get_addr(ep));
  581. }
  582. mem_free(ep);
  583. return(0);
  584. }
  585. /*************************************************************************
  586. Sets an option, like the maximum datagram size for an endpoint.
  587. The options may vary depending on the endpoint type. */
  588. ulint
  589. com_shm_endpoint_set_option(
  590. /*========================*/
  591. /* out: 0 if succeed, else error number */
  592. com_shm_endpoint_t* ep, /* in: endpoint */
  593. ulint optno, /* in: option number, only
  594. COM_OPT_MAX_DGRAM_SIZE currently supported */
  595. byte* optval, /* in: pointer to a buffer containing the
  596. option value to set */
  597. ulint optlen) /* in: option value buffer length */
  598. {
  599. ulint size;
  600. UT_NOT_USED(optlen);
  601. ut_ad(ep);
  602. ut_a(optno == COM_OPT_MAX_DGRAM_SIZE);
  603. ut_ad(NULL == com_shm_endpoint_get_addr(ep));
  604.  
  605. size = *((ulint*)optval);
  606. ut_ad(size > 0);
  607. com_shm_endpoint_set_size(ep, size);
  608. return(0);
  609. }
  610. /*************************************************************************
  611. This function is used either to create a new shared memory area or open an
  612. existing one, but this does not do the operations necessary with the ip mutex.
  613. They are performed in com_shm_bind or com_shm_open which call this function. */
  614. static
  615. ulint
  616. com_shm_create_or_open(
  617. /*===================*/
  618. /* out: 0 if succeed, else error number */
  619. com_shm_endpoint_t* ep, /* in: communications endpoint */
  620. char* name, /* in: address name */
  621. ulint len) /* in: address name length */
  622. {
  623. os_shm_t shm;
  624. com_shm_t* map;
  625. os_event_t event_ne;
  626. os_event_t event_em;
  627. char* buf;
  628. ut_ad(ep);
  629. ut_ad(name);
  630. ut_ad(len > 0);
  631. buf = mem_alloc(COM_MAX_ADDR_LEN + 20);
  632. ut_memcpy(buf, name, len);
  633. ut_strcpy(buf + len, (char*)"_IBSHM");
  634. shm = os_shm_create(sizeof(com_shm_info_t) + COM_MAX_ADDR_LEN +
  635.      com_shm_endpoint_get_size(ep), buf);
  636. if (shm == NULL) {
  637. return(COM_ERR_NOT_SPECIFIED);
  638. }
  639. map = os_shm_map(shm);
  640. if (map == NULL) {
  641. os_shm_free(shm);
  642. return(COM_ERR_NOT_SPECIFIED);
  643. }
  644. ut_strcpy(buf + len, (char*)"_IBSHM_EV_NE"),
  645. event_ne = os_event_create_auto(buf);
  646. ut_ad(event_ne);
  647. ut_strcpy(buf + len, (char*)"_IBSHM_EV_EM"),
  648. event_em = os_event_create_auto(buf);
  649. ut_ad(event_em);
  650. com_shm_endpoint_set_shm(ep, shm);
  651. com_shm_endpoint_set_map(ep, map);
  652. com_shm_endpoint_set_not_empty(ep, event_ne);
  653. com_shm_endpoint_set_empty(ep, event_em);
  654. com_shm_endpoint_set_addr(ep, buf);
  655. com_shm_endpoint_set_addr_len(ep, len);
  656. return(0);
  657. }
  658. /*************************************************************************
  659. Opens a shared memory area for communication. */
  660. static
  661. ulint
  662. com_shm_open(
  663. /*=========*/
  664. /* out: 0 if succeed, else error number */
  665. com_shm_endpoint_t* ep, /* in: communications endpoint */
  666. char* name, /* in: address name */
  667. ulint len) /* in: address name length */
  668. {
  669. ip_mutex_hdl_t* ip_hdl;
  670. com_shm_t* map;
  671. ulint ret;
  672. char buf[COM_MAX_ADDR_LEN + 20];
  673. ret = com_shm_create_or_open(ep, name, len);
  674. if (ret != 0) {
  675. return(ret);
  676. }
  677. map = com_shm_endpoint_get_map(ep);
  678. /* Open the interprocess mutex to protect the shared memory area */
  679. ut_memcpy(buf, name, len);
  680. ut_strcpy(buf + len, (char*)"_IBSHM_MTX");
  681. ret = ip_mutex_open(com_shm_get_ip_mutex(map), buf, &ip_hdl);
  682. if (ret != 0) {
  683. return(COM_ERR_NOT_SPECIFIED);
  684. }
  685. ep->ip_mutex = ip_hdl;
  686. return(0);
  687. }
  688. /*************************************************************************
  689. Creates a shared memory area for communication. */
  690. ulint
  691. com_shm_bind(
  692. /*=========*/
  693. /* out: 0 if succeed, else error number */
  694. com_shm_endpoint_t* ep, /* in: communications endpoint */
  695. char* name, /* in: address name */
  696. ulint len) /* in: address name length */
  697. {
  698. com_shm_t* map;
  699. ulint ret;
  700. char buf[COM_MAX_ADDR_LEN + 20];
  701. ip_mutex_hdl_t* ip_hdl;
  702. if (com_shm_endpoint_get_size(ep) == 0) {
  703. return(COM_ERR_MAX_DATAGRAM_SIZE_NOT_SET);
  704. }
  705. ret = com_shm_create_or_open(ep, name, len);
  706. if (ret != 0) {
  707. return(ret);
  708. }
  709. map = com_shm_endpoint_get_map(ep);
  710. /* Create the interprocess mutex to protect the shared memory area */
  711. ut_memcpy(buf, name, len);
  712. ut_strcpy(buf + len, (char*)"_IBSHM_MTX");
  713. ret = ip_mutex_create(com_shm_get_ip_mutex(map), buf, &ip_hdl);
  714. if (ret != 0) {
  715. return(COM_ERR_NOT_SPECIFIED);
  716. }
  717. /* This endpoint structure owns the shared memory area */
  718. com_shm_endpoint_set_owns_shm(ep, TRUE);
  719. ep->ip_mutex = ip_hdl;
  720. mutex_enter(&com_shm_destination_mutex);
  721. /* Increment the count of successful bindings */
  722. com_shm_bind_count++;
  723. mutex_exit(&com_shm_destination_mutex);
  724. com_shm_set_not_empty(map, FALSE);
  725. com_shm_set_empty_waiters(map, 0);
  726. com_shm_set_max_len(map, com_shm_endpoint_get_size(ep));
  727. com_shm_set_valid(map, COM_SHM_VALID);
  728. os_event_set(com_shm_endpoint_get_empty(ep));
  729. return(0);
  730. }
  731. /*************************************************************************
  732. Waits for a datagram to arrive at an endpoint. */
  733. ulint
  734. com_shm_recvfrom(
  735. /*=============*/
  736. /* out: 0 if succeed, else error number */
  737. com_shm_endpoint_t* ep, /* in: communications endpoint */
  738. byte* buf, /* out: datagram buffer; the buffer is
  739. supplied by the caller */
  740. ulint buf_len,/* in: datagram buffer length */
  741. ulint* len, /* out: datagram length */
  742. char* from, /* out: address name buffer; the buffer is
  743. supplied by the caller */
  744. ulint from_len,/* in: address name buffer length */
  745. ulint* addr_len)/* out: address name length */
  746. {
  747. com_shm_t* map;
  748. ulint loop_count;
  749. map = com_shm_endpoint_get_map(ep);
  750. loop_count = 0;
  751. loop:
  752. com_shm_system_call_count++;
  753. /* NOTE: automatic event */
  754. os_event_wait(com_shm_endpoint_get_not_empty(ep));
  755. loop_count++;
  756. if (loop_count > 1) {
  757. printf("!!!!!!!!COM_SHM loop count %lun", loop_count);
  758. }
  759. ut_ad(loop_count < 2);
  760. #ifdef notdefined
  761. if (!com_shm_get_not_empty(map)) {
  762. /* There was no datagram, give up the time slice
  763. for some writer thread to insert a datagram */
  764. com_shm_exit(ep);
  765. os_thread_yield();
  766. com_shm_enter(ep);
  767. }
  768. #endif
  769. com_shm_enter(ep);
  770. if (!com_shm_get_not_empty(map)) {
  771. /* There was no datagram, wait for the event */
  772. com_shm_exit(ep);
  773. goto loop;
  774. }
  775. if (com_shm_get_data_len(map) > buf_len) {
  776. com_shm_exit(ep);
  777. return(COM_ERR_DATA_BUFFER_TOO_SMALL);
  778. }
  779. if (com_shm_get_addr_len(map) > from_len) {
  780. com_shm_exit(ep);
  781. return(COM_ERR_ADDR_BUFFER_TOO_SMALL);
  782. }
  783. *len = com_shm_get_data_len(map);
  784. *addr_len = com_shm_get_addr_len(map);
  785. ut_memcpy(buf, com_shm_get_data(map), *len);
  786. ut_memcpy(from, com_shm_get_addr(map), *addr_len);
  787. com_shm_set_not_empty(map, FALSE);
  788. /* If there may be writers queuing to insert the datagram, signal the
  789. empty-event */
  790. if (com_shm_get_empty_waiters(map) != 0) {
  791. com_shm_system_call_count++;
  792. os_event_set(com_shm_endpoint_get_empty(ep));
  793. }
  794. com_shm_exit(ep);
  795. return(0);
  796. }
  797. /*************************************************************************
  798. Sends a datagram to the specified destination. */
  799. ulint
  800. com_shm_sendto(
  801. /*===========*/
  802. /* out: 0 if succeed, else error number */
  803. com_shm_endpoint_t* ep, /* in: communications endpoint */
  804. byte* buf, /* in: datagram buffer */
  805. ulint len, /* in: datagram length */
  806. char* to, /* in: address name buffer */
  807. ulint tolen) /* in: address name length */
  808. {
  809. com_shm_endpoint_t* ep2;
  810. com_shm_t* map;
  811. ulint sender_len;
  812. ulint ret;
  813. ulint loop_count;
  814. /* Try first to find from the cached destination addresses */
  815. ep2 = com_shm_destination_cache_search(to, tolen);
  816. if (ep2 == NULL) {
  817. /* Did not find it in the cache */
  818. ep2 = com_shm_endpoint_create();
  819. ret = com_shm_open(ep2, to, tolen);
  820. if (ret != 0) {
  821. com_shm_endpoint_free(ep2);
  822. return(ret);
  823. }
  824. /* Insert into the cached destination addresses */
  825. com_shm_destination_cache_insert(ep2);
  826. }
  827. map = com_shm_endpoint_get_map(ep2);
  828. if (com_shm_get_valid(map) != COM_SHM_VALID) {
  829. com_shm_exit(ep2);
  830. return(COM_ERR_DGRAM_NOT_DELIVERED);
  831. }
  832. if (com_shm_get_max_len(map) < len) {
  833. com_shm_exit(ep2);
  834. return(COM_ERR_DATA_TOO_LONG);
  835. }
  836. /* Optimistically, we first go to see if the datagram area is empty,
  837. without waiting for the empty-event */
  838. loop_count = 0;
  839. loop:
  840. loop_count++;
  841. if (loop_count > 5) {
  842. printf("!!!!!!COM_SHM Notempty loop count %lun", loop_count);
  843. }
  844. ut_ad(loop_count < 100);
  845. com_shm_enter(ep2);
  846. if (com_shm_get_not_empty(map)) {
  847. /* Not empty, we cannot insert a datagram */
  848. com_shm_set_empty_waiters(map,
  849. 1 + com_shm_get_empty_waiters(map));
  850. com_shm_exit(ep2);
  851. com_shm_system_call_count++;
  852. /* Wait for the area to become empty */
  853. /* NOTE: automatic event */
  854. ret = os_event_wait_time(com_shm_endpoint_get_empty(ep2),
  855. 10000000);
  856. ut_a(ret == 0);
  857. com_shm_enter(ep2);
  858. com_shm_set_empty_waiters(map,
  859. com_shm_get_empty_waiters(map) - 1);
  860. com_shm_exit(ep2);
  861. goto loop;
  862. }
  863. sender_len = com_shm_endpoint_get_addr_len(ep);
  864. com_shm_set_data_len(map, len);
  865. com_shm_set_addr_len(map, sender_len);
  866. ut_memcpy(com_shm_get_data(map), buf, len);
  867. ut_memcpy(com_shm_get_addr(map), com_shm_endpoint_get_addr(ep),
  868.   sender_len);
  869. com_shm_set_not_empty(map, TRUE);
  870. #ifdef notdefined
  871. com_shm_exit(ep2);
  872. /* Now we give up our time slice voluntarily to give some reader
  873. thread chance to fetch the datagram */
  874. os_thread_yield();
  875. com_shm_enter(ep2);
  876. if (com_shm_get_not_empty(map)) {
  877. #endif
  878. com_shm_system_call_count++;
  879. com_shm_exit(ep2);
  880. /* Signal the event */
  881. os_event_set(com_shm_endpoint_get_not_empty(ep2));
  882. return(0);
  883. #ifdef notdefined
  884. }
  885. com_shm_exit(ep2);
  886. return(0);
  887. #endif
  888. }