icmp_conn.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. /****************************************************************************
  2. * net/icmp/icmp_conn.c
  3. *
  4. * Licensed to the Apache Software Foundation (ASF) under one or more
  5. * contributor license agreements. See the NOTICE file distributed with
  6. * this work for additional information regarding copyright ownership. The
  7. * ASF licenses this file to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance with the
  9. * License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  15. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  16. * License for the specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. ****************************************************************************/
  20. /****************************************************************************
  21. * Included Files
  22. ****************************************************************************/
  23. #include <nuttx/config.h>
  24. #include <string.h>
  25. #include <assert.h>
  26. #include <errno.h>
  27. #include <debug.h>
  28. #include <arch/irq.h>
  29. #include <nuttx/semaphore.h>
  30. #include <nuttx/net/netconfig.h>
  31. #include <nuttx/net/net.h>
  32. #include <nuttx/net/netdev.h>
  33. #include "devif/devif.h"
  34. #include "icmp/icmp.h"
  35. #ifdef CONFIG_NET_ICMP_SOCKET
  36. /****************************************************************************
  37. * Private Data
  38. ****************************************************************************/
  39. /* The array containing all IPPROTO_ICMP socket connections */
  40. static struct icmp_conn_s g_icmp_connections[CONFIG_NET_ICMP_NCONNS];
  41. /* A list of all free IPPROTO_ICMP socket connections */
  42. static dq_queue_t g_free_icmp_connections;
  43. static sem_t g_free_sem;
  44. /* A list of all allocated IPPROTO_ICMP socket connections */
  45. static dq_queue_t g_active_icmp_connections;
  46. /****************************************************************************
  47. * Public Functions
  48. ****************************************************************************/
  49. /****************************************************************************
  50. * Name: icmp_sock_initialize
  51. *
  52. * Description:
  53. * Initialize the IPPROTO_ICMP socket connection structures. Called once
  54. * and only from the network initialization layer.
  55. *
  56. ****************************************************************************/
  57. void icmp_sock_initialize(void)
  58. {
  59. int i;
  60. /* Initialize the queues */
  61. dq_init(&g_free_icmp_connections);
  62. dq_init(&g_active_icmp_connections);
  63. nxsem_init(&g_free_sem, 0, 1);
  64. for (i = 0; i < CONFIG_NET_ICMP_NCONNS; i++)
  65. {
  66. /* Move the connection structure to the free list */
  67. dq_addlast(&g_icmp_connections[i].node, &g_free_icmp_connections);
  68. }
  69. }
  70. /****************************************************************************
  71. * Name: icmp_alloc
  72. *
  73. * Description:
  74. * Allocate a new, uninitialized IPPROTO_ICMP socket connection structure.
  75. * This is normally something done by the implementation of the socket()
  76. * interface.
  77. *
  78. ****************************************************************************/
  79. FAR struct icmp_conn_s *icmp_alloc(void)
  80. {
  81. FAR struct icmp_conn_s *conn = NULL;
  82. int ret;
  83. /* The free list is protected by a semaphore (that behaves like a mutex). */
  84. ret = net_lockedwait(&g_free_sem);
  85. if (ret >= 0)
  86. {
  87. conn = (FAR struct icmp_conn_s *)dq_remfirst(&g_free_icmp_connections);
  88. if (conn != NULL)
  89. {
  90. /* Clear the connection structure */
  91. memset(conn, 0, sizeof(struct icmp_conn_s));
  92. /* Enqueue the connection into the active list */
  93. dq_addlast(&conn->node, &g_active_icmp_connections);
  94. }
  95. nxsem_post(&g_free_sem);
  96. }
  97. return conn;
  98. }
  99. /****************************************************************************
  100. * Name: icmp_free
  101. *
  102. * Description:
  103. * Free a IPPROTO_ICMP socket connection structure that is no longer in
  104. * use. This should be done by the implementation of close().
  105. *
  106. ****************************************************************************/
  107. void icmp_free(FAR struct icmp_conn_s *conn)
  108. {
  109. /* The free list is protected by a semaphore (that behaves like a mutex). */
  110. DEBUGASSERT(conn->crefs == 0);
  111. /* Take the semaphore (perhaps waiting) */
  112. net_lockedwait_uninterruptible(&g_free_sem);
  113. /* Is this the last reference on the connection? It might not be if the
  114. * socket was cloned.
  115. */
  116. if (conn->crefs > 1)
  117. {
  118. /* No.. just decrement the reference count */
  119. conn->crefs--;
  120. }
  121. else
  122. {
  123. /* Remove the connection from the active list */
  124. dq_rem(&conn->node, &g_active_icmp_connections);
  125. /* Free the connection */
  126. dq_addlast(&conn->node, &g_free_icmp_connections);
  127. nxsem_post(&g_free_sem);
  128. }
  129. }
  130. /****************************************************************************
  131. * Name: icmp_active()
  132. *
  133. * Description:
  134. * Find a connection structure that is the appropriate connection to be
  135. * used with the provided ECHO request ID.
  136. *
  137. * Assumptions:
  138. * This function is called from network logic at with the network locked.
  139. *
  140. ****************************************************************************/
  141. FAR struct icmp_conn_s *icmp_active(uint16_t id)
  142. {
  143. FAR struct icmp_conn_s *conn =
  144. (FAR struct icmp_conn_s *)g_active_icmp_connections.head;
  145. while (conn != NULL)
  146. {
  147. /* FIXME lmac in conn should have been set by icmp_bind() */
  148. if (id == conn->id)
  149. {
  150. /* Matching connection found.. return a reference to it */
  151. break;
  152. }
  153. /* Look at the next active connection */
  154. conn = (FAR struct icmp_conn_s *)conn->node.flink;
  155. }
  156. return conn;
  157. }
  158. /****************************************************************************
  159. * Name: icmp_nextconn
  160. *
  161. * Description:
  162. * Traverse the list of allocated packet connections
  163. *
  164. * Assumptions:
  165. * This function is called from network logic at with the network locked.
  166. *
  167. ****************************************************************************/
  168. FAR struct icmp_conn_s *icmp_nextconn(FAR struct icmp_conn_s *conn)
  169. {
  170. if (conn == NULL)
  171. {
  172. return (FAR struct icmp_conn_s *)g_active_icmp_connections.head;
  173. }
  174. else
  175. {
  176. return (FAR struct icmp_conn_s *)conn->node.flink;
  177. }
  178. }
  179. /****************************************************************************
  180. * Name: icmp_findconn
  181. *
  182. * Description:
  183. * Find an ICMP connection structure that is expecting a ICMP ECHO response
  184. * with this ID from this device
  185. *
  186. * Assumptions:
  187. * This function is called from network logic at with the network locked.
  188. *
  189. ****************************************************************************/
  190. FAR struct icmp_conn_s *icmp_findconn(FAR struct net_driver_s *dev,
  191. uint16_t id)
  192. {
  193. FAR struct icmp_conn_s *conn;
  194. for (conn = icmp_nextconn(NULL); conn != NULL; conn = icmp_nextconn(conn))
  195. {
  196. if (conn->id == id && conn->dev == dev && conn->nreqs > 0)
  197. {
  198. return conn;
  199. }
  200. }
  201. return conn;
  202. }
  203. #endif /* CONFIG_NET_ICMP */