mirror of
https://github.com/hackacad/bastille.git
synced 2025-12-21 17:52:01 +01:00
This commit will generate a static MAC address for each jail, based on the name of the jail. It will use the first half (xx:xx:xx) of the host MAC to avoid network clashes, and generate a random HEX string from the hashed name of the jail. It will then add that random 5 character HEX string in MAC format, and add an "a" and "b" for the host and jail respectively. This way a jail can retain it's MAC ID even if it is deleted and reinstalled, as long as the same name is retained.
146 lines
5.4 KiB
Bash
146 lines
5.4 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2018-2023, Christer Edwards <christer.edwards@gmail.com>
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
#
|
|
# * 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.
|
|
#
|
|
# * 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.
|
|
|
|
COLOR_RED=
|
|
COLOR_GREEN=
|
|
COLOR_YELLOW=
|
|
COLOR_RESET=
|
|
|
|
bastille_root_check() {
|
|
if [ "$(id -u)" -ne 0 ]; then
|
|
## permission denied
|
|
error_notify "Bastille: Permission Denied"
|
|
error_exit "root / sudo / doas required"
|
|
fi
|
|
}
|
|
|
|
enable_color() {
|
|
. /usr/local/share/bastille/colors.pre.sh
|
|
}
|
|
|
|
# If "NO_COLOR" environment variable is present, or we aren't speaking to a
|
|
# tty, disable output colors.
|
|
if [ -z "${NO_COLOR}" -a -t 1 ]; then
|
|
enable_color
|
|
fi
|
|
|
|
# Notify message on error, but do not exit
|
|
error_notify() {
|
|
echo -e "${COLOR_RED}$*${COLOR_RESET}" 1>&2
|
|
}
|
|
|
|
# Notify message on error and exit
|
|
error_exit() {
|
|
error_notify $@
|
|
exit 1
|
|
}
|
|
|
|
info() {
|
|
echo -e "${COLOR_GREEN}$*${COLOR_RESET}"
|
|
}
|
|
|
|
warn() {
|
|
echo -e "${COLOR_YELLOW}$*${COLOR_RESET}"
|
|
}
|
|
|
|
generate_vnet_jail_netblock() {
|
|
local jail_name="$1"
|
|
local use_unique_bridge="$2"
|
|
local external_interface="$3"
|
|
## determine number of containers + 1
|
|
## iterate num and grep all jail configs
|
|
## define uniq_epair
|
|
local jail_list=$(bastille list jails)
|
|
if [ -n "${jail_list}" ]; then
|
|
local list_jails_num=$(echo "${jail_list}" | wc -l | awk '{print $1}')
|
|
local num_range=$((list_jails_num + 1))
|
|
for _num in $(seq 0 "${num_range}"); do
|
|
if ! grep -q "e[0-9]b_bastille${_num}" "${bastille_jailsdir}"/*/jail.conf; then
|
|
if ! grep -q "epair${_num}" "${bastille_jailsdir}"/*/jail.conf; then
|
|
local uniq_epair="bastille${_num}"
|
|
local uniq_epair_bridge="${_num}"
|
|
break
|
|
fi
|
|
fi
|
|
done
|
|
else
|
|
local uniq_epair="bastille0"
|
|
local uniq_epair_bridge="0"
|
|
fi
|
|
# generate static MAC for jail using host prefix (first half of host MAC)
|
|
local host_mac_prefix="$(ifconfig ${external_interface} | grep ether | awk '{print $2}' | cut -d':' -f1-3)"
|
|
local jail_mac_suffix="$(echo -n ${jail_name} | sha256 | tr -d '\n' | awk '{print substr($0,length($0)-5,2) ":" substr($0,length($0)-3,2) ":" substr($0,length($0)-1,1)}')"
|
|
if [ -n "${use_unique_bridge}" ]; then
|
|
## generate bridge config
|
|
cat <<-EOF
|
|
vnet;
|
|
vnet.interface = "e${uniq_epair_bridge}b_${jail_name}";
|
|
exec.prestart += "ifconfig epair${uniq_epair_bridge} create";
|
|
exec.prestart += "ifconfig ${external_interface} addm epair${uniq_epair_bridge}a";
|
|
exec.prestart += "ifconfig epair${uniq_epair_bridge}a up name e${uniq_epair_bridge}a_${jail_name}";
|
|
exec.prestart += "ifconfig epair${uniq_epair_bridge}b up name e${uniq_epair_bridge}b_${jail_name}";
|
|
exec.prestart += "ifconfig e${uniq_epair_bridge}a_${jail_name} ether ${host_mac_prefix}:${jail_mac_suffix}a";
|
|
exec.prestart += "ifconfig e${uniq_epair_bridge}b_${jail_name} ether ${host_mac_prefix}:${jail_mac_suffix}b";
|
|
exec.poststop += "ifconfig ${external_interface} deletem e${uniq_epair_bridge}a_${jail_name}";
|
|
exec.poststop += "ifconfig e${uniq_epair_bridge}a_${jail_name} destroy";
|
|
EOF
|
|
else
|
|
## generate config
|
|
cat <<-EOF
|
|
vnet;
|
|
vnet.interface = e0b_${uniq_epair};
|
|
exec.prestart += "jib addm ${uniq_epair} ${external_interface}";
|
|
exec.prestart += "ifconfig e0a_${uniq_epair} description \"vnet host interface for Bastille jail ${jail_name}\"";
|
|
exec.poststop += "jib destroy ${uniq_epair}";
|
|
EOF
|
|
fi
|
|
}
|
|
|
|
checkyesno() {
|
|
## copied from /etc/rc.subr -- cedwards (20231125)
|
|
## issue #368 (lowercase values should be parsed)
|
|
## now used for all bastille_zfs_enable=YES|NO tests
|
|
## example: if checkyesno bastille_zfs_enable; then ...
|
|
## returns 0 for enabled; returns 1 for disabled
|
|
eval _value=\$${1}
|
|
case $_value in
|
|
[Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1)
|
|
return 0
|
|
;;
|
|
[Nn][Oo]|[Ff][Aa][Ll][Ss][Ee]|[Oo][Ff][Ff]|0)
|
|
return 1
|
|
;;
|
|
*)
|
|
warn "\$${1} is not set properly - see rc.conf(5)."
|
|
return 1
|
|
;;
|
|
esac
|
|
}
|