1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/* State table indexed by serialno, for libreswan
*
* Copyright (C) 2017-2019 Andrew Cagney <cagney@gnu.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#ifndef STATE_DB_H
#define STATE_DB_H
#include "ike_spi.h"
#include "reqid.h"
struct state;
struct connection;
struct list_entry;
void init_state_db(void);
void add_state_to_db(struct state *st);
void rehash_state_cookies_in_db(struct state *st);
void del_state_from_db(struct state *st);
struct state *state_by_serialno(so_serial_t serialno);
struct ike_sa *ike_sa_by_serialno(so_serial_t serialno);
struct child_sa *child_sa_by_serialno(so_serial_t serialno);
/*
* List of all valid states; can be iterated in old-to-new and
* new-to-old order.
*/
extern struct list_head state_serialno_list_head;
#define FOR_EACH_STATE_NEW2OLD(ST) \
FOR_EACH_LIST_ENTRY_NEW2OLD(&state_serialno_list_head, ST)
#define FOR_EACH_STATE_OLD2NEW(ST) \
FOR_EACH_LIST_ENTRY_OLD2NEW(&state_serialno_list_head, ST)
/*
* Lookup and generic search functions.
*/
struct state *state_by_ike_initiator_spi(enum ike_version ike_version,
const so_serial_t *clonedfrom,
const msgid_t *v1_msgid, /* optional */
const enum sa_role *role, /*optional*/
const ike_spi_t *ike_initiator_spi,
const char *reason);
typedef bool (state_by_predicate)(struct state *st, void *context);
struct state *state_by_ike_spis(enum ike_version ike_version,
const so_serial_t *clonedfrom,
const msgid_t *v1_msgid, /*optional*/
const enum sa_role *role, /*optional*/
const ike_spis_t *ike_spis,
state_by_predicate *predicate /*optional*/,
void *predicate_context,
const char *reason);
struct state *state_by_connection(struct connection *c,
state_by_predicate *predicate /*optional*/,
void *predicate_context,
const char *reason);
void rehash_state_connection(struct state *st);
struct state *state_by_reqid(reqid_t reqid,
state_by_predicate *predicate /*optional*/,
void *predicate_context,
const char *reason);
void rehash_state_reqid(struct state *st);
#endif
|