You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

413 lines
12 KiB

  1. #!/bin/sh
  2. # Copyright (C) 2016-2019 Aleksander Morgado <aleksander@aleksander.es>
  3. [ -x /usr/bin/mmcli ] || exit 0
  4. [ -x /usr/sbin/pppd ] || exit 0
  5. [ -n "$INCLUDE_ONLY" ] || {
  6. . /lib/functions.sh
  7. . ../netifd-proto.sh
  8. . ./ppp.sh
  9. init_proto "$@"
  10. }
  11. cdr2mask ()
  12. {
  13. # Number of args to shift, 255..255, first non-255 byte, zeroes
  14. set -- $(( 5 - ($1 / 8) )) 255 255 255 255 $(( (255 << (8 - ($1 % 8))) & 255 )) 0 0 0
  15. if [ "$1" -gt 1 ]
  16. then
  17. shift "$1"
  18. else
  19. shift
  20. fi
  21. echo "${1-0}"."${2-0}"."${3-0}"."${4-0}"
  22. }
  23. # This method expects as first argument a list of key-value pairs, as returned by mmcli --output-keyvalue
  24. # The second argument must be exactly the name of the field to read
  25. #
  26. # Sample output:
  27. # $ mmcli -m 0 -K
  28. # modem.dbus-path : /org/freedesktop/ModemManager1/Modem/0
  29. # modem.generic.device-identifier : ed6eff2e3e0f90463da1c2a755b2acacd1335752
  30. # modem.generic.manufacturer : Dell Inc.
  31. # modem.generic.model : DW5821e Snapdragon X20 LTE
  32. # modem.generic.revision : T77W968.F1.0.0.4.0.GC.009\n026
  33. # modem.generic.carrier-configuration : GCF
  34. # modem.generic.carrier-configuration-revision : 08E00009
  35. # modem.generic.hardware-revision : DW5821e Snapdragon X20 LTE
  36. # ....
  37. modemmanager_get_field() {
  38. local list=$1
  39. local field=$2
  40. local value=""
  41. [ -z "${list}" ] || [ -z "${field}" ] && return
  42. # there is always at least a whitespace after each key, and we use that as part of the
  43. # key matching we do (e.g. to avoid getting 'modem.generic.state-failed-reason' as a result
  44. # when grepping for 'modem.generic.state'.
  45. line=$(echo "${list}" | grep "${field} ")
  46. value=$(echo ${line#*:})
  47. # not found?
  48. [ -n "${value}" ] || return 2
  49. # only print value if set
  50. [ "${value}" != "--" ] && echo "${value}"
  51. return 0
  52. }
  53. # build a comma-separated list of values from the list
  54. modemmanager_get_multivalue_field() {
  55. local list=$1
  56. local field=$2
  57. local value=""
  58. local length idx item
  59. [ -z "${list}" ] || [ -z "${field}" ] && return
  60. length=$(modemmanager_get_field "${list}" "${field}.length")
  61. [ -n "${length}" ] || return 0
  62. [ "$length" -ge 1 ] || return 0
  63. idx=1
  64. while [ $idx -le "$length" ]; do
  65. item=$(modemmanager_get_field "${list}" "${field}.value\[$idx\]")
  66. [ -n "${item}" ] && [ "${item}" != "--" ] && {
  67. [ -n "${value}" ] && value="${value}, "
  68. value="${value}${item}"
  69. }
  70. idx=$((idx + 1))
  71. done
  72. # nothing built?
  73. [ -n "${value}" ] || return 2
  74. # only print value if set
  75. echo "${value}"
  76. return 0
  77. }
  78. modemmanager_cleanup_connection() {
  79. local modemstatus="$1"
  80. local bearercount idx bearerpath
  81. bearercount=$(modemmanager_get_field "${modemstatus}" "modem.generic.bearers.length")
  82. # do nothing if no bearers reported
  83. [ -n "${bearercount}" ] && [ "$bearercount" -ge 1 ] && {
  84. # explicitly disconnect just in case
  85. mmcli --modem="${device}" --simple-disconnect >/dev/null 2>&1
  86. # and remove all bearer objects, if any found
  87. idx=1
  88. while [ $idx -le "$bearercount" ]; do
  89. bearerpath=$(modemmanager_get_field "${modemstatus}" "modem.generic.bearers.value\[$idx\]")
  90. mmcli --modem "${device}" --delete-bearer="${bearerpath}" >/dev/null 2>&1
  91. idx=$((idx + 1))
  92. done
  93. }
  94. }
  95. modemmanager_connected_method_ppp() {
  96. local interface="$1"
  97. local ttyname="$2"
  98. local username="$3"
  99. local password="$4"
  100. proto_run_command "${interface}" /usr/sbin/pppd \
  101. "${ttyname}" \
  102. 115200 \
  103. nodetach \
  104. noaccomp \
  105. nobsdcomp \
  106. nopcomp \
  107. novj \
  108. noauth \
  109. ${username:+ user $username} \
  110. ${password:+ password $password} \
  111. lcp-echo-failure 5 \
  112. lcp-echo-interval 15 \
  113. lock \
  114. crtscts \
  115. nodefaultroute \
  116. usepeerdns \
  117. ipparam "${interface}" \
  118. ip-up-script /lib/netifd/ppp-up \
  119. ip-down-script /lib/netifd/ppp-down
  120. }
  121. modemmanager_disconnected_method_ppp() {
  122. local interface="$1"
  123. echo "running disconnection (ppp method)"
  124. [ -n "${ERROR}" ] && {
  125. local errorstring
  126. errorstring=$(ppp_exitcode_tostring "${ERROR}")
  127. case "$ERROR" in
  128. 0)
  129. ;;
  130. 2)
  131. proto_notify_error "$interface" "$errorstring"
  132. proto_block_restart "$interface"
  133. ;;
  134. *)
  135. proto_notify_error "$interface" "$errorstring"
  136. ;;
  137. esac
  138. } || echo "pppd result code not given"
  139. proto_kill_command "$interface"
  140. }
  141. modemmanager_connected_method_dhcp() {
  142. local interface="$1"
  143. local wwan="$2"
  144. local metric="$3"
  145. proto_init_update "${wwan}" 1
  146. proto_send_update "${interface}"
  147. json_init
  148. json_add_string name "${interface}_4"
  149. json_add_string ifname "@${interface}"
  150. json_add_string proto "dhcp"
  151. [ -n "$metric" ] && json_add_int metric "${metric}"
  152. ubus call network add_dynamic "$(json_dump)"
  153. }
  154. modemmanager_disconnected_method_dhcp() {
  155. local interface="$1"
  156. echo "running disconnection (dhcp method)"
  157. proto_init_update "*" 0
  158. proto_send_update "${interface}"
  159. }
  160. modemmanager_connected_method_static() {
  161. local interface="$1"
  162. local wwan="$2"
  163. local address="$3"
  164. local prefix="$4"
  165. local gateway="$5"
  166. local mtu="$6"
  167. local dns1="$7"
  168. local dns2="$8"
  169. local metric="$9"
  170. local mask=""
  171. [ -n "${address}" ] || {
  172. proto_notify_error "${interface}" ADDRESS_MISSING
  173. return
  174. }
  175. [ -n "${prefix}" ] || {
  176. proto_notify_error "${interface}" PREFIX_MISSING
  177. return
  178. }
  179. mask=$(cdr2mask "${prefix}")
  180. # TODO: mtu reporting in proto handler
  181. proto_init_update "${wwan}" 1
  182. echo "adding IPv4 address ${address}, netmask ${mask}"
  183. proto_add_ipv4_address "${address}" "${mask}"
  184. [ -n "${gateway}" ] && {
  185. echo "adding default IPv4 route via ${gateway}"
  186. proto_add_ipv4_route "0.0.0.0" "0" "${gateway}" "${address}"
  187. }
  188. [ -n "${dns1}" ] && {
  189. echo "adding primary DNS at ${dns1}"
  190. proto_add_dns_server "${dns1}"
  191. }
  192. [ -n "${dns2}" ] && {
  193. echo "adding secondary DNS at ${dns2}"
  194. proto_add_dns_server "${dns2}"
  195. }
  196. [ -n "$metric" ] && json_add_int metric "${metric}"
  197. proto_send_update "${interface}"
  198. }
  199. modemmanager_disconnected_method_static() {
  200. local interface="$1"
  201. echo "running disconnection (static method)"
  202. proto_init_update "*" 0
  203. proto_send_update "${interface}"
  204. }
  205. proto_modemmanager_init_config() {
  206. proto_config_add_string "device:device"
  207. proto_config_add_string apn
  208. proto_config_add_string username
  209. proto_config_add_string password
  210. proto_config_add_string pincode
  211. proto_config_add_string iptype
  212. proto_config_add_boolean lowpower
  213. }
  214. proto_modemmanager_setup() {
  215. local interface="$1"
  216. local modempath modemstatus bearercount bearerpath connectargs bearerstatus beareriface
  217. local operatorname operatorid registration accesstech signalquality
  218. local device apn username password pincode iptype metric
  219. local address prefix gateway mtu dns1 dns2
  220. json_get_vars device apn username password pincode iptype metric
  221. # validate sysfs path given in config
  222. [ -n "${device}" ] || {
  223. echo "No device specified"
  224. proto_notify_error "${interface}" NO_DEVICE
  225. proto_set_available "${interface}" 0
  226. return 1
  227. }
  228. [ -e "${device}" ] || {
  229. echo "Device not found in sysfs"
  230. proto_set_available "${interface}" 0
  231. return 1
  232. }
  233. # validate that ModemManager is handling the modem at the sysfs path
  234. modemstatus=$(mmcli --modem="${device}" --output-keyvalue)
  235. modempath=$(modemmanager_get_field "${modemstatus}" "modem.dbus-path")
  236. [ -n "${modempath}" ] || {
  237. echo "Device not managed by ModemManager"
  238. proto_notify_error "${interface}" DEVICE_NOT_MANAGED
  239. proto_set_available "${interface}" 0
  240. return 1
  241. }
  242. echo "modem available at ${modempath}"
  243. # always cleanup before attempting a new connection, just in case
  244. modemmanager_cleanup_connection "${modemstatus}"
  245. # setup connect args; APN mandatory (even if it may be empty)
  246. echo "starting connection with apn '${apn}'..."
  247. connectargs="apn=${apn}${username:+,user=${username}}${password:+,password=${password}}${pincode:+,pin=${pincode}}${iptype:+,ip-type=${iptype}}"
  248. mmcli --modem="${device}" --timeout 120 --simple-connect="${connectargs}" || {
  249. proto_notify_error "${interface}" CONNECT_FAILED
  250. proto_block_restart "${interface}"
  251. return 1
  252. }
  253. # log additional useful information
  254. modemstatus=$(mmcli --modem="${device}" --output-keyvalue)
  255. operatorname=$(modemmanager_get_field "${modemstatus}" "modem.3gpp.operator-name")
  256. [ -n "${operatorname}" ] && echo "network operator name: ${operatorname}"
  257. operatorid=$(modemmanager_get_field "${modemstatus}" "modem.3gpp.operator-code")
  258. [ -n "${operatorid}" ] && echo "network operator MCCMNC: ${operatorid}"
  259. registration=$(modemmanager_get_field "${modemstatus}" "modem.3gpp.registration-state")
  260. [ -n "${registration}" ] && echo "registration type: ${registration}"
  261. accesstech=$(modemmanager_get_multivalue_field "${modemstatus}" "modem.generic.access-technologies")
  262. [ -n "${accesstech}" ] && echo "access technology: ${accesstech}"
  263. signalquality=$(modemmanager_get_field "${modemstatus}" "modem.generic.signal-quality.value")
  264. [ -n "${signalquality}" ] && echo "signal quality: ${signalquality}%"
  265. # we won't like it if there are more than one bearers, as that would mean the
  266. # user manually created them, and that's unsupported by this proto
  267. bearercount=$(modemmanager_get_field "${modemstatus}" "modem.generic.bearers.length")
  268. [ -n "${bearercount}" ] && [ "$bearercount" -eq 1 ] || {
  269. proto_notify_error "${interface}" INVALID_BEARER_LIST
  270. return 1
  271. }
  272. # load connected bearer information
  273. bearerpath=$(modemmanager_get_field "${modemstatus}" "modem.generic.bearers.value\[1\]")
  274. bearerstatus=$(mmcli --bearer "${bearerpath}" --output-keyvalue)
  275. # load network interface and method information
  276. beareriface=$(modemmanager_get_field "${bearerstatus}" "bearer.status.interface")
  277. bearermethod=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.method")
  278. echo "connection setup required in interface ${beareriface}: ${bearermethod}"
  279. case "${bearermethod}" in
  280. "dhcp")
  281. modemmanager_connected_method_dhcp "${interface}" "${beareriface}" "${metric}"
  282. ;;
  283. "static")
  284. address=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.address")
  285. prefix=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.prefix")
  286. gateway=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.gateway")
  287. mtu=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.mtu")
  288. dns1=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.dns.value\[1\]")
  289. dns2=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.dns.value\[2\]")
  290. modemmanager_connected_method_static "${interface}" "${beareriface}" "${address}" "${prefix}" "${gateway}" "${mtu}" "${dns1}" "${dns2}" "${metric}"
  291. ;;
  292. "ppp")
  293. modemmanager_connected_method_ppp "${interface}" "${beareriface}" "${username}" "${password}"
  294. ;;
  295. *)
  296. proto_notify_error "${interface}" UNKNOWN_METHOD
  297. return 1
  298. ;;
  299. esac
  300. return 0
  301. }
  302. proto_modemmanager_teardown() {
  303. local interface="$1"
  304. local modemstatus bearerpath errorstring
  305. local device lowpower
  306. json_get_vars device lowpower
  307. echo "stopping network"
  308. # load connected bearer information, just the first one should be ok
  309. modemstatus=$(mmcli --modem="${device}" --output-keyvalue)
  310. bearerpath=$(modemmanager_get_field "${modemstatus}" "modem.generic.bearers.value\[1\]")
  311. [ -n "${bearerpath}" ] || {
  312. echo "couldn't load bearer path"
  313. return
  314. }
  315. # load bearer connection method
  316. bearerstatus=$(mmcli --bearer "${bearerpath}")
  317. bearermethod=$(modemmanager_get_field "${bearerstatus}" "bearer.ipv4-config.method")
  318. [ -n "${bearermethod}" ] || {
  319. echo "couldn't load bearer method"
  320. return
  321. }
  322. case "${bearermethod}" in
  323. "dhcp")
  324. modemmanager_disconnected_method_dhcp "${interface}"
  325. ;;
  326. "static")
  327. modemmanager_disconnected_method_static "${interface}"
  328. ;;
  329. "ppp")
  330. modemmanager_disconnected_method_ppp "${interface}"
  331. ;;
  332. *)
  333. ;;
  334. esac
  335. # disconnect
  336. mmcli --modem="${device}" --simple-disconnect ||
  337. proto_notify_error "${interface}" DISCONNECT_FAILED
  338. # disable
  339. mmcli --modem="${device}" --disable
  340. # low power, only if requested
  341. [ "${lowpower:-0}" -lt 1 ] ||
  342. mmcli --modem="${device}" --set-power-state-low
  343. }
  344. [ -n "$INCLUDE_ONLY" ] || {
  345. add_protocol modemmanager
  346. }