123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- // 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"
- "regexp"
- "strconv"
- "strings"
- "time"
- "github.com/Unknwon/com"
- log "gopkg.in/clog.v1"
- "gopkg.in/macaron.v1"
- "github.com/gogits/gogs/models"
- "github.com/gogits/gogs/models/errors"
- "github.com/gogits/gogs/pkg/context"
- "github.com/gogits/gogs/pkg/setting"
- "github.com/gogits/gogs/pkg/tool"
- )
- const (
- ENV_AUTH_USER_ID = "GOGS_AUTH_USER_ID"
- ENV_AUTH_USER_NAME = "GOGS_AUTH_USER_NAME"
- ENV_AUTH_USER_EMAIL = "GOGS_AUTH_USER_EMAIL"
- ENV_REPO_OWNER_NAME = "GOGS_REPO_OWNER_NAME"
- ENV_REPO_OWNER_SALT_MD5 = "GOGS_REPO_OWNER_SALT_MD5"
- ENV_REPO_ID = "GOGS_REPO_ID"
- ENV_REPO_NAME = "GOGS_REPO_NAME"
- ENV_REPO_CUSTOM_HOOKS_PATH = "GOGS_REPO_CUSTOM_HOOKS_PATH"
- )
- type HTTPContext struct {
- *context.Context
- OwnerName string
- OwnerSalt string
- RepoID int64
- RepoName string
- AuthUser *models.User
- }
- // askCredentials responses HTTP header and status which informs client to provide credentials.
- func askCredentials(c *context.Context, status int, text string) {
- c.Resp.Header().Set("WWW-Authenticate", "Basic realm=\".\"")
- c.HandleText(status, text)
- }
- func HTTPContexter() macaron.Handler {
- return func(c *context.Context) {
- 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 := models.GetUserByName(ownerName)
- if err != nil {
- c.NotFoundOrServerError("GetUserByName", errors.IsUserNotExist, err)
- return
- }
- repo, err := models.GetRepositoryByName(owner.ID, repoName)
- if err != nil {
- c.NotFoundOrServerError("GetRepositoryByName", errors.IsRepoNotExist, err)
- return
- }
- // Authentication is not required for pulling from public repositories.
- if isPull && !repo.IsPrivate && !setting.Service.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.NotFound()
- return
- }
- // Handle HTTP Basic Authentication
- authHead := c.Req.Header.Get("Authorization")
- if len(authHead) == 0 {
- 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 := models.UserSignIn(authUsername, authPassword)
- if err != nil && !errors.IsUserNotExist(err) {
- c.Handle(http.StatusInternalServerError, "UserSignIn", err)
- return
- }
- // If username and password combination failed, try again using username as a token.
- if authUser == nil {
- token, err := models.GetAccessTokenBySHA(authUsername)
- if err != nil {
- if models.IsErrAccessTokenEmpty(err) || models.IsErrAccessTokenNotExist(err) {
- askCredentials(c, http.StatusUnauthorized, "")
- } else {
- c.Handle(http.StatusInternalServerError, "GetAccessTokenBySHA", err)
- }
- return
- }
- token.Updated = time.Now()
- authUser, err = models.GetUserByID(token.UID)
- if err != nil {
- // Once we found token, we're supposed to find its related user,
- // thus any error is unexpected.
- c.Handle(http.StatusInternalServerError, "GetUserByID", err)
- return
- }
- } else if authUser.IsEnabledTwoFactor() {
- 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("HTTPGit - Authenticated user: %s", authUser.Name)
- mode := models.ACCESS_MODE_WRITE
- if isPull {
- mode = models.ACCESS_MODE_READ
- }
- has, err := models.HasAccess(authUser.ID, repo, mode)
- if err != nil {
- c.Handle(http.StatusInternalServerError, "HasAccess", err)
- return
- } else if !has {
- askCredentials(c, http.StatusForbidden, "User permission denied")
- return
- }
- if !isPull && repo.IsMirror {
- c.HandleText(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 *models.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)
- }
- type ComposeHookEnvsOptions struct {
- AuthUser *models.User
- OwnerName string
- OwnerSalt string
- RepoID int64
- RepoName string
- RepoPath string
- }
- func ComposeHookEnvs(opts ComposeHookEnvsOptions) []string {
- envs := []string{
- "SSH_ORIGINAL_COMMAND=1",
- ENV_AUTH_USER_ID + "=" + com.ToStr(opts.AuthUser.ID),
- ENV_AUTH_USER_NAME + "=" + opts.AuthUser.Name,
- ENV_AUTH_USER_EMAIL + "=" + opts.AuthUser.Email,
- ENV_REPO_OWNER_NAME + "=" + opts.OwnerName,
- ENV_REPO_OWNER_SALT_MD5 + "=" + tool.MD5(opts.OwnerSalt),
- ENV_REPO_ID + "=" + com.ToStr(opts.RepoID),
- ENV_REPO_NAME + "=" + opts.RepoName,
- ENV_REPO_CUSTOM_HOOKS_PATH + "=" + path.Join(opts.RepoPath, "custom_hooks"),
- }
- return envs
- }
- 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(2, "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(), ComposeHookEnvs(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(2, "HTTP.serviceRPC: fail to serve RPC '%s': %v - %s", service, err, stderr)
- 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(2, 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 {
- reg *regexp.Regexp
- method string
- handler func(serviceHandler)
- }{
- {regexp.MustCompile("(.*?)/git-upload-pack$"), "POST", serviceUploadPack},
- {regexp.MustCompile("(.*?)/git-receive-pack$"), "POST", serviceReceivePack},
- {regexp.MustCompile("(.*?)/info/refs$"), "GET", getInfoRefs},
- {regexp.MustCompile("(.*?)/HEAD$"), "GET", getTextFile},
- {regexp.MustCompile("(.*?)/objects/info/alternates$"), "GET", getTextFile},
- {regexp.MustCompile("(.*?)/objects/info/http-alternates$"), "GET", getTextFile},
- {regexp.MustCompile("(.*?)/objects/info/packs$"), "GET", getInfoPacks},
- {regexp.MustCompile("(.*?)/objects/info/[^/]*$"), "GET", getTextFile},
- {regexp.MustCompile("(.*?)/objects/[0-9a-f]{2}/[0-9a-f]{38}$"), "GET", getLooseObject},
- {regexp.MustCompile("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.pack$"), "GET", getPackFile},
- {regexp.MustCompile("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.idx$"), "GET", getIdxFile},
- }
- func getGitRepoPath(dir string) (string, error) {
- if !strings.HasSuffix(dir, ".git") {
- dir += ".git"
- }
- filename := path.Join(setting.RepoRootPath, 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.reg.FindStringSubmatch(reqPath)
- if m == nil {
- continue
- }
- // We perform check here because routes 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 setting.Repository.DisableHTTPGit {
- c.HandleText(http.StatusForbidden, "Interacting with repositories by HTTP protocol is not disabled")
- return
- }
- if route.method != c.Req.Method {
- c.NotFound()
- return
- }
- file := strings.TrimPrefix(reqPath, m[1]+"/")
- dir, err := getGitRepoPath(m[1])
- if err != nil {
- log.Warn("HTTP.getGitRepoPath: %v", err)
- c.NotFound()
- 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.NotFound()
- }
|