]> git.ipfire.org Git - people/stevee/network.git/blame - src/functions/functions.device
device_set_{up,down}: Print clear log message
[people/stevee/network.git] / src / functions / functions.device
CommitLineData
1848564d
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
1c6a4e30 22device_list() {
f90dd58c
MT
23 local devices
24
25 # Add all interfaces
26 list_append devices $(devices_get_all)
27
28 # Add all PHYs
29 list_append devices $(phy_list)
30
31 # Add all serial devices
32 list_append devices $(serial_list)
33
34 # Return a sorted result
35 list_sort ${devices}
36}
37
1848564d 38# Check if the device exists
1c6a4e30 39device_exists() {
1848564d
MT
40 local device=${1}
41
42 # If device name was not found, exit.
43 [ -n "${device}" ] || return ${EXIT_ERROR}
44
6c74a64c
MT
45 # Check for a normal network device.
46 [ -d "${SYS_CLASS_NET}/${device}" ] && return ${EXIT_OK}
47
f90dd58c
MT
48 # If the check above did not find a result,
49 # we check for PHYs.
50 phy_exists "${device}" && return ${EXIT_OK}
51
52 # If the check above did not find a result,
6c74a64c
MT
53 # we check for serial devices.
54 serial_exists ${device}
1848564d
MT
55}
56
1c6a4e30 57device_matches_pattern() {
a23fdc0e
MT
58 local device="${1}"
59 assert isset device
60
61 local pattern="${2}"
62 assert isset pattern
63
64 pattern="^${pattern//N/[[:digit:]]+}$"
65
66 [[ ${device} =~ ${pattern} ]] \
67 && return ${EXIT_TRUE} || return ${EXIT_FALSE}
68}
69
1c6a4e30 70device_delete() {
99be6026
MT
71 local device=${1}
72 assert isset device
73
74 # Nothing to do, it device does not exist.
75 device_exists ${device} || return ${EXIT_OK}
76
77 # Delete the device.
78 cmd_quiet ip link delete ${device}
79 local ret=$?
80
81 if [ ${ret} -ne ${EXIT_OK} ]; then
82 log ERROR "device: Could not delete device '${device}': ${ret}"
83 return ${EXIT_ERROR}
84 fi
85
86 return ${ret}
87}
88
1c6a4e30 89device_has_flag() {
e369be1a
MT
90 local device=${1}
91 local flag=${2}
92
93 local flags=$(__device_get_file ${device} flags)
94
95 if [[ "$(( ${flags} & ${flag} ))" -eq 0 ]]; then
96 return ${EXIT_FALSE}
97 else
98 return ${EXIT_TRUE}
99 fi
100}
101
1848564d 102# Check if the device is up
1c6a4e30 103device_is_up() {
1848564d
MT
104 local device=${1}
105
106 device_exists ${device} || return ${EXIT_ERROR}
107
e369be1a 108 device_has_flag ${device} 0x1
1848564d
MT
109}
110
1c6a4e30 111device_ifindex_to_name() {
99be6026
MT
112 local idx=${1}
113 assert isset idx
114
115 local device device_idx
116 for device in ${SYS_CLASS_NET}/*; do
117 device=$(basename ${device})
118 device_exists ${device} || continue
119
120 device_idx=$(device_get_ifindex ${device})
121
122 if [ "${device_idx}" = "${idx}" ]; then
123 print "${device}"
124 return ${EXIT_OK}
125 fi
126 done
127
128 return ${EXIT_ERROR}
129}
130
1c6a4e30 131device_get_ifindex() {
99be6026
MT
132 local device=${1}
133 assert isset device
134
135 local path="${SYS_CLASS_NET}/${1}/ifindex"
136
137 # Check if file can be read.
138 [ -r "${path}" ] || return ${EXIT_ERROR}
139
140 print "$(<${path})"
141}
142
e6993835 143# Check if the device is a batman-adv bridge
1c6a4e30 144device_is_batman_adv() {
e6993835
MT
145 [ -d "${SYS_CLASS_NET}/${1}/mesh" ]
146}
147
b8026986 148# Check if the device is a batman-adv slave port
1c6a4e30 149device_is_batman_adv_slave() {
7b192cf4
MT
150 local device="${1}"
151
152 if [ -d "${SYS_CLASS_NET}/${device}/batman_adv" ]; then
153 local status="$(<${SYS_CLASS_NET}/${device}/batman_adv/iface_status)"
154
155 case "${status}" in
156 "active")
157 return ${EXIT_TRUE}
158 ;;
159 *)
160 return ${EXIT_FALSE}
161 ;;
162 esac
163 fi
164
165 return ${EXIT_FALSE}
e6993835
MT
166}
167
1848564d 168# Check if the device is a bonding device
1c6a4e30 169device_is_bonding() {
1848564d
MT
170 [ -d "/sys/class/net/${1}/bonding" ]
171}
172
173# Check if the device bonded in a bonding device
1c6a4e30 174device_is_bonded() {
711ffac1 175 local device=${1}
1848564d 176
0959482b 177 [ -d "${SYS_CLASS_NET}/${device}/bonding_slave" ]
1848564d
MT
178}
179
180# Check if the device is a bridge
1c6a4e30 181device_is_bridge() {
1848564d
MT
182 [ -d "/sys/class/net/${1}/bridge" ]
183}
184
1c6a4e30 185device_is_bridge_attached() {
81ed640c 186 local device=${1}
81ed640c
MT
187 [ -d "${SYS_CLASS_NET}/${device}/brport" ]
188}
189
1c6a4e30 190device_is_wireless_monitor() {
a23fdc0e
MT
191 local device="${1}"
192 assert isset device
193
194 device_is_wireless "${device}" && \
195 device_matches_pattern "${device}" "${PORT_PATTERN_WIRELESS_MONITOR}"
196}
197
1c6a4e30 198device_is_wireless_adhoc() {
b8026986
MT
199 local device="${1}"
200 assert isset device
201
202 device_is_wireless "${device}" && \
203 device_matches_pattern "${device}" "${PORT_PATTERN_WIRELESS_ADHOC}"
204}
205
1c6a4e30 206device_get_bridge() {
99be6026
MT
207 local device=${1}
208 assert isset device
209
210 # Check if device is attached to a bridge.
211 device_is_bridge_attached ${device} || return ${EXIT_ERROR}
212
213 local ifindex_path="${SYS_CLASS_NET}/${device}/brport/bridge/ifindex"
214 [ -r "${ifindex_path}" ] || return ${EXIT_ERROR}
215
216 local ifindex=$(<${ifindex_path})
217 assert isset ifindex
218
219 device_ifindex_to_name ${ifindex}
220}
221
7951525a 222# Check if the device is a vlan device
1c6a4e30 223device_is_vlan() {
1848564d 224 local device=${1}
7951525a 225 assert isset device
1848564d 226
7951525a 227 [ -e "${PROC_NET_VLAN}/${device}" ]
1848564d
MT
228}
229
7951525a 230# Check if the device has vlan devices
1c6a4e30 231device_has_vlans() {
fb02e543 232 local device=${1}
7951525a 233 assert isset device
fb02e543 234
7951525a 235 if device_is_vlan ${device}; then
ec63256a 236 return ${EXIT_FALSE}
fb02e543
MT
237 fi
238
7951525a
MT
239 local vlans=$(device_get_vlans ${device})
240 [ -n "${vlans}" ] && return ${EXIT_OK} || return ${EXIT_ERROR}
ec63256a
MT
241}
242
1c6a4e30 243device_get_vlans() {
ec63256a 244 local device=${1}
7951525a 245 assert isset device
ec63256a 246
8357a7ff
MT
247 # If no 8021q module has been loaded into the kernel,
248 # we cannot do anything.
7951525a 249 [ -r "${PROC_NET_VLAN_CONFIG}" ] || return ${EXIT_OK}
8357a7ff 250
ec63256a
MT
251 local dev spacer1 id spacer2 parent
252 while read dev spacer1 id spacer2 parent; do
7951525a
MT
253 [ "${parent}" = "${device}" ] || continue
254
255 print "${dev}"
256 done < ${PROC_NET_VLAN_CONFIG}
1848564d
MT
257}
258
1848564d 259# Check if the device is a ppp device
1c6a4e30 260device_is_ppp() {
1848564d
MT
261 local device=${1}
262
55b802cc 263 local type=$(__device_get_file ${device} type)
28f0b4ab 264
e369be1a
MT
265 [ "${type}" = "512" ] && return ${EXIT_OK} || return ${EXIT_ERROR}
266}
55b802cc 267
e369be1a 268# Check if the device is a pointopoint device.
1c6a4e30 269device_is_ptp() {
e369be1a
MT
270 local device=${1}
271
272 device_has_flag ${device} 0x10
1848564d
MT
273}
274
275# Check if the device is a loopback device
1c6a4e30 276device_is_loopback() {
5bb2429a
MT
277 local device=${1}
278
1848564d
MT
279 [ "${device}" = "lo" ]
280}
281
0067696a
MT
282# Check if the device is a dummy device
283# This is the worst possible check, but all I could come up with
1c6a4e30 284device_is_dummy() {
0067696a
MT
285 local device="${1}"
286
287 [[ ${device} =~ ^dummy[0-9]+$ ]]
288}
289
a508c27e 290# Check if the device is a wireless device
1c6a4e30 291device_is_wireless() {
a508c27e
MT
292 local device=${1}
293
294 [ -d "${SYS_CLASS_NET}/${device}/phy80211" ]
295}
296
1c6a4e30 297device_get_phy() {
4733a336
MT
298 local device="${1}"
299
300 if device_is_wireless "${device}"; then
301 print "$(<${SYS_CLASS_NET}/${device}/phy80211/name)"
302 return ${EXIT_OK}
303 fi
304
305 return ${EXIT_ERROR}
306}
307
1c6a4e30 308device_is_phy() {
f90dd58c
MT
309 phy_exists $@
310}
311
1c6a4e30 312device_is_serial() {
6c74a64c
MT
313 serial_exists $@
314}
315
2d6dab20
MT
316# Returns true if a device is a tun device
317device_is_tun() {
318 local device="${1}"
319
320 [ -e "${SYS_CLASS_NET}/${device}/tun_flags" ]
321}
322
1848564d 323# Check if the device is a physical network interface
1c6a4e30 324device_is_ethernet() {
1848564d
MT
325 local device=${1}
326
0067696a
MT
327 device_is_ethernet_compatible "${device}" || \
328 return ${EXIT_ERROR}
329
1848564d
MT
330 device_is_loopback ${device} && \
331 return ${EXIT_ERROR}
332
333 device_is_bonding ${device} && \
334 return ${EXIT_ERROR}
335
336 device_is_bridge ${device} && \
337 return ${EXIT_ERROR}
338
339 device_is_ppp ${device} && \
340 return ${EXIT_ERROR}
341
7951525a 342 device_is_vlan ${device} && \
1848564d
MT
343 return ${EXIT_ERROR}
344
0067696a 345 device_is_dummy ${device} && \
419b4cd0
MT
346 return ${EXIT_ERROR}
347
2d6dab20
MT
348 device_is_tun ${device} && \
349 return ${EXIT_ERROR}
350
1848564d
MT
351 return ${EXIT_OK}
352}
353
354# Get the device type
1c6a4e30 355device_get_type() {
5bb2429a 356 local device=${1}
1848564d 357
b9f27baf
MT
358 # If the device does not exist (happens on udev remove events),
359 # we do not bother to run all checks.
360 if ! device_exists "${device}"; then
361 echo "unknown"
362
363 elif device_is_vlan ${device}; then
1848564d
MT
364 echo "vlan"
365
366 elif device_is_bonding ${device}; then
367 echo "bonding"
368
369 elif device_is_bridge ${device}; then
370 echo "bridge"
371
372 elif device_is_ppp ${device}; then
373 echo "ppp"
374
e6993835
MT
375 elif device_is_batman_adv ${device}; then
376 echo "batman-adv"
377
1848564d
MT
378 elif device_is_loopback ${device}; then
379 echo "loopback"
380
b8026986
MT
381 elif device_is_wireless_adhoc ${device}; then
382 echo "wireless-adhoc"
383
a508c27e
MT
384 elif device_is_wireless ${device}; then
385 echo "wireless"
386
0067696a
MT
387 elif device_is_dummy ${device}; then
388 echo "dummy"
389
2d6dab20
MT
390 elif device_is_tun ${device}; then
391 echo "tun"
392
ec63256a
MT
393 elif device_is_ethernet ${device}; then
394 echo "ethernet"
1848564d 395
6c74a64c
MT
396 elif device_is_serial ${device}; then
397 echo "serial"
398
f90dd58c
MT
399 elif device_is_phy ${device}; then
400 echo "phy"
401
1848564d
MT
402 else
403 echo "unknown"
404 fi
405}
406
1c6a4e30 407device_is_ethernet_compatible() {
a4f7ad26
MT
408 local device="${1}"
409
410 # /sys/class/net/*/type must equal 1 for ethernet compatible devices
411 local type="$(__device_get_file "${device}" "type")"
412 [[ "${type}" = "1" ]]
413}
414
1c6a4e30 415device_get_status() {
711ffac1 416 local device=${1}
711ffac1
MT
417 assert isset device
418
3cb2fc42 419 local status=${STATUS_DOWN}
711ffac1 420
3cb2fc42 421 if device_is_up ${device}; then
711ffac1 422 status=${STATUS_UP}
711ffac1 423
3cb2fc42
MT
424 if ! device_has_carrier ${device}; then
425 status=${STATUS_NOCARRIER}
426 fi
427 fi
711ffac1
MT
428
429 echo "${status}"
430}
431
1c6a4e30 432device_get_address() {
1848564d
MT
433 local device=${1}
434
435 cat ${SYS_CLASS_NET}/${device}/address 2>/dev/null
436}
437
1c6a4e30 438device_set_address() {
08c5b789
MT
439 assert [ $# -eq 2 ]
440
441 local device="${1}"
442 local addr="${2}"
1b7a1578 443
08c5b789 444 if ! device_exists "${device}"; then
1b7a1578
MT
445 error "Device '${device}' does not exist."
446 return ${EXIT_ERROR}
447 fi
448
08c5b789
MT
449 # Do nothing if the address has not changed
450 local old_addr="$(device_get_address "${device}")"
451 if [ -n "${old_addr}" -a "${addr}" = "${old_addr}" ]; then
452 return ${EXIT_OK}
453 fi
454
455 log DEBUG "Setting address of '${device}' from '${old_addr}' to '${addr}'"
1b7a1578
MT
456
457 local up
08c5b789
MT
458 if device_is_up "${device}"; then
459 device_set_down "${device}"
1b7a1578
MT
460 up=1
461 fi
462
08c5b789 463 ip link set "${device}" address "${addr}"
1b7a1578
MT
464 local ret=$?
465
466 if [ "${up}" = "1" ]; then
08c5b789 467 device_set_up "${device}"
1b7a1578
MT
468 fi
469
470 if [ "${ret}" != "0" ]; then
08c5b789 471 error_log "Could not set address '${addr}' on device '${device}'"
1b7a1578
MT
472 fi
473
474 return ${ret}
1848564d
MT
475}
476
1c6a4e30 477device_get() {
2ae0fb8d 478 local device
711ffac1
MT
479 local devices
480
2ae0fb8d
MT
481 for device in ${SYS_CLASS_NET}/*; do
482 device=$(basename ${device})
711ffac1 483
2ae0fb8d
MT
484 # bonding_masters is no device
485 [ "${device}" = "bonding_masters" ] && continue
486
487 devices="${devices} ${device}"
488 done
711ffac1
MT
489
490 echo ${devices}
491 return ${EXIT_OK}
492}
493
1c6a4e30 494devices_get_all() {
711ffac1 495 device_get
1848564d
MT
496}
497
498# Check if a device has a cable plugged in
1c6a4e30 499device_has_carrier() {
5bb2429a
MT
500 local device=${1}
501 assert isset device
502
ec63256a
MT
503 local carrier=$(__device_get_file ${device} carrier)
504 [ "${carrier}" = "1" ]
1848564d
MT
505}
506
1c6a4e30 507device_is_promisc() {
1e4c26a4
MT
508 local device=${1}
509
e369be1a 510 device_has_flag ${device} 0x200
1e4c26a4
MT
511}
512
1c6a4e30 513device_set_promisc() {
cf6e4606
MT
514 local device=${1}
515 local state=${2}
516
517 assert device_exists ${device}
518 assert isset state
519 assert isoneof state on off
520
521 ip link set ${device} promisc ${state}
522}
523
1848564d 524# Check if the device is free
1c6a4e30 525device_is_free() {
81ed640c 526 ! device_is_used $@
1848564d
MT
527}
528
529# Check if the device is used
1c6a4e30 530device_is_used() {
5bb2429a 531 local device=${1}
1848564d 532
7951525a 533 device_has_vlans ${device} && \
fb02e543 534 return ${EXIT_OK}
1848564d 535 device_is_bonded ${device} && \
fb02e543 536 return ${EXIT_OK}
81ed640c
MT
537 device_is_bridge_attached ${device} && \
538 return ${EXIT_OK}
1848564d 539
fb02e543 540 return ${EXIT_ERROR}
1848564d
MT
541}
542
1b7a1578 543# Give the device a new name
1c6a4e30 544device_set_name() {
1848564d 545 local source=$1
1578dae9 546 local destination=${2}
1848564d
MT
547
548 # Check if devices exists
549 if ! device_exists ${source} || device_exists ${destination}; then
550 return 4
551 fi
552
553 local up
554 if device_is_up ${source}; then
555 ip link set ${source} down
556 up=1
557 fi
558
559 ip link set ${source} name ${destination}
560
561 if [ "${up}" = "1" ]; then
562 ip link set ${destination} up
563 fi
564}
565
1848564d 566# Set device up
1c6a4e30 567device_set_up() {
45546be1 568 assert [ $# -eq 1 ]
1848564d 569
45546be1 570 local device=${1}
711ffac1 571
1848564d
MT
572 # Do nothing if device is already up
573 device_is_up ${device} && return ${EXIT_OK}
574
f18ee3d4 575 log INFO "Bringing up ${device}"
81ed640c 576
f18ee3d4 577 device_set_parent_up ${device}
45546be1
MT
578 if ! cmd ip link set ${device} up; then
579 return ${EXIT_ERROR}
580 fi
de72bd91
MT
581
582 # Set SMP affinity
583 if interrupt_use_smp_affinity; then
584 device_auto_configure_smp_affinity "${port}"
585 fi
586
587 return ${EXIT_OK}
1848564d
MT
588}
589
1c6a4e30 590device_set_parent_up() {
81ed640c
MT
591 local device=${1}
592 local parent
593
7951525a
MT
594 if device_is_vlan ${device}; then
595 parent=$(vlan_get_parent ${device})
81ed640c
MT
596
597 device_is_up ${parent} && return ${EXIT_OK}
598
599 log DEBUG "Setting up parent device '${parent}' of '${device}'"
600
601 device_set_up ${parent}
602 return $?
603 fi
604
605 return ${EXIT_OK}
606}
607
1848564d 608# Set device down
1c6a4e30 609device_set_down() {
45546be1 610 assert [ $# -eq 1 ]
1848564d 611
45546be1 612 local device=${1}
81ed640c
MT
613 local ret=${EXIT_OK}
614
615 if device_is_up ${device}; then
f18ee3d4 616 log INFO "Bringing down ${device}"
81ed640c 617
45546be1 618 cmd ip link set ${device} down
81ed640c
MT
619 ret=$?
620 fi
621
622 device_set_parent_down ${device}
1848564d 623
81ed640c
MT
624 return ${ret}
625}
626
1c6a4e30 627device_set_parent_down() {
81ed640c
MT
628 local device=${1}
629 local parent
630
7951525a
MT
631 if device_is_vlan ${device}; then
632 parent=$(vlan_get_parent ${device})
81ed640c
MT
633
634 device_is_up ${parent} || return ${EXIT_OK}
635
636 if device_is_free ${parent}; then
637 log DEBUG "Tearing down parent device '${parent}' of '${device}'"
638
639 device_set_down ${parent}
640 fi
641 fi
642
643 return ${EXIT_OK}
1848564d
MT
644}
645
1c6a4e30 646device_get_mtu() {
1848564d
MT
647 local device=${1}
648
649 if ! device_exists ${device}; then
650 error "Device '${device}' does not exist."
651 return ${EXIT_ERROR}
652 fi
653
f3e6fe50 654 echo $(<${SYS_CLASS_NET}/${device}/mtu)
1848564d
MT
655}
656
657# Set mtu to a device
1c6a4e30 658device_set_mtu() {
1b7a1578 659 local device=${1}
1848564d
MT
660 local mtu=${2}
661
1b7a1578
MT
662 if ! device_exists ${device}; then
663 error "Device '${device}' does not exist."
664 return ${EXIT_ERROR}
665 fi
666
667 local oldmtu=$(device_get_mtu ${device})
668
669 if [ "${oldmtu}" = "${mtu}" ]; then
670 # No need to set mtu.
671 return ${EXIT_OK}
672 fi
673
674 log INFO "Setting mtu of '${device}' to '${mtu}' - was ${oldmtu}."
675
1848564d 676 local up
1b7a1578
MT
677 if device_is_up ${device}; then
678 device_set_down ${device}
1848564d
MT
679 up=1
680 fi
681
1b7a1578 682 ip link set ${device} mtu ${mtu}
1848564d
MT
683 local ret=$?
684
685 if [ "${up}" = "1" ]; then
1b7a1578
MT
686 device_set_up ${device}
687 fi
688
689 if [ "${ret}" != "0" ]; then
690 error_log "Could not set mtu '${mtu}' on device '${device}'."
1848564d
MT
691 fi
692
693 return ${ret}
694}
695
1c6a4e30 696device_adjust_mtu() {
3ee5ccb1
MT
697 assert [ $# -eq 2 ]
698
699 local device="${1}"
700 local other_device="${2}"
701
702 local mtu="$(device_get_mtu "${other_device}")"
703 device_set_mtu "${device}" "${mtu}"
704}
705
1c6a4e30 706device_discover() {
1848564d
MT
707 local device=${1}
708
1b7a1578
MT
709 log INFO "Running discovery process on device '${device}'."
710
1848564d 711 local hook
d61a01d4
MT
712 for hook in $(hook_zone_get_all); do
713 hook_zone_exec ${hook} discover ${device}
1848564d
MT
714 done
715}
716
f5ee091e
MT
717device_identify() {
718 assert [ $# -ge 1 ]
719
720 local device="${1}"
721
722 # Flash for ten seconds by default
723 local seconds="10"
724
725 # Run in background?
726 local background="false"
727
728 local arg
729 while read arg; do
730 case "${arg}" in
731 --background)
732 background="true"
733 ;;
734 --seconds=*)
735 seconds="$(cli_get_val "${arg}")"
736 ;;
737 esac
738 done <<< "$(args $@)"
739
740 assert isinteger seconds
741
742 if ! device_exists "${device}"; then
743 log ERROR "Cannot identify device ${device}: Does not exist"
744 return ${EXIT_ERROR}
745 fi
746
747 if ! device_is_ethernet "${device}"; then
748 log DEBUG "Cannot identify device ${device}: Not an ethernet device"
749 return ${EXIT_NOT_SUPPORTED}
750 fi
751
752 log DEBUG "Identifying device ${device}"
753
754 local command="ethtool --identify ${device} ${seconds}"
755 local ret=0
756
757 if enabled background; then
758 cmd_background "${command}"
759 else
760 cmd_quiet "${command}"
761 ret=$?
762 fi
763
764 return ${ret}
765}
766
1c6a4e30 767device_has_ip() {
1848564d
MT
768 local device=${1}
769 local addr=${2}
770
38f61548
MT
771 assert isset addr
772 assert device_exists ${device}
773
774 # IPv6 addresses must be fully imploded
775 local protocol=$(ip_detect_protocol ${addr})
776 case "${protocol}" in
777 ipv6)
13a6e69f 778 addr=$(ipv6_format "${addr}")
38f61548
MT
779 ;;
780 esac
1848564d 781
38f61548 782 listmatch ${addr} $(device_get_addresses ${device})
1848564d 783}
4231f419 784
1c6a4e30 785device_get_addresses() {
4231f419 786 local device=${1}
4231f419 787
38f61548 788 assert device_exists ${device}
4231f419 789
38f61548
MT
790 local prot
791 local addr
792 local line
793 ip addr show ${device} | \
794 while read prot addr line; do
795 [ "${prot:0:4}" = "inet" ] && echo "${addr}"
796 done
4231f419 797}
711ffac1 798
1c6a4e30 799__device_get_file() {
711ffac1
MT
800 local device=${1}
801 local file=${2}
802
803 assert isset device
804 assert isset file
805
e369be1a
MT
806 local path="${SYS_CLASS_NET}/${device}/${file}"
807 [ -r "${path}" ] || return ${EXIT_ERROR}
808
809 echo "$(<${path})"
711ffac1
MT
810}
811
1c6a4e30 812__device_set_file() {
2c083d57
MT
813 assert [ $# -eq 3 ]
814
815 local device="${1}"
816 local file="${2}"
817 local value="${3}"
818
819 local path="${SYS_CLASS_NET}/${device}/${file}"
820 if [ ! -w "${path}" ]; then
821 log DEBUG "Cannot write to file '${file}' (${value})"
822 return ${EXIT_ERROR}
823 fi
824
825 echo "${value}" > "${path}"
826}
827
1c6a4e30 828device_get_rx_bytes() {
711ffac1
MT
829 local device=${1}
830
831 __device_get_file ${device} statistics/rx_bytes
832}
833
1c6a4e30 834device_get_tx_bytes() {
711ffac1
MT
835 local device=${1}
836
837 __device_get_file ${device} statistics/tx_bytes
838}
839
1c6a4e30 840device_get_rx_packets() {
711ffac1
MT
841 local device=${1}
842
843 __device_get_file ${device} statistics/rx_packets
844}
845
1c6a4e30 846device_get_tx_packets() {
711ffac1
MT
847 local device=${1}
848
849 __device_get_file ${device} statistics/tx_packets
850}
851
1c6a4e30 852device_get_rx_errors() {
711ffac1
MT
853 local device=${1}
854
855 __device_get_file ${device} statistics/rx_errors
856}
857
1c6a4e30 858device_get_tx_errors() {
711ffac1
MT
859 local device=${1}
860
861 __device_get_file ${device} statistics/tx_errors
862}
ec63256a 863
1c6a4e30 864device_get_speed() {
ec63256a
MT
865 local device=${1}
866
867 __device_get_file ${device} speed
868}
869
1c6a4e30 870device_get_duplex() {
ec63256a
MT
871 local device=${1}
872
873 __device_get_file ${device} duplex
874}
657540d8 875
1c6a4e30 876device_get_link_string() {
657540d8
MT
877 local device="${1}"
878 assert isset device
879
880 local s
881
882 local speed="$(device_get_speed "${device}")"
883 if isset speed; then
884 list_append s "${speed} MBit/s"
885 fi
886
887 local duplex="$(device_get_duplex "${device}")"
888 if isset duplex; then
889 list_append s "${duplex} duplex"
890 fi
891
892 print "${s}"
893}
de72bd91
MT
894
895device_auto_configure_smp_affinity() {
896 assert [ $# -eq 1 ]
897
898 local device=${1}
899
900 if lock_acquire "smp-affinity"; then
901 device_set_smp_affinity "${port}" auto
902
903 lock_release "smp-affinity"
904 fi
905}
906
907device_set_smp_affinity() {
908 assert [ $# -eq 2 ]
909
910 local device=${1}
911 local mode=${2}
912
913 # mode can be auto which will automatically try to find
914 # the least busy processor, or an integer for the desired
915 # processor that should handle this device
916
917 local num_processors=$(system_get_processors)
918
919 if [ "${mode}" = "auto" ]; then
920 local processor=$(interrupt_choose_least_busy_processor)
921 else
922 assert isinteger mode
923 local processor=${mode}
924
925 if [ ${processor} -gt ${num_processors} ]; then
926 log ERROR "Processor ${processor} does not exist"
927 return ${EXIT_ERROR}
928 fi
929 fi
930
931 local interrupts=$(interrupts_for_device ${device})
932 if ! isset interrupts; then
933 log DEBUG "${device} has no interrupts. Not changing SMP affinity"
934 return ${EXIT_OK}
935 fi
936
937 # Set SMP affinity
938 local interrupt
939 for interrupt in ${interrupts}; do
940 interrupt_set_smp_affinity ${interrupt} ${processor}
941 done
942
943 # Find all queues and assign them to the next processor
944 local queue
945 for queue in $(device_get_queues ${device}); do
946 case "${queue}" in
947 # Only handle receive queues
948 rx-*)
949 for interrupt in $(interrupts_for_device_queue ${device} ${queue}); do
950 interrupt_set_smp_affinity ${interrupt} ${processor}
951 done
952
953 device_queue_set_smp_affinity ${device} ${queue} ${processor}
954 ;;
955
956 # Ignore the rest
957 *)
958 continue
959 ;;
960 esac
961
962 # Get the next available processor if in auto mode
963 [ "${mode}" = "auto" ] && processor=$(system_get_next_processor ${processor})
964 done
965
966 return ${EXIT_OK}
967}
968
969device_get_queues() {
970 assert [ $# -eq 1 ]
971
972 local device=${1}
973
974 local queue
975 for queue in ${SYS_CLASS_NET}/${device}/queues/*; do
976 basename "${queue}"
977 done
978}
979
980device_queue_set_smp_affinity() {
981 assert [ $# -eq 3 ]
982
983 local device=${1}
984 local queue=${2}
985 local processor=${3}
986
987 local path="${SYS_CLASS_NET}/${device}/queues/${queue}/rps_cpus"
988 assert [ -w "${path}" ]
989
990 log DEBUG "Setting SMP affinity of ${device} (${queue}) to processor ${processor}"
991
992 __processor_id_to_bitmap ${processor} > ${path}
993}