Skip to content

Commit

Permalink
Apply default permission mode to all files/dirs in an artifact archive
Browse files Browse the repository at this point in the history
Files: 0644
Directories: 0755

closes #1019

Signed-off-by: Max Jonas Werner <max@e13.dev>
  • Loading branch information
makkes authored and hiddeco committed Feb 14, 2023
1 parent e24ce86 commit bfa61d9
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 9 deletions.
11 changes: 11 additions & 0 deletions controllers/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ import (

const GarbageCountLimit = 1000

const (
// defaultFileMode is the permission mode applied to all files inside of an artifact archive.
defaultFileMode int64 = 0o644
// defaultDirMode is the permission mode applied to all directories inside of an artifact archive.
defaultDirMode int64 = 0o755
)

// Storage manages artifacts
type Storage struct {
// BasePath is the local directory path where the source artifacts are stored.
Expand Down Expand Up @@ -409,6 +416,10 @@ func (s *Storage) Archive(artifact *sourcev1.Artifact, dir string, filter Archiv
header.ModTime = time.Time{}
header.AccessTime = time.Time{}
header.ChangeTime = time.Time{}
header.Mode = defaultFileMode
if fi.Mode().IsDir() {
header.Mode = defaultDirMode
}

if err := tw.WriteHeader(header); err != nil {
return err
Expand Down
25 changes: 16 additions & 9 deletions controllers/storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ func TestStorageConstructor(t *testing.T) {

// walks a tar.gz and looks for paths with the basename. It does not match
// symlinks properly at this time because that's painful.
func walkTar(tarFile string, match string, dir bool) (int64, bool, error) {
func walkTar(tarFile string, match string, dir bool) (int64, int64, bool, error) {
f, err := os.Open(tarFile)
if err != nil {
return 0, false, fmt.Errorf("could not open file: %w", err)
return 0, 0, false, fmt.Errorf("could not open file: %w", err)
}
defer f.Close()

gzr, err := gzip.NewReader(f)
if err != nil {
return 0, false, fmt.Errorf("could not unzip file: %w", err)
return 0, 0, false, fmt.Errorf("could not unzip file: %w", err)
}
defer gzr.Close()

Expand All @@ -79,24 +79,24 @@ func walkTar(tarFile string, match string, dir bool) (int64, bool, error) {
if err == io.EOF {
break
} else if err != nil {
return 0, false, fmt.Errorf("corrupt tarball reading header: %w", err)
return 0, 0, false, fmt.Errorf("corrupt tarball reading header: %w", err)
}

switch header.Typeflag {
case tar.TypeDir:
if header.Name == match && dir {
return 0, true, nil
return 0, header.Mode, true, nil
}
case tar.TypeReg:
if header.Name == match {
return header.Size, true, nil
return header.Size, header.Mode, true, nil
}
default:
// skip
}
}

return 0, false, nil
return 0, 0, false, nil
}

func TestStorage_Archive(t *testing.T) {
Expand Down Expand Up @@ -134,7 +134,7 @@ func TestStorage_Archive(t *testing.T) {
if !mustExist {
name = name[1:]
}
s, exist, err := walkTar(storage.LocalPath(artifact), name, false)
s, m, exist, err := walkTar(storage.LocalPath(artifact), name, false)
if err != nil {
t.Fatalf("failed reading tarball: %v", err)
}
Expand All @@ -148,13 +148,16 @@ func TestStorage_Archive(t *testing.T) {
t.Errorf("tarball contained excluded file %q", name)
}
}
if exist && m != defaultFileMode {
t.Fatalf("%q mode %v != %v", name, m, defaultFileMode)
}
}
for _, name := range dirs {
mustExist := !(name[0:1] == "!")
if !mustExist {
name = name[1:]
}
_, exist, err := walkTar(storage.LocalPath(artifact), name, true)
_, m, exist, err := walkTar(storage.LocalPath(artifact), name, true)
if err != nil {
t.Fatalf("failed reading tarball: %v", err)
}
Expand All @@ -165,6 +168,10 @@ func TestStorage_Archive(t *testing.T) {
t.Errorf("tarball contained excluded file %q", name)
}
}
if exist && m != defaultDirMode {
t.Fatalf("%q mode %v != %v", name, m, defaultDirMode)
}

}
}

Expand Down

0 comments on commit bfa61d9

Please sign in to comment.