gitea/serve.go

193 lines
4.3 KiB
Go
Raw Normal View History

// 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-02-19 20:50:53 +11:00
package main
import (
2014-03-26 16:21:09 +11:00
//"container/list"
2014-02-19 20:50:53 +11:00
"fmt"
"os"
"os/exec"
"path"
2014-02-19 20:50:53 +11:00
"strconv"
"strings"
"github.com/codegangsta/cli"
2014-04-07 03:07:34 +10:00
qlog "github.com/qiniu/log"
2014-03-21 07:04:56 +11:00
2014-03-26 16:21:09 +11:00
//"github.com/gogits/git"
2014-02-19 20:50:53 +11:00
"github.com/gogits/gogs/models"
2014-03-21 07:04:56 +11:00
"github.com/gogits/gogs/modules/base"
2014-02-19 20:50:53 +11:00
)
var (
COMMANDS_READONLY = map[string]int{
2014-02-25 17:01:52 +11:00
"git-upload-pack": models.AU_WRITABLE,
"git upload-pack": models.AU_WRITABLE,
"git-upload-archive": models.AU_WRITABLE,
2014-02-19 20:50:53 +11:00
}
COMMANDS_WRITE = map[string]int{
"git-receive-pack": models.AU_READABLE,
"git receive-pack": models.AU_READABLE,
}
)
var CmdServ = cli.Command{
Name: "serv",
2014-02-25 17:01:52 +11:00
Usage: "This command just should be called by ssh shell",
2014-02-19 20:50:53 +11:00
Description: `
2014-02-25 17:01:52 +11:00
gogs serv provide access auth for repositories`,
2014-02-19 20:50:53 +11:00
Action: runServ,
2014-03-12 15:19:45 +11:00
Flags: []cli.Flag{},
2014-02-19 20:50:53 +11:00
}
func newLogger(execDir string) {
logPath := execDir + "/log/serv.log"
os.MkdirAll(path.Dir(logPath), os.ModePerm)
2014-04-07 03:41:58 +10:00
f, err := os.OpenFile(logPath, os.O_WRONLY|os.O_APPEND|os.O_CREATE, os.ModePerm)
2014-04-07 03:07:34 +10:00
if err != nil {
qlog.Fatal(err)
}
qlog.SetOutput(f)
qlog.Info("Start logging serv...")
2014-03-25 01:26:05 +11:00
}
2014-03-23 19:31:13 +11:00
func parseCmd(cmd string) (string, string) {
ss := strings.SplitN(cmd, " ", 2)
if len(ss) != 2 {
return "", ""
}
verb, args := ss[0], ss[1]
if verb == "git" {
ss = strings.SplitN(args, " ", 2)
args = ss[1]
verb = fmt.Sprintf("%s %s", verb, ss[0])
}
return verb, args
}
2014-02-19 20:50:53 +11:00
func In(b string, sl map[string]int) bool {
_, e := sl[b]
return e
}
2014-03-23 19:31:13 +11:00
func runServ(k *cli.Context) {
execDir, _ := base.ExecDir()
newLogger(execDir)
2014-03-25 22:38:48 +11:00
2014-03-21 18:36:26 +11:00
base.NewConfigContext()
models.LoadModelsConfig()
2014-03-31 07:01:50 +11:00
if models.UseSQLite3 {
os.Chdir(execDir)
}
2014-03-28 22:26:22 +11:00
models.SetEngine()
2014-03-21 18:36:26 +11:00
2014-02-19 20:50:53 +11:00
keys := strings.Split(os.Args[2], "-")
if len(keys) != 2 {
2014-03-31 07:01:50 +11:00
println("auth file format error")
2014-04-07 03:07:34 +10:00
qlog.Fatal("auth file format error")
2014-02-19 20:50:53 +11:00
}
keyId, err := strconv.ParseInt(keys[1], 10, 64)
if err != nil {
2014-03-31 07:01:50 +11:00
println("auth file format error")
2014-04-07 03:07:34 +10:00
qlog.Fatal("auth file format error", err)
2014-02-19 20:50:53 +11:00
}
user, err := models.GetUserByKeyId(keyId)
if err != nil {
2014-03-31 07:01:50 +11:00
println("You have no right to access")
2014-04-07 03:07:34 +10:00
qlog.Fatalf("SSH visit error: %v", err)
2014-02-19 20:50:53 +11:00
}
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
if cmd == "" {
2014-03-16 17:28:24 +11:00
println("Hi", user.Name, "! You've successfully authenticated, but Gogs does not provide shell access.")
2014-02-19 20:50:53 +11:00
return
}
verb, args := parseCmd(cmd)
2014-03-30 13:18:36 +11:00
repoPath := strings.Trim(args, "'")
rr := strings.SplitN(repoPath, "/", 2)
2014-02-19 20:50:53 +11:00
if len(rr) != 2 {
2014-02-20 17:53:56 +11:00
println("Unavilable repository", args)
2014-04-07 03:07:34 +10:00
qlog.Fatalf("Unavilable repository %v", args)
2014-02-19 20:50:53 +11:00
}
2014-03-30 13:18:36 +11:00
repoUserName := rr[0]
2014-02-19 20:50:53 +11:00
repoName := rr[1]
if strings.HasSuffix(repoName, ".git") {
repoName = repoName[:len(repoName)-4]
}
2014-03-16 15:18:34 +11:00
2014-03-25 20:11:13 +11:00
isWrite := In(verb, COMMANDS_WRITE)
isRead := In(verb, COMMANDS_READONLY)
2014-03-30 13:18:36 +11:00
repoUser, err := models.GetUserByName(repoUserName)
2014-03-16 15:18:34 +11:00
if err != nil {
2014-04-07 03:07:34 +10:00
println("You have no right to access")
qlog.Fatal("Get user failed", err)
2014-03-30 13:18:36 +11:00
}
2014-03-16 15:18:34 +11:00
2014-03-25 20:11:13 +11:00
// access check
2014-02-19 20:50:53 +11:00
switch {
case isWrite:
2014-03-31 07:01:50 +11:00
has, err := models.HasAccess(user.LowerName, path.Join(repoUserName, repoName), models.AU_WRITABLE)
2014-02-19 20:50:53 +11:00
if err != nil {
2014-02-25 17:01:52 +11:00
println("Inernel error:", err)
2014-04-07 03:07:34 +10:00
qlog.Fatal(err)
2014-03-31 07:01:50 +11:00
} else if !has {
2014-02-25 18:28:04 +11:00
println("You have no right to write this repository")
2014-04-07 03:07:34 +10:00
qlog.Fatalf("User %s has no right to write repository %s", user.Name, repoPath)
2014-02-19 20:50:53 +11:00
}
case isRead:
2014-03-30 13:18:36 +11:00
repo, err := models.GetRepositoryByName(repoUser.Id, repoName)
if err != nil {
println("Get repository error:", err)
2014-04-07 03:07:34 +10:00
qlog.Fatal("Get repository error: " + err.Error())
2014-03-30 13:18:36 +11:00
}
if !repo.IsPrivate {
break
}
has, err := models.HasAccess(user.Name, repoPath, models.AU_READABLE)
2014-02-19 20:50:53 +11:00
if err != nil {
2014-02-25 17:01:52 +11:00
println("Inernel error")
2014-04-07 03:07:34 +10:00
qlog.Fatal(err)
2014-02-19 20:50:53 +11:00
}
if !has {
2014-03-30 13:18:36 +11:00
has, err = models.HasAccess(user.Name, repoPath, models.AU_WRITABLE)
2014-02-19 20:50:53 +11:00
if err != nil {
2014-02-25 17:01:52 +11:00
println("Inernel error")
2014-04-07 03:07:34 +10:00
qlog.Fatal(err)
2014-02-19 20:50:53 +11:00
}
}
if !has {
2014-02-20 17:53:56 +11:00
println("You have no right to access this repository")
2014-04-07 03:07:34 +10:00
qlog.Fatal("You have no right to access this repository")
2014-02-19 20:50:53 +11:00
}
default:
2014-02-20 17:53:56 +11:00
println("Unknown command")
2014-04-07 03:07:34 +10:00
qlog.Fatal("Unknown command")
2014-02-19 20:50:53 +11:00
}
2014-04-09 02:41:33 +10:00
models.SetRepoEnvs(user.Id, user.Name, repoName)
2014-03-23 19:31:13 +11:00
2014-03-30 13:18:36 +11:00
gitcmd := exec.Command(verb, repoPath)
2014-03-21 07:04:56 +11:00
gitcmd.Dir = base.RepoRootPath
2014-03-26 16:21:09 +11:00
gitcmd.Stdout = os.Stdout
2014-03-23 20:10:09 +11:00
gitcmd.Stdin = os.Stdin
2014-02-19 20:50:53 +11:00
gitcmd.Stderr = os.Stderr
2014-03-18 08:00:35 +11:00
if err = gitcmd.Run(); err != nil {
2014-02-25 17:01:52 +11:00
println("execute command error:", err.Error())
2014-04-07 03:07:34 +10:00
qlog.Fatal("execute command error: " + err.Error())
2014-02-19 20:50:53 +11:00
}
}