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
, ike_rekey
, bool,
69 private_stroke_counter_t
*this, ike_sa_t
*old
, ike_sa_t
*new)
71 stroke_counter_type_t type
;
74 id
= new->get_id(new);
75 if (id
->is_initiator(id
))
77 type
= COUNTER_INIT_IKE_SA_REKEY
;
81 type
= COUNTER_RESP_IKE_SA_REKEY
;
84 this->lock
->lock(this->lock
);
85 this->counter
[type
]++;
86 this->lock
->unlock(this->lock
);
91 METHOD(listener_t
, child_rekey
, bool,
92 private_stroke_counter_t
*this, ike_sa_t
*ike_sa
,
93 child_sa_t
*old
, child_sa_t
*new)
95 this->lock
->lock(this->lock
);
96 this->counter
[COUNTER_CHILD_SA_REKEY
]++;
97 this->lock
->unlock(this->lock
);
102 METHOD(stroke_counter_t
, destroy
, void,
103 private_stroke_counter_t
*this)
105 this->lock
->destroy(this->lock
);
112 stroke_counter_t
*stroke_counter_create()
114 private_stroke_counter_t
*this;
119 .ike_rekey
= _ike_rekey
,
120 .child_rekey
= _child_rekey
,
124 .lock
= spinlock_create(),
127 return &this->public;