Files

54 lines
1.2 KiB
Go
Raw Permalink Normal View History

2019-01-02 01:55:51 +01:00
/* SPDX-License-Identifier: MIT
2018-05-03 15:04:00 +02:00
*
2025-05-04 17:48:53 +02:00
* Copyright (C) 2017-2025 WireGuard LLC. All Rights Reserved.
2018-05-03 15:04:00 +02:00
*/
2019-03-03 04:04:41 +01:00
package device
2017-06-04 21:48:15 +02:00
import (
2021-01-21 09:23:45 -08:00
"fmt"
2019-05-14 09:09:52 +02:00
"golang.zx2c4.com/wireguard/tun"
)
2017-07-15 16:27:59 +02:00
const DefaultMTU = 1420
func (device *Device) RoutineTUNEventReader() {
device.log.Verbosef("Routine: event worker - started")
2018-05-16 22:20:15 +02:00
for event := range device.tun.device.Events() {
if event&tun.EventMTUUpdate != 0 {
mtu, err := device.tun.device.MTU()
if err != nil {
device.log.Errorf("Failed to load updated MTU of device: %v", err)
2021-01-21 09:23:45 -08:00
continue
}
if mtu < 0 {
device.log.Errorf("MTU not updated to negative value: %v", mtu)
continue
}
var tooLarge string
if mtu > MaxContentSize {
tooLarge = fmt.Sprintf(" (too large, capped at %v)", MaxContentSize)
mtu = MaxContentSize
}
2022-08-30 07:43:11 -07:00
old := device.tun.mtu.Swap(int32(mtu))
2021-01-21 09:23:45 -08:00
if int(old) != mtu {
device.log.Verbosef("MTU updated: %v%s", mtu, tooLarge)
}
}
if event&tun.EventUp != 0 {
device.log.Verbosef("Interface up requested")
2017-12-29 17:42:09 +01:00
device.Up()
}
if event&tun.EventDown != 0 {
device.log.Verbosef("Interface down requested")
2018-01-13 09:00:37 +01:00
device.Down()
}
}
2018-05-16 22:20:15 +02:00
device.log.Verbosef("Routine: event worker - stopped")
}