Commit graph

2862 commits

Author SHA1 Message Date
Alexandru Ardelean
2675e6813c netatalk: fix config files permissions
After checking in the ipkg-install dir of netatalk,
it seems that the permissions it sets to the conf-files
are 644.

 # ls -la lede/build_dir/target-mips_24kc_musl/netatalk-3.1.11/ipkg-install/etc
 -rw-r--r-- 1 sandu sandu   226 iun  5 20:53 afp.conf
 -rw-r--r-- 1 sandu sandu  1948 iun  5 20:53 dbus-session.conf
 -rw-r--r-- 1 sandu sandu 25037 iun  5 20:53 extmap.conf

While the Package/netatalk/install build rule overrides
them to 600.

According to
* https://github.com/openwrt/packages/issues/4318
* https://forum.lede-project.org/t/help-with-apple-filesharing-protocol-for-time-machine/3259/5
this is a problem in some setups.

So, this patch changes them to what the netatalk
package creators intended initially (i.e. 644).

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-06-05 21:02:09 +03:00
Hauke Mehrtens
b83d982bcd Merge pull request #3769 from wvdakker/master
Added Shorewall(6)-lite.
2017-06-05 18:51:18 +02:00
Philip Prindeville
9fdba25e04 openssh: if we don't generate a dsa key we shouldn't look for it
The earlier commit ea119211b2 removed 'dsa' as one of the ssh_host_*_key
types that got generated.  Problem was that it didn't remove that key
as one of the paths that the server looks for by default.  As a
consequence, your log file might fill up with messages like:

    2017-06-01T15:43:07-06:00 openwrt sshd[31929]: error: Could not load host key: /etc/ssh/ssh_host_dsa_key

The patch is forunately trivial.  Don't set the path for the dsa
key file in the server configuration.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-05 18:22:04 +02:00
Daniel Golle
d96c092a00 Revert "The earlier commit ea119211b2 removed 'dsa' as one of the ssh_host_*_key"
The author (@pprindeville) of the original commit noted that the wrong
commit was picked, see
325b7d2cd2 (commitcomment-22387528)
"Err... looks like the wrong fix got committed. I was hoping that this
commit d902e5d would have gone in instead."

This reverts commit 325b7d2cd2.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-06-05 18:22:03 +02:00
W. van den Akker
7c8990cac5
Add package shorewall(6)-lite.
Bump to version 5.1.4.1

Signed-off-by: W. van den Akker <wvdakker@wilsoft.nl>
2017-06-05 17:54:59 +02:00
Alexandru Ardelean
820d998a97 netatalk: switch maintainer to me
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-06-05 18:25:56 +03:00
Daniel Golle
bef4c67bd1 Merge pull request #4402 from commodo/netatalk-upgrade
netatalk: upgrade to version 3.1.11
2017-06-05 17:08:33 +02:00
Daniel Golle
92b2a187bb Merge pull request #4099 from dangowrt/freeradius3-ldap
freeradius3: build and package support for LDAP
2017-06-05 16:51:38 +02:00
Hauke Mehrtens
f243d7c2bc Merge pull request #4284 from bmork/conserver
conserver: add advanced serial console package
2017-06-05 15:33:08 +02:00
Daniel Golle
3548a8b2c2 Merge pull request #4423 from pprindeville/lighttpd-use-procd
lighttpd: use procd-based init.d script
2017-06-05 14:47:32 +02:00
Antonio Paunovic
a8dbabeaf9 sysrepo: larger timeouts
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
2017-06-05 11:09:35 +00:00
Hannu Nyman
28e97784b7 Merge pull request #4419 from danrl/wireguard
wireguard: version bump
2017-06-05 09:20:12 +03:00
aTanW
df0e0bc17b ipsec: add ability to configure "none" SA
Also added myself as co-maintainer

Signed-Off-By: Vitaly Protsko <villy@sft.ru>
---
 Makefile           |    5 +++--
 files/functions.sh |   35 +++++++++++++++++++++++++++++++++++
 files/racoon       |    4 ++++
 files/racoon.init  |   12 ++++++++----
 4 files changed, 50 insertions(+), 6 deletions(-)
2017-06-05 08:25:09 +03:00
Florian Fainelli
4eec08f225 fossil: Explicitly link with libm
Fixes the following build error with an external toolchain:

