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