96 lines
3.4 KiB
Diff
96 lines
3.4 KiB
Diff
pppd: Allow specifying ipv6-up and ipv6-down scripts
|
|
|
|
This patch implements the "ipv6-up-script" and "ipv6-down-script" options
|
|
which allow to specify the path of the ipv6-up and ipv6-down scripts to call.
|
|
|
|
These options default to _PATH_IPV6UP and _PATH_IPV6DOWN to retain the
|
|
existing behaviour.
|
|
|
|
The patch originated from the Debian project.
|
|
|
|
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
|
|
|
|
--- a/pppd/main.c
|
|
+++ b/pppd/main.c
|
|
@@ -295,6 +295,8 @@ main(int argc, char *argv[])
|
|
|
|
strlcpy(path_ipup, _PATH_IPUP, sizeof(path_ipup));
|
|
strlcpy(path_ipdown, _PATH_IPDOWN, sizeof(path_ipdown));
|
|
+ strlcpy(path_ipv6up, _PATH_IPV6UP, sizeof(path_ipv6up));
|
|
+ strlcpy(path_ipv6down, _PATH_IPV6DOWN, sizeof(path_ipv6down));
|
|
|
|
link_stats_valid = 0;
|
|
new_phase(PHASE_INITIALIZE);
|
|
--- a/pppd/options.c
|
|
+++ b/pppd/options.c
|
|
@@ -118,6 +118,8 @@ int req_unit = -1; /* requested interfa
|
|
char path_ipup[MAXPATHLEN]; /* pathname of ip-up script */
|
|
char path_ipdown[MAXPATHLEN];/* pathname of ip-down script */
|
|
char req_ifname[MAXIFNAMELEN]; /* requested interface name */
|
|
+char path_ipv6up[MAXPATHLEN]; /* pathname of ipv6-up script */
|
|
+char path_ipv6down[MAXPATHLEN];/* pathname of ipv6-down script */
|
|
bool multilink = 0; /* Enable multilink operation */
|
|
char *bundle_name = NULL; /* bundle name for multilink */
|
|
bool dump_options; /* print out option values */
|
|
@@ -324,6 +326,13 @@ option_t general_options[] = {
|
|
"Set pathname of ip-down script",
|
|
OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
|
|
|
|
+ { "ipv6-up-script", o_string, path_ipv6up,
|
|
+ "Set pathname of ipv6-up script",
|
|
+ OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
|
|
+ { "ipv6-down-script", o_string, path_ipv6down,
|
|
+ "Set pathname of ipv6-down script",
|
|
+ OPT_PRIV|OPT_STATIC, NULL, MAXPATHLEN },
|
|
+
|
|
#ifdef HAVE_MULTILINK
|
|
{ "multilink", o_bool, &multilink,
|
|
"Enable multilink operation", OPT_PRIO | 1 },
|
|
--- a/pppd/ipv6cp.c
|
|
+++ b/pppd/ipv6cp.c
|
|
@@ -1295,7 +1295,7 @@ ipv6cp_up(fsm *f)
|
|
*/
|
|
if (ipv6cp_script_state == s_down && ipv6cp_script_pid == 0) {
|
|
ipv6cp_script_state = s_up;
|
|
- ipv6cp_script(_PATH_IPV6UP);
|
|
+ ipv6cp_script(path_ipv6up);
|
|
}
|
|
}
|
|
|
|
@@ -1346,7 +1346,7 @@ ipv6cp_down(fsm *f)
|
|
/* Execute the ipv6-down script */
|
|
if (ipv6cp_script_state == s_up && ipv6cp_script_pid == 0) {
|
|
ipv6cp_script_state = s_down;
|
|
- ipv6cp_script(_PATH_IPV6DOWN);
|
|
+ ipv6cp_script(path_ipv6down);
|
|
}
|
|
}
|
|
|
|
@@ -1384,13 +1384,13 @@ ipv6cp_script_done(void *arg)
|
|
case s_up:
|
|
if (ipv6cp_fsm[0].state != OPENED) {
|
|
ipv6cp_script_state = s_down;
|
|
- ipv6cp_script(_PATH_IPV6DOWN);
|
|
+ ipv6cp_script(path_ipv6down);
|
|
}
|
|
break;
|
|
case s_down:
|
|
if (ipv6cp_fsm[0].state == OPENED) {
|
|
ipv6cp_script_state = s_up;
|
|
- ipv6cp_script(_PATH_IPV6UP);
|
|
+ ipv6cp_script(path_ipv6up);
|
|
}
|
|
break;
|
|
}
|
|
--- a/pppd/pppd.h
|
|
+++ b/pppd/pppd.h
|
|
@@ -328,6 +328,8 @@ extern int req_unit; /* interface unit n
|
|
extern char path_ipup[MAXPATHLEN]; /* pathname of ip-up script */
|
|
extern char path_ipdown[MAXPATHLEN]; /* pathname of ip-down script */
|
|
extern char req_ifname[MAXIFNAMELEN]; /* interface name to use */
|
|
+extern char path_ipv6up[MAXPATHLEN]; /* pathname of ipv6-up script */
|
|
+extern char path_ipv6down[MAXPATHLEN]; /* pathname of ipv6-down script */
|
|
extern bool multilink; /* enable multilink operation */
|
|
extern bool noendpoint; /* don't send or accept endpt. discrim. */
|
|
extern char *bundle_name; /* bundle name for multilink */
|