| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- /*
- * Copyright (C) 2011-2013 Michael Tuexen
- * Copyright (C) 2011-2015 Colin Caughie
- * Copyright (C) 2011-2019 Felix Weinrank
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the project nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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.
- */
- /*
- * Usage: st_client local_addr local_port remote_addr remote_port remote_sctp_port
- */
- #ifdef _WIN32
- #define _CRT_SECURE_NO_WARNINGS
- #endif
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdarg.h>
- #include <sys/types.h>
- #ifndef _WIN32
- #include <sys/socket.h>
- #include <sys/time.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <errno.h>
- #include <pthread.h>
- #include <unistd.h>
- #else
- #include <winsock2.h>
- #include <ws2tcpip.h>
- #endif
- #include <usrsctp.h>
- #include "programs_helper.h"
- #define MAX_PACKET_SIZE (1<<16)
- #define BUFFER_SIZE 80
- #define DISCARD_PPID 39
- #define HTTP_PPID 63
- #define TIMER_INTERVAL_MSECS 10
- static int connecting = 0;
- static int finish = 0;
- static uint64_t
- get_milliseconds_count(void)
- {
- #ifdef _WIN32
- // obtain number of milliseconds since system started
- return GetTickCount64();
- #else
- struct timeval tv;
- gettimeofday(&tv, NULL); /* get current time */
- return (tv.tv_sec * 1000LL + tv.tv_usec / 1000);
- #endif
- }
- static void
- #ifdef _WIN32
- handle_events(SOCKET sock, struct socket* s, void* sconn_addr)
- #else
- handle_events(int sock, struct socket* s, void* sconn_addr)
- #endif
- {
- char *dump_buf;
- ssize_t length;
- char buf[MAX_PACKET_SIZE];
- fd_set rfds;
- struct timeval tv;
- uint64_t next_fire_time = get_milliseconds_count();
- uint64_t last_fire_time = next_fire_time;
- uint64_t now = get_milliseconds_count();
- uint32_t wait_time;
- while (!finish) {
- if (now > next_fire_time) {
- usrsctp_handle_timers((uint32_t)(now - last_fire_time));
- last_fire_time = now;
- next_fire_time = now + TIMER_INTERVAL_MSECS;
- }
- wait_time = (uint32_t)(next_fire_time - now);
- tv.tv_sec = wait_time / 1000;
- tv.tv_usec = (wait_time % 1000) * 1000;
- FD_ZERO(&rfds);
- FD_SET(sock, &rfds);
- #ifdef _WIN32
- select(0 /* ignored */, &rfds, NULL, NULL, &tv);
- #else
- select(sock + 1, &rfds, NULL, NULL, &tv);
- #endif
- if (FD_ISSET(sock, &rfds)) {
- length = recv(sock, buf, MAX_PACKET_SIZE, 0);
- if (length > 0) {
- if ((dump_buf = usrsctp_dumppacket(buf, (size_t)length, SCTP_DUMP_INBOUND)) != NULL) {
- fprintf(stderr, "%s", dump_buf);
- usrsctp_freedumpbuffer(dump_buf);
- }
- usrsctp_conninput(sconn_addr, buf, (size_t)length, 0);
- }
- }
- }
- }
- static void
- on_connect(struct socket* s)
- {
- struct sctp_sndinfo sndinfo;
- char buffer[BUFFER_SIZE];
- int bufferlen;
- /* memset(buffer, 'A', BUFFER_SIZE); */
- /* bufferlen = BUFFER_SIZE; */
- bufferlen = snprintf(buffer, BUFFER_SIZE, "GET / HTTP/1.0\r\nUser-agent: libusrsctp\r\nConnection: close\r\n\r\n");
- if (bufferlen < 0) {
- return;
- }
- sndinfo.snd_sid = 0;
- sndinfo.snd_flags = 0;
- sndinfo.snd_ppid = htonl(DISCARD_PPID);
- sndinfo.snd_context = 0;
- sndinfo.snd_assoc_id = 0;
- if (usrsctp_sendv(s, buffer, bufferlen, NULL, 0, (void *)&sndinfo,
- (socklen_t)sizeof(struct sctp_sndinfo), SCTP_SENDV_SNDINFO, 0) < 0) {
- perror("usrsctp_sendv");
- }
- }
- static void
- on_socket_readable(struct socket* s) {
- char buffer[BUFFER_SIZE];
- union sctp_sockstore addr;
- socklen_t fromlen = sizeof(addr);
- struct sctp_rcvinfo rcv_info;
- socklen_t infolen = sizeof(rcv_info);
- unsigned int infotype = 0;
- int flags = 0;
- ssize_t retval;
- /* Keep reading until there is no more data */
- for (;;) {
- retval = usrsctp_recvv(s, buffer, sizeof(buffer), (struct sockaddr*) &addr,
- &fromlen, &rcv_info, &infolen, &infotype, &flags);
- if (retval < 0) {
- if (errno != EWOULDBLOCK) {
- perror("usrsctp_recvv");
- finish = 1;
- }
- return;
- } else if (retval == 0) {
- printf("socket was disconnected\n");
- finish = 1;
- return;
- }
- if (flags & MSG_NOTIFICATION) {
- printf("Notification of length %d received.\n", (int)retval);
- } else {
- printf("Msg of length %d received via %p:%u on stream %d with SSN %u and TSN %u, PPID %u, context %u.\n",
- (int)retval,
- addr.sconn.sconn_addr,
- ntohs(addr.sconn.sconn_port),
- rcv_info.rcv_sid,
- rcv_info.rcv_ssn,
- rcv_info.rcv_tsn,
- (uint32_t)ntohl(rcv_info.rcv_ppid),
- rcv_info.rcv_context);
- }
- }
- }
- static void
- handle_upcall(struct socket *s, void *arg, int flags)
- {
- int events = usrsctp_get_events(s);
- if (connecting) {
- if (events & SCTP_EVENT_ERROR) {
- connecting = 0;
- finish = 1;
- } else if (events & SCTP_EVENT_WRITE) {
- connecting = 0;
- on_connect(s);
- }
- return;
- }
- if (events & SCTP_EVENT_READ) {
- on_socket_readable(s);
- }
- }
- static int
- conn_output(void *addr, void *buf, size_t length, uint8_t tos, uint8_t set_df)
- {
- char *dump_buf;
- #ifdef _WIN32
- SOCKET *fdp;
- #else
- int *fdp;
- #endif
- #ifdef _WIN32
- fdp = (SOCKET *)addr;
- #else
- fdp = (int *)addr;
- #endif
- if ((dump_buf = usrsctp_dumppacket(buf, length, SCTP_DUMP_OUTBOUND)) != NULL) {
- fprintf(stderr, "%s", dump_buf);
- usrsctp_freedumpbuffer(dump_buf);
- }
- #ifdef _WIN32
- if (send(*fdp, buf, (int)length, 0) == SOCKET_ERROR) {
- return (WSAGetLastError());
- #else
- if (send(*fdp, buf, length, 0) < 0) {
- return (errno);
- #endif
- } else {
- return (0);
- }
- }
- /* Usage: st_client local_addr local_port remote_addr remote_port remote_sctp_port */
- int
- main(int argc, char *argv[])
- {
- struct sockaddr_in sin;
- struct sockaddr_conn sconn;
- #ifdef _WIN32
- SOCKET fd;
- #else
- int fd;
- #endif
- struct socket *s;
- int retval;
- #ifdef _WIN32
- WSADATA wsaData;
- #endif
- const int on = 1;
- if (argc < 6) {
- printf("Usage: st_client local_addr local_port remote_addr remote_port remote_sctp_port\n");
- return (-1);
- }
- #ifdef _WIN32
- if (WSAStartup(MAKEWORD(2,2), &wsaData) != 0) {
- printf("WSAStartup failed\n");
- exit(EXIT_FAILURE);
- }
- #endif
- usrsctp_init_nothreads(0, conn_output, debug_printf_stack);
- /* set up a connected UDP socket */
- #ifdef _WIN32
- if ((fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) == INVALID_SOCKET) {
- printf("socket() failed with error: %d\n", WSAGetLastError());
- exit(EXIT_FAILURE);
- }
- #else
- if ((fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
- perror("socket");
- exit(EXIT_FAILURE);
- }
- #endif
- memset(&sin, 0, sizeof(struct sockaddr_in));
- sin.sin_family = AF_INET;
- #ifdef HAVE_SIN_LEN
- sin.sin_len = sizeof(struct sockaddr_in);
- #endif
- sin.sin_port = htons(atoi(argv[2]));
- if (!inet_pton(AF_INET, argv[1], &sin.sin_addr.s_addr)){
- printf("error: invalid address\n");
- exit(EXIT_FAILURE);
- }
- #ifdef _WIN32
- if (bind(fd, (struct sockaddr *)&sin, sizeof(struct sockaddr_in)) == SOCKET_ERROR) {
- printf("bind() failed with error: %d\n", WSAGetLastError());
- exit(EXIT_FAILURE);
- }
- #else
- if (bind(fd, (struct sockaddr *)&sin, sizeof(struct sockaddr_in)) < 0) {
- perror("bind");
- exit(EXIT_FAILURE);
- }
- #endif
- memset(&sin, 0, sizeof(struct sockaddr_in));
- sin.sin_family = AF_INET;
- #ifdef HAVE_SIN_LEN
- sin.sin_len = sizeof(struct sockaddr_in);
- #endif
- sin.sin_port = htons(atoi(argv[4]));
- if (!inet_pton(AF_INET, argv[3], &sin.sin_addr.s_addr)){
- printf("error: invalid address\n");
- exit(EXIT_FAILURE);
- }
- #ifdef _WIN32
- if (connect(fd, (struct sockaddr *)&sin, sizeof(struct sockaddr_in)) == SOCKET_ERROR) {
- printf("connect() failed with error: %d\n", WSAGetLastError());
- exit(EXIT_FAILURE);
- }
- #else
- if (connect(fd, (struct sockaddr *)&sin, sizeof(struct sockaddr_in)) < 0) {
- perror("connect");
- exit(EXIT_FAILURE);
- }
- #endif
- #ifdef SCTP_DEBUG
- usrsctp_sysctl_set_sctp_debug_on(SCTP_DEBUG_NONE);
- #endif
- usrsctp_sysctl_set_sctp_ecn_enable(0);
- usrsctp_register_address((void *)&fd);
- if ((s = usrsctp_socket(AF_CONN, SOCK_STREAM, IPPROTO_SCTP, NULL, NULL, 0, NULL)) == NULL) {
- perror("usrsctp_socket");
- exit(EXIT_FAILURE);
- }
- usrsctp_setsockopt(s, IPPROTO_SCTP, SCTP_RECVRCVINFO, &on, sizeof(int));
- usrsctp_set_non_blocking(s, 1);
- usrsctp_set_upcall(s, handle_upcall, NULL);
- memset(&sconn, 0, sizeof(struct sockaddr_conn));
- sconn.sconn_family = AF_CONN;
- #ifdef HAVE_SCONN_LEN
- sconn.sconn_len = sizeof(struct sockaddr_conn);
- #endif
- sconn.sconn_port = htons(0);
- sconn.sconn_addr = NULL;
- if (usrsctp_bind(s, (struct sockaddr *)&sconn, sizeof(struct sockaddr_conn)) < 0) {
- perror("usrsctp_bind");
- exit(EXIT_FAILURE);
- }
- memset(&sconn, 0, sizeof(struct sockaddr_conn));
- sconn.sconn_family = AF_CONN;
- #ifdef HAVE_SCONN_LEN
- sconn.sconn_len = sizeof(struct sockaddr_conn);
- #endif
- sconn.sconn_port = htons(atoi(argv[5]));
- sconn.sconn_addr = &fd;
- retval = usrsctp_connect(s, (struct sockaddr *)&sconn, sizeof(struct sockaddr_conn));
- if (retval < 0 && errno != EWOULDBLOCK && errno != EINPROGRESS) {
- perror("usrsctp_connect");
- exit(EXIT_FAILURE);
- }
- connecting = 1;
- handle_events(fd, s, sconn.sconn_addr);
- return (0);
- }
|