Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | vici: Support multiple named raw ublic keys | Andreas Steffen | 2016-01-10 | 1 | -15/+19 |
| | |||||
* | swanctl: Load pubkeys with load-creds | Andreas Steffen | 2016-01-09 | 1 | -6/+7 |
| | |||||
* | vici: list-cert sends subject, not-before and not-after attributes for pubkeys | Andreas Steffen | 2016-01-09 | 2 | -1/+28 |
| | |||||
* | vici: Support of raw public keys | Andreas Steffen | 2016-01-09 | 5 | -9/+60 |
| | |||||
* | vici: Enable transport encoding of CERT_TRUSTED_PUBKEY objects | Andreas Steffen | 2016-01-03 | 1 | -5/+8 |
| | |||||
* | vici: Use correct constant when checking for integrity algorithm | Tobias Brunner | 2015-12-21 | 1 | -1/+1 |
| | | | | Currently both have the value 1024 so no real harm done. | ||||
* | vici: CHILD_SA proposals never contain a PRF | Tobias Brunner | 2015-12-21 | 1 | -5/+0 |
| | |||||
* | vici: allow legacy shortcuts in cert queries | Andreas Steffen | 2015-12-19 | 1 | -10/+14 |
| | |||||
* | Use 128 bit security in README.pod examples | Andreas Steffen | 2015-12-18 | 1 | -4/+4 |
| | |||||
* | Improvements to the VICI Perl bindings by Andreas Hofmeister | Andreas Hofmeister | 2015-12-18 | 4 | -189/+127 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Switch.pm, which was implemented as a source filter, has been deprecated in Perl 5.10 and was later removed from the core modules in Perl 5.14 or so. Unfortunately, its replacement, the given/when/default construct, has since been downgraded to "experimental" status because of problems with the underlying "smart-match" operator. Thus, as of Perl 5.22, Perl still has no actually usable "switch"-like construct. So just use boring, old and ugly "if/elsif/else" constructs instead, which are compatible with almost any Perl version. - None of the Perl modules here does anything that would require "AutoLoader". - "Exporter" can be used to export plain functions into another modules name space. But the things that were exported here are meant to be called as methods. In this case, it is neither necessary nor advisable to export those symbols. Just export nothing (the POD documentation already said so). - It is usually the calling script that enables (or does not enable) warnings globally. When a module says "use warnings;" however, the caller looses control over what warnings should be enabled in that module. | ||||
* | Apply pubkey and signature constraints in vici plugin | Andreas Steffen | 2015-12-17 | 1 | -1/+5 |
| | |||||
* | Refactored certificate management for the vici and stroke interfaces5.4.0dr1 | Andreas Steffen | 2015-12-12 | 5 | -88/+64 |
| | |||||
* | Modified vici_cert_info class for use with load_creds and vici_cred | Andreas Steffen | 2015-12-11 | 2 | -59/+31 |
| | |||||
* | Removed VICI protocol versioning | Andreas Steffen | 2015-12-11 | 5 | -88/+0 |
| | |||||
* | Share vici_cert_info.c with vici_cred.c | Andreas Steffen | 2015-12-11 | 3 | -37/+35 |
| | |||||
* | Use VICI 2.0 protocol version for certificate queries | Andreas Steffen | 2015-12-11 | 4 | -52/+159 |
| | |||||
* | Sort certificate types during enumeration | Andreas Steffen | 2015-12-11 | 1 | -39/+205 |
| | |||||
* | Define VICI protocol versions | Andreas Steffen | 2015-12-11 | 5 | -0/+88 |
| | |||||
* | vici: Don't report memory usage via leak-detective | Tobias Brunner | 2015-12-11 | 1 | -17/+0 |
| | | | | | This slowed down the `swanctl --stats` calls in the test scenarios significantly, with not much added value. | ||||
* | vici: Fix documentation about the initiate/terminate timeout | Martin Willi | 2015-12-07 | 1 | -2/+2 |
| | |||||
* | vici: Honor an optionally passed IKE configuration name in initiate/install | Martin Willi | 2015-12-07 | 2 | -5/+13 |
| | | | | | | | If two IKE configurations have CHILD configurations with the same name, we have no control about the CHILD_SA that actually gets controlled. The new "ike" parameter specifies the peer config name to find the "child" config under. | ||||
* | vici: Support completely asynchronous initiating and termination | Martin Willi | 2015-12-07 | 2 | -5/+23 |
| | | | | | | In some situations the vici client is not interested in waiting for a timeout at all, so don't register a logging callback if the timeout argument is negative. | ||||
* | vici: Use an empty local auth round if none given | Martin Willi | 2015-12-07 | 1 | -3/+2 |
| | | | | | While it hardly makes sense to use none for negotiated SAs, it actually does when installing shunt policies. | ||||
* | vici: Limit start action undoing to IKE_SAs using the base peer config name | Martin Willi | 2015-12-07 | 1 | -3/+7 |
| | | | | | If two peer configs use the same child config names, potentailly delete the wrong CHILD_SA. Check the peer config name as well to avoid that. | ||||
* | vici: Close empty IKE_SAs after undoing CHILD_SA start actions | Martin Willi | 2015-12-07 | 1 | -6/+44 |
| | |||||
* | vici: Use value based array to store CHILD_SA ids during restart | Martin Willi | 2015-12-07 | 1 | -5/+6 |
| | | | | | The previous approach stored a pointer to a volatile stack variable, which works for a single ID, but not for multiple. | ||||
* | vici: Undo start actions when unloading configs | Martin Willi | 2015-12-07 | 1 | -0/+1 |
| | |||||
* | vici: Fix clean-local target for Perl bindings if they were not built | Tobias Brunner | 2015-12-04 | 1 | -1/+1 |
| | | | | | This is called when running `make distclean` (or indirectly via `make distcheck`). | ||||
* | Extended and refactored vici perl implementation | Andreas Steffen | 2015-12-01 | 3 | -80/+121 |
| | |||||
* | Built the CPAN file structure for the Vici::Session perl module | Andreas Steffen | 2015-12-01 | 15 | -72/+1038 |
| | |||||
* | Implement vici Perl binding | Andreas Steffen | 2015-12-01 | 8 | -0/+559 |
| | |||||
* | vici: Add get-algorithms command to query loaded algorithms and implementations | Tobias Brunner | 2015-11-30 | 2 | -0/+116 |
| | |||||
* | vici: Attribute certificates are not trusted | Tobias Brunner | 2015-11-12 | 1 | -1/+3 |
| | |||||
* | vici: Properly add CRLs to the credential set | Tobias Brunner | 2015-11-12 | 1 | -2/+8 |
| | | | | add_crl() ensures that old CLRs are not stored in the credential set. | ||||
* | vici: Add option to query leases of pools | Tobias Brunner | 2015-11-10 | 2 | -3/+36 |
| | | | | | We could later perhaps add filter parameters similar to those of the `ipsec leases` command (pool name/virtual IP). | ||||
* | vici: Return local and remote virtual IPs when listing SAs | Tobias Brunner | 2015-11-10 | 2 | -0/+36 |
| | |||||
* | vici: Add NAT information when listing IKE_SAs | Tobias Brunner | 2015-11-09 | 2 | -0/+21 |
| | | | | | | | | | | The `nat-local` and `nat-remote` keys contain information on the NAT status of the local and remote IKE endpoints, respectively. If a responder did not detect a NAT but is configured to fake a NAT situation this is indicated by `nat-fake` (if an initiator fakes a NAT situation `nat-local` is set). If any NAT is detected or faked `nat-any` is set. Closes strongswan/strongswan#16. | ||||
* | Fix some Doxygen issues | Tobias Brunner | 2015-08-27 | 1 | -1/+1 |
| | |||||
* | ike: Only consider number of half-open SAs as responder when deciding ↵ | Tobias Brunner | 2015-08-27 | 1 | -1/+1 |
| | | | | whether COOKIEs are sent | ||||
* | vici: Handle closed sockets in the Ruby gem | Evan Broder | 2015-08-24 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | From recvfrom(2) (which UDPSocket#recv backs into): The return value will be 0 when the peer has performed an orderly shutdown. (i.e. it will return an empty string) Previously in this scenario, Vici::Transport#recv_all would spin forever trying to pull more data off the socket. I'm not entirely clear what happened that caused strongSwan to shutdown the socket, but it probably should not cause vici Ruby apps to spin. Closes strongswan/strongswan#13. | ||||
* | vici: Optionally check limits when initiating connections | Tobias Brunner | 2015-08-21 | 2 | -1/+7 |
| | | | | | If the init-limits parameter is set (disabled by default) init limits will be checked and might prevent new SAs from getting initiated. | ||||
* | vici: Add get_bool() convenience getter for VICI messages | Tobias Brunner | 2015-08-21 | 3 | -0/+94 |
| | |||||
* | controller: Optionally adhere to init limits also when initiating IKE_SAs | Tobias Brunner | 2015-08-21 | 2 | -3/+3 |
| | |||||
* | vici: Add option to disable policy installation for CHILD_SAs | Tobias Brunner | 2015-08-17 | 1 | -1/+6 |
| | |||||
* | vici: Add listen methods to receive arbitrary events in Python library | Tobias Brunner | 2015-08-17 | 1 | -0/+34 |
| | |||||
* | vici: Move event (un-)registration to a helper method in Python library | Tobias Brunner | 2015-08-17 | 3 | -49/+60 |
| | | | | | Also make sure events are unregistered in case of exceptions in streamed_request(). | ||||
* | vici: Add ike/child-rekey events | Tobias Brunner | 2015-08-17 | 2 | -0/+108 |
| | |||||
* | vici: Document the ike/child-updown events | Tobias Brunner | 2015-08-17 | 1 | -0/+23 |
| | |||||
* | vici: Don't include a child-sas section in ike-updown event | Tobias Brunner | 2015-08-17 | 1 | -2/+0 |
| | | | | | | This makes it clearer that only the data concerning the IKE_SA is transmitted (there could be CHILD_SAs e.g. during IKEv1 reauthentication). | ||||
* | vici: Explicitly notify listeners of the type of ike/child-updown event | Tobias Brunner | 2015-08-17 | 1 | -0/+11 |
| |