]> git.ipfire.org Git - thirdparty/strongswan.git/log
thirdparty/strongswan.git
6 years agowip: mem-pool: Optionally manage offline leases as LRU list 2077-mem-pool-lru
Tobias Brunner [Fri, 6 Oct 2017 08:33:05 +0000 (10:33 +0200)] 
wip: mem-pool: Optionally manage offline leases as LRU list

6 years agolibimcv: Renamed SW Request to SWIMA Request
Andreas Steffen [Wed, 27 Sep 2017 08:01:56 +0000 (10:01 +0200)] 
libimcv: Renamed SW Request to SWIMA Request

6 years agoVersion bump to 5.6.1dr3 5.6.1dr3
Andreas Steffen [Tue, 26 Sep 2017 20:43:38 +0000 (22:43 +0200)] 
Version bump to 5.6.1dr3

6 years agoSWIMA attribute name changes
Andreas Steffen [Sat, 23 Sep 2017 13:22:52 +0000 (15:22 +0200)] 
SWIMA attribute name changes

draft-ietf-sacm-nea-swima-patnc-01 changes some SWIMA attribute
names.

6 years agokernel-pfroute: Delay call to if_indextoname(3) when handling RTM_IFINFO
Tobias Brunner [Mon, 28 Aug 2017 17:12:16 +0000 (19:12 +0200)] 
kernel-pfroute: Delay call to if_indextoname(3) when handling RTM_IFINFO

It seems that there is a race, at least in 10.13, that lets
if_indextoname() fail for the new TUN device. So we delay the call a bit,
which seems to "fix" the issue. It's strange anyway that the previous
delay was only applied when an iface entry was already found.

6 years agocontroller: Consider any IKE_SA destruction as success when terminating
Tobias Brunner [Mon, 14 Aug 2017 09:14:38 +0000 (11:14 +0200)] 
controller: Consider any IKE_SA destruction as success when terminating

6 years agoconfigure: Detect type of length parameter for gperf generated function
Tobias Brunner [Mon, 18 Sep 2017 15:57:05 +0000 (17:57 +0200)] 
configure: Detect type of length parameter for gperf generated function

Since 3.1 gperf uses size_t for the length parameter instead of an
unsigned int.

6 years agoutils: Include stdint.h
Tobias Brunner [Thu, 14 Sep 2017 09:59:30 +0000 (11:59 +0200)] 
utils: Include stdint.h

Recent releases of glibc don't include the full stdint.h header in some
network headers included by utils.h.  So uintptr_t might not be defined.
Since we use fixed width integers, including the latter, all over the place
we make sure the complete file is included.

Fixes #2425.

6 years agosec-updater: Make sure `success` is initialized
Tobias Brunner [Thu, 14 Sep 2017 17:25:42 +0000 (19:25 +0200)] 
sec-updater: Make sure `success` is initialized

6 years agodhcp: Fix warning regarding unaligned pointer value due to packed struct
Tobias Brunner [Thu, 14 Sep 2017 17:33:07 +0000 (19:33 +0200)] 
dhcp: Fix warning regarding unaligned pointer value due to packed struct

We don't need to access this as uint32_t so just cast it to a char*.

6 years agodhcp: Don't use signed char for DHCP options
Tobias Brunner [Thu, 14 Sep 2017 17:11:10 +0000 (19:11 +0200)] 
dhcp: Don't use signed char for DHCP options

The value of DHCP_OPTEND is 255.  When it is assigned this result in a
sign change as the positive int constant is cast to a signed char and -1
results. Clang 4.0 complains about this.

6 years agoimv-agent: Fix get_attribute() call for preferred language
Tobias Brunner [Thu, 14 Sep 2017 16:27:13 +0000 (18:27 +0200)] 
imv-agent: Fix get_attribute() call for preferred language

