Skip to content

Commit

Permalink
Merge pull request #59 from malt3/fix/sort-symlink-keys-in-rpm2tar
Browse files Browse the repository at this point in the history
rpm2tar: traverse symlinks in sorted key order
  • Loading branch information
rmohr committed Jun 20, 2023
2 parents 6a9f524 + ba6dd60 commit efee070
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions cmd/rpm2tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"archive/tar"
"fmt"
"os"
"sort"
"strings"

"github.com/rmohr/bazeldnf/pkg/order"
Expand All @@ -12,11 +13,12 @@ import (
)

type rpm2tarOpts struct {
output string
input []string
symlinks map[string]string
capabilities map[string]string
selinuxLabels map[string]string
output string
input []string
sortedSymlinks []string
symlinks map[string]string
capabilities map[string]string
selinuxLabels map[string]string
}

var rpm2taropts = rpm2tarOpts{}
Expand All @@ -26,6 +28,7 @@ func NewRpm2TarCmd() *cobra.Command {
Use: "rpm2tar",
Short: "convert a rpm to a tar archive",
RunE: func(cmd *cobra.Command, args []string) (err error) {
sortSymlinkKeys()
rpmStream := os.Stdin
tarStream := os.Stdout
if rpm2taropts.output != "" {
Expand All @@ -50,7 +53,8 @@ func NewRpm2TarCmd() *cobra.Command {
if err != nil {
return err
}
for k, v := range rpm2taropts.symlinks {
for _, k := range rpm2taropts.sortedSymlinks {
v := rpm2taropts.symlinks[k]
// If an absolute path is given let's add a `.` in front. This is
// not strictly necessary but adds a more correct tar path
// which aligns with the usual rpm entries which start with `./`
Expand Down Expand Up @@ -108,3 +112,13 @@ func NewRpm2TarCmd() *cobra.Command {
rpm2tarCmd.Flags().MarkShorthandDeprecated("symlinks", "use --symlinks instead")
return rpm2tarCmd
}

func sortSymlinkKeys() {
rpm2taropts.sortedSymlinks = make([]string, len(rpm2taropts.symlinks))
i := 0
for k := range rpm2taropts.symlinks {
rpm2taropts.sortedSymlinks[i] = k
i++
}
sort.Strings(rpm2taropts.sortedSymlinks)
}

0 comments on commit efee070

Please sign in to comment.