mirror of
https://github.com/rancher/plugins.git
synced 2025-07-06 11:46:22 +00:00
Bumps the golang group with 3 updates: [github.com/Microsoft/hcsshim](https://github.com/Microsoft/hcsshim), [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) and [github.com/onsi/gomega](https://github.com/onsi/gomega). Updates `github.com/Microsoft/hcsshim` from 0.11.2 to 0.11.4 - [Release notes](https://github.com/Microsoft/hcsshim/releases) - [Commits](https://github.com/Microsoft/hcsshim/compare/v0.11.2...v0.11.4) Updates `github.com/onsi/ginkgo/v2` from 2.13.0 to 2.13.1 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.13.0...v2.13.1) Updates `github.com/onsi/gomega` from 1.29.0 to 1.30.0 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.29.0...v1.30.0) --- updated-dependencies: - dependency-name: github.com/Microsoft/hcsshim dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang ... Signed-off-by: dependabot[bot] <support@github.com>
112 lines
2.3 KiB
Go
112 lines
2.3 KiB
Go
// Copyright 2016 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.
|
|
|
|
package unix
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strconv"
|
|
)
|
|
|
|
// Pledge implements the pledge syscall.
|
|
//
|
|
// This changes both the promises and execpromises; use PledgePromises or
|
|
// PledgeExecpromises to only change the promises or execpromises
|
|
// respectively.
|
|
//
|
|
// For more information see pledge(2).
|
|
func Pledge(promises, execpromises string) error {
|
|
if err := pledgeAvailable(); err != nil {
|
|
return err
|
|
}
|
|
|
|
pptr, err := BytePtrFromString(promises)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
exptr, err := BytePtrFromString(execpromises)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return pledge(pptr, exptr)
|
|
}
|
|
|
|
// PledgePromises implements the pledge syscall.
|
|
//
|
|
// This changes the promises and leaves the execpromises untouched.
|
|
//
|
|
// For more information see pledge(2).
|
|
func PledgePromises(promises string) error {
|
|
if err := pledgeAvailable(); err != nil {
|
|
return err
|
|
}
|
|
|
|
pptr, err := BytePtrFromString(promises)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return pledge(pptr, nil)
|
|
}
|
|
|
|
// PledgeExecpromises implements the pledge syscall.
|
|
//
|
|
// This changes the execpromises and leaves the promises untouched.
|
|
//
|
|
// For more information see pledge(2).
|
|
func PledgeExecpromises(execpromises string) error {
|
|
if err := pledgeAvailable(); err != nil {
|
|
return err
|
|
}
|
|
|
|
exptr, err := BytePtrFromString(execpromises)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return pledge(nil, exptr)
|
|
}
|
|
|
|
// majmin returns major and minor version number for an OpenBSD system.
|
|
func majmin() (major int, minor int, err error) {
|
|
var v Utsname
|
|
err = Uname(&v)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
major, err = strconv.Atoi(string(v.Release[0]))
|
|
if err != nil {
|
|
err = errors.New("cannot parse major version number returned by uname")
|
|
return
|
|
}
|
|
|
|
minor, err = strconv.Atoi(string(v.Release[2]))
|
|
if err != nil {
|
|
err = errors.New("cannot parse minor version number returned by uname")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// pledgeAvailable checks for availability of the pledge(2) syscall
|
|
// based on the running OpenBSD version.
|
|
func pledgeAvailable() error {
|
|
maj, min, err := majmin()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Require OpenBSD 6.4 as a minimum.
|
|
if maj < 6 || (maj == 6 && min <= 3) {
|
|
return fmt.Errorf("cannot call Pledge on OpenBSD %d.%d", maj, min)
|
|
}
|
|
|
|
return nil
|
|
}
|