containerd/integration/images/volume-ownership/tools/get_owner_windows.go
Gabriel Adrian Samfira 1698d061c3 Build volume test images on Windows
* Adds Windows dockerfile for volume-ownership image
  * Build volume-copy-up on Windows
  * Adds a helper tool that fetches the owner username and SID of
a file or folder
  * Adds README
  * Remove 2004 from Windows versions
  * Add ltsc2022 to Windows versions

Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
2021-11-25 09:54:35 +00:00

54 lines
1.2 KiB
Go

/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"fmt"
"log"
"os"
"golang.org/x/sys/windows"
)
func main() {
if len(os.Args) != 2 {
fmt.Printf("Usage: %s file_or_directory\n", os.Args[0])
os.Exit(1)
}
if _, err := os.Stat(os.Args[1]); err != nil {
log.Fatal(err)
}
secInfo, err := windows.GetNamedSecurityInfo(
os.Args[1], windows.SE_FILE_OBJECT,
windows.OWNER_SECURITY_INFORMATION|windows.DACL_SECURITY_INFORMATION)
if err != nil {
log.Fatal(err)
}
sid, _, err := secInfo.Owner()
if err != nil {
log.Fatal(err)
}
acct, _, _, err := sid.LookupAccount(".")
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s:%s", acct, sid)
}