2019-01-02 01:55:51 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-03 15:04:00 +02:00
|
|
|
*
|
2022-09-20 17:21:32 +02:00
|
|
|
* Copyright (C) 2017-2023 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
|
|
|
|
2017-08-22 14:57:32 +02:00
|
|
|
import (
|
2021-01-21 18:23:45 +01:00
|
|
|
"fmt"
|
2019-05-14 09:09:52 +02:00
|
|
|
|
2024-01-07 20:03:11 +01:00
|
|
|
"gitea.hbanafa.com/hesham/wireguard-go/tun"
|
2017-08-22 14:57:32 +02:00
|
|
|
)
|
2017-07-15 16:27:59 +02:00
|
|
|
|
|
|
|
const DefaultMTU = 1420
|
|
|
|
|
2017-08-22 14:57:32 +02:00
|
|
|
func (device *Device) RoutineTUNEventReader() {
|
2021-01-26 23:05:48 +01:00
|
|
|
device.log.Verbosef("Routine: event worker - started")
|
2018-05-16 22:20:15 +02:00
|
|
|
|
2017-08-22 14:57:32 +02:00
|
|
|
for event := range device.tun.device.Events() {
|
2019-06-10 23:33:40 +02:00
|
|
|
if event&tun.EventMTUUpdate != 0 {
|
2017-08-22 14:57:32 +02:00
|
|
|
mtu, err := device.tun.device.MTU()
|
|
|
|
if err != nil {
|
2021-01-26 23:05:48 +01:00
|
|
|
device.log.Errorf("Failed to load updated MTU of device: %v", err)
|
2021-01-21 18:23:45 +01: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 16:43:11 +02:00
|
|
|
old := device.tun.mtu.Swap(int32(mtu))
|
2021-01-21 18:23:45 +01:00
|
|
|
if int(old) != mtu {
|
|
|
|
device.log.Verbosef("MTU updated: %v%s", mtu, tooLarge)
|
2017-08-22 14:57:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-21 18:26:14 +01:00
|
|
|
if event&tun.EventUp != 0 {
|
|
|
|
device.log.Verbosef("Interface up requested")
|
2017-12-29 17:42:09 +01:00
|
|
|
device.Up()
|
2017-08-22 14:57:32 +02:00
|
|
|
}
|
|
|
|
|
2021-01-21 18:26:14 +01:00
|
|
|
if event&tun.EventDown != 0 {
|
|
|
|
device.log.Verbosef("Interface down requested")
|
2018-01-13 09:00:37 +01:00
|
|
|
device.Down()
|
2017-08-22 14:57:32 +02:00
|
|
|
}
|
|
|
|
}
|
2018-05-16 22:20:15 +02:00
|
|
|
|
2021-01-26 23:05:48 +01:00
|
|
|
device.log.Verbosef("Routine: event worker - stopped")
|
2017-08-22 14:57:32 +02:00
|
|
|
}
|