From a74a29bc937cf75c1af4166e746df49ef53b2fc2 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 23 May 2019 14:53:44 +0200 Subject: ipc: use simplified fork of winio --- ipc/winpipe/sd.go | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ipc/winpipe/sd.go (limited to 'ipc/winpipe/sd.go') diff --git a/ipc/winpipe/sd.go b/ipc/winpipe/sd.go new file mode 100644 index 0000000..5f99a32 --- /dev/null +++ b/ipc/winpipe/sd.go @@ -0,0 +1,29 @@ +// +build windows + +/* SPDX-License-Identifier: MIT + * + * Copyright (C) 2005 Microsoft + * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved. + */ + +package winpipe + +import ( + "unsafe" +) + +//sys convertStringSecurityDescriptorToSecurityDescriptor(str string, revision uint32, sd *uintptr, size *uint32) (err error) = advapi32.ConvertStringSecurityDescriptorToSecurityDescriptorW +//sys localFree(mem uintptr) = LocalFree +//sys getSecurityDescriptorLength(sd uintptr) (len uint32) = advapi32.GetSecurityDescriptorLength + +func SddlToSecurityDescriptor(sddl string) ([]byte, error) { + var sdBuffer uintptr + err := convertStringSecurityDescriptorToSecurityDescriptor(sddl, 1, &sdBuffer, nil) + if err != nil { + return nil, err + } + defer localFree(sdBuffer) + sd := make([]byte, getSecurityDescriptorLength(sdBuffer)) + copy(sd, (*[0xffff]byte)(unsafe.Pointer(sdBuffer))[:len(sd)]) + return sd, nil +} \ No newline at end of file -- cgit v1.2.3-59-g8ed1b