2 * Copyright (C) 2006 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup task_manager task_manager
21 #ifndef TASK_MANAGER_H_
22 #define TASK_MANAGER_H_
24 typedef struct task_manager_t task_manager_t
;
29 #include <encoding/message.h>
30 #include <sa/ike_sa.h>
31 #include <sa/tasks/task.h>
34 * First retransmit timeout in milliseconds.
36 #define RETRANSMIT_TIMEOUT 4000
39 * Base which is raised to the power of the retransmission try.
41 #define RETRANSMIT_BASE 1.8
44 * Number of retransmits done before giving up.
46 #define RETRANSMIT_TRIES 5
49 * Interval for mobike routability checks in ms.
51 #define ROUTEABILITY_CHECK_INTERVAL 2500
54 * Number of routability checks before giving up
56 #define ROUTEABILITY_CHECK_TRIES 10
60 * The task manager, juggles task and handles message exchanges.
62 * On incoming requests, the task manager creates new tasks on demand and
63 * juggles the request through all available tasks. Each task inspects the
64 * request and adds payloads as necessary to the response.
65 * On outgoing requests, the task manager delivers the request through the tasks
66 * to build it, the response gets processed by each task to complete.
67 * The task manager has an internal Queue to store task which should get
69 * For the initial IKE_SA setup, several tasks are queued: One for the
70 * unauthenticated IKE_SA setup, one for authentication, one for CHILD_SA setup
71 * and maybe one for virtual IP assignement.
72 * The task manager is also responsible for retransmission. It uses a backoff
73 * algorithm. The timeout is calculated using
74 * RETRANSMIT_TIMEOUT * (RETRANSMIT_BASE ** try).
75 * When try reaches RETRANSMIT_TRIES, retransmission is given up.
77 * Using an initial TIMEOUT of 4s, a BASE of 1.8, and 5 TRIES gives us:
80 ---------------------------------------------------------
81 4s * (1.8 ** 0) = 4s 4s
82 4s * (1.8 ** 1) = 7s 11s
83 4s * (1.8 ** 2) = 13s 24s
84 4s * (1.8 ** 3) = 23s 47s
85 4s * (1.8 ** 4) = 42s 89s
86 4s * (1.8 ** 5) = 76s 165s
89 * The peer is considered dead after 2min 45s when no reply comes in.
91 struct task_manager_t
{
94 * Process an incoming message.
96 * @param message message to add payloads to
98 * - DESTROY_ME if IKE_SA must be closed
101 status_t (*process_message
) (task_manager_t
*this, message_t
*message
);
104 * Initiate an exchange with the currently queued tasks.
106 status_t (*initiate
) (task_manager_t
*this);
109 * Queue a task in the manager.
111 * @param task task to queue
113 void (*queue_task
) (task_manager_t
*this, task_t
*task
);
116 * Retransmit a request if it hasn't been acknowledged yet.
118 * A return value of INVALID_STATE means that the message was already
119 * acknowledged and has not to be retransmitted. A return value of SUCCESS
120 * means retransmission was required and the message has been resent.
122 * @param message_id ID of the message to retransmit
124 * - INVALID_STATE if retransmission not required
125 * - SUCCESS if retransmission sent
127 status_t (*retransmit
) (task_manager_t
*this, u_int32_t message_id
);
130 * Migrate all tasks from other to this.
132 * To rekey or reestablish an IKE_SA completely, all queued or active
133 * tasks should get migrated to the new IKE_SA.
135 * @param other manager which gives away its tasks
137 void (*adopt_tasks
) (task_manager_t
*this, task_manager_t
*other
);
140 * Reset message ID counters of the task manager.
142 * The IKEv2 protocol requires to restart exchanges with message IDs
143 * reset to zero (INVALID_KE_PAYLOAD, COOKIES, ...). The reset() method
144 * resets the message IDs and resets all active tasks using the migrate()
146 * Use a value of UINT_MAX to keep the current message ID.
148 * @param initiate message ID to initiate exchanges (send)
149 * @param respond message ID to respond to exchanges (expect)
151 void (*reset
) (task_manager_t
*this, u_int32_t initiate
, u_int32_t respond
);
154 * Check if we are currently waiting for a reply.
156 * @return TRUE if we are waiting, FALSE otherwise
158 bool (*busy
) (task_manager_t
*this);
161 * Destroy the task_manager_t.
163 void (*destroy
) (task_manager_t
*this);
167 * Create an instance of the task manager.
169 * @param ike_sa IKE_SA to manage.
171 task_manager_t
*task_manager_create(ike_sa_t
*ike_sa
);
173 #endif /** TASK_MANAGER_H_ @}*/