tools: bump deps
Notably, this isn't bumping to the latest wireguard-go master, which is still in flux. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
		
							parent
							
								
									713947e432
								
							
						
					
					
						commit
						560d9cf967
					
				@ -20,12 +20,12 @@ export GOARCH := $(NDK_GO_ARCH_MAP_$(ANDROID_ARCH_NAME))
 | 
			
		||||
export GOOS := android
 | 
			
		||||
export CGO_ENABLED := 1
 | 
			
		||||
 | 
			
		||||
GO_VERSION := 1.18.2
 | 
			
		||||
GO_VERSION := 1.20.2
 | 
			
		||||
GO_PLATFORM := $(shell uname -s | tr '[:upper:]' '[:lower:]')-$(NDK_GO_ARCH_MAP_$(shell uname -m))
 | 
			
		||||
GO_TARBALL := go$(GO_VERSION).$(GO_PLATFORM).tar.gz
 | 
			
		||||
GO_HASH_darwin-amd64 := 1f5f539ce0baa8b65f196ee219abf73a7d9cf558ba9128cc0fe4833da18b04f2
 | 
			
		||||
GO_HASH_darwin-arm64 := 6c7df9a2405f09aa9bab55c93c9c4ce41d3e58127d626bc1825ba5d0a0045d5c
 | 
			
		||||
GO_HASH_linux-amd64 := e54bec97a1a5d230fc2f9ad0880fcbabb5888f30ed9666eca4a91c5a32e86cbc
 | 
			
		||||
GO_HASH_darwin-amd64 := c93b8ced9517d07e1cd4c362c6e2d5242cb139e29b417a328fbf19aded08764c
 | 
			
		||||
GO_HASH_darwin-arm64 := 7343c87f19e79c0063532e82e1c4d6f42175a32d99f7a4d15e658e88bf97f885
 | 
			
		||||
GO_HASH_linux-amd64 := 4eaea32f59cde4dc635fbc42161031d13e1c780b87097f4b4234cfce671f1768
 | 
			
		||||
 | 
			
		||||
default: $(DESTDIR)/libwg-go.so
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,14 +1,14 @@
 | 
			
		||||
module golang.zx2c4.com/wireguard/android
 | 
			
		||||
 | 
			
		||||
go 1.18
 | 
			
		||||
go 1.20
 | 
			
		||||
 | 
			
		||||
