mirror of
https://github.com/moby/buildkit.git
synced 2026-08-09 01:01:08 +00:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
|
|
"github.com/Microsoft/go-winio"
|
|
_ "github.com/moby/buildkit/solver/llbsolver/ops"
|
|
_ "github.com/moby/buildkit/util/system/getuserinfo"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
const socketScheme = "npipe://"
|
|
|
|
func listenFD(_ string, _ *tls.Config) (net.Listener, error) {
|
|
return nil, errors.New("listening server on fd not supported on windows")
|
|
}
|
|
|
|
func getLocalListener(listenerPath, secDescriptor string) (net.Listener, error) {
|
|
if secDescriptor == "" {
|
|
// Allow generic read and generic write access to authenticated users
|
|
// and system users. On Linux, this pipe seems to be given rw access to
|
|
// user, group and others (666).
|
|
// TODO(gabriel-samfira): should we restrict access to this pipe to just
|
|
// authenticated users? Or Administrators group?
|
|
secDescriptor = "D:P(A;;GRGW;;;AU)(A;;GRGW;;;SY)"
|
|
}
|
|
|
|
pc := &winio.PipeConfig{
|
|
SecurityDescriptor: secDescriptor,
|
|
}
|
|
|
|
listener, err := winio.ListenPipe(listenerPath, pc)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "creating listener")
|
|
}
|
|
return listener, nil
|
|
}
|
|
|
|
func groupToSecurityDescriptor(group string) (string, error) {
|
|
sddl := "D:P(A;;GA;;;BA)(A;;GA;;;SY)"
|
|
if group != "" {
|
|
for _, g := range strings.Split(group, ",") {
|
|
sid, err := winio.LookupSidByName(g)
|
|
if err != nil {
|
|
return "", errors.Wrapf(err, "failed to lookup sid for group %s", g)
|
|
}
|
|
sddl += fmt.Sprintf("(A;;GRGW;;;%s)", sid)
|
|
}
|
|
}
|
|
return sddl, nil
|
|
}
|