mirror of
https://github.com/tailscale/tailscale.git
synced 2025-10-10 15:02:37 +02:00
tsnet apps in particular never use the Linux DNS OSManagers, so they don't need DBus, etc. I started to pull that all out into separate features so tsnet doesn't need to bring in DBus, but hit this first. Here you can see that tsnet (and the k8s-operator) no longer pulls in inotify. Updates #17206 Change-Id: I7af0f391f60c5e7dbeed7a080346f83262346591 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build linux && !android
|
|
|
|
// Package linuxdnsfight provides Linux support for detecting DNS fights
|
|
// (inotify watching of /etc/resolv.conf).
|
|
package linuxdnsfight
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/illarion/gonotify/v3"
|
|
"tailscale.com/net/dns"
|
|
)
|
|
|
|
func init() {
|
|
dns.HookWatchFile.Set(watchFile)
|
|
}
|
|
|
|
// watchFile sets up an inotify watch for a given directory and
|
|
// calls the callback function every time a particular file is changed.
|
|
// The filename should be located in the provided directory.
|
|
func watchFile(ctx context.Context, dir, filename string, cb func()) error {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
defer cancel()
|
|
|
|
const events = gonotify.IN_ATTRIB |
|
|
gonotify.IN_CLOSE_WRITE |
|
|
gonotify.IN_CREATE |
|
|
gonotify.IN_DELETE |
|
|
gonotify.IN_MODIFY |
|
|
gonotify.IN_MOVE
|
|
|
|
watcher, err := gonotify.NewDirWatcher(ctx, events, dir)
|
|
if err != nil {
|
|
return fmt.Errorf("NewDirWatcher: %w", err)
|
|
}
|
|
|
|
for {
|
|
select {
|
|
case event := <-watcher.C:
|
|
if event.Name == filename {
|
|
cb()
|
|
}
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
}
|
|
}
|
|
}
|