]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_pcb.h
stand/powerpc: Only build loader.kboot for powerpc64
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_pcb.h
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
5  * Copyright (c) 2008-2012, by Randall Stewart. All rights reserved.
6  * Copyright (c) 2008-2012, by Michael Tuexen. All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * a) Redistributions of source code must retain the above copyright notice,
12  *    this list of conditions and the following disclaimer.
13  *
14  * b) Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the distribution.
17  *
18  * c) Neither the name of Cisco Systems, Inc. nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
26  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
32  * THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #ifndef _NETINET_SCTP_PCB_H_
39 #define _NETINET_SCTP_PCB_H_
40
41 #include <netinet/sctp_os.h>
42 #include <netinet/sctp.h>
43 #include <netinet/sctp_constants.h>
44 #include <netinet/sctp_sysctl.h>
45
46 LIST_HEAD(sctppcbhead, sctp_inpcb);
47 LIST_HEAD(sctpasochead, sctp_tcb);
48 LIST_HEAD(sctpladdr, sctp_laddr);
49 LIST_HEAD(sctpvtaghead, sctp_tagblock);
50 LIST_HEAD(sctp_vrflist, sctp_vrf);
51 LIST_HEAD(sctp_ifnlist, sctp_ifn);
52 LIST_HEAD(sctp_ifalist, sctp_ifa);
53 TAILQ_HEAD(sctp_readhead, sctp_queued_to_read);
54 TAILQ_HEAD(sctp_streamhead, sctp_stream_queue_pending);
55
56 #include <netinet/sctp_structs.h>
57 #include <netinet/sctp_auth.h>
58
59 #define SCTP_PCBHASH_ALLADDR(port, mask) (port & mask)
60 #define SCTP_PCBHASH_ASOC(tag, mask) (tag & mask)
61
62 struct sctp_vrf {
63         LIST_ENTRY(sctp_vrf) next_vrf;
64         struct sctp_ifalist *vrf_addr_hash;
65         struct sctp_ifnlist ifnlist;
66         uint32_t vrf_id;
67         uint32_t tbl_id_v4;     /* default v4 table id */
68         uint32_t tbl_id_v6;     /* default v6 table id */
69         uint32_t total_ifa_count;
70         u_long vrf_addr_hashmark;
71         uint32_t refcount;
72 };
73
74 struct sctp_ifn {
75         struct sctp_ifalist ifalist;
76         struct sctp_vrf *vrf;
77                  LIST_ENTRY(sctp_ifn) next_ifn;
78                  LIST_ENTRY(sctp_ifn) next_bucket;
79         void *ifn_p;            /* never access without appropriate lock */
80         uint32_t ifn_mtu;
81         uint32_t ifn_type;
82         uint32_t ifn_index;     /* shorthand way to look at ifn for reference */
83         uint32_t refcount;      /* number of reference held should be >=
84                                  * ifa_count */
85         uint32_t ifa_count;     /* IFA's we hold (in our list - ifalist) */
86         uint32_t num_v6;        /* number of v6 addresses */
87         uint32_t num_v4;        /* number of v4 addresses */
88         uint32_t registered_af; /* registered address family for i/f events */
89         char ifn_name[SCTP_IFNAMSIZ];
90 };
91
92 /* SCTP local IFA flags */
93 #define SCTP_ADDR_VALID         0x00000001      /* its up and active */
94 #define SCTP_BEING_DELETED      0x00000002      /* being deleted, when
95                                                  * refcount = 0. Note that it
96                                                  * is pulled from the ifn list
97                                                  * and ifa_p is nulled right
98                                                  * away but it cannot be freed
99                                                  * until the last *net
100                                                  * pointing to it is deleted. */
101 #define SCTP_ADDR_DEFER_USE     0x00000004      /* Hold off using this one */
102 #define SCTP_ADDR_IFA_UNUSEABLE 0x00000008
103
104 struct sctp_ifa {
105         LIST_ENTRY(sctp_ifa) next_ifa;
106         LIST_ENTRY(sctp_ifa) next_bucket;
107         struct sctp_ifn *ifn_p; /* back pointer to parent ifn */
108         void *ifa;              /* pointer to ifa, needed for flag update for
109                                  * that we MUST lock appropriate locks. This
110                                  * is for V6. */
111         union sctp_sockstore address;
112         uint32_t refcount;      /* number of folks referring to this */
113         uint32_t flags;
114         uint32_t localifa_flags;
115         uint32_t vrf_id;        /* vrf_id of this addr (for deleting) */
116         uint8_t src_is_loop;
117         uint8_t src_is_priv;
118         uint8_t src_is_glob;
119         uint8_t resv;
120 };
121
122 struct sctp_laddr {
123         LIST_ENTRY(sctp_laddr) sctp_nxt_addr;   /* next in list */
124         struct sctp_ifa *ifa;
125         uint32_t action;        /* Used during asconf and adding if no-zero
126                                  * src-addr selection will not consider this
127                                  * address. */
128         struct timeval start_time;      /* time when this address was created */
129 };
130
131 struct sctp_block_entry {
132         int error;
133 };
134
135 struct sctp_timewait {
136         uint32_t tv_sec_at_expire;      /* the seconds from boot to expire */
137         uint32_t v_tag;         /* the vtag that can not be reused */
138         uint16_t lport;         /* the local port used in vtag */
139         uint16_t rport;         /* the remote port used in vtag */
140 };
141
142 struct sctp_tagblock {
143         LIST_ENTRY(sctp_tagblock) sctp_nxt_tagblock;
144         struct sctp_timewait vtag_block[SCTP_NUMBER_IN_VTAG_BLOCK];
145 };
146
147
148 struct sctp_epinfo {
149 #ifdef INET
150         struct socket *udp4_tun_socket;
151 #endif
152 #ifdef INET6
153         struct socket *udp6_tun_socket;
154 #endif
155         struct sctpasochead *sctp_asochash;
156         u_long hashasocmark;
157
158         struct sctppcbhead *sctp_ephash;
159         u_long hashmark;
160
161         /*-
162          * The TCP model represents a substantial overhead in that we get an
163          * additional hash table to keep explicit connections in. The
164          * listening TCP endpoint will exist in the usual ephash above and
165          * accept only INIT's. It will be incapable of sending off an INIT.
166          * When a dg arrives we must look in the normal ephash. If we find a
167          * TCP endpoint that will tell us to go to the specific endpoint
168          * hash and re-hash to find the right assoc/socket. If we find a UDP
169          * model socket we then must complete the lookup. If this fails,
170          * i.e. no association can be found then we must continue to see if
171          * a sctp_peeloff()'d socket is in the tcpephash (a spun off socket
172          * acts like a TCP model connected socket).
173          */
174         struct sctppcbhead *sctp_tcpephash;
175         u_long hashtcpmark;
176         uint32_t hashtblsize;
177
178         struct sctp_vrflist *sctp_vrfhash;
179         u_long hashvrfmark;
180
181         struct sctp_ifnlist *vrf_ifn_hash;
182         u_long vrf_ifn_hashmark;
183
184         struct sctppcbhead listhead;
185         struct sctpladdr addr_wq;
186
187         /* ep zone info */
188         sctp_zone_t ipi_zone_ep;
189         sctp_zone_t ipi_zone_asoc;
190         sctp_zone_t ipi_zone_laddr;
191         sctp_zone_t ipi_zone_net;
192         sctp_zone_t ipi_zone_chunk;
193         sctp_zone_t ipi_zone_readq;
194         sctp_zone_t ipi_zone_strmoq;
195         sctp_zone_t ipi_zone_asconf;
196         sctp_zone_t ipi_zone_asconf_ack;
197
198         struct rwlock ipi_ep_mtx;
199         struct mtx ipi_iterator_wq_mtx;
200         struct rwlock ipi_addr_mtx;
201         struct mtx ipi_pktlog_mtx;
202         struct mtx wq_addr_mtx;
203         uint32_t ipi_count_ep;
204
205         /* assoc/tcb zone info */
206         uint32_t ipi_count_asoc;
207
208         /* local addrlist zone info */
209         uint32_t ipi_count_laddr;
210
211         /* remote addrlist zone info */
212         uint32_t ipi_count_raddr;
213
214         /* chunk structure list for output */
215         uint32_t ipi_count_chunk;
216
217         /* socket queue zone info */
218         uint32_t ipi_count_readq;
219
220         /* socket queue zone info */
221         uint32_t ipi_count_strmoq;
222
223         /* Number of vrfs */
224         uint32_t ipi_count_vrfs;
225
226         /* Number of ifns */
227         uint32_t ipi_count_ifns;
228
229         /* Number of ifas */
230         uint32_t ipi_count_ifas;
231
232         /* system wide number of free chunks hanging around */
233         uint32_t ipi_free_chunks;
234         uint32_t ipi_free_strmoq;
235
236         struct sctpvtaghead vtag_timewait[SCTP_STACK_VTAG_HASH_SIZE];
237
238         /* address work queue handling */
239         struct sctp_timer addr_wq_timer;
240
241 };
242
243
244 struct sctp_base_info {
245         /*
246          * All static structures that anchor the system must be here.
247          */
248         struct sctp_epinfo sctppcbinfo;
249 #if defined(__FreeBSD__) && defined(SMP) && defined(SCTP_USE_PERCPU_STAT)
250         struct sctpstat *sctpstat;
251 #else
252         struct sctpstat sctpstat;
253 #endif
254         struct sctp_sysctl sctpsysctl;
255         uint8_t first_time;
256         char sctp_pcb_initialized;
257 #if defined(SCTP_PACKET_LOGGING)
258         int packet_log_writers;
259         int packet_log_end;
260         uint8_t packet_log_buffer[SCTP_PACKET_LOG_SIZE];
261 #endif
262 };
263
264 /*-
265  * Here we have all the relevant information for each SCTP entity created. We
266  * will need to modify this as approprate. We also need to figure out how to
267  * access /dev/random.
268  */
269 struct sctp_pcb {
270         unsigned int time_of_secret_change;     /* number of seconds from
271                                                  * timeval.tv_sec */
272         uint32_t secret_key[SCTP_HOW_MANY_SECRETS][SCTP_NUMBER_OF_SECRETS];
273         unsigned int size_of_a_cookie;
274
275         unsigned int sctp_timeoutticks[SCTP_NUM_TMRS];
276         unsigned int sctp_minrto;
277         unsigned int sctp_maxrto;
278         unsigned int initial_rto;
279         int initial_init_rto_max;
280
281         unsigned int sctp_sack_freq;
282         uint32_t sctp_sws_sender;
283         uint32_t sctp_sws_receiver;
284
285         uint32_t sctp_default_cc_module;
286         uint32_t sctp_default_ss_module;
287         /* authentication related fields */
288         struct sctp_keyhead shared_keys;
289         sctp_auth_chklist_t *local_auth_chunks;
290         sctp_hmaclist_t *local_hmacs;
291         uint16_t default_keyid;
292         uint32_t default_mtu;
293
294         /* various thresholds */
295         /* Max times I will init at a guy */
296         uint16_t max_init_times;
297
298         /* Max times I will send before we consider someone dead */
299         uint16_t max_send_times;
300
301         uint16_t def_net_failure;
302
303         uint16_t def_net_pf_threshold;
304
305         /* number of streams to pre-open on a association */
306         uint16_t pre_open_stream_count;
307         uint16_t max_open_streams_intome;
308
309         /* random number generator */
310         uint32_t random_counter;
311         uint8_t random_numbers[SCTP_SIGNATURE_ALOC_SIZE];
312         uint8_t random_store[SCTP_SIGNATURE_ALOC_SIZE];
313
314         /*
315          * This timer is kept running per endpoint.  When it fires it will
316          * change the secret key.  The default is once a hour
317          */
318         struct sctp_timer signature_change;
319
320         uint32_t def_cookie_life;
321         /* defaults to 0 */
322         int auto_close_time;
323         uint32_t initial_sequence_debug;
324         uint32_t adaptation_layer_indicator;
325         uint8_t adaptation_layer_indicator_provided;
326         uint32_t store_at;
327         uint32_t max_burst;
328         uint32_t fr_max_burst;
329 #ifdef INET6
330         uint32_t default_flowlabel;
331 #endif
332         uint8_t default_dscp;
333         char current_secret_number;
334         char last_secret_number;
335         uint16_t port;          /* remote UDP encapsulation port */
336 };
337
338 #ifndef SCTP_ALIGNMENT
339 #define SCTP_ALIGNMENT 32
340 #endif
341
342 #ifndef SCTP_ALIGNM1
343 #define SCTP_ALIGNM1 (SCTP_ALIGNMENT-1)
344 #endif
345
346 #define sctp_lport ip_inp.inp.inp_lport
347
348 struct sctp_pcbtsn_rlog {
349         uint32_t vtag;
350         uint16_t strm;
351         uint16_t seq;
352         uint16_t sz;
353         uint16_t flgs;
354 };
355 #define SCTP_READ_LOG_SIZE 135  /* we choose the number to make a pcb a page */
356
357
358 struct sctp_inpcb {
359         /*-
360          * put an inpcb in front of it all, kind of a waste but we need to
361          * for compatibility with all the other stuff.
362          */
363         union {
364                 struct inpcb inp;
365                 char align[(sizeof(struct in6pcb) + SCTP_ALIGNM1) &
366                     ~SCTP_ALIGNM1];
367         }     ip_inp;
368
369
370         /* Socket buffer lock protects read_queue and of course sb_cc */
371         struct sctp_readhead read_queue;
372
373                       LIST_ENTRY(sctp_inpcb) sctp_list; /* lists all endpoints */
374         /* hash of all endpoints for model */
375                       LIST_ENTRY(sctp_inpcb) sctp_hash;
376         /* count of local addresses bound, 0 if bound all */
377         int laddr_count;
378
379         /* list of addrs in use by the EP, NULL if bound-all */
380         struct sctpladdr sctp_addr_list;
381         /*
382          * used for source address selection rotation when we are subset
383          * bound
384          */
385         struct sctp_laddr *next_addr_touse;
386
387         /* back pointer to our socket */
388         struct socket *sctp_socket;
389         uint64_t sctp_features; /* Feature flags */
390         uint32_t sctp_flags;    /* INP state flag set */
391         uint32_t sctp_mobility_features;        /* Mobility  Feature flags */
392         struct sctp_pcb sctp_ep;        /* SCTP ep data */
393         /* head of the hash of all associations */
394         struct sctpasochead *sctp_tcbhash;
395         u_long sctp_hashmark;
396         /* head of the list of all associations */
397         struct sctpasochead sctp_asoc_list;
398 #ifdef SCTP_TRACK_FREED_ASOCS
399         struct sctpasochead sctp_asoc_free_list;
400 #endif
401         struct sctp_iterator *inp_starting_point_for_iterator;
402         uint32_t sctp_frag_point;
403         uint32_t partial_delivery_point;
404         uint32_t sctp_context;
405         uint32_t max_cwnd;
406         uint8_t local_strreset_support;
407         uint32_t sctp_cmt_on_off;
408         uint8_t ecn_supported;
409         uint8_t prsctp_supported;
410         uint8_t auth_supported;
411         uint8_t idata_supported;
412         uint8_t asconf_supported;
413         uint8_t reconfig_supported;
414         uint8_t nrsack_supported;
415         uint8_t pktdrop_supported;
416         struct sctp_nonpad_sndrcvinfo def_send;
417         /*-
418          * These three are here for the sosend_dgram
419          * (pkt, pkt_last and control).
420          * routine. However, I don't think anyone in
421          * the current FreeBSD kernel calls this. So
422          * they are candidates with sctp_sendm for
423          * de-supporting.
424          */
425         struct mbuf *pkt, *pkt_last;
426         struct mbuf *control;
427         struct mtx inp_mtx;
428         struct mtx inp_create_mtx;
429         struct mtx inp_rdata_mtx;
430         int32_t refcount;
431         uint32_t def_vrf_id;
432         uint16_t fibnum;
433         uint32_t total_sends;
434         uint32_t total_recvs;
435         uint32_t last_abort_code;
436         uint32_t total_nospaces;
437         struct sctpasochead *sctp_asocidhash;
438         u_long hashasocidmark;
439         uint32_t sctp_associd_counter;
440
441 #ifdef SCTP_ASOCLOG_OF_TSNS
442         struct sctp_pcbtsn_rlog readlog[SCTP_READ_LOG_SIZE];
443         uint32_t readlog_index;
444 #endif
445 };
446
447 struct sctp_tcb {
448         struct socket *sctp_socket;     /* back pointer to socket */
449         struct sctp_inpcb *sctp_ep;     /* back pointer to ep */
450                    LIST_ENTRY(sctp_tcb) sctp_tcbhash;   /* next link in hash
451                                                          * table */
452                    LIST_ENTRY(sctp_tcb) sctp_tcblist;   /* list of all of the
453                                                          * TCB's */
454                    LIST_ENTRY(sctp_tcb) sctp_tcbasocidhash;     /* next link in asocid
455                                                                  * hash table */
456                    LIST_ENTRY(sctp_tcb) sctp_asocs;     /* vtag hash list */
457         struct sctp_block_entry *block_entry;   /* pointer locked by  socket
458                                                  * send buffer */
459         struct sctp_association asoc;
460         /*-
461          * freed_by_sorcv_sincelast is protected by the sockbuf_lock NOT the
462          * tcb_lock. Its special in this way to help avoid extra mutex calls
463          * in the reading of data.
464          */
465         uint32_t freed_by_sorcv_sincelast;
466         uint32_t total_sends;
467         uint32_t total_recvs;
468         int freed_from_where;
469         uint16_t rport;         /* remote port in network format */
470         uint16_t resv;
471         struct mtx tcb_mtx;
472         struct mtx tcb_send_mtx;
473 };
474
475
476
477 #include <netinet/sctp_lock_bsd.h>
478
479
480 /* TODO where to put non-_KERNEL things for __Userspace__? */
481 #if defined(_KERNEL) || defined(__Userspace__)
482
483 /* Attention Julian, this is the extern that
484  * goes with the base info. sctp_pcb.c has
485  * the real definition.
486  */
487 VNET_DECLARE(struct sctp_base_info, system_base_info);
488
489 #ifdef INET6
490 int SCTP6_ARE_ADDR_EQUAL(struct sockaddr_in6 *a, struct sockaddr_in6 *b);
491 #endif
492
493 void sctp_fill_pcbinfo(struct sctp_pcbinfo *);
494
495 struct sctp_ifn *sctp_find_ifn(void *ifn, uint32_t ifn_index);
496
497 struct sctp_vrf *sctp_allocate_vrf(int vrfid);
498 struct sctp_vrf *sctp_find_vrf(uint32_t vrfid);
499 void sctp_free_vrf(struct sctp_vrf *vrf);
500
501 /*-
502  * Change address state, can be used if
503  * O/S supports telling transports about
504  * changes to IFA/IFN's (link layer triggers).
505  * If a ifn goes down, we will do src-addr-selection
506  * and NOT use that, as a source address. This does
507  * not stop the routing system from routing out
508  * that interface, but we won't put it as a source.
509  */
510 void sctp_mark_ifa_addr_down(uint32_t vrf_id, struct sockaddr *addr, const char *if_name, uint32_t ifn_index);
511 void sctp_mark_ifa_addr_up(uint32_t vrf_id, struct sockaddr *addr, const char *if_name, uint32_t ifn_index);
512
513 struct sctp_ifa *
514 sctp_add_addr_to_vrf(uint32_t vrfid,
515     void *ifn, uint32_t ifn_index, uint32_t ifn_type,
516     const char *if_name,
517     void *ifa, struct sockaddr *addr, uint32_t ifa_flags,
518     int dynamic_add);
519
520 void sctp_update_ifn_mtu(uint32_t ifn_index, uint32_t mtu);
521
522 void sctp_free_ifn(struct sctp_ifn *sctp_ifnp);
523 void sctp_free_ifa(struct sctp_ifa *sctp_ifap);
524
525
526 void
527 sctp_del_addr_from_vrf(uint32_t vrfid, struct sockaddr *addr,
528     uint32_t ifn_index, const char *if_name);
529
530
531
532 struct sctp_nets *sctp_findnet(struct sctp_tcb *, struct sockaddr *);
533
534 struct sctp_inpcb *sctp_pcb_findep(struct sockaddr *, int, int, uint32_t);
535
536 int
537 sctp_inpcb_bind(struct socket *, struct sockaddr *,
538     struct sctp_ifa *, struct thread *);
539
540 struct sctp_tcb *
541 sctp_findassociation_addr(struct mbuf *, int,
542     struct sockaddr *, struct sockaddr *,
543     struct sctphdr *, struct sctp_chunkhdr *, struct sctp_inpcb **,
544     struct sctp_nets **, uint32_t vrf_id);
545
546 struct sctp_tcb *
547 sctp_findassociation_addr_sa(struct sockaddr *,
548     struct sockaddr *, struct sctp_inpcb **, struct sctp_nets **, int, uint32_t);
549
550 void
551 sctp_move_pcb_and_assoc(struct sctp_inpcb *, struct sctp_inpcb *,
552     struct sctp_tcb *);
553
554 /*-
555  * For this call ep_addr, the to is the destination endpoint address of the
556  * peer (relative to outbound). The from field is only used if the TCP model
557  * is enabled and helps distingush amongst the subset bound (non-boundall).
558  * The TCP model MAY change the actual ep field, this is why it is passed.
559  */
560 struct sctp_tcb *
561 sctp_findassociation_ep_addr(struct sctp_inpcb **,
562     struct sockaddr *, struct sctp_nets **, struct sockaddr *,
563     struct sctp_tcb *);
564
565 struct sctp_tcb *sctp_findasoc_ep_asocid_locked(struct sctp_inpcb *inp, sctp_assoc_t asoc_id, int want_lock);
566
567 struct sctp_tcb *
568 sctp_findassociation_ep_asocid(struct sctp_inpcb *,
569     sctp_assoc_t, int);
570
571 struct sctp_tcb *
572 sctp_findassociation_ep_asconf(struct mbuf *, int, struct sockaddr *,
573     struct sctphdr *, struct sctp_inpcb **, struct sctp_nets **, uint32_t vrf_id);
574
575 int sctp_inpcb_alloc(struct socket *so, uint32_t vrf_id);
576
577 int sctp_is_address_on_local_host(struct sockaddr *addr, uint32_t vrf_id);
578
579 void sctp_inpcb_free(struct sctp_inpcb *, int, int);
580
581 struct sctp_tcb *
582 sctp_aloc_assoc(struct sctp_inpcb *, struct sockaddr *,
583     int *, uint32_t, uint32_t, uint16_t, uint16_t, struct thread *);
584
585 int sctp_free_assoc(struct sctp_inpcb *, struct sctp_tcb *, int, int);
586
587
588 void sctp_delete_from_timewait(uint32_t, uint16_t, uint16_t);
589
590 int sctp_is_in_timewait(uint32_t tag, uint16_t lport, uint16_t rport);
591
592 void
593      sctp_add_vtag_to_timewait(uint32_t tag, uint32_t time, uint16_t lport, uint16_t rport);
594
595 void sctp_add_local_addr_ep(struct sctp_inpcb *, struct sctp_ifa *, uint32_t);
596
597 void sctp_del_local_addr_ep(struct sctp_inpcb *, struct sctp_ifa *);
598
599 int sctp_add_remote_addr(struct sctp_tcb *, struct sockaddr *, struct sctp_nets **, uint16_t, int, int);
600
601 void sctp_remove_net(struct sctp_tcb *, struct sctp_nets *);
602
603 int sctp_del_remote_addr(struct sctp_tcb *, struct sockaddr *);
604
605 void sctp_pcb_init(void);
606
607 void sctp_pcb_finish(void);
608
609 void sctp_add_local_addr_restricted(struct sctp_tcb *, struct sctp_ifa *);
610 void sctp_del_local_addr_restricted(struct sctp_tcb *, struct sctp_ifa *);
611
612 int
613 sctp_load_addresses_from_init(struct sctp_tcb *, struct mbuf *, int, int,
614     struct sockaddr *, struct sockaddr *, struct sockaddr *, uint16_t);
615
616 int
617 sctp_set_primary_addr(struct sctp_tcb *, struct sockaddr *,
618     struct sctp_nets *);
619
620 int sctp_is_vtag_good(uint32_t, uint16_t lport, uint16_t rport, struct timeval *);
621
622 /* void sctp_drain(void); */
623
624 int sctp_destination_is_reachable(struct sctp_tcb *, struct sockaddr *);
625
626 int sctp_swap_inpcb_for_listen(struct sctp_inpcb *inp);
627
628 void sctp_clean_up_stream(struct sctp_tcb *stcb, struct sctp_readhead *rh);
629
630 /*-
631  * Null in last arg inpcb indicate run on ALL ep's. Specific inp in last arg
632  * indicates run on ONLY assoc's of the specified endpoint.
633  */
634 int
635 sctp_initiate_iterator(inp_func inpf,
636     asoc_func af,
637     inp_func inpe,
638     uint32_t, uint32_t,
639     uint32_t, void *,
640     uint32_t,
641     end_func ef,
642     struct sctp_inpcb *,
643     uint8_t co_off);
644 #if defined(__FreeBSD__) && defined(SCTP_MCORE_INPUT) && defined(SMP)
645 void
646      sctp_queue_to_mcore(struct mbuf *m, int off, int cpu_to_use);
647
648 #endif
649
650 #endif                          /* _KERNEL */
651 #endif                          /* !__sctp_pcb_h__ */