6 years agobliss: Fix compile error of unit tests due to uninitialized variable
Tobias Brunner [Thu, 14 Sep 2017 16:04:38 +0000 (18:04 +0200)] 
bliss: Fix compile error of unit tests due to uninitialized variable

6 years agotravis: Use Clang 4.0 instead of 3.9 due to va_start() warnings
Tobias Brunner [Thu, 14 Sep 2017 13:33:59 +0000 (15:33 +0200)] 
travis: Use Clang 4.0 instead of 3.9 due to va_start() warnings

This is a follow up on the issue documented in the previous commit.

To build with -Werror and Clang 3.9 we'd have to change all enum arguments
that are used as last argument before ... to e.g. u_int, which affects
quite a lot of places (crypto-factory, MODP_CUSTOM constructors, auth-cfg,
bus, vici-builder, vici-message).  Besides that it doesn't look as nice
it also seems a bit too much hassle just to cater to the whims of a
particular version of one compiler, so we just don't build with that
version on Travis and use 4.0 instead.

6 years agosettings: Fix possible undefined behavior with va_start() and bool
Tobias Brunner [Thu, 14 Sep 2017 13:31:00 +0000 (15:31 +0200)] 
settings: Fix possible undefined behavior with va_start() and bool

This fixes compilation with -Werror when using Clang 4.0 (but not 3.9)
and possibly prevents undefined behavior.

According to the C standard the following applies to the second
parameter of the va_start() macro (subclause 7.16.1.4, paragraph 4):

  The parameter parmN is the identifier of the rightmost parameter
  in the variable parameter list in the function definition (the
  one just before the ...). If the parameter parmN is declared with
  the register storage class, with a function or array type, or with
  a type that is not compatible with the type that results after
  application of the default argument promotions, the behavior is
  undefined.

Because bool is usually just 1 byte and therefore smaller than int (i.e.
the result of default argument promotion) its use as last argument before
... might result in undefined behavior.  This theoretically can also
apply to enums as a compiler may use a smaller base type than int.

Since Clang 3.9 (currently in use on Travis by default) a warning is
issued about this, however, that version did not yet compare the actual
size of the argument's type, causing warnings where they are not
warranted (basically for all cases where enum types are used for the
last argument).  This was apparently fixed with Clang 4.0, which only
warns about this use of bool with va_start(), which makes sense.

6 years agoDefine MODP_CUSTOM constructors as variadic functions
Tobias Brunner [Thu, 14 Sep 2017 12:03:08 +0000 (14:03 +0200)] 
Define MODP_CUSTOM constructors as variadic functions

They now match the dh_constructor_t signature.  This is a follow up for
the changes merged with b668bf3f9ec1 and should fix use of MODP_CUSTOM on
Apple's ARM64 platform.

6 years agolibtnccs: Correctly read dlopen_use_rtld_now option
Tobias Brunner [Thu, 14 Sep 2017 16:07:08 +0000 (18:07 +0200)] 
libtnccs: Correctly read dlopen_use_rtld_now option

Fixes: 50e4aeb22f49 ("libtnccs: Optionally use RTLD_NOW to load IMC/IMVs with dlopen()")
6 years agoplugin-loader: Correctly read dlopen_use_rtld_now option
Tobias Brunner [Thu, 14 Sep 2017 10:43:54 +0000 (12:43 +0200)] 
plugin-loader: Correctly read dlopen_use_rtld_now option

Fixes: 305c4aa82cb0 ("plugin-loader: Optionally use RTLD_NOW with dlopen()")
6 years agoandroid: New release after adding delta CRL support and some bug fixes
Tobias Brunner [Mon, 18 Sep 2017 09:04:46 +0000 (11:04 +0200)] 
android: New release after adding delta CRL support and some bug fixes

6 years agoandroid: Ignore IllegalArgumentException for multicast addresses
Tobias Brunner [Mon, 11 Sep 2017 17:14:31 +0000 (19:14 +0200)] 
android: Ignore IllegalArgumentException for multicast addresses

