@@ -708,37 +708,6 @@ func GetSubIDMappings(user, group string) ([]specs.LinuxIDMapping, []specs.Linux
708
708
return uidmap , gidmap , nil
709
709
}
710
710
711
- // ReadMappingsProc parses and returns the ID mappings at the specified path.
712
- func ReadMappingsProc (path string ) ([]idtools.IDMap , error ) {
713
- file , err := os .Open (path )
714
- if err != nil {
715
- return nil , err
716
- }
717
- defer file .Close ()
718
-
719
- mappings := []idtools.IDMap {}
720
-
721
- buf := bufio .NewReader (file )
722
- for {
723
- line , _ , err := buf .ReadLine ()
724
- if err != nil {
725
- if err == io .EOF {
726
- return mappings , nil
727
- }
728
- return nil , fmt .Errorf ("cannot read line from %s: %w" , path , err )
729
- }
730
- if line == nil {
731
- return mappings , nil
732
- }
733
-
734
- containerID , hostID , size := 0 , 0 , 0
735
- if _ , err := fmt .Sscanf (string (line ), "%d %d %d" , & containerID , & hostID , & size ); err != nil {
736
- return nil , fmt .Errorf ("cannot parse %s: %w" , string (line ), err )
737
- }
738
- mappings = append (mappings , idtools.IDMap {ContainerID : containerID , HostID : hostID , Size : size })
739
- }
740
- }
741
-
742
711
// ParseIDMappings parses mapping triples.
743
712
func ParseIDMappings (uidmap , gidmap []string ) ([]idtools.IDMap , []idtools.IDMap , error ) {
744
713
uid , err := idtools .ParseIDMap (uidmap , "userns-uid-map" )
0 commit comments