The FreeRADIUS server $Id: f3670dba8951ca10eb4948feb3dc3db9423a334f $
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: 0b3cd938948b5a7cc2869ced2426589af28c91e1 $
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: 0b3cd938948b5a7cc2869ced2426589af28c91e1 $")
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
174
175/** Compare two fr_state_entry_t based on their state value i.e. the value of the attribute
176 *
177 */
178static fr_cmp_ret_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 fr_cmp_ret_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) {
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{
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");
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");
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 */
280
281 if (state->config.thread_safe && (pthread_mutex_init(&state->mutex, NULL) != 0)) {
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) {
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) {
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 /*
486 * A comparator error means we can't tell whether a
487 * previous session exists. The insert into the dedup
488 * tree below fails for the same reason, refusing the
489 * new entry, so here we only report.
490 */
491 if (unlikely(fr_rb_find((void **)&unfinished, state->dedup_tree,
492 &(fr_state_entry_t) { .dedup_key = dedup_key }) < 0)) {
493 RPEDEBUG("Failed checking for an existing session with the same dedup_key");
494 } else if (unfinished) {
495 state_entry_unlink(state, unfinished);
496 fr_dlist_insert_tail(&to_free, unfinished);
497 }
498 }
499 }
500
502
503 if (timed_out > 0) {
504 RWDEBUG("Cleaning up %"PRIu64" timed out state entries", timed_out);
505 state->timed_out += timed_out;
506
507 /*
508 * Now free the unlinked entries.
509 *
510 * We do it here as freeing may involve significantly more
511 * work than just freeing the data.
512 *
513 * If there's request data that was persisted it will now
514 * be freed also, and it may have complex destructors associated
515 * with it.
516 */
517 fr_dlist_talloc_free(&to_free);
518
519 } else if (too_many) {
520 talloc_const_free(dedup_key);
521 RERROR("Failed inserting state entry - At maximum ongoing session limit (%u)",
522 state->config.max_sessions);
523 return NULL;
524 }
525
526 /*
527 * Allocation doesn't need to occur inside the critical region
528 * and would add significantly to contention.
529 */
530 if (!old) {
531 MEM(entry = talloc_zero(NULL, fr_state_entry_t));
532 talloc_set_destructor(entry, _state_entry_free);
533
534 entry->id = state->id++;
535
536 } else {
537 fr_assert(!old->ctx);
538 entry = old;
539 }
540
542
543 /*
544 * Limit the lifetime of this entry based on how long the
545 * server takes to process a request. Doing it this way
546 * isn't perfect, but it's reasonable, and it's one less
547 * thing for an administrator to configure.
548 */
549 entry->cleanup = fr_time_add(now, state->config.timeout);
550
551 /*
552 * Some modules either create their own state, or need to
553 * synthesize it from data in a packet header. If we
554 * have such a state, then use that in preference to
555 * creating a random one.
556 */
557 vp = fr_pair_find_by_da(reply_list, NULL, state->da);
558 if (vp && vp->vp_length) {
559 state_entry_fill(entry, &vp->data);
560
561 } else {
562 if (old) {
563 /*
564 * Just re-use the old state.
565 */
566 entry->tries++;
567
568 if (entry->tries > state->config.max_rounds) {
569 RERROR("Failed tracking state entry - too many rounds (%u)", entry->tries);
570 goto fail;
571 }
572 } else {
573 size_t i;
575
576 if (dedup_key) entry->dedup_key = talloc_steal(entry, dedup_key);
577
578 /*
579 * Get a bunch of random numbers.
580 */
581 for (i = 0; i < sizeof(entry->state); i+= 4) {
582 hash = fr_rand();
583 memcpy(&entry->state[i], &hash, sizeof(hash));
584 }
585
586 /*
587 * Add in a server ID. This lets a "FreeRADIUS
588 * aware" load balancer direct the packet based
589 * on the contents of the State attribute.
590 */
591 entry->state_comp.server_id = state->config.server_id;
592
593 /*
594 * Add our own custom brand of magic.
595 */
596 entry->state_comp.vx_0 = entry->state_comp.r_0 ^
597 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 24) & 0xff);
598 entry->state_comp.vx_1 = entry->state_comp.r_0 ^
599 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 16) & 0xff);
600 entry->state_comp.vx_2 = entry->state_comp.r_0 ^
601 ((((uint32_t) HEXIFY(RADIUSD_VERSION)) >> 8) & 0xff);
602 entry->state_comp.vx_3 = entry->state_comp.r_0 ^
603 (((uint32_t) HEXIFY(RADIUSD_VERSION)) & 0xff);
604 }
605
606 /*
607 * Track the number of round trips, too.
608 */
609 entry->state_comp.tx ^= entry->tries;
610 entry->state_comp.tries = entry->tries ^ entry->state_comp.r_3;
611
612 MEM(vp = fr_pair_afrom_da(request->reply_ctx, state->da));
613 fr_pair_value_memdup(vp, entry->state, sizeof(entry->state), false);
614 fr_pair_append(reply_list, vp);
615 }
616
617 DEBUG4("State ID %" PRIu64 " created, value 0x%pH, expires %pV",
618 entry->id, &vp->data,
620
621 /*
622 * XOR the server hash with four bytes of random context
623 * ID after adding it to the reply, but before inserting
624 * it into the RB rtree. We XOR is again before looking
625 * it up in the tree, to ensure state lookups only
626 * succeed in the virtual server that created the state
627 * value.
628 */
629 entry->state_comp.context_id ^= state->config.context_id;
630
631 PTHREAD_MUTEX_LOCK(&state->mutex);
632
633 if (fr_rb_insert(state->tree, entry) != 0) {
634 fail_unlock:
636 RERROR("Failed inserting state entry - Insertion into state tree failed");
637 fail:
638 fr_pair_delete_by_da(reply_list, state->da);
639 talloc_free(entry);
640 return NULL;
641 }
642
643 /*
644 * Ensure that we can de-duplicate things if the supplicant is misbehaving.
645 */
646 if (state->dedup_tree && !old) {
647 if (fr_rb_insert(state->dedup_tree, entry) != 0) {
648 (void) fr_rb_remove(NULL, state->tree, entry);
649 goto fail_unlock;
650 }
651 }
652
653 /*
654 * Link it to the end of the list, which is implicitly
655 * ordered by cleanup time.
656 */
657 fr_dlist_insert_tail(&state->to_expire, entry);
658
659 entry->thawed = NULL;
660
661 return entry;
662}
663
664/** Find the entry based on the State attribute and remove it from the state tree
665 *
666 */
668{
669 fr_state_entry_t *entry, my_entry;
670
671 state_entry_fill(&my_entry, vb);
672
673 /*
674 * Make it unique for different virtual servers handling the same request
675 */
676 my_entry.state_comp.context_id ^= state->config.context_id;
677
678 fr_rb_remove((void **)&entry, state->tree, &my_entry);
679 if (entry) {
680 (void) talloc_get_type_abort(entry, fr_state_entry_t);
681 fr_dlist_remove(&state->to_expire, entry);
682 }
683
684 return entry;
685}
686
687
688/** Called when sending an Access-Accept/Access-Reject to discard state information
689 *
690 * @param[in] state tree to lookup state in.
691 * @param[in] request to discard state for.
692 */
694{
695 fr_state_entry_t *entry;
696
697 /*
698 * The caller MUST have called fr_state_restore() before
699 * calling this function. If so, there is request data
700 * that points to the state entry.
701 *
702 * This function should only be called from the "outer"
703 * request. Any child request should call
704 * fr_state_discard_child()
705 *
706 * Relying on request data also means that the user can
707 * nuke request.State, and the code will still work.
708 *
709 * Find a pointer to the entry, but leave the request
710 * data associated with the entry. That way when the
711 * request is freed, the entry will also be freed.
712 */
713 entry = request_data_reference(request, state, 0);
714 if (!entry) return;
715
716 /*
717 * Unlink the entry to shrink the state tree, and make
718 * sure that the state is never re-used.
719 *
720 * However, we don't wipe the session-state list, as the
721 * request can still be processed through a "finally"
722 * section. And we want the session state data to be
723 * usable from there.
724 */
725 PTHREAD_MUTEX_LOCK(&state->mutex);
728
729 return;
730}
731
732/** Called to discard a state which is synthesized
733 *
734 * Some protocols synthesize a state, which means that there is the
735 * possibility for conflict. i.e. an old state exists which needs to
736 * be discarded. The current request can't restore the old state, it
737 * instead needs to discard it.
738 *
739 * @param[in] state tree to lookup state in.
740 * @param[in] request to discard state for.
741 */
743{
744 fr_pair_t *vp;
745 fr_state_entry_t *entry;
746
747 vp = fr_pair_find_by_da(&request->request_pairs, NULL, state->da);
748 if (!vp) return;
749
750 PTHREAD_MUTEX_LOCK(&state->mutex);
751 entry = state_entry_find_and_unlink(state, &vp->data);
753
754 if (entry) talloc_free(entry);
755}
756
757/** Copy a pointer to the head of the list of state fr_pair_ts (and their ctx) into the request
758 *
759 * @note Does not copy the actual fr_pair_ts. The fr_pair_ts and their context
760 * are transferred between state entries as the conversation progresses.
761 *
762 * @note Called with the mutex free.
763 *
764 * @param[in] state tree to lookup state in.
765 * @param[in] request to restore state for.
766 * @return
767 * - 2 if the state attribute didn't match any known states.
768 * - 1 if no state attribute existed.
769 * - 0 on success (state restored)
770 * - -1 if a state entry has already been thawed by a another request.
771 */
773{
774 fr_state_entry_t *entry;
775 fr_pair_t *vp;
776
777 /*
778 * No State, don't do anything.
779 */
780 vp = fr_pair_find_by_da(&request->request_pairs, NULL, state->da);
781 if (!vp) {
782 RDEBUG3("No request.%s attribute, can't restore session-state", state->da->name);
783 if (request->seq_start == 0) request->seq_start = request->number; /* Need check for fake requests */
784 return 1;
785 }
786
787 PTHREAD_MUTEX_LOCK(&state->mutex);
788 entry = state_entry_find_and_unlink(state, &vp->data);
790 if (!entry) {
791 RDEBUG2("No state entry matching request.%pP found", vp);
792 return 2;
793 }
794
795 /* Probably impossible in the current code */
796 if (unlikely(entry->thawed && (entry->thawed != request))) {
797 RERROR("State entry has already been thawed by a request %"PRIu64, entry->thawed->number);
798 return -2;
799 }
800
801 /*
802 * Discard any existing session state, and replace it
803 * with the cached one.
804 */
805 fr_assert(entry->ctx);
806 talloc_free(request_state_replace(request, entry->ctx));
807 entry->ctx = NULL;
808
809 request->seq_start = entry->seq_start;
810
811 /*
812 * Associate old state with the request
813 *
814 * If the request is freed, it's freed immediately.
815 *
816 * Otherwise, if there's another round, we reuse
817 * the state entry and insert it back into the
818 * tree.
819 */
820 request_data_add(request, state, 0, entry, true, true, false);
821 request_data_restore(request, &entry->data);
822
823 entry->thawed = request;
824
825 if (!fr_pair_list_empty(&request->session_state_pairs)) {
826 RDEBUG2("Restored session-state");
827 log_request_pair_list(L_DBG_LVL_2, request, NULL, &request->session_state_pairs, "session-state.");
828 }
829
830 RDEBUG3("%s - restored", state->da->name);
831
832 /*
833 * Set sequence so that we can prioritize ongoing multi-packet sessions.
834 */
835 request->sequence = entry->tries;
836 REQUEST_VERIFY(request);
837 return 0;
838}
839
840
841/** Transfer ownership of the state fr_pair_ts and ctx, back to a state entry
842 *
843 * Put request->session_state_pairs into the State attribute. Put the State attribute
844 * into the vps list. Delete the original entry, if it exists
845 *
846 * Also creates a new state entry.
847 */
849{
850 fr_state_entry_t *entry, *old;
852 fr_pair_t *state_ctx;
853 fr_value_box_t *dedup_key = NULL;
854
855 old = request_data_get(request, state, 0);
857 request_data_by_persistance(&data, request, true);
858
859 if (fr_pair_list_empty(&request->session_state_pairs) && fr_dlist_empty(&data)) return 0;
860
861 if (!fr_pair_list_empty(&request->session_state_pairs)) {
862 RDEBUG2("Saving session-state");
863 log_request_pair_list(L_DBG_LVL_2, request, NULL, &request->session_state_pairs, "session-state.");
864
865#ifdef WITH_VERIFY_PTR
866 /*
867 * Double check all the session state pairs
868 * are parented correctly, else we'll get
869 * memory errors when we restore.
870 */
871 fr_pair_list_verify(__FILE__, __LINE__, request->session_state_ctx, &request->session_state_pairs, true);
872#endif
873 }
874
875 /*
876 * If there's a dedup tree, then we need to expand the
877 * key, but only if we don't already have a pre-existing state.
878 */
879 if (state->dedup_tree && !old) {
880 fr_value_box_list_t list;
881
882 fr_value_box_list_init(&list);
883
884 if (tmpl_eval(NULL, &list, request, state->config.dedup_key) < 0) {
885 REDEBUG("Failed expanding dedup_key - not doing dedup");
886 } else {
887 dedup_key = fr_value_box_list_pop_head(&list);
888 if (!dedup_key) {
889 RDEBUG("Failed expanding dedup_key - not doing dedup due to empty output");
890 }
891 fr_value_box_list_talloc_free_head(&list);
892 }
893 }
894
895 MEM(state_ctx = request_state_replace(request, NULL));
896
897 /*
898 * Reuses old if possible, and leaves the mutex unlocked on failure.
899 */
900 PTHREAD_MUTEX_LOCK(&state->mutex);
901 entry = state_entry_create(state, request, &request->reply_pairs, old, dedup_key);
902 if (!entry) {
903 talloc_free(request_state_replace(request, state_ctx));
904 request_data_restore(request, &data); /* Put it back again */
905
906#ifdef __COVERITY__
907 /*
908 * Coverity doesn't see that state_entry_create releases
909 * the lock on failure
910 */
912#endif
913 return -1;
914 }
915
916 fr_assert(entry->ctx == NULL);
917 fr_assert(request->session_state_ctx);
918
919 entry->seq_start = request->seq_start;
920 entry->ctx = state_ctx;
921 fr_dlist_move(&entry->data, &data);
923
924 RDEBUG3("%s - saved", state->da->name);
925 REQUEST_VERIFY(request);
926
927 return 0;
928}
929
930/** Free any subrequest request data if the dlist head is freed
931 *
932 */
933static int _free_child_data(state_child_entry_t *child_entry)
934{
935 fr_dlist_talloc_free(&child_entry->data);
936 talloc_free(child_entry->ctx); /* Free the child's session_state_ctx if we own it */
937
938 return 0;
939}
940
941/** Store subrequest's session-state list and persistable request data in its parent
942 *
943 * @param[in] child The child request to retrieve state from.
944 * @param[in] unique_ptr A parent may have multiple subrequests spawned
945 * by different modules. This identifies the module
946 * or other facility that spawned the subrequest.
947 * @param[in] unique_int Further identification.
948 */
949void fr_state_store_in_parent(request_t *child, void const *unique_ptr, int unique_int)
950{
951 state_child_entry_t *child_entry;
952 request_t *request = child; /* Stupid logging */
953
954 if (!fr_cond_assert_msg(child->parent,
955 "Child request must have request->parent set when storing state")) return;
956
957 RDEBUG3("Storing subrequest state in request %s", child->parent->name);
958
959 if ((request_data_by_persistance_count(request, true) > 0) ||
960 !fr_pair_list_empty(&request->session_state_pairs)) {
961 MEM(child_entry = talloc_zero(request->parent->session_state_ctx, state_child_entry_t));
962 request_data_list_init(&child_entry->data);
963 talloc_set_destructor(child_entry, _free_child_data);
964
965 child_entry->ctx = request_state_replace(child, NULL);
966
967 /*
968 * Pull everything out of the child,
969 * add it to our temporary list head...
970 *
971 * request_data_add allocs persistable
972 * request dta in the session_state_ctx
973 * which is why we don't need to copy or
974 * reparent any of this.
975 */
976 request_data_by_persistance(&child_entry->data, request, true);
977
978 /*
979 * ...and add the request_data from
980 * the child back into the parent.
981 */
982 request_data_talloc_add(request->parent, unique_ptr, unique_int,
983 state_child_entry_t, child_entry, true, false, true);
984 }
985}
986
987/** Restore subrequest data from a parent request
988 *
989 * @param[in] child The child request to restore state to.
990 * @param[in] unique_ptr A parent may have multiple subrequests spawned
991 * by different modules. This identifies the module
992 * or other facility that spawned the subrequest.
993 * @param[in] unique_int Further identification.
994 */
995void fr_state_restore_from_parent(request_t *child, void const *unique_ptr, int unique_int)
996{
997 state_child_entry_t *child_entry;
998 request_t *request = child; /* Stupid logging */
999
1000 if (!fr_cond_assert_msg(child->parent,
1001 "Child request must have request->parent set when restoring state")) return;
1002
1003
1004 child_entry = request_data_get(child->parent, unique_ptr, unique_int);
1005 if (!child_entry) {
1006 RDEBUG3("No child state found in parent %s", child->parent->name);
1007 return;
1008 }
1009
1010 /*
1011 * Shouldn't really be possible unless
1012 * there's a logic bug in this API.
1013 */
1014 if (!fr_cond_assert_msg(!child_entry->thawed,
1015 "Child state entry already thawed by %s - %p",
1016 child_entry->thawed->name, child_entry->thawed)) return;
1017
1018 RDEBUG3("Restoring subrequest state from request %s", child->parent->name);
1019
1020 /*
1021 * If we can restore from the parent, do so
1022 */
1023 fr_assert_msg(child_entry->ctx, "session child entry missing ctx");
1024 talloc_free(request_state_replace(child, child_entry->ctx));
1025 child_entry->ctx = NULL; /* No longer owns the ctx */
1026 child_entry->thawed = child;
1027
1028 request_data_restore(child, &child_entry->data); /* Put all the request data back */
1029
1030 talloc_free(child_entry);
1031}
1032
1033/** Remove state from a child
1034 *
1035 * This is useful for modules like EAP, where we keep a persistent eap_session
1036 * but may call multiple EAP method modules during negotiation, and need to
1037 * discard the state between each module call.
1038 *
1039 * @param[in] parent Holding the child's state.
1040 * @param[in] unique_ptr A parent may have multiple subrequests spawned
1041 * by different modules. This identifies the module
1042 * or other facility that spawned the subrequest.
1043 * @param[in] unique_int Further identification.
1044 */
1045void fr_state_discard_child(request_t *parent, void const *unique_ptr, int unique_int)
1046{
1047 state_child_entry_t *child_entry;
1048 request_t *request = parent; /* Stupid logging */
1049
1050 child_entry = request_data_get(parent, unique_ptr, unique_int);
1051 if (!child_entry) {
1052 RDEBUG3("No child state found in parent %s", parent->name);
1053 return;
1054 }
1055
1056 talloc_free(child_entry);
1057}
#define HEXIFY(b1)
Definition build.h:209
#define RCSID(id)
Definition build.h:560
#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:455
#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:172
#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:243
#define fr_cond_assert_msg(_x, _fmt,...)
Calls panic_action ifndef NDEBUG, else logs error and evaluates to value of _x.
Definition debug.h:189
#define MEM(x)
Definition debug.h:38
#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:959
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:828
#define RWDEBUG(fmt,...)
Definition log.h:378
#define RDEBUG3(fmt,...)
Definition log.h:360
#define RERROR(fmt,...)
Definition log.h:315
#define DEBUG4(_fmt,...)
Definition log.h:272
#define RPEDEBUG(fmt,...)
Definition log.h:393
#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
fr_cmp_ret_t
Result of an ordering comparison.
Definition misc.h:50
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:162
#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:807
int fr_rb_remove(void **removed, fr_rb_tree_t *tree, void const *data)
Remove an entry from the tree, without freeing the data.
Definition rb.c:718
int fr_rb_find(void **found, fr_rb_tree_t const *tree, void const *data)
Find an element in the tree, returning the data, not the node.
Definition rb.c:586
int 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:767
int fr_rb_insert(fr_rb_tree_t *tree, void const *data)
Insert data into a tree.
Definition rb.c:637
#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:513
#define REQUEST_VERIFY(_x)
Definition request.h:310
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:772
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:1045
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:693
#define PTHREAD_MUTEX_UNLOCK
Definition state.c:171
#define PTHREAD_MUTEX_LOCK
Definition state.c:170
static fr_cmp_ret_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_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
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:848
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
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:995
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:667
static fr_cmp_ret_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
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
void fr_state_discard_by_state(fr_state_tree_t *state, request_t *request)
Called to discard a state which is synthesized.
Definition state.c:742
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:933
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:949
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
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:288
void * state
Definition testlib.c:46
#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
fr_cmp_ret_t fr_value_box_cmp(fr_value_box_t const *a, fr_value_box_t const *b)
Compare two values.
Definition value.c:759
static fr_slen_t data
Definition value.h:1340
#define fr_box_time_delta(_val)
Definition value.h:366