Some Android versions seem to reject routes that use multicast addresses.

Fixes #2420.

6 years agoopenssl: Add support for delta CRLs
Tobias Brunner [Thu, 7 Sep 2017 10:07:32 +0000 (12:07 +0200)] 
openssl: Add support for delta CRLs

6 years agocertificates: Use shared destructor for x509_cdp_t
Tobias Brunner [Thu, 7 Sep 2017 09:45:23 +0000 (11:45 +0200)] 
certificates: Use shared destructor for x509_cdp_t

6 years agochild-create: Don't consider a DH group mismatch as failure as responder
Tobias Brunner [Wed, 6 Sep 2017 14:41:42 +0000 (16:41 +0200)] 
child-create: Don't consider a DH group mismatch as failure as responder

This causes problems e.g. on Android where we handle the alert (and
reestablish the IKE_SA) even though it usually is no problem if the
peer retries with the requested group.  We don't consider it as a
failure on the initiator either.

6 years agolibipsec: Make sure to expire the right SA
Tobias Brunner [Mon, 14 Aug 2017 14:03:54 +0000 (16:03 +0200)] 
libipsec: Make sure to expire the right SA

If an IPsec SA is actually replaced with a rekeying its entry in the
manager is freed. That means that when the hard expire is triggered a
new entry might be found at the cached pointer location.  So we have
to make sure we trigger the expire only if we found the right SA.

We could use SPI and addresses for the lookup, but this here requires
a bit less memory and is just a small change. Another option would be to
somehow cancel the queued job, but our scheduler doesn't allow that at
the moment.

Fixes #2399.

6 years agoMerge branch 'libipsec-ip-frag'
Tobias Brunner [Mon, 18 Sep 2017 08:31:58 +0000 (10:31 +0200)] 
Merge branch 'libipsec-ip-frag'

This fixes "packet too short" errors when parsing fragmented IPv4
packets and correctly determines the protocol in fragmented IPv6 packets.
Protocol headers are only parsed in unfragmented IPv4 and IPv6 packets,
or IPv4 first fragments.

Closes strongswan/strongswan#80.

6 years agotesting: Add libipsec/net2net-cert-ipv6 scenario
Tobias Brunner [Fri, 1 Sep 2017 08:03:11 +0000 (10:03 +0200)] 
testing: Add libipsec/net2net-cert-ipv6 scenario

6 years agoip-packet: Correctly determine protocol in fragmented IPv6 packets
Tobias Brunner [Fri, 1 Sep 2017 07:47:29 +0000 (09:47 +0200)] 
ip-packet: Correctly determine protocol in fragmented IPv6 packets

We don't attempt to parse the transport headers for fragments, not even
for the initial fragment (it's not guaranteed they contain the header,
depending on the number and type of extension headers).

6 years agoip-packet: Fix "packet too short" error when parsing fragmented IPv4 packets
Tobias Brunner [Fri, 1 Sep 2017 06:57:56 +0000 (08:57 +0200)] 
ip-packet: Fix "packet too short" error when parsing fragmented IPv4 packets

Only attempt to parse the transport header of an IPv4 packet if it's
not fragmented or the first fragment.

6 years agoMerge branch 'tkm-cid-ref'
Tobias Brunner [Fri, 15 Sep 2017 10:17:07 +0000 (12:17 +0200)] 
Merge branch 'tkm-cid-ref'

This fixes IKE_SA rekey collision handling and improves error handling
if CHILD_SA setup fails.

6 years agocharon-tkm: Reset ESA on child SA create failure
Adrian-Ken Rueegsegger [Tue, 5 Sep 2017 13:56:12 +0000 (15:56 +0200)] 
charon-tkm: Reset ESA on child SA create failure

Since we are also releasing the ESA ID we have to make sure that the ESA
context is reset and in a clean state in order for it to be actually
reusable.

