1 /* NHRP virtual connection
2 * Copyright (c) 2014-2015 Timo Teräs
4 * This file is free software: you may copy, redistribute and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
20 DEFINE_MTYPE_STATIC(NHRPD
, NHRP_VC
, "NHRP virtual connection")
25 struct list_head childlist_entry
;
28 static struct hash
*nhrp_vc_hash
;
29 static struct list_head childlist_head
[512];
31 static unsigned int nhrp_vc_key(const void *peer_data
)
33 const struct nhrp_vc
*vc
= peer_data
;
34 return jhash_2words(sockunion_hash(&vc
->local
.nbma
),
35 sockunion_hash(&vc
->remote
.nbma
), 0);
38 static bool nhrp_vc_cmp(const void *cache_data
, const void *key_data
)
40 const struct nhrp_vc
*a
= cache_data
;
41 const struct nhrp_vc
*b
= key_data
;
43 return sockunion_same(&a
->local
.nbma
, &b
->local
.nbma
)
44 && sockunion_same(&a
->remote
.nbma
, &b
->remote
.nbma
);
47 static void *nhrp_vc_alloc(void *data
)
49 struct nhrp_vc
*vc
, *key
= data
;
51 vc
= XMALLOC(MTYPE_NHRP_VC
, sizeof(struct nhrp_vc
));
53 *vc
= (struct nhrp_vc
){
54 .local
.nbma
= key
->local
.nbma
,
55 .remote
.nbma
= key
->remote
.nbma
,
57 NOTIFIER_LIST_INITIALIZER(&vc
->notifier_list
),
63 static void nhrp_vc_free(void *data
)
65 XFREE(MTYPE_NHRP_VC
, data
);
68 struct nhrp_vc
*nhrp_vc_get(const union sockunion
*src
,
69 const union sockunion
*dst
, int create
)
72 key
.local
.nbma
= *src
;
73 key
.remote
.nbma
= *dst
;
74 return hash_get(nhrp_vc_hash
, &key
, create
? nhrp_vc_alloc
: 0);
77 static void nhrp_vc_check_delete(struct nhrp_vc
*vc
)
79 if (vc
->updating
|| vc
->ipsec
|| notifier_active(&vc
->notifier_list
))
81 hash_release(nhrp_vc_hash
, vc
);
85 static void nhrp_vc_update(struct nhrp_vc
*vc
, long cmd
)
88 notifier_call(&vc
->notifier_list
, cmd
);
90 nhrp_vc_check_delete(vc
);
93 static void nhrp_vc_ipsec_reset(struct nhrp_vc
*vc
)
96 vc
->local
.certlen
= 0;
98 vc
->remote
.certlen
= 0;
101 int nhrp_vc_ipsec_updown(uint32_t child_id
, struct nhrp_vc
*vc
)
103 struct child_sa
*sa
= NULL
, *lsa
;
104 uint32_t child_hash
= child_id
% array_size(childlist_head
);
105 int abort_migration
= 0;
107 list_for_each_entry(lsa
, &childlist_head
[child_hash
], childlist_entry
)
109 if (lsa
->id
== child_id
) {
119 sa
= XMALLOC(MTYPE_NHRP_VC
, sizeof(struct child_sa
));
121 *sa
= (struct child_sa
){
124 LIST_INITIALIZER(sa
->childlist_entry
),
127 list_add_tail(&sa
->childlist_entry
,
128 &childlist_head
[child_hash
]);
135 /* Attach first to new VC */
137 nhrp_vc_update(vc
, NOTIFY_VC_IPSEC_CHANGED
);
140 /* Notify old VC of migration */
141 sa
->vc
->abort_migration
= 0;
142 debugf(NHRP_DEBUG_COMMON
, "IPsec NBMA change of %pSU to %pSU",
143 &sa
->vc
->remote
.nbma
, &vc
->remote
.nbma
);
144 nhrp_vc_update(sa
->vc
, NOTIFY_VC_IPSEC_UPDATE_NBMA
);
145 abort_migration
= sa
->vc
->abort_migration
;
148 /* Deattach old VC */
151 nhrp_vc_ipsec_reset(sa
->vc
);
152 nhrp_vc_update(sa
->vc
, NOTIFY_VC_IPSEC_CHANGED
);
158 list_del(&sa
->childlist_entry
);
159 XFREE(MTYPE_NHRP_VC
, sa
);
162 return abort_migration
;
165 void nhrp_vc_notify_add(struct nhrp_vc
*vc
, struct notifier_block
*n
,
166 notifier_fn_t action
)
168 notifier_add(n
, &vc
->notifier_list
, action
);
171 void nhrp_vc_notify_del(struct nhrp_vc
*vc
, struct notifier_block
*n
)
174 nhrp_vc_check_delete(vc
);
178 struct nhrp_vc_iterator_ctx
{
179 void (*cb
)(struct nhrp_vc
*, void *);
183 static void nhrp_vc_iterator(struct hash_bucket
*b
, void *ctx
)
185 struct nhrp_vc_iterator_ctx
*ic
= ctx
;
186 ic
->cb(b
->data
, ic
->ctx
);
189 void nhrp_vc_foreach(void (*cb
)(struct nhrp_vc
*, void *), void *ctx
)
191 struct nhrp_vc_iterator_ctx ic
= {
192 .cb
= cb
, .ctx
= ctx
,
194 hash_iterate(nhrp_vc_hash
, nhrp_vc_iterator
, &ic
);
197 void nhrp_vc_init(void)
201 nhrp_vc_hash
= hash_create(nhrp_vc_key
, nhrp_vc_cmp
, "NHRP VC hash");
202 for (i
= 0; i
< array_size(childlist_head
); i
++)
203 list_init(&childlist_head
[i
]);
206 void nhrp_vc_reset(void)
208 struct child_sa
*sa
, *n
;
211 for (i
= 0; i
< array_size(childlist_head
); i
++) {
212 list_for_each_entry_safe(sa
, n
, &childlist_head
[i
],
214 nhrp_vc_ipsec_updown(sa
->id
, 0);
218 void nhrp_vc_terminate(void)
221 hash_clean(nhrp_vc_hash
, nhrp_vc_free
);