The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
base.c
Go to the documentation of this file.
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17/**
18 * $Id: 9f3020c051710feaeee522d1312be52b81586021 $
19 * @file src/process/tls/base.c
20 * @brief TLS processing.
21 *
22 * @copyright 2021 Arran Cudbard-Bell (a.cudbardb@freeradius.org)
23 */
24#include <freeradius-devel/server/protocol.h>
25#include <freeradius-devel/util/debug.h>
26#include <freeradius-devel/protocol/tls/freeradius.h>
27
28static fr_dict_t const *dict_tls;
29
32 { .out = &dict_tls, .proto = "tls" },
33 { NULL }
34};
35
37
40 { .out = &attr_packet_type, .name = "Packet-Type", .type = FR_TYPE_UINT32, .dict = &dict_tls},
41 { NULL }
42};
43
52
56
57#define FR_TLS_PACKET_CODE_VALID(_code) (((_code) > 0) && ((_code) <= FR_PACKET_TYPE_VALUE_NOTFOUND))
58
59#define PROCESS_INST process_tls_t
60#define PROCESS_PACKET_TYPE uint32_t
61#define PROCESS_CODE_DO_NOT_RESPOND FR_PACKET_TYPE_VALUE_FAILURE
62#define PROCESS_PACKET_CODE_VALID FR_TLS_PACKET_CODE_VALID
63
64#include <freeradius-devel/server/process.h>
65
66static fr_process_state_t const process_state[] = {
67 [FR_PACKET_TYPE_VALUE_LOAD_SESSION] = {
68 .packet_type = {
69 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
70 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
71
72 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_FAILURE,
73 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
74 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
75 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
76 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
77 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
78 },
79 .rcode = RLM_MODULE_NOOP,
80 .recv = recv_generic,
81 .resume = resume_recv_no_send,
82 .section_offset = PROCESS_CONF_OFFSET(load_session),
83 },
84 [FR_PACKET_TYPE_VALUE_STORE_SESSION] = {
85 .packet_type = {
86 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
87 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
88
89 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_FAILURE,
90 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
91 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
92 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
93 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
94 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
95 },
96 .rcode = RLM_MODULE_NOOP,
97 .recv = recv_generic,
98 .resume = resume_recv_no_send,
99 .section_offset = PROCESS_CONF_OFFSET(store_session),
100 },
101 [FR_PACKET_TYPE_VALUE_CLEAR_SESSION] = {
102 .packet_type = {
103 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
104 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
105
106 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_FAILURE,
107 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
108 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
109 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
110 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
111 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
112 },
113 .rcode = RLM_MODULE_NOOP,
114 .recv = recv_generic,
115 .resume = resume_recv_no_send,
116 .section_offset = PROCESS_CONF_OFFSET(clear_session),
117 },
118 [FR_PACKET_TYPE_VALUE_VERIFY_CERTIFICATE] = {
119 .packet_type = {
120 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
121 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
122 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_SUCCESS,
123
124 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
125 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
126 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
127 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
128 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
129 },
130 .rcode = RLM_MODULE_NOOP,
131 .recv = recv_generic,
132 .resume = resume_recv_no_send,
133 .section_offset = PROCESS_CONF_OFFSET(verify_certificate),
134 },
135 [FR_PACKET_TYPE_VALUE_NEW_SESSION] = {
136 .packet_type = {
137 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
138 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
139 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_SUCCESS,
140
141 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
142 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
143 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
144 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
145 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
146 },
147 .rcode = RLM_MODULE_NOOP,
148 .recv = recv_generic,
149 .resume = resume_recv_no_send,
150 .section_offset = PROCESS_CONF_OFFSET(new_session),
151 },
152 [FR_PACKET_TYPE_VALUE_ESTABLISH_SESSION] = {
153 .packet_type = {
154 [RLM_MODULE_OK] = FR_PACKET_TYPE_VALUE_SUCCESS,
155 [RLM_MODULE_UPDATED] = FR_PACKET_TYPE_VALUE_SUCCESS,
156 [RLM_MODULE_NOOP] = FR_PACKET_TYPE_VALUE_SUCCESS,
157
158 [RLM_MODULE_REJECT] = FR_PACKET_TYPE_VALUE_FAILURE,
159 [RLM_MODULE_FAIL] = FR_PACKET_TYPE_VALUE_FAILURE,
160 [RLM_MODULE_INVALID] = FR_PACKET_TYPE_VALUE_FAILURE,
161 [RLM_MODULE_DISALLOW] = FR_PACKET_TYPE_VALUE_FAILURE,
162 [RLM_MODULE_NOTFOUND] = FR_PACKET_TYPE_VALUE_NOTFOUND,
163 },
164 .rcode = RLM_MODULE_NOOP,
165 .recv = recv_generic,
166 .resume = resume_recv_no_send,
167 .section_offset = PROCESS_CONF_OFFSET(establish_session),
168 },
169};
170
171static unlang_action_t mod_process(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
172{
173 fr_process_state_t const *state;
174
176
178
179 request->component = "tls";
180 request->module = NULL;
181 fr_assert(request->dict == dict_tls);
182
183 UPDATE_STATE(packet);
184
185 log_request_pair_list(L_DBG_LVL_1, request, NULL, &request->request_pairs, NULL);
186
187 return state->recv(p_result, mctx, request);
188}
189
191 {
192 .section = SECTION_NAME("store", "session"),
193 .actions = &mod_actions_authorize,
194 .offset = PROCESS_CONF_OFFSET(store_session)
195 },
196 {
197 .section = SECTION_NAME("load", "session"),
199 .offset = PROCESS_CONF_OFFSET(load_session)
200 },
201 {
202 .section = SECTION_NAME("clear", "session"),
204 .offset = PROCESS_CONF_OFFSET(clear_session)
205 },
206 {
207 .section = SECTION_NAME("verify", "certificate"),
209 .offset = PROCESS_CONF_OFFSET(verify_certificate)
210 },
211 {
212 .section = SECTION_NAME("new", "session"),
214 .offset = PROCESS_CONF_OFFSET(new_session)
215 },
216 {
217 .section = SECTION_NAME("establish", "session"),
219 .offset = PROCESS_CONF_OFFSET(establish_session)
220 },
222};
223
224
227 .common = {
228 .magic = MODULE_MAGIC_INIT,
229 .name = "tls",
230 .inst_size = sizeof(process_tls_t)
231 },
232 .process = mod_process,
233 .compile_list = compile_list,
234 .dict = &dict_tls,
235};
unlang_action_t
Returned by unlang_op_t calls, determine the next action of the interpreter.
Definition action.h:35
A section grouping multiple CONF_PAIR.
Definition cf_priv.h:101
fr_dict_attr_t const ** out
Where to write a pointer to the resolved fr_dict_attr_t.
Definition dict.h:272
fr_dict_t const ** out
Where to write a pointer to the loaded/resolved fr_dict_t.
Definition dict.h:285
Specifies an attribute which must be present for the module to function.
Definition dict.h:271
Specifies a dictionary which must be loaded/loadable for the module to function.
Definition dict.h:284
#define MODULE_MAGIC_INIT
Stop people using different module/library/server versions together.
Definition dl_module.h:63
fr_dict_attr_t const * attr_packet_type
Definition base.c:93
fr_dict_t const * dict_tls
Definition base.c:79
void log_request_pair_list(fr_log_lvl_t lvl, request_t *request, fr_pair_t const *parent, fr_pair_list_t const *vps, char const *prefix)
Print a fr_pair_list_t.
Definition log.c:828
@ L_DBG_LVL_1
Highest priority debug messages (-x).
Definition log.h:70
@ FR_TYPE_UINT32
32 Bit unsigned integer.
unlang_mod_actions_t const mod_actions_authorize
Definition mod_action.c:44
unlang_mod_action_t actions[RLM_MODULE_NUMCODES]
Definition mod_action.h:62
module_instance_t const * mi
Instance of the module being instantiated.
Definition module_ctx.h:42
Temporary structure to hold arguments for module calls.
Definition module_ctx.h:41
static unlang_action_t mod_process(rlm_rcode_t *p_result, module_ctx_t const *mctx, request_t *request)
Definition base.c:179
static const virtual_server_compile_t compile_list[]
Definition base.c:205
static fr_process_state_t const process_state[]
Definition base.c:68
CONF_SECTION * establish_session
Definition base.c:50
fr_process_module_t process_tls
Definition base.c:226
CONF_SECTION * store_session
Definition base.c:46
fr_dict_autoload_t process_tls_dict[]
Definition base.c:31
CONF_SECTION * load_session
Definition base.c:45
CONF_SECTION * clear_session
Definition base.c:47
fr_dict_attr_autoload_t process_tls_dict_attr[]
Definition base.c:39
CONF_SECTION * verify_certificate
Definition base.c:48
CONF_SECTION * new_session
Definition base.c:49
process_tls_sections_t sections
Definition base.c:54
#define PROCESS_TRACE
Trace each state function as it's entered.
Definition process.h:65
module_t common
Common fields for all loadable modules.
Definition process.h:55
Common public symbol definition for all process modules.
Definition process.h:54
#define fr_assert(_expr)
Definition rad_assert.h:38
rlm_rcode_t
Return codes indicating the result of the module call.
Definition rcode.h:40
@ RLM_MODULE_INVALID
The module considers the request invalid.
Definition rcode.h:45
@ RLM_MODULE_OK
The module is OK, continue.
Definition rcode.h:43
@ RLM_MODULE_FAIL
Module failed, don't reply.
Definition rcode.h:42
@ RLM_MODULE_DISALLOW
Reject the request (user is locked out).
Definition rcode.h:46
@ RLM_MODULE_REJECT
Immediately reject the request.
Definition rcode.h:41
@ RLM_MODULE_NOTFOUND
User not found.
Definition rcode.h:47
@ RLM_MODULE_UPDATED
OK (pairs modified).
Definition rcode.h:49
@ RLM_MODULE_NOOP
Module succeeded without doing anything.
Definition rcode.h:48
#define SECTION_NAME(_name1, _name2)
Define a section name consisting of a verb and a noun.
Definition section.h:40
size_t inst_size
Size of the module's instance data.
Definition module.h:203
void * data
Module's instance data.
Definition module.h:271
#define talloc_get_type_abort_const
Definition talloc.h:282
#define COMPILE_TERMINATOR
section_name_t const * section
Identifier for the section.
Processing sections which are allowed in this virtual server.