6 years agocharon-tkm: Check for error when acquiring ESA ID
Adrian-Ken Rueegsegger [Mon, 4 Sep 2017 13:00:42 +0000 (15:00 +0200)] 
charon-tkm: Check for error when acquiring ESA ID

6 years agocharon-tkm: Fix AE context life-cycle handling
Adrian-Ken Rueegsegger [Fri, 1 Sep 2017 16:46:05 +0000 (18:46 +0200)] 
charon-tkm: Fix AE context life-cycle handling

Use new reference counting feature of ID manager for AE contexts and
only perform reset if count is zero. Also, do not pass on AE ID as every
IKE SA must decrement AE ID count once it is not used any longer.

6 years agocharon-tkm: Return current refcount when releasing ID
Adrian-Ken Rueegsegger [Fri, 1 Sep 2017 15:21:05 +0000 (17:21 +0200)] 
charon-tkm: Return current refcount when releasing ID

6 years agocharon-tkm: Add acquire_ref method to ID manager
Adrian-Ken Rueegsegger [Fri, 1 Sep 2017 15:15:41 +0000 (17:15 +0200)] 
charon-tkm: Add acquire_ref method to ID manager

The function acquires a reference to the given context reference id for
a specific context kind.

6 years agocharon-tkm: Store context ids as int instead of bool
Adrian-Ken Rueegsegger [Fri, 1 Sep 2017 14:58:15 +0000 (16:58 +0200)] 
charon-tkm: Store context ids as int instead of bool

This is in preparation of making context ids refcountable.

6 years agocharon-tkm: Add missing whitespace log message
Adrian-Ken Rueegsegger [Fri, 1 Sep 2017 14:30:49 +0000 (16:30 +0200)] 
charon-tkm: Add missing whitespace log message

6 years agochild-delete: Only let SAs expire naturally if they not already did
Tobias Brunner [Mon, 4 Sep 2017 16:11:39 +0000 (18:11 +0200)] 
child-delete: Only let SAs expire naturally if they not already did

6 years agoVersion bump to 5.6.1dr2 5.6.1dr2
Andreas Steffen [Wed, 13 Sep 2017 14:56:45 +0000 (16:56 +0200)] 
Version bump to 5.6.1dr2

6 years agosec-updater: Import SWID tags of updated packages
Andreas Steffen [Sat, 9 Sep 2017 11:13:28 +0000 (13:13 +0200)] 
sec-updater: Import SWID tags of updated packages

sec-updater downloads the deb package files from security updates from
a given linux repository and uses the swid_generator command to
derive a SWID tag. The SWID tag is then imported into strongTNC
using the manage.py importswid command.

6 years agolibimcv: Corrected caption
Andreas Steffen [Sat, 9 Sep 2017 11:10:45 +0000 (13:10 +0200)] 
libimcv: Corrected caption

6 years agopt-tls-client: Introduced --options as a synonym for --optionsfrom
Andreas Steffen [Sat, 9 Sep 2017 08:31:02 +0000 (10:31 +0200)] 
pt-tls-client: Introduced --options as a synonym for --optionsfrom

6 years agosec-updater: Write to log only if at least one update is found.
Andreas Steffen [Thu, 7 Sep 2017 12:50:49 +0000 (14:50 +0200)] 
sec-updater: Write to log only if at least one update is found.

6 years agoandroid: New release after adding OCSP, CRL cache and some other stuff
Tobias Brunner [Mon, 4 Sep 2017 09:27:40 +0000 (11:27 +0200)] 
android: New release after adding OCSP, CRL cache and some other stuff

6 years agotesting: Reduce log level of SSH client
Tobias Brunner [Tue, 29 Aug 2017 12:11:23 +0000 (14:11 +0200)] 
testing: Reduce log level of SSH client

This should suppress the "Permanently added ... to the list of known
hosts" warnings that occasionally come up for no apparent reason.

