Skip to content

Commit 43d6f21

Browse files
committed
libct: we should set envs after we are in the jail of the container
Because we have to set a default HOME env for the current container user, so we should set it after we are in the jail of the container, or else we'll use host's `/etc/passwd` to get a wrong HOME value. Please see: #4688. Signed-off-by: lifubang <[email protected]>
1 parent 4f3893e commit 43d6f21

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

libcontainer/init_linux.go

+8-6
Original file line numberDiff line numberDiff line change
@@ -233,12 +233,6 @@ func startInitialization() (retErr error) {
233233
}
234234

235235
func containerInit(t initType, config *initConfig, pipe *syncSocket, consoleSocket, pidfdSocket, fifoFile, logPipe *os.File) error {
236-
env, err := prepareEnv(config.Env, config.UID)
237-
if err != nil {
238-
return err
239-
}
240-
config.Env = env
241-
242236
// Clean the RLIMIT_NOFILE cache in go runtime.
243237
// Issue: https://github.com/opencontainers/runc/issues/4195
244238
maybeClearRlimitNofileCache(config.Rlimits)
@@ -325,6 +319,14 @@ func finalizeNamespace(config *initConfig) error {
325319
}
326320
}
327321

322+
// We should set envs after we are in the jail of the container.
323+
// Please see https://github.com/opencontainers/runc/issues/4688
324+
env, err := prepareEnv(config.Env, config.UID)
325+
if err != nil {
326+
return err
327+
}
328+
config.Env = env
329+
328330
w, err := capabilities.New(config.Capabilities)
329331
if err != nil {
330332
return err

0 commit comments

Comments
 (0)