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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
/* $OpenBSD: common.c,v 1.1 2017/05/29 20:59:28 markus Exp $ */
/*
* A bunch of stub functions so we can compile and link ikev2_pld.c
* in a standalone program for testing purposes.
*
* Placed in the public domain
*/
#include <sys/socket.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/uio.h>
#include <event.h>
#include <limits.h>
#include "iked.h"
#include "types.h"
#include "test_helper.h"
int eap_parse(struct iked *, struct iked_sa *, void *, int);
int ikev2_msg_frompeer(struct iked_message *);
int ikev2_send_ike_e(struct iked *, struct iked_sa *, struct ibuf *,
u_int8_t, u_int8_t, int);
void ikev2_ikesa_recv_delete(struct iked *, struct iked_sa *);
struct iked_childsa *
childsa_lookup(struct iked_sa *, u_int64_t, u_int8_t);
int ikev2_childsa_delete(struct iked *, struct iked_sa *,
u_int8_t, u_int64_t, u_int64_t *, int);
int sa_stateok(struct iked_sa *, int);
void sa_state(struct iked *, struct iked_sa *, int);
void ikev2_disable_rekeying(struct iked *, struct iked_sa *);
void ikev2_init_ike_sa(struct iked *, void *);
struct group *
group_get(u_int32_t);
void timer_set(struct iked *, struct iked_timer *,
void (*)(struct iked *, void *), void *);
void timer_add(struct iked *, struct iked_timer *, int);
void timer_del(struct iked *, struct iked_timer *);
ssize_t ikev2_nat_detection(struct iked *, struct iked_message *,
void *, size_t, u_int);
int ca_setreq(struct iked *, struct iked_sa *, struct iked_static_id *,
u_int8_t, u_int8_t *, size_t, enum privsep_procid);
int ikev2_print_id(struct iked_id *, char *, size_t);
struct iked_transform *
config_add_transform(struct iked_proposal *, u_int, u_int, u_int,
u_int);
struct iked_proposal *
config_add_proposal(struct iked_proposals *, u_int, u_int);
int ikev2_send_informational(struct iked *, struct iked_message *);
struct ibuf *
ikev2_msg_decrypt(struct iked *, struct iked_sa *, struct ibuf *,
struct ibuf *);
int
eap_parse(struct iked *env, struct iked_sa *sa, void *data, int response)
{
return (0);
}
int
ikev2_msg_frompeer(struct iked_message *msg)
{
return (0);
}
int
ikev2_send_ike_e(struct iked *env, struct iked_sa *sa, struct ibuf *buf,
u_int8_t firstpayload, u_int8_t exchange, int response)
{
return (0);
}
void
ikev2_ikesa_recv_delete(struct iked *env, struct iked_sa *sa)
{
}
struct iked_childsa *
childsa_lookup(struct iked_sa *a, u_int64_t b, u_int8_t c)
{
return (NULL);
}
int
ikev2_childsa_delete(struct iked *a, struct iked_sa *b, u_int8_t c,
u_int64_t d, u_int64_t *e , int f)
{
return (0);
}
int
sa_stateok(struct iked_sa *a, int b)
{
return (0);
}
void
sa_state(struct iked * a, struct iked_sa *b, int c)
{
}
void
ikev2_disable_rekeying(struct iked *a, struct iked_sa *b)
{
}
void
ikev2_init_ike_sa(struct iked *a, void *b)
{
}
const struct group_id *
group_getid(u_int32_t id)
{
return (NULL);
}
void
timer_set(struct iked *env, struct iked_timer *tmr,
void (*cb)(struct iked *, void *), void *arg)
{
}
void
timer_add(struct iked *env, struct iked_timer *tmr, int timeout)
{
}
void
timer_del(struct iked *env, struct iked_timer *tmr)
{
}
ssize_t
ikev2_nat_detection(struct iked *env, struct iked_message *msg,
void *ptr, size_t len, u_int type)
{
return (0);
}
int
ca_setreq(struct iked *env, struct iked_sa *sh,
struct iked_static_id *localid, u_int8_t type, u_int8_t *data,
size_t len, enum privsep_procid procid)
{
return (0);
}
int
ikev2_print_id(struct iked_id *id, char *idstr, size_t idstrlen)
{
return (0);
}
struct iked_transform *
config_add_transform(struct iked_proposal *prop, u_int type,
u_int id, u_int length, u_int keylength)
{
return (NULL);
}
struct iked_proposal *
config_add_proposal(struct iked_proposals *head, u_int id, u_int proto)
{
return (NULL);
}
int
ikev2_send_informational(struct iked *env, struct iked_message *msg)
{
return (0);
}
struct ibuf *
ikev2_msg_decrypt(struct iked *env, struct iked_sa *sa,
struct ibuf *msg, struct ibuf *src)
{
ASSERT_PTR_NE(src, NULL);
/*
* Free src as caller uses ikev2_msg_decrypt() like this:
* src = ikev2_msg_decrypt(..., src);
*/
ibuf_free(src);
return (NULL);
}
|