]> git.ozlabs.org Git - ppp.git/log
ppp.git
19 months agoMerge pull request #365 from enaess/ppp-options
Paul Mackerras [Fri, 9 Sep 2022 02:06:37 +0000 (12:06 +1000)]
Merge pull request #365 from enaess/ppp-options

Add option to show all options (show-options)

19 months agoMerge pull request #362 from enaess/ppp-crypto
Paul Mackerras [Fri, 9 Sep 2022 02:05:36 +0000 (12:05 +1000)]
Merge pull request #362 from enaess/ppp-crypto

Create an new API that allows us to abstract the use of the standard crypto functions

20 months agoAdding back DesEncrypt/DesDecrypt functions as they are a special incarnation DES...
Eivind Næss [Sat, 13 Aug 2022 21:59:08 +0000 (14:59 -0700)]
Adding back DesEncrypt/DesDecrypt functions as they are a special incarnation DES w.r.t. RFC2759

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agoAdd option to show all options (show-options), and fixing up the version text to...
Eivind Næss [Mon, 15 Aug 2022 16:07:55 +0000 (09:07 -0700)]
Add option to show all options (show-options), and fixing up the version text to include copyright and package name from autotools.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agoMerge pull request #361 from pali/rtnetlink-deduplicate
Paul Mackerras [Thu, 18 Aug 2022 23:19:14 +0000 (09:19 +1000)]
Merge pull request #361 from pali/rtnetlink-deduplicate

pppd: De-duplicate Linux rtnetlink code

20 months agoFixing up the srp compilation to work without SHA1Init() and DesEncrypt()
Eivind Næss [Wed, 10 Aug 2022 16:30:09 +0000 (09:30 -0700)]
Fixing up the srp compilation to work without SHA1Init() and DesEncrypt()

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agoReduce the clutter by defining the MD4/MD5/SHA digest lengths in one place. Avoid...
Eivind Næss [Mon, 8 Aug 2022 15:51:54 +0000 (08:51 -0700)]
Reduce the clutter by defining the MD4/MD5/SHA digest lengths in one place. Avoid using these variables in function descriptors.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agopppd: De-duplicate also rtnetlink code in get_ppp_stats_rtnetlink()
Pali Rohár [Wed, 10 Aug 2022 16:58:16 +0000 (18:58 +0200)]
pppd: De-duplicate also rtnetlink code in get_ppp_stats_rtnetlink()

Move reading of rtnelink response code from get_ppp_stats_rtnetlink() to
one common rtnetlink function rtnetlink_msg() and use it.

Signed-off-by: Pali Rohár <pali@kernel.org>
20 months agoCreate a new API to abstract the crypto functions used by pppd.
Eivind Næss [Wed, 3 Aug 2022 15:46:28 +0000 (08:46 -0700)]
Create a new API to abstract the crypto functions used by pppd.

This re-introduces the missing DES encryption functions copied from Openssl 3.0 project. Incorporates a new API for performing MD4/MD5/SHA and encryption using DES-ECB mode.

Unit tests are included for respective digest/encryption functions using this new API. With this change, you can pass configure --without-openssl to use the internally provided functions. If you do have openssl, then it will default to use these functions. This also provides a framework to allow other vendors to provide crypto.

This closes #333, partially addresses #242 (except the pkcs11 engine support). Word has it that openssl is working on support for this, and the libp11 / opensc project are inclined not to support this.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agopppd: De-duplicate Linux rtnetlink code
Pali Rohár [Sat, 31 Jul 2021 18:50:12 +0000 (20:50 +0200)]
pppd: De-duplicate Linux rtnetlink code

Move common code for sending rtnetlink message into the new
send_rtnetlink_msg() function.

Signed-off-by: Pali Rohár <pali@kernel.org>
20 months agoMerge pull request #358 from enaess/ppp-autotools
Paul Mackerras [Tue, 9 Aug 2022 09:42:51 +0000 (19:42 +1000)]
Merge pull request #358 from enaess/ppp-autotools

PPP autotools