./bld/sqlite3.o: In function `fts5Bm25Function':
sqlite3.c:(.text+0x27234): undefined reference to `log'
./bld/piechart.o: In function `piechart_render':
piechart_.c:(.text+0x430): undefined reference to `sincos'
piechart_.c:(.text+0x47c): undefined reference to `sincos'
piechart_.c:(.text+0x548): undefined reference to `sincos'
collect2: error: ld returned 1 exit status
src/main.mk:526: recipe for target 'fossil' failed
make[3]: *** [fossil] Error 1

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-04 19:48:46 -07:00
Florian Fainelli
b493f36887 linuxptp: Remove unnecessary netdb.h includes
This backports a patch that has been accepted upstream in linuxptp:
8b61aa2c3f3103db1d4ca1d1e49bb4f8831c1abf ("udp: Avoid including
netdb.h") to fix build errors with external glibc toolchains that
provide rpc/types.h.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-06-04 14:01:27 -07:00
Bjørn Mork
f42caaffb8 conserver: add advanced serial console package
Conserver is an application that allows multiple users to use
serial consoles at the same time, with logging.  It has a client-
server design which makes it easy to manage a distributed set
of serial consoles.  Logging makes post-crash analyses easier.

Signed-off-by: Bjørn Mork <bjorn@mork.no>
2017-06-04 11:22:43 +02:00
Hauke Mehrtens
93811f98a0 Merge pull request #4220 from p-wassi/atftp
net/atftp: update source URL and checksum
2017-06-04 00:29:40 +02:00
Stephen Walker
b63a809213 packages: cleanup Makefile variables
Standard assignment is immediate expansion without any extraneous spacing, RFC822 compliant email addresses and consistent section assignments

Signed-off-by: Stephen Walker <stephendwalker+github@gmail.com>
2017-06-03 16:38:06 -04:00
Ted Hess
870a621107 Merge pull request #4427 from diizzyy/patch-57
net/socat: Update to 1.7.3.2
2017-06-03 15:23:22 -04:00
Peter Wagner
325b7d2cd2 The earlier commit ea119211b2 removed 'dsa' as one of the ssh_host_*_key
types that got generated.  Problem was that it didn't remove that key
as one of the paths that the server looks for by default.  As a
consequence, your log file might fill up with messages like:

    2017-06-01T15:43:07-06:00 openwrt sshd[31929]: error: Could not load host key: /etc/ssh/ssh_host_dsa_key

The patch is forunately trivial.  Don't set the path for the dsa
key file in the server configuration.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-06-03 01:04:27 +02:00
Daniel Engberg
076eba07f4 net/socat: Update to 1.7.3.2
Update socat to 1.7.3.2
Remove SSLv3 patch, workaround added upstream
Remove inclusion of stddef.h, fix added upstream
Replace obsolete tarball hash variable with PKG_HASH

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2017-06-02 13:43:06 +02:00
Philip Prindeville
79f9f1a3ec lighttpd: use procd-based init.d script
This will allow procd to restart the service if it crashes or otherwise
exits.

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-06-01 20:12:58 -06:00
Luka Perkov
ea7046d634 Merge pull request #4403 from sartura/symlink-soversion-sysrepo
sysrepo: modify copy of .so files
2017-06-01 15:53:35 +02:00
Luka Perkov
c3dad17728 Merge pull request #4388 from sartura/netopeer2-dependency
sysrepo: add patch for disabling autostart
2017-06-01 15:53:11 +02:00
danrl
a9f39cff42 wireguard: version bump
From upstreams changelog:
 This rather large snapshot touches quite a few sensitive areas, so I'm
  releasing it now rather than later to receive feedback on any possible issues.
  It also contains fixes, so everybody should upgrade.

  * man: fix psk mention in wg-quick man page
  * man: update wg-quick(8) to show Debian resolvconf braindamage

  Documentation cleanups.

  * wg-quick: use src routing for default routes in v6

  ip-rule(8) doesn't do the right thing with source addresses, unless we
  explicitly set it inside the route. This fixes wg-quick on IPv6 systems.

  * curve25519: actually, do some things on heap sometimes
  * curve25519: align the basepoint to 32 bytes
  * curve25519: add NEON versions for ARM
  * data: enable BH during parallel crypto on ARM/NEON
  * chacha20poly1305: move constants to rodata
  * chacha20poly1305: add NEON versions for ARM and ARM64

  We now have faster primitives on ARM and ARM64 processors, which should
  improve performance.

  * handshake: process in parallel

  Handshakes are now processed in parallel using all cores, which should improve
  throughput during a storm.

  * noise: no need to store ephemeral public key
  * noise: precompute static-static ECDH operation

  We can precompute the ECDH(s, s) calculation, which improves handshake
  initiation message performance by double.

  * style: spaces after for loops
  * peer: use iterator macro instead of callback

  The most unreadable C ever produced. It might be wise to find a sexier-looking
  alternative at some point.

  * compat: remove warning for < 4.1
  * compat: ship padata if kernel doesn't have it

  The usual array of annoying compat things.

  * rust test: convert screech test to snow
  * rust test: add icmp ping

  We now use Jake's snow library for Noise in the test, which we've expanded to
  complete a ping.

  * config: do not error out when getting if no peers
  * tools: allow creating device with no peers

  Fixing some small things in the tool/config interaction.

  * device: keep going when share_check fails
  * routingtable: remove unnecessary check in node_placement()
  * config: it's faster to memcpy than strncpy
  * timers: fix typo in comment

  Nits.

  * debug: print interface name in dmesg

  For those who compile with `make debug`, you'll be happy to see a bit better
  information in dmesg.

  * timers: rework handshake reply control flow
  * timers: the completion of a handshake also is on key confirmation
  * timers: reset retry-attempt counter when not retrying

  Tightening up our timer implementation, which is quite important.

Signed-off-by: Dan Luedtke <mail@danrl.com>
2017-06-01 10:54:25 +02:00
Hannu Nyman
d1936da414 Merge pull request #4400 from starcms/master
net/dnscrypt-proxy: add support for LogLevel; update dnscrypt-proxy-resolvers
2017-05-31 18:57:40 +03:00
starcms
a032c44a50 net/dnscrypt-proxy: add LogLevel support, update dnscrypt-resolvers.csv,
bump version number.

Signed-off-by: Chris Saaidi <starcms@gmail.com>
2017-05-30 19:56:27 -05:00
Christian Schoenebeck
80ae569ba7 radicale: update to version 1.1.3
update to version 1.1.3

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2017-05-30 21:47:15 +02:00
Stijn Tintel
4660504c61 strongswan: fix typo
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-05-30 19:25:54 +02:00
Stijn Tintel
916f14aacf Merge pull request #4208 from dedeckeh/pr-netsnmp-fw
net-snmp: add inbound firewall rule support
2017-05-30 16:01:40 +02:00
Stijn Tintel
a268689adc strongswan: add curve25519 plugin
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-05-30 15:14:13 +02:00
Stijn Tintel
960006be50 strongswan: bump to 5.5.3
Fixes CVE-2017-9022, CVE-2017-9023.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-05-30 15:14:04 +02:00
Hannu Nyman
9334f1e787 Merge pull request #4381 from commodo/ovs-fix
openvswitch: fix build for ovs python libs & related packages
2017-05-30 10:49:09 +03:00
Antonio Paunovic
0a45a4e85b sysrepo: modify copy of .so files
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
2017-05-29 12:07:00 +00:00
Alexandru Ardelean
59ec879f11 netatalk: upgrade to version 3.1.11
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-05-29 14:40:52 +03:00
Karl Palsson
f49e1138f1 net/mosquitto: bump to 1.4.12 for CVE-2017-7650
Dot release, primarily due to CVE-2017-7650 but also rolls up some
earlier patches.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-05-29 10:49:08 +00:00
Thomas Heil
d1d28ed9de Merge pull request #4379 from val-kulkov/nginx-package
nginx: update to 1.12.0, the latest stable version
2017-05-28 19:05:10 +02:00
Damiano Renfer
c3b0a36db4 net/dnscrypt-proxy: fix block_ipv6 param in init script
Signed-off-by: Damiano Renfer <damiano.renfer@gmail.com>
2017-05-27 11:12:47 +02:00
Peter Wagner
a4fbcb44fe git: update to 2.13.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2017-05-27 02:34:29 +02:00
Antonio Paunovic
f531ca0dd9 sysrepo: bump PKG_RELEASE version
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
2017-05-26 15:37:12 +00:00
Antonio Paunovic
48ab73fafc sysrepo: add patch for diabling autostart
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
2017-05-26 15:01:46 +00:00
Antonio Paunovic
2f7782e241 netopeer2-keystored: add new dependency
Signed-off-by: Antonio Paunovic <antonio.paunovic@sartura.hr>
2017-05-26 14:10:03 +00:00
Alexandru Ardelean
3b8c6e01b1 openvswitch: disable built-in kernel module build
Since we're using the kernel's module, this is
un-necessary.
Should speed up the build a bit.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-05-25 16:31:27 +03:00
kuoruan
9c24d46ce7 webui-aria2: Bump to 2017-05-21
Signed-off-by: kuoruan <kuoruan@gmail.com>
2017-05-25 11:35:37 +08:00
kuoruan
63785852a4 yaaw: Bump to 2017-04-11
Signed-off-by: kuoruan <kuoruan@gmail.com>
2017-05-25 11:35:07 +08:00
kuoruan
5f8dcde38b aria2: Update to v1.32.0
Signed-off-by: kuoruan <kuoruan@gmail.com>
2017-05-25 11:11:43 +08:00
Alexandru Ardelean
0ec671fc5c openvswitch: fix build for ovs python libs & related packages
Admittedly I never used those Python libs.
And the setup I was trying it on, did not have
the Python interpreter packaged, so these build failures
went un-noticed.

That's my fault for not trying it out properly on
a full LEDE repo, with all packages.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-05-24 23:18:16 +03:00
Val Kulkov
5d8b62f0ba nginx: update to 1.12.0, the latest stable version
This is a straightforward update to the latest stable version.

Signed-off-by: Val Kulkov <val.kulkov@gmail.com>
2017-05-24 11:48:29 -04:00
Mislav Novakovic
3e22ad84e1 netopeer2-server: modified init script
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 17:38:27 +02:00
Mislav Novakovic
0aa8371086 sysrepo: merge sysrepod and sysrepo-plugind
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 17:38:27 +02:00
Mislav Novakovic
835c56a4cc netopeer2: change default ssh key handling
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 17:18:41 +02:00
Mislav Novakovic
99b8a07b3e netopeer2-server: edited init script
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 16:04:55 +02:00
Mislav Novakovic
7139808c45 netopeer2: modified uci-default script
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 16:04:55 +02:00
Mislav Novakovic
f6aa981a56 sysrepo: modified uci-default script
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 16:04:55 +02:00
Mislav Novakovic
85259eccee netopeer2-server: add custom config file
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 16:04:55 +02:00
Mislav Novakovic
9289fbf949 netopeer2-server: add sysrepod dependency
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-24 16:04:55 +02:00
Hans Dedecker
ae5ee6ba6c net-snmp: add inbound firewall rule support
Add UCI section general which holds the uci parameter network defining on
which interface(s) the snmp agent is reachable for inbound snmp requests
in case the firewall zone does not allow INPUT traffic by default.

For the different zones to which the different interfaces belong firewall
procd input rules are created making the snmp agent reachable on udp port
161.

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
2017-05-24 15:03:23 +02:00
Eric Luehrsen
9d96dfd468 unbound: add option for dhcp UCI domain mx srv and cname
Base LEDE/OpenWrt UCI for dnsmasq provides for DNS override in
/etc/config/dhcp. It is desired to be able to use dnsmasq and
Unbound as transparently as possible. Option 'add_extra_dns'
will pull 'domain', 'mxhost', 'srvhost, and 'cname' from base.

netifd/procd have an interaction with DHCPv6/RA on WAN (FS#713).
Minor IP6 parameter updates can cause Unbound reload events every
few minutes. List option 'trigger' selects which interfaces may
cause reload. For example 'lan', 'wan' but not 'wan6'.

Squash other cosmetics.

Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
2017-05-23 00:14:33 -04:00
Yousong Zhou
ce563ea706 shadowsocks-libev: bump to version 3.0.6
Below are changes in the packaging method

 - Use tarball provided by the upstream project maintainer instead of
   cloning the whole git-repo
 - Drop openssl variant as it was deprecated then removed by the
   upstream project
 - Add dependency on libev, libsodium, libudns as they are not bundled
   with the source code anymore

Addresses issue #4191

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
2017-05-22 09:56:56 +08:00
Damiano Renfer
bfd0ee2418 net/dnscrypt-proxy: ignore parameters requiring plugins support if not available
Signed-off-by: Damiano Renfer <damiano.renfer@gmail.com>
2017-05-21 19:55:18 +02:00
Kevin Darbyshire-Bryant
3b8681fc66 miniupnpc: bump to 2.0.20170509 (#4362)
Fix CVE-2017-8798

Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
2017-05-20 10:16:21 +02:00
Daniel Golle
4237ae4890 isc-dhcp: integrate IPv4 DHCP service with procd and netifd
Convert init-script to procd and allow to configure
isc-dhcp-server via UCI. Allow most by-network and by-host options
supported by dnsmasq.
User-defined dhcp-options are not supported yet, neither are tags.

Existing configurations with use-edited /etc/dhcpd.conf are still
respected, hence to enjoy the new features you have to migrate
your configuration to UCI and delete /etc/dhcpd.conf.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-05-20 03:23:48 +02:00
hmronline
68fa7fe87e dynapoint: Updated to latest version (Fixes to make it actually work)
Signed-off-by: hmronline <hmronline@gmail.com>
2017-05-18 10:59:01 -03:00
Hannu Nyman
5c8edf8948 Merge pull request #4367 from dibdot/adblock
adblock: maintenance update 2.6.4
2017-05-17 22:37:29 +03:00
Hannu Nyman
abe6fdea61 Merge pull request #4366 from dibdot/travelmate
travelmate: maintenance update 0.7.4
2017-05-17 22:36:57 +03:00
Hannu Nyman
794afe7599 Merge pull request #4341 from zx2c4/wg-psk-change
wireguard: update snapshot version to 0.0.20170517
2017-05-17 22:36:18 +03:00
Dirk Brenken
272c79de83 adblock: maintenance update 2.6.4
* made wget default parms compatible with older program versions
* shift dns detection routine to simplify dns override,
  just set 'adb_dnslist' to force a particular backend priority
  (default: 'dnsmasq unbound')
* reduce ubus polling during dns detection

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-05-17 21:28:12 +02:00
Dirk Brenken
bf6636517a travelmate: maintenance update 0.7.4
* always update the connection status, even in case of an error
* merge multiple ubus network calls in central check routine

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-05-17 21:24:07 +02:00
Jason A. Donenfeld
1eeea05307 wireguard: version bump
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-05-17 20:21:36 +02:00
Damiano Renfer
1bfb0629a2 net/dnscrypt-proxy: update to 1.9.5
* Update to 1.9.5
* Use PKG_HASH instead of PKG_MD5SUM
* Add dnscrypt-proxy github link in PKG_SOURCE_URL

Signed-off-by: Damiano Renfer <damiano.renfer@gmail.com>
2017-05-14 11:29:51 +02:00
Luka Perkov
fb180b587d Merge pull request #4355 from sartura/sysrepo_mirror_hash
Sysrepo mirror hash
2017-05-14 00:41:23 +02:00
Mislav Novakovic
b3f9e7058e sysrepo: add PKG_MIRROR_HASH
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-12 16:44:49 +02:00
Mislav Novakovic
e824198d54 netopeer2: add PKG_MIRROR_HASH
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-12 16:44:49 +02:00
Florian Eckert
f35475c025 net/mwan3: update Makefile version
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-05-12 15:30:34 +02:00
Florian Eckert
db5ea39c9b net/mwan3: generate mwan3track run path folder on every run
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-05-12 15:30:34 +02:00
Florian Eckert
ef3261d0b4 net/mwan3: remove absolute path for bin files
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-05-12 15:28:12 +02:00
Florian Eckert
1fd3f85d4f net/mwan3: remove pid file use pgrep to get pid
If mwan3track will not stop immediately after sending the kill signal,
the clean_up handler will delete the pid file later while the new mwan3track is
already running.

This could result in a situation that mwan3track is running
more then once because the old mwan3track service could not be killed,
because the pid file is missing.

Using pgrep to kill all mwan3track for the tracked interface and not using
pid file should fix this issue.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-05-12 15:28:12 +02:00
Mislav Novakovic
7250dc59cf add netopeer2
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-11 19:46:58 +02:00
Mislav Novakovic
7720c87e0c add sysrepo
Signed-off-by: Mislav Novakovic <mislav.novakovic@sartura.hr>
2017-05-11 19:46:58 +02:00
Noah Meyerhans
588284218a bind: Update to bind-9.10.5
This change includes fixes for several security issues:

  * CVE-2017-3138: rndc "" could trigger an assertion failure in named.
  * CVE-2017-3137: Some chaining (i.e., type CNAME or DNAME) responses to
    upstream queries could trigger assertion failures.
  * CVE-2017-3136: dns64 with break-dnssec yes; can result in an assertion
    failure.
  * CVE-2017-3135: If a server is configured with a response policy zone
    (RPZ) that rewrites an answer with local data, and is also configured
    for DNS64 address mapping, a NULL pointer can be read triggering a
    server crash.
  * CVE-2016-9444: named could mishandle authority sections with missing
    RRSIGs, triggering an assertion failure.
  * CVE-2016-9131: named mishandled some responses where covering RRSIG
    records were returned without the requested data, resulting in an
    assertion failure.
  * CVE-2016-9131: named incorrectly tried to cache TKEY records which could
    trigger an assertion failure when there was a class mismatch.
  * CVE-2016-8864: It was possible to trigger assertions when processing
    responses containing answers of type DNAME.
  * CVE-2016-6170: Added the ability to specify the maximum number of
    records permitted in a zone (max-records #;). This provides a mechanism
    to block overly large zone transfers, which is a potential risk with
    slave zones from other parties.
  * CVE-2016-2776: It was possible to trigger an assertion when rendering a
    message using a specially crafted request.
  * CVE-2016-2775: Calling getrrsetbyname() with a non absolute name could
    trigger an infinite recursion bug in lwresd or named with lwres
    configured if, when combined with a search list entry from resolv.conf,
    the resulting name is too long.

Signed-off-by: Noah Meyerhans <frodo@morgul.net>
2017-05-10 22:13:37 -07:00
Hannu Nyman
e4c7a9a3cc Merge pull request #4346 from dibdot/travelmate
travelmate: update 0.7.3
2017-05-10 18:12:32 +03:00
Dirk Brenken
b059c59d86 travelmate: update 0.7.3
backend:
* refine connection check (reduce ubus polling)
* further stabilize sta-/ap-handling

frontend (see LuCI repo):
* Automatically refresh the overview page after button onclick event,
e.g. 'Save & Apply'

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-05-10 16:49:24 +02:00
Aleksei Nosachev
8599b8d7a3 Fix acme-challenge ./well-known check / webroot detection (#4339)
fixes webroot to be defined as 
_currentRoot='/www'
instead of being interpreted as
_currentRoot='"/www"'

Signed-off-by: Aleksei Nosachev <nos1609@hotmail.com>
2017-05-10 14:30:43 +02:00
Jason A. Donenfeld
658ffbb3fd wireguard: preshared-key is now an attribute of the peer
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-05-09 16:51:34 +02:00
Hannu Nyman
3f390c5509 vsftpd: create directory for extra config files
* create /etc/vsftpd directory for extra config files
  like userlist, certificate and key
* modify config file to use that directory
* include that directory in conffiles for backup

* use PKG_HASH
* update URL

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-05-09 16:30:05 +03:00
Hannu Nyman
725744b26e Merge pull request #4338 from dibdot/package-adblock
adblock: maintenance update 2.6.3
2017-05-08 12:27:40 +03:00
Dirk Brenken
6ffae3bc1e adblock: maintenance update 2.6.3
backend:
* various small fixes & optimizations
 
LuCI frontend (see luci repo):
* Limit Blacklist/Whitelist Online editing to max. 512 KB, approx.
20.000 domains per list
* Automatically refresh the overview page after button onclick event,
e.g. 'Suspend/Resume' or 'Save & Apply'
* cosmetics

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-05-08 11:19:57 +02:00
Hannu Nyman
8ba251e88a Merge pull request #4324 from hnyman/irssi
irssi: remove nossl variant
2017-05-08 11:33:38 +03:00
Hannu Nyman
6e9bf22e8d Merge pull request #4337 from stangri/vpnbypass
vpnbypass: removed PROCD instance from start_service.
2017-05-08 09:56:23 +03:00
Hannu Nyman
dbebe09e18 Merge pull request #4336 from stangri/simple-adblock
simple-adblock: updated README, used stricter filters for domains and…
2017-05-08 09:56:03 +03:00
Nikos Mavrogiannopoulos
d92ea54c4f ocserv: updated to 0.11.8
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2017-05-08 05:46:48 +02:00
Stan Grishin
92fb78265f vpnbypass: removed PROCD instance from start_service.
Signed-off-by: Stan Grishin <stangri@melmac.net>
2017-05-08 03:57:47 +03:00
Stan Grishin
c398c0a768 simple-adblock: updated README, used stricter filters for domains and hosts lists, added debugging logging, removed PROCD instance.
Signed-off-by: Stan Grishin <stangri@melmac.net>
2017-05-08 03:57:04 +03:00
Hannu Nyman
79ad1387d0 Merge pull request #4332 from commodo/ovs-upgrade
openvswitch: upgrade to version 2.7.0
2017-05-07 19:41:34 +03:00
Hannu Nyman
65f0b1bf81 Merge pull request #4329 from dibdot/package-travelmate
travelmate: update 0.7.2
2017-05-07 19:31:49 +03:00
Hannu Nyman
04b29a7d32 Merge pull request #4327 from mwarning/zerotier-update
zerotier: update to version 1.2.4
2017-05-07 19:30:51 +03:00
Alexandru Ardelean
c7b22e5550 openvswitch: upgrade to version 2.7.0
Notes:
- drop un-needed patches
- bump kernel support up to 4.9
- switch from git repo to release tarball
- use OVS intree kernel module ; seems that using the kernel module
  from the package has certain issues due to the glue/backport code
  that tries to adapt to many kernel versions and has a potential
  to mess up ; not to mention, the glue code makes the kmod
  a few times larger than it should be
- tested on x86_64 VM

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-05-07 01:06:50 +03:00
Dirk Brenken
b76aacc60a travelmate: update 0.7.2
backend:
* remove redundant 'iwinfo' support & add 'iw' package dependency
* refine stop action & json runtime housekeeping
* various small fixes
* documentation update

frontend (see LuCI repo):
* simplify uplink interface setup (just one Click! ;-),
  now part of the overview tab
* cosmetics

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-05-06 07:33:52 +02:00
Moritz Warning
350cc48049 zerotier: update to version 1.2.4
Zerotier now needs to have libstd, libminiupnpc and libnatpmp.

Signed-off-by: Moritz Warning <moritzwarning@web.de>
2017-05-05 21:59:18 +02:00
Karl Palsson
338252f9eb net/mosquito: bump to 1.4.11
Full changelog available at:
https://mosquitto.org/2017/02/version-1-4-11-released/

Mostly ipv6 and websockets fixes, but requires a patch (submitted
upstream) to work around an accidental glibc dependency upstream.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-05-05 11:36:37 +00:00
Karl Palsson
cef1ff256b net/mosquitto: support more config fields in init script
Adds the "notifications" option which is important when connecting
mosquitto to rabbitmq for instance.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-05-05 11:36:37 +00:00
David Thornley
eb99c3f451 net/mosquitto: Added further security configuration options for bridge section
Signed-off-by: David Thornley <david.thornley@touchstargroup.com>
2017-05-05 11:36:37 +00:00
Karl Palsson
027e3ec4ec net/mosquitto: use PROVIDES for -client tools also
Earlier, PROVIDES handling was clarified for the broker and the library.
Use the same style to properly provide the -client-ssl and -client-nossl
packages.

Signed-off-by: Karl Palsson <karlp@etactica.com>
2017-05-05 11:36:37 +00:00
Christian Schoenebeck
eebf8f9cd0 radicale: update to version 1.1.2
update to version 1.1.2

Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
2017-05-04 20:44:11 +02:00
Hannu Nyman
1c2fa48ac1 irssi: remove nossl variant
Remove nossl variant as upstream has removed
the option to build irssi without SSL:
6300dfec71

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-05-04 13:06:11 +03:00
Hannu Nyman
ea5064faed vpnc: add PKG_MIRROR_HASH
Add PKG_MIRROR_HASH to enable building vpnc also in those
buildbot buildslaves that do not have svn.

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
2017-05-04 08:52:50 +03:00
Nikil Mehta
efd451b70a fping: Update to 4.0
Signed-off-by: Nikil Mehta <nikil.mehta@gmail.com>
2017-04-30 23:19:42 -07:00
Nikos Mavrogiannopoulos
69187e794a Merge pull request #4305 from billsq/openconnect_7.08
openconnect: Update to version 7.08
2017-04-29 12:14:16 +02:00
Nikos Mavrogiannopoulos
3c14920123 Merge pull request #4308 from billsq/ocserv_udp_port
ocserv: split UDP and TCP port configs
2017-04-29 12:13:00 +02:00
Hannu Nyman
aab5744fdb Merge pull request #4311 from dibdot/package-adblock
adblock: update 2.6.2
2017-04-29 12:13:46 +03:00
Dirk Brenken
bf7d1dc85c adblock: update 2.6.2
* refine 'force dns' handling:
  - enabled-check before firewall reload
  - add rule name (better LuCI experience)

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-29 07:56:28 +02:00
Hannu Nyman
6bfbd252c0 Merge pull request #4306 from TDT-GmbH/mwan3-add-network
Mwan3 add network
2017-04-28 10:52:10 +03:00
Qian
4227dad822 ocserv: split UDP and TCP port configs
Added a new config entry udp_port to split UDP port from TCP. This is
useful when particular port is blocked by the ISP.

udp_port falls back to port if not set to be compatible with current
config file.

Also fixed an ifname typo from the last commit.

Signed-off-by: Qian Sheng <billsq@billsq.me>
2017-04-27 17:55:11 -07:00
Florian Eckert
c8f8f77ed1 net/mwan3: update Makefile version
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-04-27 11:48:15 +02:00
Florian Eckert
f94975b71f net/mwan3: add connected network regardless of mwan3 interface enable state
If netifd set an interface up/down which is not tracked by mwan3 the
connected network of that interface should regardless be added/removed to the
mwan3_connected ipset.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-04-27 11:44:49 +02:00
Qian
16dc3319b5 openconnect: Bump openconnect to 7.08
Bump openconnect to 7.08. Remove patch as it is included in the
upstream source.

Signed-off-by: Qian Sheng billsq@billsq.me
2017-04-27 01:16:05 -07:00
Nikos Mavrogiannopoulos
b1c73c93a3 Merge pull request #4301 from billsq/ifname_addr_fix
ocserv: Correctly get runtime LAN ifname and addresses
2017-04-27 07:14:42 +02:00
Qian
59abfdf843 Increase PKG_RELEASE version. 2017-04-26 16:25:20 -07:00
Stijn Tintel
18b076ab93 strongswan: bump to 5.5.2
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-04-26 23:31:27 +02:00
Toke Høiland-Jørgensen
3922206a34 freeradius3: Bump package release
Forgot to bump the package release in commit 424f4e2c.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
2017-04-26 16:35:56 +02:00
Toke Høiland-Jørgensen
34ed7a9f2c acme: Support running in webroot mode, detect other daemons on port 80
For configurations where another web server is running on port 80, running
acme.sh in standalone mode fails. Try to detect this and refuse to run; and
allow the user to configure a webroot directory to use the running webserver for
certificate verification.

This also updates acme.sh to the latest version.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
2017-04-26 16:32:24 +02:00
Toke Høiland-Jørgensen
424f4e2c63 freeradius3: A couple of small fixes
- Moves /etc/freeradius3/sites-{enabled,available}/inner-tunnel to be part of
  the freeradius3-mod-eap package. This prevents conflicts between
  freeradius3-mod-eap-peap and freeradius3-mod-eap-ttls which both included the
  file before. This fixes LEDE bug FS#678.

- Change the demo cert validity to be 1 year instead of 60 days. Should keep the
  cert valid for the duration of the LEDE release cycle (with some slack). This
  fixes #4239.

Signed-off-by: Toke Høiland-Jørgensen <toke@toke.dk>
2017-04-26 16:32:16 +02:00
Hannu Nyman
c40bfa0bb3 Merge pull request #4303 from dibdot/package-adblock
adblock: update 2.6.1
2017-04-26 14:51:59 +03:00
Dirk Brenken
95b3c8ba12 adblock: update 2.6.1
* add "adb_forcedns" to redirect all dns requests
  to local resolver (disabled by default)
* add "adb_forcesrt" to enable overall sort / duplicate removal
  on low memory devices with less than 64 MB RAM (disabled by default)

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-26 13:36:49 +02:00
Hannu Nyman
f1b37a8788 Merge pull request #4282 from dibdot/patch-wifischedule
wifischedule: remove package arch dependency
2017-04-26 11:09:21 +03:00
Eric Luehrsen
a7c293fe3a unbound: update to version 1.6.2
Signed-off-by: Eric Luehrsen <ericluehrsen@hotmail.com>
2017-04-25 20:42:15 -04:00
Qian
18313cbe6e Correctly get runtime LAN ifname and addresses
1. Correctly get LAN runtime ifname and addresses using network
functions
2. Do not store ip settings in config files as they may change next
time.
2017-04-25 17:02:53 -07:00
Daniel Golle
ed62d4aac7 gnunet: update sources
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
2017-04-25 18:28:17 +02:00
Hannu Nyman
1984a82b36 Merge pull request #4297 from commodo/tcpreplay-4-2-3
tcpreplay: update to 4.2.3
2017-04-25 12:48:56 +03:00
Alexandru Ardelean
e805651506 tcpreplay: update to 4.2.3
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
2017-04-25 12:32:49 +03:00
Daniel Golle
3331532bc8 Merge pull request #4265 from pprindeville/isc-dhcp-reassign
isc-dhcp: reassign to new owner
2017-04-24 19:30:39 +02:00
Luka Perkov
a66960d9de Merge pull request #3794 from adam2104/master
net/squid: Allow squid to parse mime.conf
2017-04-23 08:02:37 +02:00
Hannu Nyman
a4c347834a Merge pull request #4291 from dibdot/package-travelmate
travelmate: update 0.7.1
2017-04-21 22:18:42 +03:00
Jason A. Donenfeld
39af272f36 net/wireguard: update to 0.0.20170421
Simple version bump.

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
2017-04-21 06:22:51 +02:00
Dirk Brenken
1dec014e3e travelmate: update 0.7.1
* fix startup & json update behavior
* LuCI-frontend update (see luci repo for details)

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-20 13:52:25 +02:00
Hannu Nyman
6a50d4754e Merge pull request #4283 from dibdot/package-travelmate
travelmate: update 0.7.0
2017-04-20 10:47:42 +03:00
Dirk Brenken
80e34d6f73 travelmate: update 0.7.0
* no longer misuse ubus/procd service object for travelmate runtime 
  information, now save all required information directly
  in a JSON file/format
* new 'status' init command to print runtime information
* add a configurable interface trigger timeout for
  nested & slow modem/router setups, set 'trm_triggerdelay' accordingly
* change start priority & refine reload timings
* cosmetics

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-20 09:30:07 +02:00
dibdot
175e330ef5 wifischedule: remove package arch dependency
Remove package architecture dependency cause wifischedule is "shell script only"

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-20 08:32:02 +02:00
Hannu Nyman
6b8eb9557e Merge pull request #4267 from dibdot/package-adblock
adblock: update 2.6.0-2
2017-04-17 20:28:50 +03:00
Dirk Brenken
fcc91afc65 adblock: update 2.6.0-2
* change start priority to get all interface trigger events, even on
fast hardware
* made default trigger delay more conservative to fix possible start up
issues

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-17 17:54:37 +02:00
Michael Heimpold
cbf83cb171 ser2net: add some upstream patches (fixes #4249)
As reported by @thornley-touchstar, there are some issues in the
showshortport and showport commands on the monitoring channel.
After short dicussion with upstream, the following patches were merged
upstream to fix the issue(s).

Signed-off-by: Michael Heimpold <mhei@heimpold.de>
2017-04-15 14:33:05 +02:00
Philip Prindeville
f8efe53de8 isc-dhcp: reassign to new owner
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
2017-04-14 15:42:45 -06:00
Florian Fainelli
9a0e43db29 darkstat: Depend on libbsd for glibc-based toolchains
darkstat's configure script searches for libbsd for different routines,
so if it manages to pick it up, make sure the dependency is reflected.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
2017-04-12 18:03:54 -07:00
Daniel H
37f6cae850 acme: Fix for curl linked against mbed TLS. (#4254)
Use newest acme.sh release (2.6.8).
Remove dependency on ca-certificates and add dependency on ca-bundle.
Update environment variable.

Signed-off-by: Daniel Halmschlager <da@halms.at>
2017-04-12 22:51:57 +02:00
Hannu Nyman
778f5e34d9 Merge pull request #4253 from dibdot/package-adblock
adblock: update 2.6.0
2017-04-12 17:04:25 +03:00
Dirk Brenken
45af003ba1 adblock: update 2.6.0
* no longer misuse ubus/procd service object for adblock runtime 
  information, now save all required information directly 
  in a JSON file/format (/tmp/adb_runtime.json)
* new 'status' init command to print runtime information
* add a configurable interface trigger timeout for 
  nested or slow modem/router setups,
  set 'adb_triggerdelay' accordingly (default 1 second)
* add support for pure http download utilities like wget-nossl 
  or uclient-fetch without libustream-ssl (http donwloads only!)
* fix stop action
* fix enabled/disabled action
* fix country code in regional list for china
* LuCI update to reflect all changes

Signed-off-by: Dirk Brenken <dev@brenken.org>
2017-04-12 15:54:11 +02:00
Hannu Nyman
8a88527326 Merge pull request #4245 from TDT-GmbH/mwan3-add-ubus
net/mwan3: add ubus interface
2017-04-12 16:10:45 +03:00
Kevin Darbyshire-Bryant
d30e249d4c bcp38: iptables 1.6.1 compatibility (#4248)
-m state has been removed, now use -m conntrack --ctstate

Signed-off-by: Kevin Darbyshire-Bryant <kevin@darbyshire-bryant.me.uk>
2017-04-12 10:34:02 +02:00
Florian Eckert
45437dc7c9 net/mwan3: update Makefile version
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-04-11 09:46:20 +02:00
Florian Eckert
7e80e83dfd net/mwan3: mwan3track interrupt sleep on signal (trap) event
Sleep will be aborted if a signal is send to this process.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
2017-04-11 09:46:20 +02:00