gitea/cmd/serve.go

206 lines
5.4 KiB
Go
Raw Normal View History

2014-04-10 20:20:58 +02:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-05-02 03:21:46 +02:00
package cmd
2014-04-10 20:20:58 +02:00
import (
"fmt"
"os"
"os/exec"
2014-06-29 16:31:46 +02:00
"path/filepath"
2014-04-10 20:20:58 +02:00
"strings"
2014-08-10 00:40:10 +02:00
"time"
2014-04-10 20:20:58 +02:00
2014-07-26 06:24:27 +02:00
"github.com/Unknwon/com"
2014-08-10 00:40:10 +02:00
"github.com/codegangsta/cli"
2014-07-26 06:24:27 +02:00
2014-04-10 20:20:58 +02:00
"github.com/gogits/gogs/models"
2014-06-20 07:14:54 +02:00
"github.com/gogits/gogs/modules/log"
2014-05-26 02:11:25 +02:00
"github.com/gogits/gogs/modules/setting"
2014-06-29 22:30:41 +02:00
"github.com/gogits/gogs/modules/uuid"
2014-04-10 20:20:58 +02:00
)
2015-02-16 15:38:01 +01:00
const (
2015-03-01 04:24:53 +01:00
_ACCESS_DENIED_MESSAGE = "Repository does not exist or you do not have access"
2015-02-16 15:38:01 +01:00
)
2014-04-10 20:20:58 +02:00
var CmdServ = cli.Command{
2014-05-05 06:55:17 +02:00
Name: "serv",
Usage: "This command should only be called by SSH shell",
Description: `Serv provide access auth for repositories`,
Action: runServ,
Flags: []cli.Flag{
cli.StringFlag{"config, c", "custom/conf/app.ini", "Custom configuration file path", ""},
},
2014-04-10 20:20:58 +02:00
}
2014-05-22 03:37:13 +02:00
func setup(logPath string) {
2014-05-26 02:11:25 +02:00
setting.NewConfigContext()
2014-06-29 16:31:46 +02:00
log.NewGitLogger(filepath.Join(setting.LogRootPath, logPath))
2015-02-07 16:46:57 +01:00
if setting.DisableSSH {
println("Gogs: SSH has been disabled")
os.Exit(1)
}
2014-05-22 03:37:13 +02:00
models.LoadModelsConfig()
2015-02-12 03:58:37 +01:00
if setting.UseSQLite3 {
2014-06-20 07:14:54 +02:00
workDir, _ := setting.WorkDir()
2014-05-26 02:11:25 +02:00
os.Chdir(workDir)
2014-05-22 03:37:13 +02:00
}
models.SetEngine()
}
2014-04-10 20:20:58 +02:00
func parseCmd(cmd string) (string, string) {
ss := strings.SplitN(cmd, " ", 2)
if len(ss) != 2 {
return "", ""
}
2015-02-16 15:38:01 +01:00
return ss[0], strings.Replace(ss[1], "'/", "'", 1)
2014-04-10 20:20:58 +02:00
}
2014-05-22 03:37:13 +02:00
var (
2015-02-16 15:38:01 +01:00
COMMANDS = map[string]models.AccessMode{
"git-upload-pack": models.ACCESS_MODE_READ,
"git-upload-archive": models.ACCESS_MODE_READ,
"git-receive-pack": models.ACCESS_MODE_WRITE,
2014-05-22 03:37:13 +02:00
}
)
2015-02-13 06:58:46 +01:00
func runServ(c *cli.Context) {
if c.IsSet("config") {
setting.CustomConf = c.String("config")
}
2014-06-20 07:14:54 +02:00
setup("serv.log")
2014-04-10 20:20:58 +02:00
2015-02-16 15:38:01 +01:00
fail := func(userMessage, logMessage string, args ...interface{}) {
fmt.Fprintln(os.Stderr, "Gogs: ", userMessage)
log.GitLogger.Fatal(2, logMessage, args...)
}
2015-02-13 06:58:46 +01:00
if len(c.Args()) < 1 {
2015-02-16 15:38:01 +01:00
fail("Not enough arguments", "Not enough arugments")
}
2015-02-16 15:38:01 +01:00
2015-02-13 06:58:46 +01:00
keys := strings.Split(c.Args()[0], "-")
2014-04-10 20:20:58 +02:00
if len(keys) != 2 {
2015-02-16 15:38:01 +01:00
fail("key-id format error", "Invalid key id: %s", c.Args()[0])
2014-04-10 20:20:58 +02:00
}
2014-07-26 06:24:27 +02:00
keyId, err := com.StrTo(keys[1]).Int64()
2014-04-10 20:20:58 +02:00
if err != nil {
2015-02-16 15:38:01 +01:00
fail("key-id format error", "Invalid key id: %s", err)
2014-04-10 20:20:58 +02:00
}
2015-02-16 15:38:01 +01:00
2014-04-10 20:20:58 +02:00
user, err := models.GetUserByKeyId(keyId)
if err != nil {
2015-02-16 15:38:01 +01:00
fail("internal error", "Fail to get user by key ID(%d): %v", keyId, err)
2014-04-10 20:20:58 +02:00
}
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
if cmd == "" {
println("Hi", user.Name, "! You've successfully authenticated, but Gogs does not provide shell access.")
2015-02-16 15:38:01 +01:00
if user.IsAdmin {
println("If this is unexpected, please log in with password and setup Gogs under another user.")
}
2014-04-10 20:20:58 +02:00
return
}
verb, args := parseCmd(cmd)
repoPath := strings.Trim(args, "'")
rr := strings.SplitN(repoPath, "/", 2)
if len(rr) != 2 {
2015-02-16 15:38:01 +01:00
fail("Invalid repository path", "Invalide repository path: %v", args)
2014-04-10 20:20:58 +02:00
}
repoUserName := rr[0]
2014-04-12 03:47:39 +02:00
repoName := strings.TrimSuffix(rr[1], ".git")
2014-04-10 20:20:58 +02:00
repoUser, err := models.GetUserByName(repoUserName)
if err != nil {
2014-05-22 03:37:13 +02:00
if err == models.ErrUserNotExist {
2015-02-16 15:38:01 +01:00
fail("Repository owner does not exist", "Unregistered owner: %s", repoUserName)
2014-05-22 03:37:13 +02:00
}
2015-02-16 15:38:01 +01:00
fail("Internal error", "Fail to get repository owner(%s): %v", repoUserName, err)
2014-04-10 20:20:58 +02:00
}
repo, err := models.GetRepositoryByName(repoUser.Id, repoName)
if err != nil {
if models.IsErrRepoNotExist(err) {
2015-02-16 15:38:01 +01:00
if user.Id == repoUser.Id || repoUser.IsOwnedBy(user.Id) {
fail("Repository does not exist", "Repository does not exist: %s/%s", repoUser.Name, repoName)
} else {
2015-03-01 04:24:53 +01:00
fail(_ACCESS_DENIED_MESSAGE, "Repository does not exist: %s/%s", repoUser.Name, repoName)
2015-02-16 15:38:01 +01:00
}
}
2015-02-16 15:38:01 +01:00
fail("Internal error", "Fail to get repository: %v", err)
}
2015-02-16 15:38:01 +01:00
requestedMode, has := COMMANDS[verb]
if !has {
fail("Unknown git command", "Unknown git command %s", verb)
}
2014-04-10 20:20:58 +02:00
2015-02-16 15:38:01 +01:00
mode, err := models.AccessLevel(user, repo)
if err != nil {
2015-03-01 04:24:53 +01:00
fail("Internal error", "Fail to check access: %v", err)
2015-02-16 15:38:01 +01:00
} else if mode < requestedMode {
2015-03-01 04:24:53 +01:00
clientMessage := _ACCESS_DENIED_MESSAGE
2015-02-16 15:38:01 +01:00
if mode >= models.ACCESS_MODE_READ {
clientMessage = "You do not have sufficient authorization for this action"
2014-04-10 20:20:58 +02:00
}
2015-02-16 15:38:01 +01:00
fail(clientMessage,
"User %s does not have level %v access to repository %s",
user.Name, requestedMode, repoPath)
2014-04-10 20:20:58 +02:00
}
2014-06-28 17:56:41 +02:00
uuid := uuid.NewV4().String()
os.Setenv("uuid", uuid)
2014-04-10 20:20:58 +02:00
2014-10-01 13:40:48 +02: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)
}
2014-05-26 02:11:25 +02:00
gitcmd.Dir = setting.RepoRootPath
2014-04-10 20:20:58 +02:00
gitcmd.Stdout = os.Stdout
gitcmd.Stdin = os.Stdin
gitcmd.Stderr = os.Stderr
2014-07-26 06:24:27 +02:00
if err = gitcmd.Run(); err != nil {
2015-02-16 15:38:01 +01:00
fail("Internal error", "Fail to execute git command: %v", err)
2014-04-10 20:20:58 +02:00
}
2014-06-28 17:56:41 +02:00
2015-02-16 15:38:01 +01:00
if requestedMode == models.ACCESS_MODE_WRITE {
2014-06-28 17:56:41 +02:00
tasks, err := models.GetUpdateTasksByUuid(uuid)
if err != nil {
2014-08-10 00:40:10 +02:00
log.GitLogger.Fatal(2, "GetUpdateTasksByUuid: %v", err)
2014-06-28 17:56:41 +02:00
}
for _, task := range tasks {
err = models.Update(task.RefName, task.OldCommitId, task.NewCommitId,
user.Name, repoUserName, repoName, user.Id)
if err != nil {
2014-08-10 00:40:10 +02:00
log.GitLogger.Error(2, "Fail to update: %v", err)
2014-06-28 17:56:41 +02:00
}
}
2014-07-26 06:24:27 +02:00
if err = models.DelUpdateTasksByUuid(uuid); err != nil {
2014-08-10 00:40:10 +02:00
log.GitLogger.Fatal(2, "DelUpdateTasksByUuid: %v", err)
2014-06-28 17:56:41 +02:00
}
}
2014-08-10 00:40:10 +02:00
// Update key activity.
key, err := models.GetPublicKeyById(keyId)
if err != nil {
2015-02-16 15:38:01 +01:00
fail("Internal error", "GetPublicKeyById: %v", err)
2014-08-10 00:40:10 +02:00
}
key.Updated = time.Now()
if err = models.UpdatePublicKey(key); err != nil {
2015-02-16 15:38:01 +01:00
fail("Internal error", "UpdatePublicKey: %v", err)
2014-08-10 00:40:10 +02:00
}
2014-04-10 20:20:58 +02:00
}