command.h 9.1 KB

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