1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0-or-later */
2*4882a593Smuzhiyun /* SCTP kernel Implementation
3*4882a593Smuzhiyun * (C) Copyright IBM Corp. 2001, 2004
4*4882a593Smuzhiyun * Copyright (C) 1999-2001 Cisco, Motorola
5*4882a593Smuzhiyun *
6*4882a593Smuzhiyun * This file is part of the SCTP kernel implementation
7*4882a593Smuzhiyun *
8*4882a593Smuzhiyun * These are the definitions needed for the command object.
9*4882a593Smuzhiyun *
10*4882a593Smuzhiyun * Please send any bug reports or fixes you make to the
11*4882a593Smuzhiyun * email address(es):
12*4882a593Smuzhiyun * lksctp developers <linux-sctp@vger.kernel.org>
13*4882a593Smuzhiyun *
14*4882a593Smuzhiyun * Written or modified by:
15*4882a593Smuzhiyun * La Monte H.P. Yarroll <piggy@acm.org>
16*4882a593Smuzhiyun * Karl Knutson <karl@athena.chicago.il.us>
17*4882a593Smuzhiyun * Ardelle Fan <ardelle.fan@intel.com>
18*4882a593Smuzhiyun * Sridhar Samudrala <sri@us.ibm.com>
19*4882a593Smuzhiyun */
20*4882a593Smuzhiyun
21*4882a593Smuzhiyun #ifndef __net_sctp_command_h__
22*4882a593Smuzhiyun #define __net_sctp_command_h__
23*4882a593Smuzhiyun
24*4882a593Smuzhiyun #include <net/sctp/constants.h>
25*4882a593Smuzhiyun #include <net/sctp/structs.h>
26*4882a593Smuzhiyun
27*4882a593Smuzhiyun
28*4882a593Smuzhiyun enum sctp_verb {
29*4882a593Smuzhiyun SCTP_CMD_NOP = 0, /* Do nothing. */
30*4882a593Smuzhiyun SCTP_CMD_NEW_ASOC, /* Register a new association. */
31*4882a593Smuzhiyun SCTP_CMD_DELETE_TCB, /* Delete the current association. */
32*4882a593Smuzhiyun SCTP_CMD_NEW_STATE, /* Enter a new state. */
33*4882a593Smuzhiyun SCTP_CMD_REPORT_TSN, /* Record the arrival of a TSN. */
34*4882a593Smuzhiyun SCTP_CMD_GEN_SACK, /* Send a Selective ACK (maybe). */
35*4882a593Smuzhiyun SCTP_CMD_PROCESS_SACK, /* Process an inbound SACK. */
36*4882a593Smuzhiyun SCTP_CMD_GEN_INIT_ACK, /* Generate an INIT ACK chunk. */
37*4882a593Smuzhiyun SCTP_CMD_PEER_INIT, /* Process a INIT from the peer. */
38*4882a593Smuzhiyun SCTP_CMD_GEN_COOKIE_ECHO, /* Generate a COOKIE ECHO chunk. */
39*4882a593Smuzhiyun SCTP_CMD_CHUNK_ULP, /* Send a chunk to the sockets layer. */
40*4882a593Smuzhiyun SCTP_CMD_EVENT_ULP, /* Send a notification to the sockets layer. */
41*4882a593Smuzhiyun SCTP_CMD_REPLY, /* Send a chunk to our peer. */
42*4882a593Smuzhiyun SCTP_CMD_SEND_PKT, /* Send a full packet to our peer. */
43*4882a593Smuzhiyun SCTP_CMD_RETRAN, /* Mark a transport for retransmission. */
44*4882a593Smuzhiyun SCTP_CMD_ECN_CE, /* Do delayed CE processing. */
45*4882a593Smuzhiyun SCTP_CMD_ECN_ECNE, /* Do delayed ECNE processing. */
46*4882a593Smuzhiyun SCTP_CMD_ECN_CWR, /* Do delayed CWR processing. */
47*4882a593Smuzhiyun SCTP_CMD_TIMER_START, /* Start a timer. */
48*4882a593Smuzhiyun SCTP_CMD_TIMER_START_ONCE, /* Start a timer once */
49*4882a593Smuzhiyun SCTP_CMD_TIMER_RESTART, /* Restart a timer. */
50*4882a593Smuzhiyun SCTP_CMD_TIMER_STOP, /* Stop a timer. */
51*4882a593Smuzhiyun SCTP_CMD_INIT_CHOOSE_TRANSPORT, /* Choose transport for an INIT. */
52*4882a593Smuzhiyun SCTP_CMD_INIT_COUNTER_RESET, /* Reset init counter. */
53*4882a593Smuzhiyun SCTP_CMD_INIT_COUNTER_INC, /* Increment init counter. */
54*4882a593Smuzhiyun SCTP_CMD_INIT_RESTART, /* High level, do init timer work. */
55*4882a593Smuzhiyun SCTP_CMD_COOKIEECHO_RESTART, /* High level, do cookie-echo timer work. */
56*4882a593Smuzhiyun SCTP_CMD_INIT_FAILED, /* High level, do init failure work. */
57*4882a593Smuzhiyun SCTP_CMD_REPORT_DUP, /* Report a duplicate TSN. */
58*4882a593Smuzhiyun SCTP_CMD_STRIKE, /* Mark a strike against a transport. */
59*4882a593Smuzhiyun SCTP_CMD_HB_TIMERS_START, /* Start the heartbeat timers. */
60*4882a593Smuzhiyun SCTP_CMD_HB_TIMER_UPDATE, /* Update a heartbeat timers. */
61*4882a593Smuzhiyun SCTP_CMD_HB_TIMERS_STOP, /* Stop the heartbeat timers. */
62*4882a593Smuzhiyun SCTP_CMD_TRANSPORT_HB_SENT, /* Reset the status of a transport. */
63*4882a593Smuzhiyun SCTP_CMD_TRANSPORT_IDLE, /* Do manipulations on idle transport */
64*4882a593Smuzhiyun SCTP_CMD_TRANSPORT_ON, /* Mark the transport as active. */
65*4882a593Smuzhiyun SCTP_CMD_REPORT_ERROR, /* Pass this error back out of the sm. */
66*4882a593Smuzhiyun SCTP_CMD_REPORT_BAD_TAG, /* Verification tags didn't match. */
67*4882a593Smuzhiyun SCTP_CMD_PROCESS_CTSN, /* Sideeffect from shutdown. */
68*4882a593Smuzhiyun SCTP_CMD_ASSOC_FAILED, /* Handle association failure. */
69*4882a593Smuzhiyun SCTP_CMD_DISCARD_PACKET, /* Discard the whole packet. */
70*4882a593Smuzhiyun SCTP_CMD_GEN_SHUTDOWN, /* Generate a SHUTDOWN chunk. */
71*4882a593Smuzhiyun SCTP_CMD_UPDATE_ASSOC, /* Update association information. */
72*4882a593Smuzhiyun SCTP_CMD_PURGE_OUTQUEUE, /* Purge all data waiting to be sent. */
73*4882a593Smuzhiyun SCTP_CMD_SETUP_T2, /* Hi-level, setup T2-shutdown parms. */
74*4882a593Smuzhiyun SCTP_CMD_RTO_PENDING, /* Set transport's rto_pending. */
75*4882a593Smuzhiyun SCTP_CMD_PART_DELIVER, /* Partial data delivery considerations. */
76*4882a593Smuzhiyun SCTP_CMD_RENEGE, /* Renege data on an association. */
77*4882a593Smuzhiyun SCTP_CMD_SETUP_T4, /* ADDIP, setup T4 RTO timer parms. */
78*4882a593Smuzhiyun SCTP_CMD_PROCESS_OPERR, /* Process an ERROR chunk. */
79*4882a593Smuzhiyun SCTP_CMD_REPORT_FWDTSN, /* Report new cumulative TSN Ack. */
80*4882a593Smuzhiyun SCTP_CMD_PROCESS_FWDTSN, /* Skips were reported, so process further. */
81*4882a593Smuzhiyun SCTP_CMD_CLEAR_INIT_TAG, /* Clears association peer's inittag. */
82*4882a593Smuzhiyun SCTP_CMD_DEL_NON_PRIMARY, /* Removes non-primary peer transports. */
83*4882a593Smuzhiyun SCTP_CMD_T3_RTX_TIMERS_STOP, /* Stops T3-rtx pending timers */
84*4882a593Smuzhiyun SCTP_CMD_FORCE_PRIM_RETRAN, /* Forces retrans. over primary path. */
85*4882a593Smuzhiyun SCTP_CMD_SET_SK_ERR, /* Set sk_err */
86*4882a593Smuzhiyun SCTP_CMD_ASSOC_CHANGE, /* generate and send assoc_change event */
87*4882a593Smuzhiyun SCTP_CMD_ADAPTATION_IND, /* generate and send adaptation event */
88*4882a593Smuzhiyun SCTP_CMD_PEER_NO_AUTH, /* generate and send authentication event */
89*4882a593Smuzhiyun SCTP_CMD_ASSOC_SHKEY, /* generate the association shared keys */
90*4882a593Smuzhiyun SCTP_CMD_T1_RETRAN, /* Mark for retransmission after T1 timeout */
91*4882a593Smuzhiyun SCTP_CMD_UPDATE_INITTAG, /* Update peer inittag */
92*4882a593Smuzhiyun SCTP_CMD_SEND_MSG, /* Send the whole use message */
93*4882a593Smuzhiyun SCTP_CMD_PURGE_ASCONF_QUEUE, /* Purge all asconf queues.*/
94*4882a593Smuzhiyun SCTP_CMD_SET_ASOC, /* Restore association context */
95*4882a593Smuzhiyun SCTP_CMD_LAST
96*4882a593Smuzhiyun };
97*4882a593Smuzhiyun
98*4882a593Smuzhiyun /* How many commands can you put in an struct sctp_cmd_seq?
99*4882a593Smuzhiyun * This is a rather arbitrary number, ideally derived from a careful
100*4882a593Smuzhiyun * analysis of the state functions, but in reality just taken from
101*4882a593Smuzhiyun * thin air in the hopes othat we don't trigger a kernel panic.
102*4882a593Smuzhiyun */
103*4882a593Smuzhiyun #define SCTP_MAX_NUM_COMMANDS 20
104*4882a593Smuzhiyun
105*4882a593Smuzhiyun union sctp_arg {
106*4882a593Smuzhiyun void *zero_all; /* Set to NULL to clear the entire union */
107*4882a593Smuzhiyun __s32 i32;
108*4882a593Smuzhiyun __u32 u32;
109*4882a593Smuzhiyun __be32 be32;
110*4882a593Smuzhiyun __u16 u16;
111*4882a593Smuzhiyun __u8 u8;
112*4882a593Smuzhiyun int error;
113*4882a593Smuzhiyun __be16 err;
114*4882a593Smuzhiyun enum sctp_state state;
115*4882a593Smuzhiyun enum sctp_event_timeout to;
116*4882a593Smuzhiyun struct sctp_chunk *chunk;
117*4882a593Smuzhiyun struct sctp_association *asoc;
118*4882a593Smuzhiyun struct sctp_transport *transport;
119*4882a593Smuzhiyun struct sctp_bind_addr *bp;
120*4882a593Smuzhiyun struct sctp_init_chunk *init;
121*4882a593Smuzhiyun struct sctp_ulpevent *ulpevent;
122*4882a593Smuzhiyun struct sctp_packet *packet;
123*4882a593Smuzhiyun struct sctp_sackhdr *sackh;
124*4882a593Smuzhiyun struct sctp_datamsg *msg;
125*4882a593Smuzhiyun };
126*4882a593Smuzhiyun
127*4882a593Smuzhiyun /* We are simulating ML type constructors here.
128*4882a593Smuzhiyun *
129*4882a593Smuzhiyun * SCTP_ARG_CONSTRUCTOR(NAME, TYPE, ELT) builds a function called
130*4882a593Smuzhiyun * SCTP_NAME() which takes an argument of type TYPE and returns an
131*4882a593Smuzhiyun * union sctp_arg. It does this by inserting the sole argument into
132*4882a593Smuzhiyun * the ELT union element of a local union sctp_arg.
133*4882a593Smuzhiyun *
134*4882a593Smuzhiyun * E.g., SCTP_ARG_CONSTRUCTOR(I32, __s32, i32) builds SCTP_I32(arg),
135*4882a593Smuzhiyun * which takes an __s32 and returns a union sctp_arg containing the
136*4882a593Smuzhiyun * __s32. So, after foo = SCTP_I32(arg), foo.i32 == arg.
137*4882a593Smuzhiyun */
138*4882a593Smuzhiyun
139*4882a593Smuzhiyun #define SCTP_ARG_CONSTRUCTOR(name, type, elt) \
140*4882a593Smuzhiyun static inline union sctp_arg \
141*4882a593Smuzhiyun SCTP_## name (type arg) \
142*4882a593Smuzhiyun { union sctp_arg retval;\
143*4882a593Smuzhiyun retval.zero_all = NULL;\
144*4882a593Smuzhiyun retval.elt = arg;\
145*4882a593Smuzhiyun return retval;\
146*4882a593Smuzhiyun }
147*4882a593Smuzhiyun
SCTP_ARG_CONSTRUCTOR(I32,__s32,i32)148*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(I32, __s32, i32)
149*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(U32, __u32, u32)
150*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(BE32, __be32, be32)
151*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(U16, __u16, u16)
152*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(U8, __u8, u8)
153*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(ERROR, int, error)
154*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(PERR, __be16, err) /* protocol error */
155*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(STATE, enum sctp_state, state)
156*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(TO, enum sctp_event_timeout, to)
157*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(CHUNK, struct sctp_chunk *, chunk)
158*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(ASOC, struct sctp_association *, asoc)
159*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(TRANSPORT, struct sctp_transport *, transport)
160*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(BA, struct sctp_bind_addr *, bp)
161*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(PEER_INIT, struct sctp_init_chunk *, init)
162*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(ULPEVENT, struct sctp_ulpevent *, ulpevent)
163*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(PACKET, struct sctp_packet *, packet)
164*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(SACKH, struct sctp_sackhdr *, sackh)
165*4882a593Smuzhiyun SCTP_ARG_CONSTRUCTOR(DATAMSG, struct sctp_datamsg *, msg)
166*4882a593Smuzhiyun
167*4882a593Smuzhiyun static inline union sctp_arg SCTP_FORCE(void)
168*4882a593Smuzhiyun {
169*4882a593Smuzhiyun return SCTP_I32(1);
170*4882a593Smuzhiyun }
171*4882a593Smuzhiyun
SCTP_NOFORCE(void)172*4882a593Smuzhiyun static inline union sctp_arg SCTP_NOFORCE(void)
173*4882a593Smuzhiyun {
174*4882a593Smuzhiyun return SCTP_I32(0);
175*4882a593Smuzhiyun }
176*4882a593Smuzhiyun
SCTP_NULL(void)177*4882a593Smuzhiyun static inline union sctp_arg SCTP_NULL(void)
178*4882a593Smuzhiyun {
179*4882a593Smuzhiyun union sctp_arg retval;
180*4882a593Smuzhiyun retval.zero_all = NULL;
181*4882a593Smuzhiyun return retval;
182*4882a593Smuzhiyun }
183*4882a593Smuzhiyun
184*4882a593Smuzhiyun struct sctp_cmd {
185*4882a593Smuzhiyun union sctp_arg obj;
186*4882a593Smuzhiyun enum sctp_verb verb;
187*4882a593Smuzhiyun };
188*4882a593Smuzhiyun
189*4882a593Smuzhiyun struct sctp_cmd_seq {
190*4882a593Smuzhiyun struct sctp_cmd cmds[SCTP_MAX_NUM_COMMANDS];
191*4882a593Smuzhiyun struct sctp_cmd *last_used_slot;
192*4882a593Smuzhiyun struct sctp_cmd *next_cmd;
193*4882a593Smuzhiyun };
194*4882a593Smuzhiyun
195*4882a593Smuzhiyun
196*4882a593Smuzhiyun /* Initialize a block of memory as a command sequence.
197*4882a593Smuzhiyun * Return 0 if the initialization fails.
198*4882a593Smuzhiyun */
sctp_init_cmd_seq(struct sctp_cmd_seq * seq)199*4882a593Smuzhiyun static inline int sctp_init_cmd_seq(struct sctp_cmd_seq *seq)
200*4882a593Smuzhiyun {
201*4882a593Smuzhiyun /* cmds[] is filled backwards to simplify the overflow BUG() check */
202*4882a593Smuzhiyun seq->last_used_slot = seq->cmds + SCTP_MAX_NUM_COMMANDS;
203*4882a593Smuzhiyun seq->next_cmd = seq->last_used_slot;
204*4882a593Smuzhiyun return 1; /* We always succeed. */
205*4882a593Smuzhiyun }
206*4882a593Smuzhiyun
207*4882a593Smuzhiyun
208*4882a593Smuzhiyun /* Add a command to an struct sctp_cmd_seq.
209*4882a593Smuzhiyun *
210*4882a593Smuzhiyun * Use the SCTP_* constructors defined by SCTP_ARG_CONSTRUCTOR() above
211*4882a593Smuzhiyun * to wrap data which goes in the obj argument.
212*4882a593Smuzhiyun */
sctp_add_cmd_sf(struct sctp_cmd_seq * seq,enum sctp_verb verb,union sctp_arg obj)213*4882a593Smuzhiyun static inline void sctp_add_cmd_sf(struct sctp_cmd_seq *seq,
214*4882a593Smuzhiyun enum sctp_verb verb, union sctp_arg obj)
215*4882a593Smuzhiyun {
216*4882a593Smuzhiyun struct sctp_cmd *cmd = seq->last_used_slot - 1;
217*4882a593Smuzhiyun
218*4882a593Smuzhiyun BUG_ON(cmd < seq->cmds);
219*4882a593Smuzhiyun
220*4882a593Smuzhiyun cmd->verb = verb;
221*4882a593Smuzhiyun cmd->obj = obj;
222*4882a593Smuzhiyun seq->last_used_slot = cmd;
223*4882a593Smuzhiyun }
224*4882a593Smuzhiyun
225*4882a593Smuzhiyun /* Return the next command structure in an sctp_cmd_seq.
226*4882a593Smuzhiyun * Return NULL at the end of the sequence.
227*4882a593Smuzhiyun */
sctp_next_cmd(struct sctp_cmd_seq * seq)228*4882a593Smuzhiyun static inline struct sctp_cmd *sctp_next_cmd(struct sctp_cmd_seq *seq)
229*4882a593Smuzhiyun {
230*4882a593Smuzhiyun if (seq->next_cmd <= seq->last_used_slot)
231*4882a593Smuzhiyun return NULL;
232*4882a593Smuzhiyun
233*4882a593Smuzhiyun return --seq->next_cmd;
234*4882a593Smuzhiyun }
235*4882a593Smuzhiyun
236*4882a593Smuzhiyun #endif /* __net_sctp_command_h__ */
237