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/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 47 extern uint32_t sctp_debug_on; 48 49 #endif /* SCTP_DEBUG */ 50 51 52 int 53 sctp_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 71 int 72 sctp_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 109 struct socket * 110 sctp_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 SCTPDBG(SCTP_DEBUG_PEEL1, "SCTP peel-off called\n"); 117 inp = (struct sctp_inpcb *)head->so_pcb; 118 if (inp == NULL) { 119 *error = EFAULT; 120 return (NULL); 121 } 122 stcb = sctp_findassociation_ep_asocid(inp, assoc_id, 1); 123 if (stcb == NULL) { 124 *error = ENOTCONN; 125 return (NULL); 126 } 127 newso = sonewconn(head, SS_ISCONNECTED 128 ); 129 if (newso == NULL) { 130 SCTPDBG(SCTP_DEBUG_PEEL1, "sctp_peeloff:sonewconn failed\n"); 131 *error = ENOMEM; 132 SCTP_TCB_UNLOCK(stcb); 133 return (NULL); 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 sctp_log_lock(inp, (struct sctp_tcb *)NULL, SCTP_LOG_LOCK_SOCK); 175 #endif 176 TAILQ_REMOVE(&head->so_comp, newso, so_list); 177 head->so_qlen--; 178 SOCK_UNLOCK(head); 179 /* 180 * Now we must move it from one hash table to another and get the 181 * stcb in the right place. 182 */ 183 SCTP_INP_WUNLOCK(n_inp); 184 SCTP_INP_WUNLOCK(inp); 185 sctp_move_pcb_and_assoc(inp, n_inp, stcb); 186 /* 187 * And now the final hack. We move data in the pending side i.e. 188 * head to the new socket buffer. Let the GRUBBING begin :-0 189 */ 190 sctp_pull_off_control_to_new_inp(inp, n_inp, stcb, M_WAITOK); 191 192 SCTP_TCB_UNLOCK(stcb); 193 return (newso); 194 } 195