blob: 0e91a42065dbb8758e091d34a687f3a60af85995 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel Implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (C) 1999-2001 Cisco, Motorola
4 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05005 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * These are the definitions needed for the command object.
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * you can redistribute it and/or modify it under the terms of
11 * the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050015 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
17 * ************************
18 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
Jeff Kirshera6227e22013-12-06 09:13:40 -080022 * along with GNU CC; see the file COPYING. If not, see
23 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
Daniel Borkmann477143e2013-08-06 21:18:13 +020025 * Please send any bug reports or fixes you make to the
26 * email address(es):
27 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
Daniel Borkmann477143e2013-08-06 21:18:13 +020029 * Written or modified by:
30 * La Monte H.P. Yarroll <piggy@acm.org>
31 * Karl Knutson <karl@athena.chicago.il.us>
32 * Ardelle Fan <ardelle.fan@intel.com>
33 * Sridhar Samudrala <sri@us.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#ifndef __net_sctp_command_h__
37#define __net_sctp_command_h__
38
39#include <net/sctp/constants.h>
40#include <net/sctp/structs.h>
41
42
43typedef enum {
44 SCTP_CMD_NOP = 0, /* Do nothing. */
45 SCTP_CMD_NEW_ASOC, /* Register a new association. */
46 SCTP_CMD_DELETE_TCB, /* Delete the current association. */
47 SCTP_CMD_NEW_STATE, /* Enter a new state. */
48 SCTP_CMD_REPORT_TSN, /* Record the arrival of a TSN. */
49 SCTP_CMD_GEN_SACK, /* Send a Selective ACK (maybe). */
50 SCTP_CMD_PROCESS_SACK, /* Process an inbound SACK. */
51 SCTP_CMD_GEN_INIT_ACK, /* Generate an INIT ACK chunk. */
52 SCTP_CMD_PEER_INIT, /* Process a INIT from the peer. */
53 SCTP_CMD_GEN_COOKIE_ECHO, /* Generate a COOKIE ECHO chunk. */
54 SCTP_CMD_CHUNK_ULP, /* Send a chunk to the sockets layer. */
55 SCTP_CMD_EVENT_ULP, /* Send a notification to the sockets layer. */
56 SCTP_CMD_REPLY, /* Send a chunk to our peer. */
57 SCTP_CMD_SEND_PKT, /* Send a full packet to our peer. */
58 SCTP_CMD_RETRAN, /* Mark a transport for retransmission. */
59 SCTP_CMD_ECN_CE, /* Do delayed CE processing. */
60 SCTP_CMD_ECN_ECNE, /* Do delayed ECNE processing. */
61 SCTP_CMD_ECN_CWR, /* Do delayed CWR processing. */
62 SCTP_CMD_TIMER_START, /* Start a timer. */
Thomas Graff8d96052011-07-07 00:28:35 +000063 SCTP_CMD_TIMER_START_ONCE, /* Start a timer once */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 SCTP_CMD_TIMER_RESTART, /* Restart a timer. */
65 SCTP_CMD_TIMER_STOP, /* Stop a timer. */
Frank Filz3f7a87d2005-06-20 13:14:57 -070066 SCTP_CMD_INIT_CHOOSE_TRANSPORT, /* Choose transport for an INIT. */
67 SCTP_CMD_INIT_COUNTER_RESET, /* Reset init counter. */
68 SCTP_CMD_INIT_COUNTER_INC, /* Increment init counter. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 SCTP_CMD_INIT_RESTART, /* High level, do init timer work. */
Frank Filz3f7a87d2005-06-20 13:14:57 -070070 SCTP_CMD_COOKIEECHO_RESTART, /* High level, do cookie-echo timer work. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 SCTP_CMD_INIT_FAILED, /* High level, do init failure work. */
72 SCTP_CMD_REPORT_DUP, /* Report a duplicate TSN. */
73 SCTP_CMD_STRIKE, /* Mark a strike against a transport. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 SCTP_CMD_HB_TIMERS_START, /* Start the heartbeat timers. */
75 SCTP_CMD_HB_TIMER_UPDATE, /* Update a heartbeat timers. */
76 SCTP_CMD_HB_TIMERS_STOP, /* Stop the heartbeat timers. */
Vlad Yasevich7e990132009-03-02 09:46:14 +000077 SCTP_CMD_TRANSPORT_HB_SENT, /* Reset the status of a transport. */
78 SCTP_CMD_TRANSPORT_IDLE, /* Do manipulations on idle transport */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 SCTP_CMD_TRANSPORT_ON, /* Mark the transport as active. */
80 SCTP_CMD_REPORT_ERROR, /* Pass this error back out of the sm. */
81 SCTP_CMD_REPORT_BAD_TAG, /* Verification tags didn't match. */
82 SCTP_CMD_PROCESS_CTSN, /* Sideeffect from shutdown. */
83 SCTP_CMD_ASSOC_FAILED, /* Handle association failure. */
84 SCTP_CMD_DISCARD_PACKET, /* Discard the whole packet. */
85 SCTP_CMD_GEN_SHUTDOWN, /* Generate a SHUTDOWN chunk. */
86 SCTP_CMD_UPDATE_ASSOC, /* Update association information. */
87 SCTP_CMD_PURGE_OUTQUEUE, /* Purge all data waiting to be sent. */
88 SCTP_CMD_SETUP_T2, /* Hi-level, setup T2-shutdown parms. */
89 SCTP_CMD_RTO_PENDING, /* Set transport's rto_pending. */
90 SCTP_CMD_PART_DELIVER, /* Partial data delivery considerations. */
91 SCTP_CMD_RENEGE, /* Renege data on an association. */
92 SCTP_CMD_SETUP_T4, /* ADDIP, setup T4 RTO timer parms. */
93 SCTP_CMD_PROCESS_OPERR, /* Process an ERROR chunk. */
94 SCTP_CMD_REPORT_FWDTSN, /* Report new cumulative TSN Ack. */
95 SCTP_CMD_PROCESS_FWDTSN, /* Skips were reported, so process further. */
96 SCTP_CMD_CLEAR_INIT_TAG, /* Clears association peer's inittag. */
97 SCTP_CMD_DEL_NON_PRIMARY, /* Removes non-primary peer transports. */
98 SCTP_CMD_T3_RTX_TIMERS_STOP, /* Stops T3-rtx pending timers */
99 SCTP_CMD_FORCE_PRIM_RETRAN, /* Forces retrans. over primary path. */
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700100 SCTP_CMD_SET_SK_ERR, /* Set sk_err */
Vlad Yasevich07d93962007-05-04 13:55:27 -0700101 SCTP_CMD_ASSOC_CHANGE, /* generate and send assoc_change event */
102 SCTP_CMD_ADAPTATION_IND, /* generate and send adaptation event */
Vlad Yasevich730fc3d2007-09-16 19:32:11 -0700103 SCTP_CMD_ASSOC_SHKEY, /* generate the association shared keys */
Vlad Yasevichb6157d82007-10-24 15:59:16 -0400104 SCTP_CMD_T1_RETRAN, /* Mark for retransmission after T1 timeout */
Gui Jianfengf4ad85c2008-04-12 18:39:34 -0700105 SCTP_CMD_UPDATE_INITTAG, /* Update peer inittag */
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -0400106 SCTP_CMD_SEND_MSG, /* Send the whole use message */
Vlad Yasevichc0786692010-04-28 08:47:22 +0000107 SCTP_CMD_SEND_NEXT_ASCONF, /* Send the next ASCONF after ACK */
Wei Yongjuna000c012011-05-29 23:23:36 +0000108 SCTP_CMD_PURGE_ASCONF_QUEUE, /* Purge all asconf queues.*/
Max Matveevd5ccd492011-08-29 21:02:24 +0000109 SCTP_CMD_SET_ASOC, /* Restore association context */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 SCTP_CMD_LAST
111} sctp_verb_t;
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* How many commands can you put in an sctp_cmd_seq_t?
114 * This is a rather arbitrary number, ideally derived from a careful
115 * analysis of the state functions, but in reality just taken from
116 * thin air in the hopes othat we don't trigger a kernel panic.
117 */
118#define SCTP_MAX_NUM_COMMANDS 14
119
120typedef union {
121 __s32 i32;
122 __u32 u32;
Al Viro2178eda2006-11-20 17:26:53 -0800123 __be32 be32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 __u16 u16;
125 __u8 u8;
126 int error;
Al Virodc251b22006-11-20 17:00:44 -0800127 __be16 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 sctp_state_t state;
129 sctp_event_timeout_t to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 struct sctp_chunk *chunk;
131 struct sctp_association *asoc;
132 struct sctp_transport *transport;
133 struct sctp_bind_addr *bp;
134 sctp_init_chunk_t *init;
135 struct sctp_ulpevent *ulpevent;
136 struct sctp_packet *packet;
137 sctp_sackhdr_t *sackh;
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -0400138 struct sctp_datamsg *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139} sctp_arg_t;
140
141/* We are simulating ML type constructors here.
142 *
143 * SCTP_ARG_CONSTRUCTOR(NAME, TYPE, ELT) builds a function called
144 * SCTP_NAME() which takes an argument of type TYPE and returns an
145 * sctp_arg_t. It does this by inserting the sole argument into the
146 * ELT union element of a local sctp_arg_t.
147 *
148 * E.g., SCTP_ARG_CONSTRUCTOR(I32, __s32, i32) builds SCTP_I32(arg),
149 * which takes an __s32 and returns a sctp_arg_t containing the
150 * __s32. So, after foo = SCTP_I32(arg), foo.i32 == arg.
151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153#define SCTP_ARG_CONSTRUCTOR(name, type, elt) \
154static inline sctp_arg_t \
155SCTP_## name (type arg) \
Neil Hormanb26ddd82012-10-29 08:32:13 +0000156{ sctp_arg_t retval;\
157 memset(&retval, 0, sizeof(sctp_arg_t));\
158 retval.elt = arg;\
159 return retval;\
160}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162SCTP_ARG_CONSTRUCTOR(I32, __s32, i32)
163SCTP_ARG_CONSTRUCTOR(U32, __u32, u32)
Al Viro2178eda2006-11-20 17:26:53 -0800164SCTP_ARG_CONSTRUCTOR(BE32, __be32, be32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165SCTP_ARG_CONSTRUCTOR(U16, __u16, u16)
166SCTP_ARG_CONSTRUCTOR(U8, __u8, u8)
167SCTP_ARG_CONSTRUCTOR(ERROR, int, error)
Al Virodc251b22006-11-20 17:00:44 -0800168SCTP_ARG_CONSTRUCTOR(PERR, __be16, err) /* protocol error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169SCTP_ARG_CONSTRUCTOR(STATE, sctp_state_t, state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170SCTP_ARG_CONSTRUCTOR(TO, sctp_event_timeout_t, to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171SCTP_ARG_CONSTRUCTOR(CHUNK, struct sctp_chunk *, chunk)
172SCTP_ARG_CONSTRUCTOR(ASOC, struct sctp_association *, asoc)
173SCTP_ARG_CONSTRUCTOR(TRANSPORT, struct sctp_transport *, transport)
174SCTP_ARG_CONSTRUCTOR(BA, struct sctp_bind_addr *, bp)
175SCTP_ARG_CONSTRUCTOR(PEER_INIT, sctp_init_chunk_t *, init)
176SCTP_ARG_CONSTRUCTOR(ULPEVENT, struct sctp_ulpevent *, ulpevent)
177SCTP_ARG_CONSTRUCTOR(PACKET, struct sctp_packet *, packet)
178SCTP_ARG_CONSTRUCTOR(SACKH, sctp_sackhdr_t *, sackh)
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -0400179SCTP_ARG_CONSTRUCTOR(DATAMSG, struct sctp_datamsg *, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Neil Hormanb26ddd82012-10-29 08:32:13 +0000181static inline sctp_arg_t SCTP_FORCE(void)
182{
183 return SCTP_I32(1);
184}
185
186static inline sctp_arg_t SCTP_NOFORCE(void)
187{
188 return SCTP_I32(0);
189}
190
191static inline sctp_arg_t SCTP_NULL(void)
192{
193 sctp_arg_t retval;
194 memset(&retval, 0, sizeof(sctp_arg_t));
195 return retval;
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198typedef struct {
199 sctp_arg_t obj;
200 sctp_verb_t verb;
201} sctp_cmd_t;
202
203typedef struct {
204 sctp_cmd_t cmds[SCTP_MAX_NUM_COMMANDS];
205 __u8 next_free_slot;
206 __u8 next_cmd;
207} sctp_cmd_seq_t;
208
209
210/* Initialize a block of memory as a command sequence.
211 * Return 0 if the initialization fails.
212 */
David Laightbe1f4f42014-07-04 14:35:51 +0000213static inline int sctp_init_cmd_seq(sctp_cmd_seq_t *seq)
214{
215 memset(seq, 0, sizeof(sctp_cmd_seq_t));
216 return 1; /* We always succeed. */
217}
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220/* Add a command to an sctp_cmd_seq_t.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 *
222 * Use the SCTP_* constructors defined by SCTP_ARG_CONSTRUCTOR() above
223 * to wrap data which goes in the obj argument.
224 */
David Laightbe1f4f42014-07-04 14:35:51 +0000225static inline void sctp_add_cmd_sf(sctp_cmd_seq_t *seq, sctp_verb_t verb,
226 sctp_arg_t obj)
227{
228 BUG_ON(seq->next_free_slot >= SCTP_MAX_NUM_COMMANDS);
229
230 seq->cmds[seq->next_free_slot].verb = verb;
231 seq->cmds[seq->next_free_slot++].obj = obj;
232}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234/* Return the next command structure in an sctp_cmd_seq.
235 * Return NULL at the end of the sequence.
236 */
David Laightbe1f4f42014-07-04 14:35:51 +0000237static inline sctp_cmd_t *sctp_next_cmd(sctp_cmd_seq_t *seq)
238{
239 sctp_cmd_t *retval = NULL;
240
241 if (seq->next_cmd < seq->next_free_slot)
242 retval = &seq->cmds[seq->next_cmd++];
243
244 return retval;
245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247#endif /* __net_sctp_command_h__ */