From 5f363d93c5f6ec011ac3d63b6e15be23e27ecdb7 Mon Sep 17 00:00:00 2001 From: Beginner <70857188+Beginner-Go@users.noreply.github.com> Date: Wed, 1 Dec 2021 21:32:23 +0800 Subject: [PATCH] luci-proto-mbim: add new package (#85) Co-authored-by: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> --- protocols/luci-proto-mbim/Makefile | 15 ++++++ .../model/cbi/admin_network/proto_mbim.lua | 40 ++++++++++++++ .../luasrc/model/network/proto_mbim.lua | 53 +++++++++++++++++++ 3 files changed, 108 insertions(+) create mode 100644 protocols/luci-proto-mbim/Makefile create mode 100644 protocols/luci-proto-mbim/luasrc/model/cbi/admin_network/proto_mbim.lua create mode 100644 protocols/luci-proto-mbim/luasrc/model/network/proto_mbim.lua diff --git a/protocols/luci-proto-mbim/Makefile b/protocols/luci-proto-mbim/Makefile new file mode 100644 index 00000000..f81bbb9e --- /dev/null +++ b/protocols/luci-proto-mbim/Makefile @@ -0,0 +1,15 @@ +# +# Copyright (C) 2008-2014 The LuCI Team +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI support for MBIM +LUCI_DEPENDS:=+umbim +LUCI_PKGARCH:=all + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/protocols/luci-proto-mbim/luasrc/model/cbi/admin_network/proto_mbim.lua b/protocols/luci-proto-mbim/luasrc/model/cbi/admin_network/proto_mbim.lua new file mode 100644 index 00000000..6d5387c6 --- /dev/null +++ b/protocols/luci-proto-mbim/luasrc/model/cbi/admin_network/proto_mbim.lua @@ -0,0 +1,40 @@ +-- Copyright 2016 David Thornley +-- Licensed to the public under the Apache License 2.0. + +local map, section, net = ... + +local device, apn, pincode, username, password +local auth, ipv6 + +device = section:taboption("general", Value, "device", translate("Modem device")) +device.rmempty = false + +local device_suggestions = nixio.fs.glob("/dev/cdc-wdm*") + +if device_suggestions then + local node + for node in device_suggestions do + device:value(node) + end +end + +apn = section:taboption("general", Value, "apn", translate("APN")) + +pincode = section:taboption("general", Value, "pincode", translate("PIN")) + +username = section:taboption("general", Value, "username", translate("PAP/CHAP username")) + +password = section:taboption("general", Value, "password", translate("PAP/CHAP password")) +password.password = true + +auth = section:taboption("general", Value, "auth", translate("Authentication Type")) +auth:value("", translate("-- Please choose --")) +auth:value("both", "PAP/CHAP (both)") +auth:value("pap", "PAP") +auth:value("chap", "CHAP") +auth:value("none", "NONE") + +if luci.model.network:has_ipv6() then + ipv6 = section:taboption("advanced", Flag, "ipv6", translate("Enable IPv6 negotiation")) + ipv6.default = ipv6.disabled +end diff --git a/protocols/luci-proto-mbim/luasrc/model/network/proto_mbim.lua b/protocols/luci-proto-mbim/luasrc/model/network/proto_mbim.lua new file mode 100644 index 00000000..3972039c --- /dev/null +++ b/protocols/luci-proto-mbim/luasrc/model/network/proto_mbim.lua @@ -0,0 +1,53 @@ +-- Copyright 2016 David Thornley +-- Licensed to the public under the Apache License 2.0. + +local netmod = luci.model.network +local interface = luci.model.network.interface +local proto = netmod:register_protocol("mbim") + +function proto.get_i18n(self) + return luci.i18n.translate("MBIM") +end + +function proto.ifname(self) + local base = netmod._M.protocol + local ifname = base.ifname(self) + -- call base class "protocol.ifname(self)" + + -- Note: ifname might be nil if the adapter could not be determined + -- through ubus (default name to qmi-wan in this case) + if ifname == nil then + ifname = "mbim-" .. self.sid + end + return ifname +end + +function proto.get_interface(self) + return interface(self:ifname(), self) +end + +function proto.opkg_package(self) + return "umbim" +end + +function proto.is_installed(self) + return nixio.fs.access("/lib/netifd/proto/mbim.sh") +end + +function proto.is_floating(self) + return true +end + +function proto.is_virtual(self) + return true +end + +function proto.get_interfaces(self) + return nil +end + +function proto.contains_interface(self, ifc) + return (netmod:ifnameof(ifc) == self:ifname()) +end + +netmod:register_pattern_virtual("^mbim-%w")