Skip to content

Commit 1fd0dc1

Browse files
Merge pull request #1884 from giuseppe/revert-bring-read-mappings-proc
Revert "bring read mappings proc into c/storage"
2 parents dfdc6bf + 5d45d46 commit 1fd0dc1

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

pkg/unshare/unshare_linux.go

-31
Original file line numberDiff line numberDiff line change
@@ -708,37 +708,6 @@ func GetSubIDMappings(user, group string) ([]specs.LinuxIDMapping, []specs.Linux
708708
return uidmap, gidmap, nil
709709
}
710710

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-
742711
// ParseIDMappings parses mapping triples.
743712
func ParseIDMappings(uidmap, gidmap []string) ([]idtools.IDMap, []idtools.IDMap, error) {
744713
uid, err := idtools.ParseIDMap(uidmap, "userns-uid-map")

0 commit comments

Comments
 (0)