From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 7/7] Add editor functions Date: Wed, 21 Jun 2017 14:07:14 +0200 Message-ID: <1498046834-13674-7-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1498046834-13674-5-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0786139487007703041==" List-Id: --===============0786139487007703041== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- Makefile.am | 1 + src/functions/functions.editor | 149 +++++++++++++++++++++++++++++++++++++++= ++ 2 files changed, 150 insertions(+) create mode 100644 src/functions/functions.editor diff --git a/Makefile.am b/Makefile.am index 61c520c..32e7166 100644 --- a/Makefile.am +++ b/Makefile.am @@ -121,6 +121,7 @@ dist_network_SCRIPTS =3D \ src/functions/functions.distro \ src/functions/functions.dns \ src/functions/functions.dummy \ + src/functions/functions.editor \ src/functions/functions.ethernet \ src/functions/functions.firewall \ src/functions/functions.firewall-policy \ diff --git a/src/functions/functions.editor b/src/functions/functions.editor new file mode 100644 index 0000000..f362a6f --- /dev/null +++ b/src/functions/functions.editor @@ -0,0 +1,149 @@ +#!/bin/bash +############################################################################= ### +# = # +# IPFire.org - A linux based firewall = # +# Copyright (C) 2017 IPFire Network Development Team = # +# = # +# This program is free software: you can redistribute it and/or modify = # +# it under the terms of the GNU General Public License as published by = # +# the Free Software Foundation, either version 3 of the License, or = # +# (at your option) any later version. = # +# = # +# This program is distributed in the hope that it will be useful, = # +# but WITHOUT ANY WARRANTY; without even the implied warranty of = # +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the = # +# GNU General Public License for more details. = # +# = # +# You should have received a copy of the GNU General Public License = # +# along with this program. If not, see . = # +# = # +############################################################################= ### + +editor_cleanup() { + # Cleanup after a file was edited + assert [ $# -eq 2 ] + + local file=3D${1} + local temp_file=3D${2} + + lock_release "${file}.lock" + rm -f ${temp_file} +} + +editor_find_best() { + # Open a file with the best available editor + assert [ $# -eq 1 ] + + local file=3D${1} + local ret + + for editor in ${EDITOR} vim vi; do + ${editor} "${file}" + ret=3D${?} + + case "${ret}" in + ${EXIT_OK}) + return ${EXIT_OK} + ;; + + ${EXIT_COMMAND_NOT_FOUND}) + continue + ;; + + *) + return ${ret} + ;; + esac + done + + error "Unable to find a working editor" + + return ${EXIT_COMMAND_NOT_FOUND} +} + +editor() { + # This function open a file for editing and take care of all preperation an= d postprocessing + assert [ $# -ge 1 ] + + local file=3D${1} + if [ ! -f ${file} ] || [ ! -w ${file} ]; then + error "${file} is not valid file or is not writeable" + return ${EXIT_ERROR} + fi + + local check_func=3D${2} + + # check if the file is locked + if lock_exists "${file}.lock"; then + error "Cannot edit ${file} because it is locked" + return ${EXIT_ERROR} + fi + + # lock the file + if ! lock_acquire "${file}.lock"; then + error "Cannot lock file ${file}" + return ${EXIT_ERROR} + fi + + # create a temporary file + local temp_file=3D$(mktemp) + + if ! [ -f "${temp_file}" ]; then + error "Cannot create temporary file" + fi + + # copy the content into this temporary file + cp -f "${file}" "${temp_file}" + + # edit the file + if ! editor_find_best "${temp_file}"; then + error "Could not edit ${file}" + # cleanup + editor_cleanup "${file}" "${temp_file}" + fi + + # run the check if we have one + if isset check_func && ! editor_check "${check_func}" "${temp_file}"; then + return ${EXIT_ERROR} + fi + + # copy the changes back + cp -f "${temp_file}" "${file}" + + # cleanup + editor_cleanup "${file}" "${temp_file}" + +} + +editor_check() { + # Execute the check function to make sure that the changes does not break a= nything + local check_func=3D"${1}" + shift + + # Execute the check function + "${check_func}" $@ + local ret=3D"${?}" + + case "${ret}" in + # OK + ${EXIT_OK}|${EXIT_TRUE}) + log DEBUG "Check succeeded" + return ${EXIT_TRUE} + ;; + + # Error + ${EXIT_ERROR}|${EXIT_FALSE}) + log CRITICAL "Check failed" + return ${EXIT_FALSE} + ;; + + # Command not found + ${EXIT_COMMAND_NOT_FOUND}) + log CRITICAL "Check function '${check_func}' was not found" + return ${EXIT_FALSE} + ;; + esac + + log CRITICAL "Unhandled exit code for '${check_func}': ${ret}" + return ${EXIT_ERROR} +} --=20 2.6.3 --===============0786139487007703041==--