mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-02-14 10:00:11 +00:00
Bumps [helm.sh/helm/v3](https://github.com/helm/helm) from 3.15.3 to 3.16.2. - [Release notes](https://github.com/helm/helm/releases) - [Commits](https://github.com/helm/helm/compare/v3.15.3...v3.16.2) --- updated-dependencies: - dependency-name: helm.sh/helm/v3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
69 lines
1.8 KiB
Go
69 lines
1.8 KiB
Go
//go:build linux
|
|
|
|
// Copyright (C) 2024 SUSE LLC. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package securejoin
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
type forceGetProcRootLevel int
|
|
|
|
const (
|
|
forceGetProcRootDefault forceGetProcRootLevel = iota
|
|
forceGetProcRootOpenTree // force open_tree()
|
|
forceGetProcRootOpenTreeAtRecursive // force open_tree(AT_RECURSIVE)
|
|
forceGetProcRootUnsafe // force open()
|
|
)
|
|
|
|
var testingForceGetProcRoot *forceGetProcRootLevel
|
|
|
|
func testingCheckClose(check bool, f *os.File) bool {
|
|
if check {
|
|
if f != nil {
|
|
_ = f.Close()
|
|
}
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
func testingForcePrivateProcRootOpenTree(f *os.File) bool {
|
|
return testing.Testing() && testingForceGetProcRoot != nil &&
|
|
testingCheckClose(*testingForceGetProcRoot >= forceGetProcRootOpenTree, f)
|
|
}
|
|
|
|
func testingForcePrivateProcRootOpenTreeAtRecursive(f *os.File) bool {
|
|
return testing.Testing() && testingForceGetProcRoot != nil &&
|
|
testingCheckClose(*testingForceGetProcRoot >= forceGetProcRootOpenTreeAtRecursive, f)
|
|
}
|
|
|
|
func testingForceGetProcRootUnsafe() bool {
|
|
return testing.Testing() && testingForceGetProcRoot != nil &&
|
|
*testingForceGetProcRoot >= forceGetProcRootUnsafe
|
|
}
|
|
|
|
type forceProcThreadSelfLevel int
|
|
|
|
const (
|
|
forceProcThreadSelfDefault forceProcThreadSelfLevel = iota
|
|
forceProcSelfTask
|
|
forceProcSelf
|
|
)
|
|
|
|
var testingForceProcThreadSelf *forceProcThreadSelfLevel
|
|
|
|
func testingForceProcSelfTask() bool {
|
|
return testing.Testing() && testingForceProcThreadSelf != nil &&
|
|
*testingForceProcThreadSelf >= forceProcSelfTask
|
|
}
|
|
|
|
func testingForceProcSelf() bool {
|
|
return testing.Testing() && testingForceProcThreadSelf != nil &&
|
|
*testingForceProcThreadSelf >= forceProcSelf
|
|
}
|