2 * @file configuration_manager.h
4 * @brief Manages all configuration aspects of the daemon.
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #ifndef CONFIGURATION_MANAGER_H_
24 #define CONFIGURATION_MANAGER_H_
27 #include <utils/linked_list.h>
28 #include <network/host.h>
29 #include <encoding/payloads/transform_substructure.h>
30 #include <transforms/prfs/prf.h>
31 #include <transforms/signers/signer.h>
32 #include <transforms/crypters/crypter.h>
35 typedef struct configuration_manager_t configuration_manager_t
;
38 * @brief Manages all configuration aspects of the daemon.
40 * Currently the configuration manager class does not store specific configurations.
41 * It is expected, that in future different configurations are stored in a linked list
42 * or a hash map and are managed by this class.
45 struct configuration_manager_t
{
48 * Gets the remote host information for a specific configuration name.
50 * A host information consist of IP address and UDP port.
52 * @param this calling object
53 * @param name name of the configuration
54 * @param host remote host information gets stored at this location
60 status_t (*get_remote_host
) (configuration_manager_t
*this, char *name
, host_t
**host
);
63 * Gets the local host information for a specific configuration name
65 * A host information consist of IP address and UDP port.
67 * @param this calling object
68 * @param name name of the configuration
69 * @param host local host information gets stored at this location
72 * - NOT_FOUND (not yet implemented)
75 status_t (*get_local_host
) (configuration_manager_t
*this, char *name
, host_t
**host
);
78 * Returns the DH group number to use when initiating a connection.
80 * To make sure that different group numbers are supported in case
81 * a group number is not supported by other peer, a priority has to get defined.
84 * @param this calling object
85 * @param name name of the configuration
86 * @param dh_group_number the DH group number gets stored at this location
87 * @param priority priority to use for selection of DH group number.
88 * Highest priority is 1. All higher values have lower
92 * - FAILED (not yet implemented)
93 * - NOT_FOUND (not yet implemented)
96 status_t (*get_dh_group_number
) (configuration_manager_t
*this, char *name
, u_int16_t
*dh_group_number
, u_int16_t priority
);
99 * Returns the proposals which should be used to initiate a connection with a specific
102 * The proposals of type proposal_substructure_t * are returned over the given iterator
103 * and have to be destroyed by the caller.
106 * @param this calling object
107 * @param host host information used to find the correct proposals
108 * @param list iterator where the proposals are written to
111 * - NOT_FOUND (not yet implemented)
114 status_t (*get_proposals_for_host
) (configuration_manager_t
*this, host_t
*host
, iterator_t
*list
);
117 * Checks the suggested proposals passed as iterator in and selects one proposal to be sent as selection
120 * Currently there is no check implemented. The first suggested proposal is cloned and then as selected returned.
123 * @param this calling object
124 * @param host host information used to find the correct proposals
125 * @param in iterator with suggested proposals of type proposal_substructure_t *
126 * @param out The selected proposals of type proposal_substructure_t * are written to this iterator
130 * - NOT_FOUND (not yet implemented)
133 status_t (*select_proposals_for_host
) (configuration_manager_t
*this, host_t
*host
, iterator_t
*in
, iterator_t
*out
);
136 * Checks if the selected proposals of a remote hosts are valid.
139 * @param this calling object
140 * @param host host information
141 * @param proposals iterator with selected proposals
142 * @param[out] valid TRUE if selected proposals are accepted
146 * - NOT_FOUND (not yet implemented)
149 status_t (*check_selected_proposals_for_host
) (configuration_manager_t
*this,
151 iterator_t
*proposals
,
155 * Checks if a given dh_group number is allowed for a specific host
158 * @param this calling object
159 * @param host host information
160 * @param group DH group number to check if allowed
161 * @param[out] allowed will be set to TRUE if group number is allowed, FALSE otherwise
165 * - NOT_FOUND (not yet implemented)
168 status_t (*is_dh_group_allowed_for_host
) (configuration_manager_t
*this, host_t
*host
, diffie_hellman_group_t group
, bool *allowed
);
171 * Destroys configuration manager
174 * @param this calling object
178 status_t (*destroy
) (configuration_manager_t
*this);
182 * Creates the mighty configuration manager
185 * - pointer to created manager object if succeeded
186 * - NULL if memory allocation failed
188 configuration_manager_t
*configuration_manager_create();
190 #endif /*CONFIGURATION_MANAGER_H_*/