8a81439673e968031c0472008c495d7177745063
2 * Copyright (C) 2007 Tobias Brunner
3 * Copyright (C) 2006 Martin Willi
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
25 typedef enum task_type_t task_type_t
;
26 typedef struct task_t task_t
;
29 #include <sa/ike_sa.h>
30 #include <encoding/message.h>
33 * Different kinds of tasks.
36 /** establish an unauthenticated IKE_SA */
38 /** detect NAT situation */
40 /** handle MOBIKE stuff */
42 /** authenticate the initiated IKE_SA */
44 /** AUTH_LIFETIME negotiation, RFC4478 */
45 TASK_IKE_AUTH_LIFETIME
,
46 /** certificate processing before authentication (certreqs, cert parsing) */
48 /** certificate processing after authentication (certs payload generation) */
50 /** Configuration payloads, virtual IP and such */
52 /** rekey an IKE_SA */
54 /** reestablish a complete IKE_SA */
56 /** delete an IKE_SA */
60 /** Vendor ID processing */
63 /** handle ME stuff */
66 /** establish a CHILD_SA within an IKE_SA */
68 /** delete an established CHILD_SA */
70 /** rekey an CHILD_SA */
72 /** IKEv1 main mode */
74 /** IKEv1 quick mode */
79 * enum names for task_type_t.
81 extern enum_name_t
*task_type_names
;
84 * Interface for a task, an operation handled within exchanges.
86 * A task is an elemantary operation. It may be handled by a single or by
87 * multiple exchanges. An exchange may even complete multiple tasks.
88 * A task has a build() and an process() operation. The build() operation
89 * creates payloads and adds it to the message. The process() operation
90 * inspects a message and handles its payloads. An initiator of an exchange
91 * first calls build() to build the request, and processes the response message
92 * with the process() method.
93 * A responder does the opposite; it calls process() first to handle an incoming
94 * request and secondly calls build() to build an appropriate response.
95 * Both methods return either SUCCESS, NEED_MORE or FAILED. A SUCCESS indicates
96 * that the task completed, even when the task completed unsuccessfully. The
97 * manager then removes the task from the list. A NEED_MORE is returned when
98 * the task needs further build()/process() calls to complete, the manager
99 * leaves the taks in the queue. A returned FAILED indicates a critical failure.
100 * The manager closes the IKE_SA whenever a task returns FAILED.
105 * Build a request or response message for this task.
107 * @param message message to add payloads to
109 * - FAILED if a critical error occurred
110 * - DESTROY_ME if IKE_SA has been properly deleted
111 * - NEED_MORE if another call to build/process needed
112 * - SUCCESS if task completed
114 status_t (*build
) (task_t
*this, message_t
*message
);
117 * Process a request or response message for this task.
119 * @param message message to read payloads from
121 * - FAILED if a critical error occurred
122 * - DESTROY_ME if IKE_SA has been properly deleted
123 * - NEED_MORE if another call to build/process needed
124 * - SUCCESS if task completed
126 status_t (*process
) (task_t
*this, message_t
*message
);
129 * Get the type of the task implementation.
131 task_type_t (*get_type
) (task_t
*this);
134 * Migrate a task to a new IKE_SA.
136 * After migrating a task, it goes back to a state where it can be
137 * used again to initate an exchange. This is useful when a task
138 * has to get migrated to a new IKE_SA.
139 * A special usage is when a INVALID_KE_PAYLOAD is received. A call
140 * to reset resets the task, but uses another DH group for the next
142 * The ike_sa is the new IKE_SA this task belongs to and operates on.
144 * @param ike_sa new IKE_SA this task works for
146 void (*migrate
) (task_t
*this, ike_sa_t
*ike_sa
);
149 * Destroys a task_t object.
151 void (*destroy
) (task_t
*this);
154 #endif /** TASK_H_ @}*/