|
|
@ -42,6 +42,7 @@ type Sandbox struct {
|
|
|
|
ready sync.WaitGroup
|
|
|
|
ready sync.WaitGroup
|
|
|
|
network *network.SandboxNetwork
|
|
|
|
network *network.SandboxNetwork
|
|
|
|
mountedFiles []string
|
|
|
|
mountedFiles []string
|
|
|
|
|
|
|
|
rawEnv []string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func createSocketPath(base string) (string, error) {
|
|
|
|
func createSocketPath(base string) (string, error) {
|
|
|
@ -72,10 +73,12 @@ func createInitCommand(initPath string, cloneNet bool) *exec.Cmd {
|
|
|
|
Cloneflags: cloneFlags,
|
|
|
|
Cloneflags: cloneFlags,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmd.Env = []string{}
|
|
|
|
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
return cmd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func (d *daemonState) launch(p *oz.Profile, msg *LaunchMsg, uid, gid uint32, log *logging.Logger) (*Sandbox, error) {
|
|
|
|
func (d *daemonState) launch(p *oz.Profile, msg *LaunchMsg, rawEnv []string, uid, gid uint32, log *logging.Logger) (*Sandbox, error) {
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
u, err := user.LookupId(fmt.Sprintf("%d", uid))
|
|
|
|
u, err := user.LookupId(fmt.Sprintf("%d", uid))
|
|
|
@ -166,6 +169,7 @@ func (d *daemonState) launch(p *oz.Profile, msg *LaunchMsg, uid, gid uint32, log
|
|
|
|
addr: socketPath,
|
|
|
|
addr: socketPath,
|
|
|
|
stderr: pp,
|
|
|
|
stderr: pp,
|
|
|
|
network: stn,
|
|
|
|
network: stn,
|
|
|
|
|
|
|
|
rawEnv: rawEnv,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if p.Networking.Nettype == network.TYPE_BRIDGE {
|
|
|
|
if p.Networking.Nettype == network.TYPE_BRIDGE {
|
|
|
@ -406,6 +410,8 @@ func (sbox *Sandbox) startXpraClient() {
|
|
|
|
sbox.profile.Name,
|
|
|
|
sbox.profile.Name,
|
|
|
|
sbox.daemon.log)
|
|
|
|
sbox.daemon.log)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sbox.xpra.Process.Env = append(sbox.rawEnv, sbox.xpra.Process.Env...)
|
|
|
|
|
|
|
|
|
|
|
|
if sbox.daemon.config.LogXpra {
|
|
|
|
if sbox.daemon.config.LogXpra {
|
|
|
|
sbox.setupXpraLogging()
|
|
|
|
sbox.setupXpraLogging()
|
|
|
|
}
|
|
|
|
}
|
|
|
|