1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2018 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package netutil
import (
"fmt"
"github.com/godbus/dbus/v5"
"github.com/snapcore/snapd/logger"
)
const (
// https://developer.gnome.org/NetworkManager/stable/nm-dbus-types.html#NMMetered
NetworkManagerMeteredUnknown = 0
NetworkManagerMeteredYes = 1
NetworkManagerMeteredNo = 2
NetworkManagerMeteredGuessYes = 3
NetworkManagerMeteredGuessNo = 4
)
// IsOnMeteredConnection checks whether the current default network connection
// is metered. If the state can not be determined, returns false and an error.
func IsOnMeteredConnection() (bool, error) {
// obtain a shared connection to system bus, no need to close it
conn, err := dbus.SystemBus()
if err != nil {
return false, fmt.Errorf("cannot connect to system bus: %v", err)
}
return isNMOnMetered(conn)
}
func isNMOnMetered(conn *dbus.Conn) (bool, error) {
nmObj := conn.Object("org.freedesktop.NetworkManager", "/org/freedesktop/NetworkManager")
// https://developer.gnome.org/NetworkManager/stable/gdbus-org.freedesktop.NetworkManager.html
dbusV, err := nmObj.GetProperty("org.freedesktop.NetworkManager.Metered")
if err != nil {
return false, err
}
v, ok := dbusV.Value().(uint32)
if !ok {
return false, fmt.Errorf("network manager returned invalid value for metering verification: %s", dbusV)
}
logger.Debugf("metered state reported by NetworkManager: %s", dbusV)
return v == NetworkManagerMeteredGuessYes || v == NetworkManagerMeteredYes, nil
}
|