6 years agoike: Reset local SPI if retrying to connect in state IKE_CONNECTING
Tobias Brunner [Tue, 29 Aug 2017 07:06:55 +0000 (09:06 +0200)] 
ike: Reset local SPI if retrying to connect in state IKE_CONNECTING

In case we send retransmits for an IKE_SA_INIT where we propose a DH
group the responder will reject we might later receive delayed responses
that either contain INVALID_KE_PAYLOAD notifies with the group we already
use or, if we retransmitted an IKE_SA_INIT with the requested group but
then had to restart again, a KE payload with a group different from the
one we proposed.  So far we didn't change the initiator SPI when
restarting the connection, i.e. these delayed responses were processed
and might have caused fatal errors due to a failed DH negotiation or
because of the internal retry counter in the ike-init task.  Changing
the initiator SPI avoids that as we won't process the delayed responses
anymore that caused this confusion.

6 years agoike-sa-manager: Add method to change the initiator SPI of an IKE_SA
Tobias Brunner [Fri, 25 Aug 2017 14:45:03 +0000 (16:45 +0200)] 
ike-sa-manager: Add method to change the initiator SPI of an IKE_SA

6 years agoike-init: Fail if DH group in KE payload does not match proposed group
Tobias Brunner [Fri, 25 Aug 2017 12:42:51 +0000 (14:42 +0200)] 
ike-init: Fail if DH group in KE payload does not match proposed group

6 years agoMerge branch 'android-updates'
Tobias Brunner [Mon, 4 Sep 2017 08:42:00 +0000 (10:42 +0200)] 
Merge branch 'android-updates'

