Skip to content

Commit 99df1a9

Browse files
committed
Set gid 0 when no group is specified
This change is to match Docker's implementaion of setting gid and groups to 0 when no gid is specified but an explicit uid is set. Fixes #2527 Signed-off-by: Michael Crosby <[email protected]>
1 parent dd97a11 commit 99df1a9

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

container_linux_test.go

+35
Original file line numberDiff line numberDiff line change
@@ -1321,3 +1321,38 @@ func TestContainerNoImage(t *testing.T) {
13211321
t.Fatalf("expected error to be %s but received %s", errdefs.ErrNotFound, err)
13221322
}
13231323
}
1324+
1325+
func TestUIDNoGID(t *testing.T) {
1326+
t.Parallel()
1327+
1328+
ctx, cancel := testContext()
1329+
defer cancel()
1330+
id := t.Name()
1331+
1332+
client, err := newClient(t, address)
1333+
if err != nil {
1334+
t.Fatal(err)
1335+
}
1336+
defer client.Close()
1337+
image, err := client.GetImage(ctx, testImage)
1338+
if err != nil {
1339+
t.Fatal(err)
1340+
}
1341+
1342+
container, err := client.NewContainer(ctx, id, WithNewSnapshot(id, image), WithNewSpec(oci.WithUserID(1000)))
1343+
if err != nil {
1344+
t.Fatal(err)
1345+
}
1346+
defer container.Delete(ctx)
1347+
1348+
spec, err := container.Spec(ctx)
1349+
if err != nil {
1350+
t.Fatal(err)
1351+
}
1352+
if uid := spec.Process.User.UID; uid != 1000 {
1353+
t.Fatalf("expected uid 1000 but received %d", uid)
1354+
}
1355+
if gid := spec.Process.User.GID; gid != 0 {
1356+
t.Fatalf("expected gid 0 but received %d", gid)
1357+
}
1358+
}

oci/spec_opts_unix.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ func WithUserID(uid uint32) SpecOpts {
371371
})
372372
if err != nil {
373373
if os.IsNotExist(err) || err == errNoUsersFound {
374-
s.Process.User.UID, s.Process.User.GID = uid, uid
374+
s.Process.User.UID, s.Process.User.GID = uid, 0
375375
return nil
376376
}
377377
return err
@@ -397,7 +397,7 @@ func WithUserID(uid uint32) SpecOpts {
397397
})
398398
if err != nil {
399399
if os.IsNotExist(err) || err == errNoUsersFound {
400-
s.Process.User.UID, s.Process.User.GID = uid, uid
400+
s.Process.User.UID, s.Process.User.GID = uid, 0
401401
return nil
402402
}
403403
return err

0 commit comments

Comments
 (0)