2 * Copyright (C) 2012 Martin Willi
3 * Copyright (C) 2012 revosec AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "stroke_counter.h"
18 #include <threading/spinlock.h>
20 ENUM(stroke_counter_type_names
,
21 COUNTER_INIT_IKE_SA_REKEY
, COUNTER_OUT_INFORMATIONAL_RSP
,
45 typedef struct private_stroke_counter_t private_stroke_counter_t
;
48 * Private data of an stroke_counter_t object.
50 struct private_stroke_counter_t
{
53 * Public stroke_counter_t interface.
55 stroke_counter_t
public;
60 u_int64_t counter
[COUNTER_MAX
];
63 * Lock for counter values
68 METHOD(listener_t
, alert
, bool,
69 private_stroke_counter_t
*this, ike_sa_t
*ike_sa
,
70 alert_t alert
, va_list args
)
72 stroke_counter_type_t type
;
76 case ALERT_INVALID_IKE_SPI
:
77 type
= COUNTER_IN_INVALID_IKE_SPI
;
79 case ALERT_PARSE_ERROR_HEADER
:
80 case ALERT_PARSE_ERROR_BODY
:
81 type
= COUNTER_IN_INVALID
;
87 this->lock
->lock(this->lock
);
88 this->counter
[type
]++;
89 this->lock
->unlock(this->lock
);
94 METHOD(listener_t
, ike_rekey
, bool,
95 private_stroke_counter_t
*this, ike_sa_t
*old
, ike_sa_t
*new)
97 stroke_counter_type_t type
;
100 id
= new->get_id(new);
101 if (id
->is_initiator(id
))
103 type
= COUNTER_INIT_IKE_SA_REKEY
;
107 type
= COUNTER_RESP_IKE_SA_REKEY
;
110 this->lock
->lock(this->lock
);
111 this->counter
[type
]++;
112 this->lock
->unlock(this->lock
);
117 METHOD(listener_t
, child_rekey
, bool,
118 private_stroke_counter_t
*this, ike_sa_t
*ike_sa
,
119 child_sa_t
*old
, child_sa_t
*new)
121 this->lock
->lock(this->lock
);
122 this->counter
[COUNTER_CHILD_SA_REKEY
]++;
123 this->lock
->unlock(this->lock
);
128 METHOD(listener_t
, message_hook
, bool,
129 private_stroke_counter_t
*this, ike_sa_t
*ike_sa
, message_t
*message
,
130 bool incoming
, bool plain
)
132 stroke_counter_type_t type
;
135 if ((incoming
&& !plain
) || (!incoming
&& !plain
))
136 { /* handle each message only once */
140 request
= message
->get_request(message
);
141 switch (message
->get_exchange_type(message
))
146 type
= request ? COUNTER_IN_IKE_SA_INIT_REQ
147 : COUNTER_IN_IKE_SA_INIT_RSP
;
151 type
= request ? COUNTER_OUT_IKE_SA_INIT_REQ
152 : COUNTER_OUT_IKE_SA_INIT_RES
;
158 type
= request ? COUNTER_IN_IKE_AUTH_REQ
159 : COUNTER_IN_IKE_AUTH_RSP
;
163 type
= request ? COUNTER_OUT_IKE_AUTH_REQ
164 : COUNTER_OUT_IKE_AUTH_RSP
;
167 case CREATE_CHILD_SA
:
170 type
= request ? COUNTER_IN_CREATE_CHILD_SA_REQ
171 : COUNTER_IN_CREATE_CHILD_SA_RSP
;
175 type
= request ? COUNTER_OUT_CREATE_CHILD_SA_REQ
176 : COUNTER_OUT_CREATE_CHILD_SA_RSP
;
182 type
= request ? COUNTER_IN_INFORMATIONAL_REQ
183 : COUNTER_IN_INFORMATIONAL_RSP
;
187 type
= request ? COUNTER_OUT_INFORMATIONAL_REQ
188 : COUNTER_OUT_INFORMATIONAL_RSP
;
195 this->lock
->lock(this->lock
);
196 this->counter
[type
]++;
197 this->lock
->unlock(this->lock
);
202 METHOD(stroke_counter_t
, destroy
, void,
203 private_stroke_counter_t
*this)
205 this->lock
->destroy(this->lock
);
212 stroke_counter_t
*stroke_counter_create()
214 private_stroke_counter_t
*this;
220 .ike_rekey
= _ike_rekey
,
221 .child_rekey
= _child_rekey
,
222 .message
= _message_hook
,
226 .lock
= spinlock_create(),
229 return &this->public;