/hardware/86duino/x86/libraries/Ethernet/ENServer.cpp

https://github.com/brucetsao/86Duino · C++ · 227 lines · 166 code · 40 blank · 21 comment · 44 complexity · fb7c71c5656bfd44d4fe75b5ca50a912 MD5 · raw file

  1. /*
  2. ENServer.cpp - Part of DM&P Vortex86 Ethernet library
  3. Copyright (c) 2013 DY Hung <Dyhung@dmp.com.tw>. All right reserved.
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with this library; if not, write to the Free Software
  14. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  15. (If you need a commercial license, please contact soc@dmp.com.tw
  16. to get more information.)
  17. */
  18. extern "C" {
  19. #include "string.h"
  20. }
  21. #include "SwsSock.h"
  22. #include "ENClient.h"
  23. #include "ENServer.h"
  24. EthernetServer::EthernetServer(uint16_t port)
  25. {
  26. int i;
  27. _sock = INVALID_SOCKET;
  28. _port = port;
  29. for (i = 0; i < MAX_SOCK_NUM; i++) {
  30. Clients[i]._sock = INVALID_SOCKET;
  31. Clients[i]._id = -1;
  32. Clients[i].pServer = this;
  33. }
  34. }
  35. void EthernetServer::begin()
  36. {
  37. int idx;
  38. struct sockaddr_in sin;
  39. u_long lArg = 1;
  40. int yes = 1, no = 0;
  41. _sock = socket(AF_INET, SOCK_STREAM, 0);
  42. if (_sock == INVALID_SOCKET) {
  43. shutdown(_sock, SD_BOTH);
  44. closesocket(_sock);
  45. return;
  46. }
  47. bzero(&sin, sizeof(sin));
  48. sin.sin_family = AF_INET;
  49. sin.sin_addr.s_addr = SwsSock.getULLocalIp();
  50. sin.sin_port = htons(_port);
  51. if (bind(_sock, (struct sockaddr *)&sin, sizeof(sin)) != 0) {
  52. shutdown(_sock, SD_BOTH);
  53. closesocket(_sock);
  54. _sock = INVALID_SOCKET;
  55. return;
  56. }
  57. if (listen(_sock, MAX_SOCK_NUM) != 0) {
  58. shutdown(_sock, SD_BOTH);
  59. closesocket(_sock);
  60. _sock = INVALID_SOCKET;
  61. return;
  62. }
  63. if (ioctlsocket(_sock, FIONBIO, &lArg) != 0) {
  64. shutdown(_sock, SD_BOTH);
  65. closesocket(_sock);
  66. _sock = INVALID_SOCKET;
  67. return;
  68. }
  69. if (setsockopt(_sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&yes, sizeof(int)) < 0) {
  70. shutdown(_sock, SD_BOTH);
  71. closesocket(_sock);
  72. _sock = INVALID_SOCKET;
  73. return;
  74. }
  75. if (setsockopt(_sock, SOL_SOCKET, SO_DONTLINGER, (const char*)&no, sizeof(int)) < 0) {
  76. shutdown(_sock, SD_BOTH);
  77. closesocket(_sock);
  78. _sock = INVALID_SOCKET;
  79. return;
  80. }
  81. }
  82. SOCKET EthernetServer::make_new_client(SOCKET _sock)
  83. {
  84. SOCKET tempsock;
  85. int addrsize, idx;
  86. int yes = 1;
  87. u_long lArg = 1;
  88. struct sockaddr_in pin;
  89. struct linger linger;
  90. for (idx = 0; idx < MAX_SOCK_NUM; idx++)
  91. if (Clients[idx]._sock == INVALID_SOCKET)
  92. break;
  93. addrsize = sizeof(pin);
  94. if ((tempsock = accept(_sock, (struct sockaddr *)&pin, &addrsize)) < 0)
  95. return INVALID_SOCKET;
  96. if (ioctlsocket(tempsock, FIONBIO, &lArg) != 0) {
  97. shutdown(tempsock, SD_BOTH);
  98. closesocket(tempsock);
  99. return INVALID_SOCKET;
  100. }
  101. if (setsockopt(tempsock, SOL_SOCKET, SO_REUSEADDR, (const char*)&yes, sizeof(int)) < 0) {
  102. shutdown(tempsock, SD_BOTH);
  103. closesocket(tempsock);
  104. return INVALID_SOCKET;
  105. }
  106. linger.l_onoff = 1;
  107. linger.l_linger = 1;
  108. if (setsockopt(tempsock, SOL_SOCKET, SO_LINGER, (const char*)&linger, sizeof(linger)) < 0) {
  109. shutdown(tempsock, SD_BOTH);
  110. closesocket(tempsock);
  111. return INVALID_SOCKET;
  112. }
  113. if (idx >= MAX_SOCK_NUM) {
  114. shutdown(tempsock, SD_BOTH);
  115. closesocket(tempsock);
  116. return INVALID_SOCKET;
  117. }
  118. Clients[idx]._sock = tempsock;
  119. Clients[idx]._id = idx;
  120. return tempsock;
  121. }
  122. EthernetClient EthernetServer::available()
  123. {
  124. SOCKET tempsock;
  125. SOCKET socks[MAX_SOCK_NUM+1];
  126. int i, j;
  127. struct timeval seltime;
  128. if (_sock != INVALID_SOCKET)
  129. {
  130. socks[0] = _sock;
  131. FD_ZERO(&rfds);
  132. FD_SET(_sock, &rfds);
  133. for (i = 0; i < MAX_SOCK_NUM; i++) {
  134. socks[i+1] = Clients[i]._sock;
  135. if (Clients[i]._sock != INVALID_SOCKET)
  136. FD_SET(Clients[i]._sock, &rfds);
  137. }
  138. seltime.tv_sec = 0;
  139. seltime.tv_usec = 0;
  140. if (!select(MAX_SOCK_NUM+1, &rfds, NULL, NULL, &seltime))
  141. return EthernetClient(INVALID_SOCKET);
  142. for (i = 0; i < MAX_SOCK_NUM+1; i++) {
  143. if (FD_ISSET(socks[i], &rfds)) {
  144. if (socks[i] == _sock)
  145. tempsock = make_new_client(_sock);
  146. else
  147. tempsock = socks[i];
  148. if (tempsock != INVALID_SOCKET && socks[i] != _sock) {
  149. for (j = 0; j < MAX_SOCK_NUM; j++)
  150. if (Clients[j]._sock == tempsock) {
  151. uint8_t val;
  152. if (recv(Clients[j]._sock, &val, 1, MSG_PEEK) <= 0)
  153. Clients[j].stop();
  154. return Clients[j];
  155. }
  156. }
  157. }
  158. }
  159. }
  160. return EthernetClient(INVALID_SOCKET);
  161. }
  162. size_t EthernetServer::write(uint8_t b)
  163. {
  164. return write(&b, 1);
  165. }
  166. size_t EthernetServer::write(const uint8_t *buffer, size_t size)
  167. {
  168. int rc, i;
  169. size_t n = 0;
  170. for (i = 0; i < MAX_SOCK_NUM; i++) {
  171. if (Clients[i]._sock != INVALID_SOCKET) {
  172. rc = send(Clients[i]._sock, buffer, size, 0);
  173. if (rc > 0)
  174. n += rc;
  175. }
  176. }
  177. return n;
  178. }
  179. void EthernetServer::closeServerSocket(int idx)
  180. {
  181. if (idx >= 0 && idx < MAX_SOCK_NUM)
  182. Clients[idx]._sock = INVALID_SOCKET;
  183. }