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 84 85 86 87 88 89 90 91 92 93
|
/* identity representation, as in IKE ID Payloads (RFC 2407 DOI 4.6.2.1)
*
* Copyright (C) 1999-2001 D. Hugh Redelmeier
* Copyright (C) 2019-2020 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 ID_H
#define ID_H
#include "ietf_constants.h" /* for enum ike_id_type */
#include "chunk.h"
#include "err.h"
#include "ip_address.h"
#include "jambuf.h" /* for typedef jam_bytes_fn */
struct id {
enum ike_id_type kind;
/* used for ID_IPV4_ADDR, ID_IPV6_ADDR */
ip_address ip_addr;
/* used for ID_FQDN, ID_USER_FQDN, ID_KEY_ID, ID_DER_ASN_DN */
chunk_t name;
};
struct id_list {
struct id id;
struct id_list *next;
};
extern const struct id empty_id; /* ID_NONE */
/*
* parsing.
*/
err_t atoid(const char *src, struct id *id);
/*
* Formatting.
*
* jam_id() only emits printable ASCII. Non-printable characters, for
* instance, are escaped using the RFC compliant sequence \<HEX><HEX>.
*
* While good for logging, it isn't good for shell commands. Use
* JAM_BYTES to apply additional escaping.
*/
void jam_id(struct jambuf *buf, const struct id *id, jam_bytes_fn *jam_bytes);
typedef struct {
char buf[512];
} id_buf;
#define IDTOA_BUF sizeof(id_buf)
const char *str_id(const struct id *id, id_buf *buf);
/*
* Operations.
*/
struct id clone_id(const struct id *id, const char *why);
extern void free_id_content(struct id *id); /* also blats ID */
extern bool any_id(const struct id *a);
extern bool same_id(const struct id *a, const struct id *b);
#define MAX_WILDCARDS 15
extern bool match_dn_any_order_wild(chunk_t a, chunk_t b, int *wildcards);
extern bool match_id(const struct id *a, const struct id *b, int *wildcards);
extern int id_count_wildcards(const struct id *id);
#define id_is_ipaddr(id) ((id)->kind == ID_IPV4_ADDR || (id)->kind == \
ID_IPV6_ADDR)
/* returns ID Type; and points body at Identification Data */
enum ike_id_type id_to_payload(const struct id *id, const ip_address *host, shunk_t *body);
/*
* Old stuff.
*/
void duplicate_id(struct id *dst, const struct id *src); /* use free_id_content; clone_id() */
#endif
|