From e0c6872cf40896c7be36b11dcc744620f10adf1d Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Mon, 2 Sep 2019 13:46:59 +0900 Subject: Initial commit --- support/dktools/dk4sock24.c | 296 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 296 insertions(+) create mode 100644 support/dktools/dk4sock24.c (limited to 'support/dktools/dk4sock24.c') diff --git a/support/dktools/dk4sock24.c b/support/dktools/dk4sock24.c new file mode 100644 index 0000000000..ac1d6a0453 --- /dev/null +++ b/support/dktools/dk4sock24.c @@ -0,0 +1,296 @@ +/* + WARNING: This file was generated by dkct. + Changes you make here will be lost if dkct is run again! + You should modify the original source and run dkct on it. + Original source: dk4sock24.ctr +*/ + +/* +Copyright (C) 2015-2017, Dirk Krause + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above opyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* Neither the name of the author nor the names of contributors may be used + to endorse or promote products derived from this software without specific + prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. +IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +/** @file dk4sock24.c The dk4sock24 module. +*/ + + +#line 9 "dk4sock24.ctr" + +#include "dk4sock.h" +#include "dk4mem.h" + +#if DK4_HAVE_GETADDRINFO +#include "dk4mao8d.h" +#else +#include "dk4mai8dus.h" +#endif + + + + + +#line 22 "dk4sock24.ctr" + + + +/** Create listener socket set for a local port number. + @param servicename Local service name. + @param backlog Number of connection requests to queue. + @param local Flag: Allow local connections only. + @param numeric Flag: Service name is numeric. + @param erp Error report, may be NULL. + @return Socket set on success, NULL on error. +*/ +static +dk4_socket_set_t * +dk4socket_c8_set_service_num_flag( + const char *servicename, + int backlog, + int local, + int numeric, + dk4_er_t *erp +) +{ +#if DK4_HAVE_GETADDRINFO + /* +++++ +getaddrinfo */ + struct addrinfo hints; + struct addrinfo *addri = NULL; + struct addrinfo *paddr = NULL; + dk4_socket_set_t *back = NULL; + size_t numad = 0; + int res = 0; +#if DK4_HAVE_SETSOCKOPT && (defined(SO_REUSEPORT) || defined(SO_REUSEADDR)) + int opt = 0; +#endif + + +#line 55 "dk4sock24.ctr" + if (NULL != servicename) { + DK4_MEMRES(&hints, sizeof(hints)); + hints.ai_family = AF_UNSPEC; + hints.ai_socktype = SOCK_STREAM; + hints.ai_flags = 0; + hints.ai_protocol = 0; + hints.ai_addrlen = 0; + hints.ai_canonname = NULL; + hints.ai_addr = NULL; + hints.ai_next = NULL; + if (0 == local) { hints.ai_flags |= AI_PASSIVE; } + if (0 != numeric) { hints.ai_flags |= AI_NUMERICSERV; } + res = getaddrinfo(NULL, servicename, &hints, &addri); + if ((0 == res) && (NULL != addri)) { + paddr = addri; + while (NULL != paddr) { numad++; paddr = paddr->ai_next; } + if (0 < numad) { + +#line 72 "dk4sock24.ctr" + paddr = addri; + back = dk4socket_set_new(numad, erp); + if (NULL != back) { + while (NULL != paddr) { + +#line 76 "dk4sock24.ctr" + (back->pSockets)[back->szUsed] = dk4socket_open( + paddr->ai_family, SOCK_STREAM, 0, erp + ); + if (INVALID_SOCKET != (back->pSockets)[back->szUsed]) { +#if DK4_HAVE_SETSOCKOPT && defined(SO_REUSEPORT) + + +#line 82 "dk4sock24.ctr" + dk4socket_set_one_bytes(&opt, sizeof(opt)); + res = setsockopt( + (back->pSockets)[back->szUsed], SOL_SOCKET, + SO_REUSEPORT, (void *)(&opt), sizeof(opt) + ); + if (0 != res) { + +#line 88 "dk4sock24.ctr" + } +#else +#if DK4_HAVE_SETSOCKOPT && defined(SO_REUSEADDR) + + +#line 92 "dk4sock24.ctr" + dk4socket_set_one_bytes(&opt, sizeof(opt)); + res = setsockopt( + (back->pSockets)[back->szUsed], SOL_SOCKET, + SO_REUSEADDR, (void *)(&opt), sizeof(opt) + ); + if (0 != res) { + +#line 98 "dk4sock24.ctr" + } +#else + + +#line 101 "dk4sock24.ctr" +#endif +#endif + res = dk4socket_bind( + (back->pSockets)[back->szUsed], paddr->ai_addr, + paddr->ai_addrlen, erp + ); + if (DK4_SOCKET_RESULT_SUCCESS == res) { + res = dk4socket_listen( + (back->pSockets)[back->szUsed], backlog, erp + ); + if (DK4_SOCKET_RESULT_SUCCESS == res) { + back->szUsed += 1; + + +#line 114 "dk4sock24.ctr" + } else { + +#line 115 "dk4sock24.ctr" + (void)dk4socket_close((back->pSockets)[back->szUsed], NULL); + (back->pSockets)[back->szUsed] = INVALID_SOCKET; + } + } else { + +#line 119 "dk4sock24.ctr" + (void)dk4socket_close((back->pSockets)[back->szUsed], NULL); + (back->pSockets)[back->szUsed] = INVALID_SOCKET; + } + } else { + +#line 123 "dk4sock24.ctr" + } + paddr = paddr->ai_next; + } + if (0 == back->szUsed) { + dk4socket_set_delete(back, NULL); + back = NULL; + } + } + } + freeaddrinfo(addri); + } else { + dk4error_set_idetails(erp, DK4_E_SOCKET_GETADDRLOC, res); + } + } else { + dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS); + } + + +#line 140 "dk4sock24.ctr" + return back; + /* ----- +getaddrinfo */ +#else + /* +++++ -getaddrinfo */ + const char *endptr = NULL; + dk4_socket_set_t *back = NULL; + struct servent *serv = NULL; + int iport = 0; + int res = 0; + unsigned short portno = 0; + + +#line 151 "dk4sock24.ctr" + if (NULL != servicename) { + res = dk4ma_input_c8_dec_ushort( + &portno, servicename, &endptr, 1, NULL + ); + if (0 != res) { + back = dk4socket_set_server_directly(portno, backlog, local, erp); + } else { + dk4socket_error_reset(); + serv = getservbyname(servicename, NULL); + if (NULL != serv) { + iport = serv->s_port; + dk4socket_swap_bytes_if_not_bigendian((void *)(&iport), sizeof(iport)); + portno = (unsigned short)iport; + back = dk4socket_set_server_directly(portno, backlog, local, erp); + } else { + dk4socket_error_report(erp, DK4_E_SOCKET_GETSERVBYNAME); + } + } + } else { + dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS); + } + + +#line 173 "dk4sock24.ctr" + return back; + /* ----- -getaddrinfo */ +#endif +} + + + +dk4_socket_set_t * +dk4socket_c8_set_server( + unsigned short portno, + int backlog, + int local, + dk4_er_t *erp +) +{ +#if DK4_HAVE_GETADDRINFO + /* +++++ +getaddrinfo */ + char pnb[16*sizeof(dk4_um_t)]; + dk4_socket_set_t *back = NULL; + int res; + if (0 < portno) { + res = dk4ma_write_c8_decimal_unsigned( + pnb, sizeof(pnb), (dk4_um_t)portno, 0, erp + ); + if (0 != res) { + back = dk4socket_c8_set_service_num_flag( + pnb, backlog, local, 1, erp + ); + } + } else { + dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS); + } + return back; + /* ----- +getaddrinfo */ +#else + /* +++++ -getaddrinfo */ + return ( + dk4socket_set_server_directly(portno, backlog, local, erp) + ); + /* ----- -getaddrinfo */ +#endif +} + + + +dk4_socket_set_t * +dk4socket_c8_set_service( + const char *servicename, + int backlog, + int local, + dk4_er_t *erp +) +{ + return ( + dk4socket_c8_set_service_num_flag(servicename, backlog, local, 0, erp) + ); +} + + + -- cgit v1.2.3