5d5a2e27d9
which contains breaking changes for third-party plugins, a complete revamp of the build-system and that allows for flexibility of configuring features as needed. * Support for PEAP authentication * Support for loading PKCS12 certificate envelopes * Adoption of GNU Autoconf / Automake build environment * Support for pkgconfig * Bunch of fixes and cleanup to PPPoE and IPv6 support * Major revision to PPPD's Plugin API * Lots of internal fixes and cleanups for Radius and PPPoE * Dropped IPX support, as Linux has dropped it in version 5.15 * Pppd is no longer installed setuid-root * New pppd options: - ipv6cp-noremote, ipv6cp-nosend, ipv6cp-use-remotenumber, ipv6-up-script, ipv6-down-script - -v, show-options - usepeerwins, ipcp-no-address, ipcp-no-addresses, nosendip * On Linux, any baud rate can be set on a serial port provided the kernel serial driver supports that. - Obsoleted patches: * ppp-lib64.patch * ppp-compiling-with-clang-encounters-an-error-in-eap-tls..patch * ppp-pie.patch - Enable support for systemd notification. OBS-URL: https://build.opensuse.org/package/show/network/ppp?expand=0&rev=75
46 lines
1.5 KiB
Diff
46 lines
1.5 KiB
Diff
--- pppd/auth.c.orig
|
|
+++ pppd/auth.c
|
|
@@ -2184,9 +2184,10 @@ check_access(FILE *f, char *filename)
|
|
|
|
if (fstat(fileno(f), &sbuf) < 0) {
|
|
warn("cannot stat secret file %s: %m", filename);
|
|
- } else if ((sbuf.st_mode & (S_IRWXG | S_IRWXO)) != 0) {
|
|
- warn("Warning - secret file %s has world and/or group access",
|
|
- filename);
|
|
+ } else if ((sbuf.st_mode & S_IRWXO) != 0) {
|
|
+ warn("Warning - secret file %s has world access", filename);
|
|
+ } else if ((sbuf.st_mode & S_IRWXG) != 0 && sbuf.st_gid != 15) {
|
|
+ warn("Warning - secret file %s has group access", filename);
|
|
}
|
|
}
|
|
|
|
--- pppd/lcp.c.orig
|
|
+++ pppd/lcp.c
|
|
@@ -2243,7 +2243,7 @@ lcp_received_echo_reply (fsm *f, int id,
|
|
if (lcp_gotoptions[f->unit].neg_magicnumber
|
|
&& magic == lcp_gotoptions[f->unit].magicnumber) {
|
|
warn("appear to have received our own echo-reply!");
|
|
- return;
|
|
+ /* M$-Software did get this wrong so we also accept those packets. */
|
|
}
|
|
|
|
/* Reset the number of outstanding echo frames */
|
|
--- pppd/pppd-private.h.orig
|
|
+++ pppd/pppd-private.h
|
|
@@ -545,15 +545,7 @@ int parse_dotted_ip(char *, u_int32_t *)
|
|
#define DEBUGCHAP 1
|
|
#endif
|
|
|
|
-#ifndef LOG_PPP /* we use LOG_LOCAL2 for syslog by default */
|
|
-#if defined(DEBUGMAIN) || defined(DEBUGFSM) || defined(DEBUGSYS) \
|
|
- || defined(DEBUGLCP) || defined(DEBUGIPCP) || defined(DEBUGUPAP) \
|
|
- || defined(DEBUGCHAP) || defined(DEBUG) || defined(DEBUGIPV6CP)
|
|
#define LOG_PPP LOG_LOCAL2
|
|
-#else
|
|
-#define LOG_PPP LOG_DAEMON
|
|
-#endif
|
|
-#endif /* LOG_PPP */
|
|
|
|
#ifdef DEBUGMAIN
|
|
#define MAINDEBUG(x) if (debug) dbglog x
|