From b2b083e0597d3277f5dc075f4b17c89de51a77d0 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 12 Jul 2017 14:11:58 +0100 Subject: Skeleton complete. Few functions still missing --- commits.go | 53 ++++++++++++++++++++++++++++++----------------------- scorsh.go | 7 +++---- spooler.go | 2 +- 3 files changed, 34 insertions(+), 28 deletions(-) diff --git a/commits.go b/commits.go index c429bca..d69cc2b 100644 --- a/commits.go +++ b/commits.go @@ -6,7 +6,7 @@ import ( "golang.org/x/crypto/openpgp" "os" "strings" - "log" +// "log" ) func CommitToString(commit *git.Commit) string { @@ -23,22 +23,25 @@ func CommitToString(commit *git.Commit) string { } // FIXME: RETURN THE ENTITY PROVIDED BY THE CHECK, OR nil -func check_signature(commit *git.Commit, keyring *openpgp.KeyRing) (signature, signed string, err error) { - +func check_signature(commit *git.Commit, keys []*openpgp.KeyRing) (signature, signed string, err error) { + signature, signed, err = commit.ExtractSignature() - if err == nil { - _, err_sig := - openpgp.CheckArmoredDetachedSignature(*keyring, strings.NewReader(signed), + if err == nil { + for _, keyring := range keys { + + _, err_sig := + openpgp.CheckArmoredDetachedSignature(*keyring, strings.NewReader(signed), strings.NewReader(signature)) - - if err_sig == nil { - fmt.Printf("Good signature \n") - return signature, signed, nil + + if err_sig == nil { + fmt.Printf("Good signature \n") + return signature, signed, nil + } + err = err_sig } - err = err_sig } - + return "", "", err } @@ -46,7 +49,7 @@ func check_signature(commit *git.Commit, keyring *openpgp.KeyRing) (signature, s // traverse all the commits between two references, looking for scorsh // commands // fixme: we don't have just one keyring here.... -func walk_commits(msg SCORSHmsg, keyring openpgp.KeyRing) int { +func walk_commits(msg SCORSHmsg, w *SCORSHworker) error { fmt.Printf("Inside parse_commits\n") @@ -58,7 +61,7 @@ func walk_commits(msg SCORSHmsg, keyring openpgp.KeyRing) int { if err != nil { fmt.Fprintf(os.Stderr, "Error while opening repository %s (%s)\n", reponame, err) - return SCORSH_ERR_NO_REPO + return SCORSHerr(SCORSH_ERR_NO_REPO) } old_rev_oid, err := git.NewOid(old_rev) @@ -66,7 +69,7 @@ func walk_commits(msg SCORSHmsg, keyring openpgp.KeyRing) int { oldrev_commit, err := repo.LookupCommit(old_rev_oid) if err != nil { fmt.Fprintf(os.Stderr, "Commit: %s does not exist\n", old_rev) - return SCORSH_ERR_NO_COMMIT + return SCORSHerr(SCORSH_ERR_NO_COMMIT) } new_rev_oid, err := git.NewOid(new_rev) @@ -74,7 +77,7 @@ func walk_commits(msg SCORSHmsg, keyring openpgp.KeyRing) int { newrev_commit, err := repo.LookupCommit(new_rev_oid) if err != nil { fmt.Fprintf(os.Stderr, "Commit: %s does not exist\n", new_rev) - return SCORSH_ERR_NO_COMMIT + return SCORSHerr(SCORSH_ERR_NO_COMMIT) } cur_commit := newrev_commit @@ -85,17 +88,21 @@ func walk_commits(msg SCORSHmsg, keyring openpgp.KeyRing) int { if err == nil { fmt.Printf("%s", CommitToString(commit)) + // We should look for scorsh-tags, and if the commit has any, + // check if it can be verified by any of the keyrings associated + // with the scorsh-tag + //signature, signed, err := check_signature(commit, &keyring) - _, _, err := check_signature(commit, &keyring) - if err != nil { - log.Printf("%s\n", SCORSHErr(SCORSH_ERR_SIGNATURE)) - - } + //_, _, err := check_signature(commit, w.keys) + //if err != nil { + // log.Printf("%s\n", SCORSHerr(SCORSH_ERR_SIGNATURE)) + // + //} cur_commit = commit.Parent(0) } else { fmt.Printf("Commit %x not found!\n", cur_commit.Id()) - return SCORSH_ERR_NO_COMMIT + return SCORSHerr(SCORSH_ERR_NO_COMMIT) } } - return 0 + return nil } diff --git a/scorsh.go b/scorsh.go index af9c367..1d345b4 100644 --- a/scorsh.go +++ b/scorsh.go @@ -1,8 +1,8 @@ package main import ( - "errors" "flag" + "fmt" "log" ) @@ -10,7 +10,7 @@ import ( var conf_file = flag.String("c", "./scorsh.cfg", "Configuration file for SCORSH") -func SCORSHErr(err int) error { +func SCORSHerr(err int) error { var err_str string @@ -28,8 +28,7 @@ func SCORSHErr(err int) error { default: err_str = "Generic Error" } - - return errors.New(err_str) + return fmt.Errorf("%s", err_str) } diff --git a/spooler.go b/spooler.go index 4f0f508..8d7bdc9 100644 --- a/spooler.go +++ b/spooler.go @@ -14,7 +14,7 @@ func parse_request(fname string) (SCORSHmsg, error) { _, err := os.Open(fname) if err != nil { log.Printf("Unable to open file: %s\n", fname) - return ret, SCORSHErr(SCORSH_ERR_NO_FILE) + return ret, SCORSHerr(SCORSH_ERR_NO_FILE) } return ret, nil -- cgit v1.2.3