networklayer.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. #include "networklayer.h"
  2. #include "ua_transport_connection.h"
  3. #ifdef WIN32
  4. #pragma comment (lib,"ws2_32.lib")
  5. #include <sys/types.h>
  6. #include <Windows.h>
  7. #include <ws2tcpip.h>
  8. #define CLOSESOCKET(S) closesocket(S)
  9. #define IOCTLSOCKET ioctlsocket
  10. #else
  11. #include <sys/socket.h>
  12. #include <netinet/in.h>
  13. #include <sys/socketvar.h>
  14. #include <unistd.h> // read, write, close
  15. #define CLOSESOCKET(S) close(S)
  16. #define IOCTLSOCKET ioctl
  17. #endif
  18. #include <stdlib.h> // exit
  19. #include <errno.h> // errno, EINTR
  20. #include <memory.h> // memset
  21. #include <fcntl.h> // fcntl
  22. NL_Description NL_Description_TcpBinary = {
  23. NL_UA_ENCODING_BINARY,
  24. NL_CONNECTIONTYPE_TCPV4,
  25. NL_MAXCONNECTIONS_DEFAULT,
  26. {0,8192,8192,16384,1}
  27. };
  28. /* If we do not have multitasking, we implement a dispatcher-Pattern. All Connections
  29. * are collected in a list. From this list a fd_set is prepared and select then waits
  30. * for activities. We then iterate over the list, check if we've got some activites
  31. * and call the corresponding callback (reader, listener).
  32. */
  33. #ifndef MULTITASKING
  34. _Bool NL_ConnectionComparer(void *p1, void* p2) {
  35. NL_Connection* c1 = (NL_Connection*) p1;
  36. NL_Connection* c2 = (NL_Connection*) p2;
  37. return (c1->connectionHandle == c2->connectionHandle);
  38. }
  39. int NL_TCP_SetNonBlocking(int sock) {
  40. #ifdef WIN32
  41. UA_Int64 iMode = 1;
  42. int opts = IOCTLSOCKET(sock, FIONBIO, &iMode);
  43. if (opts != NO_ERROR){
  44. printf("ioctlsocket failed with error: %ld\n", opts);
  45. return - 1;
  46. }
  47. #else
  48. int opts = fcntl(sock,F_GETFL);
  49. if (opts < 0) {
  50. perror("fcntl(F_GETFL)");
  51. return -1;
  52. }
  53. opts = (opts | O_NONBLOCK);
  54. if (fcntl(sock,F_SETFL,opts) < 0) {
  55. perror("fcntl(F_SETFL)");
  56. return -1;
  57. }
  58. #endif
  59. return 0;
  60. }
  61. void NL_Connection_printf(void* payload) {
  62. NL_Connection* c = (NL_Connection*) payload;
  63. printf("ListElement connectionHandle = %d\n",c->connectionHandle);
  64. }
  65. void NL_addHandleToSet(UA_Int32 handle, NL_data* nl) {
  66. FD_SET(handle, &(nl->readerHandles));
  67. #ifdef WIN32
  68. // int err = WSAGetLastError();
  69. #endif
  70. nl->maxReaderHandle = (handle > nl->maxReaderHandle) ? handle : nl->maxReaderHandle;
  71. }
  72. void NL_setFdSet(void* payload) {
  73. NL_Connection* c = (NL_Connection*) payload;
  74. NL_addHandleToSet(c->connectionHandle, c->networkLayer);
  75. }
  76. void NL_checkFdSet(void* payload) {
  77. NL_Connection* c = (NL_Connection*) payload;
  78. if (FD_ISSET(c->connectionHandle, &(c->networkLayer->readerHandles))) {
  79. c->reader((void*)c);
  80. }
  81. }
  82. #if 0
  83. char _str_error[256];
  84. char* strerror(int errno) {
  85. FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
  86. NULL, errno,
  87. MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
  88. &_str_error[0], 256, NULL);
  89. return &_str_error[0];
  90. }
  91. #endif
  92. UA_Int32 NL_msgLoop(NL_data* nl, struct timeval *tv, UA_Int32(*worker)(void*), void *arg, UA_Boolean *running) {
  93. UA_Int32 result;
  94. UA_Int32 err;
  95. while (*running) {
  96. // determine the largest handle
  97. nl->maxReaderHandle = 0;
  98. UA_list_iteratePayload(&(nl->connections),NL_setFdSet);
  99. DBG_VERBOSE(printf("\n------------\nUA_Stack_msgLoop - maxHandle=%d\n", nl->maxReaderHandle));
  100. // copy tv, some unixes do overwrite and return the remaining time
  101. // FIXME: actually we might want to do this ourselves to call the
  102. // worker on a more regular cyclic basis
  103. struct timeval tmptv;
  104. memcpy(&tmptv,tv,sizeof(struct timeval));
  105. // and wait
  106. DBG_VERBOSE(printf("UA_Stack_msgLoop - enter select sec=%d,usec=%d\n",(UA_Int32) tmptv.tv_sec, (UA_Int32) tmptv.tv_usec));
  107. result = select(nl->maxReaderHandle + 1, &(nl->readerHandles), UA_NULL, UA_NULL, &tmptv);
  108. DBG_VERBOSE(printf("UA_Stack_msgLoop - leave select result=%d,sec=%d,usec=%d\n",result, (UA_Int32) tmptv.tv_sec, (UA_Int32) tmptv.tv_usec));
  109. // handle timeout (winsock: result=0, unix: result=0,errno=0||EAGAIN)
  110. // and errors (winsock: result=SOCKET_ERROR (-1), unix: result = 0)
  111. if (result <= 0) {
  112. #ifdef WIN32
  113. err = (result == SOCKET_ERROR) ? WSAGetLastError() : 0;
  114. #else
  115. err = errno;
  116. #endif
  117. switch (err) {
  118. // handle known errors
  119. #ifdef WIN32
  120. case WSANOTINITIALISED:
  121. case WSAEFAULT:
  122. case WSAENETDOWN:
  123. case WSAEINVAL:
  124. case WSAEINTR:
  125. case WSAEINPROGRESS:
  126. case WSAENOTSOCK:
  127. #else
  128. case EBADF:
  129. case EINTR:
  130. case EINVAL:
  131. #endif
  132. // FIXME: handle errors
  133. printf("UA_Stack_msgLoop - result=%d, errno={%d,%s}\n", result, errno, strerror(errno));
  134. break;
  135. // otherwise we've got a timeout and call the worker
  136. #ifndef WIN32
  137. case EAGAIN:
  138. #endif
  139. default:
  140. DBG_VERBOSE(printf("UA_Stack_msgLoop - result=%d, errno={%d,%s}\n", result, errno, strerror(errno)));
  141. worker(arg);
  142. }
  143. } else { // activity on listener or client ports
  144. DBG_VERBOSE(printf("UA_Stack_msgLoop - activities on %d handles\n",result));
  145. UA_list_iteratePayload(&(nl->connections),NL_checkFdSet);
  146. // FIXME: Thought it would be a conceptional flaw to call the worker
  147. // here. However, there is no guarantee that the timeout would be
  148. // triggered, so we call it in this branch as well.
  149. worker(arg);
  150. }
  151. }
  152. #ifdef WIN32
  153. // finally we should clean up the winsock.dll
  154. WSACleanup();
  155. #endif
  156. return UA_SUCCESS;
  157. }
  158. #endif /* MULTITASKING */
  159. /** the tcp reader function */
  160. void* NL_TCP_reader(NL_Connection *c) {
  161. UA_ByteString readBuffer;
  162. TL_Buffer localBuffers;
  163. UA_Int32 connectionState;
  164. UA_TL_Connection_getLocalConfig(c->connection, &localBuffers);
  165. UA_alloc((void**)&(readBuffer.data),localBuffers.recvBufferSize);
  166. UA_TL_Connection_getState(c->connection, &connectionState);
  167. if (connectionState != CONNECTIONSTATE_CLOSE) {
  168. DBG_VERBOSE(printf("NL_TCP_reader - enter read\n"));
  169. #ifdef WIN32
  170. readBuffer.length = recv(c->connectionHandle, readBuffer.data, localBuffers.recvBufferSize, 0);
  171. #else
  172. readBuffer.length = read(c->connectionHandle, readBuffer.data, localBuffers.recvBufferSize);
  173. #endif
  174. DBG_VERBOSE(printf("NL_TCP_reader - leave read\n"));
  175. DBG_VERBOSE(printf("NL_TCP_reader - src={%*.s}, ",c->connection.remoteEndpointUrl.length,c->connection.remoteEndpointUrl.data));
  176. DBG(UA_ByteString_printx("NL_TCP_reader - received=",&readBuffer));
  177. if (readBuffer.length > 0) {
  178. #ifdef DEBUG
  179. #include "ua_transport_binary_secure.h"
  180. UA_UInt32 pos = 0;
  181. UA_OPCUATcpMessageHeader header;
  182. UA_OPCUATcpMessageHeader_decodeBinary(&readBuffer, &pos, &header);
  183. pos = 24;
  184. if(header.messageType == UA_MESSAGETYPE_MSG)
  185. {
  186. UA_NodeId serviceRequestType;
  187. UA_NodeId_decodeBinary(&readBuffer, &pos,&serviceRequestType);
  188. UA_NodeId_printf("NL_TCP_reader - Service Type\n",&serviceRequestType);
  189. }
  190. #endif
  191. TL_Process((c->connection),&readBuffer);
  192. } else {
  193. perror("NL_TCP_reader - ERROR reading from socket");
  194. UA_TL_Connection_setState(c->connection, CONNECTIONSTATE_CLOSE);
  195. }
  196. }
  197. UA_TL_Connection_getState(c->connection, &connectionState);
  198. printf("NL_TCP_reader - connectionState=%d\n",connectionState);
  199. if (connectionState == CONNECTIONSTATE_CLOSE) {
  200. // set connection's state to CONNECTIONSTATE_CLOSED and call callback to actually close
  201. UA_TL_Connection_close(c->connection);
  202. #ifndef MULTITHREADING
  203. DBG_VERBOSE(printf("NL_TCP_reader - search element to remove\n"));
  204. UA_list_Element* lec = UA_list_search(&(c->networkLayer->connections),NL_ConnectionComparer,c);
  205. DBG_VERBOSE(printf("NL_TCP_reader - remove connection for handle=%d\n",((NL_Connection*)lec->payload)->connection.connectionHandle));
  206. UA_list_removeElement(lec,UA_NULL);
  207. DBG_VERBOSE(UA_list_iteratePayload(&(c->networkLayer->connections),NL_Connection_printf));
  208. UA_free(c);
  209. #endif
  210. }
  211. UA_ByteString_deleteMembers(&readBuffer);
  212. return UA_NULL;
  213. }
  214. #ifdef MULTITHREADING
  215. /** the tcp reader thread */
  216. void* NL_TCP_readerThread(NL_Connection *c) {
  217. // just loop, NL_TCP_Reader will call the stack
  218. UA_Int32 connectionState;
  219. do {
  220. NL_TCP_reader(c);
  221. UA_TL_Connection_getState(c->connection, &connectionState);
  222. } while (connectionState != CONNECTIONSTATE_CLOSED);
  223. // clean up
  224. UA_free(c);
  225. pthread_exit(UA_NULL);
  226. }
  227. #endif
  228. /** write message provided in the gather buffers to a tcp transport layer connection */
  229. UA_Int32 NL_TCP_writer(UA_Int32 connectionHandle, UA_ByteString const * const * gather_buf, UA_UInt32 gather_len) {
  230. UA_UInt32 total_len = 0;
  231. #ifdef WIN32
  232. WSABUF *buf = malloc(gather_len * sizeof(WSABUF));
  233. int result = 0;
  234. for (UA_UInt32 i = 0; i<gather_len; i++) {
  235. buf[i].buf = gather_buf[i]->data;
  236. buf[i].len = gather_buf[i]->length;
  237. total_len += gather_buf[i]->length;
  238. // DBG(printf("NL_TCP_writer - gather_buf[%i]",i));
  239. // DBG(UA_ByteString_printx("=", gather_buf[i]));
  240. }
  241. #else
  242. struct iovec iov[gather_len];
  243. for(UA_UInt32 i=0;i<gather_len;i++) {
  244. iov[i].iov_base = gather_buf[i]->data;
  245. iov[i].iov_len = gather_buf[i]->length;
  246. total_len += gather_buf[i]->length;
  247. // DBG(printf("NL_TCP_writer - gather_buf[%i]",i));
  248. // DBG(UA_ByteString_printx("=", gather_buf[i]));
  249. }
  250. struct msghdr message;
  251. message.msg_name = UA_NULL;
  252. message.msg_namelen = 0;
  253. message.msg_iov = iov;
  254. message.msg_iovlen = gather_len;
  255. message.msg_control = UA_NULL;
  256. message.msg_controllen = 0;
  257. message.msg_flags = 0;
  258. #endif
  259. UA_UInt32 nWritten = 0;
  260. while (nWritten < total_len) {
  261. int n=0;
  262. do {
  263. DBG_VERBOSE(printf("NL_TCP_writer - enter write with %d bytes to write\n",total_len));
  264. #ifdef WIN32
  265. //result = WSASendMsg(connectionHandle,&message,0,&n,UA_NULL,UA_NULL);
  266. result = WSASend(connectionHandle, buf, gather_len , &n, 0, NULL, NULL);
  267. if(result != 0)
  268. {
  269. printf("NL_TCP_Writer - Error WSASend, code: %d \n", WSAGetLastError());
  270. }
  271. #else
  272. n = sendmsg(connectionHandle, &message, 0);
  273. #endif
  274. DBG_VERBOSE(printf("NL_TCP_writer - leave write with n=%d,errno={%d,%s}\n",n,(n>0)?0:errno,(n>0)?"":strerror(errno)));
  275. } while (n == -1L && errno == EINTR);
  276. if (n >= 0) {
  277. nWritten += n;
  278. break;
  279. // TODO: handle incompletely send messages
  280. } else {
  281. break;
  282. // TODO: error handling
  283. }
  284. }
  285. #ifdef WIN32
  286. free(buf);
  287. #endif
  288. return UA_SUCCESS;
  289. }
  290. //callback function which is called when the UA_TL_Connection_close() function is initiated
  291. UA_Int32 NL_Connection_close(UA_TL_Connection *connection)
  292. {
  293. NL_Connection *networkLayerData = UA_NULL;
  294. UA_TL_Connection_getNetworkLayerData(connection, (void**)&networkLayerData);
  295. if(networkLayerData != UA_NULL){
  296. DBG_VERBOSE(printf("NL_Connection_close - enter shutdown\n"));
  297. shutdown(networkLayerData->connectionHandle,2);
  298. DBG_VERBOSE(printf("NL_Connection_close - enter close\n"));
  299. CLOSESOCKET(networkLayerData->connectionHandle);
  300. FD_CLR(networkLayerData->connectionHandle, &networkLayerData->networkLayer->readerHandles);
  301. DBG_VERBOSE(printf("NL_Connection_close - leave close\n"));
  302. return UA_SUCCESS;
  303. }
  304. DBG_VERBOSE(printf("NL_Connection_close - ERROR: connection object invalid \n"));
  305. return UA_ERROR;
  306. }
  307. void* NL_Connection_init(NL_Connection* c, NL_data* tld, UA_Int32 connectionHandle, NL_Reader reader, TL_Writer writer)
  308. {
  309. UA_TL_Connection *connection = UA_NULL;
  310. //create new connection object
  311. UA_TL_Connection_new(&connection, tld->tld->localConf, writer, NL_Connection_close,connectionHandle,c);
  312. c->connection = connection;
  313. c->connectionHandle = connectionHandle;
  314. // network layer
  315. c->reader = reader;
  316. #ifdef MULTITHREADING
  317. c->readerThreadHandle = -1;
  318. #endif
  319. c->networkLayer = tld;
  320. return UA_NULL;
  321. }
  322. /** the tcp accept routine */
  323. void* NL_TCP_accept(NL_Connection* c) {
  324. NL_data* tld = c->networkLayer;
  325. if (tld->tld->maxConnections == -1 || tld->connections.size < tld->tld->maxConnections) {
  326. // accept only if not max number of connections exceeded
  327. struct sockaddr_in cli_addr;
  328. socklen_t cli_len = sizeof(cli_addr);
  329. DBG_VERBOSE(printf("NL_TCP_listen - enter accept\n"));
  330. int newsockfd = accept(c->connectionHandle, (struct sockaddr *) &cli_addr, &cli_len);
  331. DBG_VERBOSE(printf("NL_TCP_listen - leave accept\n"));
  332. if (newsockfd < 0) {
  333. DBG_ERR(printf("TL_TCP_listen - accept returns errno={%d,%s}\n",errno,strerror(errno)));
  334. perror("ERROR on accept");
  335. } else {
  336. DBG_VERBOSE(printf("NL_TCP_listen - new connection on %d\n",newsockfd));
  337. NL_Connection* cclient;
  338. UA_Int32 retval = UA_SUCCESS;
  339. retval |= UA_alloc((void**)&cclient,sizeof(NL_Connection));
  340. NL_Connection_init(cclient, tld, newsockfd, NL_TCP_reader, (TL_Writer) NL_TCP_writer);
  341. #ifdef MULTITHREADING
  342. pthread_create( &(cclient->readerThreadHandle), NULL, (void*(*)(void*)) NL_TCP_readerThread, (void*) cclient);
  343. #else
  344. UA_list_addPayloadToBack(&(tld->connections),cclient);
  345. NL_TCP_SetNonBlocking(cclient->connectionHandle);
  346. #endif
  347. }
  348. } else {
  349. // no action necessary to reject connection
  350. }
  351. return UA_NULL;
  352. }
  353. #ifdef MULTITHREADING
  354. void* NL_TCP_listenThread(NL_Connection* c) {
  355. NL_data* tld = c->networkLayer;
  356. do {
  357. DBG_VERBOSE(printf("NL_TCP_listenThread - enter listen\n"));
  358. int retval = listen(c->connectionHandle, tld->tld->maxConnections);
  359. DBG_VERBOSE(printf("NL_TCP_listenThread - leave listen, retval=%d\n", retval));
  360. if (retval < 0) {
  361. // TODO: Error handling
  362. perror("NL_TCP_listen");
  363. DBG_ERR(printf("NL_TCP_listen retval=%d, errno={%d,%s}\n", retval, errno, strerror(errno)));
  364. } else {
  365. NL_TCP_accept(c);
  366. }
  367. } while (UA_TRUE);
  368. UA_free(c);
  369. pthread_exit(UA_NULL);
  370. }
  371. #endif
  372. UA_Int32 NL_TCP_init(NL_data* tld, UA_Int32 port) {
  373. UA_Int32 retval = UA_SUCCESS;
  374. // socket variables
  375. int newsockfd;
  376. struct sockaddr_in serv_addr;
  377. // create socket for listening to incoming connections
  378. #ifdef WIN32
  379. WORD wVersionRequested;
  380. WSADATA wsaData;
  381. int err;
  382. /* Use the MAKEWORD(lowbyte, highbyte) macro declared in Windef.h */
  383. wVersionRequested = MAKEWORD(2, 2);
  384. err = WSAStartup(wVersionRequested, &wsaData);
  385. newsockfd = socket(PF_INET, SOCK_STREAM,0);
  386. if (newsockfd == INVALID_SOCKET){
  387. UA_Int32 lasterror = WSAGetLastError();
  388. printf("ERROR opening socket, code: %d\n",WSAGetLastError());
  389. #else
  390. newsockfd = socket(PF_INET, SOCK_STREAM, 0);
  391. if (newsockfd < 0) {
  392. #endif
  393. perror("ERROR opening socket");
  394. retval = UA_ERROR;
  395. }
  396. else {
  397. // set port number, options and bind
  398. memset((void *)&serv_addr, sizeof(serv_addr), 1);
  399. serv_addr.sin_family = AF_INET;
  400. serv_addr.sin_addr.s_addr = INADDR_ANY;
  401. serv_addr.sin_port = htons(port);
  402. int optval = 1;
  403. if (setsockopt(newsockfd, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof optval) == -1) {
  404. perror("setsockopt");
  405. retval = UA_ERROR;
  406. }
  407. else {
  408. // bind to port
  409. if (bind(newsockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) {
  410. perror("ERROR on binding");
  411. retval = UA_ERROR;
  412. }
  413. else {
  414. UA_String_copyprintf("opc.tcp://localhost:%d/", &(tld->endpointUrl), port);
  415. }
  416. }
  417. }
  418. // finally
  419. if (retval == UA_SUCCESS) {
  420. DBG_VERBOSE(printf("NL_TCP_init - new listener on %d\n",newsockfd));
  421. NL_Connection* c;
  422. UA_Int32 retval = UA_SUCCESS;
  423. retval |= UA_alloc((void**)&c,sizeof(NL_Connection));
  424. NL_Connection_init(c, tld, newsockfd, NL_TCP_accept, (TL_Writer) NL_TCP_writer);
  425. #ifdef MULTITHREADING
  426. pthread_create( &(c->readerThreadHandle), NULL, (void*(*)(void*)) NL_TCP_listenThread, (void*) c);
  427. #else
  428. UA_list_addPayloadToBack(&(tld->connections),c);
  429. NL_TCP_SetNonBlocking(c->connectionHandle);
  430. listen(c->connectionHandle, tld->tld->maxConnections);
  431. #endif
  432. }
  433. return retval;
  434. }
  435. /** checks arguments and dispatches to worker or refuses to init */
  436. NL_data* NL_init(NL_Description* tlDesc, UA_Int32 port) {
  437. NL_data* nl = UA_NULL;
  438. if (tlDesc->connectionType == NL_CONNECTIONTYPE_TCPV4 && tlDesc->encoding == NL_UA_ENCODING_BINARY) {
  439. UA_alloc((void**)&nl, sizeof(NL_data));
  440. nl->tld = tlDesc;
  441. FD_ZERO(&(nl->readerHandles));
  442. UA_list_init(&(nl->connections));
  443. NL_TCP_init(nl, port);
  444. }
  445. return nl;
  446. }