]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - include/net/sctp/ulpevent.h
Merge tag 'ceph-for-5.1-rc3' of git://github.com/ceph/ceph-client
[mirror_ubuntu-eoan-kernel.git] / include / net / sctp / ulpevent.h
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
9 * These are the definitions needed for the sctp_ulpevent type. The
10 * sctp_ulpevent type is used to carry information from the state machine
11 * upwards to the ULP.
12 *
60c778b2 13 * This file is part of the SCTP kernel implementation
1da177e4 14 *
60c778b2 15 * This SCTP implementation is free software;
1da177e4
LT
16 * you can redistribute it and/or modify it under the terms of
17 * the GNU General Public License as published by
18 * the Free Software Foundation; either version 2, or (at your option)
19 * any later version.
20 *
60c778b2 21 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
22 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
23 * ************************
24 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
25 * See the GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
4b2f13a2
JK
28 * along with GNU CC; see the file COPYING. If not, see
29 * <http://www.gnu.org/licenses/>.
1da177e4
LT
30 *
31 * Please send any bug reports or fixes you make to the
32 * email address(es):
91705c61 33 * lksctp developers <linux-sctp@vger.kernel.org>
1da177e4 34 *
1da177e4
LT
35 * Written or modified by:
36 * Jon Grimm <jgrimm@us.ibm.com>
37 * La Monte H.P. Yarroll <piggy@acm.org>
38 * Karl Knutson <karl@athena.chicago.il.us>
39 * Sridhar Samudrala <sri@us.ibm.com>
1da177e4
LT
40 */
41
42#ifndef __sctp_ulpevent_h__
43#define __sctp_ulpevent_h__
44
45/* A structure to carry information to the ULP (e.g. Sockets API) */
46/* Warning: This sits inside an skb.cb[] area. Be very careful of
47 * growing this structure as it is at the maximum limit now.
bd4d627d
XL
48 *
49 * sctp_ulpevent is saved in sk->cb(48 bytes), whose last 4 bytes
50 * have been taken by sock_skb_cb, So here it has to use 'packed'
51 * to make sctp_ulpevent fit into the rest 44 bytes.
1da177e4
LT
52 */
53struct sctp_ulpevent {
54 struct sctp_association *asoc;
1f45f78f 55 struct sctp_chunk *chunk;
f5d258e6 56 unsigned int rmem_len;
bd4d627d
XL
57 union {
58 __u32 mid;
59 __u16 ssn;
60 };
61 union {
62 __u32 ppid;
63 __u32 fsn;
64 };
1da177e4
LT
65 __u32 tsn;
66 __u32 cumtsn;
f5d258e6 67 __u16 stream;
f5d258e6
MRL
68 __u16 flags;
69 __u16 msg_flags;
bd4d627d 70} __packed;
1da177e4
LT
71
72/* Retrieve the skb this event sits inside of. */
ab38fb04 73static inline struct sk_buff *sctp_event2skb(const struct sctp_ulpevent *ev)
1da177e4
LT
74{
75 return container_of((void *)ev, struct sk_buff, cb);
76}
77
78/* Retrieve & cast the event sitting inside the skb. */
79static inline struct sctp_ulpevent *sctp_skb2event(struct sk_buff *skb)
80{
81 return (struct sctp_ulpevent *)skb->cb;
82}
83
84void sctp_ulpevent_free(struct sctp_ulpevent *);
85int sctp_ulpevent_is_notification(const struct sctp_ulpevent *);
cd4fcc70 86unsigned int sctp_queue_purge_ulpevents(struct sk_buff_head *list);
1da177e4
LT
87
88struct sctp_ulpevent *sctp_ulpevent_make_assoc_change(
89 const struct sctp_association *asoc,
90 __u16 flags,
91 __u16 state,
92 __u16 error,
93 __u16 outbound,
94 __u16 inbound,
a5a35e76 95 struct sctp_chunk *chunk,
dd0fc66f 96 gfp_t gfp);
1da177e4
LT
97
98struct sctp_ulpevent *sctp_ulpevent_make_peer_addr_change(
99 const struct sctp_association *asoc,
100 const struct sockaddr_storage *aaddr,
101 int flags,
102 int state,
103 int error,
dd0fc66f 104 gfp_t gfp);
1da177e4
LT
105
106struct sctp_ulpevent *sctp_ulpevent_make_remote_error(
107 const struct sctp_association *asoc,
108 struct sctp_chunk *chunk,
109 __u16 flags,
dd0fc66f 110 gfp_t gfp);
1da177e4
LT
111struct sctp_ulpevent *sctp_ulpevent_make_send_failed(
112 const struct sctp_association *asoc,
113 struct sctp_chunk *chunk,
114 __u16 flags,
115 __u32 error,
dd0fc66f 116 gfp_t gfp);
1da177e4
LT
117
118struct sctp_ulpevent *sctp_ulpevent_make_shutdown_event(
119 const struct sctp_association *asoc,
120 __u16 flags,
dd0fc66f 121 gfp_t gfp);
1da177e4
LT
122
123struct sctp_ulpevent *sctp_ulpevent_make_pdapi(
124 const struct sctp_association *asoc,
65f5e357
XL
125 __u32 indication, __u32 sid, __u32 seq,
126 __u32 flags, gfp_t gfp);
1da177e4 127
0f3fffd8 128struct sctp_ulpevent *sctp_ulpevent_make_adaptation_indication(
dd0fc66f 129 const struct sctp_association *asoc, gfp_t gfp);
1da177e4
LT
130
131struct sctp_ulpevent *sctp_ulpevent_make_rcvmsg(struct sctp_association *asoc,
132 struct sctp_chunk *chunk,
dd0fc66f 133 gfp_t gfp);
1da177e4 134
65b07e5d
VY
135struct sctp_ulpevent *sctp_ulpevent_make_authkey(
136 const struct sctp_association *asoc, __u16 key_id,
137 __u32 indication, gfp_t gfp);
138
e1cdd553
WY
139struct sctp_ulpevent *sctp_ulpevent_make_sender_dry_event(
140 const struct sctp_association *asoc, gfp_t gfp);
35ea82d6
XL
141
142struct sctp_ulpevent *sctp_ulpevent_make_stream_reset_event(
143 const struct sctp_association *asoc, __u16 flags,
1da4fc97 144 __u16 stream_num, __be16 *stream_list, gfp_t gfp);
c95129d1
XL
145
146struct sctp_ulpevent *sctp_ulpevent_make_assoc_reset_event(
147 const struct sctp_association *asoc, __u16 flags,
148 __u32 local_tsn, __u32 remote_tsn, gfp_t gfp);
b444153f
XL
149
150struct sctp_ulpevent *sctp_ulpevent_make_stream_change_event(
151 const struct sctp_association *asoc, __u16 flags,
152 __u32 strchange_instrms, __u32 strchange_outstrms, gfp_t gfp);
e1cdd553 153
bd4d627d
XL
154struct sctp_ulpevent *sctp_make_reassembled_event(
155 struct net *net, struct sk_buff_head *queue,
156 struct sk_buff *f_frag, struct sk_buff *l_frag);
157
1da177e4 158void sctp_ulpevent_read_sndrcvinfo(const struct sctp_ulpevent *event,
0d3a421d
GOV
159 struct msghdr *);
160void sctp_ulpevent_read_rcvinfo(const struct sctp_ulpevent *event,
161 struct msghdr *);
2347c80f
GOV
162void sctp_ulpevent_read_nxtinfo(const struct sctp_ulpevent *event,
163 struct msghdr *, struct sock *sk);
0d3a421d 164
1da177e4
LT
165__u16 sctp_ulpevent_get_notification_type(const struct sctp_ulpevent *event);
166
2cc0eeb6
XL
167static inline void sctp_ulpevent_type_set(__u16 *subscribe,
168 __u16 sn_type, __u8 on)
169{
170 if (sn_type > SCTP_SN_TYPE_MAX)
171 return;
172
173 if (on)
174 *subscribe |= (1 << (sn_type - SCTP_SN_TYPE_BASE));
175 else
176 *subscribe &= ~(1 << (sn_type - SCTP_SN_TYPE_BASE));
177}
178
1da177e4 179/* Is this event type enabled? */
2cc0eeb6 180static inline bool sctp_ulpevent_type_enabled(__u16 subscribe, __u16 sn_type)
1da177e4 181{
2cc0eeb6
XL
182 if (sn_type > SCTP_SN_TYPE_MAX)
183 return false;
fa5f7b51 184
2cc0eeb6 185 return subscribe & (1 << (sn_type - SCTP_SN_TYPE_BASE));
1da177e4
LT
186}
187
188/* Given an event subscription, is this event enabled? */
2cc0eeb6
XL
189static inline bool sctp_ulpevent_is_enabled(const struct sctp_ulpevent *event,
190 __u16 subscribe)
1da177e4
LT
191{
192 __u16 sn_type;
1da177e4 193
2cc0eeb6
XL
194 if (!sctp_ulpevent_is_notification(event))
195 return true;
196
197 sn_type = sctp_ulpevent_get_notification_type(event);
198
199 return sctp_ulpevent_type_enabled(subscribe, sn_type);
1da177e4
LT
200}
201
202#endif /* __sctp_ulpevent_h__ */