#!/bin/sh
# SPDX-License-Identifier: AGPL-3.0-or-later
# Copyright (C) 2026 Chester A. Unal <chester.a.unal@arinc9.com>

# Only run if an MBIM or QMI network interface is being added.
[ "$ACTION" = "add" ] && cur_proto=$(grep "^DRIVER=" /sys${DEVPATH%/*/*}/uevent | grep -oE "mbim|qmi") || exit

# Find the device path.
if echo "$DEVPATH" | grep -q usb; then
	devpath=/sys"${DEVPATH%/*/*/*}"
elif echo "$DEVPATH" | grep -q mhi; then
	devpath=/sys"${DEVPATH%/*/*/*/*/*}"
else
	devpath=/sys"${DEVPATH%/*/*/*/*}"
fi

uci_network=$(uci show network)

# Delete the interface name if it's already set somewhere.
device_section=$(echo "$uci_network" | grep ".device='$DEVICENAME'" | cut -d. -f2)
if [ -n "$device_section" ]; then
	uci delete network.$device_section.device
	uci commit network
fi

# If a network with the device path already exists, set the interface name and
# control model to the current detected one, bring up the network, and exit.
# Setting the interface name is solely for the ease of matching the network to
# the corresponding interface.
section=$(echo "$uci_network" | grep ".devpath='$devpath'" | cut -d. -f2)
if [ -n "$section" ]; then
	uci set network.$section.device="$DEVICENAME"
	uci set network.$section.proto="$cur_proto"
	uci commit network
	ifup $section
	exit
fi

# Decide on the metric value. Start from 1 and work up to 8.
metric=1
while [ $metric -le 8 ]; do
	# Break if this metric isn't in use.
	echo "$uci_network" | grep -q ".metric='$metric'" || break

	# Add 1 to metric if another network uses this metric.
	metric=$((metric + 1))
done
# Exit if there are no available metrics.
[ "$metric" -gt 8 ] && exit

# Decide on the network name. Start from wwan1.
index=1
while echo "$uci_network" | grep -q "wwan$index"; do
	index=$((index + 1))
done

uci set network.wwan$index=interface
uci set network.wwan$index.device="$DEVICENAME"
uci set network.wwan$index.devpath="$devpath"
uci set network.wwan$index.proto="$cur_proto"
uci set network.wwan$index.apn='internet'
uci set network.wwan$index.metric="$metric"

# Add wwan network entry to firewall wan zone.
fw_section=$(uci show firewall | grep "name='wan'" | cut -d. -f2)
[ -n "$fw_section" ] && uci add_list firewall.$fw_section.network="wwan$index"

uci commit
service firewall reload
ifup wwan$index
