sctp_indata.h revision 267654
1218885Sdim/*-
2218885Sdim * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3218885Sdim * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
4218885Sdim * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
5218885Sdim *
6218885Sdim * Redistribution and use in source and binary forms, with or without
7218885Sdim * modification, are permitted provided that the following conditions are met:
8218885Sdim *
9218885Sdim * a) Redistributions of source code must retain the above copyright notice,
10218885Sdim *    this list of conditions and the following disclaimer.
11218885Sdim *
12218885Sdim * b) Redistributions in binary form must reproduce the above copyright
13218885Sdim *    notice, this list of conditions and the following disclaimer in
14218885Sdim *    the documentation and/or other materials provided with the distribution.
15218885Sdim *
16234353Sdim * c) Neither the name of Cisco Systems, Inc. nor the names of its
17218885Sdim *    contributors may be used to endorse or promote products derived
18218885Sdim *    from this software without specific prior written permission.
19218885Sdim *
20218885Sdim * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21218885Sdim * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22218885Sdim * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23218885Sdim * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24218885Sdim * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25263508Sdim * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26263508Sdim * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27263508Sdim * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28263508Sdim * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29263508Sdim * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30263508Sdim * THE POSSIBILITY OF SUCH DAMAGE.
31263508Sdim */
32249423Sdim
33263508Sdim#include <sys/cdefs.h>
34263508Sdim__FBSDID("$FreeBSD: releng/9.3/sys/netinet/sctp_indata.h 252976 2013-07-07 17:04:23Z tuexen $");
35263508Sdim
36263508Sdim#ifndef _NETINET_SCTP_INDATA_H_
37263508Sdim#define _NETINET_SCTP_INDATA_H_
38263508Sdim
39249423Sdim#if defined(_KERNEL) || defined(__Userspace__)
40263508Sdim
41263508Sdimstruct sctp_queued_to_read *
42263508Sdimsctp_build_readq_entry(struct sctp_tcb *stcb,
43263508Sdim    struct sctp_nets *net,
44249423Sdim    uint32_t tsn, uint32_t ppid,
45218885Sdim    uint32_t context, uint16_t stream_no,
46218885Sdim    uint16_t stream_seq, uint8_t flags,
47263508Sdim    struct mbuf *dm);
48263508Sdim
49263508Sdim
50263508Sdim#define sctp_build_readq_entry_mac(_ctl, in_it, context, net, tsn, ppid, stream_no, stream_seq, flags, dm) do { \
51263508Sdim	if (_ctl) { \
52263508Sdim		atomic_add_int(&((net)->ref_count), 1); \
53263508Sdim		(_ctl)->sinfo_stream = stream_no; \
54263508Sdim		(_ctl)->sinfo_ssn = stream_seq; \
55263508Sdim		(_ctl)->sinfo_flags = (flags << 8); \
56263508Sdim		(_ctl)->sinfo_ppid = ppid; \
57263508Sdim		(_ctl)->sinfo_context = context; \
58263508Sdim		(_ctl)->sinfo_timetolive = 0; \
59218885Sdim		(_ctl)->sinfo_tsn = tsn; \
60218885Sdim		(_ctl)->sinfo_cumtsn = tsn; \
61218885Sdim		(_ctl)->sinfo_assoc_id = sctp_get_associd((in_it)); \
62218885Sdim		(_ctl)->length = 0; \
63218885Sdim		(_ctl)->held_length = 0; \
64218885Sdim		(_ctl)->whoFrom = net; \
65218885Sdim		(_ctl)->data = dm; \
66218885Sdim		(_ctl)->tail_mbuf = NULL; \
67218885Sdim	        (_ctl)->aux_data = NULL; \
68		(_ctl)->stcb = (in_it); \
69		(_ctl)->port_from = (in_it)->rport; \
70		(_ctl)->spec_flags = 0; \
71		(_ctl)->do_not_ref_stcb = 0; \
72		(_ctl)->end_added = 0; \
73		(_ctl)->pdapi_aborted = 0; \
74		(_ctl)->some_taken = 0; \
75	} \
76} while (0)
77
78
79
80struct mbuf *
81sctp_build_ctl_nchunk(struct sctp_inpcb *inp,
82    struct sctp_sndrcvinfo *sinfo);
83
84void sctp_set_rwnd(struct sctp_tcb *, struct sctp_association *);
85
86uint32_t
87sctp_calc_rwnd(struct sctp_tcb *stcb, struct sctp_association *asoc);
88
89void
90sctp_express_handle_sack(struct sctp_tcb *stcb, uint32_t cumack,
91    uint32_t rwnd, int *abort_now, int ecne_seen);
92
93void
94sctp_handle_sack(struct mbuf *m, int offset_seg, int offset_dup,
95    struct sctp_tcb *stcb,
96    uint16_t num_seg, uint16_t num_nr_seg, uint16_t num_dup,
97    int *abort_now, uint8_t flags,
98    uint32_t cum_ack, uint32_t rwnd, int ecne_seen);
99
100/* draft-ietf-tsvwg-usctp */
101void
102sctp_handle_forward_tsn(struct sctp_tcb *,
103    struct sctp_forward_tsn_chunk *, int *, struct mbuf *, int);
104
105struct sctp_tmit_chunk *
106                sctp_try_advance_peer_ack_point(struct sctp_tcb *, struct sctp_association *);
107
108void sctp_service_queues(struct sctp_tcb *, struct sctp_association *);
109
110void
111     sctp_update_acked(struct sctp_tcb *, struct sctp_shutdown_chunk *, int *);
112
113int
114sctp_process_data(struct mbuf **, int, int *, int,
115    struct sockaddr *src, struct sockaddr *dst,
116    struct sctphdr *,
117    struct sctp_inpcb *, struct sctp_tcb *,
118    struct sctp_nets *, uint32_t *,
119    uint8_t, uint32_t,
120    uint32_t, uint16_t);
121
122void sctp_slide_mapping_arrays(struct sctp_tcb *stcb);
123
124void sctp_sack_check(struct sctp_tcb *, int);
125
126#endif
127#endif
128