chiark / gitweb /
changelog: start 0.4.6
[secnet.git] / debian / changelog
1 secnet (0.4.6~) unstable; urgency=medium
2
3   * 
4
5  --
6
7 secnet (0.4.5) unstable; urgency=medium
8
9   * INSTALL: Mention that rsa key generation might need ssh-keygen1.
10   * mobile: Fix negotiation bug with mixed old/new secnets and
11     simultaneous key setup attempts by each end.  [Mark Wooding]
12   * Makefile.in: Support installation from a `VPATH' build.  [Mark Wooding]
13   * Portability fixes for clang.  [Mark Wooding]
14
15  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 21 Sep 2019 12:04:31 +0100
16
17 secnet (0.4.4) unstable; urgency=medium
18
19   Security fix:
20   * make-secnet-sites: Don't allow setting new VPN-level properties
21     when restricted.  This could allow denial of service by
22     users with delegated authorisation.  [Mark Wooding]
23
24   Bugfixes for poor network environments:
25   * polypath: cope properly with asymmetric routing, by correcting
26     the handling of late duplicated packets etc.   Protocol is now
27     incompatible with secnet prior to 0.3.0 when either end is mobile.
28   * Randomise key setup retry time.
29
30   Other bugfixes:
31   * rsa and cbcmac: Fix configuration error messages.  [Mark Wooding]
32   * Handle IPv4 addresses properly (ie, not foolishly byte-swapped),
33     when IPv6 is not available.  [Mark Wooding]
34   * Better logging (and less foolish debug), especially about whether
35     key is set up, and about crossed key setup attempts.
36   * Internal refactoring and fixes.  [Ian Jackson and Mark Wooding]
37
38   Build system and portability:
39   * configure: rerun autogen.sh with autoconf 2.69-10
40   * Avoid memset(0,0,0) wrt st->sharedsecret.  (Fixes compiler warning;
41     in theory might cause miscompilation.)  [Mark Wooding]
42
43   Documentation:
44   * README.make-secnet-sites: new documentation file.  [Mark Wooding]
45   * NOTES: Describe current allocation of capability bits.  [Mark Wooding]
46   * NOTES: tiny fix tot protocol description.
47   * secnet(8): Delete wrong information about dh groups.  [Mark Wooding]
48
49   Administrivia:
50   * Fix erroneous GPL3+ licence notices "version d or later" (!)
51   * .dir-locals.el: Settings for Python code.  [Mark Wooding]
52
53  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 08 Sep 2019 22:53:14 +0100
54
55 secnet (0.4.3) unstable; urgency=low
56
57   Security improvement:
58   * Use `mpz_powm_sec' for modexps.
59
60   Enhancements:
61   * Implement comm-info and dedicated-interface-addr feature, for
62     benefit of hippotat.
63   * Implement `keepalive' site option, to try to keep link always up.
64
65   Build etc. fixes:
66   * #include <limits.h> (fixes the build on jessie).
67   * Tolerate building from a git checkout, but with git not installed.
68     (This can happen in chroots.)
69   * Turn off -Wsign-compare for bison output.
70   * Makefile.in: Fix `check-ipaddrset' rule to get reference from
71     $(srcdir).  (Makes out-of-tree builds work properly.)
72   * Release checklist fixes.
73   * Burn version numbers 0.4.1 and 0.4.2 due to errors in release prep.
74
75   Bugfixes:
76   * When printing messages about dropping IPv6, do not print anything
77     about ihl.  (Check the IP version field first!)
78   * When turning on debug, turn on verbose too.
79
80  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 25 Nov 2017 13:36:41 +0000
81
82 secnet (0.4.0) unstable; urgency=low
83
84   Debugging improvements:
85   * Packet-level debugging from site notes errors from transmit.
86   * Report when transport peers updated as a result of transmit.
87
88  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 28 Feb 2015 15:03:00 +0000
89
90 secnet (0.4.0~beta2) unstable; urgency=low
91
92   Polypath bugfixes:
93   * Ignore IPv6 Unique Local unicast addresses.
94   * Skip "tentative" IPv6 local addresses.
95   * Improve logging and debug output.
96
97   Portability fix:
98   * Build where size_t is not compatible with int.
99
100   Build system and packaging fixes:
101   * Makefile: support DESTDIR.
102   * debian/rules: set DESTDIR (not prefix).
103   * debian/rules: Support dpkg-buildflags.
104   * Install ipaddrset.py and secnet.8 with correct permissions.
105   * Fix check for <linux/if_tun.h> and git rid of our copy.
106   * Use -lresolv only if inet_aton is not found otherwise.
107   * Use -lnsl only if inet_ntoa is not found otherwise.
108   * debian/rules: Provide build-arch and build-indep targets.
109   * debian/rules: Do not run build for *-indep (!)
110   * Makefile.in: Putative dual (backport and not) release build process doc.
111
112   Copyright updates:
113   * Update to GPLv3.  Add missing copyright notices and credits.
114   * Get rid of old FSF street address; use URL instead.
115   * Remove obsolete LICENCE.txt (which was for snprintf reimplementation).
116   * Remove obsolete references to Cendio (for old ipaddr.py).
117
118  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 28 Dec 2014 17:14:10 +0000
119
120 secnet (0.4.0~beta1) unstable; urgency=low
121
122   New features:
123   * Support transport over IPv6.  (We do not yet carry IPv6 in the private
124     network.)  IPv6 support depends on IPv6-capable adns (adns 1.5.x).
125   * New polypath comm, which can duplicate packets so as to send them via
126     multiple routes over the public network, for increased
127     reliability/performance (but increased cost).  Currently Linux-only
128     but should be fairly easy to port.
129   * Support multiple public addresses for peers.
130   * Discard previously-received packets (by default).
131
132   Logging improvements:
133   * Report (each first) transmission and reception success and failure.
134   * Log reason for DNS reolution failure.
135   * Log unexpected kinds of death from userv.
136   * Log authbind exit status as errno value (if appropriate).
137
138   Configuration adjustments:
139   * Adjust default number of mobile peer addresses to store when a peer
140     public address is also configured.
141   * Make specifying peer public port optional.  This avoids making special
142     arrangements to bind to a port for in mobile sites with no public
143     stable address.
144
145   Bugfixes:
146   * Hackypar children will die if they get a terminating signal.
147   * Fix signal dispositions inherited by secnet's child processes.
148   * Fix off-by-one error which prevented setting transport-peers-max to 5.
149
150   Test, build and internal improvements:
151   * Use conventional IP address handling library ipaddr.py.
152   * Provide a fuzzer for the slip decoder.
153   * Build system improvements.
154   * Many source code cleanups.
155
156  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 26 Oct 2014 15:28:31 +0000
157
158 secnet (0.3.4) unstable; urgency=low
159
160   SECURITY FIX:
161   * The previous security fix to buffer handling was entirely wrong.  This
162     one is better.  Thanks to Simon Tatham for the report and the patch.
163
164  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 22 Sep 2014 16:16:11 +0100
165
166 secnet (0.3.3) unstable; urgency=high
167
168   SECURITY FIXES:
169   * Pass correct size argument to recvfrom.  This is a serious security
170     problem which may be exploitable from outside the VPN.
171   * Fix a memory leak in some error logging.
172
173   Other related fixes:
174   * Two other latent bugs in buffer length handling found and fixed.
175   * Non-critical stylistic improvements to buffer length handling, to make
176     the code clearer and to assist audit.
177
178  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 23:50:45 +0100
179
180 secnet (0.3.3~beta1) unstable; urgency=low
181
182   Installation compatibility fix:
183   * In make-secnet-sites, always use our own ipaddr.py even if the
184     incompatible modern ipaddr.py is installed (eg via python-ipaddr.deb).
185     (Future versions of secnet are going to need that Python module to be
186     installed.)
187
188   For links involving mobile sites:
189   * Use source of NAK packets as hint for peer transport address.
190   * When initiating rekey, make use of data transport peer addresses.
191
192   Build fix:
193   * Provide clean target in test-example/Makefile.
194
195  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 00:11:44 +0100
196
197 secnet (0.3.2) unstable; urgency=low
198
199   * Release of 0.3.2.  No code changes since 0.3.1~beta1.
200
201  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 26 Jun 2014 20:27:58 +0100
202
203 secnet (0.3.2~beta1) unstable; urgency=low
204
205   For links involving mobile sites:
206   * SECURITY: Properly update peer address array when it is full.
207   * Do name-resolution on peer-initiated key setup too, when we are mobile
208     (and other name-resolution improvements).
209
210   Other minor improvements:
211   * Log peer addresses on key exchange timeout.
212   * When printing version (eg during startup), use value from git-describe
213     and thus include git commit id where applicable.
214   * Updates to release checklist in Makefile.in.
215   * Use C99 _Bool for bool_t.
216
217  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 06 Jun 2014 01:17:54 +0100
218
219 secnet (0.3.1) unstable; urgency=low
220
221   * Release of 0.3.1.  No code changes since 0.3.1~beta3.
222
223  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 May 2014 01:08:30 +0100
224
225 secnet (0.3.1~beta3) unstable; urgency=low
226
227   * Build fixes for non-i386 architectures and gcc 4.8.2.
228
229  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 08 May 2014 19:53:43 +0100
230
231 secnet (0.3.1~beta2) unstable; urgency=low
232
233   Fix relating to new fragmentation / ICMP functionality:
234   * Generate ICMP packets correctly in point-to-point configurations.
235
236  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 03 May 2014 18:58:09 +0100
237
238 secnet (0.3.1~beta1) unstable; urgency=low
239
240   Security fixes (vulnerabilities are to inside attackers only):
241   * SECURITY: Fixes to MTU and fragmentation handling.
242   * SECURITY: Correctly set "unused" ICMP header field.
243   * SECURITY: Fix IP length check not to crash on very short packets.
244
245   New feature:
246   * Make the inter-site MTU configurable, and negotiate it with the peer.
247
248   Bugfixes etc.:
249   * Fix netlink SEGV on clientless netlinks (i.e. configuration error).
250   * Fix formatting error in p-t-p startup message.
251   * Do not send ICMP errors in response to unknown incoming ICMP.
252   * Fix formatting error in secnet.8 manpage.
253   * Internal code rearrangements and improvements.
254
255   Packaging improvements:
256   * Updates to release checklist in Makefile.in.
257   * Additions to the test-example suite.
258
259  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 01 May 2014 19:02:56 +0100
260
261 secnet (0.3.0) unstable; urgency=low
262
263   * Release of 0.3.0.  No code changes since 0.3.0~beta3.
264   * Update release checklist.
265
266  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 20:27:48 +0100
267
268 secnet (0.3.0~beta3) unstable; urgency=low
269
270   * New upstream version.
271    - Stability bugfix: properly initialise site's scratch buffer.
272
273  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 05 Aug 2013 11:54:09 +0100
274
275 secnet (0.3.0~beta2) unstable; urgency=low
276
277   * New upstream version.
278    - SECURITY FIX: RSA public modulus and exponent buffer overflow.
279    - SECURITY FIX: Use constant-time memcmp for message authentication.
280    - SECURITY FIX: Provide a new transform, eax-serpent, to replace cbcmac.
281    - SECURITY FIX: No longer send NAKs for NAKs, avoiding NAK storm.
282    - SECURITY FIX: Fix site name checking when site name A is prefix of B.
283    - SECURITY FIX: Safely reject too-short IP packets.
284    - Better robustness for mobile sites (proper user of NAKs, new PROD msg).
285    - Better robustness against SLIP decoding errors.
286    - Fix bugs which caused routes to sometimes not be advertised.
287    - Protocol capability negotiation mechanism.
288    - Improvements and fixes to protocol and usage documentation.
289    - Other bugfixes and code tidying up.
290
291  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 25 Jul 2013 18:26:01 +0100
292
293 secnet (0.3.0~beta1) unstable; urgency=low
294
295   * New upstream version.
296    - SECURITY FIX: avoid crashes (or buffer overrun) on short packets.
297    - Bugfixes relating to packet loss during key exchange.
298    - Bugfixes relating to link up/down status.
299    - Bugfixes relating to logging.
300    - make-secnet-sites made more sophisticated to support two vpns on chiark.
301    - Documentation improvements.
302    - Build system improvements.
303   * Debian packaging improvements:
304    - Native package.
305    - Maintainer / uploaders.
306    - init script requires $remove_fs since we're in /usr.
307
308  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Jul 2012 20:18:16 +0100
309
310 secnet (0.2.1-1) unstable; urgency=low
311
312   * New upstream version.  (authbind endianness fix)
313
314  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 11 Dec 2011 13:14:57 +0000
315
316 secnet (0.2.0-1) unstable; urgency=low
317
318   * New upstream version.
319
320  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 10 Dec 2011 22:44:41 +0000
321
322 secnet (0.1.18-1) unstable; urgency=low
323
324   * New upstream version.
325
326  -- Stephen Early <steve@greenend.org.uk>  Tue,  18 Mar 2008 17:45:00 +0000