sctp_peeloff.c revision 169382
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: head/sys/netinet/sctp_peeloff.c 169382 2007-05-08 17:01:12Z rrs $");
36#include <netinet/sctp_os.h>
37#include <netinet/sctp_pcb.h>
38#include <netinet/sctp.h>
39#include <netinet/sctp_uio.h>
40#include <netinet/sctp_var.h>
41#include <netinet/sctp_peeloff.h>
42#include <netinet/sctputil.h>
43#include <netinet/sctp_auth.h>
44
45
46#ifdef SCTP_DEBUG
47extern uint32_t sctp_debug_on;
48
49#endif				/* SCTP_DEBUG */
50
51
52int
53sctp_can_peel_off(struct socket *head, sctp_assoc_t assoc_id)
54{
55	struct sctp_inpcb *inp;
56	struct sctp_tcb *stcb;
57
58	inp = (struct sctp_inpcb *)head->so_pcb;
59	if (inp == NULL) {
60		return (EFAULT);
61	}
62	stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
63	if (stcb == NULL) {
64		return (ENOTCONN);
65	}
66	SCTP_TCB_UNLOCK(stcb);
67	/* We are clear to peel this one off */
68	return (0);
69}
70
71int
72sctp_do_peeloff(struct socket *head, struct socket *so, sctp_assoc_t assoc_id)
73{
74	struct sctp_inpcb *inp, *n_inp;
75	struct sctp_tcb *stcb;
76
77	inp = (struct sctp_inpcb *)head->so_pcb;
78	if (inp == NULL)
79		return (EFAULT);
80	stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
81	if (stcb == NULL)
82		return (ENOTCONN);
83
84	n_inp = (struct sctp_inpcb *)so->so_pcb;
85	n_inp->sctp_flags = (SCTP_PCB_FLAGS_UDPTYPE |
86	    SCTP_PCB_FLAGS_CONNECTED |
87	    SCTP_PCB_FLAGS_IN_TCPPOOL |	/* Turn on Blocking IO */
88	    (SCTP_PCB_COPY_FLAGS & inp->sctp_flags));
89	n_inp->sctp_socket = so;
90	n_inp->sctp_features = inp->sctp_features;
91	n_inp->sctp_frag_point = inp->sctp_frag_point;
92	n_inp->partial_delivery_point = inp->partial_delivery_point;
93	n_inp->sctp_context = inp->sctp_context;
94	n_inp->inp_starting_point_for_iterator = NULL;
95
96	/*
97	 * Now we must move it from one hash table to another and get the
98	 * stcb in the right place.
99	 */
100	sctp_move_pcb_and_assoc(inp, n_inp, stcb);
101
102	sctp_pull_off_control_to_new_inp(inp, n_inp, stcb, M_WAITOK);
103
104	SCTP_TCB_UNLOCK(stcb);
105	return (0);
106}
107
108
109struct socket *
110sctp_get_peeloff(struct socket *head, sctp_assoc_t assoc_id, int *error)
111{
112	struct socket *newso;
113	struct sctp_inpcb *inp, *n_inp;
114	struct sctp_tcb *stcb;
115
116#ifdef SCTP_DEBUG
117	if (sctp_debug_on & SCTP_DEBUG_PEEL1) {
118		printf("SCTP peel-off called\n");
119	}
120#endif				/* SCTP_DEBUG */
121
122	inp = (struct sctp_inpcb *)head->so_pcb;
123	if (inp == NULL) {
124		*error = EFAULT;
125		return (NULL);
126	}
127	stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1);
128	if (stcb == NULL) {
129		*error = ENOTCONN;
130		return (NULL);
131	}
132	newso = sonewconn(head, SS_ISCONNECTED
133	    );
134	if (newso == NULL) {
135#ifdef SCTP_DEBUG
136		if (sctp_debug_on & SCTP_DEBUG_PEEL1) {
137			printf("sctp_peeloff:sonewconn failed err\n");
138		}
139#endif				/* SCTP_DEBUG */
140		*error = ENOMEM;
141		SCTP_TCB_UNLOCK(stcb);
142		return (NULL);
143	}
144	n_inp = (struct sctp_inpcb *)newso->so_pcb;
145	SOCK_LOCK(head);
146	SCTP_INP_WLOCK(inp);
147	SCTP_INP_WLOCK(n_inp);
148	n_inp->sctp_flags = (SCTP_PCB_FLAGS_UDPTYPE |
149	    SCTP_PCB_FLAGS_CONNECTED |
150	    SCTP_PCB_FLAGS_IN_TCPPOOL |	/* Turn on Blocking IO */
151	    (SCTP_PCB_COPY_FLAGS & inp->sctp_flags));
152	n_inp->sctp_features = inp->sctp_features;
153	n_inp->sctp_frag_point = inp->sctp_frag_point;
154	n_inp->partial_delivery_point = inp->partial_delivery_point;
155	n_inp->sctp_context = inp->sctp_context;
156	n_inp->inp_starting_point_for_iterator = NULL;
157
158	/* copy in the authentication parameters from the original endpoint */
159	if (n_inp->sctp_ep.local_hmacs)
160		sctp_free_hmaclist(n_inp->sctp_ep.local_hmacs);
161	n_inp->sctp_ep.local_hmacs =
162	    sctp_copy_hmaclist(inp->sctp_ep.local_hmacs);
163	if (n_inp->sctp_ep.local_auth_chunks)
164		sctp_free_chunklist(n_inp->sctp_ep.local_auth_chunks);
165	n_inp->sctp_ep.local_auth_chunks =
166	    sctp_copy_chunklist(inp->sctp_ep.local_auth_chunks);
167	(void)sctp_copy_skeylist(&inp->sctp_ep.shared_keys,
168	    &n_inp->sctp_ep.shared_keys);
169
170	n_inp->sctp_socket = newso;
171	if (sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) {
172		sctp_feature_off(n_inp, SCTP_PCB_FLAGS_AUTOCLOSE);
173		n_inp->sctp_ep.auto_close_time = 0;
174		sctp_timer_stop(SCTP_TIMER_TYPE_AUTOCLOSE, n_inp, stcb, NULL,
175		    SCTP_FROM_SCTP_PEELOFF + SCTP_LOC_1);
176	}
177	/* Turn off any non-blocking semantic. */
178	SCTP_CLEAR_SO_NBIO(newso);
179	newso->so_state |= SS_ISCONNECTED;
180	/* We remove it right away */
181
182#ifdef SCTP_LOCK_LOGGING
183	sctp_log_lock(inp, (struct sctp_tcb *)NULL, SCTP_LOG_LOCK_SOCK);
184#endif
185	TAILQ_REMOVE(&head->so_comp, newso, so_list);
186	head->so_qlen--;
187	SOCK_UNLOCK(head);
188	/*
189	 * Now we must move it from one hash table to another and get the
190	 * stcb in the right place.
191	 */
192	SCTP_INP_WUNLOCK(n_inp);
193	SCTP_INP_WUNLOCK(inp);
194	sctp_move_pcb_and_assoc(inp, n_inp, stcb);
195	/*
196	 * And now the final hack. We move data in the pending side i.e.
197	 * head to the new socket buffer. Let the GRUBBING begin :-0
198	 */
199	sctp_pull_off_control_to_new_inp(inp, n_inp, stcb, M_WAITOK);
200
201	SCTP_TCB_UNLOCK(stcb);
202	return (newso);
203}
204