Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /********************************************************************************************************* |
| 2 | * Software License Agreement (BSD License) * |
| 3 | * Author: Sebastien Decugis <sdecugis@freediameter.net> * |
| 4 | * * |
| 5 | * Copyright (c) 2013, WIDE Project and NICT * |
| 6 | * All rights reserved. * |
| 7 | * * |
| 8 | * Redistribution and use of this software in source and binary forms, with or without modification, are * |
| 9 | * permitted provided that the following conditions are met: * |
| 10 | * * |
| 11 | * * Redistributions of source code must retain the above * |
| 12 | * copyright notice, this list of conditions and the * |
| 13 | * following disclaimer. * |
| 14 | * * |
| 15 | * * Redistributions in binary form must reproduce the above * |
| 16 | * copyright notice, this list of conditions and the * |
| 17 | * following disclaimer in the documentation and/or other * |
| 18 | * materials provided with the distribution. * |
| 19 | * * |
| 20 | * * Neither the name of the WIDE Project or NICT nor the * |
| 21 | * names of its contributors may be used to endorse or * |
| 22 | * promote products derived from this software without * |
| 23 | * specific prior written permission of WIDE Project and * |
| 24 | * NICT. * |
| 25 | * * |
| 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED * |
| 27 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * |
| 28 | * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * |
| 29 | * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * |
| 30 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * |
| 31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * |
| 32 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * |
| 33 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * |
| 34 | *********************************************************************************************************/ |
| 35 | |
| 36 | /* This file contains the definitions for internal use in the connection context files */ |
| 37 | |
| 38 | #ifndef _CNXCTX_H |
| 39 | #define _CNXCTX_H |
| 40 | |
| 41 | /* Maximum time we allow a connection to be blocked because of head-of-the-line buffers. After this delay, connection is considered in error. */ |
| 42 | #define MAX_HOTL_BLOCKING_TIME 1000 /* ms */ |
| 43 | |
| 44 | /* The connection context structure */ |
| 45 | struct cnxctx { |
| 46 | char cc_id[60]; /* The name of this connection. the first 5 chars are reserved for flags display (cc_state). */ |
| 47 | char cc_remid[60]; /* Id of remote peer */ |
| 48 | |
| 49 | int cc_socket; /* The socket object of the connection -- <=0 if no socket is created */ |
| 50 | |
| 51 | int cc_family; /* AF_INET or AF_INET6 (mixed) */ |
| 52 | int cc_proto; /* IPPROTO_TCP or IPPROTO_SCTP */ |
| 53 | |
| 54 | uint32_t cc_state; /* True if the object is being destroyed: we don't send events anymore. access with fd_cnx_getstate() */ |
| 55 | #define CC_STATUS_CLOSING 1 |
| 56 | #define CC_STATUS_ERROR 2 |
| 57 | #define CC_STATUS_SIGNALED 4 |
| 58 | #define CC_STATUS_TLS 8 |
| 59 | |
| 60 | pthread_t cc_rcvthr; /* thread for receiving messages on the connection */ |
| 61 | int cc_loop; /* tell the thread if it loops or stops after the first message is received */ |
| 62 | |
| 63 | struct fifo * cc_incoming; /* FIFO queue of events received on the connection, FDEVP_CNX_* */ |
| 64 | struct fifo * cc_alt; /* alternate fifo to send FDEVP_CNX_* events to. */ |
| 65 | |
| 66 | /* If cc_tls == true */ |
| 67 | struct { |
| 68 | DiamId_t cn; /* If not NULL, remote certif will be checked to match this Common Name */ |
| 69 | int mode; /* GNUTLS_CLIENT / GNUTLS_SERVER */ |
| 70 | int algo; /* ALGO_HANDSHAKE_DEFAULT / ALGO_HANDSHAKE_3436 */ |
| 71 | gnutls_session_t session; /* Session object (stream #0 in case of SCTP) */ |
| 72 | } cc_tls_para; |
| 73 | |
| 74 | /* If cc_proto == SCTP */ |
| 75 | struct { |
| 76 | uint16_t str_out; /* Out streams */ |
| 77 | uint16_t str_in; /* In streams */ |
| 78 | uint16_t pairs; /* max number of pairs ( = min(in, out)) */ |
| 79 | uint16_t next; /* # of stream the next message will be sent to */ |
| 80 | int unordered; /* boolean telling if use of streams > 0 is permitted */ |
| 81 | } cc_sctp_para; |
| 82 | |
| 83 | /* If both conditions */ |
| 84 | struct { |
| 85 | struct sctp3436_ctx *array; /* an array of cc_sctp_para.pairs elements -- the #0 is special (session is outside)*/ |
| 86 | struct sr_store *sess_store; /* Session data of the master session, to resume the children sessions */ |
| 87 | } cc_sctp3436_data; |
| 88 | }; |
| 89 | |
| 90 | void fd_cnx_markerror(struct cnxctx * conn); |
| 91 | uint32_t fd_cnx_getstate(struct cnxctx * conn); |
| 92 | int fd_cnx_teststate(struct cnxctx * conn, uint32_t flag); |
| 93 | void fd_cnx_addstate(struct cnxctx * conn, uint32_t orstate); |
| 94 | void fd_cnx_setstate(struct cnxctx * conn, uint32_t abstate); |
| 95 | struct fifo * fd_cnx_target_queue(struct cnxctx * conn); |
| 96 | |
| 97 | |
| 98 | /* Socket */ |
| 99 | ssize_t fd_cnx_s_recv(struct cnxctx * conn, void *buffer, size_t length); |
| 100 | void fd_cnx_s_setto(int sock); |
| 101 | |
| 102 | /* TLS */ |
| 103 | int fd_tls_rcvthr_core(struct cnxctx * conn, gnutls_session_t session); |
| 104 | int fd_tls_prepare(gnutls_session_t * session, int mode, int dtls, char * priority, void * alt_creds); |
| 105 | #ifndef GNUTLS_VERSION_300 |
| 106 | int fd_tls_verify_credentials(gnutls_session_t session, struct cnxctx * conn, int verbose); |
| 107 | #endif /* GNUTLS_VERSION_300 */ |
| 108 | |
| 109 | /* TCP */ |
| 110 | int fd_tcp_create_bind_server( int * sock, sSA * sa, socklen_t salen ); |
| 111 | int fd_tcp_listen( int sock ); |
| 112 | int fd_tcp_client( int *sock, sSA * sa, socklen_t salen ); |
| 113 | int fd_tcp_get_local_ep(int sock, sSS * ss, socklen_t *sl); |
| 114 | int fd_tcp_get_remote_ep(int sock, sSS * ss, socklen_t *sl); |
| 115 | |
| 116 | #ifndef DISABLE_SCTP |
| 117 | /* SCTP */ |
| 118 | int fd_sctp_create_bind_server( int * sock, int family, struct fd_list * list, uint16_t port ); |
| 119 | int fd_sctp_listen( int sock ); |
| 120 | int fd_sctp_client( int *sock, int no_ip6, uint16_t port, struct fd_list * list ); |
| 121 | int fd_sctp_get_local_ep(int sock, struct fd_list * list); |
| 122 | int fd_sctp_get_remote_ep(int sock, struct fd_list * list); |
| 123 | int fd_sctp_get_str_info( int sock, uint16_t *in, uint16_t *out, sSS *primary ); |
| 124 | ssize_t fd_sctp_sendstrv(struct cnxctx * conn, uint16_t strid, const struct iovec *iov, int iovcnt); |
| 125 | int fd_sctp_recvmeta(struct cnxctx * conn, uint16_t * strid, uint8_t ** buf, size_t * len, int *event); |
| 126 | |
| 127 | /* TLS over SCTP (multi-stream) */ |
| 128 | struct sctp3436_ctx { |
| 129 | struct cnxctx *parent; /* for info such as socket, conn name, event list */ |
| 130 | uint16_t strid; /* Stream # of this session */ |
| 131 | struct fifo *raw_recv; /* Raw data received on this stream, for demux */ |
| 132 | struct { |
| 133 | uint8_t *buf; |
| 134 | size_t bufsz; |
| 135 | size_t offset; |
| 136 | } partial; /* If the pull function did not read the full content of first message in raw, it stores it here for next read call. */ |
| 137 | pthread_t thr; /* Thread to decrypt raw data in this pair of streams */ |
| 138 | gnutls_session_t session; /* TLS context using this pair of streams -- except if strid == 0, in that case session is outside the array */ |
| 139 | }; |
| 140 | |
| 141 | int fd_sctp3436_init(struct cnxctx * conn); |
| 142 | int fd_sctp3436_handshake_others(struct cnxctx * conn, char * priority, void * alt_creds); |
| 143 | int fd_sctp3436_startthreads(struct cnxctx * conn, int others); |
| 144 | void fd_sctp3436_bye(struct cnxctx * conn); |
| 145 | void fd_sctp3436_waitthreadsterm(struct cnxctx * conn); |
| 146 | void fd_sctp3436_gnutls_deinit_others(struct cnxctx * conn); |
| 147 | void fd_sctp3436_stopthreads(struct cnxctx * conn); |
| 148 | void fd_sctp3436_destroy(struct cnxctx * conn); |
| 149 | |
| 150 | #endif /* DISABLE_SCTP */ |
| 151 | |
| 152 | #endif /* _CNXCTX_H */ |
| 153 | |