From 84bba1fd7c522d359fa663250cec9f796d4cb38b Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Thu, 13 Jun 2019 14:58:23 +0200 Subject: conf: known folder path is upstream --- conf/path_windows.go | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'conf/path_windows.go') diff --git a/conf/path_windows.go b/conf/path_windows.go index ec2a715b..8da97708 100644 --- a/conf/path_windows.go +++ b/conf/path_windows.go @@ -6,24 +6,16 @@ package conf import ( - "errors" "log" "os" "path/filepath" "strings" - "unsafe" "golang.org/x/sys/windows" ) -//sys coTaskMemFree(pointer uintptr) = ole32.CoTaskMemFree -//sys shGetKnownFolderPath(id *windows.GUID, flags uint32, token windows.Handle, path **uint16) (ret error) = shell32.SHGetKnownFolderPath //sys getFileSecurity(fileName *uint16, securityInformation uint32, securityDescriptor *byte, descriptorLen uint32, requestedLen *uint32) (err error) = advapi32.GetFileSecurityW //sys getSecurityDescriptorOwner(securityDescriptor *byte, sid **windows.SID, ownerDefaulted *bool) (err error) = advapi32.GetSecurityDescriptorOwner - -var folderIDLocalAppData = windows.GUID{0xf1b32785, 0x6fba, 0x4fcf, [8]byte{0x9d, 0x55, 0x7b, 0x8e, 0x7f, 0x15, 0x70, 0x91}} - -const kfFlagCreate = 0x00008000 const ownerSecurityInformation = 0x00000001 var cachedConfigFileDir string @@ -97,16 +89,10 @@ func RootDirectory() (string, error) { if cachedRootDir != "" { return cachedRootDir, nil } - var path *uint16 - err := shGetKnownFolderPath(&folderIDLocalAppData, kfFlagCreate, 0, &path) + root, err := windows.KnownFolderPath(windows.FOLDERID_LocalAppData, windows.KF_FLAG_CREATE) if err != nil { return "", err } - defer coTaskMemFree(uintptr(unsafe.Pointer(path))) - root := windows.UTF16ToString((*[windows.MAX_LONG_PATH + 1]uint16)(unsafe.Pointer(path))[:]) - if len(root) == 0 { - return "", errors.New("Unable to determine configuration directory") - } c := filepath.Join(root, "WireGuard") err = os.MkdirAll(c, os.ModeDir|0700) if err != nil { -- cgit v1.2.3-59-g8ed1b