Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for Unshare (0.15 sec)

  1. tools/istio-iptables/pkg/dependencies/implementation_linux_test.go

    package dependencies
    
    import (
    	"testing"
    
    	// Create a new network namespace. This will have the 'lo' interface ready but nothing else.
    	_ "github.com/howardjohn/unshare-go/netns"
    	// Create a new user namespace. This will map the current UID to 0.
    	_ "github.com/howardjohn/unshare-go/userns"
    	"github.com/vishvananda/netns"
    
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 26 20:05:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/syscall/exec_linux_test.go

    		// This test expects there to be at least 1 more network interface
    		// in addition to the local network interface, so that it can tell
    		// that unshare worked.
    		t.Skip("not enough network interfaces to test unshare with")
    	}
    
    	cmd := testenv.Command(t, "cat", path)
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Unshareflags: syscall.CLONE_NEWNET,
    	}
    	out, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/syscalls_linux.go

    	// This is imperative for checking for OS thread state
    	// after an unshare since os.Getwd might just check the
    	// environment, or use some other mechanism.
    	var buf [4096]byte
    	n, err := syscall.Getcwd(buf[:])
    	if err != nil {
    		return "", err
    	}
    	// Subtract one for null terminator.
    	return string(buf[:n-1]), nil
    }
    
    func unshareFs() error {
    	err := syscall.Unshare(syscall.CLONE_FS)
    	if testenv.SyscallIsNotSupported(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/syscall/exec_linux.go

    				goto childerror
    			}
    		}
    
    		// The unshare system call in Linux doesn't unshare mount points
    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    		// to unshare and the namespaces are unconditionally unshared.
    		// To make this model work we must further mark / as MS_PRIVATE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	}
    	// setupSandbox builds the sandbox.
    	setupSandbox := func() error {
    		// First, unshare the mount namespace. This allows us to create custom mounts without impacting the host
    		if err := unix.Unshare(unix.CLONE_NEWNS); err != nil {
    			return fmt.Errorf("failed to unshare to new mount namespace: %v", err)
    		}
    		if err := n.Set(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/lockosthread.go

    		runtime.LockOSThread()
    
    		// Unshare details about the FS, like the CWD, with
    		// the rest of the process on this thread.
    		// On systems other than Linux, this is a no-op.
    		if err := unshareFs(); err != nil {
    			if err == errNotPermitted {
    				println("unshare not permitted")
    				os.Exit(0)
    			}
    			println("failed to unshare fs:", err.Error())
    			os.Exit(1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue1435.go

    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    	if runtime.GOOS == "linux" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux_test.go

    		// The Go build system's swarming user is known not to be root.
    		// Unfortunately, it sometimes appears as root due the current
    		// implementation of a no-network check using 'unshare -n -r'.
    		// Since this test does need root to work, we need to skip it.
    		t.Skip("skipping root only test on a non-root builder")
    	}
    
    	if runtime.GOOS == "android" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s

    	MOVD $·Syncfs(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_UnshareAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Unshare(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    TEXT ·get_LinkatAddr(SB), NOSPLIT|NOFRAME, $0-8
    	MOVD $·Linkat(SB), R8
    	MOVD R8, ret+0(FP)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. go.mod

    	github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
    	github.com/hashicorp/go-multierror v1.1.1
    	github.com/hashicorp/go-version v1.7.0
    	github.com/hashicorp/golang-lru/v2 v2.0.7
    	github.com/howardjohn/unshare-go v0.4.0
    	github.com/kr/pretty v0.3.1
    	github.com/kylelemons/godebug v1.1.0
    	github.com/lestrrat-go/jwx v1.2.29
    	github.com/mattn/go-isatty v0.0.20
    	github.com/miekg/dns v1.1.59
    	github.com/mitchellh/copystructure v1.2.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top