20 months agopppd: Fix check for incomplete ppp_stats nlmsgerr structure (#356)
pali [Tue, 9 Aug 2022 09:22:33 +0000 (11:22 +0200)]
pppd: Fix check for incomplete ppp_stats nlmsgerr structure (#356)

Response structure is incomplete when returned length is less than required
structure length.

Signed-off-by: Pali Rohár <pali@kernel.org>
20 months agopppd: Workaround for generating ppp unit id on Linux (#355)
pali [Tue, 9 Aug 2022 09:20:15 +0000 (11:20 +0200)]
pppd: Workaround for generating ppp unit id on Linux (#355)

Linux kernel has nasty bug / feature. If PPPIOCNEWUNIT is called with
negative ppp unit id (which is default option when command line argument
"unit" is not specified; and tells kernel to choose some free ppp unit id)
and the lowest unused/free ppp unit id is present in some existing network
interface name prefixed by "ppp" string then this PPPIOCNEWUNIT ioctl
fails. In this case kernel is basically unable to create a new ppp
interface via PPPIOCNEWUNIT ioctl when user does not specify some unused
and non-conflicted unit id.

Linux kernel should be fixed to choose usable ppp unit id when was
requested via PPPIOCNEWUNIT parameter -1.

Until this happens, add a workaround for pppd to help choosing some random
ppp unit id when kernel returns this error.

Simple test case (run on system when there is no ppp interface):

    sudo ./pppd ifname ppp1 nodefaultroute noauth nolock local nodetach pty "./pppd nodefaultroute noauth nolock local nodetach notty"

Second pppd process without this patch prints into syslog following error:

    pppd 2.4.10-dev started by pali, uid 0
    Couldn't create new ppp unit: File exists
    Exit.

With this patch it falls back to random ppp unit id and succeeds:

    pppd 2.4.10-dev started by pali, uid 0
    Using interface ppp1361
    Connect: ppp1361 <--> /dev/pts/14
    ...

Signed-off-by: Pali Rohár <pali@kernel.org>
20 months agoci: Update the Solaris GitHub action to use macOS 12 instead of macOS 10.15. (#359)
Adrien RICCIARDI [Tue, 9 Aug 2022 09:17:17 +0000 (11:17 +0200)]
ci: Update the Solaris GitHub action to use macOS 12 instead of macOS 10.15. (#359)

As macOS 10.15 support will be removed soon.

Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
20 months agoFix warning messages on autoreconf (especially with a newer autoconf)
Eivind Næss [Sat, 30 Jul 2022 21:42:05 +0000 (14:42 -0700)]
Fix warning messages on autoreconf (especially with a newer autoconf)

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agoLet ./configure control the paths for pppd
Eivind Næss [Sat, 30 Jul 2022 21:33:15 +0000 (14:33 -0700)]
Let ./configure control the paths for pppd

This was previously done by specifying an overriding value for _ROOT_PATH. With this change, this variable is now gone.
Instead, pathnames.h will use the SYSCONFDIR and LOCALSTATEDIR to resolve these paths. These directories is already controlled by
configure.

Package maintainers should be aware though that this may change their current configuration. The convential ./configure way is to
specify:
   ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var/run --with-plugin-dir=/usr/lib/pppd/2.4.10

If one omit the --sysconfdir option, then the default location is by ${prefix}/etc which may not be what you want.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
20 months agopppd: Fix duplicate nameserver in resolv.conf (#337)
Vlados Korneev [Fri, 5 Aug 2022 04:18:09 +0000 (11:18 +0700)]
pppd: Fix duplicate nameserver in resolv.conf (#337)

Signed-off-by: Vlados Korneev <allaods97@gmail.com>
20 months agoMerge pull request #354 from pali/register-with-name
Paul Mackerras [Fri, 5 Aug 2022 04:10:40 +0000 (14:10 +1000)]
Merge pull request #354 from pali/register-with-name

pppd: Add support for registering ppp interface via Linux rtnetlink API

20 months agopppd: Fix compilation on Linux when IPV6 is disabled (#360)
Paul Mackerras [Fri, 5 Aug 2022 04:06:33 +0000 (14:06 +1000)]
pppd: Fix compilation on Linux when IPV6 is disabled (#360)

This rearranges the PPP_WITH_IPV6CP guards added in commit
80b8744eb42c ("Changing INET6 to PPP_WITH_IPV6CP and adding configure
option", 2021-08-06) so that we (a) always include the rtnetlink
headers, since we need them for get_ppp_stats_rtnetlink(), and (b)
don't include eui64.h unless we have IPV6 support.

Fixes: 80b8744eb42c ("Changing INET6 to PPP_WITH_IPV6CP and adding configure option")
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
20 months agopppdump: Avoid out-of-range access to packet buffer
Paul Mackerras [Thu, 4 Aug 2022 02:23:08 +0000 (12:23 +1000)]
pppdump: Avoid out-of-range access to packet buffer

This fixes a potential vulnerability where data is written to spkt.buf
and rpkt.buf without a check on the array index.  To fix this, we
check the array index (pkt->cnt) before storing the byte or
incrementing the count.  This also means we no longer have a potential
signed integer overflow on the increment of pkt->cnt.

Fortunately, pppdump is not used in the normal process of setting up a
PPP connection, is not installed setuid-root, and is not invoked
automatically in any scenario that I am aware of.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
20 months agoMerge pull request #349 from enaess/ppp-autotools
Paul Mackerras [Mon, 25 Jul 2022 01:20:11 +0000 (11:20 +1000)]
Merge pull request #349 from enaess/ppp-autotools

Cleaning up header files and updating defines

21 months agoRemoving option to configure PPP_WITH_MAXOCTETS, helps clean up the code and it can...
Eivind Næss [Fri, 15 Jul 2022 22:21:27 +0000 (15:21 -0700)]
Removing option to configure PPP_WITH_MAXOCTETS, helps clean up the code and it can be controlled via config options. It does nothing by default

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoFix build for when --without-[srp|atm|pcap|pam]=no, the value would be "no" and not...
Eivind Næss [Fri, 15 Jul 2022 14:46:43 +0000 (07:46 -0700)]
Fix build for when --without-[srp|atm|pcap|pam]=no, the value would be "no" and not empty in that case

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoThe use of <net/ppp_defs.h> isn't guranteed to exist on Linux (e.g. uclibc, buildroot...
Eivind Næss [Tue, 31 May 2022 03:50:55 +0000 (20:50 -0700)]
The use of <net/ppp_defs.h> isn't guranteed to exist on Linux (e.g. uclibc, buildroot, others)

The one provided by glibc simply includes <linux/ppp_defs.h>. This include is still needed on SunOS

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoNeed to use the /include directory for SunOS
Eivind Næss [Tue, 31 May 2022 03:20:24 +0000 (20:20 -0700)]
Need to use the /include directory for SunOS

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoAdding propper include guard to header files, renaming to PPP_<FILE>_H for consistency
Eivind Næss [Mon, 30 May 2022 20:53:24 +0000 (13:53 -0700)]
Adding propper include guard to header files, renaming to PPP_<FILE>_H for consistency

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoFor Linux, use the Linux / Glibc based defines instead of included headers
Eivind Næss [Mon, 30 May 2022 05:14:08 +0000 (22:14 -0700)]
For Linux, use the Linux / Glibc based defines instead of included headers

This is to ensure compatibility with the OS you are compiling against and that
headers are maintained in upstream projects.

- Moved PPP_EAP and PPP_ECP into respective header files in lieu of not currently
  existing in the linux/ppp_defs.h

- Unchained the top-level ${topsrc_dir}/include, this folder is included for
  prosterity and may continue to exist on github, but in the future eliminated from
  distribution

- Bogus upstream file in glibc for <net/if_ppp.h>, its content should be replaced
  with a simple include to <linux/ppp-ioctl.h>. The lack of an appropriate ifreq
  structure with ppp_stats or ppp_comp_stats, implementet that inline (and tested).

- Updated instances where PPP_FCS() macro would expand the fcstab, while PPP_GOODFCS
  and PPP_INITFCS is provided in <linux/ppp_defs.h>, the latter is tied to a lookup
  table. It's used in two places, so add the PPP_FCS macro where applicable.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoFixup in merge/rebase, had to remove duplicate use of pppdconf.h
Eivind Næss [Sat, 16 Oct 2021 19:49:53 +0000 (12:49 -0700)]
Fixup in merge/rebase, had to remove duplicate use of pppdconf.h

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoCleanup in pppd/pppd.h, eliminate unecessary headers
Eivind Næss [Mon, 13 Sep 2021 15:17:17 +0000 (08:17 -0700)]
Cleanup in pppd/pppd.h, eliminate unecessary headers

This removes the need to include the following heades in pppd.h

<limits.h>, this is included where needed (main.c). The number of groups already retrieved is stored in the "int ngroups" variable.
<sys/params.h>, use MAXPATHLEN where needed
<net/if.h>, such that the value of IFNAMSIZ doesn't have to be declared to include <pppd/pppd.h>

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoFix include paths for plugins to use the public API of pppd
Eivind Næss [Tue, 10 Aug 2021 23:38:45 +0000 (16:38 -0700)]
Fix include paths for plugins to use the public API of pppd

This change does a few different things.
 * Projects that needs #include "config.h" should use a config.h.in for the project generated by configure in the project's local directory.
 * All projects will use #include <pppd/pppd.h>, and Makefile will add -I${top_srcdir} to the appropriate *_CPPFLAGS variable.
 * The inclusion of <pppd/pppdconf.h> will set the presidence for all features enabled/disabled in pppd
 * Plugins will now need to use PPPD_VERSION as it conflicts with VERSION from config.h generated by autotools for third party packages

Currently, only pppoe require the use of config.h to correctly set the defines for which header files and so on was detected by configure

Other projects only needed to include <pppd/pppd.h> (and maybe a few other header files), a future change will fixup <pppd/pppd.h> to include features as needed such that it's the only needed include for a plugin. This will avoid littering the code with #ifdef/#endif constructs.

BREAKING CHANGE!

pppd/pppd.h no longer provide VERSION, third party packages are required to switch to use PPPD_VERSION. This is to avoid conflict with a source package's own VERSION as set by autotools / config.h. Also, the use of PPP_VERSION conflicts with public header files from Glibc/Linux kernel.

Example:

   char pppd_version[] = PPPD_VERSION;

pppd will load plugins, and also look for the symbol "pppd_version" to validate that the plugin was built for the current version of pppd.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoRemoving patchlevel.h
Eivind Næss [Sat, 7 Aug 2021 21:15:01 +0000 (14:15 -0700)]
Removing patchlevel.h

The significance of this headerfile has now been reduced as pppd now provides
pppd.pc (pkgconfig) and autotools to configure the project. Other projects can
now also configure the correct path variable:

   e.g. /usr/lib/x86_64-linux-gnu/pppd/2.4.10/...

To both consider the architecture and version via pkg-tool. The only consideration
would be the missing DATE directive. But I am less worried about that as the entire
release process has now been changed with the introduction of autotools.

Also fixing up pppd/pppdconf.h.in to remove quotes around the defines

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoUpdate configure.ac to use AS_IF() and correct use of paranthesis
Eivind Næss [Tue, 10 Aug 2021 13:50:18 +0000 (06:50 -0700)]
Update configure.ac to use AS_IF() and correct use of paranthesis

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoconfigure.ac: include systemd support in summary
Sam James [Sun, 8 Aug 2021 06:07:25 +0000 (07:07 +0100)]
configure.ac: include systemd support in summary

Signed-off-by: Sam James <sam@gentoo.org>
21 months agoconfigure.ac, pppd/Makefile.am: use pkg-config to link against systemd
Sam James [Sun, 8 Aug 2021 06:07:18 +0000 (07:07 +0100)]
configure.ac, pppd/Makefile.am: use pkg-config to link against systemd

Signed-off-by: Sam James <sam@gentoo.org>
21 months agoconfigure.ac: minor phrasing tidy ups in output
Sam James [Sun, 8 Aug 2021 05:36:58 +0000 (06:36 +0100)]
configure.ac: minor phrasing tidy ups in output

Signed-off-by: Sam James <sam@gentoo.org>
21 months agoconfigure.ac: use consistent x${VAR} = x${VALUE} test
Sam James [Sun, 8 Aug 2021 05:36:58 +0000 (06:36 +0100)]
configure.ac: use consistent x${VAR} = x${VALUE} test

May as well do it the same way throughout.

Signed-off-by: Sam James <sam@gentoo.org>
21 months agoFixing up quotation of AC_DEFINE macro
Eivind Næss [Sat, 7 Aug 2021 21:11:43 +0000 (14:11 -0700)]
Fixing up quotation of AC_DEFINE macro

The resulting pppd/config.h will now display a unquoted comment before the define which is consistent with other defines created by autotools.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging USE_SRP to PPP_WITH_SRP for consistency
Eivind Næss [Mon, 30 May 2022 20:04:59 +0000 (13:04 -0700)]
Changing USE_SRP to PPP_WITH_SRP for consistency

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging USE_PAM to PPP_WITH_PAM for consistency.
Eivind Næss [Sat, 7 Aug 2021 21:52:39 +0000 (14:52 -0700)]
Changing USE_PAM to PPP_WITH_PAM for consistency.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging defines for USE_PEAP to PPP_WITH_PEAP for consistency
Eivind Næss [Sat, 16 Oct 2021 19:28:01 +0000 (12:28 -0700)]
Changing defines for USE_PEAP to PPP_WITH_PEAP for consistency

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging MAXOCTETS to PPP_WITH_MAXOCTETS
Eivind Næss [Sat, 7 Aug 2021 21:48:20 +0000 (14:48 -0700)]
Changing MAXOCTETS to PPP_WITH_MAXOCTETS

Though, this could be renamed to PPP_WITH_SESSION_LIMITS; I don't know

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging the define USE_EAPTLS to PPP_WITH_EAPTLS for consistency
Eivind Næss [Sat, 7 Aug 2021 21:41:32 +0000 (14:41 -0700)]
Changing the define USE_EAPTLS to PPP_WITH_EAPTLS for consistency

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging PPP_FILTER to PPP_WITH_FILTER for consistency.
Eivind Næss [Fri, 6 Aug 2021 23:52:33 +0000 (16:52 -0700)]
Changing PPP_FILTER to PPP_WITH_FILTER for consistency.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging PLUGIN to PPP_WITH_PLUGINS for consistency
Eivind Næss [Fri, 6 Aug 2021 23:46:43 +0000 (16:46 -0700)]
Changing PLUGIN to PPP_WITH_PLUGINS for consistency

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging CBCP_SUPPORT define to PPP_WITH_CBCP to be consistent.
Eivind Næss [Fri, 6 Aug 2021 23:37:10 +0000 (16:37 -0700)]
Changing CBCP_SUPPORT define to PPP_WITH_CBCP to be consistent.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging USE_TDB to PPP_WITH_TDB to be consistent.
Eivind Næss [Fri, 6 Aug 2021 23:33:00 +0000 (16:33 -0700)]
Changing USE_TDB to PPP_WITH_TDB to be consistent.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging HAVE_MULTILINK to PPP_WITH_MULTILINK
Eivind Næss [Fri, 6 Aug 2021 23:28:19 +0000 (16:28 -0700)]
Changing HAVE_MULTILINK to PPP_WITH_MULTILINK

To be consistent with other options / defines.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging defines for CHAPMS, MSLANMAN, MPPE to prefix with PPP_WITH_*
Eivind Næss [Fri, 6 Aug 2021 17:06:17 +0000 (10:06 -0700)]
Changing defines for CHAPMS, MSLANMAN, MPPE to prefix with PPP_WITH_*

To avoid bleeding over to third party projects. They are all
defined and exported by pppdconf.h either way. These projects
will stil have a consistent view of how pppd was compiled.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agoChanging INET6 to PPP_WITH_IPV6CP and adding configure option
Eivind Næss [Fri, 6 Aug 2021 16:14:02 +0000 (09:14 -0700)]
Changing INET6 to PPP_WITH_IPV6CP and adding configure option

Based on feedback on PR #296, the option ipv6-support seems inconsistent
with the existing ipxcp option. Futhermore, the #define has been renamed
to avoid bleeding into third party projects.

pppdconf.h is already distributed and will define or undefine the
PPP_WITH_IPV6CP define.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
21 months agopppd: Add support for registering ppp interface via Linux rtnetlink API
Pali Rohár [Sat, 9 Jul 2022 11:40:24 +0000 (13:40 +0200)]
pppd: Add support for registering ppp interface via Linux rtnetlink API

pppd currently creates ppp network interface via PPPIOCNEWUNIT ioctl API.
This API creates a new ppp network interface named "ppp<unit_id>". If user
supply option "ifname" with custom network name then pppd calls SIOCSIFNAME
ioctl to rename "ppp<unit_id>" to custom name immediately after successful
PPPIOCNEWUNIT ioctl call. If custom name is already registered then
SIOCSIFNAME ioctl fails and pppd close current channel (which destroy also
network interface).

This has side effect that in the first few miliseconds interface has
different name as what user supplied.

Tools like systemd, udev or NetworkManager are trying to query
interface attributes based on interface name immediately when new
network interface is created.

But if interface is renamed immediately after creation then these tools
fails. For example when running pppd with option "ifname ppp-wan" following
error is reported by systemd / udev into dmesg log:

    [   35.718732] PPP generic driver version 2.4.2
    [   35.793914] NET: Registered protocol family 24
    [   35.889924] systemd-udevd[1852]: link_config: autonegotiation is unset or enabled, the speed and duplex are not writable.
    [   35.901450] ppp-wan: renamed from ppp0
    [   35.930332] systemd-udevd[1852]: link_config: could not get ethtool features for ppp0
    [   35.939473] systemd-udevd[1852]: Could not set offload features of ppp0: No such device

There is an easy way to fix this issue: Use new rtnetlink API.

Via rtnetlink API it is possible to create ppp network interface with
custom ifname atomically. Just it is not possible to specify custom ppp
unit id.

So use new rtnetlink API when user requested custom ifname without custom
ppp unit id. This will avoid system issues with interface renaming as ppp
interface is directly registered with specified final name.

This has also advantage that if requested interface name already exists
then pppd fail during registering of networking interface and not during
renaming network interface which happens after successful registration.

If user supply custom ppp unit id then it is required to use old ioctl API
as currently it is the only API which allows specifying ppp unit id.

When user does not specify custom ifname stay also with old ioctl API.
There is currently a bug in kernel which cause that when empty interface is
specified in rtnetlink message for creating ppp interface then kernel
creates ppp interface but with pseudo-random name, not derived from ppp
unit id. And therefore it is not possible to retrieve what is the name of
newly created network interface. So when user does not specify interface
name via "ifname" option (which means that want from kernel to choose some
"free" interface name) it is needed to use old ioctl API which do it
correctly for now.

Signed-off-by: Pali Rohár <pali@kernel.org>
21 months agoAdd SECURITY.md
Paul Mackerras [Sat, 9 Jul 2022 10:22:45 +0000 (20:22 +1000)]
Add SECURITY.md

Bare-bones for now, will elaborate.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
21 months agopppd/eap-tls.c: fix build with libressl (#338)
Fabrice Fontaine [Mon, 4 Jul 2022 08:07:03 +0000 (10:07 +0200)]
pppd/eap-tls.c: fix build with libressl (#338)

Fix the following build failure with libressl:

eap-tls.c: In function 'ssl_msg_callback':
eap-tls.c:1284:10: error: 'SSL3_RT_HEADER' undeclared (first use in this function); did you mean 'SSL3_RT_ALERT'?
 1284 |     case SSL3_RT_HEADER:
      |          ^~~~~~~~~~~~~~
      |          SSL3_RT_ALERT

Fixes:
 - http://autobuild.buildroot.org/results/7d721833bddf73531fa03b0a626511af6826d0df

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
21 months agopppd: Add dummy noipx option
Paul Mackerras [Mon, 4 Jul 2022 07:37:31 +0000 (17:37 +1000)]
pppd: Add dummy noipx option

Add "noipx" as an option that does nothing to avoid breaking
installations that have "noipx" in /etc/ppp/defaults or wherever.
(The IPX-related options were removed by commit c2881a6b71a3 ("pppd:
Drop linux IPX support (#326)", 2022-01-13)).

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
21 months agopppd/auth: Pass ipparam to auth-up and auth-down scripts
Jaco Kroon [Tue, 17 May 2022 08:05:27 +0000 (10:05 +0200)]
pppd/auth: Pass ipparam to auth-up and auth-down scripts

ipparam is the only way a system administrator has of passing arbitrary
information from options files to scripts, and this may be useful during
auth-up in particular.  (If upstream pppd had support for an auth-fail
script, it could be useful there too.)

Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2 years agopppd/eap: Fix bug causing incorrect response length (#334)
Eivind Næss [Thu, 3 Feb 2022 22:28:22 +0000 (14:28 -0800)]
pppd/eap: Fix bug causing incorrect response length (#334)

Need to update the esp->ea_client.ea_namelen variable. A plugin can override the
name of the user, and the variable is passed onto the eap_chap2_response generating
the wrong response length.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agopppd: Drop linux IPX support (#326)
Richard Purdie [Thu, 13 Jan 2022 06:48:14 +0000 (06:48 +0000)]
pppd: Drop linux IPX support (#326)

The 5.15 Linux kernel has removed ipx support, along with the userspace
visible header. This support wasn't very well maintained in the kernel
for several years so drop the support from ppp as well since this won't
be usable in future.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2 years agopppd: Allow use of additional Bnnn constants (#325)
pali [Thu, 13 Jan 2022 06:42:53 +0000 (07:42 +0100)]
pppd: Allow use of additional Bnnn constants (#325)

These constants are supported by Linux kernel on SPARC architecture.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoExpand byte count statistics to 64 bits (#298)
Jaco Kroon [Thu, 13 Jan 2022 06:38:04 +0000 (08:38 +0200)]
Expand byte count statistics to 64 bits (#298)

* Add Gigawords to radius packets where applicable.

IMPORTANT NOTE:  The ioctl() only supports 32-bit counters.  In order t
obtain 64-bit counters, these are now pulled in from sysfs (it's assumed
to be mounted on /sys which I'm assuming is standard).

It is unknown whether sysfs will be available everywhere, as such, keep
the ioctl() method in place, but attempt to detect wrap-overs.

If the sysfs mechanism fails, fail back to the ioctl().

Given maximum data rates, the intervals between calling this needs to be
such that no more than 4GB (2^32) bytes are sent or received in any
given interval.  Mostly important for radius plugin where data
accounting may be in effect.

Towards this, a timer interval on 25 seconds is set to force a ioctl()
poll irrespective of the rate of stats update calls.  This may be
important for especially radius that needs to provide interim-update
intervals, if the interim updates is too long and the counters could
wrap-over twice in a single interval.  At 25 seconds we should detect
all wraps up to an effective data rate of 1.37Gbps, which for my
purposes is adequate.

Possible downsides, 4 files are opened, read and closed every time
statistics is requested.  This results in 12 system calls every single
time statistics is required, compared to 1 for the ioctl.  Efficiency is
unknown, but as a rule of thumb fewer system calls are better, this is
however not a critical path in my opinion, so should not be a problem.
If required I can run a few benchmarks using gettimeofday() to measure
actual impact.

Signed-off-by: Jaco Kroon <jaco@uls.co.za>
* Use netlink if possible to obtain 64-bit stats.

This uses two system calls per round.

This should be preferred where available.  It seems the RTM_GETSTATS was
only added from 2016 some point (4.7.0 as per pali), which is in my
opinion old, but given experience with certain embedded systems does
need to be supported.

Signed-off-by: Jaco Kroon <jaco@uls.co.za>
Co-authored-by: Jaco Kroon <jaco@iewc.co.za>
2 years agoMerge pull request #328 from pali/ipv6
Paul Mackerras [Wed, 12 Jan 2022 09:41:33 +0000 (20:41 +1100)]
Merge pull request #328 from pali/ipv6

ipv6cp: Add support for new ipv6cp-noremote, ipv6cp-nosend and ipv6cp-use-remotenumber options

2 years agoMerge pull request #330 from pali/pppoe-discovery
Paul Mackerras [Mon, 10 Jan 2022 04:06:21 +0000 (15:06 +1100)]
Merge pull request #330 from pali/pppoe-discovery

pppoe-discovery: Do not set eth0 as default interface and valide all cmdline options

2 years agoImproved Buildroot CI build speed by providing precompiled Buildroot images. (#332)
Adrien RICCIARDI [Sat, 8 Jan 2022 01:27:43 +0000 (02:27 +0100)]
Improved Buildroot CI build speed by providing precompiled Buildroot images. (#332)

Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
2 years agopppoe-discovery: Remove duplicate and unused includes
Pali Rohár [Tue, 21 Dec 2021 17:10:27 +0000 (18:10 +0100)]
pppoe-discovery: Remove duplicate and unused includes

Some of specified include header files in pppoe-discovery.c are duplicate
and some of them are unused. Remove all these include lines which are not
needed.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agopppoe-discovery: Add check that there is no additional extra argument
Pali Rohár [Tue, 21 Dec 2021 15:00:58 +0000 (16:00 +0100)]
pppoe-discovery: Add check that there is no additional extra argument

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agopppoe-discovery: Do not set eth0 as default interface
Pali Rohár [Tue, 21 Dec 2021 15:00:18 +0000 (16:00 +0100)]
pppoe-discovery: Do not set eth0 as default interface

On most Linux systems there is no network interface with name eth0.

So rather make -I interface option as mandatory and do not rely on some
default hardcoded interface name.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoipv6cp: Add support for ipv6cp-use-remotenumber option
Pali Rohár [Sat, 31 Jul 2021 15:09:08 +0000 (17:09 +0200)]
ipv6cp: Add support for ipv6cp-use-remotenumber option

This new option cause that pppd would use "remotenumber" option value for
negotiating IPv6 remote interface identifier.

It is expected that "remotenumber" option in this case is set either to MAC
address, IPv4 address, IPv6 address or telephone number (with or without
plus sign) of remote peer system.

This option is useful for PPPoE connections to generate stable and
predicable IPv6 remote interface identifier as "remotenumber" is set by
pppoe.so plugin to MAC address of remote ethernet peer.

Similarly dial-up connections set "remotenumber" to telephone number of the
remote system and VPN-based ppp plugins set "remotenumber" to address of
remote peer (in case VPN connection is based on IPv4 transport protocol
then address is set to IPv4, if based on IPv6 then remotenumber is IPv6
address).

Having stable IPv6 interface identifiers in ipv6cp is really important.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoipv6cp: Add support for ipv6cp-nosend option
Pali Rohár [Sat, 5 Jun 2021 16:51:52 +0000 (18:51 +0200)]
ipv6cp: Add support for ipv6cp-nosend option

This new option cause that pppd would not send our local IPv6 interface
identifier to peer during IPv6 interface identifier negotiation. Like
nosendip option for IPv4.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoipv6cp: Add support for ipv6cp-noremote option
Pali Rohár [Fri, 26 Feb 2021 13:47:59 +0000 (14:47 +0100)]
ipv6cp: Add support for ipv6cp-noremote option

With this option pppd is allowed to operate without having an IPv6 link
local address for the peer, like noremoteip option for IPv4.

This option is only available under Linux, like noremoteip option.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoUpdated Solaris CI action to fix build error on macOS greater than 10.15. (#327)
Adrien RICCIARDI [Mon, 13 Dec 2021 05:37:16 +0000 (06:37 +0100)]
Updated Solaris CI action to fix build error on macOS greater than 10.15. (#327)

Signed-off-by: RICCIARDI-Adrien <adrien.ricciardi@hotmail.fr>
2 years agopppoe: Print packet fields in hex if they contain non-printable characters
Paul Mackerras [Fri, 10 Dec 2021 21:40:57 +0000 (08:40 +1100)]
pppoe: Print packet fields in hex if they contain non-printable characters

This adds logic to pppoe_printpkt to print text fields as hex if the
field contains any non-printable characters.  This is so that a
malicious, buggy or hacked access concentrator can't cause us to send
non-printing characters to syslog.

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2 years agoMerge branch 'pppoe-discovery' of https://github.com/pali/ppp
Paul Mackerras [Fri, 26 Nov 2021 00:05:06 +0000 (11:05 +1100)]
Merge branch 'pppoe-discovery' of https://github.com/pali/ppp

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2 years agopppd: Add ipv6-{up,down}-script options (#321)
Daniel Barlow [Sat, 20 Nov 2021 04:58:17 +0000 (04:58 +0000)]
pppd: Add ipv6-{up,down}-script options (#321)

These allow a user to specify the paths to the scripts
usually located at /etc/ppp/ipv6-up and /etc/ppp/ipv6-down,
similarly to the existing ip-up-script and ip-down-script
options

Signed-off-by: Daniel Barlow <dan@telent.net>
2 years agoplugins/pppol2tp: Add '#ifdef INET6' for optional ipv6 (#319)
Paul Mackerras [Sat, 20 Nov 2021 04:57:23 +0000 (15:57 +1100)]
plugins/pppol2tp: Add '#ifdef INET6' for optional ipv6 (#319)

pppol2tp.c add '#ifdef INET6' for optional ipv6

2 years agopppol2tp.c add '#ifdef INET6' for optional ipv6
str8fast [Thu, 28 Oct 2021 14:55:56 +0000 (14:55 +0000)]
pppol2tp.c add '#ifdef INET6' for optional ipv6

Without it, l2tp daemon can't launch ppp, cuz undefined symbol ipv6_up_notifier.

2 years agoMerge pull request #297 from mjeveritt/patch-11-test-pr
Paul Mackerras [Sat, 16 Oct 2021 03:01:46 +0000 (14:01 +1100)]
Merge pull request #297 from mjeveritt/patch-11-test-pr

pppd: Add option to ask peer for WINS address

This adds a 'usepeerwins' option, analogous to the usepeerdns option,
to ask the peer for WINS server addresses.  Nothing is done with
the addresses provided other than to pass them to the ip-up
script in environment variables.

With this, if the peer sends an IPCP Configure-NAK containing
WINS addresses, we will request them in the following IPCP
Configure-Request.

Co-authored-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Michael Everitt <gentoo@veremit.xyz>
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Signed-off-by: Michael Everitt <michael@2e0cer.net>
2 years agoMerge pull request #307 from enaess/ppp-peap
Paul Mackerras [Sat, 16 Oct 2021 02:55:21 +0000 (13:55 +1100)]
Merge pull request #307 from enaess/ppp-peap

pppd: Add PEAP/MSCHAPv2 support

2 years agoMerge pull request #313 from Chocobo1/install
Paul Mackerras [Sat, 16 Oct 2021 02:53:02 +0000 (13:53 +1100)]
Merge pull request #313 from Chocobo1/install

Perform installation step in the CI testing

2 years agoImprove the PEAP contribution by Rustam Kovhaev
Eivind Næss [Thu, 24 Jun 2021 23:06:11 +0000 (16:06 -0700)]
Improve the PEAP contribution by Rustam Kovhaev

These changes adds to his contribution by

  * Adding options to perform CA/CRL checking and certificate validation
    consistent with what is already been done for EAP-TLS
  * Certificate validation is now in line with what is already been done
    for EAP-TLS. Users can now set "remotename" and "tls-verify-method" to
    control these.
  * Validation of certificate purpose and extended key usage is controlled
    by the option "tls-verify-key-usage".
  * Fixing up MPPE key generation to use the new API for handling MPPE keys
  * Man page is updated where appropriate for the new options.
  * Added unit-tests for the PEAP code in case of crypto or parameters would
    change in the future.
  * Added the peap feature to configure scripts. Users can now control the
    feature by specifying --enable-peap/--disable-peap.

To acheive feature parity with the EAP-TLS change, the EAP-TLS common code was
refactored into tls.c/.h such that it could be re-used in both instances.

Using PEAP/MSCHAPv2 is now supported in PPPD with this change.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoMerge branch 'fix-compiler-warnings-2' of https://github.com/enaess/ppp
Paul Mackerras [Mon, 27 Sep 2021 07:12:00 +0000 (17:12 +1000)]
Merge branch 'fix-compiler-warnings-2' of https://github.com/enaess/ppp

Signed-off-by: Paul Mackerras <paulus@ozlabs.org>
2 years agopppd: Fix usage of BOTHER ioctl API on Linux (#314)
pali [Mon, 27 Sep 2021 07:10:31 +0000 (09:10 +0200)]
pppd: Fix usage of BOTHER ioctl API on Linux (#314)

Linux architectures have different content of struct termios2 and also
different value of BOTHER macro. So do not declare any struct termios2 nor
BOTHER macro. Current definitions in ppp were applicable only for x86.

Correct definitions for current architecture are only in <asm/termbits.h>
and <asm/ioctls.h> header files. But Linux header file <asm/termbits.h> is
in conflict with glibc header file <termios.h> and only one can be included
in one source unit. Moreover both header files contains struct termios but
with different content. So it is not possible to use glibc tc* functions
with <asm/termbits.h> definitions.

For this reason provide a new include header file "termios_linux.h" which
provides custom implementation of all glibc's termios.h functions via Linux
ioctl() interface with definitions from Linux <asm/termbits.h> header file.

Thus this "termios_linux.h" is replacement for <termios.h> with additional
support for BOTHER Linux termios API.

Same "termios_linux.h" is going to be used by U-Boot's kwboot utility for
the same reason to use arbitrary baudrate value via BOTHER ioctl API.

Hopefully one day glibc will provide some API functions for functionality
provided currently by BOTHER Linux API.

Signed-off-by: Pali Rohár <pali@kernel.org>
2 years agoFix for CLang -Wformat-overflow warning, expand the destination array to fit a number.
Eivind Næss [Thu, 23 Sep 2021 21:52:47 +0000 (14:52 -0700)]
Fix for CLang -Wformat-overflow warning, expand the destination array to fit a number.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing GCC -Wunused-result warning in chat.c resolving comments from Paul Mackerras
Eivind Næss [Thu, 23 Sep 2021 15:19:35 +0000 (08:19 -0700)]
Fixing GCC -Wunused-result warning in chat.c resolving comments from Paul Mackerras

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang [-Wpointer-sign] warning in winbind.c
Eivind Næss [Thu, 23 Sep 2021 14:59:51 +0000 (07:59 -0700)]
Fixing CLang [-Wpointer-sign] warning in winbind.c

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang [-Wcomment] warning for using /* inside of a /* comment.
Eivind Næss [Thu, 23 Sep 2021 14:57:12 +0000 (07:57 -0700)]
Fixing CLang [-Wcomment] warning for using /* inside of a /* comment.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang [-Wpointer-sign] warning in radius.c
Eivind Næss [Thu, 23 Sep 2021 14:56:05 +0000 (07:56 -0700)]
Fixing CLang [-Wpointer-sign] warning in radius.c

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoClang complained about -Wformat in passing a int for %h in snprintf. Result would...
Eivind Næss [Thu, 23 Sep 2021 14:52:34 +0000 (07:52 -0700)]
Clang complained about -Wformat in passing a int for %h in snprintf. Result would have been the same.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang -Wpointer-sign warnings in sendserver.c
Eivind Næss [Thu, 23 Sep 2021 14:49:40 +0000 (07:49 -0700)]
Fixing CLang -Wpointer-sign warnings in sendserver.c

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoCLang detected possible invalid memory access (-Wsizeof-pointer-memaccess)
Eivind Næss [Thu, 23 Sep 2021 14:44:06 +0000 (07:44 -0700)]
CLang detected possible invalid memory access (-Wsizeof-pointer-memaccess)

rc_find_server() resets the secret by setting *secret = 0 instead of what
was likely intended: memset the entire array. In case of error, moved the
memset operation outside of the rc_find_server() function. It's only used
in one place anyway.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing signed vs. unsigned char* warnings in avpair.c
Eivind Næss [Thu, 23 Sep 2021 14:40:01 +0000 (07:40 -0700)]
Fixing signed vs. unsigned char* warnings in avpair.c

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing signed vs. unsigned char * in strcpy operation.
Eivind Næss [Thu, 23 Sep 2021 14:36:43 +0000 (07:36 -0700)]
Fixing signed vs. unsigned char * in strcpy operation.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoCI: Deduplicate configure flags by using a variable
Chocobo1 [Tue, 21 Sep 2021 07:21:47 +0000 (15:21 +0800)]
CI: Deduplicate configure flags by using a variable

2 years agoCI: Remove redundant check
Chocobo1 [Tue, 21 Sep 2021 07:20:47 +0000 (15:20 +0800)]
CI: Remove redundant check

The step is already covered by `make distcheck`.

2 years agoCI: Perform installation step
Chocobo1 [Sun, 29 Aug 2021 11:59:21 +0000 (19:59 +0800)]
CI: Perform installation step

This ensures installation code to be tested.

2 years agoFixing CLang warning: format specifies type 'unsigned short' but the argument has...
Eivind Næss [Mon, 20 Sep 2021 17:20:50 +0000 (10:20 -0700)]
Fixing CLang warning: format specifies type 'unsigned short' but the argument has type 'int'

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang warnings related to using pointers of different signedness (int* vs...
Eivind Næss [Mon, 20 Sep 2021 17:18:50 +0000 (10:18 -0700)]
Fixing CLang warnings related to using pointers of different signedness (int* vs unsigned int* in definition of socklen_t).

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang warning with regards to GNU old-style designator in structure initializa...
Eivind Næss [Mon, 20 Sep 2021 17:15:02 +0000 (10:15 -0700)]
Fixing CLang warning with regards to GNU old-style designator in structure initialization.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing CLang warnings w.r.t. GNU-style designator in structure declaration
Eivind Næss [Mon, 20 Sep 2021 17:13:00 +0000 (10:13 -0700)]
Fixing CLang warnings w.r.t. GNU-style designator in structure declaration

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing GCC unused result warning w.r.t. fchown() and fchmod() functions.
Eivind Næss [Mon, 20 Sep 2021 17:09:31 +0000 (10:09 -0700)]
Fixing GCC unused result warning w.r.t. fchown() and fchmod() functions.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing GCC warning with unused return value from ftruncate().
Eivind Næss [Mon, 20 Sep 2021 17:05:17 +0000 (10:05 -0700)]
Fixing GCC warning with unused return value from ftruncate().

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing GCC compile warning with unused result from setgid/setuid.
Eivind Næss [Mon, 20 Sep 2021 17:01:55 +0000 (10:01 -0700)]
Fixing GCC compile warning with unused result from setgid/setuid.

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
2 years agoFixing GCC warning -Wunused-result with setgid in winbind.c
Eivind Næss [Mon, 20 Sep 2021 16:52:22 +0000 (09:52 -0700)]
Fixing GCC warning -Wunused-result with setgid in winbind.c

Signed-off-by: Eivind Næss <eivnaes@yahoo.com>