-
Notifications
You must be signed in to change notification settings - Fork 239
/
Copy path_otbr
172 lines (151 loc) · 5.12 KB
/
_otbr
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
#!/bin/bash
#
# Copyright (c) 2017, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
OTBR_TOP_BUILDDIR="${BUILD_DIR}/otbr"
readonly OTBR_TOP_BUILDDIR
OTBR_OPTIONS="${OTBR_OPTIONS-}"
readonly OTBR_OPTIONS
REFERENCE_DEVICE="${REFERENCE_DEVICE:-0}"
readonly REFERENCE_DEVICE
otbr_uninstall()
{
if have systemctl; then
sudo systemctl stop otbr-web || true
sudo systemctl stop otbr-agent || true
sudo systemctl disable otbr-web || true
sudo systemctl disable otbr-agent || true
! sudo systemctl is-enabled otbr-web
! sudo systemctl is-enabled otbr-agent
fi
sudo killall otbr-web otbr-agent || true
(
if cd "${OTBR_TOP_BUILDDIR}"; then
# shellcheck disable=SC2024
sudo xargs rm <install_manifests.txt || true
fi
)
if have systemctl; then
sudo systemctl daemon-reload
fi
}
otbr_install()
{
local otbr_options=()
if [[ ${OTBR_OPTIONS} ]]; then
read -r -a otbr_options <<<"${OTBR_OPTIONS}"
fi
otbr_options=(
"-DBUILD_TESTING=OFF"
"-DCMAKE_INSTALL_PREFIX=/usr"
"-DOTBR_DBUS=ON"
"-DOTBR_DNSSD_DISCOVERY_PROXY=ON"
"-DOTBR_SRP_ADVERTISING_PROXY=ON"
"-DOTBR_INFRA_IF_NAME=${INFRA_IF_NAME}"
"-DOTBR_MDNS=${OTBR_MDNS:=mDNSResponder}"
# Force re-evaluation of version strings
"-DOTBR_VERSION="
"-DOT_PACKAGE_VERSION="
"${otbr_options[@]}"
)
if with WEB_GUI; then
otbr_options+=("-DOTBR_WEB=ON")
fi
if with BORDER_ROUTING; then
otbr_options+=(
"-DOTBR_BORDER_ROUTING=ON"
)
fi
if with DHCPV6_PD_REF; then
otbr_options+=(
"-DOTBR_DHCP6_PD=ON"
)
fi
if with REST_API; then
otbr_options+=("-DOTBR_REST=ON")
fi
if with BACKBONE_ROUTER; then
otbr_options+=(
"-DOTBR_BACKBONE_ROUTER=ON"
)
if [[ ${REFERENCE_DEVICE} == "1" ]]; then
otbr_options+=(
"-DOTBR_DUA_ROUTING=ON"
)
fi
fi
if [[ ${REFERENCE_DEVICE} == "1" ]]; then
otbr_options+=(
"-DOTBR_NO_AUTO_ATTACH=1"
"-DOT_REFERENCE_DEVICE=ON"
"-DOT_DHCP6_CLIENT=ON"
"-DOT_DHCP6_SERVER=ON"
)
fi
if with NAT64 && [[ ${NAT64_SERVICE-} == "openthread" ]]; then
otbr_options+=(
"-DOTBR_NAT64=ON"
"-DOT_POSIX_NAT64_CIDR=${NAT64_DYNAMIC_POOL:-192.168.255.0/24}"
)
fi
if with NAT64; then
otbr_options+=(
"-DOTBR_DNS_UPSTREAM_QUERY=ON"
)
fi
if with FIREWALL; then
otbr_options+=(
"-DOT_FIREWALL=ON"
)
else
otbr_options+=(
"-DOT_FIREWALL=OFF"
)
fi
(./script/cmake-build "${otbr_options[@]}" \
&& cd "${OTBR_TOP_BUILDDIR}" \
&& ninja \
&& sudo ninja install)
if have systemctl; then
sudo systemctl reload dbus
sudo systemctl daemon-reload
without WEB_GUI || sudo systemctl enable otbr-web || true
sudo systemctl enable otbr-agent || true
sudo systemctl is-enabled otbr-agent || die 'Failed to enable otbr-agent!'
without WEB_GUI || sudo systemctl is-enabled otbr-web || die 'Failed to enable otbr-web!'
if [[ ${REFERENCE_DEVICE} == "1" ]]; then
sudo systemctl enable testharness-discovery || true
sudo systemctl is-enabled testharness-discovery || die 'Failed to enable otbr-agent!'
fi
else
echo >&2 ' *** WARNING: systemctl not found. otbr cannot start on boot.'
fi
}
otbr_update()
{
otbr_install
}