]> git.ipfire.org Git - network.git/blame - src/functions/functions.phy
Make the wireless regulatory domain a global configuration option
[network.git] / src / functions / functions.phy
CommitLineData
590cb657
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 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
22PHY_DIR="/sys/class/ieee80211"
23
24function phy_dir() {
25 local phy=${1}
26
27 echo "${PHY_DIR}/${phy}"
28}
29
30function phy_exists() {
31 local phy=${1}
32 assert isset phy
33
34 [ -d "$(phy_dir ${phy})" ]
35}
36
37function phy_list() {
38 local phy
39
40 for phy in $(phy_dir)/*; do
41 [ -d "${phy}" ] || continue
42
43 basename ${phy}
44 done
45}
46
47function phy_get() {
48 local info=${1}
590cb657
MT
49 local phy
50
51 if listmatch ${info} $(phy_list); then
52 phy="${info}"
53 elif device_exists ${info}; then
54 info=$(device_get_address ${info})
55 fi
56
57 if [ -z "${phy}" ] && mac_is_valid ${info}; then
58 local i
59 for i in $(phy_list); do
60 if [ "${info}" = "$(phy_get_address ${i})" ]; then
61 phy=${i}
62 break
63 fi
64 done
65 fi
66
31670741
MT
67 log DEBUG "Searching for phy = ${info}, found ${phy:-none}"
68
590cb657
MT
69 if [ -z "${phy}" ]; then
70 return ${EXIT_ERROR}
71 fi
72
73 echo "${phy}"
74 return ${EXIT_OK}
75}
76
77function phy_get_address() {
78 local phy=${1}
79 assert isset phy
80
81 local path="$(phy_dir ${phy})/macaddress"
82 [ -r "${path}" ] || return ${EXIT_ERROR}
83
84 print "$(<${path})"
85}