mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Merge time service to library
This commit is contained in:
parent
d431e8313d
commit
0ea2687054
4 changed files with 101 additions and 19 deletions
|
@ -10,6 +10,8 @@ import (
|
||||||
"github.com/sagernet/sing/common/logger"
|
"github.com/sagernet/sing/common/logger"
|
||||||
M "github.com/sagernet/sing/common/metadata"
|
M "github.com/sagernet/sing/common/metadata"
|
||||||
N "github.com/sagernet/sing/common/network"
|
N "github.com/sagernet/sing/common/network"
|
||||||
|
"github.com/sagernet/sing/service"
|
||||||
|
"github.com/sagernet/sing/service/pause"
|
||||||
)
|
)
|
||||||
|
|
||||||
const TimeLayout = "2006-01-02 15:04:05 -0700"
|
const TimeLayout = "2006-01-02 15:04:05 -0700"
|
||||||
|
@ -19,23 +21,26 @@ type TimeService interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Options struct {
|
type Options struct {
|
||||||
Context context.Context
|
Context context.Context
|
||||||
Server M.Socksaddr
|
Dialer N.Dialer
|
||||||
Interval time.Duration
|
Logger logger.Logger
|
||||||
Dialer N.Dialer
|
Server M.Socksaddr
|
||||||
Logger logger.Logger
|
Interval time.Duration
|
||||||
|
WriteToSystem bool
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ TimeService = (*Service)(nil)
|
var _ TimeService = (*Service)(nil)
|
||||||
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
ctx context.Context
|
ctx context.Context
|
||||||
cancel common.ContextCancelCauseFunc
|
cancel common.ContextCancelCauseFunc
|
||||||
server M.Socksaddr
|
dialer N.Dialer
|
||||||
dialer N.Dialer
|
logger logger.Logger
|
||||||
logger logger.Logger
|
server M.Socksaddr
|
||||||
ticker *time.Ticker
|
writeToSystem bool
|
||||||
clockOffset time.Duration
|
ticker *time.Ticker
|
||||||
|
clockOffset time.Duration
|
||||||
|
pause pause.Manager
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewService(options Options) *Service {
|
func NewService(options Options) *Service {
|
||||||
|
@ -47,9 +52,12 @@ func NewService(options Options) *Service {
|
||||||
destination := options.Server
|
destination := options.Server
|
||||||
if !destination.IsValid() {
|
if !destination.IsValid() {
|
||||||
destination = M.Socksaddr{
|
destination = M.Socksaddr{
|
||||||
Fqdn: "time.google.com",
|
Fqdn: "time.apple.com",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if options.Logger == nil {
|
||||||
|
options.Logger = logger.NOP()
|
||||||
|
}
|
||||||
if destination.Port == 0 {
|
if destination.Port == 0 {
|
||||||
destination.Port = 123
|
destination.Port = 123
|
||||||
}
|
}
|
||||||
|
@ -66,12 +74,14 @@ func NewService(options Options) *Service {
|
||||||
dialer = N.SystemDialer
|
dialer = N.SystemDialer
|
||||||
}
|
}
|
||||||
return &Service{
|
return &Service{
|
||||||
ctx: ctx,
|
ctx: ctx,
|
||||||
cancel: cancel,
|
cancel: cancel,
|
||||||
server: destination,
|
dialer: dialer,
|
||||||
dialer: dialer,
|
logger: options.Logger,
|
||||||
logger: options.Logger,
|
writeToSystem: options.WriteToSystem,
|
||||||
ticker: time.NewTicker(interval),
|
server: destination,
|
||||||
|
ticker: time.NewTicker(interval),
|
||||||
|
pause: service.FromContext[pause.Manager](ctx),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,6 +114,14 @@ func (s *Service) loopUpdate() {
|
||||||
return
|
return
|
||||||
case <-s.ticker.C:
|
case <-s.ticker.C:
|
||||||
}
|
}
|
||||||
|
if s.pause != nil {
|
||||||
|
s.pause.WaitActive()
|
||||||
|
select {
|
||||||
|
case <-s.ctx.Done():
|
||||||
|
return
|
||||||
|
default:
|
||||||
|
}
|
||||||
|
}
|
||||||
err := s.update()
|
err := s.update()
|
||||||
if err == nil {
|
if err == nil {
|
||||||
s.logger.Debug("updated time: ", s.TimeFunc()().Local().Format(TimeLayout))
|
s.logger.Debug("updated time: ", s.TimeFunc()().Local().Format(TimeLayout))
|
||||||
|
@ -119,5 +137,11 @@ func (s *Service) update() error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
s.clockOffset = response.ClockOffset
|
s.clockOffset = response.ClockOffset
|
||||||
|
if s.writeToSystem {
|
||||||
|
writeErr := SetSystemTime(s.TimeFunc()())
|
||||||
|
if writeErr != nil {
|
||||||
|
s.logger.Warn("write time to system: ", writeErr)
|
||||||
|
}
|
||||||
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
12
common/ntp/time_stub.go
Normal file
12
common/ntp/time_stub.go
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
//go:build !(windows || linux || darwin)
|
||||||
|
|
||||||
|
package ntp
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SetSystemTime(nowTime time.Time) error {
|
||||||
|
return os.ErrInvalid
|
||||||
|
}
|
14
common/ntp/time_unix.go
Normal file
14
common/ntp/time_unix.go
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
//go:build linux || darwin
|
||||||
|
|
||||||
|
package ntp
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SetSystemTime(nowTime time.Time) error {
|
||||||
|
timeVal := unix.NsecToTimeval(nowTime.UnixNano())
|
||||||
|
return unix.Settimeofday(&timeVal)
|
||||||
|
}
|
32
common/ntp/time_windows.go
Normal file
32
common/ntp/time_windows.go
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
package ntp
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
"golang.org/x/sys/windows"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SetSystemTime(nowTime time.Time) error {
|
||||||
|
var systemTime windows.Systemtime
|
||||||
|
systemTime.Year = uint16(nowTime.Year())
|
||||||
|
systemTime.Month = uint16(nowTime.Month())
|
||||||
|
systemTime.Day = uint16(nowTime.Day())
|
||||||
|
systemTime.Hour = uint16(nowTime.Hour())
|
||||||
|
systemTime.Minute = uint16(nowTime.Minute())
|
||||||
|
systemTime.Second = uint16(nowTime.Second())
|
||||||
|
systemTime.Milliseconds = uint16(nowTime.UnixMilli() - nowTime.Unix()*1000)
|
||||||
|
|
||||||
|
dllKernel32 := windows.NewLazySystemDLL("kernel32.dll")
|
||||||
|
proc := dllKernel32.NewProc("SetSystemTime")
|
||||||
|
|
||||||
|
_, _, err := proc.Call(
|
||||||
|
uintptr(unsafe.Pointer(&systemTime)),
|
||||||
|
)
|
||||||
|
|
||||||
|
if err != nil && err.Error() != "The operation completed successfully." {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue