diff options
Diffstat (limited to 'vendor')
42 files changed, 427 insertions, 122 deletions
| diff --git a/vendor/golang.org/x/net/html/parse.go b/vendor/golang.org/x/net/html/parse.go index 291c91908..46a89eda6 100644 --- a/vendor/golang.org/x/net/html/parse.go +++ b/vendor/golang.org/x/net/html/parse.go @@ -184,7 +184,7 @@ func (p *parser) clearStackToContext(s scope) {  	}  } -// parseGenericRawTextElements implements the generic raw text element parsing +// parseGenericRawTextElement implements the generic raw text element parsing  // algorithm defined in 12.2.6.2.  // https://html.spec.whatwg.org/multipage/parsing.html#parsing-elements-that-contain-only-text  // TODO: Since both RAWTEXT and RCDATA states are treated as tokenizer's part diff --git a/vendor/golang.org/x/net/html/token.go b/vendor/golang.org/x/net/html/token.go index ae24a6fdf..50f7c6aac 100644 --- a/vendor/golang.org/x/net/html/token.go +++ b/vendor/golang.org/x/net/html/token.go @@ -598,6 +598,11 @@ scriptDataDoubleEscapeEnd:  // readComment reads the next comment token starting with "<!--". The opening  // "<!--" has already been consumed.  func (z *Tokenizer) readComment() { +	// When modifying this function, consider manually increasing the suffixLen +	// constant in func TestComments, from 6 to e.g. 9 or more. That increase +	// should only be temporary, not committed, as it exponentially affects the +	// test running time. +  	z.data.start = z.raw.end  	defer func() {  		if z.data.end < z.data.start { @@ -611,11 +616,7 @@ func (z *Tokenizer) readComment() {  	for {  		c := z.readByte()  		if z.err != nil { -			// Ignore up to two dashes at EOF. -			if dashCount > 2 { -				dashCount = 2 -			} -			z.data.end = z.raw.end - dashCount +			z.data.end = z.calculateAbruptCommentDataEnd()  			return  		}  		switch c { @@ -631,12 +632,15 @@ func (z *Tokenizer) readComment() {  			if dashCount >= 2 {  				c = z.readByte()  				if z.err != nil { -					z.data.end = z.raw.end +					z.data.end = z.calculateAbruptCommentDataEnd()  					return -				} -				if c == '>' { +				} else if c == '>' {  					z.data.end = z.raw.end - len("--!>")  					return +				} else if c == '-' { +					dashCount = 1 +					beginning = false +					continue  				}  			}  		} @@ -645,6 +649,35 @@ func (z *Tokenizer) readComment() {  	}  } +func (z *Tokenizer) calculateAbruptCommentDataEnd() int { +	raw := z.Raw() +	const prefixLen = len("<!--") +	if len(raw) >= prefixLen { +		raw = raw[prefixLen:] +		if hasSuffix(raw, "--!") { +			return z.raw.end - 3 +		} else if hasSuffix(raw, "--") { +			return z.raw.end - 2 +		} else if hasSuffix(raw, "-") { +			return z.raw.end - 1 +		} +	} +	return z.raw.end +} + +func hasSuffix(b []byte, suffix string) bool { +	if len(b) < len(suffix) { +		return false +	} +	b = b[len(b)-len(suffix):] +	for i := range b { +		if b[i] != suffix[i] { +			return false +		} +	} +	return true +} +  // readUntilCloseAngle reads until the next ">".  func (z *Tokenizer) readUntilCloseAngle() {  	z.data.start = z.raw.end diff --git a/vendor/golang.org/x/net/http2/flow.go b/vendor/golang.org/x/net/http2/flow.go index 750ac52f2..b7dbd1869 100644 --- a/vendor/golang.org/x/net/http2/flow.go +++ b/vendor/golang.org/x/net/http2/flow.go @@ -18,7 +18,7 @@ type inflow struct {  	unsent int32  } -// set sets the initial window. +// init sets the initial window.  func (f *inflow) init(n int32) {  	f.avail = n  } diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go index 184ac45fe..c1f6b90dc 100644 --- a/vendor/golang.org/x/net/http2/frame.go +++ b/vendor/golang.org/x/net/http2/frame.go @@ -662,6 +662,15 @@ func (f *Framer) WriteData(streamID uint32, endStream bool, data []byte) error {  // It is the caller's responsibility not to violate the maximum frame size  // and to not call other Write methods concurrently.  func (f *Framer) WriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error { +	if err := f.startWriteDataPadded(streamID, endStream, data, pad); err != nil { +		return err +	} +	return f.endWrite() +} + +// startWriteDataPadded is WriteDataPadded, but only writes the frame to the Framer's internal buffer. +// The caller should call endWrite to flush the frame to the underlying writer. +func (f *Framer) startWriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error {  	if !validStreamID(streamID) && !f.AllowIllegalWrites {  		return errStreamID  	} @@ -691,7 +700,7 @@ func (f *Framer) WriteDataPadded(streamID uint32, endStream bool, data, pad []by  	}  	f.wbuf = append(f.wbuf, data...)  	f.wbuf = append(f.wbuf, pad...) -	return f.endWrite() +	return nil  }  // A SettingsFrame conveys configuration parameters that affect how diff --git a/vendor/golang.org/x/net/http2/hpack/hpack.go b/vendor/golang.org/x/net/http2/hpack/hpack.go index ebdfbee96..7a1d97669 100644 --- a/vendor/golang.org/x/net/http2/hpack/hpack.go +++ b/vendor/golang.org/x/net/http2/hpack/hpack.go @@ -211,7 +211,7 @@ func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) {  	return dt.ents[dt.len()-(int(i)-staticTable.len())], true  } -// Decode decodes an entire block. +// DecodeFull decodes an entire block.  //  // TODO: remove this method and make it incremental later? This is  // easier for debugging now. @@ -359,6 +359,7 @@ func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error {  	var hf HeaderField  	wantStr := d.emitEnabled || it.indexed() +	var undecodedName undecodedString  	if nameIdx > 0 {  		ihf, ok := d.at(nameIdx)  		if !ok { @@ -366,15 +367,27 @@ func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error {  		}  		hf.Name = ihf.Name  	} else { -		hf.Name, buf, err = d.readString(buf, wantStr) +		undecodedName, buf, err = d.readString(buf)  		if err != nil {  			return err  		}  	} -	hf.Value, buf, err = d.readString(buf, wantStr) +	undecodedValue, buf, err := d.readString(buf)  	if err != nil {  		return err  	} +	if wantStr { +		if nameIdx <= 0 { +			hf.Name, err = d.decodeString(undecodedName) +			if err != nil { +				return err +			} +		} +		hf.Value, err = d.decodeString(undecodedValue) +		if err != nil { +			return err +		} +	}  	d.buf = buf  	if it.indexed() {  		d.dynTab.add(hf) @@ -459,46 +472,52 @@ func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) {  	return 0, origP, errNeedMore  } -// readString decodes an hpack string from p. +// readString reads an hpack string from p.  // -// wantStr is whether s will be used. If false, decompression and -// []byte->string garbage are skipped if s will be ignored -// anyway. This does mean that huffman decoding errors for non-indexed -// strings past the MAX_HEADER_LIST_SIZE are ignored, but the server -// is returning an error anyway, and because they're not indexed, the error -// won't affect the decoding state. -func (d *Decoder) readString(p []byte, wantStr bool) (s string, remain []byte, err error) { +// It returns a reference to the encoded string data to permit deferring decode costs +// until after the caller verifies all data is present. +func (d *Decoder) readString(p []byte) (u undecodedString, remain []byte, err error) {  	if len(p) == 0 { -		return "", p, errNeedMore +		return u, p, errNeedMore  	}  	isHuff := p[0]&128 != 0  	strLen, p, err := readVarInt(7, p)  	if err != nil { -		return "", p, err +		return u, p, err  	}  	if d.maxStrLen != 0 && strLen > uint64(d.maxStrLen) { -		return "", nil, ErrStringLength +		// Returning an error here means Huffman decoding errors +		// for non-indexed strings past the maximum string length +		// are ignored, but the server is returning an error anyway +		// and because the string is not indexed the error will not +		// affect the decoding state. +		return u, nil, ErrStringLength  	}  	if uint64(len(p)) < strLen { -		return "", p, errNeedMore -	} -	if !isHuff { -		if wantStr { -			s = string(p[:strLen]) -		} -		return s, p[strLen:], nil +		return u, p, errNeedMore  	} +	u.isHuff = isHuff +	u.b = p[:strLen] +	return u, p[strLen:], nil +} -	if wantStr { -		buf := bufPool.Get().(*bytes.Buffer) -		buf.Reset() // don't trust others -		defer bufPool.Put(buf) -		if err := huffmanDecode(buf, d.maxStrLen, p[:strLen]); err != nil { -			buf.Reset() -			return "", nil, err -		} +type undecodedString struct { +	isHuff bool +	b      []byte +} + +func (d *Decoder) decodeString(u undecodedString) (string, error) { +	if !u.isHuff { +		return string(u.b), nil +	} +	buf := bufPool.Get().(*bytes.Buffer) +	buf.Reset() // don't trust others +	var s string +	err := huffmanDecode(buf, d.maxStrLen, u.b) +	if err == nil {  		s = buf.String() -		buf.Reset() // be nice to GC  	} -	return s, p[strLen:], nil +	buf.Reset() // be nice to GC +	bufPool.Put(buf) +	return s, err  } diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go index b624dc0a7..8cb14f3c9 100644 --- a/vendor/golang.org/x/net/http2/server.go +++ b/vendor/golang.org/x/net/http2/server.go @@ -843,8 +843,13 @@ type frameWriteResult struct {  // and then reports when it's done.  // At most one goroutine can be running writeFrameAsync at a time per  // serverConn. -func (sc *serverConn) writeFrameAsync(wr FrameWriteRequest) { -	err := wr.write.writeFrame(sc) +func (sc *serverConn) writeFrameAsync(wr FrameWriteRequest, wd *writeData) { +	var err error +	if wd == nil { +		err = wr.write.writeFrame(sc) +	} else { +		err = sc.framer.endWrite() +	}  	sc.wroteFrameCh <- frameWriteResult{wr: wr, err: err}  } @@ -1251,9 +1256,16 @@ func (sc *serverConn) startFrameWrite(wr FrameWriteRequest) {  		sc.writingFrameAsync = false  		err := wr.write.writeFrame(sc)  		sc.wroteFrame(frameWriteResult{wr: wr, err: err}) +	} else if wd, ok := wr.write.(*writeData); ok { +		// Encode the frame in the serve goroutine, to ensure we don't have +		// any lingering asynchronous references to data passed to Write. +		// See https://go.dev/issue/58446. +		sc.framer.startWriteDataPadded(wd.streamID, wd.endStream, wd.p, nil) +		sc.writingFrameAsync = true +		go sc.writeFrameAsync(wr, wd)  	} else {  		sc.writingFrameAsync = true -		go sc.writeFrameAsync(wr) +		go sc.writeFrameAsync(wr, nil)  	}  } @@ -2192,7 +2204,7 @@ func (sc *serverConn) newWriterAndRequestNoBody(st *stream, rp requestParam) (*r  		tlsState = sc.tlsState  	} -	needsContinue := rp.header.Get("Expect") == "100-continue" +	needsContinue := httpguts.HeaderValuesContainsToken(rp.header["Expect"], "100-continue")  	if needsContinue {  		rp.header.Del("Expect")  	} diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go index b43ec10cf..05ba23d3d 100644 --- a/vendor/golang.org/x/net/http2/transport.go +++ b/vendor/golang.org/x/net/http2/transport.go @@ -1569,7 +1569,7 @@ func (cs *clientStream) cleanupWriteRequest(err error) {  	close(cs.donec)  } -// awaitOpenSlotForStream waits until len(streams) < maxConcurrentStreams. +// awaitOpenSlotForStreamLocked waits until len(streams) < maxConcurrentStreams.  // Must hold cc.mu.  func (cc *ClientConn) awaitOpenSlotForStreamLocked(cs *clientStream) error {  	for { diff --git a/vendor/golang.org/x/net/ipv6/dgramopt.go b/vendor/golang.org/x/net/ipv6/dgramopt.go index 1f422e71d..846f0e1f9 100644 --- a/vendor/golang.org/x/net/ipv6/dgramopt.go +++ b/vendor/golang.org/x/net/ipv6/dgramopt.go @@ -245,7 +245,7 @@ func (c *dgramOpt) Checksum() (on bool, offset int, err error) {  	return true, offset, nil  } -// SetChecksum enables the kernel checksum processing. If on is ture, +// SetChecksum enables the kernel checksum processing. If on is true,  // the offset should be an offset in bytes into the data of where the  // checksum field is located.  func (c *dgramOpt) SetChecksum(on bool, offset int) error { diff --git a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c index a4605e6d1..6cc73109f 100644 --- a/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c +++ b/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c @@ -2,6 +2,7 @@  // Use of this source code is governed by a BSD-style  // license that can be found in the LICENSE file. +//go:build (386 || amd64 || amd64p32) && gccgo  // +build 386 amd64 amd64p32  // +build gccgo diff --git a/vendor/golang.org/x/sys/cpu/endian_big.go b/vendor/golang.org/x/sys/cpu/endian_big.go new file mode 100644 index 000000000..93ce03a34 --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/endian_big.go @@ -0,0 +1,11 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build armbe || arm64be || m68k || mips || mips64 || mips64p32 || ppc || ppc64 || s390 || s390x || shbe || sparc || sparc64 +// +build armbe arm64be m68k mips mips64 mips64p32 ppc ppc64 s390 s390x shbe sparc sparc64 + +package cpu + +// IsBigEndian records whether the GOARCH's byte order is big endian. +const IsBigEndian = true diff --git a/vendor/golang.org/x/sys/cpu/endian_little.go b/vendor/golang.org/x/sys/cpu/endian_little.go new file mode 100644 index 000000000..fe545966b --- /dev/null +++ b/vendor/golang.org/x/sys/cpu/endian_little.go @@ -0,0 +1,11 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || loong64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh +// +build 386 amd64 amd64p32 alpha arm arm64 loong64 mipsle mips64le mips64p32le nios2 ppc64le riscv riscv64 sh + +package cpu + +// IsBigEndian records whether the GOARCH's byte order is big endian. +const IsBigEndian = false diff --git a/vendor/golang.org/x/sys/unix/gccgo_c.c b/vendor/golang.org/x/sys/unix/gccgo_c.c index c4fce0e70..f98a1c542 100644 --- a/vendor/golang.org/x/sys/unix/gccgo_c.c +++ b/vendor/golang.org/x/sys/unix/gccgo_c.c @@ -2,8 +2,8 @@  // Use of this source code is governed by a BSD-style  // license that can be found in the LICENSE file. -// +build gccgo,!hurd -// +build !aix,!hurd +//go:build gccgo && !aix && !hurd +// +build gccgo,!aix,!hurd  #include <errno.h>  #include <stdint.h> diff --git a/vendor/golang.org/x/sys/unix/syscall_darwin.go b/vendor/golang.org/x/sys/unix/syscall_darwin.go index 1f6338218..192b071b3 100644 --- a/vendor/golang.org/x/sys/unix/syscall_darwin.go +++ b/vendor/golang.org/x/sys/unix/syscall_darwin.go @@ -230,6 +230,7 @@ func direntNamlen(buf []byte) (uint64, bool) {  func PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0, 0) }  func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0, 0) } +func PtraceDenyAttach() (err error)    { return ptrace(PT_DENY_ATTACH, 0, 0, 0) }  //sysnb	pipe(p *[2]int32) (err error) diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go index b11ede89a..6a91d471d 100644 --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go @@ -60,8 +60,13 @@ func PtraceGetFsBase(pid int, fsbase *int64) (err error) {  	return ptrace(PT_GETFSBASE, pid, uintptr(unsafe.Pointer(fsbase)), 0)  } -func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { -	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint32(countin)} +func PtraceIO(req int, pid int, offs uintptr, out []byte, countin int) (count int, err error) { +	ioDesc := PtraceIoDesc{ +		Op:   int32(req), +		Offs: offs, +		Addr: uintptr(unsafe.Pointer(&out[0])), // TODO(#58351): this is not safe. +		Len:  uint32(countin), +	}  	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)  	return int(ioDesc.Len), err  } diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go index 9ed8eec6c..48110a0ab 100644 --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go @@ -60,8 +60,13 @@ func PtraceGetFsBase(pid int, fsbase *int64) (err error) {  	return ptrace(PT_GETFSBASE, pid, uintptr(unsafe.Pointer(fsbase)), 0)  } -func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { -	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint64(countin)} +func PtraceIO(req int, pid int, offs uintptr, out []byte, countin int) (count int, err error) { +	ioDesc := PtraceIoDesc{ +		Op:   int32(req), +		Offs: offs, +		Addr: uintptr(unsafe.Pointer(&out[0])), // TODO(#58351): this is not safe. +		Len:  uint64(countin), +	}  	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)  	return int(ioDesc.Len), err  } diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go index f8ac98247..52f1d4b75 100644 --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go @@ -56,8 +56,13 @@ func sendfile(outfd int, infd int, offset *int64, count int) (written int, err e  func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) -func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { -	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint32(countin)} +func PtraceIO(req int, pid int, offs uintptr, out []byte, countin int) (count int, err error) { +	ioDesc := PtraceIoDesc{ +		Op:   int32(req), +		Offs: offs, +		Addr: uintptr(unsafe.Pointer(&out[0])), // TODO(#58351): this is not safe. +		Len:  uint32(countin), +	}  	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)  	return int(ioDesc.Len), err  } diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go index 8e932036e..5537ee4f2 100644 --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go @@ -56,8 +56,13 @@ func sendfile(outfd int, infd int, offset *int64, count int) (written int, err e  func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) -func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { -	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint64(countin)} +func PtraceIO(req int, pid int, offs uintptr, out []byte, countin int) (count int, err error) { +	ioDesc := PtraceIoDesc{ +		Op:   int32(req), +		Offs: offs, +		Addr: uintptr(unsafe.Pointer(&out[0])), // TODO(#58351): this is not safe. +		Len:  uint64(countin), +	}  	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)  	return int(ioDesc.Len), err  } diff --git a/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go b/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go index cbe122278..164abd5d2 100644 --- a/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +++ b/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go @@ -56,8 +56,13 @@ func sendfile(outfd int, infd int, offset *int64, count int) (written int, err e  func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) -func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) { -	ioDesc := PtraceIoDesc{Op: int32(req), Offs: uintptr(unsafe.Pointer(addr)), Addr: uintptr(unsafe.Pointer(&out[0])), Len: uint64(countin)} +func PtraceIO(req int, pid int, offs uintptr, out []byte, countin int) (count int, err error) { +	ioDesc := PtraceIoDesc{ +		Op:   int32(req), +		Offs: offs, +		Addr: uintptr(unsafe.Pointer(&out[0])), // TODO(#58351): this is not safe. +		Len:  uint64(countin), +	}  	err = ptrace(PT_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)  	return int(ioDesc.Len), err  } diff --git a/vendor/golang.org/x/sys/unix/syscall_linux.go b/vendor/golang.org/x/sys/unix/syscall_linux.go index d839962e6..5443dddd4 100644 --- a/vendor/golang.org/x/sys/unix/syscall_linux.go +++ b/vendor/golang.org/x/sys/unix/syscall_linux.go @@ -1800,6 +1800,7 @@ func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err e  //sysnb	Capset(hdr *CapUserHeader, data *CapUserData) (err error)  //sys	Chdir(path string) (err error)  //sys	Chroot(path string) (err error) +//sys	ClockAdjtime(clockid int32, buf *Timex) (state int, err error)  //sys	ClockGetres(clockid int32, res *Timespec) (err error)  //sys	ClockGettime(clockid int32, time *Timespec) (err error)  //sys	ClockNanosleep(clockid int32, flags int, request *Timespec, remain *Timespec) (err error) @@ -1999,7 +2000,7 @@ func appendBytes(vecs []Iovec, bs [][]byte) []Iovec {  // offs2lohi splits offs into its low and high order bits.  func offs2lohi(offs int64) (lo, hi uintptr) {  	const longBits = SizeofLong * 8 -	return uintptr(offs), uintptr(uint64(offs) >> longBits) +	return uintptr(offs), uintptr(uint64(offs) >> (longBits - 1) >> 1) // two shifts to avoid false positive in vet  }  func Readv(fd int, iovs [][]byte) (n int, err error) { diff --git a/vendor/golang.org/x/sys/unix/syscall_unix.go b/vendor/golang.org/x/sys/unix/syscall_unix.go index a386f8897..00f0aa375 100644 --- a/vendor/golang.org/x/sys/unix/syscall_unix.go +++ b/vendor/golang.org/x/sys/unix/syscall_unix.go @@ -578,7 +578,7 @@ func Lutimes(path string, tv []Timeval) error {  	return UtimesNanoAt(AT_FDCWD, path, ts, AT_SYMLINK_NOFOLLOW)  } -// emptyIovec reports whether there are no bytes in the slice of Iovec. +// emptyIovecs reports whether there are no bytes in the slice of Iovec.  func emptyIovecs(iov []Iovec) bool {  	for i := range iov {  		if iov[i].Len > 0 { diff --git a/vendor/golang.org/x/sys/unix/timestruct.go b/vendor/golang.org/x/sys/unix/timestruct.go index 3d8930405..616b1b284 100644 --- a/vendor/golang.org/x/sys/unix/timestruct.go +++ b/vendor/golang.org/x/sys/unix/timestruct.go @@ -9,7 +9,7 @@ package unix  import "time" -// TimespecToNSec returns the time stored in ts as nanoseconds. +// TimespecToNsec returns the time stored in ts as nanoseconds.  func TimespecToNsec(ts Timespec) int64 { return ts.Nano() }  // NsecToTimespec converts a number of nanoseconds into a Timespec. diff --git a/vendor/golang.org/x/sys/unix/xattr_bsd.go b/vendor/golang.org/x/sys/unix/xattr_bsd.go index 663b3779d..f5f8e9f36 100644 --- a/vendor/golang.org/x/sys/unix/xattr_bsd.go +++ b/vendor/golang.org/x/sys/unix/xattr_bsd.go @@ -36,9 +36,14 @@ func xattrnamespace(fullattr string) (ns int, attr string, err error) {  func initxattrdest(dest []byte, idx int) (d unsafe.Pointer) {  	if len(dest) > idx {  		return unsafe.Pointer(&dest[idx]) -	} else { -		return unsafe.Pointer(_zero)  	} +	if dest != nil { +		// extattr_get_file and extattr_list_file treat NULL differently from +		// a non-NULL pointer of length zero. Preserve the property of nilness, +		// even if we can't use dest directly. +		return unsafe.Pointer(&_zero) +	} +	return nil  }  // FreeBSD and NetBSD implement their own syscalls to handle extended attributes diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux.go b/vendor/golang.org/x/sys/unix/zerrors_linux.go index 785d693eb..e174685ad 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux.go @@ -457,7 +457,6 @@ const (  	B600                                        = 0x8  	B75                                         = 0x2  	B9600                                       = 0xd -	BALLOON_KVM_MAGIC                           = 0x13661366  	BDEVFS_MAGIC                                = 0x62646576  	BINDERFS_SUPER_MAGIC                        = 0x6c6f6f70  	BINFMTFS_MAGIC                              = 0x42494e4d @@ -563,6 +562,7 @@ const (  	BUS_USB                                     = 0x3  	BUS_VIRTUAL                                 = 0x6  	CAN_BCM                                     = 0x2 +	CAN_BUS_OFF_THRESHOLD                       = 0x100  	CAN_CTRLMODE_3_SAMPLES                      = 0x4  	CAN_CTRLMODE_BERR_REPORTING                 = 0x10  	CAN_CTRLMODE_CC_LEN8_DLC                    = 0x100 @@ -577,9 +577,12 @@ const (  	CAN_EFF_FLAG                                = 0x80000000  	CAN_EFF_ID_BITS                             = 0x1d  	CAN_EFF_MASK                                = 0x1fffffff +	CAN_ERROR_PASSIVE_THRESHOLD                 = 0x80 +	CAN_ERROR_WARNING_THRESHOLD                 = 0x60  	CAN_ERR_ACK                                 = 0x20  	CAN_ERR_BUSERROR                            = 0x80  	CAN_ERR_BUSOFF                              = 0x40 +	CAN_ERR_CNT                                 = 0x200  	CAN_ERR_CRTL                                = 0x4  	CAN_ERR_CRTL_ACTIVE                         = 0x40  	CAN_ERR_CRTL_RX_OVERFLOW                    = 0x1 @@ -820,9 +823,9 @@ const (  	DM_UUID_FLAG                                = 0x4000  	DM_UUID_LEN                                 = 0x81  	DM_VERSION                                  = 0xc138fd00 -	DM_VERSION_EXTRA                            = "-ioctl (2022-02-22)" +	DM_VERSION_EXTRA                            = "-ioctl (2022-07-28)"  	DM_VERSION_MAJOR                            = 0x4 -	DM_VERSION_MINOR                            = 0x2e +	DM_VERSION_MINOR                            = 0x2f  	DM_VERSION_PATCHLEVEL                       = 0x0  	DT_BLK                                      = 0x6  	DT_CHR                                      = 0x2 @@ -1049,6 +1052,7 @@ const (  	ETH_P_CAIF                                  = 0xf7  	ETH_P_CAN                                   = 0xc  	ETH_P_CANFD                                 = 0xd +	ETH_P_CANXL                                 = 0xe  	ETH_P_CFM                                   = 0x8902  	ETH_P_CONTROL                               = 0x16  	ETH_P_CUST                                  = 0x6006 @@ -1060,6 +1064,7 @@ const (  	ETH_P_DNA_RT                                = 0x6003  	ETH_P_DSA                                   = 0x1b  	ETH_P_DSA_8021Q                             = 0xdadb +	ETH_P_DSA_A5PSW                             = 0xe001  	ETH_P_ECONET                                = 0x18  	ETH_P_EDSA                                  = 0xdada  	ETH_P_ERSPAN                                = 0x88be @@ -1194,8 +1199,10 @@ const (  	FAN_MARK_EVICTABLE                          = 0x200  	FAN_MARK_FILESYSTEM                         = 0x100  	FAN_MARK_FLUSH                              = 0x80 +	FAN_MARK_IGNORE                             = 0x400  	FAN_MARK_IGNORED_MASK                       = 0x20  	FAN_MARK_IGNORED_SURV_MODIFY                = 0x40 +	FAN_MARK_IGNORE_SURV                        = 0x440  	FAN_MARK_INODE                              = 0x0  	FAN_MARK_MOUNT                              = 0x10  	FAN_MARK_ONLYDIR                            = 0x8 @@ -1253,6 +1260,7 @@ const (  	FSCRYPT_MODE_AES_128_CBC                    = 0x5  	FSCRYPT_MODE_AES_128_CTS                    = 0x6  	FSCRYPT_MODE_AES_256_CTS                    = 0x4 +	FSCRYPT_MODE_AES_256_HCTR2                  = 0xa  	FSCRYPT_MODE_AES_256_XTS                    = 0x1  	FSCRYPT_POLICY_FLAGS_PAD_16                 = 0x2  	FSCRYPT_POLICY_FLAGS_PAD_32                 = 0x3 @@ -1430,6 +1438,7 @@ const (  	IFF_NOARP                                   = 0x80  	IFF_NOFILTER                                = 0x1000  	IFF_NOTRAILERS                              = 0x20 +	IFF_NO_CARRIER                              = 0x40  	IFF_NO_PI                                   = 0x1000  	IFF_ONE_QUEUE                               = 0x2000  	IFF_PERSIST                                 = 0x800 @@ -1805,6 +1814,7 @@ const (  	MADV_DONTDUMP                               = 0x10  	MADV_DONTFORK                               = 0xa  	MADV_DONTNEED                               = 0x4 +	MADV_DONTNEED_LOCKED                        = 0x18  	MADV_FREE                                   = 0x8  	MADV_HUGEPAGE                               = 0xe  	MADV_HWPOISON                               = 0x64 @@ -1846,7 +1856,7 @@ const (  	MFD_ALLOW_SEALING                           = 0x2  	MFD_CLOEXEC                                 = 0x1  	MFD_HUGETLB                                 = 0x4 -	MFD_HUGE_16GB                               = -0x78000000 +	MFD_HUGE_16GB                               = 0x88000000  	MFD_HUGE_16MB                               = 0x60000000  	MFD_HUGE_1GB                                = 0x78000000  	MFD_HUGE_1MB                                = 0x50000000 @@ -2212,6 +2222,11 @@ const (  	PERF_AUX_FLAG_PARTIAL                       = 0x4  	PERF_AUX_FLAG_PMU_FORMAT_TYPE_MASK          = 0xff00  	PERF_AUX_FLAG_TRUNCATED                     = 0x1 +	PERF_BR_ARM64_DEBUG_DATA                    = 0x7 +	PERF_BR_ARM64_DEBUG_EXIT                    = 0x5 +	PERF_BR_ARM64_DEBUG_HALT                    = 0x4 +	PERF_BR_ARM64_DEBUG_INST                    = 0x6 +	PERF_BR_ARM64_FIQ                           = 0x3  	PERF_FLAG_FD_CLOEXEC                        = 0x8  	PERF_FLAG_FD_NO_GROUP                       = 0x1  	PERF_FLAG_FD_OUTPUT                         = 0x2 @@ -2232,6 +2247,8 @@ const (  	PERF_MEM_LOCK_NA                            = 0x1  	PERF_MEM_LOCK_SHIFT                         = 0x18  	PERF_MEM_LVLNUM_ANY_CACHE                   = 0xb +	PERF_MEM_LVLNUM_CXL                         = 0x9 +	PERF_MEM_LVLNUM_IO                          = 0xa  	PERF_MEM_LVLNUM_L1                          = 0x1  	PERF_MEM_LVLNUM_L2                          = 0x2  	PERF_MEM_LVLNUM_L3                          = 0x3 @@ -2265,6 +2282,7 @@ const (  	PERF_MEM_REMOTE_REMOTE                      = 0x1  	PERF_MEM_REMOTE_SHIFT                       = 0x25  	PERF_MEM_SNOOPX_FWD                         = 0x1 +	PERF_MEM_SNOOPX_PEER                        = 0x2  	PERF_MEM_SNOOPX_SHIFT                       = 0x26  	PERF_MEM_SNOOP_HIT                          = 0x4  	PERF_MEM_SNOOP_HITM                         = 0x10 @@ -2301,7 +2319,6 @@ const (  	PERF_SAMPLE_BRANCH_PLM_ALL                  = 0x7  	PERF_SAMPLE_WEIGHT_TYPE                     = 0x1004000  	PIPEFS_MAGIC                                = 0x50495045 -	PPC_CMM_MAGIC                               = 0xc7571590  	PPPIOCGNPMODE                               = 0xc008744c  	PPPIOCNEWUNIT                               = 0xc004743e  	PRIO_PGRP                                   = 0x1 @@ -2999,6 +3016,7 @@ const (  	STATX_BLOCKS                                = 0x400  	STATX_BTIME                                 = 0x800  	STATX_CTIME                                 = 0x80 +	STATX_DIOALIGN                              = 0x2000  	STATX_GID                                   = 0x10  	STATX_INO                                   = 0x100  	STATX_MNT_ID                                = 0x1000 @@ -3392,9 +3410,7 @@ const (  	XDP_ZEROCOPY                                = 0x4  	XENFS_SUPER_MAGIC                           = 0xabba1974  	XFS_SUPER_MAGIC                             = 0x58465342 -	Z3FOLD_MAGIC                                = 0x33  	ZONEFS_MAGIC                                = 0x5a4f4653 -	ZSMALLOC_MAGIC                              = 0x58295829  	_HIDIOCGRAWNAME_LEN                         = 0x80  	_HIDIOCGRAWPHYS_LEN                         = 0x40  	_HIDIOCGRAWUNIQ_LEN                         = 0x40 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go index 36c0dfc7c..a46df0f1e 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_386.go @@ -133,6 +133,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc03c4d1a  	MEMREADOOB                       = 0xc00c4d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go index 4ff942703..6cd4a3ea9 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go @@ -133,6 +133,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go index 3eaa0fb78..c7ebee24d 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc00c4d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go index d7995bdc3..9d5352c3e 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go @@ -134,6 +134,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go index 928e24c20..f26a164f4 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go @@ -132,6 +132,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go index 179bffb47..890bc3c9b 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc00c4d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go index 1fba17bd7..549f26ac6 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go index b77dde315..e0365e32c 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go index 78c6c751b..fdccce15c 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc00c4d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go index 1c0d31f0b..b2205c83f 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc00c4d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go index 959dd9bb8..81aa5ad0f 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go index 5a873cdbc..76807a1fd 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go index e336d141e..d4a5ab9e4 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go index 390c01d92..66e65db95 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go @@ -131,6 +131,7 @@ const (  	MEMGETREGIONCOUNT                = 0x80044d07  	MEMISLOCKED                      = 0x80084d17  	MEMLOCK                          = 0x40084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x40084d0c  	MEMUNLOCK                        = 0x40084d06 diff --git a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go index 98a6e5f11..f61925269 100644 --- a/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +++ b/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go @@ -136,6 +136,7 @@ const (  	MEMGETREGIONCOUNT                = 0x40044d07  	MEMISLOCKED                      = 0x40084d17  	MEMLOCK                          = 0x80084d05 +	MEMREAD                          = 0xc0404d1a  	MEMREADOOB                       = 0xc0104d04  	MEMSETBADBLOCK                   = 0x80084d0c  	MEMUNLOCK                        = 0x80084d06 diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux.go b/vendor/golang.org/x/sys/unix/zsyscall_linux.go index 293cf3680..36ea3a55b 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_linux.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_linux.go @@ -537,6 +537,17 @@ func Chroot(path string) (err error) {  // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +func ClockAdjtime(clockid int32, buf *Timex) (state int, err error) { +	r0, _, e1 := Syscall(SYS_CLOCK_ADJTIME, uintptr(clockid), uintptr(unsafe.Pointer(buf)), 0) +	state = int(r0) +	if e1 != 0 { +		err = errnoErr(e1) +	} +	return +} + +// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT +  func ClockGetres(clockid int32, res *Timespec) (err error) {  	_, _, e1 := Syscall(SYS_CLOCK_GETRES, uintptr(clockid), uintptr(unsafe.Pointer(res)), 0)  	if e1 != 0 { diff --git a/vendor/golang.org/x/sys/unix/ztypes_linux.go b/vendor/golang.org/x/sys/unix/ztypes_linux.go index ff6881167..7d9fc8f1c 100644 --- a/vendor/golang.org/x/sys/unix/ztypes_linux.go +++ b/vendor/golang.org/x/sys/unix/ztypes_linux.go @@ -30,6 +30,41 @@ type Itimerval struct {  }  const ( +	ADJ_OFFSET            = 0x1 +	ADJ_FREQUENCY         = 0x2 +	ADJ_MAXERROR          = 0x4 +	ADJ_ESTERROR          = 0x8 +	ADJ_STATUS            = 0x10 +	ADJ_TIMECONST         = 0x20 +	ADJ_TAI               = 0x80 +	ADJ_SETOFFSET         = 0x100 +	ADJ_MICRO             = 0x1000 +	ADJ_NANO              = 0x2000 +	ADJ_TICK              = 0x4000 +	ADJ_OFFSET_SINGLESHOT = 0x8001 +	ADJ_OFFSET_SS_READ    = 0xa001 +) + +const ( +	STA_PLL       = 0x1 +	STA_PPSFREQ   = 0x2 +	STA_PPSTIME   = 0x4 +	STA_FLL       = 0x8 +	STA_INS       = 0x10 +	STA_DEL       = 0x20 +	STA_UNSYNC    = 0x40 +	STA_FREQHOLD  = 0x80 +	STA_PPSSIGNAL = 0x100 +	STA_PPSJITTER = 0x200 +	STA_PPSWANDER = 0x400 +	STA_PPSERROR  = 0x800 +	STA_CLOCKERR  = 0x1000 +	STA_NANO      = 0x2000 +	STA_MODE      = 0x4000 +	STA_CLK       = 0x8000 +) + +const (  	TIME_OK    = 0x0  	TIME_INS   = 0x1  	TIME_DEL   = 0x2 @@ -53,29 +88,30 @@ type StatxTimestamp struct {  }  type Statx_t struct { -	Mask            uint32 -	Blksize         uint32 -	Attributes      uint64 -	Nlink           uint32 -	Uid             uint32 -	Gid             uint32 -	Mode            uint16 -	_               [1]uint16 -	Ino             uint64 -	Size            uint64 -	Blocks          uint64 -	Attributes_mask uint64 -	Atime           StatxTimestamp -	Btime           StatxTimestamp -	Ctime           StatxTimestamp -	Mtime           StatxTimestamp -	Rdev_major      uint32 -	Rdev_minor      uint32 -	Dev_major       uint32 -	Dev_minor       uint32 -	Mnt_id          uint64 -	_               uint64 -	_               [12]uint64 +	Mask             uint32 +	Blksize          uint32 +	Attributes       uint64 +	Nlink            uint32 +	Uid              uint32 +	Gid              uint32 +	Mode             uint16 +	_                [1]uint16 +	Ino              uint64 +	Size             uint64 +	Blocks           uint64 +	Attributes_mask  uint64 +	Atime            StatxTimestamp +	Btime            StatxTimestamp +	Ctime            StatxTimestamp +	Mtime            StatxTimestamp +	Rdev_major       uint32 +	Rdev_minor       uint32 +	Dev_major        uint32 +	Dev_minor        uint32 +	Mnt_id           uint64 +	Dio_mem_align    uint32 +	Dio_offset_align uint32 +	_                [12]uint64  }  type Fsid struct { @@ -1099,7 +1135,8 @@ const (  	PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT    = 0xf  	PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT    = 0x10  	PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT     = 0x11 -	PERF_SAMPLE_BRANCH_MAX_SHIFT          = 0x12 +	PERF_SAMPLE_BRANCH_PRIV_SAVE_SHIFT    = 0x12 +	PERF_SAMPLE_BRANCH_MAX_SHIFT          = 0x13  	PERF_SAMPLE_BRANCH_USER               = 0x1  	PERF_SAMPLE_BRANCH_KERNEL             = 0x2  	PERF_SAMPLE_BRANCH_HV                 = 0x4 @@ -1118,7 +1155,8 @@ const (  	PERF_SAMPLE_BRANCH_NO_CYCLES          = 0x8000  	PERF_SAMPLE_BRANCH_TYPE_SAVE          = 0x10000  	PERF_SAMPLE_BRANCH_HW_INDEX           = 0x20000 -	PERF_SAMPLE_BRANCH_MAX                = 0x40000 +	PERF_SAMPLE_BRANCH_PRIV_SAVE          = 0x40000 +	PERF_SAMPLE_BRANCH_MAX                = 0x80000  	PERF_BR_UNKNOWN                       = 0x0  	PERF_BR_COND                          = 0x1  	PERF_BR_UNCOND                        = 0x2 @@ -1132,7 +1170,10 @@ const (  	PERF_BR_COND_RET                      = 0xa  	PERF_BR_ERET                          = 0xb  	PERF_BR_IRQ                           = 0xc -	PERF_BR_MAX                           = 0xd +	PERF_BR_SERROR                        = 0xd +	PERF_BR_NO_TX                         = 0xe +	PERF_BR_EXTEND_ABI                    = 0xf +	PERF_BR_MAX                           = 0x10  	PERF_SAMPLE_REGS_ABI_NONE             = 0x0  	PERF_SAMPLE_REGS_ABI_32               = 0x1  	PERF_SAMPLE_REGS_ABI_64               = 0x2 @@ -1151,7 +1192,8 @@ const (  	PERF_FORMAT_TOTAL_TIME_RUNNING        = 0x2  	PERF_FORMAT_ID                        = 0x4  	PERF_FORMAT_GROUP                     = 0x8 -	PERF_FORMAT_MAX                       = 0x10 +	PERF_FORMAT_LOST                      = 0x10 +	PERF_FORMAT_MAX                       = 0x20  	PERF_IOC_FLAG_GROUP                   = 0x1  	PERF_RECORD_MMAP                      = 0x1  	PERF_RECORD_LOST                      = 0x2 @@ -2979,7 +3021,16 @@ const (  	DEVLINK_CMD_TRAP_POLICER_NEW                       = 0x47  	DEVLINK_CMD_TRAP_POLICER_DEL                       = 0x48  	DEVLINK_CMD_HEALTH_REPORTER_TEST                   = 0x49 -	DEVLINK_CMD_MAX                                    = 0x51 +	DEVLINK_CMD_RATE_GET                               = 0x4a +	DEVLINK_CMD_RATE_SET                               = 0x4b +	DEVLINK_CMD_RATE_NEW                               = 0x4c +	DEVLINK_CMD_RATE_DEL                               = 0x4d +	DEVLINK_CMD_LINECARD_GET                           = 0x4e +	DEVLINK_CMD_LINECARD_SET                           = 0x4f +	DEVLINK_CMD_LINECARD_NEW                           = 0x50 +	DEVLINK_CMD_LINECARD_DEL                           = 0x51 +	DEVLINK_CMD_SELFTESTS_GET                          = 0x52 +	DEVLINK_CMD_MAX                                    = 0x53  	DEVLINK_PORT_TYPE_NOTSET                           = 0x0  	DEVLINK_PORT_TYPE_AUTO                             = 0x1  	DEVLINK_PORT_TYPE_ETH                              = 0x2 @@ -3208,7 +3259,13 @@ const (  	DEVLINK_ATTR_RATE_NODE_NAME                        = 0xa8  	DEVLINK_ATTR_RATE_PARENT_NODE_NAME                 = 0xa9  	DEVLINK_ATTR_REGION_MAX_SNAPSHOTS                  = 0xaa -	DEVLINK_ATTR_MAX                                   = 0xae +	DEVLINK_ATTR_LINECARD_INDEX                        = 0xab +	DEVLINK_ATTR_LINECARD_STATE                        = 0xac +	DEVLINK_ATTR_LINECARD_TYPE                         = 0xad +	DEVLINK_ATTR_LINECARD_SUPPORTED_TYPES              = 0xae +	DEVLINK_ATTR_NESTED_DEVLINK                        = 0xaf +	DEVLINK_ATTR_SELFTESTS                             = 0xb0 +	DEVLINK_ATTR_MAX                                   = 0xb0  	DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE              = 0x0  	DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX           = 0x1  	DEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT               = 0x0 @@ -3317,7 +3374,8 @@ const (  	LWTUNNEL_ENCAP_SEG6_LOCAL = 0x7  	LWTUNNEL_ENCAP_RPL        = 0x8  	LWTUNNEL_ENCAP_IOAM6      = 0x9 -	LWTUNNEL_ENCAP_MAX        = 0x9 +	LWTUNNEL_ENCAP_XFRM       = 0xa +	LWTUNNEL_ENCAP_MAX        = 0xa  	MPLS_IPTUNNEL_UNSPEC = 0x0  	MPLS_IPTUNNEL_DST    = 0x1 @@ -3512,7 +3570,9 @@ const (  	ETHTOOL_MSG_PHC_VCLOCKS_GET               = 0x21  	ETHTOOL_MSG_MODULE_GET                    = 0x22  	ETHTOOL_MSG_MODULE_SET                    = 0x23 -	ETHTOOL_MSG_USER_MAX                      = 0x23 +	ETHTOOL_MSG_PSE_GET                       = 0x24 +	ETHTOOL_MSG_PSE_SET                       = 0x25 +	ETHTOOL_MSG_USER_MAX                      = 0x25  	ETHTOOL_MSG_KERNEL_NONE                   = 0x0  	ETHTOOL_MSG_STRSET_GET_REPLY              = 0x1  	ETHTOOL_MSG_LINKINFO_GET_REPLY            = 0x2 @@ -3550,7 +3610,8 @@ const (  	ETHTOOL_MSG_PHC_VCLOCKS_GET_REPLY         = 0x22  	ETHTOOL_MSG_MODULE_GET_REPLY              = 0x23  	ETHTOOL_MSG_MODULE_NTF                    = 0x24 -	ETHTOOL_MSG_KERNEL_MAX                    = 0x24 +	ETHTOOL_MSG_PSE_GET_REPLY                 = 0x25 +	ETHTOOL_MSG_KERNEL_MAX                    = 0x25  	ETHTOOL_A_HEADER_UNSPEC                   = 0x0  	ETHTOOL_A_HEADER_DEV_INDEX                = 0x1  	ETHTOOL_A_HEADER_DEV_NAME                 = 0x2 @@ -3609,7 +3670,8 @@ const (  	ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG      = 0x7  	ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE    = 0x8  	ETHTOOL_A_LINKMODES_LANES                 = 0x9 -	ETHTOOL_A_LINKMODES_MAX                   = 0x9 +	ETHTOOL_A_LINKMODES_RATE_MATCHING         = 0xa +	ETHTOOL_A_LINKMODES_MAX                   = 0xa  	ETHTOOL_A_LINKSTATE_UNSPEC                = 0x0  	ETHTOOL_A_LINKSTATE_HEADER                = 0x1  	ETHTOOL_A_LINKSTATE_LINK                  = 0x2 @@ -4201,6 +4263,9 @@ const (  	NL80211_ACL_POLICY_DENY_UNLESS_LISTED                   = 0x1  	NL80211_AC_VI                                           = 0x1  	NL80211_AC_VO                                           = 0x0 +	NL80211_AP_SETTINGS_EXTERNAL_AUTH_SUPPORT               = 0x1 +	NL80211_AP_SETTINGS_SA_QUERY_OFFLOAD_SUPPORT            = 0x2 +	NL80211_AP_SME_SA_QUERY_OFFLOAD                         = 0x1  	NL80211_ATTR_4ADDR                                      = 0x53  	NL80211_ATTR_ACK                                        = 0x5c  	NL80211_ATTR_ACK_SIGNAL                                 = 0x107 @@ -4209,6 +4274,7 @@ const (  	NL80211_ATTR_AIRTIME_WEIGHT                             = 0x112  	NL80211_ATTR_AKM_SUITES                                 = 0x4c  	NL80211_ATTR_AP_ISOLATE                                 = 0x60 +	NL80211_ATTR_AP_SETTINGS_FLAGS                          = 0x135  	NL80211_ATTR_AUTH_DATA                                  = 0x9c  	NL80211_ATTR_AUTH_TYPE                                  = 0x35  	NL80211_ATTR_BANDS                                      = 0xef @@ -4240,6 +4306,9 @@ const (  	NL80211_ATTR_COALESCE_RULE_DELAY                        = 0x1  	NL80211_ATTR_COALESCE_RULE_MAX                          = 0x3  	NL80211_ATTR_COALESCE_RULE_PKT_PATTERN                  = 0x3 +	NL80211_ATTR_COLOR_CHANGE_COLOR                         = 0x130 +	NL80211_ATTR_COLOR_CHANGE_COUNT                         = 0x12f +	NL80211_ATTR_COLOR_CHANGE_ELEMS                         = 0x131  	NL80211_ATTR_CONN_FAILED_REASON                         = 0x9b  	NL80211_ATTR_CONTROL_PORT                               = 0x44  	NL80211_ATTR_CONTROL_PORT_ETHERTYPE                     = 0x66 @@ -4266,6 +4335,7 @@ const (  	NL80211_ATTR_DEVICE_AP_SME                              = 0x8d  	NL80211_ATTR_DFS_CAC_TIME                               = 0x7  	NL80211_ATTR_DFS_REGION                                 = 0x92 +	NL80211_ATTR_DISABLE_EHT                                = 0x137  	NL80211_ATTR_DISABLE_HE                                 = 0x12d  	NL80211_ATTR_DISABLE_HT                                 = 0x93  	NL80211_ATTR_DISABLE_VHT                                = 0xaf @@ -4273,6 +4343,8 @@ const (  	NL80211_ATTR_DONT_WAIT_FOR_ACK                          = 0x8e  	NL80211_ATTR_DTIM_PERIOD                                = 0xd  	NL80211_ATTR_DURATION                                   = 0x57 +	NL80211_ATTR_EHT_CAPABILITY                             = 0x136 +	NL80211_ATTR_EML_CAPABILITY                             = 0x13d  	NL80211_ATTR_EXT_CAPA                                   = 0xa9  	NL80211_ATTR_EXT_CAPA_MASK                              = 0xaa  	NL80211_ATTR_EXTERNAL_AUTH_ACTION                       = 0x104 @@ -4337,10 +4409,11 @@ const (  	NL80211_ATTR_MAC_HINT                                   = 0xc8  	NL80211_ATTR_MAC_MASK                                   = 0xd7  	NL80211_ATTR_MAX_AP_ASSOC_STA                           = 0xca -	NL80211_ATTR_MAX                                        = 0x137 +	NL80211_ATTR_MAX                                        = 0x140  	NL80211_ATTR_MAX_CRIT_PROT_DURATION                     = 0xb4  	NL80211_ATTR_MAX_CSA_COUNTERS                           = 0xce  	NL80211_ATTR_MAX_MATCH_SETS                             = 0x85 +	NL80211_ATTR_MAX_NUM_AKM_SUITES                         = 0x13c  	NL80211_ATTR_MAX_NUM_PMKIDS                             = 0x56  	NL80211_ATTR_MAX_NUM_SCAN_SSIDS                         = 0x2b  	NL80211_ATTR_MAX_NUM_SCHED_SCAN_PLANS                   = 0xde @@ -4350,6 +4423,8 @@ const (  	NL80211_ATTR_MAX_SCAN_PLAN_INTERVAL                     = 0xdf  	NL80211_ATTR_MAX_SCAN_PLAN_ITERATIONS                   = 0xe0  	NL80211_ATTR_MAX_SCHED_SCAN_IE_LEN                      = 0x7c +	NL80211_ATTR_MBSSID_CONFIG                              = 0x132 +	NL80211_ATTR_MBSSID_ELEMS                               = 0x133  	NL80211_ATTR_MCAST_RATE                                 = 0x6b  	NL80211_ATTR_MDID                                       = 0xb1  	NL80211_ATTR_MEASUREMENT_DURATION                       = 0xeb @@ -4359,6 +4434,11 @@ const (  	NL80211_ATTR_MESH_PEER_AID                              = 0xed  	NL80211_ATTR_MESH_SETUP                                 = 0x70  	NL80211_ATTR_MGMT_SUBTYPE                               = 0x29 +	NL80211_ATTR_MLD_ADDR                                   = 0x13a +	NL80211_ATTR_MLD_CAPA_AND_OPS                           = 0x13e +	NL80211_ATTR_MLO_LINK_ID                                = 0x139 +	NL80211_ATTR_MLO_LINKS                                  = 0x138 +	NL80211_ATTR_MLO_SUPPORT                                = 0x13b  	NL80211_ATTR_MNTR_FLAGS                                 = 0x17  	NL80211_ATTR_MPATH_INFO                                 = 0x1b  	NL80211_ATTR_MPATH_NEXT_HOP                             = 0x1a @@ -4371,6 +4451,7 @@ const (  	NL80211_ATTR_NETNS_FD                                   = 0xdb  	NL80211_ATTR_NOACK_MAP                                  = 0x95  	NL80211_ATTR_NSS                                        = 0x106 +	NL80211_ATTR_OBSS_COLOR_BITMAP                          = 0x12e  	NL80211_ATTR_OFFCHANNEL_TX_OK                           = 0x6c  	NL80211_ATTR_OPER_CLASS                                 = 0xd6  	NL80211_ATTR_OPMODE_NOTIF                               = 0xc2 @@ -4397,6 +4478,7 @@ const (  	NL80211_ATTR_PROTOCOL_FEATURES                          = 0xad  	NL80211_ATTR_PS_STATE                                   = 0x5d  	NL80211_ATTR_QOS_MAP                                    = 0xc7 +	NL80211_ATTR_RADAR_BACKGROUND                           = 0x134  	NL80211_ATTR_RADAR_EVENT                                = 0xa8  	NL80211_ATTR_REASON_CODE                                = 0x36  	NL80211_ATTR_RECEIVE_MULTICAST                          = 0x121 @@ -4412,6 +4494,7 @@ const (  	NL80211_ATTR_RESP_IE                                    = 0x4e  	NL80211_ATTR_ROAM_SUPPORT                               = 0x83  	NL80211_ATTR_RX_FRAME_TYPES                             = 0x64 +	NL80211_ATTR_RX_HW_TIMESTAMP                            = 0x140  	NL80211_ATTR_RXMGMT_FLAGS                               = 0xbc  	NL80211_ATTR_RX_SIGNAL_DBM                              = 0x97  	NL80211_ATTR_S1G_CAPABILITY                             = 0x128 @@ -4484,6 +4567,7 @@ const (  	NL80211_ATTR_TSID                                       = 0xd2  	NL80211_ATTR_TWT_RESPONDER                              = 0x116  	NL80211_ATTR_TX_FRAME_TYPES                             = 0x63 +	NL80211_ATTR_TX_HW_TIMESTAMP                            = 0x13f  	NL80211_ATTR_TX_NO_CCK_RATE                             = 0x87  	NL80211_ATTR_TXQ_LIMIT                                  = 0x10a  	NL80211_ATTR_TXQ_MEMORY_LIMIT                           = 0x10b @@ -4557,6 +4641,10 @@ const (  	NL80211_BAND_ATTR_RATES                                 = 0x2  	NL80211_BAND_ATTR_VHT_CAPA                              = 0x8  	NL80211_BAND_ATTR_VHT_MCS_SET                           = 0x7 +	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MAC                    = 0x8 +	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_MCS_SET                = 0xa +	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PHY                    = 0x9 +	NL80211_BAND_IFTYPE_ATTR_EHT_CAP_PPE                    = 0xb  	NL80211_BAND_IFTYPE_ATTR_HE_6GHZ_CAPA                   = 0x6  	NL80211_BAND_IFTYPE_ATTR_HE_CAP_MAC                     = 0x2  	NL80211_BAND_IFTYPE_ATTR_HE_CAP_MCS_SET                 = 0x4 @@ -4564,6 +4652,8 @@ const (  	NL80211_BAND_IFTYPE_ATTR_HE_CAP_PPE                     = 0x5  	NL80211_BAND_IFTYPE_ATTR_IFTYPES                        = 0x1  	NL80211_BAND_IFTYPE_ATTR_MAX                            = 0xb +	NL80211_BAND_IFTYPE_ATTR_VENDOR_ELEMS                   = 0x7 +	NL80211_BAND_LC                                         = 0x5  	NL80211_BAND_S1GHZ                                      = 0x4  	NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE                 = 0x2  	NL80211_BITRATE_ATTR_MAX                                = 0x2 @@ -4584,7 +4674,9 @@ const (  	NL80211_BSS_FREQUENCY_OFFSET                            = 0x14  	NL80211_BSS_INFORMATION_ELEMENTS                        = 0x6  	NL80211_BSS_LAST_SEEN_BOOTTIME                          = 0xf -	NL80211_BSS_MAX                                         = 0x14 +	NL80211_BSS_MAX                                         = 0x16 +	NL80211_BSS_MLD_ADDR                                    = 0x16 +	NL80211_BSS_MLO_LINK_ID                                 = 0x15  	NL80211_BSS_PAD                                         = 0x10  	NL80211_BSS_PARENT_BSSID                                = 0x12  	NL80211_BSS_PARENT_TSF                                  = 0x11 @@ -4612,6 +4704,7 @@ const (  	NL80211_CHAN_WIDTH_20                                   = 0x1  	NL80211_CHAN_WIDTH_20_NOHT                              = 0x0  	NL80211_CHAN_WIDTH_2                                    = 0x9 +	NL80211_CHAN_WIDTH_320                                  = 0xd  	NL80211_CHAN_WIDTH_40                                   = 0x2  	NL80211_CHAN_WIDTH_4                                    = 0xa  	NL80211_CHAN_WIDTH_5                                    = 0x6 @@ -4621,8 +4714,11 @@ const (  	NL80211_CMD_ABORT_SCAN                                  = 0x72  	NL80211_CMD_ACTION                                      = 0x3b  	NL80211_CMD_ACTION_TX_STATUS                            = 0x3c +	NL80211_CMD_ADD_LINK                                    = 0x94 +	NL80211_CMD_ADD_LINK_STA                                = 0x96  	NL80211_CMD_ADD_NAN_FUNCTION                            = 0x75  	NL80211_CMD_ADD_TX_TS                                   = 0x69 +	NL80211_CMD_ASSOC_COMEBACK                              = 0x93  	NL80211_CMD_ASSOCIATE                                   = 0x26  	NL80211_CMD_AUTHENTICATE                                = 0x25  	NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL                    = 0x38 @@ -4630,6 +4726,10 @@ const (  	NL80211_CMD_CHANNEL_SWITCH                              = 0x66  	NL80211_CMD_CH_SWITCH_NOTIFY                            = 0x58  	NL80211_CMD_CH_SWITCH_STARTED_NOTIFY                    = 0x6e +	NL80211_CMD_COLOR_CHANGE_ABORTED                        = 0x90 +	NL80211_CMD_COLOR_CHANGE_COMPLETED                      = 0x91 +	NL80211_CMD_COLOR_CHANGE_REQUEST                        = 0x8e +	NL80211_CMD_COLOR_CHANGE_STARTED                        = 0x8f  	NL80211_CMD_CONNECT                                     = 0x2e  	NL80211_CMD_CONN_FAILED                                 = 0x5b  	NL80211_CMD_CONTROL_PORT_FRAME                          = 0x81 @@ -4678,8 +4778,9 @@ const (  	NL80211_CMD_LEAVE_IBSS                                  = 0x2c  	NL80211_CMD_LEAVE_MESH                                  = 0x45  	NL80211_CMD_LEAVE_OCB                                   = 0x6d -	NL80211_CMD_MAX                                         = 0x93 +	NL80211_CMD_MAX                                         = 0x98  	NL80211_CMD_MICHAEL_MIC_FAILURE                         = 0x29 +	NL80211_CMD_MODIFY_LINK_STA                             = 0x97  	NL80211_CMD_NAN_MATCH                                   = 0x78  	NL80211_CMD_NEW_BEACON                                  = 0xf  	NL80211_CMD_NEW_INTERFACE                               = 0x7 @@ -4692,6 +4793,7 @@ const (  	NL80211_CMD_NEW_WIPHY                                   = 0x3  	NL80211_CMD_NOTIFY_CQM                                  = 0x40  	NL80211_CMD_NOTIFY_RADAR                                = 0x86 +	NL80211_CMD_OBSS_COLOR_COLLISION                        = 0x8d  	NL80211_CMD_PEER_MEASUREMENT_COMPLETE                   = 0x85  	NL80211_CMD_PEER_MEASUREMENT_RESULT                     = 0x84  	NL80211_CMD_PEER_MEASUREMENT_START                      = 0x83 @@ -4707,6 +4809,8 @@ const (  	NL80211_CMD_REGISTER_FRAME                              = 0x3a  	NL80211_CMD_RELOAD_REGDB                                = 0x7e  	NL80211_CMD_REMAIN_ON_CHANNEL                           = 0x37 +	NL80211_CMD_REMOVE_LINK                                 = 0x95 +	NL80211_CMD_REMOVE_LINK_STA                             = 0x98  	NL80211_CMD_REQ_SET_REG                                 = 0x1b  	NL80211_CMD_ROAM                                        = 0x2f  	NL80211_CMD_SCAN_ABORTED                                = 0x23 @@ -4717,6 +4821,7 @@ const (  	NL80211_CMD_SET_CHANNEL                                 = 0x41  	NL80211_CMD_SET_COALESCE                                = 0x65  	NL80211_CMD_SET_CQM                                     = 0x3f +	NL80211_CMD_SET_FILS_AAD                                = 0x92  	NL80211_CMD_SET_INTERFACE                               = 0x6  	NL80211_CMD_SET_KEY                                     = 0xa  	NL80211_CMD_SET_MAC_ACL                                 = 0x5d @@ -4791,6 +4896,8 @@ const (  	NL80211_EDMG_BW_CONFIG_MIN                              = 0x4  	NL80211_EDMG_CHANNELS_MAX                               = 0x3c  	NL80211_EDMG_CHANNELS_MIN                               = 0x1 +	NL80211_EHT_MAX_CAPABILITY_LEN                          = 0x33 +	NL80211_EHT_MIN_CAPABILITY_LEN                          = 0xd  	NL80211_EXTERNAL_AUTH_ABORT                             = 0x1  	NL80211_EXTERNAL_AUTH_START                             = 0x0  	NL80211_EXT_FEATURE_4WAY_HANDSHAKE_AP_PSK               = 0x32 @@ -4807,6 +4914,7 @@ const (  	NL80211_EXT_FEATURE_BEACON_RATE_HT                      = 0x7  	NL80211_EXT_FEATURE_BEACON_RATE_LEGACY                  = 0x6  	NL80211_EXT_FEATURE_BEACON_RATE_VHT                     = 0x8 +	NL80211_EXT_FEATURE_BSS_COLOR                           = 0x3a  	NL80211_EXT_FEATURE_BSS_PARENT_TSF                      = 0x4  	NL80211_EXT_FEATURE_CAN_REPLACE_PTK0                    = 0x1f  	NL80211_EXT_FEATURE_CONTROL_PORT_NO_PREAUTH             = 0x2a @@ -4818,6 +4926,7 @@ const (  	NL80211_EXT_FEATURE_DFS_OFFLOAD                         = 0x19  	NL80211_EXT_FEATURE_ENABLE_FTM_RESPONDER                = 0x20  	NL80211_EXT_FEATURE_EXT_KEY_ID                          = 0x24 +	NL80211_EXT_FEATURE_FILS_CRYPTO_OFFLOAD                 = 0x3b  	NL80211_EXT_FEATURE_FILS_DISCOVERY                      = 0x34  	NL80211_EXT_FEATURE_FILS_MAX_CHANNEL_TIME               = 0x11  	NL80211_EXT_FEATURE_FILS_SK_OFFLOAD                     = 0xe @@ -4833,8 +4942,10 @@ const (  	NL80211_EXT_FEATURE_OCE_PROBE_REQ_DEFERRAL_SUPPRESSION  = 0x14  	NL80211_EXT_FEATURE_OCE_PROBE_REQ_HIGH_TX_RATE          = 0x13  	NL80211_EXT_FEATURE_OPERATING_CHANNEL_VALIDATION        = 0x31 +	NL80211_EXT_FEATURE_POWERED_ADDR_CHANGE                 = 0x3d  	NL80211_EXT_FEATURE_PROTECTED_TWT                       = 0x2b  	NL80211_EXT_FEATURE_PROT_RANGE_NEGO_AND_MEASURE         = 0x39 +	NL80211_EXT_FEATURE_RADAR_BACKGROUND                    = 0x3c  	NL80211_EXT_FEATURE_RRM                                 = 0x1  	NL80211_EXT_FEATURE_SAE_OFFLOAD_AP                      = 0x33  	NL80211_EXT_FEATURE_SAE_OFFLOAD                         = 0x26 @@ -4906,7 +5017,9 @@ const (  	NL80211_FREQUENCY_ATTR_NO_10MHZ                         = 0x11  	NL80211_FREQUENCY_ATTR_NO_160MHZ                        = 0xc  	NL80211_FREQUENCY_ATTR_NO_20MHZ                         = 0x10 +	NL80211_FREQUENCY_ATTR_NO_320MHZ                        = 0x1a  	NL80211_FREQUENCY_ATTR_NO_80MHZ                         = 0xb +	NL80211_FREQUENCY_ATTR_NO_EHT                           = 0x1b  	NL80211_FREQUENCY_ATTR_NO_HE                            = 0x13  	NL80211_FREQUENCY_ATTR_NO_HT40_MINUS                    = 0x9  	NL80211_FREQUENCY_ATTR_NO_HT40_PLUS                     = 0xa @@ -5006,6 +5119,12 @@ const (  	NL80211_MAX_SUPP_HT_RATES                               = 0x4d  	NL80211_MAX_SUPP_RATES                                  = 0x20  	NL80211_MAX_SUPP_REG_RULES                              = 0x80 +	NL80211_MBSSID_CONFIG_ATTR_EMA                          = 0x5 +	NL80211_MBSSID_CONFIG_ATTR_INDEX                        = 0x3 +	NL80211_MBSSID_CONFIG_ATTR_MAX                          = 0x5 +	NL80211_MBSSID_CONFIG_ATTR_MAX_EMA_PROFILE_PERIODICITY  = 0x2 +	NL80211_MBSSID_CONFIG_ATTR_MAX_INTERFACES               = 0x1 +	NL80211_MBSSID_CONFIG_ATTR_TX_IFINDEX                   = 0x4  	NL80211_MESHCONF_ATTR_MAX                               = 0x1f  	NL80211_MESHCONF_AUTO_OPEN_PLINKS                       = 0x7  	NL80211_MESHCONF_AWAKE_WINDOW                           = 0x1b @@ -5168,6 +5287,7 @@ const (  	NL80211_PMSR_FTM_FAILURE_UNSPECIFIED                    = 0x0  	NL80211_PMSR_FTM_FAILURE_WRONG_CHANNEL                  = 0x3  	NL80211_PMSR_FTM_REQ_ATTR_ASAP                          = 0x1 +	NL80211_PMSR_FTM_REQ_ATTR_BSS_COLOR                     = 0xd  	NL80211_PMSR_FTM_REQ_ATTR_BURST_DURATION                = 0x5  	NL80211_PMSR_FTM_REQ_ATTR_BURST_PERIOD                  = 0x4  	NL80211_PMSR_FTM_REQ_ATTR_FTMS_PER_BURST                = 0x6 @@ -5244,12 +5364,36 @@ const (  	NL80211_RADAR_PRE_CAC_EXPIRED                           = 0x4  	NL80211_RATE_INFO_10_MHZ_WIDTH                          = 0xb  	NL80211_RATE_INFO_160_MHZ_WIDTH                         = 0xa +	NL80211_RATE_INFO_320_MHZ_WIDTH                         = 0x12  	NL80211_RATE_INFO_40_MHZ_WIDTH                          = 0x3  	NL80211_RATE_INFO_5_MHZ_WIDTH                           = 0xc  	NL80211_RATE_INFO_80_MHZ_WIDTH                          = 0x8  	NL80211_RATE_INFO_80P80_MHZ_WIDTH                       = 0x9  	NL80211_RATE_INFO_BITRATE32                             = 0x5  	NL80211_RATE_INFO_BITRATE                               = 0x1 +	NL80211_RATE_INFO_EHT_GI_0_8                            = 0x0 +	NL80211_RATE_INFO_EHT_GI_1_6                            = 0x1 +	NL80211_RATE_INFO_EHT_GI_3_2                            = 0x2 +	NL80211_RATE_INFO_EHT_GI                                = 0x15 +	NL80211_RATE_INFO_EHT_MCS                               = 0x13 +	NL80211_RATE_INFO_EHT_NSS                               = 0x14 +	NL80211_RATE_INFO_EHT_RU_ALLOC_106                      = 0x3 +	NL80211_RATE_INFO_EHT_RU_ALLOC_106P26                   = 0x4 +	NL80211_RATE_INFO_EHT_RU_ALLOC_242                      = 0x5 +	NL80211_RATE_INFO_EHT_RU_ALLOC_26                       = 0x0 +	NL80211_RATE_INFO_EHT_RU_ALLOC_2x996                    = 0xb +	NL80211_RATE_INFO_EHT_RU_ALLOC_2x996P484                = 0xc +	NL80211_RATE_INFO_EHT_RU_ALLOC_3x996                    = 0xd +	NL80211_RATE_INFO_EHT_RU_ALLOC_3x996P484                = 0xe +	NL80211_RATE_INFO_EHT_RU_ALLOC_484                      = 0x6 +	NL80211_RATE_INFO_EHT_RU_ALLOC_484P242                  = 0x7 +	NL80211_RATE_INFO_EHT_RU_ALLOC_4x996                    = 0xf +	NL80211_RATE_INFO_EHT_RU_ALLOC_52                       = 0x1 +	NL80211_RATE_INFO_EHT_RU_ALLOC_52P26                    = 0x2 +	NL80211_RATE_INFO_EHT_RU_ALLOC_996                      = 0x8 +	NL80211_RATE_INFO_EHT_RU_ALLOC_996P484                  = 0x9 +	NL80211_RATE_INFO_EHT_RU_ALLOC_996P484P242              = 0xa +	NL80211_RATE_INFO_EHT_RU_ALLOC                          = 0x16  	NL80211_RATE_INFO_HE_1XLTF                              = 0x0  	NL80211_RATE_INFO_HE_2XLTF                              = 0x1  	NL80211_RATE_INFO_HE_4XLTF                              = 0x2 @@ -5292,6 +5436,7 @@ const (  	NL80211_RRF_GO_CONCURRENT                               = 0x1000  	NL80211_RRF_IR_CONCURRENT                               = 0x1000  	NL80211_RRF_NO_160MHZ                                   = 0x10000 +	NL80211_RRF_NO_320MHZ                                   = 0x40000  	NL80211_RRF_NO_80MHZ                                    = 0x8000  	NL80211_RRF_NO_CCK                                      = 0x2  	NL80211_RRF_NO_HE                                       = 0x20000 diff --git a/vendor/golang.org/x/sys/windows/syscall_windows.go b/vendor/golang.org/x/sys/windows/syscall_windows.go index a49853e9d..41cb3c01f 100644 --- a/vendor/golang.org/x/sys/windows/syscall_windows.go +++ b/vendor/golang.org/x/sys/windows/syscall_windows.go @@ -10,7 +10,6 @@ import (  	errorspkg "errors"  	"fmt"  	"runtime" -	"strings"  	"sync"  	"syscall"  	"time" @@ -87,22 +86,13 @@ func StringToUTF16(s string) []uint16 {  // s, with a terminating NUL added. If s contains a NUL byte at any  // location, it returns (nil, syscall.EINVAL).  func UTF16FromString(s string) ([]uint16, error) { -	if strings.IndexByte(s, 0) != -1 { -		return nil, syscall.EINVAL -	} -	return utf16.Encode([]rune(s + "\x00")), nil +	return syscall.UTF16FromString(s)  }  // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,  // with a terminating NUL and any bytes after the NUL removed.  func UTF16ToString(s []uint16) string { -	for i, v := range s { -		if v == 0 { -			s = s[:i] -			break -		} -	} -	return string(utf16.Decode(s)) +	return syscall.UTF16ToString(s)  }  // StringToUTF16Ptr is deprecated. Use UTF16PtrFromString instead. diff --git a/vendor/modules.txt b/vendor/modules.txt index c3449cfad..bc8da6918 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -726,7 +726,7 @@ golang.org/x/image/webp  # golang.org/x/mod v0.6.0-dev.0.20220907135952-02c991387e35  ## explicit; go 1.17  golang.org/x/mod/semver -# golang.org/x/net v0.5.0 +# golang.org/x/net v0.7.0  ## explicit; go 1.17  golang.org/x/net/bpf  golang.org/x/net/context @@ -747,7 +747,7 @@ golang.org/x/net/publicsuffix  ## explicit; go 1.17  golang.org/x/oauth2  golang.org/x/oauth2/internal -# golang.org/x/sys v0.4.0 +# golang.org/x/sys v0.5.0  ## explicit; go 1.17  golang.org/x/sys/cpu  golang.org/x/sys/execabs | 
