From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 4/5] config hooks: hook_parse_cmdline take id as an argument
Date: Sat, 12 Aug 2017 12:22:28 +0200 [thread overview]
Message-ID: <1502533349-13935-4-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1502533349-13935-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3412 bytes --]
All hook_parse_cmdline take now the id as the first argument. This is required because
zone_config_check_same_setting needs the id to ignore the config we edit in the moment.
All hook_parse_cmdline functions are changed to keep the generic hook_edit function working.
Another option was to write an own hook_edit function for the ipv4-static and ipv6-static hook.
But this solution is not easier then to keep things more generic and equal. Makes also maintaining easier.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/hooks/configs/dhcp | 4 ++++
src/hooks/configs/ipv4-static | 7 ++++++-
src/hooks/configs/ipv6-auto | 5 +++++
src/hooks/configs/ipv6-static | 7 ++++++-
src/hooks/configs/pppoe-server | 5 +++++
5 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/src/hooks/configs/dhcp b/src/hooks/configs/dhcp
index 7f6780b..f1c43f3 100644
--- a/src/hooks/configs/dhcp
+++ b/src/hooks/configs/dhcp
@@ -35,6 +35,10 @@ hook_check_config_settings() {
}
hook_parse_cmdline() {
+ local id=${1}
+ shift
+
+ assert isinteger id
while [ $# -gt 0 ]; do
case "${1}" in
--enable-ipv6)
diff --git a/src/hooks/configs/ipv4-static b/src/hooks/configs/ipv4-static
index ef74991..a6b010f 100644
--- a/src/hooks/configs/ipv4-static
+++ b/src/hooks/configs/ipv4-static
@@ -36,6 +36,11 @@ hook_check_config_settings() {
}
hook_parse_cmdline() {
+ local id=${1}
+ shift
+
+ assert isinteger id
+
local arg
while read -r arg; do
@@ -99,7 +104,7 @@ hook_parse_cmdline() {
exit ${EXIT_CONF_ERROR}
fi
- if zone_config_check_same_setting "${zone}" "ipv4-static" "ADDRESS" "${ADDRESS}"; then
+ if zone_config_check_same_setting "${zone}" "ipv4-static" ${id} "ADDRESS" "${ADDRESS}"; then
error "An ipv4-static config with the same IPv4 address is already configured"
exit ${EXIT_CONF_ERROR}
fi
diff --git a/src/hooks/configs/ipv6-auto b/src/hooks/configs/ipv6-auto
index 375e585..e89af28 100644
--- a/src/hooks/configs/ipv6-auto
+++ b/src/hooks/configs/ipv6-auto
@@ -31,6 +31,11 @@ hook_check_config_settings() {
}
hook_parse_cmdline() {
+ local id=${1}
+ shift
+
+ assert isinteger id
+
local arg
while read arg; do
diff --git a/src/hooks/configs/ipv6-static b/src/hooks/configs/ipv6-static
index c41401c..bb75240 100644
--- a/src/hooks/configs/ipv6-static
+++ b/src/hooks/configs/ipv6-static
@@ -34,6 +34,11 @@ hook_check_config_settings() {
}
hook_parse_cmdline() {
+ local id=${1}
+ shift
+
+ assert isinteger id
+
while [ $# -gt 0 ]; do
case "${1}" in
--address=*)
@@ -49,7 +54,7 @@ hook_parse_cmdline() {
shift
done
- if zone_config_check_same_setting "${zone}" "ipv6-static" "ADDRESS" "${ADDRESS}"; then
+ if zone_config_check_same_setting "${zone}" "ipv6-static" ${id} "ADDRESS" "${ADDRESS}"; then
error "An ipv6-static config with the same IPv6 address is already configured"
exit ${EXIT_CONF_ERROR}
fi
diff --git a/src/hooks/configs/pppoe-server b/src/hooks/configs/pppoe-server
index b4d2538..5861e70 100644
--- a/src/hooks/configs/pppoe-server
+++ b/src/hooks/configs/pppoe-server
@@ -49,6 +49,11 @@ hook_check_config_settings() {
}
hook_parse_cmdline() {
+ local id=${1}
+ shift
+
+ assert isinteger id
+
while [ $# -gt 0 ]; do
case "${1}" in
--dns-server=*)
--
2.6.3
next prev parent reply other threads:[~2017-08-12 10:22 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-12 10:22 [PATCH 1/5] zone: zone_config_check_same_setting check for config to edit Jonatan Schlag
2017-08-12 10:22 ` [PATCH 2/5] zone: zone_config_settings_write never generate an id Jonatan Schlag
2017-08-12 10:22 ` [PATCH 3/5] header-config: pass id to hook_parse_cmdline Jonatan Schlag
2017-08-12 10:22 ` Jonatan Schlag [this message]
2017-08-12 10:22 ` [PATCH 5/5] config hook: generate new id inside hook_new Jonatan Schlag
2017-08-13 12:10 ` [PATCH 1/5] zone: zone_config_check_same_setting check for config to edit Michael Tremer
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=1502533349-13935-4-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