]> git.ipfire.org Git - people/ms/network.git/blobdiff - src/functions/functions.device
port: ethernet: Allow setting link speed
[people/ms/network.git] / src / functions / functions.device
index 32108bb047bad16b38128a6befa7ae393f65f878..7e830ed2d84cbc22b5b62fdb5f27891f6c759eeb 100644 (file)
@@ -23,7 +23,10 @@ device_list() {
        local devices
 
        # Add all interfaces
-       list_append devices $(devices_get_all)
+       local device
+       for device in $(list_directory ${SYS_CLASS_NET}); do
+               list_append_one devices "${device}"
+       done
 
        # Add all PHYs
        list_append devices $(phy_list)
@@ -74,6 +77,9 @@ device_delete() {
        # Nothing to do, it device does not exist.
        device_exists ${device} || return ${EXIT_OK}
 
+       # Shut down device before we delete it
+       device_set_down "${device}"
+
        # Delete the device.
        cmd_quiet ip link delete ${device}
        local ret=$?
@@ -113,10 +119,7 @@ device_ifindex_to_name() {
        assert isset idx
 
        local device device_idx
-       for device in ${SYS_CLASS_NET}/*; do
-               device=$(basename ${device})
-               device_exists ${device} || continue
-
+       for device in $(list_directory "${SYS_CLASS_NET}"); do
                device_idx=$(device_get_ifindex ${device})
 
                if [ "${device_idx}" = "${idx}" ]; then
@@ -140,31 +143,6 @@ device_get_ifindex() {
        print "$(<${path})"
 }
 
-# Check if the device is a batman-adv bridge
-device_is_batman_adv() {
-       [ -d "${SYS_CLASS_NET}/${1}/mesh" ]
-}
-
-# Check if the device is a batman-adv slave port
-device_is_batman_adv_slave() {
-       local device="${1}"
-
-       if [ -d "${SYS_CLASS_NET}/${device}/batman_adv" ]; then
-               local status="$(<${SYS_CLASS_NET}/${device}/batman_adv/iface_status)"
-
-               case "${status}" in
-                       "active")
-                               return ${EXIT_TRUE}
-                               ;;
-                       *)
-                               return ${EXIT_FALSE}
-                               ;;
-               esac
-       fi
-
-       return ${EXIT_FALSE}
-}
-
 # Check if the device is a bonding device
 device_is_bonding() {
        [ -d "/sys/class/net/${1}/bonding" ]
@@ -287,6 +265,12 @@ device_is_dummy() {
        [[ ${device} =~ ^dummy[0-9]+$ ]]
 }
 
+device_is_ipsec() {
+       local device="${1}"
+
+       [[ ${device} =~ ^ipsec\- ]]
+}
+
 # Check if the device is a wireless device
 device_is_wireless() {
        local device=${1}
@@ -294,6 +278,22 @@ device_is_wireless() {
        [ -d "${SYS_CLASS_NET}/${device}/phy80211" ]
 }
 
+device_is_vti() {
+       local device=${1}
+
+       local type=$(__device_get_file ${device} type)
+
+       [ "${type}" = "768" ] && return ${EXIT_OK} || return ${EXIT_ERROR}
+}
+
+device_is_vti6() {
+       local device=${1}
+
+       local type=$(__device_get_file ${device} type)
+
+       [ "${type}" = "769" ] && return ${EXIT_OK} || return ${EXIT_ERROR}
+}
+
 device_get_phy() {
        local device="${1}"
 
@@ -306,11 +306,11 @@ device_get_phy() {
 }
 
 device_is_phy() {
-       phy_exists $@
+       phy_exists "$@"
 }
 
 device_is_serial() {
-       serial_exists $@
+       serial_exists "$@"
 }
 
 # Returns true if a device is a tun device
@@ -372,9 +372,6 @@ device_get_type() {
        elif device_is_ppp ${device}; then
                echo "ppp"
 
-       elif device_is_batman_adv ${device}; then
-               echo "batman-adv"
-
        elif device_is_loopback ${device}; then
                echo "loopback"
 
@@ -399,6 +396,27 @@ device_get_type() {
        elif device_is_phy ${device}; then
                echo "phy"
 
+       else
+               echo "$(device_tunnel_get_type "${device}")"
+       fi
+}
+
+# This function just checks the types a ip-tunnel device usually have
+# so when we know that the device is an ip-tunnel device we save time
+device_tunnel_get_type() {
+       local device=${1}
+
+       # If the device does not exist (happens on udev remove events),
+       # we do not bother to run all checks.
+       if ! device_exists "${device}"; then
+               echo "unknown"
+
+       elif device_is_vti ${device}; then
+               echo "vti"
+
+       elif device_is_vti6 ${device}; then
+               echo "vti6"
+
        else
                echo "unknown"
        fi
@@ -476,25 +494,16 @@ device_set_address() {
 
 device_get() {
        local device
-       local devices
-
-       for device in ${SYS_CLASS_NET}/*; do
-               device=$(basename ${device})
-
+       for device in $(list_directory "${SYS_CLASS_NET}"); do
                # bonding_masters is no device
                [ "${device}" = "bonding_masters" ] && continue
 
-               devices="${devices} ${device}"
+               echo "${device}"
        done
 
-       echo ${devices}
        return ${EXIT_OK}
 }
 
-devices_get_all() {
-       device_get
-}
-
 # Check if a device has a cable plugged in
 device_has_carrier() {
        local device=${1}
@@ -523,7 +532,7 @@ device_set_promisc() {
 
 # Check if the device is free
 device_is_free() {
-       ! device_is_used $@
+       ! device_is_used "$@"
 }
 
 # Check if the device is used
@@ -563,6 +572,33 @@ device_set_name() {
        fi
 }
 
+device_set_master() {
+       local device="${1}"
+       assert isset device
+
+       local master="${2}"
+       assert isset master
+
+       if ! cmd ip link set "${device}" master "${master}"; then
+               log ERROR "Could not set master ${master} for device ${device}"
+               return ${EXIT_ERROR}
+       fi
+
+       return ${EXIT_OK}
+}
+
+device_remove_master() {
+       local device="${1}"
+       assert isset device
+
+       if ! cmd ip link set "${device}" nomaster; then
+               log ERROR "Could not remove master for device ${device}"
+               return ${EXIT_ERROR}
+       fi
+
+       return ${EXIT_OK}
+}
+
 # Set device up
 device_set_up() {
        assert [ $# -eq 1 ]
@@ -731,7 +767,7 @@ device_identify() {
                                seconds="$(cli_get_val "${arg}")"
                                ;;
                esac
-       done <<< "$(args $@)"
+       done <<< "$(args "$@")"
 
        assert isinteger seconds
 
@@ -775,7 +811,7 @@ device_has_ip() {
                        ;;
        esac
 
-       listmatch ${addr} $(device_get_addresses ${device})
+       list_match ${addr} $(device_get_addresses ${device})
 }
 
 device_get_addresses() {
@@ -796,13 +832,7 @@ __device_get_file() {
        local device=${1}
        local file=${2}
 
-       assert isset device
-       assert isset file
-
-       local path="${SYS_CLASS_NET}/${device}/${file}"
-       [ -r "${path}" ] || return ${EXIT_ERROR}
-
-       echo "$(<${path})"
+       fread "${SYS_CLASS_NET}/${device}/${file}"
 }
 
 __device_set_file() {
@@ -812,13 +842,7 @@ __device_set_file() {
        local file="${2}"
        local value="${3}"
 
-       local path="${SYS_CLASS_NET}/${device}/${file}"
-       if [ ! -w "${path}" ]; then
-               log DEBUG "Cannot write to file '${file}' (${value})"
-               return ${EXIT_ERROR}
-       fi
-
-       echo "${value}" > "${path}"
+       fappend "${SYS_CLASS_NET}/${device}/${file}" "${value}"
 }
 
 device_get_rx_bytes() {
@@ -862,12 +886,32 @@ device_get_speed() {
 
        local speed=$(__device_get_file ${device} speed)
 
+       # Exit for no output (i.e. no link detected)
+       isset speed || return ${EXIT_ERROR}
+
        # Don't return anything for negative values
        [ ${speed} -lt 0 ] && return ${EXIT_ERROR}
 
        print "${speed}"
 }
 
+device_set_speed() {
+       local device="${1}"
+       assert isset device
+
+       local speed="${2}"
+       assert isinteger speed
+
+       if ! cmd_quiet ethtool --change "${device}" speed "${speed}"; then
+               log ERROR "Could not set speed of ${device} to ${speed} MBit/s"
+               return ${EXIT_ERROR}
+       fi
+
+       log DEBUG "Set speed of ${device} to ${speed} MBit/s"
+
+       return ${EXIT_OK}
+}
+
 device_get_duplex() {
        local device=${1}
 
@@ -907,7 +951,7 @@ device_auto_configure_smp_affinity() {
 
        local device=${1}
 
-       if lock_acquire "smp-affinity"; then
+       if lock_acquire "smp-affinity" 60; then
                device_set_smp_affinity ${device} auto
 
                lock_release "smp-affinity"
@@ -981,12 +1025,7 @@ device_get_queues() {
 
        local device=${1}
 
-       local queue
-       for queue in ${SYS_CLASS_NET}/${device}/queues/*; do
-               [ -d "${queue}" ] || continue
-
-               basename "${queue}"
-       done
+       list_directory "${SYS_CLASS_NET}/${device}/queues"
 }
 
 device_supports_multiqueue() {
@@ -1005,7 +1044,7 @@ device_num_queues() {
        local device=${1}
        local type=${2}
 
-       assert isoneof type "" rx tx
+       isset type && assert isoneof type rx tx
 
        local i=0
 
@@ -1033,7 +1072,16 @@ device_queue_get_smp_affinity() {
        local device=${1}
        local queue=${2}
 
-       local path="${SYS_CLASS_NET}/${device}/queues/${queue}/rps_cpus"
+       local path="${SYS_CLASS_NET}/${device}/queues/${queue}"
+
+       case "${queue}" in
+               rx-*)
+                       path="${path}/rps_cpus"
+                       ;;
+               tx-*)
+                       path="${path}/xps_cpus"
+                       ;;
+       esac
        assert [ -r "${path}" ]
 
        __bitmap_to_processor_ids $(<${path})
@@ -1053,3 +1101,48 @@ device_queue_set_smp_affinity() {
 
        __processor_id_to_bitmap ${processor} > ${path}
 }
+
+# Tries to find a device which has the given IP address assigned
+device_get_by_assigned_ip_address() {
+       local ip=${1}
+
+       assert isset ip
+
+       local device
+
+       # Read the first line of ip addr show to
+       read -r device <<< $(ip addr show to "${ip}")
+
+       # If we did not found a device we return with ${EXIT_ERROR}
+       if ! isset device; then
+               return ${EXIT_ERROR}
+       fi
+
+       # We get something like:
+       # 3: upl0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
+       # and we want upl0 so we take the second word and removing the :
+       device=(${device})
+       device=${device[1]}
+       device=${device%:}
+
+       print "${device}"
+       return ${EXIT_OK}
+}
+
+device_get_by_mac_address() {
+       local mac=${1}
+
+       assert isset mac
+
+       local device
+
+       for device in $(device_list); do
+               if [ "${mac}" = "$(device_get_address ${device})" ]; then
+                       print "${device}"
+                       return ${EXIT_OK}
+               fi
+       done
+
+       # We could not found a port to the given mac address so we return exit error
+       return ${EXIT_ERROR}
+}