-
Notifications
You must be signed in to change notification settings - Fork 0
/
isakmp-pkt.h
146 lines (135 loc) · 3.7 KB
/
isakmp-pkt.h
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* ISAKMP packing and unpacking routines.
Copyright (C) 2002 Geoffrey Keating
Copyright (C) 2003-2005 Maurice Massar
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.
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.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
$Id$
*/
#ifndef __ISAKMP_PKT_H__
#define __ISAKMP_PKT_H__
#if defined(__linux__)
#include <stdint.h>
#endif
#include <sys/types.h>
#include "isakmp.h"
struct isakmp_attribute {
struct isakmp_attribute *next;
uint16_t type;
enum {
isakmp_attr_lots,
isakmp_attr_16,
isakmp_attr_2x8,
isakmp_attr_acl
} af;
union {
uint16_t attr_16;
uint8_t attr_2x8[2];
struct {
uint16_t length;
uint8_t *data;
} lots;
struct {
uint16_t count;
struct acl_ent_s {
struct in_addr addr, mask;
uint16_t protocol, sport, dport;
} *acl_ent;
} acl;
} u;
};
struct isakmp_payload {
struct isakmp_payload *next;
enum isakmp_payload_enum type;
union {
struct {
uint32_t doi;
uint32_t situation;
struct isakmp_payload *proposals;
} sa;
struct {
uint8_t number;
uint8_t prot_id;
uint8_t spi_size;
uint8_t *spi;
struct isakmp_payload *transforms;
} p;
struct {
uint8_t number;
uint8_t id;
struct isakmp_attribute *attributes;
} t;
struct {
uint16_t length;
uint8_t *data;
} ke, hash, sig, nonce, vid, natd;
struct {
uint8_t type;
uint8_t protocol;
uint16_t port;
uint16_t length;
uint8_t *data;
} id;
struct {
uint8_t encoding;
uint16_t length;
uint8_t *data;
} cert, cr;
struct {
uint32_t doi;
uint8_t protocol;
uint8_t spi_length;
uint8_t *spi;
uint16_t type;
uint16_t data_length;
uint8_t *data;
struct isakmp_attribute *attributes; /* sometimes, data is an attributes array */
} n;
struct {
uint32_t doi;
uint8_t protocol;
uint8_t spi_length;
uint16_t num_spi;
uint8_t **spi;
} d;
struct {
uint8_t type;
uint16_t id;
struct isakmp_attribute *attributes;
} modecfg;
} u;
};
struct isakmp_packet {
uint8_t i_cookie[ISAKMP_COOKIE_LENGTH];
uint8_t r_cookie[ISAKMP_COOKIE_LENGTH];
uint8_t isakmp_version;
uint8_t exchange_type;
uint8_t flags;
uint32_t message_id;
struct isakmp_payload *payload;
};
extern void *xallocc(size_t x);
extern struct isakmp_packet *new_isakmp_packet(void);
extern struct isakmp_payload *new_isakmp_payload(uint8_t);
extern struct isakmp_payload *new_isakmp_data_payload(uint8_t type, const void *data,
size_t data_length);
extern struct isakmp_attribute *new_isakmp_attribute(uint16_t, struct isakmp_attribute *);
extern struct isakmp_attribute *new_isakmp_attribute_16(uint16_t type, uint16_t data,
struct isakmp_attribute *next);
extern void free_isakmp_packet(struct isakmp_packet *p);
extern void flatten_isakmp_payloads(struct isakmp_payload *p, uint8_t ** result, size_t * size);
extern void flatten_isakmp_payload(struct isakmp_payload *p, uint8_t ** result, size_t * size);
extern void flatten_isakmp_packet(struct isakmp_packet *p,
uint8_t ** result, size_t * size, size_t blksz);
extern struct isakmp_packet *parse_isakmp_packet(const uint8_t * data,
size_t data_len, int * reject);
extern void test_pack_unpack(void);
#endif