diff options
Diffstat (limited to 'usr/src/uts/common/inet/tcp_impl.h')
-rw-r--r-- | usr/src/uts/common/inet/tcp_impl.h | 512 |
1 files changed, 495 insertions, 17 deletions
diff --git a/usr/src/uts/common/inet/tcp_impl.h b/usr/src/uts/common/inet/tcp_impl.h index a54557cee1..2ee2b6cb39 100644 --- a/usr/src/uts/common/inet/tcp_impl.h +++ b/usr/src/uts/common/inet/tcp_impl.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2009 Sun Microsystems, Inc. All rights reserved. + * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -39,11 +39,55 @@ extern "C" { #ifdef _KERNEL +#include <sys/cpuvar.h> +#include <sys/clock_impl.h> /* For LBOLT_FASTPATH{,64} */ #include <inet/optcom.h> #include <inet/tcp.h> #define TCP_MOD_ID 5105 +extern struct qinit tcp_sock_winit; +extern struct qinit tcp_winit; + +extern sock_downcalls_t sock_tcp_downcalls; + +/* + * Bind hash list size and has function. It has to be a power of 2 for + * hashing. + */ +#define TCP_BIND_FANOUT_SIZE 512 +#define TCP_BIND_HASH(lport) (ntohs(lport) & (TCP_BIND_FANOUT_SIZE - 1)) + +/* + * This implementation follows the 4.3BSD interpretation of the urgent + * pointer and not RFC 1122. Switching to RFC 1122 behavior would cause + * incompatible changes in protocols like telnet and rlogin. + */ +#define TCP_OLD_URP_INTERPRETATION 1 + +/* Handy time related macros. */ +#define MS 1L +#define SECONDS (1000 * MS) +#define MINUTES (60 * SECONDS) +#define HOURS (60 * MINUTES) +#define DAYS (24 * HOURS) + +/* TCP option length */ +#define TCPOPT_NOP_LEN 1 +#define TCPOPT_MAXSEG_LEN 4 +#define TCPOPT_WS_LEN 3 +#define TCPOPT_REAL_WS_LEN (TCPOPT_WS_LEN+1) +#define TCPOPT_TSTAMP_LEN 10 +#define TCPOPT_REAL_TS_LEN (TCPOPT_TSTAMP_LEN+2) +#define TCPOPT_SACK_OK_LEN 2 +#define TCPOPT_REAL_SACK_OK_LEN (TCPOPT_SACK_OK_LEN+2) +#define TCPOPT_REAL_SACK_LEN 4 +#define TCPOPT_MAX_SACK_LEN 36 +#define TCPOPT_HEADER_LEN 2 + +/* Round up the value to the nearest mss. */ +#define MSS_ROUNDUP(value, mss) ((((value) - 1) / (mss) + 1) * (mss)) + /* * Was this tcp created via socket() interface? */ @@ -54,6 +98,19 @@ extern "C" { */ #define TCP_IS_DETACHED(tcp) ((tcp)->tcp_detached) +/* TCP timers related data strucutres. Refer to tcp_timers.c. */ +typedef struct tcp_timer_s { + conn_t *connp; + void (*tcpt_proc)(void *); + callout_id_t tcpt_tid; +} tcp_timer_t; + +extern kmem_cache_t *tcp_timercache; + +/* + * Macro for starting various timers. Retransmission timer has its own macro, + * TCP_TIMER_RESTART(). + */ #define TCP_TIMER(tcp, f, tim) \ tcp_timeout(tcp->tcp_connp, f, tim) #define TCP_TIMER_CANCEL(tcp, id) \ @@ -70,6 +127,119 @@ extern "C" { } /* + * For scalability, we must not run a timer for every TCP connection + * in TIME_WAIT state. To see why, consider (for time wait interval of + * 1 minutes): + * 10,000 connections/sec * 60 seconds/time wait = 600,000 active conn's + * + * This list is ordered by time, so you need only delete from the head + * until you get to entries which aren't old enough to delete yet. + * The list consists of only the detached TIME_WAIT connections. + * + * When a tcp_t enters TIME_WAIT state, a timer is started (timeout is + * tcps_time_wait_interval). When the tcp_t is detached (upper layer closes + * the end point), it is moved to the time wait list and another timer is + * started (expiry time is set at tcp_time_wait_expire, which is + * also calculated using tcps_time_wait_interval). This means that the + * TIME_WAIT state can be extended (up to doubled) if the tcp_t doesn't + * become detached for a long time. + * + * The list manipulations (including tcp_time_wait_next/prev) + * are protected by the tcp_time_wait_lock. The content of the + * detached TIME_WAIT connections is protected by the normal perimeters. + * + * This list is per squeue and squeues are shared across the tcp_stack_t's. + * Things on tcp_time_wait_head remain associated with the tcp_stack_t + * and conn_netstack. + * The tcp_t's that are added to tcp_free_list are disassociated and + * have NULL tcp_tcps and conn_netstack pointers. + */ +typedef struct tcp_squeue_priv_s { + kmutex_t tcp_time_wait_lock; + callout_id_t tcp_time_wait_tid; + tcp_t *tcp_time_wait_head; + tcp_t *tcp_time_wait_tail; + tcp_t *tcp_free_list; + uint_t tcp_free_list_cnt; +} tcp_squeue_priv_t; + +/* + * Parameters for TCP Initial Send Sequence number (ISS) generation. When + * tcp_strong_iss is set to 1, which is the default, the ISS is calculated + * by adding three components: a time component which grows by 1 every 4096 + * nanoseconds (versus every 4 microseconds suggested by RFC 793, page 27); + * a per-connection component which grows by 125000 for every new connection; + * and an "extra" component that grows by a random amount centered + * approximately on 64000. This causes the ISS generator to cycle every + * 4.89 hours if no TCP connections are made, and faster if connections are + * made. + * + * When tcp_strong_iss is set to 0, ISS is calculated by adding two + * components: a time component which grows by 250000 every second; and + * a per-connection component which grows by 125000 for every new connections. + * + * A third method, when tcp_strong_iss is set to 2, for generating ISS is + * prescribed by Steve Bellovin. This involves adding time, the 125000 per + * connection, and a one-way hash (MD5) of the connection ID <sport, dport, + * src, dst>, a "truly" random (per RFC 1750) number, and a console-entered + * password. + */ +#define ISS_INCR 250000 +#define ISS_NSEC_SHT 12 + +/* Macros for timestamp comparisons */ +#define TSTMP_GEQ(a, b) ((int32_t)((a)-(b)) >= 0) +#define TSTMP_LT(a, b) ((int32_t)((a)-(b)) < 0) + +/* + * Initialize cwnd according to RFC 3390. def_max_init_cwnd is + * either tcp_slow_start_initial or tcp_slow_start_after idle + * depending on the caller. If the upper layer has not used the + * TCP_INIT_CWND option to change the initial cwnd, tcp_init_cwnd + * should be 0 and we use the formula in RFC 3390 to set tcp_cwnd. + * If the upper layer has changed set the tcp_init_cwnd, just use + * it to calculate the tcp_cwnd. + */ +#define TCP_SET_INIT_CWND(tcp, mss, def_max_init_cwnd) \ +{ \ + if ((tcp)->tcp_init_cwnd == 0) { \ + (tcp)->tcp_cwnd = MIN(def_max_init_cwnd * (mss), \ + MIN(4 * (mss), MAX(2 * (mss), 4380 / (mss) * (mss)))); \ + } else { \ + (tcp)->tcp_cwnd = (tcp)->tcp_init_cwnd * (mss); \ + } \ + tcp->tcp_cwnd_cnt = 0; \ +} + +/* + * Set ECN capable transport (ECT) code point in IP header. + * + * Note that there are 2 ECT code points '01' and '10', which are called + * ECT(1) and ECT(0) respectively. Here we follow the original ECT code + * point ECT(0) for TCP as described in RFC 2481. + */ +#define TCP_SET_ECT(tcp, iph) \ + if ((tcp)->tcp_connp->conn_ipversion == IPV4_VERSION) { \ + /* We need to clear the code point first. */ \ + ((ipha_t *)(iph))->ipha_type_of_service &= 0xFC; \ + ((ipha_t *)(iph))->ipha_type_of_service |= IPH_ECN_ECT0; \ + } else { \ + ((ip6_t *)(iph))->ip6_vcf &= htonl(0xFFCFFFFF); \ + ((ip6_t *)(iph))->ip6_vcf |= htonl(IPH_ECN_ECT0 << 20); \ + } + +/* + * TCP options struct returned from tcp_parse_options. + */ +typedef struct tcp_opt_s { + uint32_t tcp_opt_mss; + uint32_t tcp_opt_wscale; + uint32_t tcp_opt_ts_val; + uint32_t tcp_opt_ts_ecr; + tcp_t *tcp; +} tcp_opt_t; + +/* * Write-side flow-control is implemented via the per instance STREAMS * write-side Q by explicitly setting QFULL to stop the flow of mblk_t(s) * and clearing QFULL and calling qbackenable() to restart the flow based @@ -97,6 +267,146 @@ extern void tcp_setqfull(tcp_t *); #define TCP_UNSENT_BYTES(tcp) \ ((tcp)->tcp_squeue_bytes + (tcp)->tcp_unsent) +/* + * Linked list struct to store listener connection limit configuration per + * IP stack. The list is stored at tcps_listener_conf in tcp_stack_t. + * + * tl_port: the listener port of this limit configuration + * tl_ratio: the maximum amount of memory consumed by all concurrent TCP + * connections created by a listener does not exceed 1/tl_ratio + * of the total system memory. Note that this is only an + * approximation. + * tl_link: linked list struct + */ +typedef struct tcp_listener_s { + in_port_t tl_port; + uint32_t tl_ratio; + list_node_t tl_link; +} tcp_listener_t; + +/* + * If there is a limit set on the number of connections allowed per each + * listener, the following struct is used to store that counter. It keeps + * the number of TCP connection created by a listener. Note that this needs + * to be separated from the listener since the listener can go away before + * all the connections are gone. + * + * When the struct is allocated, tlc_cnt is set to 1. When a new connection + * is created by the listener, tlc_cnt is incremented by 1. When a connection + * created by the listener goes away, tlc_count is decremented by 1. When the + * listener itself goes away, tlc_cnt is decremented by one. The last + * connection (or the listener) which decrements tlc_cnt to zero frees the + * struct. + * + * tlc_max is the threshold value tcps_conn_listen_port. It is set when the + * tcp_listen_cnt_t is allocated. + * + * tlc_report_time stores the time when cmn_err() is called to report that the + * max has been exceeeded. Report is done at most once every + * TCP_TLC_REPORT_INTERVAL mins for a listener. + * + * tlc_drop stores the number of connection attempt dropped because the + * limit has reached. + */ +typedef struct tcp_listen_cnt_s { + uint32_t tlc_max; + uint32_t tlc_cnt; + int64_t tlc_report_time; + uint32_t tlc_drop; +} tcp_listen_cnt_t; + +#define TCP_TLC_REPORT_INTERVAL (30 * MINUTES) + +#define TCP_DECR_LISTEN_CNT(tcp) \ +{ \ + ASSERT((tcp)->tcp_listen_cnt->tlc_cnt > 0); \ + if (atomic_add_32_nv(&(tcp)->tcp_listen_cnt->tlc_cnt, -1) == 0) \ + kmem_free((tcp)->tcp_listen_cnt, sizeof (tcp_listen_cnt_t)); \ + (tcp)->tcp_listen_cnt = NULL; \ +} + +/* Increment and decrement the number of connections in tcp_stack_t. */ +#define TCPS_CONN_INC(tcps) \ + atomic_inc_64( \ + (uint64_t *)&(tcps)->tcps_sc[CPU->cpu_seqid]->tcp_sc_conn_cnt) + +#define TCPS_CONN_DEC(tcps) \ + atomic_dec_64( \ + (uint64_t *)&(tcps)->tcps_sc[CPU->cpu_seqid]->tcp_sc_conn_cnt) + +/* + * When the system is under memory pressure, stack variable tcps_reclaim is + * true, we shorten the connection timeout abort interval to tcp_early_abort + * seconds. Defined in tcp.c. + */ +extern uint32_t tcp_early_abort; + +/* + * To reach to an eager in Q0 which can be dropped due to an incoming + * new SYN request when Q0 is full, a new doubly linked list is + * introduced. This list allows to select an eager from Q0 in O(1) time. + * This is needed to avoid spending too much time walking through the + * long list of eagers in Q0 when tcp_drop_q0() is called. Each member of + * this new list has to be a member of Q0. + * This list is headed by listener's tcp_t. When the list is empty, + * both the pointers - tcp_eager_next_drop_q0 and tcp_eager_prev_drop_q0, + * of listener's tcp_t point to listener's tcp_t itself. + * + * Given an eager in Q0 and a listener, MAKE_DROPPABLE() puts the eager + * in the list. MAKE_UNDROPPABLE() takes the eager out of the list. + * These macros do not affect the eager's membership to Q0. + */ +#define MAKE_DROPPABLE(listener, eager) \ + if ((eager)->tcp_eager_next_drop_q0 == NULL) { \ + (listener)->tcp_eager_next_drop_q0->tcp_eager_prev_drop_q0\ + = (eager); \ + (eager)->tcp_eager_prev_drop_q0 = (listener); \ + (eager)->tcp_eager_next_drop_q0 = \ + (listener)->tcp_eager_next_drop_q0; \ + (listener)->tcp_eager_next_drop_q0 = (eager); \ + } + +#define MAKE_UNDROPPABLE(eager) \ + if ((eager)->tcp_eager_next_drop_q0 != NULL) { \ + (eager)->tcp_eager_next_drop_q0->tcp_eager_prev_drop_q0 \ + = (eager)->tcp_eager_prev_drop_q0; \ + (eager)->tcp_eager_prev_drop_q0->tcp_eager_next_drop_q0 \ + = (eager)->tcp_eager_next_drop_q0; \ + (eager)->tcp_eager_prev_drop_q0 = NULL; \ + (eager)->tcp_eager_next_drop_q0 = NULL; \ + } + +/* + * The format argument to pass to tcp_display(). + * DISP_PORT_ONLY means that the returned string has only port info. + * DISP_ADDR_AND_PORT means that the returned string also contains the + * remote and local IP address. + */ +#define DISP_PORT_ONLY 1 +#define DISP_ADDR_AND_PORT 2 + +#define IP_ADDR_CACHE_SIZE 2048 +#define IP_ADDR_CACHE_HASH(faddr) \ + (ntohl(faddr) & (IP_ADDR_CACHE_SIZE -1)) + +/* TCP cwnd burst factor. */ +#define TCP_CWND_INFINITE 65535 +#define TCP_CWND_SS 3 +#define TCP_CWND_NORMAL 5 + +/* + * TCP reassembly macros. We hide starting and ending sequence numbers in + * b_next and b_prev of messages on the reassembly queue. The messages are + * chained using b_cont. These macros are used in tcp_reass() so we don't + * have to see the ugly casts and assignments. + */ +#define TCP_REASS_SEQ(mp) ((uint32_t)(uintptr_t)((mp)->b_next)) +#define TCP_REASS_SET_SEQ(mp, u) ((mp)->b_next = \ + (mblk_t *)(uintptr_t)(u)) +#define TCP_REASS_END(mp) ((uint32_t)(uintptr_t)((mp)->b_prev)) +#define TCP_REASS_SET_END(mp, u) ((mp)->b_prev = \ + (mblk_t *)(uintptr_t)(u)) + /* Named Dispatch Parameter Management Structure */ typedef struct tcpparam_s { uint32_t tcp_param_min; @@ -170,16 +480,92 @@ typedef struct tcpparam_s { #define tcps_dev_flow_ctl tcps_params[57].tcp_param_val #define tcps_reass_timeout tcps_params[58].tcp_param_val +#define tcps_wroff_xtra tcps_wroff_xtra_param->tcp_param_val + extern struct qinit tcp_rinitv4, tcp_rinitv6; extern boolean_t do_tcp_fusion; +/* + * Object to represent database of options to search passed to + * {sock,tpi}optcom_req() interface routine to take care of option + * management and associated methods. + */ +extern optdb_obj_t tcp_opt_obj; +extern uint_t tcp_max_optsize; + +extern int tcp_squeue_flag; + +extern uint_t tcp_free_list_max_cnt; + +/* + * Functions in tcp.c. + */ +extern int tcp_accept_common(conn_t *, conn_t *, cred_t *); +extern void tcp_accept_finish(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_acceptor_hash_insert(t_uscalar_t, tcp_t *); +extern tcp_t *tcp_acceptor_hash_lookup(t_uscalar_t, tcp_stack_t *); +extern void tcp_acceptor_hash_remove(tcp_t *); +extern mblk_t *tcp_ack_mp(tcp_t *); +extern int tcp_build_hdrs(tcp_t *); +extern void tcp_cleanup(tcp_t *); +extern int tcp_clean_death(tcp_t *, int); +extern void tcp_clean_death_wrapper(void *, mblk_t *, void *, + ip_recv_attr_t *); +extern void tcp_close_common(conn_t *, int); +extern void tcp_close_detached(tcp_t *); +extern void tcp_close_mpp(mblk_t **); +extern void tcp_closei_local(tcp_t *); +extern sock_lower_handle_t tcp_create(int, int, int, sock_downcalls_t **, + uint_t *, int *, int, cred_t *); +extern conn_t *tcp_create_common(cred_t *, boolean_t, boolean_t, int *); +extern void tcp_disconnect(tcp_t *, mblk_t *); +extern char *tcp_display(tcp_t *, char *, char); +extern int tcp_do_bind(conn_t *, struct sockaddr *, socklen_t, cred_t *, + boolean_t); +extern int tcp_do_connect(conn_t *, const struct sockaddr *, socklen_t, + cred_t *, pid_t); +extern int tcp_do_listen(conn_t *, struct sockaddr *, socklen_t, int, + cred_t *, boolean_t); +extern int tcp_do_unbind(conn_t *); +extern boolean_t tcp_eager_blowoff(tcp_t *, t_scalar_t); +extern void tcp_eager_cleanup(tcp_t *, boolean_t); +extern void tcp_eager_kill(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_eager_unlink(tcp_t *); +extern int tcp_getpeername(sock_lower_handle_t, struct sockaddr *, + socklen_t *, cred_t *); +extern int tcp_getsockname(sock_lower_handle_t, struct sockaddr *, + socklen_t *, cred_t *); +extern void tcp_init_values(tcp_t *); +extern void tcp_ipsec_cleanup(tcp_t *); extern int tcp_maxpsz_set(tcp_t *, boolean_t); -extern void tcp_timers_stop(tcp_t *); -extern void tcp_rcv_enqueue(tcp_t *, mblk_t *, uint_t, cred_t *); -extern void tcp_push_timer(void *); -extern timeout_id_t tcp_timeout(conn_t *, void (*)(void *), clock_t); -extern clock_t tcp_timeout_cancel(conn_t *, timeout_id_t); +extern void tcp_mss_set(tcp_t *, uint32_t); +extern void tcp_reinput(conn_t *, mblk_t *, ip_recv_attr_t *, ip_stack_t *); +extern void tcp_rsrv(queue_t *); +extern uint_t tcp_rwnd_reopen(tcp_t *); +extern int tcp_rwnd_set(tcp_t *, uint32_t); +extern int tcp_set_destination(tcp_t *); +extern void tcp_set_ws_value(tcp_t *); +extern void tcp_stop_lingering(tcp_t *); +extern void tcp_update_pmtu(tcp_t *, boolean_t); +extern mblk_t *tcp_zcopy_backoff(tcp_t *, mblk_t *, boolean_t); +extern boolean_t tcp_zcopy_check(tcp_t *); +extern void tcp_zcopy_notify(tcp_t *); + +/* + * Bind related functions in tcp_bind.c + */ +extern int tcp_bind_check(conn_t *, struct sockaddr *, socklen_t, + cred_t *, boolean_t); +extern void tcp_bind_hash_insert(tf_t *, tcp_t *, int); +extern void tcp_bind_hash_remove(tcp_t *); +extern in_port_t tcp_bindi(tcp_t *, in_port_t, const in6_addr_t *, + int, boolean_t, boolean_t, boolean_t); +extern in_port_t tcp_update_next_port(in_port_t, const tcp_t *, + boolean_t); +/* + * Fusion related functions in tcp_fusion.c. + */ extern void tcp_fuse(tcp_t *, uchar_t *, tcpha_t *); extern void tcp_unfuse(tcp_t *); extern boolean_t tcp_fuse_output(tcp_t *, mblk_t *, uint32_t); @@ -188,28 +574,120 @@ extern boolean_t tcp_fuse_rcv_drain(queue_t *, tcp_t *, mblk_t **); extern size_t tcp_fuse_set_rcv_hiwat(tcp_t *, size_t); extern int tcp_fuse_maxpsz(tcp_t *); extern void tcp_fuse_backenable(tcp_t *); -extern int tcp_rwnd_set(tcp_t *, uint32_t); /* - * Object to represent database of options to search passed to - * {sock,tpi}optcom_req() interface routine to take care of option - * management and associated methods. + * Output related functions in tcp_output.c. */ -extern optdb_obj_t tcp_opt_obj; -extern uint_t tcp_max_optsize; +extern void tcp_close_output(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_output(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_output_urgent(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_rexmit_after_error(tcp_t *); +extern void tcp_sack_rexmit(tcp_t *, uint_t *); +extern void tcp_send_data(tcp_t *, mblk_t *); +extern void tcp_send_synack(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_shutdown_output(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_ss_rexmit(tcp_t *); +extern void tcp_update_xmit_tail(tcp_t *, uint32_t); +extern void tcp_wput(queue_t *, mblk_t *); +extern void tcp_wput_data(tcp_t *, mblk_t *, boolean_t); +extern void tcp_wput_sock(queue_t *, mblk_t *); +extern void tcp_wput_fallback(queue_t *, mblk_t *); +extern void tcp_xmit_ctl(char *, tcp_t *, uint32_t, uint32_t, int); +extern void tcp_xmit_listeners_reset(mblk_t *, ip_recv_attr_t *, + ip_stack_t *i, conn_t *); +extern mblk_t *tcp_xmit_mp(tcp_t *, mblk_t *, int32_t, int32_t *, + mblk_t **, uint32_t, boolean_t, uint32_t *, boolean_t); -extern sock_lower_handle_t tcp_create(int, int, int, sock_downcalls_t **, - uint_t *, int *, int, cred_t *); +/* + * Input related functions in tcp_input.c. + */ +extern void tcp_icmp_input(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_input_data(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_input_listener_unbound(void *, mblk_t *, void *, + ip_recv_attr_t *); +extern boolean_t tcp_paws_check(tcp_t *, tcpha_t *, tcp_opt_t *); +extern uint_t tcp_rcv_drain(tcp_t *); +extern void tcp_rcv_enqueue(tcp_t *, mblk_t *, uint_t, cred_t *); +extern boolean_t tcp_verifyicmp(conn_t *, void *, icmph_t *, icmp6_t *, + ip_recv_attr_t *); + +/* + * Kernel socket related functions in tcp_socket.c. + */ extern int tcp_fallback(sock_lower_handle_t, queue_t *, boolean_t, so_proto_quiesced_cb_t); -extern sock_downcalls_t sock_tcp_downcalls; - +/* + * Timer related functions in tcp_timers.c. + */ +extern void tcp_ack_timer(void *); +extern void tcp_close_linger_timeout(void *); +extern void tcp_keepalive_timer(void *); +extern void tcp_push_timer(void *); +extern void tcp_reass_timer(void *); +extern mblk_t *tcp_timermp_alloc(int); +extern void tcp_timermp_free(tcp_t *); +extern timeout_id_t tcp_timeout(conn_t *, void (*)(void *), clock_t); +extern clock_t tcp_timeout_cancel(conn_t *, timeout_id_t); +extern void tcp_timer(void *arg); +extern void tcp_timers_stop(tcp_t *); -extern int tcp_opt_default(queue_t *, t_scalar_t, t_scalar_t, uchar_t *); +/* + * TCP TPI related functions in tcp_tpi.c. + */ +extern void tcp_addr_req(tcp_t *, mblk_t *); +extern void tcp_capability_req(tcp_t *, mblk_t *); +extern boolean_t tcp_conn_con(tcp_t *, uchar_t *, mblk_t *, + mblk_t **, ip_recv_attr_t *); +extern void tcp_err_ack(tcp_t *, mblk_t *, int, int); +extern void tcp_err_ack_prim(tcp_t *, mblk_t *, int, int, int); +extern void tcp_fallback_eager(tcp_t *, boolean_t); +extern void tcp_fallback_noneager(tcp_t *, mblk_t *, queue_t *, + boolean_t, so_proto_quiesced_cb_t); +extern void tcp_info_req(tcp_t *, mblk_t *); +extern void tcp_send_conn_ind(void *, mblk_t *, void *); +extern void tcp_send_pending(void *, mblk_t *, void *, ip_recv_attr_t *); +extern void tcp_tpi_accept(queue_t *, mblk_t *); +extern void tcp_tpi_bind(tcp_t *, mblk_t *); +extern int tcp_tpi_close(queue_t *, int); +extern int tcp_tpi_close_accept(queue_t *); +extern void tcp_tpi_connect(tcp_t *, mblk_t *); extern int tcp_tpi_opt_get(queue_t *, t_scalar_t, t_scalar_t, uchar_t *); extern int tcp_tpi_opt_set(queue_t *, uint_t, int, int, uint_t, uchar_t *, uint_t *, uchar_t *, void *, cred_t *); +extern void tcp_tpi_unbind(tcp_t *, mblk_t *); +extern void tcp_tli_accept(tcp_t *, mblk_t *); +extern void tcp_use_pure_tpi(tcp_t *); + +/* + * TCP option processing related functions in tcp_opt_data.c + */ +extern int tcp_opt_default(queue_t *, t_scalar_t, t_scalar_t, uchar_t *); +extern int tcp_opt_get(conn_t *, int, int, uchar_t *); +extern int tcp_opt_set(conn_t *, uint_t, int, int, uint_t, uchar_t *, + uint_t *, uchar_t *, void *, cred_t *); + +/* + * TCP time wait processing related functions in tcp_time_wait.c. + */ +extern void tcp_time_wait_append(tcp_t *); +extern void tcp_time_wait_collector(void *); +extern boolean_t tcp_time_wait_remove(tcp_t *, tcp_squeue_priv_t *); +extern void tcp_time_wait_processing(tcp_t *, mblk_t *, uint32_t, + uint32_t, int, tcpha_t *, ip_recv_attr_t *); + +/* + * Misc functions in tcp_misc.c. + */ +extern int tcp_cpu_update(cpu_setup_t, int, void *); +extern void tcp_ioctl_abort_conn(queue_t *, mblk_t *); +extern uint32_t tcp_find_listener_conf(tcp_stack_t *, in_port_t); +extern int tcp_listener_conf_get(queue_t *, mblk_t *, caddr_t, cred_t *); +extern int tcp_listener_conf_add(queue_t *, mblk_t *, char *, caddr_t, + cred_t *); +extern int tcp_listener_conf_del(queue_t *, mblk_t *, char *, caddr_t, + cred_t *); +extern void tcp_listener_conf_cleanup(tcp_stack_t *); #endif /* _KERNEL */ |