Renovate Bot
e18d664d5a
Some checks failed
Dev Version / Release (push) Has been cancelled
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang.org/x/crypto | require | minor | `v0.14.0` -> `v0.27.0` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yMS4yIiwidXBkYXRlZEluVmVyIjoiMzguMjEuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #6 Co-authored-by: Renovate Bot <renovate@keks.cloud> Co-committed-by: Renovate Bot <renovate@keks.cloud>
111 lines
2.3 KiB
Go
111 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
|
|
}
|