chiark / gitweb /
Makefile: add tar-sync
[elogind.git] / extras / rule_generator / rule_generator.functions
1 # functions used by the udev rule generator
2
3 # Copyright (C) 2006 Marco d'Itri <md@Linux.IT>
4
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 2 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 PATH='/sbin:/bin'
19 #
20
21 PATH='/sbin:/bin'
22
23 # Read a single line from file $1 in the $DEVPATH directory.
24 # The function must not return an error even if the file does not exist.
25 sysread() {
26         local file="$1"
27         [ -e "/sys$DEVPATH/$file" ] || return 0
28         local value
29         read value < "/sys$DEVPATH/$file" || return 0
30         echo "$value"
31 }
32
33 sysreadlink() {
34         local file="$1"
35         [ -e "/sys$DEVPATH/$file" ] || return 0
36         readlink -f /sys$DEVPATH/$file 2> /dev/null || true
37 }
38
39 # Return true if a directory is writeable.
40 writeable() {
41         if ln -s test-link $1/.is-writeable 2> /dev/null; then
42                 rm -f $1/.is-writeable
43                 return 0
44         else
45                 return 1
46         fi
47 }
48
49 # Create a lock file for the current rules file.
50 lock_rules_file() {
51         RUNDIR=$(udevadm info --run)
52         [ -e "$RUNDIR" ] || return 0
53
54         RULES_LOCK="$RUNDIR/.lock-${RULES_FILE##*/}"
55
56         retry=30
57         while ! mkdir $RULES_LOCK 2> /dev/null; do
58                 if [ $retry -eq 0 ]; then
59                          echo "Cannot lock $RULES_FILE!" >&2
60                          exit 2
61                 fi
62                 sleep 1
63                 retry=$(($retry - 1))
64         done
65 }
66
67 unlock_rules_file() {
68         [ "$RULES_LOCK" ] || return 0
69         rmdir $RULES_LOCK || true
70 }
71
72 # Choose the real rules file if it is writeable or a temporary file if not.
73 # Both files should be checked later when looking for existing rules.
74 choose_rules_file() {
75         RUNDIR=$(udevadm info --run)
76         local tmp_rules_file="$RUNDIR/tmp-rules--${RULES_FILE##*/}"
77         [ -e "$RULES_FILE" -o -e "$tmp_rules_file" ] || PRINT_HEADER=1
78
79         if writeable ${RULES_FILE%/*}; then
80                 RO_RULES_FILE='/dev/null'
81         else
82                 RO_RULES_FILE=$RULES_FILE
83                 RULES_FILE=$tmp_rules_file
84         fi
85 }
86
87 # Return the name of the first free device.
88 raw_find_next_available() {
89         local links="$1"
90
91         local basename=${links%%[ 0-9]*}
92         local max=-1
93         for name in $links; do
94                 local num=${name#$basename}
95                 [ "$num" ] || num=0
96                 [ $num -gt $max ] && max=$num
97         done
98
99         local max=$(($max + 1))
100         # "name0" actually is just "name"
101         [ $max -eq 0 ] && return
102         echo "$max"
103 }
104
105 # Find all rules matching a key (with action) and a pattern.
106 find_all_rules() {
107         local key="$1"
108         local linkre="$2"
109         local match="$3"
110
111         local search='.*[[:space:],]'"$key"'"('"$linkre"')".*'
112         echo $(sed -n -r -e 's/^#.*//' -e "${match}s/${search}/\1/p" \
113                 $RO_RULES_FILE \
114                 $([ -e $RULES_FILE ] && echo $RULES_FILE) \
115                 2>/dev/null)
116 }