chiark / gitweb /
debian/changelog: wip 0.4.x
[secnet.git] / debian / changelog
1 secnet (0.4.0~~iwj~) UNRELEASED; urgency=low
2
3   * wip.fuzz-slip-decoder branch
4   * wip.ipv6-3 branch
5   * wip.polypath branch
6
7  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 09 Oct 2014 19:19:05 +0100
8
9 secnet (0.3.4) unstable; urgency=low
10
11   SECURITY FIX:
12   * The previous security fix to buffer handling was entirely wrong.  This
13     one is better.  Thanks to Simon Tatham for the report and the patch.
14
15  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 22 Sep 2014 16:16:11 +0100
16
17 secnet (0.3.3) unstable; urgency=high
18
19   SECURITY FIXES:
20   * Pass correct size argument to recvfrom.  This is a serious security
21     problem which may be exploitable from outside the VPN.
22   * Fix a memory leak in some error logging.
23
24   Other related fixes:
25   * Two other latent bugs in buffer length handling found and fixed.
26   * Non-critical stylistic improvements to buffer length handling, to make
27     the code clearer and to assist audit.
28
29  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 23:50:45 +0100
30
31 secnet (0.3.3~beta1) unstable; urgency=low
32
33   Installation compatibility fix:
34   * In make-secnet-sites, always use our own ipaddr.py even if the
35     incompatible modern ipaddr.py is installed (eg via python-ipaddr.deb).
36     (Future versions of secnet are going to need that Python module to be
37     installed.)
38
39   For links involving mobile sites:
40   * Use source of NAK packets as hint for peer transport address.
41   * When initiating rekey, make use of data transport peer addresses.
42
43   Build fix:
44   * Provide clean target in test-example/Makefile.
45
46  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 00:11:44 +0100
47
48 secnet (0.3.2) unstable; urgency=low
49
50   * Release of 0.3.2.  No code changes since 0.3.1~beta1.
51
52  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 26 Jun 2014 20:27:58 +0100
53
54 secnet (0.3.2~beta1) unstable; urgency=low
55
56   For links involving mobile sites:
57   * SECURITY: Properly update peer address array when it is full.
58   * Do name-resolution on peer-initiated key setup too, when we are mobile
59     (and other name-resolution improvements).
60
61   Other minor improvements:
62   * Log peer addresses on key exchange timeout.
63   * When printing version (eg during startup), use value from git-describe
64     and thus include git commit id where applicable.
65   * Updates to release checklist in Makefile.in.
66   * Use C99 _Bool for bool_t.
67
68  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 06 Jun 2014 01:17:54 +0100
69
70 secnet (0.3.1) unstable; urgency=low
71
72   * Release of 0.3.1.  No code changes since 0.3.1~beta3.
73
74  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 May 2014 01:08:30 +0100
75
76 secnet (0.3.1~beta3) unstable; urgency=low
77
78   * Build fixes for non-i386 architectures and gcc 4.8.2.
79
80  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 08 May 2014 19:53:43 +0100
81
82 secnet (0.3.1~beta2) unstable; urgency=low
83
84   Fix relating to new fragmentation / ICMP functionality:
85   * Generate ICMP packets correctly in point-to-point configurations.
86
87  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 03 May 2014 18:58:09 +0100
88
89 secnet (0.3.1~beta1) unstable; urgency=low
90
91   Security fixes (vulnerabilities are to inside attackers only):
92   * SECURITY: Fixes to MTU and fragmentation handling.
93   * SECURITY: Correctly set "unused" ICMP header field.
94   * SECURITY: Fix IP length check not to crash on very short packets.
95
96   New feature:
97   * Make the inter-site MTU configurable, and negotiate it with the peer.
98
99   Bugfixes etc.:
100   * Fix netlink SEGV on clientless netlinks (i.e. configuration error).
101   * Fix formatting error in p-t-p startup message.
102   * Do not send ICMP errors in response to unknown incoming ICMP.
103   * Fix formatting error in secnet.8 manpage.
104   * Internal code rearrangements and improvements.
105
106   Packaging improvements:
107   * Updates to release checklist in Makefile.in.
108   * Additions to the test-example suite.
109
110  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 01 May 2014 19:02:56 +0100
111
112 secnet (0.3.0) unstable; urgency=low
113
114   * Release of 0.3.0.  No code changes since 0.3.0~beta3.
115   * Update release checklist.
116
117  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 20:27:48 +0100
118
119 secnet (0.3.0~beta3) unstable; urgency=low
120
121   * New upstream version.
122    - Stability bugfix: properly initialise site's scratch buffer.
123
124  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 05 Aug 2013 11:54:09 +0100
125
126 secnet (0.3.0~beta2) unstable; urgency=low
127
128   * New upstream version.
129    - SECURITY FIX: RSA public modulus and exponent buffer overflow.
130    - SECURITY FIX: Use constant-time memcmp for message authentication.
131    - SECURITY FIX: Provide a new transform, eax-serpent, to replace cbcmac.
132    - SECURITY FIX: No longer send NAKs for NAKs, avoiding NAK storm.
133    - SECURITY FIX: Fix site name checking when site name A is prefix of B.
134    - SECURITY FIX: Safely reject too-short IP packets.
135    - Better robustness for mobile sites (proper user of NAKs, new PROD msg).
136    - Better robustness against SLIP decoding errors.
137    - Fix bugs which caused routes to sometimes not be advertised.
138    - Protocol capability negotiation mechanism.
139    - Improvements and fixes to protocol and usage documentation.
140    - Other bugfixes and code tidying up.
141
142  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 25 Jul 2013 18:26:01 +0100
143
144 secnet (0.3.0~beta1) unstable; urgency=low
145
146   * New upstream version.
147    - SECURITY FIX: avoid crashes (or buffer overrun) on short packets.
148    - Bugfixes relating to packet loss during key exchange.
149    - Bugfixes relating to link up/down status.
150    - Bugfixes relating to logging.
151    - make-secnet-sites made more sophisticated to support two vpns on chiark.
152    - Documentation improvements.
153    - Build system improvements.
154   * Debian packaging improvements:
155    - Native package.
156    - Maintainer / uploaders.
157    - init script requires $remove_fs since we're in /usr.
158
159  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Jul 2012 20:18:16 +0100
160
161 secnet (0.2.1-1) unstable; urgency=low
162
163   * New upstream version.  (authbind endianness fix)
164
165  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 11 Dec 2011 13:14:57 +0000
166
167 secnet (0.2.0-1) unstable; urgency=low
168
169   * New upstream version.
170
171  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 10 Dec 2011 22:44:41 +0000
172
173 secnet (0.1.18-1) unstable; urgency=low
174
175   * New upstream version.
176
177  -- Stephen Early <steve@greenend.org.uk>  Tue,  18 Mar 2008 17:45:00 +0000