The FreeRADIUS server $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Loading...
Searching...
No Matches
state.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: 484a4497477133bfc9e48167e6bef3fc8521814b $
19 *
20 * @brief Multi-packet state handling
21 * @file src/lib/server/state.c
22 *
23 * @ingroup AVP
24 *
25 * For each round of a multi-round authentication method such as EAP,
26 * or a 2FA method such as OTP, a state entry will be created. The state
27 * entry holds data that should be available during the complete lifecycle
28 * of the authentication attempt.
29 *
30 * When a request is complete, #fr_state_store is called to transfer
31 * ownership of the state fr_pair_ts and state_ctx (which the fr_pair_ts
32 * are allocated in) to a #fr_state_entry_t. This #fr_state_entry_t holds the
33 * value of the State attribute, that will be send out in the response.
34 *
35 * When the next request is received, #fr_state_restore is called to transfer
36 * the fr_pair_ts and state ctx to the new request.
37 *
38 * The ownership of the state_ctx and state fr_pair_ts is transferred as below:
39 *
40 * @verbatim
41 request -> state_entry -> request -> state_entry -> request -> free()
42 \-> reply \-> reply \-> access-reject/access-accept
43 * @endverbatim
44 *
45 * @copyright 2014 The FreeRADIUS server project
46 */
47RCSID("$Id: 484a4497477133bfc9e48167e6bef3fc8521814b $")
48
49#include <freeradius-devel/server/request.h>
50#include <freeradius-devel/server/request_data.h>
51#include <freeradius-devel/server/state.h>
52
53#include <freeradius-devel/io/listen.h>
54
55#include <freeradius-devel/util/debug.h>
56#include <freeradius-devel/util/md5.h>
57#include <freeradius-devel/util/rand.h>
58
60 { FR_CONF_OFFSET("timeout", fr_state_config_t, timeout), .dflt = "15" },
61 { FR_CONF_OFFSET("max", fr_state_config_t, max_sessions), .dflt = "4096" },
62 { FR_CONF_OFFSET("max_rounds", fr_state_config_t, max_rounds), .dflt = "50" },
63 { FR_CONF_OFFSET("state_server_id", fr_state_config_t, server_id) },
64 { FR_CONF_OFFSET("dedup_key", fr_state_config_t, dedup_key) },
65
67};
68
69
70/** Holds a state value, and associated fr_pair_ts and data
71 *
72 */
73typedef struct {
74 uint64_t id; //!< State number
75 fr_rb_node_t node; //!< Entry in the state rbtree.
76 union {
77 /** Server ID components
78 *
79 * State values should be unique to a given server
80 */
81 struct state_comp {
82 uint8_t tries; //!< Number of rounds so far in this state sequence.
83 uint8_t tx; //!< Bits changed in the tries counter for this round.
84 uint8_t r_0; //!< Random component.
85 uint8_t server_id; //!< Configured server ID. Used for debugging
86 //!< to locate authentication sessions originating
87 //!< from a particular backend authentication server.
88
89 uint32_t context_id; //!< Hash of the current virtual server, xor'd with
90 //!< r1, r2, r3, r4 after the original state value
91 //!< is sent, but before the state entry is inserted
92 //!< into the tree. The receiving virtual server
93 //!< xor's its hash with the received state before
94 //!< performing the lookup. This means one virtual
95 //!< server can't act on a state entry generated by
96 //!< another, even though the state tree is global
97 //!< to all virtual servers.
98
99 uint8_t vx_0; //!< Random component.
100 uint8_t r_1; //!< Random component.
101 uint8_t vx_1; //!< Random component.
102 uint8_t r_2; //!< Random component.
103
104 uint8_t vx_2; //!< Random component.
105 uint8_t vx_3; //!< Random component.
106 uint8_t r_3; //!< Random component.
107 uint8_t r_4; //!< Random component.
108 } state_comp;
109
110 uint8_t state[sizeof(struct state_comp)]; //!< State value in binary.
111 };
112
113 uint64_t seq_start; //!< Number of first request in this sequence.
114 fr_time_t cleanup; //!< When this entry should be cleaned up.
115
116 /*
117 * Should only even be in one at a time
118 */
119 union {
120 fr_dlist_t expire_entry; //!< Entry in the list of things to expire.
121 fr_dlist_t free_entry; //!< Entry in the list of things to free.
122 };
123
124 unsigned int tries;
125
126 fr_pair_t *ctx; //!< for all session specific data.
127
128 fr_dlist_head_t data; //!< Persistable request data, also parented by ctx.
129
130 request_t *thawed; //!< The request that thawed this entry.
131
132 fr_value_box_t const *dedup_key; //!< Key for dedup
133 fr_rb_node_t dedup_node; //!< Entry in the dedup rbtree
135
136/** A child of a fr_state_entry_t
137 *
138 * Children are tracked using the request data of parents.
139 *
140 * request data is added with identifiers that uniquely identify the
141 * subrequest it should be restored to.
142 *
143 * In this way a top level fr_state_entry_t can hold the session
144 * information for multiple children, and the children may hold
145 * state_child_entry_ts for grandchildren.
146 */
147typedef struct {
148 fr_pair_t *ctx; //!< for all session specific data.
149
150 fr_dlist_head_t data; //!< Persistable request data, also parented by ctx.
151
152 request_t *thawed; //!< The request that thawed this entry.
154
156 uint64_t id; //!< Next ID to assign.
157 uint64_t timed_out; //!< Number of states that were cleaned up due to
158 //!< timeout.
159 fr_state_config_t config; //!< a local copy
160
161 fr_rb_tree_t *tree; //!< rbtree used to lookup state value.
162 fr_rb_tree_t *dedup_tree; //!< rbtree used to do dedups
163 fr_dlist_head_t to_expire; //!< Linked list of entries to free.
164
165 pthread_mutex_t mutex; //!< Synchronisation mutex.
166
167 fr_dict_attr_t const *da; //!< Attribute where the state is stored.
168};
169
170#define PTHREAD_MUTEX_LOCK if (state->config.thread_safe) pthread_mutex_lock
171#define PTHREAD_MUTEX_UNLOCK if (state->config.thread_safe) pthread_mutex_unlock
172
173static void state_entry_unlink(fr_state_tree_t *state, fr_state_entry_t *entry);
174
175/** Compare two fr_state_entry_t based on their state value i.e. the value of the attribute
176 *
177 */
178static int8_t state_entry_cmp(void const *one, void const *two)
179{
180 fr_state_entry_t const *a = one, *b = two;
181 int ret;
182
183 ret = memcmp(a->state, b->state, sizeof(a->state));
184 return CMP(ret, 0);
185}
186
187/** Compare two fr_state_entry_t based on their dedup key
188 *
189 */
190static int8_t state_dedup_cmp(void const *one, void const *two)
191{
192 fr_state_entry_t const *a = one, *b = two;
193
194 return fr_value_box_cmp(a->dedup_key, b->dedup_key);
195}
196
197
198/** Free the state tree
199 *
200 */
202{
203 fr_state_entry_t *entry;
204
205 if (state->config.thread_safe) pthread_mutex_destroy(&state->mutex);
206
207 DEBUG4("Freeing state tree %p", state);
208
209 while ((entry = fr_dlist_head(&state->to_expire)) != NULL) {
210 state_entry_unlink(state, entry);
211 DEBUG4("Freeing state entry %p (%" PRIu64 ")", entry, entry->id);
212 talloc_free(entry);
213 }
214
215 /*
216 * Free the rbtree
217 */
218 talloc_free(state->tree);
219
220 return 0;
221}
222
223/** Initialise a new state tree
224 *
225 * @param[in] ctx to link the lifecycle of the state tree to.
226 * @param[in] da Attribute used to store and retrieve state from.
227 * @param[in] config the configuration data
228 * @return
229 * - A new state tree.
230 * - NULL on failure.
231 */
233{
234 fr_state_tree_t *state;
235
236 /*
237 * We can only handle 'octets' types.
238 */
239 if (da->type != FR_TYPE_OCTETS) {
240 fr_strerror_printf("Input state attribute '%s' has data type %s instead of 'octets'",
241 da->name, fr_type_to_str(da->type));
242 return NULL;
243 }
244
245 state = talloc_zero(NULL, fr_state_tree_t);
246 if (!state) return 0;
247
248 state->config = *config;
249 state->da = da; /* Remember which attribute we use to load/store state */
250
251 /*
252 * Some systems may start a new session before closing
253 * out the old one. The dedup key lets us find
254 * pre-existing sessions, and close them out.
255 */
256 if (config->dedup_key) {
257 if ((!tmpl_is_attr(config->dedup_key) &&
258 !tmpl_is_xlat(config->dedup_key)) ||
259 tmpl_needs_resolving(config->dedup_key)) {
260 fr_strerror_const("Invalid value for \"dedup_key\" - it must be an attribute reference or a simple expansion");
261 talloc_free(state);
262 return NULL;
263 }
264
265 if (tmpl_async_required(config->dedup_key)) {
266 fr_strerror_const("Invalid value for \"dedup_key\" - it must be a simple expansion, and cannot query external systems such as databases");
267 talloc_free(state);
268 return NULL;
269 }
270 }
271
272 /*
273 * Create a break in the contexts.
274 * We still want this to be freed at the same time
275 * as the parent, but we also need it to be thread
276 * safe, and multiple threads could be using the
277 * tree.
278 */
279 talloc_link_ctx(ctx, state);
280
281 if (state->config.thread_safe && (pthread_mutex_init(&state->mutex, NULL) != 0)) {
282 talloc_free(state);
283 return NULL;
284 }
285
286 fr_dlist_talloc_init(&state->to_expire, fr_state_entry_t, free_entry);
287
288 /*
289 * We need to do controlled freeing of the
290 * rbtree, so that all the state entries
291 * are freed before it's destroyed. Hence
292 * it being parented from the NULL ctx.
293 */
295 if (!state->tree) {
296 talloc_free(state);
297 return NULL;
298 }
299 talloc_set_destructor(state, _state_tree_free);
300
301 if (config->dedup_key) {
302 state->dedup_tree = fr_rb_inline_talloc_alloc(state->tree, fr_state_entry_t, dedup_node, state_dedup_cmp, NULL);
303 if (!state->dedup_tree) {
304 talloc_free(state);
305 return NULL;
306 }
307 }
308
309 return state;
310}
311
312/** Unlink an entry and remove if from the tree
313 *
314 */
315static inline CC_HINT(always_inline)
317{
318 /*
319 * Check the memory is still valid
320 */
321 (void) talloc_get_type_abort(entry, fr_state_entry_t);
322
323 fr_dlist_remove(&state->to_expire, entry);
324 fr_rb_delete(state->tree, entry);
325 if (state->dedup_tree) fr_rb_delete(state->dedup_tree, entry);
326
327 DEBUG4("State ID %" PRIu64 " unlinked", entry->id);
328}
329
330/** Frees any data associated with a state
331 *
332 */
334{
335#ifdef WITH_VERIFY_PTR
336 fr_dcursor_t cursor;
337 fr_pair_t *vp;
338
339 /*
340 * Verify all state attributes are parented
341 * by the state context.
342 */
343 if (entry->ctx) {
344 for (vp = fr_pair_dcursor_init(&cursor, &entry->ctx->children);
345 vp;
346 vp = fr_dcursor_next(&cursor)) {
347 fr_assert(entry->ctx == talloc_parent(vp));
348 }
349 }
350
351 /*
352 * Ensure any request data is parented by us
353 * so we know it'll be cleaned up.
354 */
355 (void)fr_cond_assert(request_data_verify_parent(entry->ctx, &entry->data));
356#endif
357
358 /*
359 * Should also free any state attributes
360 */
361 if (entry->ctx) TALLOC_FREE(entry->ctx);
362
363 DEBUG4("State ID %" PRIu64 " freed", entry->id);
364
365 return 0;
366}
367
369{
370
371 uint64_t hash;
372
373 /*
374 * Use the supplied State if it's the correct size.
375 */
376 if (vb->vb_length == sizeof(entry->state)) {
377 memcpy(&entry->state, vb->vb_octets, vb->vb_length);
378 return;
379 }
380
381 /*
382 * Otherwise hash the data.
383 */
384 memset(&entry->state, 0, sizeof(entry->state));
385
386 hash = fr_hash64(vb->vb_octets, vb->vb_length);
387 memcpy(&entry->state, &hash, sizeof(hash));
388}
389
390/** Create a new state entry
391 *
392 * @note Called with the mutex held.
393 */
395 fr_pair_list_t *reply_list, fr_state_entry_t *old,
396 fr_value_box_t const *dedup_key)
397{
398 fr_time_t now = fr_time();
399 fr_pair_t *vp;
400 fr_state_entry_t *entry;
401
402 uint64_t timed_out = 0;
403 bool too_many = false;
404 fr_dlist_head_t to_free;
405
406 /*
407 * If we have a previous entry, then it can't be in an
408 * expiry list, and it can't be in the list of states
409 * where we have sent a reply.
410 */
411 fr_assert(!old ||
412 (!fr_dlist_entry_in_list(&old->expire_entry) &&
414
415 /*
416 * If we have a previous entry and a dedup_tree, then we
417 * must have a dedup key, AND the entry must be in the
418 * dedup tree.
419 */
420 fr_assert(!old || !state->dedup_tree || (old->dedup_key && fr_rb_node_inline_in_tree(&old->dedup_node)));
421
422 /*
423 * If there is an old entry, we can't have a dedup_key.
424 */
425 fr_assert(!old || !dedup_key);
426
427 /*
428 * We track a separate free list, as we have to check
429 * expiration with the mutex locked. But we want to free
430 * things with the mutex unlocked.
431 */
432 fr_dlist_init(&to_free, fr_state_entry_t, free_entry);
433
434 /*
435 * Clean up expired entries which have not finished. If
436 * the request fails, then the corresponding entry is
437 * discarded. So the expiration list is only for entries
438 * which have been half-started, and then (many seconds
439 * later) haven't seen a "next" packet.
440 */
441 fr_dlist_foreach(&state->to_expire, fr_state_entry_t, expires) {
442 (void)talloc_get_type_abort(expires, fr_state_entry_t); /* Allow examination */
443
444 /*
445 * It's active (and asserted so above), so it can't be in the expiry list.
446 */
447 fr_assert(expires != old);
448
449 /*
450 * Too old, we can delete it.
451 */
452 if (fr_time_lt(expires->cleanup, now)) {
453 state_entry_unlink(state, expires);
454 fr_dlist_insert_tail(&to_free, expires);
455 timed_out++;
456 continue;
457 }
458
459 break;
460 }
461
462 if (!old) {
463 /*
464 * We're inserting a new session. Limit the
465 * number of sessions based on how many are in
466 * the RB tree. If at least one session has
467 * timed out, then we can definitely add a new
468 * session.
469 *
470 * Note that sessions being processed are removed
471 * from the tree. This means that the maximum
472 * number of sessions might actually be
473 * max_session+num_workers. In practice this
474 * shouldn't be a problem.
475 */
476 too_many = (fr_rb_num_elements(state->tree) >= state->config.max_sessions) && (timed_out == 0);
477
478 /*
479 * If there is a previous session for the same dedup key, then remove the old one from
480 * the dedup tree.
481 */
482 if (dedup_key) {
483 fr_state_entry_t *unfinished;
484
485 unfinished = fr_rb_find(state->dedup_tree, &(fr_state_entry_t) { .dedup_key = dedup_key });
486 if (unfinished) {
487 state_entry_unlink(state, unfinished);
488 fr_dlist_insert_tail(&to_free, unfinished);
489 }
490 }
491 }
492
494
495 if (timed_out > 0) {
496 RWDEBUG("Cleaning up %"PRIu64" timed out state entries", timed_out);
497 state->timed_out += timed_out;
498
499 /*
500 * Now free the unlinked entries.
501 *
502 * We do it here as freeing may involve significantly more
503 * work than just freeing the data.
504 *
505 * If there's request data that was persisted it will now
506 * be freed also, and it may have complex destructors associated
507 * with it.
508 */
509 fr_dlist_talloc_free(&to_free);
510
511 } else if (too_many) {
512 talloc_const_free(dedup_key);
513 RERROR("Failed inserting state entry - At maximum ongoing session limit (%u)",
514 state->config.max_sessions);
515 return NULL;
516 }
517
518 /*
519 * Allocation doesn't need to occur inside the critical region
520 * and would add significantly to contention.
521 */
522 if (!old) {
523 MEM(entry = talloc_zero(NULL, fr_state_entry_t));
524 talloc_set_destructor(entry, _state_entry_free);
525
526 entry->id = state->id++;
527
528 } else {
529 fr_assert(!old->ctx);
530 entry = old;
531 }
532
534
535 /*
536 * Limit the lifetime of this entry based on how long the
537 * server takes to process a request. Doing it this way
538 * isn't perfect, but it's reasonable, and it's one less
539 * thing for an administrator to configure.
540 */
541 entry->cleanup = fr_time_add(now, state->config.timeout);
542
543 /*
544 * Some modules either create their own state, or need to
545 * synthesize it from data in a packet header. If we
546 * have such a state, then use that in preference to
547 * creating a random one.
548 */
549 vp = fr_pair_find_by_da(reply_list, NULL, state->da);
550 if (vp && vp->vp_length) {
551 state_entry_fill(entry, &vp->data);
552
553 } else {
554 if (old) {
555 /*
556 * Just re-use the old state.
557 */
558 entry->tries++;
559
560 if (entry->tries > state->config.max_rounds) {
561 RERROR("Failed tracking state entry - too many rounds (%u)", entry->tries);
562 goto fail;
563 }
564 } else {
565 size_t i;
567
568 if (dedup_key) entry->dedup_key = talloc_steal(entry, dedup_key);
569
570 /*
571 * Get a bunch of random numbers.
572 */
573 for (i = 0; i < sizeof(entry->state); i+= 4) {
574 hash = fr_rand();
575 memcpy(&entry->state[i], &hash, sizeof(hash));
576 }
577
578 /*
579 * Add in a server ID. This lets a "FreeRADIUS
580 * aware" load balancer direct the packet based
581 * on the contents of the State attribute.
582 */
583 entry->state_comp.server_id = state->config.server_id;
584
585 /*
586 * Add our own custom brand of magic.
587 */
588 entry->state_comp.vx_0 = entry->state_comp.r_0 ^
589 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 24) & 0xff);
590 entry->state_comp.vx_1 = entry->state_comp.r_0 ^
591 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 16) & 0xff);
592 entry->state_comp.vx_2 = entry->state_comp.r_0 ^
593 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 8) & 0xff);
594 entry->state_comp.vx_3 = entry->state_comp.r_0 ^
595 (((uint32_t) HEXIFY(RADIUSD_VERSION)) & 0xff);
596 }
597
598 /*
599 * Track the number of round trips, too.
600 */
601 entry->state_comp.tx ^= entry->tries;
602 entry->state_comp.tries = entry->tries ^ entry->state_comp.r_3;
603
604 MEM(vp = fr_pair_afrom_da(request->reply_ctx, state->da));
605 fr_pair_value_memdup(vp, entry->state, sizeof(entry->state), false);
606 fr_pair_append(reply_list, vp);
607 }
608
609 DEBUG4("State ID %" PRIu64 " created, value 0x%pH, expires %pV",
610 entry->id, &vp->data,
612
613 /*
614 * XOR the server hash with four bytes of random context
615 * ID after adding it to the reply, but before inserting
616 * it into the RB rtree. We XOR is again before looking
617 * it up in the tree, to ensure state lookups only
618 * succeed in the virtual server that created the state
619 * value.
620 */
621 entry->state_comp.context_id ^= state->config.context_id;
622
623 PTHREAD_MUTEX_LOCK(&state->mutex);
624
625 if (!fr_rb_insert(state->tree, entry)) {
626 fail_unlock:
628 RERROR("Failed inserting state entry - Insertion into state tree failed");
629 fail:
630 fr_pair_delete_by_da(reply_list, state->da);
631 talloc_free(entry);
632 return NULL;
633 }
634
635 /*
636 * Ensure that we can de-duplicate things if the supplicant is misbehaving.
637 */
638 if (state->dedup_tree && !old) {
639 if (!fr_rb_insert(state->dedup_tree, entry)) {
640 (void) fr_rb_remove(state->tree, entry);
641 goto fail_unlock;
642 }
643 }
644
645 /*
646 * Link it to the end of the list, which is implicitly
647 * ordered by cleanup time.
648 */
649 fr_dlist_insert_tail(&state->to_expire, entry);
650
651 entry->thawed = NULL;
652
653 return entry;
654}
655
656/** Find the entry based on the State attribute and remove it from the state tree
657 *
658 */
660{
661 fr_state_entry_t *entry, my_entry;
662
663 state_entry_fill(&my_entry, vb);
664
665 /*
666 * Make it unique for different virtual servers handling the same request
667 */
668 my_entry.state_comp.context_id ^= state->config.context_id;
669
670 entry = fr_rb_remove(state->tree, &my_entry);
671 if (entry) {
672 (void) talloc_get_type_abort(entry, fr_state_entry_t);
673 fr_dlist_remove(&state->to_expire, entry);
674 }
675
676 return entry;
677}
678
679
680/** Called when sending an Access-Accept/Access-Reject to discard state information
681 *
682 */
684{
685 fr_state_entry_t *entry;
686
687 /*
688 * The caller MUST have called fr_state_restore() before
689 * calling this function. If so, there is request data
690 * that points to the state entry.
691 *
692 * This function should only be called from the "outer"
693 * request. Any child request should call
694 * fr_state_discard_child()
695 *
696 * Relying on request data also means that the user can
697 * nuke request.State, and the code will still work.
698 *
699 * Find a pointer to the entry, but leave the request
700 * data associated with the entry. That way when the
701 * request is freed, the entry will also be freed.
702 */
703 entry = request_data_reference(request, state, 0);
704 if (!entry) return;
705
706 /*
707 * Unlink the entry to shrink the state tree, and make
708 * sure that the state is never re-used.
709 *
710 * However, we don't wipe the session-state list, as the
711 * request can still be processed through a "finally"
712 * section. And we want the session state data to be
713 * usable from there.
714 */
715 PTHREAD_MUTEX_LOCK(&state->mutex);
716 state_entry_unlink(state, entry);
718
719 return;
720}
721
722/** Copy a pointer to the head of the list of state fr_pair_ts (and their ctx) into the request
723 *
724 * @note Does not copy the actual fr_pair_ts. The fr_pair_ts and their context
725 * are transferred between state entries as the conversation progresses.
726 *
727 * @note Called with the mutex free.
728 *
729 * @param[in] state tree to lookup state in.
730 * @param[in] request to restore state for.
731 * @return
732 * - 2 if the state attribute didn't match any known states.
733 * - 1 if no state attribute existed.
734 * - 0 on success (state restored)
735 * - -1 if a state entry has already been thawed by a another request.
736 */
738{
739 fr_state_entry_t *entry;
740 fr_pair_t *vp;
741
742 /*
743 * No State, don't do anything.
744 */
745 vp = fr_pair_find_by_da(&request->request_pairs, NULL, state->da);
746 if (!vp) {
747 RDEBUG3("No request.%s attribute, can't restore session-state", state->da->name);
748 if (request->seq_start == 0) request->seq_start = request->number; /* Need check for fake requests */
749 return 1;
750 }
751
752 PTHREAD_MUTEX_LOCK(&state->mutex);
753 entry = state_entry_find_and_unlink(state, &vp->data);
755 if (!entry) {
756 RDEBUG2("No state entry matching request.%pP found", vp);
757 return 2;
758 }
759
760 /* Probably impossible in the current code */
761 if (unlikely(entry->thawed && (entry->thawed != request))) {
762 RERROR("State entry has already been thawed by a request %"PRIu64, entry->thawed->number);
763 return -2;
764 }
765
766 /*
767 * Discard any existing session state, and replace it
768 * with the cached one.
769 */
770 fr_assert(entry->ctx);
771 talloc_free(request_state_replace(request, entry->ctx));
772 entry->ctx = NULL;
773
774 request->seq_start = entry->seq_start;
775
776 /*
777 * Associate old state with the request
778 *
779 * If the request is freed, it's freed immediately.
780 *
781 * Otherwise, if there's another round, we reuse
782 * the state entry and insert it back into the
783 * tree.
784 */
785 request_data_add(request, state, 0, entry, true, true, false);
786 request_data_restore(request, &entry->data);
787
788 entry->thawed = request;
789
790 if (!fr_pair_list_empty(&request->session_state_pairs)) {
791 RDEBUG2("Restored session-state");
792 log_request_pair_list(L_DBG_LVL_2, request, NULL, &request->session_state_pairs, "session-state.");
793 }
794
795 RDEBUG3("%s - restored", state->da->name);
796
797 /*
798 * Set sequence so that we can prioritize ongoing multi-packet sessions.
799 */
800 request->sequence = entry->tries;
801 REQUEST_VERIFY(request);
802 return 0;
803}
804
805
806/** Transfer ownership of the state fr_pair_ts and ctx, back to a state entry
807 *
808 * Put request->session_state_pairs into the State attribute. Put the State attribute
809 * into the vps list. Delete the original entry, if it exists
810 *
811 * Also creates a new state entry.
812 */
814{
815 fr_state_entry_t *entry, *old;
817 fr_pair_t *state_ctx;
818 fr_value_box_t *dedup_key = NULL;
819
820 old = request_data_get(request, state, 0);
822 request_data_by_persistance(&data, request, true);
823
824 if (fr_pair_list_empty(&request->session_state_pairs) && fr_dlist_empty(&data)) return 0;
825
826 if (!fr_pair_list_empty(&request->session_state_pairs)) {
827 RDEBUG2("Saving session-state");
828 log_request_pair_list(L_DBG_LVL_2, request, NULL, &request->session_state_pairs, "session-state.");
829
830#ifdef WITH_VERIFY_PTR
831 /*
832 * Double check all the session state pairs
833 * are parented correctly, else we'll get
834 * memory errors when we restore.
835 */
836 fr_pair_list_verify(__FILE__, __LINE__, request->session_state_ctx, &request->session_state_pairs, true);
837#endif
838 }
839
840 /*
841 * If there's a dedup tree, then we need to expand the
842 * key, but only if we don't already have a pre-existing state.
843 */
844 if (state->dedup_tree && !old) {
845 fr_value_box_list_t list;
846
847 fr_value_box_list_init(&list);
848
849 if (tmpl_eval(NULL, &list, request, state->config.dedup_key) < 0) {
850 REDEBUG("Failed expanding dedup_key - not doing dedup");
851 } else {
852 dedup_key = fr_value_box_list_pop_head(&list);
853 if (!dedup_key) {
854 RDEBUG("Failed expanding dedup_key - not doing dedup due to empty output");
855 }
856 fr_value_box_list_talloc_free_head(&list);
857 }
858 }
859
860 MEM(state_ctx = request_state_replace(request, NULL));
861
862 /*
863 * Reuses old if possible, and leaves the mutex unlocked on failure.
864 */
865 PTHREAD_MUTEX_LOCK(&state->mutex);
866 entry = state_entry_create(state, request, &request->reply_pairs, old, dedup_key);
867 if (!entry) {
868 talloc_free(request_state_replace(request, state_ctx));
869 request_data_restore(request, &data); /* Put it back again */
870
871#ifdef __COVERITY__
872 /*
873 * Coverity doesn't see that state_entry_create releases
874 * the lock on failure
875 */
877#endif
878 return -1;
879 }
880
881 fr_assert(entry->ctx == NULL);
882 fr_assert(request->session_state_ctx);
883
884 entry->seq_start = request->seq_start;
885 entry->ctx = state_ctx;
886 fr_dlist_move(&entry->data, &data);
888
889 RDEBUG3("%s - saved", state->da->name);
890 REQUEST_VERIFY(request);
891
892 return 0;
893}
894
895/** Free any subrequest request data if the dlist head is freed
896 *
897 */
898static int _free_child_data(state_child_entry_t *child_entry)
899{
900 fr_dlist_talloc_free(&child_entry->data);
901 talloc_free(child_entry->ctx); /* Free the child's session_state_ctx if we own it */
902
903 return 0;
904}
905
906/** Store subrequest's session-state list and persistable request data in its parent
907 *
908 * @param[in] child The child request to retrieve state from.
909 * @param[in] unique_ptr A parent may have multiple subrequests spawned
910 * by different modules. This identifies the module
911 * or other facility that spawned the subrequest.
912 * @param[in] unique_int Further identification.
913 */
914void fr_state_store_in_parent(request_t *child, void const *unique_ptr, int unique_int)
915{
916 state_child_entry_t *child_entry;
917 request_t *request = child; /* Stupid logging */
918
919 if (!fr_cond_assert_msg(child->parent,
920 "Child request must have request->parent set when storing state")) return;
921
922 RDEBUG3("Storing subrequest state in request %s", child->parent->name);
923
924 if ((request_data_by_persistance_count(request, true) > 0) ||
925 !fr_pair_list_empty(&request->session_state_pairs)) {
926 MEM(child_entry = talloc_zero(request->parent->session_state_ctx, state_child_entry_t));
927 request_data_list_init(&child_entry->data);
928 talloc_set_destructor(child_entry, _free_child_data);
929
930 child_entry->ctx = request_state_replace(child, NULL);
931
932 /*
933 * Pull everything out of the child,
934 * add it to our temporary list head...
935 *
936 * request_data_add allocs persistable
937 * request dta in the session_state_ctx
938 * which is why we don't need to copy or
939 * reparent any of this.
940 */
941 request_data_by_persistance(&child_entry->data, request, true);
942
943 /*
944 * ...and add the request_data from
945 * the child back into the parent.
946 */
947 request_data_talloc_add(request->parent, unique_ptr, unique_int,
948 state_child_entry_t, child_entry, true, false, true);
949 }
950}
951
952/** Restore subrequest data from a parent request
953 *
954 * @param[in] child The child request to restore state to.
955 * @param[in] unique_ptr A parent may have multiple subrequests spawned
956 * by different modules. This identifies the module
957 * or other facility that spawned the subrequest.
958 * @param[in] unique_int Further identification.
959 */
960void fr_state_restore_from_parent(request_t *child, void const *unique_ptr, int unique_int)
961{
962 state_child_entry_t *child_entry;
963 request_t *request = child; /* Stupid logging */
964
965 if (!fr_cond_assert_msg(child->parent,
966 "Child request must have request->parent set when restoring state")) return;
967
968
969 child_entry = request_data_get(child->parent, unique_ptr, unique_int);
970 if (!child_entry) {
971 RDEBUG3("No child state found in parent %s", child->parent->name);
972 return;
973 }
974
975 /*
976 * Shouldn't really be possible unless
977 * there's a logic bug in this API.
978 */
979 if (!fr_cond_assert_msg(!child_entry->thawed,
980 "Child state entry already thawed by %s - %p",
981 child_entry->thawed->name, child_entry->thawed)) return;
982
983 RDEBUG3("Restoring subrequest state from request %s", child->parent->name);
984
985 /*
986 * If we can restore from the parent, do so
987 */
988 fr_assert_msg(child_entry->ctx, "session child entry missing ctx");
989 talloc_free(request_state_replace(child, child_entry->ctx));
990 child_entry->ctx = NULL; /* No longer owns the ctx */
991 child_entry->thawed = child;
992
993 request_data_restore(child, &child_entry->data); /* Put all the request data back */
994
995 talloc_free(child_entry);
996}
997
998/** Remove state from a child
999 *
1000 * This is useful for modules like EAP, where we keep a persistent eap_session
1001 * but may call multiple EAP method modules during negotiation, and need to
1002 * discard the state between each module call.
1003 *
1004 * @param[in] parent Holding the child's state.
1005 * @param[in] unique_ptr A parent may have multiple subrequests spawned
1006 * by different modules. This identifies the module
1007 * or other facility that spawned the subrequest.
1008 * @param[in] unique_int Further identification.
1009 */
1010void fr_state_discard_child(request_t *parent, void const *unique_ptr, int unique_int)
1011{
1012 state_child_entry_t *child_entry;
1013 request_t *request = parent; /* Stupid logging */
1014
1015 child_entry = request_data_get(parent, unique_ptr, unique_int);
1016 if (!child_entry) {
1017 RDEBUG3("No child state found in parent %s", parent->name);
1018 return;
1019 }
1020
1021 talloc_free(child_entry);
1022}
#define HEXIFY(b1)
Definition build.h:209
#define RCSID(id)
Definition build.h:512
#define CMP(_a, _b)
Same as CMP_PREFER_SMALLER use when you don't really care about ordering, you just want an ordering.
Definition build.h:113
#define unlikely(_x)
Definition build.h:407
#define CONF_PARSER_TERMINATOR
Definition cf_parse.h:669
#define FR_CONF_OFFSET(_name, _struct, _field)
conf_parser_t which parses a single CONF_PAIR, writing the result to a field in a struct
Definition cf_parse.h:280
Defines a CONF_PAIR to C data type mapping.
Definition cf_parse.h:606
static void * fr_dcursor_next(fr_dcursor_t *cursor)
Advanced the cursor to the next item.
Definition dcursor.h:288
#define fr_cond_assert(_x)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:131
#define fr_assert_msg(_x, _msg,...)
Calls panic_action ifndef NDEBUG, else logs error and causes the server to exit immediately with code...
Definition debug.h:202
#define fr_cond_assert_msg(_x, _fmt,...)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:148
#define MEM(x)
Definition debug.h:36
#define fr_dlist_init(_head, _type, _field)
Initialise the head structure of a doubly linked list.
Definition dlist.h:242
static void * fr_dlist_head(fr_dlist_head_t const *list_head)
Return the HEAD item of a list or NULL if the list is empty.
Definition dlist.h:468
#define fr_dlist_foreach(_list_head, _type, _iter)
Iterate over the contents of a list.
Definition dlist.h:98
static void * fr_dlist_remove(fr_dlist_head_t *list_head, void *ptr)
Remove an item from the list.
Definition dlist.h:620
static bool fr_dlist_entry_in_list(fr_dlist_t const *entry)
Check if a list entry is part of a list.
Definition dlist.h:145
static void fr_dlist_talloc_free(fr_dlist_head_t *head)
Free all items in a doubly linked list (with talloc)
Definition dlist.h:892
static bool fr_dlist_empty(fr_dlist_head_t const *list_head)
Check whether a list has any items.
Definition dlist.h:483
static int fr_dlist_insert_tail(fr_dlist_head_t *list_head, void *ptr)
Insert an item into the tail of a list.
Definition dlist.h:360
static int fr_dlist_move(fr_dlist_head_t *list_dst, fr_dlist_head_t *list_src)
Merge two lists, inserting the source at the tail of the destination.
Definition dlist.h:745
#define fr_dlist_talloc_init(_head, _type, _field)
Initialise the head structure of a doubly linked list.
Definition dlist.h:257
Head of a doubly linked list.
Definition dlist.h:51
Entry in a doubly linked list.
Definition dlist.h:41
uint64_t fr_hash64(void const *data, size_t size)
Definition hash.c:940
talloc_free(hp)
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:831
#define RWDEBUG(fmt,...)
Definition log.h:373
#define RDEBUG3(fmt,...)
Definition log.h:355
#define RERROR(fmt,...)
Definition log.h:310
#define DEBUG4(_fmt,...)
Definition log.h:267
#define fr_time()
Definition event.c:60
@ L_DBG_LVL_2
2nd highest priority debug messages (-xx | -X).
Definition log.h:68
@ FR_TYPE_OCTETS
Raw octets.
unsigned int uint32_t
unsigned char uint8_t
int fr_pair_value_memdup(fr_pair_t *vp, uint8_t const *src, size_t len, bool tainted)
Copy data into an "octets" data type.
Definition pair.c:2962
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
Definition pair.c:707
int fr_pair_append(fr_pair_list_t *list, fr_pair_t *to_add)
Add a VP to the end of the list.
Definition pair.c:1352
int fr_pair_delete_by_da(fr_pair_list_t *list, fr_dict_attr_t const *da)
Delete matching pairs from the specified list.
Definition pair.c:1696
fr_pair_t * fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
Dynamically allocate a new attribute and assign a fr_dict_attr_t.
Definition pair.c:290
static const conf_parser_t config[]
Definition base.c:163
#define fr_assert(_expr)
Definition rad_assert.h:37
#define REDEBUG(fmt,...)
#define RDEBUG2(fmt,...)
#define RDEBUG(fmt,...)
uint32_t fr_rand(void)
Return a 32-bit random number.
Definition rand.c:104
uint32_t fr_rb_num_elements(fr_rb_tree_t *tree)
Return how many nodes there are in a tree.
Definition rb.c:781
void * fr_rb_remove(fr_rb_tree_t *tree, void const *data)
Remove an entry from the tree, without freeing the data.
Definition rb.c:695
void * fr_rb_find(fr_rb_tree_t const *tree, void const *data)
Find an element in the tree, returning the data, not the node.
Definition rb.c:577
bool fr_rb_insert(fr_rb_tree_t *tree, void const *data)
Insert data into a tree.
Definition rb.c:626
bool fr_rb_delete(fr_rb_tree_t *tree, void const *data)
Remove node and free data (if a free function was specified)
Definition rb.c:741
#define fr_rb_inline_talloc_alloc(_ctx, _type, _field, _data_cmp, _data_free)
Allocs a red black that verifies elements are of a specific talloc type.
Definition rb.h:244
static bool fr_rb_node_inline_in_tree(fr_rb_node_t const *node)
Check to see if an item is in a tree by examining its inline fr_rb_node_t.
Definition rb.h:312
The main red black tree structure.
Definition rb.h:71
fr_pair_t * request_state_replace(request_t *request, fr_pair_t *new_state)
Replace the session_state_ctx with a new one.
Definition request.c:511
#define REQUEST_VERIFY(_x)
Definition request.h:311
int request_data_by_persistance_count(request_t *request, bool persist)
Return how many request data entries exist of a given persistence.
int request_data_by_persistance(fr_dlist_head_t *out, request_t *request, bool persist)
Loop over all the request data, pulling out ones matching persist state.
void request_data_list_init(fr_dlist_head_t *data)
void request_data_restore(request_t *request, fr_dlist_head_t *in)
Add request data back to a request.
void * request_data_reference(request_t *request, void const *unique_ptr, int unique_int)
Get opaque data from a request without removing it.
void * request_data_get(request_t *request, void const *unique_ptr, int unique_int)
Get opaque data from a request.
#define request_data_talloc_add(_request, _unique_ptr, _unique_int, _type, _opaque, _free_on_replace, _free_on_parent, _persist)
Add opaque data to a request_t.
#define request_data_add(_request, _unique_ptr, _unique_int, _opaque, _free_on_replace, _free_on_parent, _persist)
Add opaque data to a request_t.
static unsigned int hash(char const *username, unsigned int tablesize)
Definition rlm_passwd.c:132
int fr_state_restore(fr_state_tree_t *state, request_t *request)
Copy a pointer to the head of the list of state fr_pair_ts (and their ctx) into the request.
Definition state.c:737
uint64_t id
State number.
Definition state.c:74
void fr_state_discard_child(request_t *parent, void const *unique_ptr, int unique_int)
Remove state from a child.
Definition state.c:1010
uint64_t seq_start
Number of first request in this sequence.
Definition state.c:113
fr_dlist_head_t data
Persistable request data, also parented by ctx.
Definition state.c:128
void fr_state_discard(fr_state_tree_t *state, request_t *request)
Called when sending an Access-Accept/Access-Reject to discard state information.
Definition state.c:683
#define PTHREAD_MUTEX_UNLOCK
Definition state.c:171
#define PTHREAD_MUTEX_LOCK
Definition state.c:170
fr_dict_attr_t const * da
Attribute where the state is stored.
Definition state.c:167
fr_dlist_head_t data
Persistable request data, also parented by ctx.
Definition state.c:150
unsigned int tries
Definition state.c:124
fr_rb_node_t node
Entry in the state rbtree.
Definition state.c:75
request_t * thawed
The request that thawed this entry.
Definition state.c:152
static int8_t state_dedup_cmp(void const *one, void const *two)
Compare two fr_state_entry_t based on their dedup key.
Definition state.c:190
fr_time_t cleanup
When this entry should be cleaned up.
Definition state.c:114
int fr_state_store(fr_state_tree_t *state, request_t *request)
Transfer ownership of the state fr_pair_ts and ctx, back to a state entry.
Definition state.c:813
static int _state_tree_free(fr_state_tree_t *state)
Free the state tree.
Definition state.c:201
static int _state_entry_free(fr_state_entry_t *entry)
Frees any data associated with a state.
Definition state.c:333
static int8_t state_entry_cmp(void const *one, void const *two)
Compare two fr_state_entry_t based on their state value i.e.
Definition state.c:178
fr_pair_t * ctx
for all session specific data.
Definition state.c:126
pthread_mutex_t mutex
Synchronisation mutex.
Definition state.c:165
static void state_entry_fill(fr_state_entry_t *entry, fr_value_box_t const *vb)
Definition state.c:368
fr_pair_t * ctx
for all session specific data.
Definition state.c:148
static void state_entry_unlink(fr_state_tree_t *state, fr_state_entry_t *entry)
Unlink an entry and remove if from the tree.
Definition state.c:316
fr_rb_tree_t * tree
rbtree used to lookup state value.
Definition state.c:161
void fr_state_restore_from_parent(request_t *child, void const *unique_ptr, int unique_int)
Restore subrequest data from a parent request.
Definition state.c:960
fr_dlist_head_t to_expire
Linked list of entries to free.
Definition state.c:163
static fr_state_entry_t * state_entry_find_and_unlink(fr_state_tree_t *state, fr_value_box_t const *vb)
Find the entry based on the State attribute and remove it from the state tree.
Definition state.c:659
const conf_parser_t state_session_config[]
Definition state.c:59
fr_rb_node_t dedup_node
Entry in the dedup rbtree.
Definition state.c:133
fr_state_tree_t * fr_state_tree_init(TALLOC_CTX *ctx, fr_dict_attr_t const *da, fr_state_config_t const *config)
Initialise a new state tree.
Definition state.c:232
static int _free_child_data(state_child_entry_t *child_entry)
Free any subrequest request data if the dlist head is freed.
Definition state.c:898
fr_value_box_t const * dedup_key
Key for dedup.
Definition state.c:132
fr_rb_tree_t * dedup_tree
rbtree used to do dedups
Definition state.c:162
uint64_t timed_out
Number of states that were cleaned up due to timeout.
Definition state.c:157
static fr_state_entry_t * state_entry_create(fr_state_tree_t *state, request_t *request, fr_pair_list_t *reply_list, fr_state_entry_t *old, fr_value_box_t const *dedup_key)
Create a new state entry.
Definition state.c:394
fr_state_config_t config
a local copy
Definition state.c:159
uint64_t id
Next ID to assign.
Definition state.c:156
request_t * thawed
The request that thawed this entry.
Definition state.c:130
void fr_state_store_in_parent(request_t *child, void const *unique_ptr, int unique_int)
Store subrequest's session-state list and persistable request data in its parent.
Definition state.c:914
Holds a state value, and associated fr_pair_ts and data.
Definition state.c:73
A child of a fr_state_entry_t.
Definition state.c:147
#define tmpl_is_xlat(vpt)
Definition tmpl.h:210
#define tmpl_is_attr(vpt)
Definition tmpl.h:208
bool tmpl_async_required(tmpl_t const *vpt)
Return whether or not async is required for this tmpl.
int tmpl_eval(TALLOC_CTX *ctx, fr_value_box_list_t *out, request_t *request, tmpl_t const *vpt)
Gets the value of a tmpl.
Definition tmpl_eval.c:1103
#define tmpl_needs_resolving(vpt)
Definition tmpl.h:223
bool thread_safe
Definition state.h:47
fr_time_delta_t timeout
idle timeout
Definition state.h:44
uint32_t max_rounds
maximum number of rounds before we give up
Definition state.h:42
uint8_t server_id
for mangling State
Definition state.h:46
tmpl_t * dedup_key
for tracking misbehaving supplicants
Definition state.h:45
uint32_t context_id
internal number to help keep state trees separate
Definition state.h:43
uint32_t max_sessions
maximum number of sessions
Definition state.h:41
fr_pair_t * vp
Stores an attribute, a value and various bits of other data.
Definition pair.h:68
int talloc_link_ctx(TALLOC_CTX *parent, TALLOC_CTX *child)
Link two different parent and child contexts, so the child is freed before the parent.
Definition talloc.c:168
static int talloc_const_free(void const *ptr)
Free const'd memory.
Definition talloc.h:254
#define fr_time_add(_a, _b)
Add a time/time delta together.
Definition time.h:196
#define fr_time_sub(_a, _b)
Subtract one time from another.
Definition time.h:229
#define fr_time_lt(_a, _b)
Definition time.h:239
"server local" time.
Definition time.h:69
bool fr_pair_list_empty(fr_pair_list_t const *list)
Is a valuepair list empty.
#define fr_pair_dcursor_init(_cursor, _list)
Initialises a special dcursor with callbacks that will maintain the attr sublists correctly.
Definition pair.h:604
static fr_slen_t parent
Definition pair.h:858
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition strerror.h:64
#define fr_strerror_const(_msg)
Definition strerror.h:223
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition types.h:454
int8_t fr_value_box_cmp(fr_value_box_t const *a, fr_value_box_t const *b)
Compare two values.
Definition value.c:748
static fr_slen_t data
Definition value.h:1340
#define fr_box_time_delta(_val)
Definition value.h:366