2014-04-10 14:20:58 -04:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2016-12-21 07:13:17 -05:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2014-04-10 14:20:58 -04:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2014-05-01 21:21:46 -04:00
|
|
|
package cmd
|
2014-04-10 14:20:58 -04:00
|
|
|
|
|
|
|
import (
|
2016-12-25 20:16:37 -05:00
|
|
|
"encoding/json"
|
2014-04-10 14:20:58 -04:00
|
|
|
"fmt"
|
2019-06-01 11:00:21 -04:00
|
|
|
"net/http"
|
|
|
|
"net/url"
|
2014-04-10 14:20:58 -04:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2019-06-01 11:00:21 -04:00
|
|
|
"strconv"
|
2014-04-10 14:20:58 -04:00
|
|
|
"strings"
|
2014-08-09 18:40:10 -04:00
|
|
|
"time"
|
2014-04-10 14:20:58 -04:00
|
|
|
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-08-07 14:49:18 -04:00
|
|
|
"code.gitea.io/gitea/modules/pprof"
|
2017-04-18 23:45:01 -04:00
|
|
|
"code.gitea.io/gitea/modules/private"
|
2016-11-10 11:24:48 -05:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-04-12 03:44:54 -04:00
|
|
|
|
2016-11-14 11:03:37 -05:00
|
|
|
"github.com/Unknwon/com"
|
2016-12-25 20:16:37 -05:00
|
|
|
"github.com/dgrijalva/jwt-go"
|
2016-11-09 17:18:22 -05:00
|
|
|
"github.com/urfave/cli"
|
2014-04-10 14:20:58 -04:00
|
|
|
)
|
|
|
|
|
2015-02-16 09:38:01 -05:00
|
|
|
const (
|
2016-12-25 20:16:37 -05:00
|
|
|
lfsAuthenticateVerb = "git-lfs-authenticate"
|
2015-02-16 09:38:01 -05:00
|
|
|
)
|
|
|
|
|
2016-11-04 07:42:18 -04:00
|
|
|
// CmdServ represents the available serv sub-command.
|
2014-04-10 14:20:58 -04:00
|
|
|
var CmdServ = cli.Command{
|
2014-05-05 00:55:17 -04:00
|
|
|
Name: "serv",
|
|
|
|
Usage: "This command should only be called by SSH shell",
|
|
|
|
Description: `Serv provide access auth for repositories`,
|
|
|
|
Action: runServ,
|
2015-02-05 05:12:37 -05:00
|
|
|
Flags: []cli.Flag{
|
2018-08-07 14:49:18 -04:00
|
|
|
cli.BoolFlag{
|
|
|
|
Name: "enable-pprof",
|
|
|
|
},
|
2015-02-05 05:12:37 -05:00
|
|
|
},
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
|
|
|
|
2018-10-30 02:20:13 -04:00
|
|
|
func setup(logPath string) {
|
2019-06-12 15:41:28 -04:00
|
|
|
_ = log.DelLogger("console")
|
2015-09-16 23:08:46 -04:00
|
|
|
setting.NewContext()
|
2014-05-21 21:37:13 -04:00
|
|
|
}
|
|
|
|
|
2014-04-10 14:20:58 -04:00
|
|
|
func parseCmd(cmd string) (string, string) {
|
|
|
|
ss := strings.SplitN(cmd, " ", 2)
|
|
|
|
if len(ss) != 2 {
|
|
|
|
return "", ""
|
|
|
|
}
|
2015-02-16 09:38:01 -05:00
|
|
|
return ss[0], strings.Replace(ss[1], "'/", "'", 1)
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
|
|
|
|
2014-05-21 21:37:13 -04:00
|
|
|
var (
|
2015-11-23 22:32:07 -05:00
|
|
|
allowedCommands = map[string]models.AccessMode{
|
2016-11-07 11:20:37 -05:00
|
|
|
"git-upload-pack": models.AccessModeRead,
|
|
|
|
"git-upload-archive": models.AccessModeRead,
|
|
|
|
"git-receive-pack": models.AccessModeWrite,
|
2016-12-25 20:16:37 -05:00
|
|
|
lfsAuthenticateVerb: models.AccessModeNone,
|
2014-05-21 21:37:13 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2015-08-06 10:48:11 -04:00
|
|
|
func fail(userMessage, logMessage string, args ...interface{}) {
|
2016-12-21 07:13:17 -05:00
|
|
|
fmt.Fprintln(os.Stderr, "Gitea:", userMessage)
|
2015-11-08 14:31:49 -05:00
|
|
|
|
|
|
|
if len(logMessage) > 0 {
|
2015-11-23 22:33:24 -05:00
|
|
|
if !setting.ProdMode {
|
2015-11-30 10:00:52 -05:00
|
|
|
fmt.Fprintf(os.Stderr, logMessage+"\n", args...)
|
2015-11-23 22:33:24 -05:00
|
|
|
}
|
2015-11-08 14:31:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(1)
|
2015-08-06 10:48:11 -04:00
|
|
|
}
|
|
|
|
|
2016-05-12 14:32:28 -04:00
|
|
|
func runServ(c *cli.Context) error {
|
2019-06-01 11:00:21 -04:00
|
|
|
// FIXME: This needs to internationalised
|
2018-10-30 02:20:13 -04:00
|
|
|
setup("serv.log")
|
2014-04-10 14:20:58 -04:00
|
|
|
|
2016-02-27 20:48:39 -05:00
|
|
|
if setting.SSH.Disabled {
|
2016-12-21 07:13:17 -05:00
|
|
|
println("Gitea: SSH has been disabled")
|
2016-05-12 14:32:28 -04:00
|
|
|
return nil
|
2016-02-21 21:55:59 -05:00
|
|
|
}
|
|
|
|
|
2015-02-13 00:58:46 -05:00
|
|
|
if len(c.Args()) < 1 {
|
2019-06-12 15:41:28 -04:00
|
|
|
if err := cli.ShowSubcommandHelp(c); err != nil {
|
|
|
|
fmt.Printf("error showing subcommand help: %v\n", err)
|
|
|
|
}
|
2017-04-12 03:44:54 -04:00
|
|
|
return nil
|
2015-02-09 05:32:42 -05:00
|
|
|
}
|
2015-02-16 09:38:01 -05:00
|
|
|
|
2019-06-01 11:00:21 -04:00
|
|
|
keys := strings.Split(c.Args()[0], "-")
|
|
|
|
if len(keys) != 2 || keys[0] != "key" {
|
|
|
|
fail("Key ID format error", "Invalid key argument: %s", c.Args()[0])
|
|
|
|
}
|
|
|
|
keyID := com.StrTo(keys[1]).MustInt64()
|
|
|
|
|
2014-04-10 14:20:58 -04:00
|
|
|
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
|
2015-08-04 23:14:17 -04:00
|
|
|
if len(cmd) == 0 {
|
2019-06-01 11:00:21 -04:00
|
|
|
key, user, err := private.ServNoCommand(keyID)
|
|
|
|
if err != nil {
|
|
|
|
fail("Internal error", "Failed to check provided key: %v", err)
|
|
|
|
}
|
|
|
|
if key.Type == models.KeyTypeDeploy {
|
|
|
|
println("Hi there! You've successfully authenticated with the deploy key named " + key.Name + ", but Gitea does not provide shell access.")
|
|
|
|
} else {
|
|
|
|
println("Hi there: " + user.Name + "! You've successfully authenticated with the key named " + key.Name + ", but Gitea does not provide shell access.")
|
|
|
|
}
|
2016-12-21 07:13:17 -05:00
|
|
|
println("If this is unexpected, please log in with password and setup Gitea under another user.")
|
2016-05-12 14:32:28 -04:00
|
|
|
return nil
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
verb, args := parseCmd(cmd)
|
2016-12-25 20:16:37 -05:00
|
|
|
|
|
|
|
var lfsVerb string
|
|
|
|
if verb == lfsAuthenticateVerb {
|
|
|
|
if !setting.LFS.StartServer {
|
|
|
|
fail("Unknown git command", "LFS authentication request over SSH denied, LFS support is disabled")
|
|
|
|
}
|
|
|
|
|
2017-03-22 06:43:28 -04:00
|
|
|
argsSplit := strings.Split(args, " ")
|
|
|
|
if len(argsSplit) >= 2 {
|
2016-12-25 20:16:37 -05:00
|
|
|
args = strings.TrimSpace(argsSplit[0])
|
|
|
|
lfsVerb = strings.TrimSpace(argsSplit[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 11:39:03 -05:00
|
|
|
repoPath := strings.ToLower(strings.Trim(args, "'"))
|
2014-04-10 14:20:58 -04:00
|
|
|
rr := strings.SplitN(repoPath, "/", 2)
|
|
|
|
if len(rr) != 2 {
|
2015-06-18 07:01:05 -04:00
|
|
|
fail("Invalid repository path", "Invalid repository path: %v", args)
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
2017-02-25 09:54:40 -05:00
|
|
|
|
2015-11-30 20:45:55 -05:00
|
|
|
username := strings.ToLower(rr[0])
|
|
|
|
reponame := strings.ToLower(strings.TrimSuffix(rr[1], ".git"))
|
|
|
|
|
2018-08-07 14:49:18 -04:00
|
|
|
if setting.EnablePprof || c.Bool("enable-pprof") {
|
|
|
|
if err := os.MkdirAll(setting.PprofDataPath, os.ModePerm); err != nil {
|
|
|
|
fail("Error while trying to create PPROF_DATA_PATH", "Error while trying to create PPROF_DATA_PATH: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-06-01 11:00:21 -04:00
|
|
|
stopCPUProfiler, err := pprof.DumpCPUProfileForUsername(setting.PprofDataPath, username)
|
|
|
|
if err != nil {
|
|
|
|
fail("Internal Server Error", "Unable to start CPU profile: %v", err)
|
|
|
|
}
|
2018-08-07 14:49:18 -04:00
|
|
|
defer func() {
|
|
|
|
stopCPUProfiler()
|
2019-06-01 11:00:21 -04:00
|
|
|
err := pprof.DumpMemProfileForUsername(setting.PprofDataPath, username)
|
|
|
|
if err != nil {
|
|
|
|
fail("Internal Server Error", "Unable to dump Mem Profile: %v", err)
|
|
|
|
}
|
2018-08-07 14:49:18 -04:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2015-11-23 22:32:07 -05:00
|
|
|
requestedMode, has := allowedCommands[verb]
|
2015-02-16 09:38:01 -05:00
|
|
|
if !has {
|
|
|
|
fail("Unknown git command", "Unknown git command %s", verb)
|
|
|
|
}
|
2014-04-10 14:20:58 -04:00
|
|
|
|
2016-12-25 20:16:37 -05:00
|
|
|
if verb == lfsAuthenticateVerb {
|
|
|
|
if lfsVerb == "upload" {
|
|
|
|
requestedMode = models.AccessModeWrite
|
2017-03-22 06:43:28 -04:00
|
|
|
} else if lfsVerb == "download" {
|
2016-12-25 20:16:37 -05:00
|
|
|
requestedMode = models.AccessModeRead
|
2017-03-22 06:43:28 -04:00
|
|
|
} else {
|
2017-06-05 03:49:46 -04:00
|
|
|
fail("Unknown LFS verb", "Unknown lfs verb %s", lfsVerb)
|
2016-12-25 20:16:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-01 11:00:21 -04:00
|
|
|
results, err := private.ServCommand(keyID, username, reponame, requestedMode, verb, lfsVerb)
|
|
|
|
if err != nil {
|
|
|
|
if private.IsErrServCommand(err) {
|
|
|
|
errServCommand := err.(private.ErrServCommand)
|
|
|
|
if errServCommand.StatusCode != http.StatusInternalServerError {
|
2019-06-03 04:07:03 -04:00
|
|
|
fail("Unauthorized", "%s", errServCommand.Error())
|
2019-06-01 11:00:21 -04:00
|
|
|
} else {
|
2019-06-03 04:07:03 -04:00
|
|
|
fail("Internal Server Error", "%s", errServCommand.Error())
|
2015-08-04 23:14:17 -04:00
|
|
|
}
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
2019-06-03 04:07:03 -04:00
|
|
|
fail("Internal Server Error", "%s", err.Error())
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
2019-06-01 11:00:21 -04:00
|
|
|
os.Setenv(models.EnvRepoIsWiki, strconv.FormatBool(results.IsWiki))
|
|
|
|
os.Setenv(models.EnvRepoName, results.RepoName)
|
|
|
|
os.Setenv(models.EnvRepoUsername, results.OwnerName)
|
2019-06-10 21:13:24 -04:00
|
|
|
os.Setenv(models.EnvPusherName, results.UserName)
|
2019-06-01 11:00:21 -04:00
|
|
|
os.Setenv(models.EnvPusherID, strconv.FormatInt(results.UserID, 10))
|
|
|
|
os.Setenv(models.ProtectedBranchRepoID, strconv.FormatInt(results.RepoID, 10))
|
2019-06-30 21:18:13 -04:00
|
|
|
os.Setenv(models.ProtectedBranchPRID, fmt.Sprintf("%d", 0))
|
2014-04-10 14:20:58 -04:00
|
|
|
|
2016-12-25 20:16:37 -05:00
|
|
|
//LFS token authentication
|
|
|
|
if verb == lfsAuthenticateVerb {
|
2019-06-01 11:00:21 -04:00
|
|
|
url := fmt.Sprintf("%s%s/%s.git/info/lfs", setting.AppURL, url.PathEscape(results.OwnerName), url.PathEscape(results.RepoName))
|
2016-12-25 20:16:37 -05:00
|
|
|
|
|
|
|
now := time.Now()
|
2018-01-27 11:48:15 -05:00
|
|
|
claims := jwt.MapClaims{
|
2019-06-01 11:00:21 -04:00
|
|
|
"repo": results.RepoID,
|
2016-12-25 20:16:37 -05:00
|
|
|
"op": lfsVerb,
|
2018-05-29 04:07:16 -04:00
|
|
|
"exp": now.Add(setting.LFS.HTTPAuthExpiry).Unix(),
|
2016-12-25 20:16:37 -05:00
|
|
|
"nbf": now.Unix(),
|
2019-06-01 11:00:21 -04:00
|
|
|
"user": results.UserID,
|
2018-01-27 11:48:15 -05:00
|
|
|
}
|
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
2016-12-25 20:16:37 -05:00
|
|
|
|
|
|
|
// Sign and get the complete encoded token as a string using the secret
|
|
|
|
tokenString, err := token.SignedString(setting.LFS.JWTSecretBytes)
|
|
|
|
if err != nil {
|
|
|
|
fail("Internal error", "Failed to sign JWT token: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenAuthentication := &models.LFSTokenResponse{
|
|
|
|
Header: make(map[string]string),
|
|
|
|
Href: url,
|
|
|
|
}
|
|
|
|
tokenAuthentication.Header["Authorization"] = fmt.Sprintf("Bearer %s", tokenString)
|
|
|
|
|
|
|
|
enc := json.NewEncoder(os.Stdout)
|
|
|
|
err = enc.Encode(tokenAuthentication)
|
|
|
|
if err != nil {
|
|
|
|
fail("Internal error", "Failed to encode LFS json response: %v", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-11-23 22:32:07 -05:00
|
|
|
// Special handle for Windows.
|
|
|
|
if setting.IsWindows {
|
|
|
|
verb = strings.Replace(verb, "-", " ", 1)
|
|
|
|
}
|
|
|
|
|
2014-10-01 07:40:48 -04:00
|
|
|
var gitcmd *exec.Cmd
|
|
|
|
verbs := strings.Split(verb, " ")
|
|
|
|
if len(verbs) == 2 {
|
|
|
|
gitcmd = exec.Command(verbs[0], verbs[1], repoPath)
|
|
|
|
} else {
|
|
|
|
gitcmd = exec.Command(verb, repoPath)
|
|
|
|
}
|
2017-03-17 00:59:42 -04:00
|
|
|
|
2014-05-25 20:11:25 -04:00
|
|
|
gitcmd.Dir = setting.RepoRootPath
|
2014-04-10 14:20:58 -04:00
|
|
|
gitcmd.Stdout = os.Stdout
|
|
|
|
gitcmd.Stdin = os.Stdin
|
|
|
|
gitcmd.Stderr = os.Stderr
|
2014-07-26 00:24:27 -04:00
|
|
|
if err = gitcmd.Run(); err != nil {
|
2015-06-18 07:01:05 -04:00
|
|
|
fail("Internal error", "Failed to execute git command: %v", err)
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|
2014-06-28 11:56:41 -04:00
|
|
|
|
2015-08-06 10:48:11 -04:00
|
|
|
// Update user key activity.
|
2019-06-01 11:00:21 -04:00
|
|
|
if results.KeyID > 0 {
|
|
|
|
if err = private.UpdatePublicKeyInRepo(results.KeyID, results.RepoID); err != nil {
|
|
|
|
fail("Internal error", "UpdatePublicKeyInRepo: %v", err)
|
2015-08-04 23:14:17 -04:00
|
|
|
}
|
2014-08-09 18:40:10 -04:00
|
|
|
}
|
2016-05-12 14:32:28 -04:00
|
|
|
|
|
|
|
return nil
|
2014-04-10 14:20:58 -04:00
|
|
|
}
|