From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 5/5] ip-tunnel: choose the correct type based on the ip protocol
Date: Sun, 04 Mar 2018 18:24:59 +0000 [thread overview]
Message-ID: <1520187899-5759-5-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1520187899-5759-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1516 bytes --]
IPv4 and IPv6 need different types for iproute2.
So in the _add function we have to determine the mode
based on the IP protocol of the ${remote_address}.
When we change ikey and okey we have to dertermine the mode the device
have currently.
Fixes: #11431
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/functions/functions.ip-tunnel | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git a/src/functions/functions.ip-tunnel b/src/functions/functions.ip-tunnel
index 0a0c210..3baf280 100644
--- a/src/functions/functions.ip-tunnel
+++ b/src/functions/functions.ip-tunnel
@@ -150,6 +150,9 @@ ip_tunnel_add() {
cmd_args="${cmd_args} ikey ${ikey} okey ${okey}"
fi
+ # Determine the mode based on the IP protocol
+ mode=$(ip_tunnel_convert_mode_to_iproute2_mode "${mode}" "${remote_address_protocol}")
+
log DEBUG "Creating tunnel device '${device}' (mode=${mode})..."
# Create the device.
@@ -208,8 +211,16 @@ ip_tunnel_change_keys() {
return ${EXIT_ERROR}
fi
+ # Determine the device type
+ local type="$(device_tunnel_get_type ${device})"
+
+ if ! isoneof "type" vti vti6; then
+ log ERROR "Device type '${type}' is invalid"
+ return ${EXIT_ERROR}
+ fi
+
if ! cmd ip link change dev "${device}" \
- type vti ikey "${ikey}" okey "${okey}"; then
+ type "${type}" ikey "${ikey}" okey "${okey}"; then
log ERROR "Could not change keys of device ${device}"
return ${EXIT_ERROR}
fi
--
2.6.3
prev parent reply other threads:[~2018-03-04 18:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-04 18:24 [PATCH 1/5] ip-tunnel: add new function Jonatan Schlag
2018-03-04 18:24 ` [PATCH 2/5] device: add new function device_is_vti6 Jonatan Schlag
2018-03-04 18:24 ` [PATCH 3/5] device: add new function device_tunnel_get_type() Jonatan Schlag
2018-03-04 18:24 ` [PATCH 4/5] ip-tunnel: Improve checks Jonatan Schlag
2018-03-04 18:24 ` Jonatan Schlag [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1520187899-5759-5-git-send-email-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox