chiark / gitweb /
changelog: start 0.6.6
[secnet.git] / debian / changelog
1 secnet (0.6.6~) unstable; urgency=medium
2
3   * 
4
5  --
6
7 secnet (0.6.5) unstable; urgency=medium
8
9   Copyright and source code notices:
10   * Include notices and licences of all included elements in LICENCE,
11     not just in the files themselvves.
12   * Tidy up a handful of notices to the most recent facts.
13   * Do not claim CC-BY-SA 4.0 is GPL3+ compatible - only GPL3.
14   * Add a README.source.
15   * Update my own copyright year.
16
17   * Versions 0.6.3 and 0.6.4 burned due to failed uploads.
18     (See dgit bug #944855.)
19
20  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 12 Nov 2022 18:58:02 +0000
21
22 secnet (0.6.2) unstable; urgency=medium
23
24   Bugfixes to code and build system:
25   * site: promote creation of st->scratch, allowing new pubkey scheme
26     to work even when secnet is restarting.
27   * comm-common.h: Remove unused `notify' variable.  [Colin Watson]
28   * Dir.sd.mk: Prevent builtin make rule overwriting conffile.c.
29
30   Documentation:
31   * configure: Correct bug reporting address.  Report from Colin Watson.
32   * example.conf improvements:
33       - Comment out some tuning overrides
34       - Improve syntax by deleting one of the two map examples
35       - Add a commented-out mobile site setting
36       - Add mtu-target
37   * OLD-NEWS, OLD-BUGS: Rename from NEWS and BUGS, and don't ship OLD-BUGS.
38
39   Debian packaging changes:
40   * debian/rules: Use dh sequencer.  Resulting changes:
41       - We now provide debug symbols in the new Debian way.
42       - The way the prerm stops secnet accords with modern practice.
43   * init script: source /lib/lsb/init-functions.
44   * init script: make "restart" work if secnet is not running.
45   * Expand Description.
46   * debhelper compat: bump to 12 (stretch-backports).
47   * debian/rules: Use dh_prep instead of deprecated dh_clean -k.
48   * Adjust Priority (as per modern policy and lintian).
49   * Add some lintian overrides.
50   * Add missing Pre-Depends on init-system-helpers.
51
52   Credits and legal documentation improvements:
53   * Add missing credits for base91 and python argparse extension.
54     ensure some packaging credits exist in all the places they should be.
55   * Add copyright/credits notices to many files which were missing them.
56   * Move and centralise legal information into its own file, LICENCE.
57
58   Testing improvements:
59   * comprehensive-test: Actually allow OLD_SECNET_DIR set to ''
60   * test-example/common.conf: Fix a reference to the sites file.
61   * test-example/null-fake-userv: New test utility script.
62
63  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 30 Dec 2021 15:10:12 +0000
64
65 secnet (0.6.1) unstable; urgency=medium
66
67   Logging bugfixes:
68   * Fix completely broken startup logging.  Config errors would not
69     be repoorted other than via the exit status!  (Broken in 0.6.0.)
70   * Suppress various uninteresting messages during startup, to
71     avoid noise during successful startup.
72   * Move "starting" message earlier.
73   
74   make-secnet-sites bugfixes:
75   * Fix error handling if caller is in wrong group.
76   * Fix regressions in handling of delegated sites file fragments
77     (especially wrt the optional group parameter to `location').
78     Broken since security fixes in 0.5.0.
79
80   Fixes to example config file:
81   * Use new name-prefixed format for map(site...) runes.  Old runes
82     were desupported by make-secnet-sites security fix (in 0.5.0).
83   * Fix "transform" syntax (broken since 0.3.0).
84
85   Other bugfixes and improvements:
86   * rsa: Do not crash if private key file is not accessible when
87     running --just-check-config.  (Broken since 0.6.0.)
88   * rsa: Print errno value if we fail to open key file.
89   * config parsing: When closure is of wrong type, give details.
90   * Use CLOCK_MONOTONIC for all our timing needs (but only when
91     built against an as-yet-unpublished adns feature).
92
93   Supporting changes:
94   * Tests for some of the changes.
95   * Minor internal refactorings and improvements.
96   * Merge subdirmk 1.0.
97
98  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 May 2020 22:14:26 +0100
99
100 secnet (0.6.0) unstable; urgency=medium
101
102   Bugfixes:
103   * mobile sites: Do not ever expire peer addresses.  In practice
104     this fixes transitions between IPv6-only and IPv4-only networks.
105   * make-secnet-sites: Tainted: Fix a lot of bad return values
106     (which would result in assertions rather than nice error messages).
107   * Fix hash algo confusion in mixed sha1/md5 configurations (see below).
108
109   Incompatible changes:
110   * site: Always advertise all capabilities, even in MSG1.  This is
111     incompatible with secnets earlier than 0.3.0 (September 2013), which
112     are all quite badly broken and should have been upgraded long ago.
113   * Drop support for using the same loaded rsa key with multiple different
114     hash algorithms (which was broken in 0.5.0).  Right now we support
115     only `sha1' and `md5' so everyone should be using `sha1'.
116     Installations which specified `md5' anywhere may need config changes.
117
118   Major new featureset (use of which is not adviseable yet):
119   * New facilities for negotiating about the signing keys to use for
120     authentication during key setup, and selecting and using the
121     appropriate keys.  (``key-cache'/`privcache' and `peer-keys').
122     Using these new facilities for keyrollover now is in principle
123     possible but rather complex.  Further machinery is planned;
124     for now, retain your existing config which should keep working.
125     In summary:
126        - secnet: new `privcache' closure;
127        - secnet: `key-cache' and `peer-keys' keys on site closures;
128        - secnet: new file format for peer public keysets;
129        - secnet: new `make-public' config operator;
130        - make-secnet-sites `pub', `pkg', `serial', etc. keywords;
131        - make-secnet-sites --filter, --pubkeys-*, --output-version.
132
133   More minor (logging) improvements:
134   * Make stderr line buffered and log to it by default.
135   * Do not log differently with --nodetach.
136   * New `prefix' option to `logfile' closure.
137   * Tidy and simplify some messages.
138
139   Supporting changes:
140   * Many substantial internal refactorings in secnet.
141   * Many substantial internal refactorings in make-secnet-sites.
142   * make-secnet-sites option parsing totally replaced.
143   * Imported subtrees for base91-c and base91-python.
144   * New portablity code, etc.: osdep.[ch], fmemopen reimplementation.
145   * Explicitly define oddly-rotated dh padding arrangement (write_mpbin).
146
147   Build system and packaging:
148   * Do not fail to build from git when HEAD refers to a packed ref.
149   * Update to subdirmk 0.3.
150   * Many makefile fixes (esp. to clean and cdeps).
151   * configure.ac: Drop or suppress some very obsolete checks.
152   * autogen.sh: Write a comment about need for autoheader.
153   * dir-locals: Provide python-indent-offset too.
154
155   Test suite bugfixes:
156   * stest: Use stderr, not tty, for logging.
157   * stest/udp-preload.c: Fix error handling of sun_prep.
158   * stest: Fix breakage if nproc is not installed.
159
160   Test suite improvements:
161   * New tests, including tests for new features.
162   * Existing tests (especially stest) generally made more thorough.
163   * New comprehensive-test and pretest-to-tested convenience scripts.
164   * Arrangements for testing with (user-provided) old secnet.
165   * parallel-test.*: scripts to help with parallelised bisection.
166   * stest: Print a lot more output about what we are doing.
167   * stest: Better support for cwd with longish pathname.
168   * stest: More flexibility, env var hooks, etc.
169
170  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Feb 2020 12:48:13 +0000
171
172 secnet (0.5.1) unstable; urgency=medium
173
174   POTENTIALLY INCOMPATIBLE CHANGE.  Some security implications.
175
176   * make-secnet-sites: Prefix names when writing secnet sites.conf file.
177
178     make-secnet-sites must copy names (vpn, location and site names) from
179     the input sites file (which is not wholly trusted) to the secnet
180     config file.  Prior to this release, naming a location or site the
181     same as a secnet predefined name could generate a broken sites.conf
182     which secnet would reject.  (With the existing featureset,
183     malfunctions other than rejection, eg privilege escalation, are not
184     possible.)
185
186     make-secnet-sites now adds a prefix to these names when writing
187     sites.conf.  This will not affect configurations which use the
188     make-secnet-sites-provided `all-sites' key, as is usual.  Other
189     configurations will break unless the references in the static part of
190     the config are adjusted.
191
192     Previous behaviour can be restored with the --no-conf-key-prefix
193     option.  (Planned future enhancements to secnet are likely to make use
194     of that option, with untrusted input, dangerously insecure.)
195
196   other changes to make-secnet-sites:
197   * Fix argument parsing.  Fixes a regression affecting -P in 0.5.0,
198     and also fixes new facilities introduced in 0.5.0.
199   * Sort the properties on output (and adjust the test case expected
200     outputs).  Tests now pass on (at least) Python 2.7.13, 3.5.3, 3.7.5.
201   * Delete some unused code.
202
203   secnet:
204   * Change one idiom to avoid a warning from GCC9.  No functional change.
205
206   build system - MAJOR CHANGES:
207   * Fix out-of-tree builds.  (Broken in 0.5.0)
208   * Replace recursive make with use of the new subdirmk system.
209     This represents a fairly comprehensive overhaul of the makefiles.
210     Several bugs (esp. involving dependencies between files in different
211     directories) are fixed.
212   * Drop `make check' from `make all'.  (Otherwise there is no way
213     to ask for `all' without `check'.)
214   * Suppress two unhelpful new compiler warnings from GCC9.
215   * Release checklist update.
216
217   documentation:
218   * Credit Mark Wooding properly in CREDITS.
219   * Include DEVELOPER-CERTIFICATE.
220
221   tests:
222   * Locations now have different names to sites.
223   * Somewhat better debugging output from mtest.
224   * Do not run msgcode-test except with `make fullcheck'.
225   * Other minor bugfixes and improvments.
226   * stest: Suppress unhelpful -Wno-unused-result (needed for stretch).
227
228  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 22 Nov 2019 23:13:14 +0000
229
230 secnet (0.5.0) unstable; urgency=medium
231
232   make-secnet-sites SECURITY FIX:
233   * Do not blindly trust inputs; instead, check the syntax for sanity.
234     Previous releases can be induced to run arbitrary code as the user
235     invoking secnet (which might be root), if a secnet sites.conf is used
236     that was generated from an untrustworthy sites file.
237   * The userv invocation mode of make-secnet-sites seems to have been safe
238     in itself, but it previously allowed hazardous data to be propagated
239     into the master sites file.  This is now prevented too.
240
241   make-secnet-sites overhaul work:
242   * make-secnet-sites is now in the common subset of Python2 and Python3.
243     The #! is python3 now, but it works with Python2.7 too.
244     It will probably *not* work with old versions of Python2.
245   * We no longer depend on the obsolete `ipaddr' library.  We use
246     `ipaddress' now.  And this is onlo a Recommends in the .deb.
247   * Ad-hoc argument parser been replaced with `argparse'.
248     There should be no change to existing working invocations.
249   * Bad address syntax error does not wrongly mention IPv6 scopes.
250   * Minor refactoring to support forthcoming work.  [Mark Wooding]
251
252   other bugfixes, improvements and changes to secnet itself:
253   * Better logging of why we are sending NAK messages.
254   * Correctly use the verified copy of the peer remote capabilities
255     from MSG3.  (Bug is not a vulnerability.)    [Mark Wooding]
256   * Significant internal rearrangements and refactorings, to support
257     forthcoming key management work.  [Mark Wooding and Ian Jackson]
258
259   build system etc.:
260   * Completely overhaul release checklist; drop dist target.
261   * Remove dependency on `libfl.a'.  [Mark Wooding]
262   * polypath.c: Fix missing include of <limits.h>.  [Mark Wooding]
263   * Add a Wireshark dissector `secnet-wireshark.lua'.  It is not
264     installed anywhere right now.  [Mark Wooding]
265
266   documentation:
267   * Improve documentation of capability negotiation in NOTES, secnet(8)
268     and magic.h.  [Mark Wooding]
269
270  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 24 Oct 2019 19:11:54 +0100
271
272 secnet (0.4.5) unstable; urgency=medium
273
274   * INSTALL: Mention that rsa key generation might need ssh-keygen1.
275   * mobile: Fix negotiation bug with mixed old/new secnets and
276     simultaneous key setup attempts by each end.  [Mark Wooding]
277   * Makefile.in: Support installation from a `VPATH' build.  [Mark Wooding]
278   * Portability fixes for clang.  [Mark Wooding]
279
280  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 21 Sep 2019 12:04:31 +0100
281
282 secnet (0.4.4) unstable; urgency=medium
283
284   Security fix:
285   * make-secnet-sites: Don't allow setting new VPN-level properties
286     when restricted.  This could allow denial of service by
287     users with delegated authorisation.  [Mark Wooding]
288
289   Bugfixes for poor network environments:
290   * polypath: cope properly with asymmetric routing, by correcting
291     the handling of late duplicated packets etc.   Protocol is now
292     incompatible with secnet prior to 0.3.0 when either end is mobile.
293   * Randomise key setup retry time.
294
295   Other bugfixes:
296   * rsa and cbcmac: Fix configuration error messages.  [Mark Wooding]
297   * Handle IPv4 addresses properly (ie, not foolishly byte-swapped),
298     when IPv6 is not available.  [Mark Wooding]
299   * Better logging (and less foolish debug), especially about whether
300     key is set up, and about crossed key setup attempts.
301   * Internal refactoring and fixes.  [Ian Jackson and Mark Wooding]
302
303   Build system and portability:
304   * configure: rerun autogen.sh with autoconf 2.69-10
305   * Avoid memset(0,0,0) wrt st->sharedsecret.  (Fixes compiler warning;
306     in theory might cause miscompilation.)  [Mark Wooding]
307
308   Documentation:
309   * README.make-secnet-sites: new documentation file.  [Mark Wooding]
310   * NOTES: Describe current allocation of capability bits.  [Mark Wooding]
311   * NOTES: tiny fix tot protocol description.
312   * secnet(8): Delete wrong information about dh groups.  [Mark Wooding]
313
314   Administrivia:
315   * Fix erroneous GPL3+ licence notices "version d or later" (!)
316   * .dir-locals.el: Settings for Python code.  [Mark Wooding]
317
318  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 08 Sep 2019 22:53:14 +0100
319
320 secnet (0.4.3) unstable; urgency=low
321
322   Security improvement:
323   * Use `mpz_powm_sec' for modexps.
324
325   Enhancements:
326   * Implement comm-info and dedicated-interface-addr feature, for
327     benefit of hippotat.
328   * Implement `keepalive' site option, to try to keep link always up.
329
330   Build etc. fixes:
331   * #include <limits.h> (fixes the build on jessie).
332   * Tolerate building from a git checkout, but with git not installed.
333     (This can happen in chroots.)
334   * Turn off -Wsign-compare for bison output.
335   * Makefile.in: Fix `check-ipaddrset' rule to get reference from
336     $(srcdir).  (Makes out-of-tree builds work properly.)
337   * Release checklist fixes.
338   * Burn version numbers 0.4.1 and 0.4.2 due to errors in release prep.
339
340   Bugfixes:
341   * When printing messages about dropping IPv6, do not print anything
342     about ihl.  (Check the IP version field first!)
343   * When turning on debug, turn on verbose too.
344
345  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 25 Nov 2017 13:36:41 +0000
346
347 secnet (0.4.0) unstable; urgency=low
348
349   Debugging improvements:
350   * Packet-level debugging from site notes errors from transmit.
351   * Report when transport peers updated as a result of transmit.
352
353  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 28 Feb 2015 15:03:00 +0000
354
355 secnet (0.4.0~beta2) unstable; urgency=low
356
357   Polypath bugfixes:
358   * Ignore IPv6 Unique Local unicast addresses.
359   * Skip "tentative" IPv6 local addresses.
360   * Improve logging and debug output.
361
362   Portability fix:
363   * Build where size_t is not compatible with int.
364
365   Build system and packaging fixes:
366   * Makefile: support DESTDIR.
367   * debian/rules: set DESTDIR (not prefix).
368   * debian/rules: Support dpkg-buildflags.
369   * Install ipaddrset.py and secnet.8 with correct permissions.
370   * Fix check for <linux/if_tun.h> and git rid of our copy.
371   * Use -lresolv only if inet_aton is not found otherwise.
372   * Use -lnsl only if inet_ntoa is not found otherwise.
373   * debian/rules: Provide build-arch and build-indep targets.
374   * debian/rules: Do not run build for *-indep (!)
375   * Makefile.in: Putative dual (backport and not) release build process doc.
376
377   Copyright updates:
378   * Update to GPLv3.  Add missing copyright notices and credits.
379   * Get rid of old FSF street address; use URL instead.
380   * Remove obsolete LICENCE.txt (which was for snprintf reimplementation).
381   * Remove obsolete references to Cendio (for old ipaddr.py).
382
383  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 28 Dec 2014 17:14:10 +0000
384
385 secnet (0.4.0~beta1) unstable; urgency=low
386
387   New features:
388   * Support transport over IPv6.  (We do not yet carry IPv6 in the private
389     network.)  IPv6 support depends on IPv6-capable adns (adns 1.5.x).
390   * New polypath comm, which can duplicate packets so as to send them via
391     multiple routes over the public network, for increased
392     reliability/performance (but increased cost).  Currently Linux-only
393     but should be fairly easy to port.
394   * Support multiple public addresses for peers.
395   * Discard previously-received packets (by default).
396
397   Logging improvements:
398   * Report (each first) transmission and reception success and failure.
399   * Log reason for DNS reolution failure.
400   * Log unexpected kinds of death from userv.
401   * Log authbind exit status as errno value (if appropriate).
402
403   Configuration adjustments:
404   * Adjust default number of mobile peer addresses to store when a peer
405     public address is also configured.
406   * Make specifying peer public port optional.  This avoids making special
407     arrangements to bind to a port for in mobile sites with no public
408     stable address.
409
410   Bugfixes:
411   * Hackypar children will die if they get a terminating signal.
412   * Fix signal dispositions inherited by secnet's child processes.
413   * Fix off-by-one error which prevented setting transport-peers-max to 5.
414
415   Test, build and internal improvements:
416   * Use conventional IP address handling library ipaddr.py.
417   * Provide a fuzzer for the slip decoder.
418   * Build system improvements.
419   * Many source code cleanups.
420
421  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 26 Oct 2014 15:28:31 +0000
422
423 secnet (0.3.4) unstable; urgency=low
424
425   SECURITY FIX:
426   * The previous security fix to buffer handling was entirely wrong.  This
427     one is better.  Thanks to Simon Tatham for the report and the patch.
428
429  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 22 Sep 2014 16:16:11 +0100
430
431 secnet (0.3.3) unstable; urgency=high
432
433   SECURITY FIXES:
434   * Pass correct size argument to recvfrom.  This is a serious security
435     problem which may be exploitable from outside the VPN.
436   * Fix a memory leak in some error logging.
437
438   Other related fixes:
439   * Two other latent bugs in buffer length handling found and fixed.
440   * Non-critical stylistic improvements to buffer length handling, to make
441     the code clearer and to assist audit.
442
443  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 23:50:45 +0100
444
445 secnet (0.3.3~beta1) unstable; urgency=low
446
447   Installation compatibility fix:
448   * In make-secnet-sites, always use our own ipaddr.py even if the
449     incompatible modern ipaddr.py is installed (eg via python-ipaddr.deb).
450     (Future versions of secnet are going to need that Python module to be
451     installed.)
452
453   For links involving mobile sites:
454   * Use source of NAK packets as hint for peer transport address.
455   * When initiating rekey, make use of data transport peer addresses.
456
457   Build fix:
458   * Provide clean target in test-example/Makefile.
459
460  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 19 Sep 2014 00:11:44 +0100
461
462 secnet (0.3.2) unstable; urgency=low
463
464   * Release of 0.3.2.  No code changes since 0.3.1~beta1.
465
466  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 26 Jun 2014 20:27:58 +0100
467
468 secnet (0.3.2~beta1) unstable; urgency=low
469
470   For links involving mobile sites:
471   * SECURITY: Properly update peer address array when it is full.
472   * Do name-resolution on peer-initiated key setup too, when we are mobile
473     (and other name-resolution improvements).
474
475   Other minor improvements:
476   * Log peer addresses on key exchange timeout.
477   * When printing version (eg during startup), use value from git-describe
478     and thus include git commit id where applicable.
479   * Updates to release checklist in Makefile.in.
480   * Use C99 _Bool for bool_t.
481
482  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 06 Jun 2014 01:17:54 +0100
483
484 secnet (0.3.1) unstable; urgency=low
485
486   * Release of 0.3.1.  No code changes since 0.3.1~beta3.
487
488  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 May 2014 01:08:30 +0100
489
490 secnet (0.3.1~beta3) unstable; urgency=low
491
492   * Build fixes for non-i386 architectures and gcc 4.8.2.
493
494  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 08 May 2014 19:53:43 +0100
495
496 secnet (0.3.1~beta2) unstable; urgency=low
497
498   Fix relating to new fragmentation / ICMP functionality:
499   * Generate ICMP packets correctly in point-to-point configurations.
500
501  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 03 May 2014 18:58:09 +0100
502
503 secnet (0.3.1~beta1) unstable; urgency=low
504
505   Security fixes (vulnerabilities are to inside attackers only):
506   * SECURITY: Fixes to MTU and fragmentation handling.
507   * SECURITY: Correctly set "unused" ICMP header field.
508   * SECURITY: Fix IP length check not to crash on very short packets.
509
510   New feature:
511   * Make the inter-site MTU configurable, and negotiate it with the peer.
512
513   Bugfixes etc.:
514   * Fix netlink SEGV on clientless netlinks (i.e. configuration error).
515   * Fix formatting error in p-t-p startup message.
516   * Do not send ICMP errors in response to unknown incoming ICMP.
517   * Fix formatting error in secnet.8 manpage.
518   * Internal code rearrangements and improvements.
519
520   Packaging improvements:
521   * Updates to release checklist in Makefile.in.
522   * Additions to the test-example suite.
523
524  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 01 May 2014 19:02:56 +0100
525
526 secnet (0.3.0) unstable; urgency=low
527
528   * Release of 0.3.0.  No code changes since 0.3.0~beta3.
529   * Update release checklist.
530
531  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 20:27:48 +0100
532
533 secnet (0.3.0~beta3) unstable; urgency=low
534
535   * New upstream version.
536    - Stability bugfix: properly initialise site's scratch buffer.
537
538  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 05 Aug 2013 11:54:09 +0100
539
540 secnet (0.3.0~beta2) unstable; urgency=low
541
542   * New upstream version.
543    - SECURITY FIX: RSA public modulus and exponent buffer overflow.
544    - SECURITY FIX: Use constant-time memcmp for message authentication.
545    - SECURITY FIX: Provide a new transform, eax-serpent, to replace cbcmac.
546    - SECURITY FIX: No longer send NAKs for NAKs, avoiding NAK storm.
547    - SECURITY FIX: Fix site name checking when site name A is prefix of B.
548    - SECURITY FIX: Safely reject too-short IP packets.
549    - Better robustness for mobile sites (proper user of NAKs, new PROD msg).
550    - Better robustness against SLIP decoding errors.
551    - Fix bugs which caused routes to sometimes not be advertised.
552    - Protocol capability negotiation mechanism.
553    - Improvements and fixes to protocol and usage documentation.
554    - Other bugfixes and code tidying up.
555
556  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 25 Jul 2013 18:26:01 +0100
557
558 secnet (0.3.0~beta1) unstable; urgency=low
559
560   * New upstream version.
561    - SECURITY FIX: avoid crashes (or buffer overrun) on short packets.
562    - Bugfixes relating to packet loss during key exchange.
563    - Bugfixes relating to link up/down status.
564    - Bugfixes relating to logging.
565    - make-secnet-sites made more sophisticated to support two vpns on chiark.
566    - Documentation improvements.
567    - Build system improvements.
568   * Debian packaging improvements:
569    - Native package.
570    - Maintainer / uploaders.
571    - init script requires $remove_fs since we're in /usr.
572
573  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Jul 2012 20:18:16 +0100
574
575 secnet (0.2.1-1) unstable; urgency=low
576
577   * New upstream version.  (authbind endianness fix)
578
579  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 11 Dec 2011 13:14:57 +0000
580
581 secnet (0.2.0-1) unstable; urgency=low
582
583   * New upstream version.
584
585  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 10 Dec 2011 22:44:41 +0000
586
587 secnet (0.1.18-1) unstable; urgency=low
588
589   * New upstream version.
590
591  -- Stephen Early <steve@greenend.org.uk>  Tue,  18 Mar 2008 17:45:00 +0000