Caches CRLs in the app directory, adds support for OCSP, adds a button
to reconnect to the "already connected" dialog, only apply/configure app
selection on Android >= 5 (older versions don't support the API), and catches
some random exceptions.

6 years agoandroid: Add disconnect button to dialog if already connected to profile
Tobias Brunner [Tue, 22 Aug 2017 16:28:39 +0000 (18:28 +0200)] 
android: Add disconnect button to dialog if already connected to profile

6 years agoandroid: Load x509 plugin to generate OCSP requests and parse responses
Tobias Brunner [Wed, 23 Aug 2017 14:15:48 +0000 (16:15 +0200)] 
android: Load x509 plugin to generate OCSP requests and parse responses

BoringSSL does not support OpenSSL's OCSP API.

6 years agoandroid: Add support to POST data via SimpleFetcher
Tobias Brunner [Wed, 23 Aug 2017 14:14:36 +0000 (16:14 +0200)] 
android: Add support to POST data via SimpleFetcher

That's required for OCSP verification.

6 years agoandroid: Add option to clear cached CRLs
Tobias Brunner [Fri, 1 Sep 2017 17:26:52 +0000 (19:26 +0200)] 
android: Add option to clear cached CRLs

6 years agoandroid: Cache CRLs in app directory
Tobias Brunner [Mon, 21 Aug 2017 13:53:20 +0000 (15:53 +0200)] 
android: Cache CRLs in app directory

Fixes #2405.

6 years agoandroid: Pass absolute path to the app's data directory via JNI
Tobias Brunner [Mon, 21 Aug 2017 13:26:06 +0000 (15:26 +0200)] 
android: Pass absolute path to the app's data directory via JNI

6 years agoandroid: Hide app selection in profile editor on Android < 5
Tobias Brunner [Thu, 24 Aug 2017 13:18:32 +0000 (15:18 +0200)] 
android: Hide app selection in profile editor on Android < 5

6 years agoandroid: Only apply app filter on Android 5 and newer
Tobias Brunner [Tue, 11 Jul 2017 07:44:35 +0000 (09:44 +0200)] 
android: Only apply app filter on Android 5 and newer

6 years agoandroid: Catch OutOfMemoryError when importing profiles
Tobias Brunner [Mon, 10 Jul 2017 10:17:45 +0000 (12:17 +0200)] 
android: Catch OutOfMemoryError when importing profiles

Not sure if this is actually caused because e.g. the file is too large
or due to some encoding issue.

6 years agoandroid: Catch NullPointerException when parsing invalid certificates
Tobias Brunner [Thu, 6 Jul 2017 13:40:42 +0000 (15:40 +0200)] 
android: Catch NullPointerException when parsing invalid certificates

6 years agoandroid: Catch NullPointerException when calling VpnService.prepare()
Tobias Brunner [Thu, 6 Jul 2017 13:16:24 +0000 (15:16 +0200)] 
android: Catch NullPointerException when calling VpnService.prepare()

According to the Play Console this occurs occasionally.

6 years agoVersion bump to 5.6.1dr1 5.6.1dr1
Andreas Steffen [Fri, 1 Sep 2017 11:49:09 +0000 (13:49 +0200)] 
Version bump to 5.6.1dr1

6 years agoimv-os: Updated security update evaluation
Andreas Steffen [Thu, 31 Aug 2017 16:52:04 +0000 (18:52 +0200)] 
imv-os: Updated security update evaluation

6 years agolibimcv: Updated database scheme
Andreas Steffen [Wed, 30 Aug 2017 11:30:18 +0000 (13:30 +0200)] 
libimcv: Updated database scheme

6 years agosec-updater: Checks for security updates
Andreas Steffen [Fri, 25 Aug 2017 09:23:20 +0000 (11:23 +0200)] 
sec-updater: Checks for security updates

sec-updater checks for security updates and backports in Debian/
Ubuntu repositories and sets the security flags in the strongTNC
policy database accordingly.

6 years agoimv-attestation: Fixed file hash measurements
Andreas Steffen [Fri, 1 Sep 2017 00:53:28 +0000 (02:53 +0200)] 
imv-attestation: Fixed file hash measurements

The introduction of file versions broke file hash measurements.
This has been fixed by using a generic product versions having an
empty package name.

6 years agoike-cfg: Fix memory leak when checking for configured address
Tobias Brunner [Tue, 29 Aug 2017 13:24:32 +0000 (15:24 +0200)] 
ike-cfg: Fix memory leak when checking for configured address

6 years agosw-collector.8: Some cleanups
Andreas Steffen [Fri, 25 Aug 2017 09:28:06 +0000 (11:28 +0200)] 
sw-collector.8: Some cleanups

6 years agokernel-netlink: Set usable state whenever an interface appears
Tobias Brunner [Mon, 14 Aug 2017 15:26:08 +0000 (17:26 +0200)] 
kernel-netlink: Set usable state whenever an interface appears

If an interface is renamed we already have an entry (based on the
ifindex) allocated but previously only set the usable state once
based on the original name.

Fixes #2403.

6 years agolibimcv: Updated Android.mk after move of swid-gen(-info)
Tobias Brunner [Mon, 21 Aug 2017 10:17:02 +0000 (12:17 +0200)] 
libimcv: Updated Android.mk after move of swid-gen(-info)

6 years agocoverage: Use absolute path when removing paths with lcov
Tobias Brunner [Mon, 21 Aug 2017 09:08:59 +0000 (11:08 +0200)] 
coverage: Use absolute path when removing paths with lcov

There is a bug in some versions of lcov that causes it to fail writing
to files via relative paths after it issued warnings (e.g. due to
negative counts in the tracefile).

6 years agotraffic-selector: Use single buffer for both address families
Tobias Brunner [Wed, 16 Aug 2017 14:52:13 +0000 (16:52 +0200)] 
traffic-selector: Use single buffer for both address families

The generic field of size 0 in the union that was used previously
triggered index-out-of-bounds errors with the UBSAN sanitizer that's
used on OSS-Fuzz.  Since the two family specific union members don't
really provide any advantage, we can just use a single buffer for both
families to avoid the errors.

6 years agotesting: Make removal of SWID tags work with different releases
Tobias Brunner [Wed, 16 Aug 2017 08:38:44 +0000 (10:38 +0200)] 
testing: Make removal of SWID tags work with different releases

The regid.2004-03.org.strongswan directory might not exist in new images.

6 years agofuzzing: Also run input that previously caused crashes
Tobias Brunner [Wed, 31 May 2017 12:37:27 +0000 (14:37 +0200)] 
fuzzing: Also run input that previously caused crashes

6 years agoconfigure: Detect mpz_powm_sec() when built with -Werror
Tobias Brunner [Wed, 31 May 2017 12:33:43 +0000 (14:33 +0200)] 
configure: Detect mpz_powm_sec() when built with -Werror

6 years agotravis: Use the same ASAN_OPTIONS as used by OSS-Fuzz
Tobias Brunner [Tue, 30 May 2017 17:38:31 +0000 (19:38 +0200)] 
travis: Use the same ASAN_OPTIONS as used by OSS-Fuzz

6 years agoplugin-loader: Move indent variables into !USE_FUZZING block
Tobias Brunner [Tue, 30 May 2017 17:14:22 +0000 (19:14 +0200)] 
plugin-loader: Move indent variables into !USE_FUZZING block

This avoids compile errors on Travis.

6 years agotravis: Run fuzz targets
Tobias Brunner [Tue, 30 May 2017 16:41:31 +0000 (18:41 +0200)] 
travis: Run fuzz targets

6 years agofuzzing: Run local fuzz targets on given corpora during `make check`
Tobias Brunner [Tue, 30 May 2017 14:46:32 +0000 (16:46 +0200)] 
fuzzing: Run local fuzz targets on given corpora during `make check`

The base directory of the corpora must be set in FUZZING_CORPORA.

6 years agofuzzing: Add driver to run fuzz targets on a given list of files
Tobias Brunner [Tue, 30 May 2017 14:44:22 +0000 (16:44 +0200)] 
fuzzing: Add driver to run fuzz targets on a given list of files

This is enabled if the path to libFuzzer.a is not specified when running
the configure script.

6 years agocharon-tkm: Build fix for kernel SAD tests
Adrian-Ken Rueegsegger [Mon, 14 Aug 2017 16:30:15 +0000 (18:30 +0200)] 
charon-tkm: Build fix for kernel SAD tests

Commit 7729577... added a flag to the get_esa_id function but the unit
tests were not adjusted.

6 years agoVersion bump to 5.6.0 5.6.0
Andreas Steffen [Mon, 14 Aug 2017 08:07:47 +0000 (10:07 +0200)] 
Version bump to 5.6.0

6 years agoNEWS: Add info about CVE-2017-11185
Tobias Brunner [Tue, 8 Aug 2017 18:14:00 +0000 (20:14 +0200)] 
NEWS: Add info about CVE-2017-11185

6 years agogmp: Fix RSA signature verification for m >= n
Tobias Brunner [Mon, 29 May 2017 09:59:34 +0000 (11:59 +0200)] 
gmp: Fix RSA signature verification for m >= n

By definition, m must be <= n-1, we didn't enforce that and because
mpz_export() returns NULL if the passed value is zero a crash could have
been triggered with m == n.

Fixes CVE-2017-11185.

6 years agoVersion bump to 5.6.0rc2 5.6.0rc2
Andreas Steffen [Wed, 9 Aug 2017 12:23:28 +0000 (14:23 +0200)] 
Version bump to 5.6.0rc2

6 years agosw-collector: Moved info class to libimcv
Andreas Steffen [Wed, 9 Aug 2017 07:18:20 +0000 (09:18 +0200)] 
sw-collector: Moved info class to libimcv

6 years agoNEWS: Added some news
Tobias Brunner [Tue, 8 Aug 2017 18:05:30 +0000 (20:05 +0200)] 
NEWS: Added some news

6 years agoconf: Descriptions of several settings updated
Tobias Brunner [Tue, 8 Aug 2017 15:17:27 +0000 (17:17 +0200)] 
conf: Descriptions of several settings updated

6 years agolibimcv: Cast chunk length to int when printing as string
Tobias Brunner [Tue, 8 Aug 2017 13:32:08 +0000 (15:32 +0200)] 
libimcv: Cast chunk length to int when printing as string

6 years agosw-collector: Cast chunk length to int when printing as string
Tobias Brunner [Tue, 8 Aug 2017 13:31:22 +0000 (15:31 +0200)] 
sw-collector: Cast chunk length to int when printing as string

6 years agosw-collector: Fix memory leak after failing to open DB
Tobias Brunner [Tue, 8 Aug 2017 13:30:44 +0000 (15:30 +0200)] 
sw-collector: Fix memory leak after failing to open DB

6 years agosw-collector: Use correct variable to report failure to open history file
Tobias Brunner [Tue, 8 Aug 2017 13:29:41 +0000 (15:29 +0200)] 
sw-collector: Use correct variable to report failure to open history file

6 years agoRevert "apidoc: Update Doxyfile"
Tobias Brunner [Mon, 7 Aug 2017 16:29:07 +0000 (18:29 +0200)] 
Revert "apidoc: Update Doxyfile"

This reverts commit 8ec979fd64bca07e73f6f255a7cf26e587bb55d8.

Mainly because Travis is still on Trusty and this generates lots of
warnings.

6 years agoVersion bump to 5.6.0rc1 5.6.0rc1
Andreas Steffen [Mon, 7 Aug 2017 16:25:52 +0000 (18:25 +0200)] 
Version bump to 5.6.0rc1

6 years agoimv-database: Improve performance by creating file_hashes index
Andreas Steffen [Mon, 7 Aug 2017 14:46:27 +0000 (16:46 +0200)] 
imv-database: Improve performance by creating file_hashes index

6 years agosw-collector: Add missing Doxygen group
Tobias Brunner [Mon, 7 Aug 2017 15:33:55 +0000 (17:33 +0200)] 
sw-collector: Add missing Doxygen group

Fix location of two classes.

6 years agolibimcv: Add missing Doxgen group for SWIMA-related classes
Tobias Brunner [Mon, 7 Aug 2017 15:31:25 +0000 (17:31 +0200)] 
libimcv: Add missing Doxgen group for SWIMA-related classes

Fix location of swima_error_t.

6 years agoapidoc: Update Doxyfile
Tobias Brunner [Mon, 7 Aug 2017 15:27:31 +0000 (17:27 +0200)] 
apidoc: Update Doxyfile

6 years agoFixed some typos, courtesy of codespell
Tobias Brunner [Mon, 7 Aug 2017 15:22:01 +0000 (17:22 +0200)] 
Fixed some typos, courtesy of codespell

6 years agotesting: Add -v option to do-tests to prefix commands with timestamps
Tobias Brunner [Mon, 7 Aug 2017 14:52:01 +0000 (16:52 +0200)] 
testing: Add -v option to do-tests to prefix commands with timestamps

6 years agotesting: Move collector.db in tnc/tnccs-20-ev-pt-tls scenario to /etc/db.d
Tobias Brunner [Mon, 7 Aug 2017 14:26:38 +0000 (16:26 +0200)] 
testing: Move collector.db in tnc/tnccs-20-ev-pt-tls scenario to /etc/db.d

Also move initialization to the pretest script (it's way faster in the
in-memory database).

6 years agokernel-netlink: Wipe buffer used to read Netlink messages
Tobias Brunner [Wed, 2 Aug 2017 09:39:31 +0000 (11:39 +0200)] 
kernel-netlink: Wipe buffer used to read Netlink messages

When querying SAs the keys will end up in this buffer (the allocated
messages that are returned are already wiped). The kernel also returns
XFRM_MSG_NEWSA as response to XFRM_MSG_ALLOCSPI but we can't distinguish
this here as we only see the response.

References #2388.