]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/netinet/sctp_peeloff.c
This commit was generated by cvs2svn to compensate for changes in r171169,
[FreeBSD/FreeBSD.git] / sys / netinet / sctp_peeloff.c
1 /*-
2  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * a) Redistributions of source code must retain the above copyright notice,
8  *   this list of conditions and the following disclaimer.
9  *
10  * b) Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in
12  *   the documentation and/or other materials provided with the distribution.
13  *
14  * c) Neither the name of Cisco Systems, Inc. nor the names of its
15  *    contributors may be used to endorse or promote products derived
16  *    from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28  * THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31
32 /* $KAME: sctp_peeloff.c,v 1.13 2005/03/06 16:04:18 itojun Exp $         */
33
34 #include <sys/cdefs.h>
35 __FBSDID("$FreeBSD$");
36 #include <netinet/sctp_os.h>
37 #include <netinet/sctp_pcb.h>
38 #include <netinet/sctputil.h>
39 #include <netinet/sctp_var.h>
40 #include <netinet/sctp_var.h>
41 #include <netinet/sctp_sysctl.h>
42 #include <netinet/sctp.h>
43 #include <netinet/sctp_uio.h>
44 #include <netinet/sctp_peeloff.h>
45 #include <netinet/sctputil.h>
46 #include <netinet/sctp_auth.h>
47
48
49 int
50 sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id)
51 {
52         struct sctp_inpcb *inp;
53         struct sctp_tcb *stcb;
54
55         inp = (struct sctp_inpcb *)head->so_pcb;
56         if (inp == NULL) {
57                 return (EFAULT);
58         }
59         stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
60         if (stcb == NULL) {
61                 return (ENOTCONN);
62         }
63         SCTP_TCB_UNLOCK(stcb);
64         /* We are clear to peel this one off */
65         return (0);
66 }
67
68 int
69 sctp_do_peeloff(struct socket *head, struct socket *so, sctp_assoc_t assoc_id)
70 {
71         struct sctp_inpcb *inp, *n_inp;
72         struct sctp_tcb *stcb;
73
74         inp = (struct sctp_inpcb *)head->so_pcb;
75         if (inp == NULL)
76                 return (EFAULT);
77         stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
78         if (stcb == NULL)
79                 return (ENOTCONN);
80
81         n_inp = (struct sctp_inpcb *)so->so_pcb;
82         n_inp->sctp_flags = (SCTP_PCB_FLAGS_UDPTYPE |
83             SCTP_PCB_FLAGS_CONNECTED |
84             SCTP_PCB_FLAGS_IN_TCPPOOL | /* Turn on Blocking IO */
85             (SCTP_PCB_COPY_FLAGS & inp->sctp_flags));
86         n_inp->sctp_socket = so;
87         n_inp->sctp_features = inp->sctp_features;
88         n_inp->sctp_frag_point = inp->sctp_frag_point;
89         n_inp->partial_delivery_point = inp->partial_delivery_point;
90         n_inp->sctp_context = inp->sctp_context;
91         n_inp->inp_starting_point_for_iterator = NULL;
92
93         /*
94          * Now we must move it from one hash table to another and get the
95          * stcb in the right place.
96          */
97         sctp_move_pcb_and_assoc(inp, n_inp, stcb);
98         atomic_add_int(&stcb->asoc.refcnt, 1);
99         SCTP_TCB_UNLOCK(stcb);
100
101         sctp_pull_off_control_to_new_inp(inp, n_inp, stcb, M_WAITOK);
102         atomic_subtract_int(&stcb->asoc.refcnt, 1);
103
104         return (0);
105 }
106
107
108 struct socket *
109 sctp_get_peeloff(struct socket *head, sctp_assoc_t assoc_id, int *error)
110 {
111         struct socket *newso;
112         struct sctp_inpcb *inp, *n_inp;
113         struct sctp_tcb *stcb;
114
115         SCTPDBG(SCTP_DEBUG_PEEL1, "SCTP peel-off called\n");
116         inp = (struct sctp_inpcb *)head->so_pcb;
117         if (inp == NULL) {
118                 *error = EFAULT;
119                 return (NULL);
120         }
121         stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
122         if (stcb == NULL) {
123                 *error = ENOTCONN;
124                 return (NULL);
125         }
126         newso = sonewconn(head, SS_ISCONNECTED
127             );
128         if (newso == NULL) {
129                 SCTPDBG(SCTP_DEBUG_PEEL1, "sctp_peeloff:sonewconn failed\n");
130                 *error = ENOMEM;
131                 SCTP_TCB_UNLOCK(stcb);
132                 return (NULL);
133
134         }
135         n_inp = (struct sctp_inpcb *)newso->so_pcb;
136         SOCK_LOCK(head);
137         SCTP_INP_WLOCK(inp);
138         SCTP_INP_WLOCK(n_inp);
139         n_inp->sctp_flags = (SCTP_PCB_FLAGS_UDPTYPE |
140             SCTP_PCB_FLAGS_CONNECTED |
141             SCTP_PCB_FLAGS_IN_TCPPOOL | /* Turn on Blocking IO */
142             (SCTP_PCB_COPY_FLAGS & inp->sctp_flags));
143         n_inp->sctp_features = inp->sctp_features;
144         n_inp->sctp_frag_point = inp->sctp_frag_point;
145         n_inp->partial_delivery_point = inp->partial_delivery_point;
146         n_inp->sctp_context = inp->sctp_context;
147         n_inp->inp_starting_point_for_iterator = NULL;
148
149         /* copy in the authentication parameters from the original endpoint */
150         if (n_inp->sctp_ep.local_hmacs)
151                 sctp_free_hmaclist(n_inp->sctp_ep.local_hmacs);
152         n_inp->sctp_ep.local_hmacs =
153             sctp_copy_hmaclist(inp->sctp_ep.local_hmacs);
154         if (n_inp->sctp_ep.local_auth_chunks)
155                 sctp_free_chunklist(n_inp->sctp_ep.local_auth_chunks);
156         n_inp->sctp_ep.local_auth_chunks =
157             sctp_copy_chunklist(inp->sctp_ep.local_auth_chunks);
158         (void)sctp_copy_skeylist(&inp->sctp_ep.shared_keys,
159             &n_inp->sctp_ep.shared_keys);
160
161         n_inp->sctp_socket = newso;
162         if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) {
163                 sctp_feature_off(n_inp, SCTP_PCB_FLAGS_AUTOCLOSE);
164                 n_inp->sctp_ep.auto_close_time = 0;
165                 sctp_timer_stop(SCTP_TIMER_TYPE_AUTOCLOSE, n_inp, stcb, NULL,
166                     SCTP_FROM_SCTP_PEELOFF + SCTP_LOC_1);
167         }
168         /* Turn off any non-blocking semantic. */
169         SCTP_CLEAR_SO_NBIO(newso);
170         newso->so_state |= SS_ISCONNECTED;
171         /* We remove it right away */
172
173 #ifdef SCTP_LOCK_LOGGING
174         if (sctp_logging_level & SCTP_LOCK_LOGGING_ENABLE) {
175                 sctp_log_lock(inp, (struct sctp_tcb *)NULL, SCTP_LOG_LOCK_SOCK);
176         }
177 #endif
178         TAILQ_REMOVE(&head->so_comp, newso, so_list);
179         head->so_qlen--;
180         SOCK_UNLOCK(head);
181         /*
182          * Now we must move it from one hash table to another and get the
183          * stcb in the right place.
184          */
185         SCTP_INP_WUNLOCK(n_inp);
186         SCTP_INP_WUNLOCK(inp);
187         sctp_move_pcb_and_assoc(inp, n_inp, stcb);
188         atomic_add_int(&stcb->asoc.refcnt, 1);
189         SCTP_TCB_UNLOCK(stcb);
190         /*
191          * And now the final hack. We move data in the pending side i.e.
192          * head to the new socket buffer. Let the GRUBBING begin :-0
193          */
194         sctp_pull_off_control_to_new_inp(inp, n_inp, stcb, M_WAITOK);
195         atomic_subtract_int(&stcb->asoc.refcnt, 1);
196
197         return (newso);
198 }