require (
 | 
			
		||||
	golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a
 | 
			
		||||
	golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d
 | 
			
		||||
	golang.org/x/sys v0.6.0
 | 
			
		||||
	golang.zx2c4.com/wireguard v0.0.0-20230223181233-21636207a675
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
require (
 | 
			
		||||
	golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8 // indirect
 | 
			
		||||
	golang.org/x/net v0.0.0-20220516155154-20f960328961 // indirect
 | 
			
		||||
	golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 // indirect
 | 
			
		||||
	golang.org/x/crypto v0.7.0 // indirect
 | 
			
		||||
	golang.org/x/net v0.8.0 // indirect
 | 
			
		||||
	golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
@ -1,10 +1,10 @@
 | 
			
		||||
golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8 h1:y+mHpWoQJNAHt26Nhh6JP7hvM71IRZureyvZhoVALIs=
 | 
			
		||||
golang.org/x/crypto v0.0.0-20220516162934-403b01795ae8/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
 | 
			
		||||
golang.org/x/net v0.0.0-20220516155154-20f960328961 h1:+W/iTMPG0EL7aW+/atntZwZrvSRIj3m3yX414dSULUU=
 | 
			
		||||
golang.org/x/net v0.0.0-20220516155154-20f960328961/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
 | 
			
		||||
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a h1:N2T1jUrTQE9Re6TFF5PhvEHXHCguynGhKjWVsIUt5cY=
 | 
			
		||||
golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
			
		||||
golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224 h1:Ug9qvr1myri/zFN6xL17LSCBGFDnphBBhzmILHsM5TY=
 | 
			
		||||
golang.zx2c4.com/wintun v0.0.0-20211104114900-415007cec224/go.mod h1:deeaetjYA+DHMHg+sMSMI58GrEteJUUzzw7en6TJQcI=
 | 
			
		||||
golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d h1:q4JksJ2n0fmbXC0Aj0eOs6E0AcPqnKglxWXWFqGD6x0=
 | 
			
		||||
golang.zx2c4.com/wireguard v0.0.0-20220407013110-ef5c587f782d/go.mod h1:bVQfyl2sCM/QIIGHpWbFGfHPuDvqnCNkT6MQLTCjO/U=
 | 
			
		||||
golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A=
 | 
			
		||||
golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU=
 | 
			
		||||
golang.org/x/net v0.8.0 h1:Zrh2ngAOFYneWTAIAPethzeaQLuHwhuBkuV6ZiRnUaQ=
 | 
			
		||||
golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc=
 | 
			
		||||
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
 | 
			
		||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 | 
			
		||||
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 h1:B82qJJgjvYKsXS9jeunTOisW56dUokqW/FOteYJJ/yg=
 | 
			
		||||
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2/go.mod h1:deeaetjYA+DHMHg+sMSMI58GrEteJUUzzw7en6TJQcI=
 | 
			
		||||
golang.zx2c4.com/wireguard v0.0.0-20230223181233-21636207a675 h1:/J/RVnr7ng4fWPRH3xa4WtBJ1Jp+Auu4YNLmGiPv5QU=
 | 
			
		||||
golang.zx2c4.com/wireguard v0.0.0-20230223181233-21636207a675/go.mod h1:whfbyDBt09xhCYQWtO2+3UVjlaq6/9hDZrjg2ZE6SyA=
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,8 @@
 | 
			
		||||
From b83553d9f260ba20c6faaa52e6fe6f74309eb41a Mon Sep 17 00:00:00 2001
 | 
			
		||||
From 729c58cb1c0496497dac6de3d0bf540f6149618f Mon Sep 17 00:00:00 2001
 | 
			
		||||
From: "Jason A. Donenfeld" <Jason@zx2c4.com>
 | 
			
		||||
Date: Mon, 22 Feb 2021 02:36:03 +0100
 | 
			
		||||
Subject: [PATCH] runtime: use CLOCK_BOOTTIME in nanotime on Linux
 | 
			
		||||
Date: Tue, 21 Mar 2023 15:33:56 +0100
 | 
			
		||||
Subject: [PATCH] [release-branch.go1.20] runtime: use CLOCK_BOOTTIME in
 | 
			
		||||
 nanotime on Linux
 | 
			
		||||
 | 
			
		||||
This makes timers account for having expired while a computer was
 | 
			
		||||
asleep, which is quite common on mobile devices. Note that BOOTTIME is
 | 
			
		||||
@ -28,10 +29,10 @@ Change-Id: I7b2a6ca0c5bc5fce57ec0eeafe7b68270b429321
 | 
			
		||||
 8 files changed, 11 insertions(+), 11 deletions(-)
 | 
			
		||||
 | 
			
		||||
diff --git a/src/runtime/sys_linux_386.s b/src/runtime/sys_linux_386.s
 | 
			
		||||
index 1e3a834812..78b6021fc7 100644
 | 
			
		||||
index 12a294153d..17e3524b40 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_386.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_386.s
 | 
			
		||||
@@ -337,13 +337,13 @@ noswitch:
 | 
			
		||||
@@ -352,13 +352,13 @@ noswitch:
 | 
			
		||||
 
 | 
			
		||||
 	LEAL	8(SP), BX	// &ts (struct timespec)
 | 
			
		||||
 	MOVL	BX, 4(SP)
 | 
			
		||||
@ -48,10 +49,10 @@ index 1e3a834812..78b6021fc7 100644
 | 
			
		||||
 	INVOKE_SYSCALL
 | 
			
		||||
 
 | 
			
		||||
diff --git a/src/runtime/sys_linux_amd64.s b/src/runtime/sys_linux_amd64.s
 | 
			
		||||
index 37cb8dad03..e8b730bcaa 100644
 | 
			
		||||
index c7a89ba536..01f0a6a26e 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_amd64.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_amd64.s
 | 
			
		||||
@@ -302,7 +302,7 @@ noswitch:
 | 
			
		||||
@@ -255,7 +255,7 @@ noswitch:
 | 
			
		||||
 	SUBQ	$16, SP		// Space for results
 | 
			
		||||
 	ANDQ	$~15, SP	// Align for C code
 | 
			
		||||
 
 | 
			
		||||
@ -61,7 +62,7 @@ index 37cb8dad03..e8b730bcaa 100644
 | 
			
		||||
 	MOVQ	runtime·vdsoClockgettimeSym(SB), AX
 | 
			
		||||
 	CMPQ	AX, $0
 | 
			
		||||
diff --git a/src/runtime/sys_linux_arm.s b/src/runtime/sys_linux_arm.s
 | 
			
		||||
index 475f52344c..bb567abcf4 100644
 | 
			
		||||
index 7b8c4f0e04..9798a1334e 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_arm.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_arm.s
 | 
			
		||||
@@ -11,7 +11,7 @@
 | 
			
		||||
@ -73,20 +74,20 @@ index 475f52344c..bb567abcf4 100644
 | 
			
		||||
 
 | 
			
		||||
 // for EABI, as we don't support OABI
 | 
			
		||||
 #define SYS_BASE 0x0
 | 
			
		||||
@@ -366,7 +366,7 @@ noswitch:
 | 
			
		||||
 	SUB	$24, R13	// Space for results
 | 
			
		||||
 	BIC	$0x7, R13	// Align for C code
 | 
			
		||||
@@ -374,7 +374,7 @@ finish:
 | 
			
		||||
 
 | 
			
		||||
 // func nanotime1() int64
 | 
			
		||||
 TEXT runtime·nanotime1(SB),NOSPLIT,$12-8
 | 
			
		||||
-	MOVW	$CLOCK_MONOTONIC, R0
 | 
			
		||||
+	MOVW	$CLOCK_BOOTTIME, R0
 | 
			
		||||
 	MOVW	$8(R13), R1	// timespec
 | 
			
		||||
 	MOVW	runtime·vdsoClockgettimeSym(SB), R2
 | 
			
		||||
 	CMP	$0, R2
 | 
			
		||||
 	MOVW	$spec-12(SP), R1	// timespec
 | 
			
		||||
 
 | 
			
		||||
 	MOVW	runtime·vdsoClockgettimeSym(SB), R4
 | 
			
		||||
diff --git a/src/runtime/sys_linux_arm64.s b/src/runtime/sys_linux_arm64.s
 | 
			
		||||
index 198a5bacef..9715387f36 100644
 | 
			
		||||
index 38ff6ac330..6b819c5441 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_arm64.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_arm64.s
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
@@ -14,7 +14,7 @@
 | 
			
		||||
 #define AT_FDCWD -100
 | 
			
		||||
 
 | 
			
		||||
 #define CLOCK_REALTIME 0
 | 
			
		||||
@ -95,7 +96,7 @@ index 198a5bacef..9715387f36 100644
 | 
			
		||||
 
 | 
			
		||||
 #define SYS_exit		93
 | 
			
		||||
 #define SYS_read		63
 | 
			
		||||
@@ -319,7 +319,7 @@ noswitch:
 | 
			
		||||
@@ -338,7 +338,7 @@ noswitch:
 | 
			
		||||
 	BIC	$15, R1
 | 
			
		||||
 	MOVD	R1, RSP
 | 
			
		||||
 
 | 
			
		||||
@ -105,10 +106,10 @@ index 198a5bacef..9715387f36 100644
 | 
			
		||||
 	CBZ	R2, fallback
 | 
			
		||||
 
 | 
			
		||||
diff --git a/src/runtime/sys_linux_mips64x.s b/src/runtime/sys_linux_mips64x.s
 | 
			
		||||
index c3e9f37694..e3879acd38 100644
 | 
			
		||||
index 47f2da524d..6c1a9a2801 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_mips64x.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_mips64x.s
 | 
			
		||||
@@ -312,7 +312,7 @@ noswitch:
 | 
			
		||||
@@ -326,7 +326,7 @@ noswitch:
 | 
			
		||||
 	AND	$~15, R1	// Align for C code
 | 
			
		||||
 	MOVV	R1, R29
 | 
			
		||||
 
 | 
			
		||||
@ -118,10 +119,10 @@ index c3e9f37694..e3879acd38 100644
 | 
			
		||||
 
 | 
			
		||||
 	MOVV	runtime·vdsoClockgettimeSym(SB), R25
 | 
			
		||||
diff --git a/src/runtime/sys_linux_mipsx.s b/src/runtime/sys_linux_mipsx.s
 | 
			
		||||
index fab2ab3892..f9af103594 100644
 | 
			
		||||
index 5e6b6c1504..7f5fd2a80e 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_mipsx.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_mipsx.s
 | 
			
		||||
@@ -238,7 +238,7 @@ TEXT runtime·walltime1(SB),NOSPLIT,$8-12
 | 
			
		||||
@@ -243,7 +243,7 @@ TEXT runtime·walltime(SB),NOSPLIT,$8-12
 | 
			
		||||
 	RET
 | 
			
		||||
 
 | 
			
		||||
 TEXT runtime·nanotime1(SB),NOSPLIT,$8-8
 | 
			
		||||
@ -131,11 +132,11 @@ index fab2ab3892..f9af103594 100644
 | 
			
		||||
 	MOVW	$SYS_clock_gettime, R2
 | 
			
		||||
 	SYSCALL
 | 
			
		||||
diff --git a/src/runtime/sys_linux_ppc64x.s b/src/runtime/sys_linux_ppc64x.s
 | 
			
		||||
index fd69ee70a5..ff6bc8355b 100644
 | 
			
		||||
index d0427a4807..05ee9fede9 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_ppc64x.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_ppc64x.s
 | 
			
		||||
@@ -249,7 +249,7 @@ fallback:
 | 
			
		||||
 	JMP	finish
 | 
			
		||||
@@ -298,7 +298,7 @@ fallback:
 | 
			
		||||
 	JMP	return
 | 
			
		||||
 
 | 
			
		||||
 TEXT runtime·nanotime1(SB),NOSPLIT,$16-8
 | 
			
		||||
-	MOVD	$1, R3		// CLOCK_MONOTONIC
 | 
			
		||||
@ -144,18 +145,18 @@ index fd69ee70a5..ff6bc8355b 100644
 | 
			
		||||
 	MOVD	R1, R15		// R15 is unchanged by C code
 | 
			
		||||
 	MOVD	g_m(g), R21	// R21 = m
 | 
			
		||||
diff --git a/src/runtime/sys_linux_s390x.s b/src/runtime/sys_linux_s390x.s
 | 
			
		||||
index c15a1d5364..f52c4d5098 100644
 | 
			
		||||
index 1448670b91..7d2ee3231c 100644
 | 
			
		||||
--- a/src/runtime/sys_linux_s390x.s
 | 
			
		||||
+++ b/src/runtime/sys_linux_s390x.s
 | 
			
		||||
@@ -207,7 +207,7 @@ TEXT runtime·walltime1(SB),NOSPLIT,$16
 | 
			
		||||
@@ -296,7 +296,7 @@ fallback:
 | 
			
		||||
 	RET
 | 
			
		||||
 
 | 
			
		||||
 TEXT runtime·nanotime1(SB),NOSPLIT,$16
 | 
			
		||||
-	MOVW	$1, R2 // CLOCK_MONOTONIC
 | 
			
		||||
+	MOVW	$7, R2 // CLOCK_BOOTTIME
 | 
			
		||||
 	MOVD	$tp-16(SP), R3
 | 
			
		||||
 	MOVW	$SYS_clock_gettime, R1
 | 
			
		||||
 	SYSCALL
 | 
			
		||||
 TEXT runtime·nanotime1(SB),NOSPLIT,$32-8
 | 
			
		||||
-	MOVW	$1, R2			// CLOCK_MONOTONIC
 | 
			
		||||
+	MOVW	$7, R2			// CLOCK_BOOTTIME
 | 
			
		||||
 
 | 
			
		||||
 	MOVD	R15, R7			// Backup stack pointer
 | 
			
		||||
 
 | 
			
		||||
-- 
 | 
			
		||||
2.30.1
 | 
			
		||||
2.40.0
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1 +1 @@
 | 
			
		||||
Subproject commit c0b68d2eafaf2b44df9377ba0844bc315163247e
 | 
			
		||||
Subproject commit b4f6b4f229d291daf7c35c6f1e7f4841cc6d69bc
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user