mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Refactor git command package to improve security and maintainability (#22678)
This PR follows #21535 (and replace #22592) ## Review without space diff https://github.com/go-gitea/gitea/pull/22678/files?diff=split&w=1 ## Purpose of this PR 1. Make git module command completely safe (risky user inputs won't be passed as argument option anymore) 2. Avoid low-level mistakes like https://github.com/go-gitea/gitea/pull/22098#discussion_r1045234918 3. Remove deprecated and dirty `CmdArgCheck` function, hide the `CmdArg` type 4. Simplify code when using git command ## The main idea of this PR * Move the `git.CmdArg` to the `internal` package, then no other package except `git` could use it. Then developers could never do `AddArguments(git.CmdArg(userInput))` any more. * Introduce `git.ToTrustedCmdArgs`, it's for user-provided and already trusted arguments. It's only used in a few cases, for example: use git arguments from config file, help unit test with some arguments. * Introduce `AddOptionValues` and `AddOptionFormat`, they make code more clear and simple: * Before: `AddArguments("-m").AddDynamicArguments(message)` * After: `AddOptionValues("-m", message)` * - * Before: `AddArguments(git.CmdArg(fmt.Sprintf("--author='%s <%s>'", sig.Name, sig.Email)))` * After: `AddOptionFormat("--author='%s <%s>'", sig.Name, sig.Email)` ## FAQ ### Why these changes were not done in #21535 ? #21535 is mainly a search&replace, it did its best to not change too much logic. Making the framework better needs a lot of changes, so this separate PR is needed as the second step. ### The naming of `AddOptionXxx` According to git's manual, the `--xxx` part is called `option`. ### How can it guarantee that `internal.CmdArg` won't be not misused? Go's specification guarantees that. Trying to access other package's internal package causes compilation error. And, `golangci-lint` also denies the git/internal package. Only the `git/command.go` can use it carefully. ### There is still a `ToTrustedCmdArgs`, will it still allow developers to make mistakes and pass untrusted arguments? Generally speaking, no. Because when using `ToTrustedCmdArgs`, the code will be very complex (see the changes for examples). Then developers and reviewers can know that something might be unreasonable. ### Why there was a `CmdArgCheck` and why it's removed? At the moment of #21535, to reduce unnecessary changes, `CmdArgCheck` was introduced as a hacky patch. Now, almost all code could be written as `cmd := NewCommand(); cmd.AddXxx(...)`, then there is no need for `CmdArgCheck` anymore. ### Why many codes for `signArg == ""` is deleted? Because in the old code, `signArg` could never be empty string, it's either `-S[key-id]` or `--no-gpg-sign`. So the `signArg == ""` is just dead code. --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -59,10 +59,10 @@ func (repo *Repository) IsBranchExist(name string) bool {
 | 
			
		||||
	return repo.IsReferenceExist(BranchPrefix + name)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetBranchNames returns branches from the repository, skipping skip initial branches and
 | 
			
		||||
// returning at most limit branches, or all branches if limit is 0.
 | 
			
		||||
// GetBranchNames returns branches from the repository, skipping "skip" initial branches and
 | 
			
		||||
// returning at most "limit" branches, or all branches if "limit" is 0.
 | 
			
		||||
func (repo *Repository) GetBranchNames(skip, limit int) ([]string, int, error) {
 | 
			
		||||
	return callShowRef(repo.Ctx, repo.Path, BranchPrefix, []CmdArg{BranchPrefix, "--sort=-committerdate"}, skip, limit)
 | 
			
		||||
	return callShowRef(repo.Ctx, repo.Path, BranchPrefix, TrustedCmdArgs{BranchPrefix, "--sort=-committerdate"}, skip, limit)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// WalkReferences walks all the references from the repository
 | 
			
		||||
@@ -73,19 +73,19 @@ func WalkReferences(ctx context.Context, repoPath string, walkfn func(sha1, refn
 | 
			
		||||
// WalkReferences walks all the references from the repository
 | 
			
		||||
// refType should be empty, ObjectTag or ObjectBranch. All other values are equivalent to empty.
 | 
			
		||||
func (repo *Repository) WalkReferences(refType ObjectType, skip, limit int, walkfn func(sha1, refname string) error) (int, error) {
 | 
			
		||||
	var args []CmdArg
 | 
			
		||||
	var args TrustedCmdArgs
 | 
			
		||||
	switch refType {
 | 
			
		||||
	case ObjectTag:
 | 
			
		||||
		args = []CmdArg{TagPrefix, "--sort=-taggerdate"}
 | 
			
		||||
		args = TrustedCmdArgs{TagPrefix, "--sort=-taggerdate"}
 | 
			
		||||
	case ObjectBranch:
 | 
			
		||||
		args = []CmdArg{BranchPrefix, "--sort=-committerdate"}
 | 
			
		||||
		args = TrustedCmdArgs{BranchPrefix, "--sort=-committerdate"}
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return walkShowRef(repo.Ctx, repo.Path, args, skip, limit, walkfn)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// callShowRef return refs, if limit = 0 it will not limit
 | 
			
		||||
func callShowRef(ctx context.Context, repoPath, trimPrefix string, extraArgs []CmdArg, skip, limit int) (branchNames []string, countAll int, err error) {
 | 
			
		||||
func callShowRef(ctx context.Context, repoPath, trimPrefix string, extraArgs TrustedCmdArgs, skip, limit int) (branchNames []string, countAll int, err error) {
 | 
			
		||||
	countAll, err = walkShowRef(ctx, repoPath, extraArgs, skip, limit, func(_, branchName string) error {
 | 
			
		||||
		branchName = strings.TrimPrefix(branchName, trimPrefix)
 | 
			
		||||
		branchNames = append(branchNames, branchName)
 | 
			
		||||
@@ -95,7 +95,7 @@ func callShowRef(ctx context.Context, repoPath, trimPrefix string, extraArgs []C
 | 
			
		||||
	return branchNames, countAll, err
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func walkShowRef(ctx context.Context, repoPath string, extraArgs []CmdArg, skip, limit int, walkfn func(sha1, refname string) error) (countAll int, err error) {
 | 
			
		||||
func walkShowRef(ctx context.Context, repoPath string, extraArgs TrustedCmdArgs, skip, limit int, walkfn func(sha1, refname string) error) (countAll int, err error) {
 | 
			
		||||
	stdoutReader, stdoutWriter := io.Pipe()
 | 
			
		||||
	defer func() {
 | 
			
		||||
		_ = stdoutReader.Close()
 | 
			
		||||
@@ -104,7 +104,7 @@ func walkShowRef(ctx context.Context, repoPath string, extraArgs []CmdArg, skip,
 | 
			
		||||
 | 
			
		||||
	go func() {
 | 
			
		||||
		stderrBuilder := &strings.Builder{}
 | 
			
		||||
		args := []CmdArg{"for-each-ref", "--format=%(objectname) %(refname)"}
 | 
			
		||||
		args := TrustedCmdArgs{"for-each-ref", "--format=%(objectname) %(refname)"}
 | 
			
		||||
		args = append(args, extraArgs...)
 | 
			
		||||
		err := NewCommand(ctx, args...).Run(&RunOpts{
 | 
			
		||||
			Dir:    repoPath,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user