strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
41745e2
)
vici: Log owners of a just loaded shared-secret
author
Martin Willi
<martin@revosec.ch>
Tue, 6 May 2014 09:10:05 +0000
(11:10 +0200)
committer
Martin Willi
<martin@revosec.ch>
Wed, 7 May 2014 12:13:39 +0000
(14:13 +0200)
src/libcharon/plugins/vici/vici_cred.c
patch
|
blob
|
history
diff --git
a/src/libcharon/plugins/vici/vici_cred.c
b/src/libcharon/plugins/vici/vici_cred.c
index
2a9231d
..
cc6434b
100644
(file)
--- a/
src/libcharon/plugins/vici/vici_cred.c
+++ b/
src/libcharon/plugins/vici/vici_cred.c
@@
-207,7
+207,10
@@
CALLBACK(load_shared, vici_message_t*,
shared_key_type_t type;
linked_list_t *owners;
chunk_t data;
shared_key_type_t type;
linked_list_t *owners;
chunk_t data;
- char *str;
+ char *str, buf[512] = "";
+ enumerator_t *enumerator;
+ identification_t *owner;
+ int len;
str = message->get_str(message, NULL, "type");
if (!str)
str = message->get_str(message, NULL, "type");
if (!str)
@@
-243,7
+246,20
@@
CALLBACK(load_shared, vici_message_t*,
owners->insert_last(owners, identification_create_from_string("%any"));
}
owners->insert_last(owners, identification_create_from_string("%any"));
}
- DBG1(DBG_CFG, "loaded %N shared key", shared_key_type_names, type);
+ enumerator = owners->create_enumerator(owners);
+ while (enumerator->enumerate(enumerator, &owner))
+ {
+ len = strlen(buf);
+ if (len < sizeof(buf))
+ {
+ snprintf(buf + len, sizeof(buf) - len, "%s'%Y'",
+ len ? ", " : "", owner);
+ }
+ }
+ enumerator->destroy(enumerator);
+
+ DBG1(DBG_CFG, "loaded %N shared key for: %s",
+ shared_key_type_names, type, buf);
this->creds->add_shared_list(this->creds,
shared_key_create(type, chunk_clone(data)), owners);
this->creds->add_shared_list(this->creds,
shared_key_create(type, chunk_clone(data)), owners);