]> ruderich.org/simon Gitweb - nsscash/nsscash.git/commitdiff
nsscash: support longer lines in passwd/group files
authorSimon Ruderich <simon@ruderich.org>
Tue, 11 Jun 2019 08:53:43 +0000 (10:53 +0200)
committerSimon Ruderich <simon@ruderich.org>
Tue, 11 Jun 2019 08:53:43 +0000 (10:53 +0200)
bufio.Scanner has an internal limit on the maximum token (= line)
length. We want to support larger lines in the future.

group.go
passwd.go

index 0ad86711431d068ff0922ceace8c39cdba01a1a0..214f91438d78740a331c487cbfe5ecab1355718c 100644 (file)
--- a/group.go
+++ b/group.go
@@ -62,9 +62,15 @@ func toKey(g Group) GroupKey {
 func ParseGroups(r io.Reader) ([]Group, error) {
        var res []Group
 
-       s := bufio.NewScanner(r)
-       for s.Scan() {
-               t := s.Text()
+       s := bufio.NewReader(r)
+       for {
+               t, err := s.ReadString('\n')
+               if err != nil {
+                       if err == io.EOF {
+                               break
+                       }
+                       return nil, err
+               }
 
                x := strings.Split(t, ":")
                if len(x) != 4 {
@@ -76,6 +82,9 @@ func ParseGroups(r io.Reader) ([]Group, error) {
                        return nil, errors.Wrapf(err, "invalid gid in line %q", t)
                }
 
+               // ReadString() contains the delimiter
+               x[3] = strings.TrimSuffix(x[3], "\n")
+
                var members []string
                // No members must result in empty slice, not slice with the
                // empty string
@@ -89,10 +98,6 @@ func ParseGroups(r io.Reader) ([]Group, error) {
                        Members: members,
                })
        }
-       err := s.Err()
-       if err != nil {
-               return nil, err
-       }
 
        return res, nil
 }
index 07a62d8b8667d510d395fb8b5bd4a8a0c2c55570..2698765212e0975738ebc8d8273140daee528816 100644 (file)
--- a/passwd.go
+++ b/passwd.go
@@ -48,9 +48,15 @@ type Passwd struct {
 func ParsePasswds(r io.Reader) ([]Passwd, error) {
        var res []Passwd
 
-       s := bufio.NewScanner(r)
-       for s.Scan() {
-               t := s.Text()
+       s := bufio.NewReader(r)
+       for {
+               t, err := s.ReadString('\n')
+               if err != nil {
+                       if err == io.EOF {
+                               break
+                       }
+                       return nil, err
+               }
 
                x := strings.Split(t, ":")
                if len(x) != 7 {
@@ -73,14 +79,10 @@ func ParsePasswds(r io.Reader) ([]Passwd, error) {
                        Gid:    gid,
                        Gecos:  x[4],
                        Dir:    x[5],
-                       Shell:  x[6],
+                       // ReadString() contains the delimiter
+                       Shell: strings.TrimSuffix(x[6], "\n"),
                })
        }
-       err := s.Err()
-       if err != nil {
-               return nil, err
-       }
-
        return res, nil
 }