@@ -478,12 +478,13 @@ func WithUser(userstr string) SpecOpts {
478
478
}
479
479
f := func (root string ) error {
480
480
if username != "" {
481
- uid , _ , err = getUIDGIDFromPath (root , func (u user.User ) bool {
481
+ user , err := getUserFromPath (root , func (u user.User ) bool {
482
482
return u .Name == username
483
483
})
484
484
if err != nil {
485
485
return err
486
486
}
487
+ uid = uint32 (user .Uid )
487
488
}
488
489
if groupname != "" {
489
490
gid , err = getGIDFromPath (root , func (g user.Group ) bool {
@@ -541,7 +542,7 @@ func WithUserID(uid uint32) SpecOpts {
541
542
if ! isRootfsAbs (s .Root .Path ) {
542
543
return errors .Errorf ("rootfs absolute path is required" )
543
544
}
544
- uuid , ugid , err := getUIDGIDFromPath (s .Root .Path , func (u user.User ) bool {
545
+ user , err := getUserFromPath (s .Root .Path , func (u user.User ) bool {
545
546
return u .Uid == int (uid )
546
547
})
547
548
if err != nil {
@@ -551,7 +552,7 @@ func WithUserID(uid uint32) SpecOpts {
551
552
}
552
553
return err
553
554
}
554
- s .Process .User .UID , s .Process .User .GID = uuid , ugid
555
+ s .Process .User .UID , s .Process .User .GID = uint32 ( user . Uid ), uint32 ( user . Gid )
555
556
return nil
556
557
557
558
}
@@ -567,7 +568,7 @@ func WithUserID(uid uint32) SpecOpts {
567
568
return err
568
569
}
569
570
return mount .WithTempMount (ctx , mounts , func (root string ) error {
570
- uuid , ugid , err := getUIDGIDFromPath (root , func (u user.User ) bool {
571
+ user , err := getUserFromPath (root , func (u user.User ) bool {
571
572
return u .Uid == int (uid )
572
573
})
573
574
if err != nil {
@@ -577,7 +578,7 @@ func WithUserID(uid uint32) SpecOpts {
577
578
}
578
579
return err
579
580
}
580
- s .Process .User .UID , s .Process .User .GID = uuid , ugid
581
+ s .Process .User .UID , s .Process .User .GID = uint32 ( user . Uid ), uint32 ( user . Gid )
581
582
return nil
582
583
})
583
584
}
@@ -595,13 +596,13 @@ func WithUsername(username string) SpecOpts {
595
596
if ! isRootfsAbs (s .Root .Path ) {
596
597
return errors .Errorf ("rootfs absolute path is required" )
597
598
}
598
- uid , gid , err := getUIDGIDFromPath (s .Root .Path , func (u user.User ) bool {
599
+ user , err := getUserFromPath (s .Root .Path , func (u user.User ) bool {
599
600
return u .Name == username
600
601
})
601
602
if err != nil {
602
603
return err
603
604
}
604
- s .Process .User .UID , s .Process .User .GID = uid , gid
605
+ s .Process .User .UID , s .Process .User .GID = uint32 ( user . Uid ), uint32 ( user . Gid )
605
606
return nil
606
607
}
607
608
if c .Snapshotter == "" {
@@ -616,13 +617,13 @@ func WithUsername(username string) SpecOpts {
616
617
return err
617
618
}
618
619
return mount .WithTempMount (ctx , mounts , func (root string ) error {
619
- uid , gid , err := getUIDGIDFromPath (root , func (u user.User ) bool {
620
+ user , err := getUserFromPath (root , func (u user.User ) bool {
620
621
return u .Name == username
621
622
})
622
623
if err != nil {
623
624
return err
624
625
}
625
- s .Process .User .UID , s .Process .User .GID = uid , gid
626
+ s .Process .User .UID , s .Process .User .GID = uint32 ( user . Uid ), uint32 ( user . Gid )
626
627
return nil
627
628
})
628
629
} else if s .Windows != nil {
@@ -636,14 +637,28 @@ func WithUsername(username string) SpecOpts {
636
637
637
638
// WithAdditionalGIDs sets the OCI spec's additionalGids array to any additional groups listed
638
639
// for a particular user in the /etc/groups file of the image's root filesystem
639
- func WithAdditionalGIDs (username string ) SpecOpts {
640
+ // The passed in user can be either a uid or a username.
641
+ func WithAdditionalGIDs (userstr string ) SpecOpts {
640
642
return func (ctx context.Context , client Client , c * containers.Container , s * Spec ) (err error ) {
641
643
setProcess (s )
642
- if c .Snapshotter == "" && c .SnapshotKey == "" {
643
- if ! isRootfsAbs (s .Root .Path ) {
644
- return errors .Errorf ("rootfs absolute path is required" )
644
+ setAdditionalGids := func (root string ) error {
645
+ var username string
646
+ uid , err := strconv .Atoi (userstr )
647
+ if err == nil {
648
+ user , err := getUserFromPath (root , func (u user.User ) bool {
649
+ return u .Uid == uid
650
+ })
651
+ if err != nil {
652
+ if os .IsNotExist (err ) || err == errNoUsersFound {
653
+ return nil
654
+ }
655
+ return err
656
+ }
657
+ username = user .Name
658
+ } else {
659
+ username = userstr
645
660
}
646
- gids , err := getSupplementalGroupsFromPath (s . Root . Path , func (g user.Group ) bool {
661
+ gids , err := getSupplementalGroupsFromPath (root , func (g user.Group ) bool {
647
662
// we only want supplemental groups
648
663
if g .Name == username {
649
664
return false
@@ -656,11 +671,20 @@ func WithAdditionalGIDs(username string) SpecOpts {
656
671
return false
657
672
})
658
673
if err != nil {
674
+ if os .IsNotExist (err ) {
675
+ return nil
676
+ }
659
677
return err
660
678
}
661
679
s .Process .User .AdditionalGids = gids
662
680
return nil
663
681
}
682
+ if c .Snapshotter == "" && c .SnapshotKey == "" {
683
+ if ! isRootfsAbs (s .Root .Path ) {
684
+ return errors .Errorf ("rootfs absolute path is required" )
685
+ }
686
+ return setAdditionalGids (s .Root .Path )
687
+ }
664
688
if c .Snapshotter == "" {
665
689
return errors .Errorf ("no snapshotter set for container" )
666
690
}
@@ -672,25 +696,7 @@ func WithAdditionalGIDs(username string) SpecOpts {
672
696
if err != nil {
673
697
return err
674
698
}
675
- return mount .WithTempMount (ctx , mounts , func (root string ) error {
676
- gids , err := getSupplementalGroupsFromPath (root , func (g user.Group ) bool {
677
- // we only want supplemental groups
678
- if g .Name == username {
679
- return false
680
- }
681
- for _ , entry := range g .List {
682
- if entry == username {
683
- return true
684
- }
685
- }
686
- return false
687
- })
688
- if err != nil {
689
- return err
690
- }
691
- s .Process .User .AdditionalGids = gids
692
- return nil
693
- })
699
+ return mount .WithTempMount (ctx , mounts , setAdditionalGids )
694
700
}
695
701
}
696
702
@@ -741,20 +747,19 @@ func WithAmbientCapabilities(caps []string) SpecOpts {
741
747
742
748
var errNoUsersFound = errors .New ("no users found" )
743
749
744
- func getUIDGIDFromPath (root string , filter func (user.User ) bool ) (uid , gid uint32 , err error ) {
750
+ func getUserFromPath (root string , filter func (user.User ) bool ) (user. User , error ) {
745
751
ppath , err := fs .RootPath (root , "/etc/passwd" )
746
752
if err != nil {
747
- return 0 , 0 , err
753
+ return user. User {} , err
748
754
}
749
755
users , err := user .ParsePasswdFileFilter (ppath , filter )
750
756
if err != nil {
751
- return 0 , 0 , err
757
+ return user. User {} , err
752
758
}
753
759
if len (users ) == 0 {
754
- return 0 , 0 , errNoUsersFound
760
+ return user. User {} , errNoUsersFound
755
761
}
756
- u := users [0 ]
757
- return uint32 (u .Uid ), uint32 (u .Gid ), nil
762
+ return users [0 ], nil
758
763
}
759
764
760
765
var errNoGroupsFound = errors .New ("no groups found" )
0 commit comments