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