1320363d12d27e2eca973d72dec71b3fda1a8377
[linux-flexiantxendom0-3.2.10.git] / include / net / sctp / command.h
1 /* SCTP kernel reference Implementation Copyright (C) 1999-2001
2  * Cisco, Motorola, and IBM
3  *
4  * This file is part of the SCTP kernel reference Implementation
5  *
6  * These are the definitions needed for the command object.
7  *
8  * The SCTP reference implementation  is free software;
9  * you can redistribute it and/or modify it under the terms of
10  * the GNU General Public License as published by
11  * the Free Software Foundation; either version 2, or (at your option)
12  * any later version.
13  *
14  * the SCTP reference implementation  is distributed in the hope that it
15  * will be useful, but WITHOUT ANY WARRANTY; without even the implied
16  *                 ************************
17  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18  * See the GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with GNU CC; see the file COPYING.  If not, write to
22  * the Free Software Foundation, 59 Temple Place - Suite 330,
23  * Boston, MA 02111-1307, USA.
24  *
25  * Please send any bug reports or fixes you make to one of the
26  * following email addresses:
27  *
28  * La Monte H.P. Yarroll <piggy@acm.org>
29  * Karl Knutson <karl@athena.chicago.il.us>
30  * Ardelle Fan <ardelle.fan@intel.com>
31  *
32  * Any bugs reported given to us we will try to fix... any fixes shared will
33  * be incorporated into the next SCTP release.
34  */
35
36
37 #ifndef __net_sctp_command_h__
38 #define __net_sctp_command_h__
39
40 #include <net/sctp/constants.h>
41 #include <net/sctp/structs.h>
42
43
44 typedef enum {
45         SCTP_CMD_NOP = 0,       /* Do nothing. */
46         SCTP_CMD_NEW_ASOC,      /* Register a new association.  */
47         SCTP_CMD_DELETE_TCB,    /* Delete the current association. */
48         SCTP_CMD_NEW_STATE,     /* Enter a new state.  */
49         SCTP_CMD_REPORT_TSN,    /* Record the arrival of a TSN.  */
50         SCTP_CMD_GEN_SACK,      /* Send a Selective ACK (maybe).  */
51         SCTP_CMD_PROCESS_SACK,  /* Process an inbound SACK.  */
52         SCTP_CMD_GEN_INIT_ACK,  /* Generate an INIT ACK chunk.  */
53         SCTP_CMD_PEER_INIT,     /* Process a INIT from the peer.  */
54         SCTP_CMD_GEN_COOKIE_ECHO, /* Generate a COOKIE ECHO chunk. */
55         SCTP_CMD_CHUNK_ULP,     /* Send a chunk to the sockets layer.  */
56         SCTP_CMD_EVENT_ULP,     /* Send a notification to the sockets layer. */
57         SCTP_CMD_REPLY,         /* Send a chunk to our peer.  */
58         SCTP_CMD_SEND_PKT,      /* Send a full packet to our peer.  */
59         SCTP_CMD_RETRAN,        /* Mark a transport for retransmission.  */
60         SCTP_CMD_ECN_CE,        /* Do delayed CE processing.   */
61         SCTP_CMD_ECN_ECNE,      /* Do delayed ECNE processing. */
62         SCTP_CMD_ECN_CWR,       /* Do delayed CWR processing.  */
63         SCTP_CMD_TIMER_START,   /* Start a timer.  */
64         SCTP_CMD_TIMER_RESTART, /* Restart a timer. */
65         SCTP_CMD_TIMER_STOP,    /* Stop a timer. */
66         SCTP_CMD_COUNTER_RESET, /* Reset a counter. */
67         SCTP_CMD_COUNTER_INC,   /* Increment a counter. */
68         SCTP_CMD_INIT_RESTART,  /* High level, do init timer work. */
69         SCTP_CMD_INIT_FAILED,   /* High level, do init failure work. */
70         SCTP_CMD_REPORT_DUP,    /* Report a duplicate TSN.  */
71         SCTP_CMD_STRIKE,        /* Mark a strike against a transport.  */
72         SCTP_CMD_TRANSMIT,      /* Transmit the outqueue. */
73         SCTP_CMD_HB_TIMERS_START,    /* Start the heartbeat timers. */
74         SCTP_CMD_HB_TIMER_UPDATE,    /* Update a heartbeat timers.  */
75         SCTP_CMD_HB_TIMERS_STOP,     /* Stop the heartbeat timers.  */
76         SCTP_CMD_TRANSPORT_RESET,    /* Reset the status of a transport. */
77         SCTP_CMD_TRANSPORT_ON,       /* Mark the transport as active. */
78         SCTP_CMD_REPORT_ERROR,   /* Pass this error back out of the sm. */
79         SCTP_CMD_REPORT_BAD_TAG, /* Verification tags didn't match. */
80         SCTP_CMD_PROCESS_CTSN,   /* Sideeffect from shutdown. */
81         SCTP_CMD_ASSOC_FAILED,   /* Handle association failure. */
82         SCTP_CMD_DISCARD_PACKET, /* Discard the whole packet. */
83         SCTP_CMD_GEN_SHUTDOWN,   /* Generate a SHUTDOWN chunk. */
84         SCTP_CMD_UPDATE_ASSOC,   /* Update association information. */
85         SCTP_CMD_PURGE_OUTQUEUE, /* Purge all data waiting to be sent. */
86         SCTP_CMD_SETUP_T2,       /* Hi-level, setup T2-shutdown parms.  */
87         SCTP_CMD_RTO_PENDING,    /* Set transport's rto_pending. */
88         SCTP_CMD_PART_DELIVER,   /* Partial data delivery considerations. */
89         SCTP_CMD_RENEGE,         /* Renege data on an association. */
90         SCTP_CMD_LAST
91 } sctp_verb_t;
92
93 #define SCTP_CMD_MAX            (SCTP_CMD_LAST - 1)
94 #define SCTP_CMD_NUM_VERBS      (SCTP_CMD_MAX + 1)
95
96 /* How many commands can you put in an sctp_cmd_seq_t?
97  * This is a rather arbitrary number, ideally derived from a careful
98  * analysis of the state functions, but in reality just taken from
99  * thin air in the hopes othat we don't trigger a kernel panic.
100  */
101 #define SCTP_MAX_NUM_COMMANDS 14
102
103 typedef union {
104         __s32 i32;
105         __u32 u32;
106         __u16 u16;
107         __u8 u8;
108         int error;
109         sctp_state_t state;
110         sctp_event_timeout_t to;
111         sctp_counter_t counter;
112         void *ptr;
113         struct sctp_chunk *chunk;
114         struct sctp_association *asoc;
115         struct sctp_transport *transport;
116         struct sctp_bind_addr *bp;
117         sctp_init_chunk_t *init;
118         struct sctp_ulpevent *ulpevent;
119         struct sctp_packet *packet;
120         sctp_sackhdr_t *sackh;
121 } sctp_arg_t;
122
123 /* We are simulating ML type constructors here.
124  *
125  * SCTP_ARG_CONSTRUCTOR(NAME, TYPE, ELT) builds a function called
126  * SCTP_NAME() which takes an argument of type TYPE and returns an
127  * sctp_arg_t.  It does this by inserting the sole argument into the
128  * ELT union element of a local sctp_arg_t.
129  *
130  * E.g., SCTP_ARG_CONSTRUCTOR(I32, __s32, i32) builds SCTP_I32(arg),
131  * which takes an __s32 and returns a sctp_arg_t containing the
132  * __s32.  So, after foo = SCTP_I32(arg), foo.i32 == arg.
133  */
134 static inline sctp_arg_t SCTP_NULL(void)
135 {
136         sctp_arg_t retval; retval.ptr = NULL; return retval;
137 }
138 static inline sctp_arg_t SCTP_NOFORCE(void)
139 {
140         sctp_arg_t retval; retval.i32 = 0; return retval;
141 }
142 static inline sctp_arg_t SCTP_FORCE(void)
143 {
144         sctp_arg_t retval; retval.i32 = 1; return retval;
145 }
146
147 #define SCTP_ARG_CONSTRUCTOR(name, type, elt) \
148 static inline sctp_arg_t        \
149 SCTP_## name (type arg)         \
150 { sctp_arg_t retval; retval.elt = arg; return retval; }
151
152 SCTP_ARG_CONSTRUCTOR(I32,       __s32, i32)
153 SCTP_ARG_CONSTRUCTOR(U32,       __u32, u32)
154 SCTP_ARG_CONSTRUCTOR(U16,       __u16, u16)
155 SCTP_ARG_CONSTRUCTOR(U8,        __u8, u8)
156 SCTP_ARG_CONSTRUCTOR(ERROR,     int, error)
157 SCTP_ARG_CONSTRUCTOR(STATE,     sctp_state_t, state)
158 SCTP_ARG_CONSTRUCTOR(COUNTER,   sctp_counter_t, counter)
159 SCTP_ARG_CONSTRUCTOR(TO,        sctp_event_timeout_t, to)
160 SCTP_ARG_CONSTRUCTOR(PTR,       void *, ptr)
161 SCTP_ARG_CONSTRUCTOR(CHUNK,     struct sctp_chunk *, chunk)
162 SCTP_ARG_CONSTRUCTOR(ASOC,      struct sctp_association *, asoc)
163 SCTP_ARG_CONSTRUCTOR(TRANSPORT, struct sctp_transport *, transport)
164 SCTP_ARG_CONSTRUCTOR(BA,        struct sctp_bind_addr *, bp)
165 SCTP_ARG_CONSTRUCTOR(PEER_INIT, sctp_init_chunk_t *, init)
166 SCTP_ARG_CONSTRUCTOR(ULPEVENT,  struct sctp_ulpevent *, ulpevent)
167 SCTP_ARG_CONSTRUCTOR(PACKET,    struct sctp_packet *, packet)
168 SCTP_ARG_CONSTRUCTOR(SACKH,     sctp_sackhdr_t *, sackh)
169
170 typedef struct {
171         sctp_arg_t obj;
172         sctp_verb_t verb;
173 } sctp_cmd_t;
174
175 typedef struct {
176         sctp_cmd_t cmds[SCTP_MAX_NUM_COMMANDS];
177         __u8 next_free_slot;
178         __u8 next_cmd;
179 } sctp_cmd_seq_t;
180
181
182 /* Create a new sctp_command_sequence.
183  * Return NULL if creating a new sequence fails.
184  */
185 sctp_cmd_seq_t *sctp_new_cmd_seq(int gfp);
186
187 /* Initialize a block of memory as a command sequence.
188  * Return 0 if the initialization fails.
189  */
190 int sctp_init_cmd_seq(sctp_cmd_seq_t *seq);
191
192 /* Add a command to an sctp_cmd_seq_t.
193  * Return 0 if the command sequence is full.
194  *
195  * Use the SCTP_* constructors defined by SCTP_ARG_CONSTRUCTOR() above
196  * to wrap data which goes in the obj argument.
197  */
198 int sctp_add_cmd(sctp_cmd_seq_t *seq, sctp_verb_t verb, sctp_arg_t obj);
199
200 /* Rewind an sctp_cmd_seq_t to iterate from the start.
201  * Return 0 if the rewind fails.
202  */
203 int sctp_rewind_sequence(sctp_cmd_seq_t *seq);
204
205 /* Return the next command structure in an sctp_cmd_seq.
206  * Return NULL at the end of the sequence.
207  */
208 sctp_cmd_t *sctp_next_cmd(sctp_cmd_seq_t *seq);
209
210 /* Dispose of a command sequence.  */
211 void sctp_free_cmd_seq(sctp_cmd_seq_t *seq);
212
213 #endif /* __net_sctp_command_h__ */
214