1#!/bin/bash 2# 3# Copyright (c) 2017, The OpenThread Authors. 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are met: 8# 1. Redistributions of source code must retain the above copyright 9# notice, this list of conditions and the following disclaimer. 10# 2. Redistributions in binary form must reproduce the above copyright 11# notice, this list of conditions and the following disclaimer in the 12# documentation and/or other materials provided with the distribution. 13# 3. Neither the name of the copyright holder nor the 14# names of its contributors may be used to endorse or promote products 15# derived from this software without specific prior written permission. 16# 17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27# POSSIBILITY OF SUCH DAMAGE. 28# 29# Description: 30# This script starts all border router services. 31# 32 33# shellcheck source=script/_initrc 34. "$(dirname "$0")"/_initrc 35. script/_nat64 36. script/_dns64 37. script/_firewall 38 39startup() 40{ 41 # shellcheck source=/dev/null 42 . "$BEFORE_HOOK" 43 sudo sysctl --system 44 nat64_start || die 'Failed to start NAT64!' 45 dns64_start || die 'Failed to start DNS64!' 46 firewall_start || die 'Failed to start firewall' 47 if have systemctl; then 48 systemctl is-active rsyslog || sudo systemctl start rsyslog || die 'Failed to start rsyslog!' 49 systemctl is-active dbus || sudo systemctl start dbus || die 'Failed to start dbus!' 50 systemctl is-active avahi-daemon || sudo systemctl start avahi-daemon || die 'Failed to start avahi!' 51 without WEB_GUI || systemctl is-active otbr-web || sudo systemctl start otbr-web || die 'Failed to start otbr-web!' 52 systemctl is-active otbr-agent || sudo systemctl start otbr-agent || die 'Failed to start otbr-agent!' 53 elif have service; then 54 sudo service rsyslog status || sudo service rsyslog start || die 'Failed to start rsyslog!' 55 sudo service dbus status || sudo service dbus start || die 'Failed to start dbus!' 56 # Tolerate the mdns failure as it is installed for only CI docker. 57 sudo service mdns status || sudo service mdns start || echo "service mdns is not available!" 58 sudo service avahi-daemon status || sudo service avahi-daemon start || die 'Failed to start avahi!' 59 sudo service otbr-agent status || sudo service otbr-agent start || die 'Failed to start otbr-agent!' 60 without WEB_GUI || sudo service otbr-web status || sudo service otbr-web start || die 'Failed to start otbr-web!' 61 else 62 die 'Unable to find service manager. Try script/console to start in console mode!' 63 fi 64 # shellcheck source=/dev/null 65 . "$AFTER_HOOK" 66} 67 68shutdown() 69{ 70 nat64_stop || echo 'Failed to stop NAT64!' 71 dns64_stop || echo 'Failed to stop DNS64!' 72 firewall_stop || echo 'Failed to stop firewall' 73 if have systemctl; then 74 systemctl is-active rsyslog && sudo systemctl stop rsyslog || echo 'Failed to stop rsyslog!' 75 systemctl is-active dbus && sudo systemctl stop dbus || echo 'Failed to stop dbus!' 76 systemctl is-active avahi-daemon && sudo systemctl stop avahi-daemon || echo 'Failed to stop avahi!' 77 without WEB_GUI || systemctl is-active otbr-web && sudo systemctl stop otbr-web || echo 'Failed to stop otbr-web!' 78 systemctl is-active otbr-agent && sudo systemctl stop otbr-agent || echo 'Failed to stop otbr-agent!' 79 elif have service; then 80 sudo service rsyslog status && sudo service rsyslog stop || echo 'Failed to stop rsyslog!' 81 sudo service dbus status && sudo service dbus stop || echo 'Failed to stop dbus!' 82 sudo service mdns status && sudo service mdns stop || echo "service mdns is not available!" 83 sudo service avahi-daemon status && sudo service avahi-daemon stop || echo 'Failed to stop avahi!' 84 sudo service otbr-agent status && sudo service otbr-agent stop || echo 'Failed to stop otbr-agent!' 85 without WEB_GUI || sudo service otbr-web status && sudo service otbr-web stop || echo 'Failed to stop otbr-web!' 86 else 87 echo 'Unable to find service manager. Try script/console to stop in console mode!' 88 fi 89} 90 91main() 92{ 93 if [[ ${1-} == "shutdown" ]]; then 94 shift 95 shutdown "$@" 96 else 97 startup "$@" 98 fi 99} 100 101main "$@" 102