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
|
/* 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;
enum sa_role;
void state_db_init(struct logger *logger);
void state_db_check(struct logger *logger);
void state_db_init_state(struct state *st);
void state_db_check_state(struct state *st, struct logger *logger, where_t where);
void state_db_add(struct state *st);
void state_db_del(struct state *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);
void state_db_rehash_connection_serialno(struct state *st);
struct state *state_by_reqid(reqid_t reqid,
state_by_predicate *predicate /*optional*/,
void *predicate_context,
const char *reason);
void state_db_rehash_reqid(struct state *st);
#endif
|