mirror of https://github.com/gogs/gogs.git
446 lines
12 KiB
Go
446 lines
12 KiB
Go
// Copyright 2017 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.
|
|
|
|
package repo
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"fmt"
|
|
"net/http"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"gopkg.in/macaron.v1"
|
|
log "unknwon.dev/clog/v2"
|
|
|
|
"gogs.io/gogs/internal/auth"
|
|
"gogs.io/gogs/internal/conf"
|
|
"gogs.io/gogs/internal/context"
|
|
"gogs.io/gogs/internal/database"
|
|
"gogs.io/gogs/internal/lazyregexp"
|
|
"gogs.io/gogs/internal/pathutil"
|
|
"gogs.io/gogs/internal/tool"
|
|
)
|
|
|
|
type HTTPContext struct {
|
|
*macaron.Context
|
|
OwnerName string
|
|
OwnerSalt string
|
|
RepoID int64
|
|
RepoName string
|
|
AuthUser *database.User
|
|
}
|
|
|
|
// askCredentials responses HTTP header and status which informs client to provide credentials.
|
|
func askCredentials(c *macaron.Context, status int, text string) {
|
|
c.Header().Set("WWW-Authenticate", "Basic realm=\".\"")
|
|
c.Error(status, text)
|
|
}
|
|
|
|
func HTTPContexter(store Store) macaron.Handler {
|
|
return func(c *macaron.Context) {
|
|
if len(conf.HTTP.AccessControlAllowOrigin) > 0 {
|
|
// Set CORS headers for browser-based git clients
|
|
c.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin)
|
|
c.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization, User-Agent")
|
|
|
|
// Handle preflight OPTIONS request
|
|
if c.Req.Method == "OPTIONS" {
|
|
c.Status(http.StatusOK)
|
|
return
|
|
}
|
|
}
|
|
|
|
ownerName := c.Params(":username")
|
|
repoName := strings.TrimSuffix(c.Params(":reponame"), ".git")
|
|
repoName = strings.TrimSuffix(repoName, ".wiki")
|
|
|
|
isPull := c.Query("service") == "git-upload-pack" ||
|
|
strings.HasSuffix(c.Req.URL.Path, "git-upload-pack") ||
|
|
c.Req.Method == "GET"
|
|
|
|
owner, err := store.GetUserByUsername(c.Req.Context(), ownerName)
|
|
if err != nil {
|
|
if database.IsErrUserNotExist(err) {
|
|
c.Status(http.StatusNotFound)
|
|
} else {
|
|
c.Status(http.StatusInternalServerError)
|
|
log.Error("Failed to get user [name: %s]: %v", ownerName, err)
|
|
}
|
|
return
|
|
}
|
|
|
|
repo, err := store.GetRepositoryByName(c.Req.Context(), owner.ID, repoName)
|
|
if err != nil {
|
|
if database.IsErrRepoNotExist(err) {
|
|
c.Status(http.StatusNotFound)
|
|
} else {
|
|
c.Status(http.StatusInternalServerError)
|
|
log.Error("Failed to get repository [owner_id: %d, name: %s]: %v", owner.ID, repoName, err)
|
|
}
|
|
return
|
|
}
|
|
|
|
// Authentication is not required for pulling from public repositories.
|
|
if isPull && !repo.IsPrivate && !conf.Auth.RequireSigninView {
|
|
c.Map(&HTTPContext{
|
|
Context: c,
|
|
})
|
|
return
|
|
}
|
|
|
|
// In case user requested a wrong URL and not intended to access Git objects.
|
|
action := c.Params("*")
|
|
if !strings.Contains(action, "git-") &&
|
|
!strings.Contains(action, "info/") &&
|
|
!strings.Contains(action, "HEAD") &&
|
|
!strings.Contains(action, "objects/") {
|
|
c.Error(http.StatusBadRequest, fmt.Sprintf("Unrecognized action %q", action))
|
|
return
|
|
}
|
|
|
|
// Handle HTTP Basic Authentication
|
|
authHead := c.Req.Header.Get("Authorization")
|
|
if authHead == "" {
|
|
askCredentials(c, http.StatusUnauthorized, "")
|
|
return
|
|
}
|
|
|
|
auths := strings.Fields(authHead)
|
|
if len(auths) != 2 || auths[0] != "Basic" {
|
|
askCredentials(c, http.StatusUnauthorized, "")
|
|
return
|
|
}
|
|
authUsername, authPassword, err := tool.BasicAuthDecode(auths[1])
|
|
if err != nil {
|
|
askCredentials(c, http.StatusUnauthorized, "")
|
|
return
|
|
}
|
|
|
|
authUser, err := store.AuthenticateUser(c.Req.Context(), authUsername, authPassword, -1)
|
|
if err != nil && !auth.IsErrBadCredentials(err) {
|
|
c.Status(http.StatusInternalServerError)
|
|
log.Error("Failed to authenticate user [name: %s]: %v", authUsername, err)
|
|
return
|
|
}
|
|
|
|
// If username and password combination failed, try again using either username
|
|
// or password as the token.
|
|
if authUser == nil {
|
|
authUser, err = context.AuthenticateByToken(store, c.Req.Context(), authUsername)
|
|
if err != nil && !database.IsErrAccessTokenNotExist(err) {
|
|
c.Status(http.StatusInternalServerError)
|
|
log.Error("Failed to authenticate by access token via username: %v", err)
|
|
return
|
|
} else if database.IsErrAccessTokenNotExist(err) {
|
|
// Try again using the password field as the token.
|
|
authUser, err = context.AuthenticateByToken(store, c.Req.Context(), authPassword)
|
|
if err != nil {
|
|
if database.IsErrAccessTokenNotExist(err) {
|
|
askCredentials(c, http.StatusUnauthorized, "")
|
|
} else {
|
|
c.Status(http.StatusInternalServerError)
|
|
log.Error("Failed to authenticate by access token via password: %v", err)
|
|
}
|
|
return
|
|
}
|
|
}
|
|
} else if store.IsTwoFactorEnabled(c.Req.Context(), authUser.ID) {
|
|
askCredentials(c, http.StatusUnauthorized, `User with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password
|
|
Please create and use personal access token on user settings page`)
|
|
return
|
|
}
|
|
|
|
log.Trace("[Git] Authenticated user: %s", authUser.Name)
|
|
|
|
mode := database.AccessModeWrite
|
|
if isPull {
|
|
mode = database.AccessModeRead
|
|
}
|
|
if !database.Handle.Permissions().Authorize(c.Req.Context(), authUser.ID, repo.ID, mode,
|
|
database.AccessModeOptions{
|
|
OwnerID: repo.OwnerID,
|
|
Private: repo.IsPrivate,
|
|
},
|
|
) {
|
|
askCredentials(c, http.StatusForbidden, "User permission denied")
|
|
return
|
|
}
|
|
|
|
if !isPull && repo.IsMirror {
|
|
c.Error(http.StatusForbidden, "Mirror repository is read-only")
|
|
return
|
|
}
|
|
|
|
c.Map(&HTTPContext{
|
|
Context: c,
|
|
OwnerName: ownerName,
|
|
OwnerSalt: owner.Salt,
|
|
RepoID: repo.ID,
|
|
RepoName: repoName,
|
|
AuthUser: authUser,
|
|
})
|
|
}
|
|
}
|
|
|
|
type serviceHandler struct {
|
|
w http.ResponseWriter
|
|
r *http.Request
|
|
dir string
|
|
file string
|
|
|
|
authUser *database.User
|
|
ownerName string
|
|
ownerSalt string
|
|
repoID int64
|
|
repoName string
|
|
}
|
|
|
|
func (h *serviceHandler) setHeaderNoCache() {
|
|
h.w.Header().Set("Expires", "Fri, 01 Jan 1980 00:00:00 GMT")
|
|
h.w.Header().Set("Pragma", "no-cache")
|
|
h.w.Header().Set("Cache-Control", "no-cache, max-age=0, must-revalidate")
|
|
}
|
|
|
|
func (h *serviceHandler) setHeaderCacheForever() {
|
|
now := time.Now().Unix()
|
|
expires := now + 31536000
|
|
h.w.Header().Set("Date", fmt.Sprintf("%d", now))
|
|
h.w.Header().Set("Expires", fmt.Sprintf("%d", expires))
|
|
h.w.Header().Set("Cache-Control", "public, max-age=31536000")
|
|
}
|
|
|
|
func (h *serviceHandler) sendFile(contentType string) {
|
|
reqFile := path.Join(h.dir, h.file)
|
|
fi, err := os.Stat(reqFile)
|
|
if os.IsNotExist(err) {
|
|
h.w.WriteHeader(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
h.w.Header().Set("Content-Type", contentType)
|
|
h.w.Header().Set("Content-Length", fmt.Sprintf("%d", fi.Size()))
|
|
h.w.Header().Set("Last-Modified", fi.ModTime().Format(http.TimeFormat))
|
|
http.ServeFile(h.w, h.r, reqFile)
|
|
}
|
|
|
|
func serviceRPC(h serviceHandler, service string) {
|
|
defer h.r.Body.Close()
|
|
|
|
if h.r.Header.Get("Content-Type") != fmt.Sprintf("application/x-git-%s-request", service) {
|
|
h.w.WriteHeader(http.StatusUnauthorized)
|
|
return
|
|
}
|
|
h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-result", service))
|
|
|
|
var (
|
|
reqBody = h.r.Body
|
|
err error
|
|
)
|
|
|
|
// Handle GZIP
|
|
if h.r.Header.Get("Content-Encoding") == "gzip" {
|
|
reqBody, err = gzip.NewReader(reqBody)
|
|
if err != nil {
|
|
log.Error("HTTP.Get: fail to create gzip reader: %v", err)
|
|
h.w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
|
|
var stderr bytes.Buffer
|
|
cmd := exec.Command("git", service, "--stateless-rpc", h.dir)
|
|
if service == "receive-pack" {
|
|
cmd.Env = append(os.Environ(), database.ComposeHookEnvs(database.ComposeHookEnvsOptions{
|
|
AuthUser: h.authUser,
|
|
OwnerName: h.ownerName,
|
|
OwnerSalt: h.ownerSalt,
|
|
RepoID: h.repoID,
|
|
RepoName: h.repoName,
|
|
RepoPath: h.dir,
|
|
})...)
|
|
}
|
|
cmd.Dir = h.dir
|
|
cmd.Stdout = h.w
|
|
cmd.Stderr = &stderr
|
|
cmd.Stdin = reqBody
|
|
if err = cmd.Run(); err != nil {
|
|
log.Error("HTTP.serviceRPC: fail to serve RPC '%s': %v - %s", service, err, stderr.String())
|
|
h.w.WriteHeader(http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|
|
|
|
func serviceUploadPack(h serviceHandler) {
|
|
serviceRPC(h, "upload-pack")
|
|
}
|
|
|
|
func serviceReceivePack(h serviceHandler) {
|
|
serviceRPC(h, "receive-pack")
|
|
}
|
|
|
|
func getServiceType(r *http.Request) string {
|
|
serviceType := r.FormValue("service")
|
|
if !strings.HasPrefix(serviceType, "git-") {
|
|
return ""
|
|
}
|
|
return strings.TrimPrefix(serviceType, "git-")
|
|
}
|
|
|
|
// FIXME: use process module
|
|
func gitCommand(dir string, args ...string) []byte {
|
|
cmd := exec.Command("git", args...)
|
|
cmd.Dir = dir
|
|
out, err := cmd.Output()
|
|
if err != nil {
|
|
log.Error(fmt.Sprintf("Git: %v - %s", err, out))
|
|
}
|
|
return out
|
|
}
|
|
|
|
func updateServerInfo(dir string) []byte {
|
|
return gitCommand(dir, "update-server-info")
|
|
}
|
|
|
|
func packetWrite(str string) []byte {
|
|
s := strconv.FormatInt(int64(len(str)+4), 16)
|
|
if len(s)%4 != 0 {
|
|
s = strings.Repeat("0", 4-len(s)%4) + s
|
|
}
|
|
return []byte(s + str)
|
|
}
|
|
|
|
func getInfoRefs(h serviceHandler) {
|
|
h.setHeaderNoCache()
|
|
service := getServiceType(h.r)
|
|
if service != "upload-pack" && service != "receive-pack" {
|
|
updateServerInfo(h.dir)
|
|
h.sendFile("text/plain; charset=utf-8")
|
|
return
|
|
}
|
|
|
|
refs := gitCommand(h.dir, service, "--stateless-rpc", "--advertise-refs", ".")
|
|
h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-advertisement", service))
|
|
h.w.WriteHeader(http.StatusOK)
|
|
_, _ = h.w.Write(packetWrite("# service=git-" + service + "\n"))
|
|
_, _ = h.w.Write([]byte("0000"))
|
|
_, _ = h.w.Write(refs)
|
|
}
|
|
|
|
func getTextFile(h serviceHandler) {
|
|
h.setHeaderNoCache()
|
|
h.sendFile("text/plain")
|
|
}
|
|
|
|
func getInfoPacks(h serviceHandler) {
|
|
h.setHeaderCacheForever()
|
|
h.sendFile("text/plain; charset=utf-8")
|
|
}
|
|
|
|
func getLooseObject(h serviceHandler) {
|
|
h.setHeaderCacheForever()
|
|
h.sendFile("application/x-git-loose-object")
|
|
}
|
|
|
|
func getPackFile(h serviceHandler) {
|
|
h.setHeaderCacheForever()
|
|
h.sendFile("application/x-git-packed-objects")
|
|
}
|
|
|
|
func getIdxFile(h serviceHandler) {
|
|
h.setHeaderCacheForever()
|
|
h.sendFile("application/x-git-packed-objects-toc")
|
|
}
|
|
|
|
var routes = []struct {
|
|
re *lazyregexp.Regexp
|
|
method string
|
|
handler func(serviceHandler)
|
|
}{
|
|
{lazyregexp.New("(.*?)/git-upload-pack$"), "POST", serviceUploadPack},
|
|
{lazyregexp.New("(.*?)/git-receive-pack$"), "POST", serviceReceivePack},
|
|
{lazyregexp.New("(.*?)/info/refs$"), "GET", getInfoRefs},
|
|
{lazyregexp.New("(.*?)/HEAD$"), "GET", getTextFile},
|
|
{lazyregexp.New("(.*?)/objects/info/alternates$"), "GET", getTextFile},
|
|
{lazyregexp.New("(.*?)/objects/info/http-alternates$"), "GET", getTextFile},
|
|
{lazyregexp.New("(.*?)/objects/info/packs$"), "GET", getInfoPacks},
|
|
{lazyregexp.New("(.*?)/objects/info/[^/]*$"), "GET", getTextFile},
|
|
{lazyregexp.New("(.*?)/objects/[0-9a-f]{2}/[0-9a-f]{38}$"), "GET", getLooseObject},
|
|
{lazyregexp.New("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.pack$"), "GET", getPackFile},
|
|
{lazyregexp.New("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.idx$"), "GET", getIdxFile},
|
|
}
|
|
|
|
func getGitRepoPath(dir string) (string, error) {
|
|
if !strings.HasSuffix(dir, ".git") {
|
|
dir += ".git"
|
|
}
|
|
|
|
filename := filepath.Join(conf.Repository.Root, dir)
|
|
if _, err := os.Stat(filename); os.IsNotExist(err) {
|
|
return "", err
|
|
}
|
|
|
|
return filename, nil
|
|
}
|
|
|
|
func HTTP(c *HTTPContext) {
|
|
for _, route := range routes {
|
|
reqPath := strings.ToLower(c.Req.URL.Path)
|
|
m := route.re.FindStringSubmatch(reqPath)
|
|
if m == nil {
|
|
continue
|
|
}
|
|
|
|
// We perform check here because route matched in cmd/web.go is wider than needed,
|
|
// but we only want to output this message only if user is really trying to access
|
|
// Git HTTP endpoints.
|
|
if conf.Repository.DisableHTTPGit {
|
|
c.Error(http.StatusForbidden, "Interacting with repositories by HTTP protocol is disabled")
|
|
return
|
|
}
|
|
|
|
if route.method != c.Req.Method {
|
|
c.Error(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
// 🚨 SECURITY: Prevent path traversal.
|
|
cleaned := pathutil.Clean(m[1])
|
|
if m[1] != "/"+cleaned {
|
|
c.Error(http.StatusBadRequest, "Request path contains suspicious characters")
|
|
return
|
|
}
|
|
|
|
file := strings.TrimPrefix(reqPath, cleaned)
|
|
dir, err := getGitRepoPath(cleaned)
|
|
if err != nil {
|
|
log.Warn("HTTP.getGitRepoPath: %v", err)
|
|
c.Error(http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
route.handler(serviceHandler{
|
|
w: c.Resp,
|
|
r: c.Req.Request,
|
|
dir: dir,
|
|
file: file,
|
|
|
|
authUser: c.AuthUser,
|
|
ownerName: c.OwnerName,
|
|
ownerSalt: c.OwnerSalt,
|
|
repoID: c.RepoID,
|
|
repoName: c.RepoName,
|
|
})
|
|
return
|
|
}
|
|
|
|
c.Error(http.StatusNotFound)
|
|
}
|