]> git.ipfire.org Git - people/ms/network.git/blame - src/functions/functions.lock
lock: Cleanup lock files
[people/ms/network.git] / src / functions / functions.lock
CommitLineData
8c63fa13
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2012 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
aa96e2b9
MT
22lock() {
23 local lock="${1}"
24 shift
25
2c19aa07
MT
26 # Move locks with name only into lock directory
27 if [ "${lock:0:1}" != "/" ]; then
28 lock="${LOCK_DIR}/${lock}"
29 fi
30
aa96e2b9 31 local timeout="60"
1ed79f54 32 local ret=0
aa96e2b9
MT
33
34 # Make partent directory
35 make_parent_directory "${lock}"
36
37 (
38 log DEBUG "Trying to acquire lock ${lock}"
39
40 # Try to acquire lock on fd 9
41 if ! flock -w "${timeout}" 9; then
42 log ERROR "Failed to acquire lock ${lock} after ${timeout} seconds"
43 exit ${EXIT_ERROR}
44 fi
45
46 log DEBUG "Acquired lock ${lock}"
47
48 # Remember return code
49 ret=${EXIT_OK}
50
51 # Run command
52 "$@" || ret=$?
53
54 log DEBUG "Released lock ${lock}"
55
56 exit ${ret}
1ed79f54
MT
57 ) 9>${lock} || ret=$?
58
59 # Cleanup log file
60 file_delete "${lock}"
61
62 return ${ret}
aa96e2b9 63}