-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall-wpasupplicant.sh
executable file
·206 lines (179 loc) · 5.46 KB
/
install-wpasupplicant.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/bin/bash
# -----------------------------------------------------------------------------
# logging helpers
# -----------------------------------------------------------------------------
function _log {
level=$1
msg=$2
case "$level" in
info)
tag="\e[1;36minfo\e[0m"
;;
err)
tag="\e[1;31merr \e[0m"
;;
warn)
tag="\e[1;33mwarn\e[0m"
;;
ok)
tag="\e[1;32m ok \e[0m"
;;
fail)
tag="\e[1;31mfail\e[0m"
;;
*)
tag=" "
;;
esac
echo -e "`date +%Y-%m-%dT%H:%M:%S` [$tag] $msg"
}
function _err {
msg=$1
_log "err" "$msg"
}
function _warn {
msg=$1
_log "warn" "$msg"
}
function _info {
msg=$1
_log "info" "$msg"
}
function _success {
msg=$1
_log "ok" "$msg"
}
function _fail {
msg=$1
_log "fail" "$msg"
}
# -----------------------------------------------------------------------------
# Checking dependencies
# -----------------------------------------------------------------------------
function check_dependencies {
IFS=':' read -a PATHS <<< "$PATH"
DEPS=("gcc" "git" "dh_autoreconf" "pkg-config" "bison" "flex")
for d in ${DEPS[@]}; do
_info "Looking for '$d'"
found=0
for p in ${PATHS[@]}; do
if [ -f "$p/$d" ]; then
_success "Found '$d' in $p/$d"
found=1
fi
done
if [ $found -eq 0 ]; then
_fail "Missing dependency: $d"
case $d in
"gcc")
_info "On Debian/Ubuntu: apt-get install build-essential"
prompt_installer build-essential
;;
"git")
_info "On Debian/Ubuntu: apt-get install git"
prompt_installer git
;;
"dh_autoreconf")
_info "On Debian/Ubuntu: apt-get install dh-autoreconf"
prompt_installer dh-autoreconf
;;
"pkg-config")
_info "On Debian/Ubuntu: apt-get install pkg-config"
prompt_installer pkg-config
;;
"bison")
_info "On Debian/Ubuntu: apt-get install bison"
prompt_installer bison
;;
"flex")
_info "On Debian/Ubuntu: apt-get install flex"
prompt_installer flex
;;
*)
_info "No suggestions available. Good luck... :-)"
;;
esac
fi
done
}
# -----------------------------------------------------------------------------
# Checking library
# -----------------------------------------------------------------------------
function check_package {
found=$(dpkg -l | grep -c $1)
if [ $found -eq 0 ]; then
_fail "Missing library: $1"
case $1 in
"libssl-dev")
_info "On Debian/Ubuntu: apt-get install libssl-dev"
prompt_installer libssl-dev
;;
"openvswitch-switch")
_info "On Debian/Ubuntu: apt-get install openvswitch-switch"
prompt_installer openvswitch-switch
;;
esac
fi
}
# -----------------------------------------------------------------------------
# Prompt installer
# -----------------------------------------------------------------------------
function prompt_installer {
read -p "Do you want to install it? [Y/n]: " -n 10 CHOICE
case $CHOICE in
y|Y|yes|YES|"")
sudo apt-get install $1
;;
*)
_info "Ok, install it yourself :)"
exit 1
;;
esac
}
# -----------------------------------------------------------------------------
# Main
# -----------------------------------------------------------------------------
#if [ "$0" == "$BASH_SOURCE" ]; then
# _fail "Please source the script -> source install-hostapd.sh"
# exit 1
#fi
KERNEL=$(uname -r | cut -d "." -f 1,2,3 | cut -d "-" -f 1)
KERNEL_MAJOR=$(uname -r | cut -d "." -f 1)
KERNEL_MINOR=$(uname -r | cut -d "." -f 2)
if [[ $KERNEL_MAJOR -lt 4 || $KERNEL_MAJOR -eq 4 && $KERNEL_MINOR -lt 8 ]]; then
_fail "You are running kernel version $KERNEL. Please update to version >= 4.8.0"
else
ROOTDIR=$(pwd)
_info "Check dependencies"
check_dependencies
check_package libssl-dev
if [ ! -d "/opt/libnl" ]; then
_info "Install libnl to /opt/libnl"
cd $HOME
git clone https://github.com/thom311/libnl/
cd libnl
./autogen.sh
./configure --prefix=/opt/libnl --disable-static
make
sudo make install
echo "/opt/libnl/lib" | sudo tee /etc/ld.so.conf.d/libnl.conf
sudo ldconfig
cd $ROOTDIR
else
_warn "Directory /opt/libnl already exists"
fi
_info "Install wpa_supplicant to /usr/local/bin/wpa_supplicant"
sudo cp /usr/src/linux-headers-$(uname -r)/include/uapi/linux/if_macsec.h /usr/include/linux/if_macsec.h
export PKG_CONFIG_PATH=/opt/libnl/lib/pkgconfig
cd wpa_supplicant
make
if [ $? -eq 0 ]; then
sudo cp wpa_supplicant /usr/local/bin/wpa_supplicant
make clean
_info "Setup completed"
else
make clean
_fail "Build failed"
fi
cd $ROOTDIR
fi