1 /* SCTP kernel reference Implementation
2 * Copyright (c) 1999-2000 Cisco, Inc.
3 * Copyright (c) 1999-2001 Motorola, Inc.
4 * Copyright (c) 2001-2002 International Business Machines, Corp.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
9 * This file is part of the SCTP kernel reference Implementation
11 * This abstraction represents an SCTP endpoint.
13 * This file is part of the implementation of the add-IP extension,
14 * based on <draft-ietf-tsvwg-addip-sctp-02.txt> June 29, 2001,
15 * for the SCTP kernel reference Implementation.
17 * The SCTP reference implementation is free software;
18 * you can redistribute it and/or modify it under the terms of
19 * the GNU General Public License as published by
20 * the Free Software Foundation; either version 2, or (at your option)
23 * The SCTP reference implementation is distributed in the hope that it
24 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
25 * ************************
26 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
27 * See the GNU General Public License for more details.
29 * You should have received a copy of the GNU General Public License
30 * along with GNU CC; see the file COPYING. If not, write to
31 * the Free Software Foundation, 59 Temple Place - Suite 330,
32 * Boston, MA 02111-1307, USA.
34 * Please send any bug reports or fixes you make to the
36 * lksctp developers <lksctp-developers@lists.sourceforge.net>
38 * Or submit a bug report through the following website:
39 * http://www.sf.net/projects/lksctp
41 * Written or modified by:
42 * La Monte H.P. Yarroll <piggy@acm.org>
43 * Karl Knutson <karl@athena.chicago.il.us>
44 * Jon Grimm <jgrimm@austin.ibm.com>
45 * Daisy Chang <daisyc@us.ibm.com>
46 * Dajiang Zhang <dajiang.zhang@nokia.com>
48 * Any bugs reported given to us we will try to fix... any fixes shared will
49 * be incorporated into the next SCTP release.
52 #include <linux/types.h>
53 #include <linux/sched.h>
54 #include <linux/slab.h>
56 #include <linux/random.h> /* get_random_bytes() */
57 #include <linux/crypto.h>
60 #include <net/sctp/sctp.h>
61 #include <net/sctp/sm.h>
63 /* Forward declarations for internal helpers. */
64 static void sctp_endpoint_bh_rcv(struct work_struct
*work
);
67 * Initialize the base fields of the endpoint structure.
69 static struct sctp_endpoint
*sctp_endpoint_init(struct sctp_endpoint
*ep
,
73 memset(ep
, 0, sizeof(struct sctp_endpoint
));
75 ep
->digest
= kzalloc(SCTP_SIGNATURE_SIZE
, gfp
);
79 /* Initialize the base structure. */
80 /* What type of endpoint are we? */
81 ep
->base
.type
= SCTP_EP_TYPE_SOCKET
;
83 /* Initialize the basic object fields. */
84 atomic_set(&ep
->base
.refcnt
, 1);
86 ep
->base
.malloced
= 1;
88 /* Create an input queue. */
89 sctp_inq_init(&ep
->base
.inqueue
);
91 /* Set its top-half handler */
92 sctp_inq_set_th_handler(&ep
->base
.inqueue
, sctp_endpoint_bh_rcv
);
94 /* Initialize the bind addr area */
95 sctp_bind_addr_init(&ep
->base
.bind_addr
, 0);
96 rwlock_init(&ep
->base
.addr_lock
);
98 /* Remember who we are attached to. */
100 sock_hold(ep
->base
.sk
);
102 /* Create the lists of associations. */
103 INIT_LIST_HEAD(&ep
->asocs
);
105 /* Use SCTP specific send buffer space queues. */
106 ep
->sndbuf_policy
= sctp_sndbuf_policy
;
107 sk
->sk_write_space
= sctp_write_space
;
108 sock_set_flag(sk
, SOCK_USE_WRITE_QUEUE
);
110 /* Get the receive buffer policy for this endpoint */
111 ep
->rcvbuf_policy
= sctp_rcvbuf_policy
;
113 /* Initialize the secret key used with cookie. */
114 get_random_bytes(&ep
->secret_key
[0], SCTP_SECRET_SIZE
);
115 ep
->last_key
= ep
->current_key
= 0;
116 ep
->key_changed_at
= jiffies
;
121 /* Create a sctp_endpoint with all that boring stuff initialized.
122 * Returns NULL if there isn't enough memory.
124 struct sctp_endpoint
*sctp_endpoint_new(struct sock
*sk
, gfp_t gfp
)
126 struct sctp_endpoint
*ep
;
128 /* Build a local endpoint. */
129 ep
= t_new(struct sctp_endpoint
, gfp
);
132 if (!sctp_endpoint_init(ep
, sk
, gfp
))
134 ep
->base
.malloced
= 1;
135 SCTP_DBG_OBJCNT_INC(ep
);
144 /* Add an association to an endpoint. */
145 void sctp_endpoint_add_asoc(struct sctp_endpoint
*ep
,
146 struct sctp_association
*asoc
)
148 struct sock
*sk
= ep
->base
.sk
;
150 /* If this is a temporary association, don't bother
151 * since we'll be removing it shortly and don't
152 * want anyone to find it anyway.
157 /* Now just add it to our list of asocs */
158 list_add_tail(&asoc
->asocs
, &ep
->asocs
);
160 /* Increment the backlog value for a TCP-style listening socket. */
161 if (sctp_style(sk
, TCP
) && sctp_sstate(sk
, LISTENING
))
162 sk
->sk_ack_backlog
++;
165 /* Free the endpoint structure. Delay cleanup until
166 * all users have released their reference count on this structure.
168 void sctp_endpoint_free(struct sctp_endpoint
*ep
)
172 ep
->base
.sk
->sk_state
= SCTP_SS_CLOSED
;
174 /* Unlink this endpoint, so we can't find it again! */
175 sctp_unhash_endpoint(ep
);
177 sctp_endpoint_put(ep
);
180 /* Final destructor for endpoint. */
181 static void sctp_endpoint_destroy(struct sctp_endpoint
*ep
)
183 SCTP_ASSERT(ep
->base
.dead
, "Endpoint is not dead", return);
185 /* Free up the HMAC transform. */
186 crypto_free_hash(sctp_sk(ep
->base
.sk
)->hmac
);
188 /* Free the digest buffer */
192 sctp_inq_free(&ep
->base
.inqueue
);
193 sctp_bind_addr_free(&ep
->base
.bind_addr
);
195 /* Remove and free the port */
196 if (sctp_sk(ep
->base
.sk
)->bind_hash
)
197 sctp_put_port(ep
->base
.sk
);
199 /* Give up our hold on the sock. */
201 sock_put(ep
->base
.sk
);
203 /* Finally, free up our memory. */
204 if (ep
->base
.malloced
) {
206 SCTP_DBG_OBJCNT_DEC(ep
);
210 /* Hold a reference to an endpoint. */
211 void sctp_endpoint_hold(struct sctp_endpoint
*ep
)
213 atomic_inc(&ep
->base
.refcnt
);
216 /* Release a reference to an endpoint and clean up if there are
217 * no more references.
219 void sctp_endpoint_put(struct sctp_endpoint
*ep
)
221 if (atomic_dec_and_test(&ep
->base
.refcnt
))
222 sctp_endpoint_destroy(ep
);
225 /* Is this the endpoint we are looking for? */
226 struct sctp_endpoint
*sctp_endpoint_is_match(struct sctp_endpoint
*ep
,
227 const union sctp_addr
*laddr
)
229 struct sctp_endpoint
*retval
;
231 sctp_read_lock(&ep
->base
.addr_lock
);
232 if (htons(ep
->base
.bind_addr
.port
) == laddr
->v4
.sin_port
) {
233 if (sctp_bind_addr_match(&ep
->base
.bind_addr
, laddr
,
234 sctp_sk(ep
->base
.sk
))) {
243 sctp_read_unlock(&ep
->base
.addr_lock
);
247 /* Find the association that goes with this chunk.
248 * We do a linear search of the associations for this endpoint.
249 * We return the matching transport address too.
251 static struct sctp_association
*__sctp_endpoint_lookup_assoc(
252 const struct sctp_endpoint
*ep
,
253 const union sctp_addr
*paddr
,
254 struct sctp_transport
**transport
)
257 struct sctp_association
*asoc
;
258 struct list_head
*pos
;
260 rport
= ntohs(paddr
->v4
.sin_port
);
262 list_for_each(pos
, &ep
->asocs
) {
263 asoc
= list_entry(pos
, struct sctp_association
, asocs
);
264 if (rport
== asoc
->peer
.port
) {
265 sctp_read_lock(&asoc
->base
.addr_lock
);
266 *transport
= sctp_assoc_lookup_paddr(asoc
, paddr
);
267 sctp_read_unlock(&asoc
->base
.addr_lock
);
278 /* Lookup association on an endpoint based on a peer address. BH-safe. */
279 struct sctp_association
*sctp_endpoint_lookup_assoc(
280 const struct sctp_endpoint
*ep
,
281 const union sctp_addr
*paddr
,
282 struct sctp_transport
**transport
)
284 struct sctp_association
*asoc
;
286 sctp_local_bh_disable();
287 asoc
= __sctp_endpoint_lookup_assoc(ep
, paddr
, transport
);
288 sctp_local_bh_enable();
293 /* Look for any peeled off association from the endpoint that matches the
294 * given peer address.
296 int sctp_endpoint_is_peeled_off(struct sctp_endpoint
*ep
,
297 const union sctp_addr
*paddr
)
299 struct list_head
*pos
;
300 struct sctp_sockaddr_entry
*addr
;
301 struct sctp_bind_addr
*bp
;
303 sctp_read_lock(&ep
->base
.addr_lock
);
304 bp
= &ep
->base
.bind_addr
;
305 list_for_each(pos
, &bp
->address_list
) {
306 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
307 if (sctp_has_association(&addr
->a
, paddr
)) {
308 sctp_read_unlock(&ep
->base
.addr_lock
);
312 sctp_read_unlock(&ep
->base
.addr_lock
);
317 /* Do delayed input processing. This is scheduled by sctp_rcv().
318 * This may be called on BH or task time.
320 static void sctp_endpoint_bh_rcv(struct work_struct
*work
)
322 struct sctp_endpoint
*ep
=
323 container_of(work
, struct sctp_endpoint
,
324 base
.inqueue
.immediate
);
325 struct sctp_association
*asoc
;
327 struct sctp_transport
*transport
;
328 struct sctp_chunk
*chunk
;
329 struct sctp_inq
*inqueue
;
330 sctp_subtype_t subtype
;
338 inqueue
= &ep
->base
.inqueue
;
341 while (NULL
!= (chunk
= sctp_inq_pop(inqueue
))) {
342 subtype
= SCTP_ST_CHUNK(chunk
->chunk_hdr
->type
);
344 /* We might have grown an association since last we
345 * looked, so try again.
347 * This happens when we've just processed our
350 if (NULL
== chunk
->asoc
) {
351 asoc
= sctp_endpoint_lookup_assoc(ep
,
355 chunk
->transport
= transport
;
358 state
= asoc
? asoc
->state
: SCTP_STATE_CLOSED
;
360 /* Remember where the last DATA chunk came from so we
361 * know where to send the SACK.
363 if (asoc
&& sctp_chunk_is_data(chunk
))
364 asoc
->peer
.last_data_from
= chunk
->transport
;
366 SCTP_INC_STATS(SCTP_MIB_INCTRLCHUNKS
);
368 if (chunk
->transport
)
369 chunk
->transport
->last_time_heard
= jiffies
;
371 error
= sctp_do_sm(SCTP_EVENT_T_CHUNK
, subtype
, state
,
372 ep
, asoc
, chunk
, GFP_ATOMIC
);
377 /* Check to see if the endpoint is freed in response to
378 * the incoming chunk. If so, get out of the while loop.
380 if (!sctp_sk(sk
)->ep
)