2014-04-16 08:37:07 +00:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2019-04-25 22:42:50 +00:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2014-04-16 08:37:07 +00:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-04-10 18:20:58 +00:00
package repo
import (
2014-04-11 02:27:13 +00:00
"bytes"
2014-10-15 20:28:38 +00:00
"compress/gzip"
2019-11-30 14:40:22 +00:00
gocontext "context"
2014-04-10 18:20:58 +00:00
"fmt"
2020-01-16 02:40:13 +00:00
"io/ioutil"
2014-04-10 18:20:58 +00:00
"net/http"
"os"
"os/exec"
"path"
"regexp"
"strconv"
"strings"
2020-01-16 02:40:13 +00:00
"sync"
2014-04-10 18:20:58 +00:00
"time"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/models"
2019-11-22 23:33:31 +00:00
"code.gitea.io/gitea/modules/auth/sso"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
2019-06-26 18:15:26 +00:00
"code.gitea.io/gitea/modules/git"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/modules/log"
2019-11-30 14:40:22 +00:00
"code.gitea.io/gitea/modules/process"
2016-11-10 16:24:48 +00:00
"code.gitea.io/gitea/modules/setting"
2020-05-29 14:47:17 +00:00
"code.gitea.io/gitea/modules/structs"
2019-08-15 14:46:21 +00:00
"code.gitea.io/gitea/modules/timeutil"
2020-08-11 20:05:34 +00:00
"code.gitea.io/gitea/modules/util"
2019-12-15 02:49:52 +00:00
repo_service "code.gitea.io/gitea/services/repository"
2014-04-10 18:20:58 +00:00
)
2021-01-26 15:36:53 +00:00
// httpBase implmentation git smart HTTP protocol
func httpBase ( ctx * context . Context ) ( h * serviceHandler ) {
if setting . Repository . DisableHTTPGit {
ctx . Resp . WriteHeader ( http . StatusForbidden )
_ , err := ctx . Resp . Write ( [ ] byte ( "Interacting with repositories by HTTP protocol is not allowed" ) )
if err != nil {
log . Error ( err . Error ( ) )
}
return
}
2019-01-14 21:05:27 +00:00
if len ( setting . Repository . AccessControlAllowOrigin ) > 0 {
2019-01-16 04:16:45 +00:00
allowedOrigin := setting . Repository . AccessControlAllowOrigin
2019-01-14 21:05:27 +00:00
// Set CORS headers for browser-based git clients
2019-01-16 04:16:45 +00:00
ctx . Resp . Header ( ) . Set ( "Access-Control-Allow-Origin" , allowedOrigin )
2019-01-14 21:05:27 +00:00
ctx . Resp . Header ( ) . Set ( "Access-Control-Allow-Headers" , "Content-Type, Authorization, User-Agent" )
// Handle preflight OPTIONS request
if ctx . Req . Method == "OPTIONS" {
2019-01-16 04:16:45 +00:00
if allowedOrigin == "*" {
ctx . Status ( http . StatusOK )
} else if allowedOrigin == "null" {
ctx . Status ( http . StatusForbidden )
} else {
origin := ctx . Req . Header . Get ( "Origin" )
if len ( origin ) > 0 && origin == allowedOrigin {
ctx . Status ( http . StatusOK )
} else {
ctx . Status ( http . StatusForbidden )
}
}
2019-01-14 21:05:27 +00:00
return
}
}
2014-07-26 04:24:27 +00:00
username := ctx . Params ( ":username" )
2015-12-01 01:45:55 +00:00
reponame := strings . TrimSuffix ( ctx . Params ( ":reponame" ) , ".git" )
2017-04-21 02:43:29 +00:00
if ctx . Query ( "go-get" ) == "1" {
2017-09-23 13:24:24 +00:00
context . EarlyResponseForGoGetMeta ( ctx )
2017-04-21 02:43:29 +00:00
return
}
2014-04-10 18:20:58 +00:00
2020-01-16 02:40:13 +00:00
var isPull , receivePack bool
2014-04-10 18:20:58 +00:00
service := ctx . Query ( "service" )
if service == "git-receive-pack" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-receive-pack" ) {
isPull = false
2020-01-16 02:40:13 +00:00
receivePack = true
2014-04-10 18:20:58 +00:00
} else if service == "git-upload-pack" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-upload-pack" ) {
isPull = true
2017-02-21 15:02:10 +00:00
} else if service == "git-upload-archive" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-upload-archive" ) {
isPull = true
2014-04-10 18:20:58 +00:00
} else {
isPull = ( ctx . Req . Method == "GET" )
}
2017-02-21 15:02:10 +00:00
var accessMode models . AccessMode
if isPull {
accessMode = models . AccessModeRead
} else {
accessMode = models . AccessModeWrite
}
2015-12-01 01:45:55 +00:00
isWiki := false
2017-05-18 14:54:24 +00:00
var unitType = models . UnitTypeCode
2015-12-01 01:45:55 +00:00
if strings . HasSuffix ( reponame , ".wiki" ) {
isWiki = true
2017-05-18 14:54:24 +00:00
unitType = models . UnitTypeWiki
2017-02-25 14:54:40 +00:00
reponame = reponame [ : len ( reponame ) - 5 ]
2015-12-01 01:45:55 +00:00
}
2019-04-25 05:51:40 +00:00
owner , err := models . GetUserByName ( username )
2014-04-10 18:20:58 +00:00
if err != nil {
2021-01-24 15:23:05 +00:00
if models . IsErrUserNotExist ( err ) {
if redirectUserID , err := models . LookupUserRedirect ( username ) ; err == nil {
context . RedirectToUser ( ctx , username , redirectUserID )
} else {
ctx . NotFound ( "GetUserByName" , err )
}
} else {
ctx . ServerError ( "GetUserByName" , err )
}
2019-04-25 05:51:40 +00:00
return
}
2020-11-18 09:58:25 +00:00
if ! owner . IsOrganization ( ) && ! owner . IsActive {
2020-11-12 23:29:11 +00:00
ctx . HandleText ( http . StatusForbidden , "Repository cannot be accessed. You cannot push or open issues/pull-requests." )
return
}
2019-04-25 05:51:40 +00:00
2019-12-15 02:49:52 +00:00
repoExist := true
2019-04-25 05:51:40 +00:00
repo , err := models . GetRepositoryByName ( owner . ID , reponame )
if err != nil {
if models . IsErrRepoNotExist ( err ) {
2019-12-15 02:49:52 +00:00
if redirectRepoID , err := models . LookupRepoRedirect ( owner . ID , reponame ) ; err == nil {
2019-04-25 05:51:40 +00:00
context . RedirectToRepo ( ctx , redirectRepoID )
2019-12-15 02:49:52 +00:00
return
2019-04-25 05:51:40 +00:00
}
2019-12-15 02:49:52 +00:00
repoExist = false
2019-04-25 05:51:40 +00:00
} else {
ctx . ServerError ( "GetRepositoryByName" , err )
2019-12-15 02:49:52 +00:00
return
2019-04-25 05:51:40 +00:00
}
2014-04-10 18:20:58 +00:00
}
2019-01-23 18:58:38 +00:00
// Don't allow pushing if the repo is archived
2019-12-15 02:49:52 +00:00
if repoExist && repo . IsArchived && ! isPull {
2019-01-23 18:58:38 +00:00
ctx . HandleText ( http . StatusForbidden , "This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests." )
return
}
2015-02-07 20:47:23 +00:00
// Only public pull don't need auth.
2019-12-15 02:49:52 +00:00
isPublicPull := repoExist && ! repo . IsPrivate && isPull
2015-02-07 20:47:23 +00:00
var (
askAuth = ! isPublicPull || setting . Service . RequireSignInView
authUser * models . User
authUsername string
authPasswd string
2017-02-25 14:54:40 +00:00
environ [ ] string
2015-02-07 20:47:23 +00:00
)
2014-04-11 02:27:13 +00:00
2020-05-29 14:47:17 +00:00
// don't allow anonymous pulls if organization is not public
if isPublicPull {
if err := repo . GetOwner ( ) ; err != nil {
ctx . ServerError ( "GetOwner" , err )
return
}
askAuth = askAuth || ( repo . Owner . Visibility != structs . VisibleTypePublic )
}
2014-04-10 18:20:58 +00:00
// check access
if askAuth {
2018-08-29 14:39:16 +00:00
authUsername = ctx . Req . Header . Get ( setting . ReverseProxyAuthUser )
if setting . Service . EnableReverseProxyAuth && len ( authUsername ) > 0 {
2016-12-28 21:33:59 +00:00
authUser , err = models . GetUserByName ( authUsername )
2015-02-07 20:47:23 +00:00
if err != nil {
2016-12-28 21:33:59 +00:00
ctx . HandleText ( 401 , "reverse proxy login error, got error while running GetUserByName" )
2015-02-07 20:47:23 +00:00
return
2015-01-08 14:16:38 +00:00
}
2016-12-30 07:26:05 +00:00
} else {
2016-12-28 21:33:59 +00:00
authHead := ctx . Req . Header . Get ( "Authorization" )
if len ( authHead ) == 0 {
ctx . Resp . Header ( ) . Set ( "WWW-Authenticate" , "Basic realm=\".\"" )
ctx . Error ( http . StatusUnauthorized )
return
2015-08-18 22:22:33 +00:00
}
2016-12-28 21:33:59 +00:00
auths := strings . Fields ( authHead )
// currently check basic auth
// TODO: support digit auth
// FIXME: middlewares/context.go did basic auth check already,
// maybe could use that one.
if len ( auths ) != 2 || auths [ 0 ] != "Basic" {
ctx . HandleText ( http . StatusUnauthorized , "no basic auth and digit auth" )
return
}
authUsername , authPasswd , err = base . BasicAuthDecode ( auths [ 1 ] )
2015-02-07 20:47:23 +00:00
if err != nil {
2016-12-28 21:33:59 +00:00
ctx . HandleText ( http . StatusUnauthorized , "no basic auth and digit auth" )
2015-01-08 14:16:38 +00:00
return
}
2014-04-10 18:20:58 +00:00
2019-02-12 09:20:08 +00:00
// Check if username or password is a token
isUsernameToken := len ( authPasswd ) == 0 || authPasswd == "x-oauth-basic"
// Assume username is token
authToken := authUsername
if ! isUsernameToken {
// Assume password is token
authToken = authPasswd
2017-07-26 07:33:16 +00:00
}
2019-11-22 23:33:31 +00:00
uid := sso . CheckOAuthAccessToken ( authToken )
2019-04-25 22:42:50 +00:00
if uid != 0 {
ctx . Data [ "IsApiToken" ] = true
authUser , err = models . GetUserByID ( uid )
if err != nil {
ctx . ServerError ( "GetUserByID" , err )
return
}
}
2019-02-12 09:20:08 +00:00
// Assume password is a token.
token , err := models . GetAccessTokenBySHA ( authToken )
if err == nil {
2020-04-14 18:32:03 +00:00
authUser , err = models . GetUserByID ( token . UID )
if err != nil {
ctx . ServerError ( "GetUserByID" , err )
return
2016-12-28 21:33:59 +00:00
}
2020-04-14 18:32:03 +00:00
2019-08-15 14:46:21 +00:00
token . UpdatedUnix = timeutil . TimeStampNow ( )
2019-02-12 09:20:08 +00:00
if err = models . UpdateAccessToken ( token ) ; err != nil {
ctx . ServerError ( "UpdateAccessToken" , err )
}
2019-06-12 19:41:28 +00:00
} else if ! models . IsErrAccessTokenNotExist ( err ) && ! models . IsErrAccessTokenEmpty ( err ) {
log . Error ( "GetAccessTokenBySha: %v" , err )
2019-02-12 09:20:08 +00:00
}
2017-07-26 07:33:16 +00:00
2019-02-12 09:20:08 +00:00
if authUser == nil {
// Check username and password
authUser , err = models . UserSignIn ( authUsername , authPasswd )
if err != nil {
2019-07-23 17:32:53 +00:00
if models . IsErrUserProhibitLogin ( err ) {
2019-07-23 20:38:47 +00:00
ctx . HandleText ( http . StatusForbidden , "User is not permitted to login" )
2019-07-23 17:32:53 +00:00
return
} else if ! models . IsErrUserNotExist ( err ) {
2019-02-12 09:20:08 +00:00
ctx . ServerError ( "UserSignIn error: %v" , err )
2017-10-15 15:35:43 +00:00
return
}
2019-02-12 09:20:08 +00:00
}
if authUser == nil {
2020-01-21 22:51:39 +00:00
ctx . HandleText ( http . StatusUnauthorized , fmt . Sprintf ( "invalid credentials from %s" , ctx . RemoteAddr ( ) ) )
2017-07-26 07:33:16 +00:00
return
}
_ , err = models . GetTwoFactorByUID ( authUser . ID )
if err == nil {
// TODO: This response should be changed to "invalid credentials" for security reasons once the expectation behind it (creating an app token to authenticate) is properly documented
ctx . HandleText ( http . StatusUnauthorized , "Users with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password. Please create and use a personal access token on the user settings page" )
return
} else if ! models . IsErrTwoFactorNotEnrolled ( err ) {
2018-01-10 21:34:17 +00:00
ctx . ServerError ( "IsErrTwoFactorNotEnrolled" , err )
2016-12-28 21:33:59 +00:00
return
}
2014-04-16 08:45:02 +00:00
}
2018-03-29 01:39:51 +00:00
}
2014-04-10 18:20:58 +00:00
2020-11-12 23:29:11 +00:00
if ! authUser . IsActive || authUser . ProhibitLogin {
ctx . HandleText ( http . StatusForbidden , "Your account is disabled." )
return
}
2019-12-15 02:49:52 +00:00
if repoExist {
perm , err := models . GetUserRepoPermission ( repo , authUser )
if err != nil {
ctx . ServerError ( "GetUserRepoPermission" , err )
return
}
2018-03-29 01:39:51 +00:00
2019-12-15 02:49:52 +00:00
if ! perm . CanAccess ( accessMode , unitType ) {
ctx . HandleText ( http . StatusForbidden , "User permission denied" )
return
}
2014-04-10 18:20:58 +00:00
2019-12-15 02:49:52 +00:00
if ! isPull && repo . IsMirror {
ctx . HandleText ( http . StatusForbidden , "mirror repository is read-only" )
return
}
2017-05-18 14:54:24 +00:00
}
2017-02-25 14:54:40 +00:00
environ = [ ] string {
models . EnvRepoUsername + "=" + username ,
models . EnvRepoName + "=" + reponame ,
models . EnvPusherName + "=" + authUser . Name ,
models . EnvPusherID + fmt . Sprintf ( "=%d" , authUser . ID ) ,
2019-10-21 08:21:45 +00:00
models . EnvIsDeployKey + "=false" ,
2020-09-07 03:53:42 +00:00
models . EnvAppURL + "=" + setting . AppURL ,
2015-12-01 01:45:55 +00:00
}
2018-07-26 16:38:55 +00:00
if ! authUser . KeepEmailPrivate {
environ = append ( environ , models . EnvPusherEmail + "=" + authUser . Email )
}
2017-02-25 14:54:40 +00:00
if isWiki {
environ = append ( environ , models . EnvRepoIsWiki + "=true" )
} else {
environ = append ( environ , models . EnvRepoIsWiki + "=false" )
2017-02-21 15:02:10 +00:00
}
}
2019-12-15 02:49:52 +00:00
if ! repoExist {
2020-01-16 02:40:13 +00:00
if ! receivePack {
ctx . HandleText ( http . StatusNotFound , "Repository not found" )
return
}
2019-12-15 02:49:52 +00:00
if owner . IsOrganization ( ) && ! setting . Repository . EnablePushCreateOrg {
ctx . HandleText ( http . StatusForbidden , "Push to create is not enabled for organizations." )
return
}
if ! owner . IsOrganization ( ) && ! setting . Repository . EnablePushCreateUser {
ctx . HandleText ( http . StatusForbidden , "Push to create is not enabled for users." )
return
}
2020-01-16 02:40:13 +00:00
// Return dummy payload if GET receive-pack
if ctx . Req . Method == http . MethodGet {
dummyInfoRefs ( ctx )
return
}
2019-12-15 02:49:52 +00:00
repo , err = repo_service . PushCreateRepo ( authUser , owner , reponame )
if err != nil {
log . Error ( "pushCreateRepo: %v" , err )
ctx . Status ( http . StatusNotFound )
return
}
}
2020-04-19 14:26:58 +00:00
if isWiki {
// Ensure the wiki is enabled before we allow access to it
if _ , err := repo . GetUnit ( models . UnitTypeWiki ) ; err != nil {
if models . IsErrUnitTypeNotExist ( err ) {
ctx . HandleText ( http . StatusForbidden , "repository wiki is disabled" )
return
}
log . Error ( "Failed to get the wiki unit in %-v Error: %v" , repo , err )
ctx . ServerError ( "GetUnit(UnitTypeWiki) for " + repo . FullName ( ) , err )
return
}
}
2020-08-30 07:24:39 +00:00
environ = append ( environ , models . EnvRepoID + fmt . Sprintf ( "=%d" , repo . ID ) )
2019-12-15 02:49:52 +00:00
2019-11-21 16:24:43 +00:00
w := ctx . Resp
2021-01-26 15:36:53 +00:00
r := ctx . Req
2019-11-21 16:24:43 +00:00
cfg := & serviceConfig {
2016-06-01 11:19:01 +00:00
UploadPack : true ,
ReceivePack : true ,
2017-02-25 14:54:40 +00:00
Env : environ ,
2019-11-21 16:24:43 +00:00
}
2020-06-10 15:26:28 +00:00
r . URL . Path = strings . ToLower ( r . URL . Path ) // blue: In case some repo name has upper case name
2021-01-26 15:36:53 +00:00
dir := models . RepoPath ( username , reponame )
2019-11-21 16:24:43 +00:00
2021-01-26 15:36:53 +00:00
return & serviceHandler { cfg , w , r , dir , cfg . Env }
2014-04-10 18:20:58 +00:00
}
2020-01-16 02:40:13 +00:00
var (
infoRefsCache [ ] byte
infoRefsOnce sync . Once
)
func dummyInfoRefs ( ctx * context . Context ) {
infoRefsOnce . Do ( func ( ) {
tmpDir , err := ioutil . TempDir ( os . TempDir ( ) , "gitea-info-refs-cache" )
if err != nil {
log . Error ( "Failed to create temp dir for git-receive-pack cache: %v" , err )
return
}
defer func ( ) {
2020-08-11 20:05:34 +00:00
if err := util . RemoveAll ( tmpDir ) ; err != nil {
2020-01-16 02:40:13 +00:00
log . Error ( "RemoveAll: %v" , err )
}
} ( )
if err := git . InitRepository ( tmpDir , true ) ; err != nil {
log . Error ( "Failed to init bare repo for git-receive-pack cache: %v" , err )
return
}
refs , err := git . NewCommand ( "receive-pack" , "--stateless-rpc" , "--advertise-refs" , "." ) . RunInDirBytes ( tmpDir )
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( refs ) ) )
}
log . Debug ( "populating infoRefsCache: \n%s" , string ( refs ) )
infoRefsCache = refs
} )
ctx . Header ( ) . Set ( "Expires" , "Fri, 01 Jan 1980 00:00:00 GMT" )
ctx . Header ( ) . Set ( "Pragma" , "no-cache" )
ctx . Header ( ) . Set ( "Cache-Control" , "no-cache, max-age=0, must-revalidate" )
ctx . Header ( ) . Set ( "Content-Type" , "application/x-git-receive-pack-advertisement" )
_ , _ = ctx . Write ( packetWrite ( "# service=git-receive-pack\n" ) )
_ , _ = ctx . Write ( [ ] byte ( "0000" ) )
_ , _ = ctx . Write ( infoRefsCache )
}
2016-06-01 11:19:01 +00:00
type serviceConfig struct {
UploadPack bool
ReceivePack bool
2017-02-25 14:54:40 +00:00
Env [ ] string
2014-04-10 18:20:58 +00:00
}
2016-06-01 11:19:01 +00:00
type serviceHandler struct {
2017-02-25 14:54:40 +00:00
cfg * serviceConfig
w http . ResponseWriter
r * http . Request
dir string
environ [ ] string
2016-06-01 11:19:01 +00:00
}
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" )
}
2021-01-26 15:36:53 +00:00
func ( h * serviceHandler ) sendFile ( contentType , file string ) {
reqFile := path . Join ( h . dir , file )
2016-06-01 11:19:01 +00:00
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 )
2014-04-10 18:20:58 +00:00
}
2020-07-07 22:31:49 +00:00
// one or more key=value pairs separated by colons
var safeGitProtocolHeader = regexp . MustCompile ( ` ^[0-9a-zA-Z]+=[0-9a-zA-Z]+(:[0-9a-zA-Z]+=[0-9a-zA-Z]+)*$ ` )
2019-06-26 18:15:26 +00:00
func getGitConfig ( option , dir string ) string {
out , err := git . NewCommand ( "config" , option ) . RunInDir ( dir )
2016-06-01 11:19:01 +00:00
if err != nil {
2019-06-01 15:00:21 +00:00
log . Error ( "%v - %s" , err , out )
2015-12-01 01:45:55 +00:00
}
2017-02-25 14:54:40 +00:00
return out [ 0 : len ( out ) - 1 ]
2016-06-01 11:19:01 +00:00
}
2015-12-01 01:45:55 +00:00
2016-06-01 11:19:01 +00:00
func getConfigSetting ( service , dir string ) bool {
2020-10-11 20:27:20 +00:00
service = strings . ReplaceAll ( service , "-" , "" )
2016-06-01 11:19:01 +00:00
setting := getGitConfig ( "http." + service , dir )
if service == "uploadpack" {
return setting != "false"
2015-12-01 01:45:55 +00:00
}
2016-06-01 11:19:01 +00:00
return setting == "true"
2015-12-01 01:45:55 +00:00
}
2016-06-01 11:19:01 +00:00
func hasAccess ( service string , h serviceHandler , checkContentType bool ) bool {
if checkContentType {
if h . r . Header . Get ( "Content-Type" ) != fmt . Sprintf ( "application/x-git-%s-request" , service ) {
return false
2014-04-10 18:20:58 +00:00
}
}
2016-06-01 11:19:01 +00:00
if ! ( service == "upload-pack" || service == "receive-pack" ) {
return false
}
if service == "receive-pack" {
return h . cfg . ReceivePack
}
if service == "upload-pack" {
return h . cfg . UploadPack
}
2014-04-10 18:20:58 +00:00
2016-06-01 11:19:01 +00:00
return getConfigSetting ( service , h . dir )
2014-04-10 18:20:58 +00:00
}
2016-06-01 11:19:01 +00:00
func serviceRPC ( h serviceHandler , service string ) {
2019-06-12 19:41:28 +00:00
defer func ( ) {
if err := h . r . Body . Close ( ) ; err != nil {
log . Error ( "serviceRPC: Close: %v" , err )
}
} ( )
2014-04-10 18:20:58 +00:00
2016-06-01 11:19:01 +00:00
if ! hasAccess ( service , h , true ) {
h . w . WriteHeader ( http . StatusUnauthorized )
2014-04-10 18:20:58 +00:00
return
}
2017-02-21 15:02:10 +00:00
2016-06-01 11:19:01 +00:00
h . w . Header ( ) . Set ( "Content-Type" , fmt . Sprintf ( "application/x-git-%s-result" , service ) )
2014-04-10 18:20:58 +00:00
2017-02-25 14:54:40 +00:00
var err error
var reqBody = h . r . Body
2014-10-15 20:28:38 +00:00
// Handle GZIP.
2016-06-01 11:19:01 +00:00
if h . r . Header . Get ( "Content-Encoding" ) == "gzip" {
2014-10-15 20:28:38 +00:00
reqBody , err = gzip . NewReader ( reqBody )
if err != nil {
2019-06-01 15:00:21 +00:00
log . Error ( "Fail to create gzip reader: %v" , err )
2016-06-01 11:19:01 +00:00
h . w . WriteHeader ( http . StatusInternalServerError )
2014-10-15 20:28:38 +00:00
return
}
}
2017-02-25 14:54:40 +00:00
// set this for allow pre-receive and post-receive execute
h . environ = append ( h . environ , "SSH_ORIGINAL_COMMAND=" + service )
2017-02-21 15:02:10 +00:00
2020-07-07 22:31:49 +00:00
if protocol := h . r . Header . Get ( "Git-Protocol" ) ; protocol != "" && safeGitProtocolHeader . MatchString ( protocol ) {
h . environ = append ( h . environ , "GIT_PROTOCOL=" + protocol )
}
2019-11-30 14:40:22 +00:00
ctx , cancel := gocontext . WithCancel ( git . DefaultContext )
defer cancel ( )
2017-02-25 14:54:40 +00:00
var stderr bytes . Buffer
2019-11-30 14:40:22 +00:00
cmd := exec . CommandContext ( ctx , git . GitExecutable , service , "--stateless-rpc" , h . dir )
2016-06-01 11:19:01 +00:00
cmd . Dir = h . dir
2020-07-07 22:31:49 +00:00
cmd . Env = append ( os . Environ ( ) , h . environ ... )
2016-06-01 11:19:01 +00:00
cmd . Stdout = h . w
2017-02-25 14:54:40 +00:00
cmd . Stdin = reqBody
cmd . Stderr = & stderr
2019-11-30 14:40:22 +00:00
pid := process . GetManager ( ) . Add ( fmt . Sprintf ( "%s %s %s [repo_path: %s]" , git . GitExecutable , service , "--stateless-rpc" , h . dir ) , cancel )
defer process . GetManager ( ) . Remove ( pid )
2014-10-15 20:28:38 +00:00
if err := cmd . Run ( ) ; err != nil {
2020-10-18 14:10:11 +00:00
log . Error ( "Fail to serve RPC(%s) in %s: %v - %s" , service , h . dir , err , stderr . String ( ) )
2014-04-10 18:20:58 +00:00
return
}
}
2021-01-26 15:36:53 +00:00
// ServiceUploadPack implements Git Smart HTTP protocol
func ServiceUploadPack ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
serviceRPC ( * h , "upload-pack" )
}
2014-04-10 18:20:58 +00:00
}
2021-01-26 15:36:53 +00:00
// ServiceReceivePack implements Git Smart HTTP protocol
func ServiceReceivePack ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
serviceRPC ( * h , "receive-pack" )
}
2014-04-10 18:20:58 +00:00
}
func getServiceType ( r * http . Request ) string {
serviceType := r . FormValue ( "service" )
2016-06-01 11:19:01 +00:00
if ! strings . HasPrefix ( serviceType , "git-" ) {
2014-04-10 18:20:58 +00:00
return ""
}
return strings . Replace ( serviceType , "git-" , "" , 1 )
}
2016-06-01 11:19:01 +00:00
func updateServerInfo ( dir string ) [ ] byte {
2019-06-26 18:15:26 +00:00
out , err := git . NewCommand ( "update-server-info" ) . RunInDirBytes ( dir )
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( out ) ) )
}
return out
2014-04-10 18:20:58 +00:00
}
2016-06-01 11:19:01 +00:00
func packetWrite ( str string ) [ ] byte {
2017-02-25 14:54:40 +00:00
s := strconv . FormatInt ( int64 ( len ( str ) + 4 ) , 16 )
2016-06-01 11:19:01 +00:00
if len ( s ) % 4 != 0 {
s = strings . Repeat ( "0" , 4 - len ( s ) % 4 ) + s
2014-04-10 18:20:58 +00:00
}
2016-06-01 11:19:01 +00:00
return [ ] byte ( s + str )
2014-04-10 18:20:58 +00:00
}
2021-01-26 15:36:53 +00:00
// GetInfoRefs implements Git dumb HTTP
func GetInfoRefs ( ctx * context . Context ) {
h := httpBase ( ctx )
if h == nil {
return
}
2016-06-01 11:19:01 +00:00
h . setHeaderNoCache ( )
2021-01-26 15:36:53 +00:00
if hasAccess ( getServiceType ( h . r ) , * h , false ) {
2016-06-01 11:19:01 +00:00
service := getServiceType ( h . r )
2020-07-07 22:31:49 +00:00
if protocol := h . r . Header . Get ( "Git-Protocol" ) ; protocol != "" && safeGitProtocolHeader . MatchString ( protocol ) {
h . environ = append ( h . environ , "GIT_PROTOCOL=" + protocol )
}
h . environ = append ( os . Environ ( ) , h . environ ... )
refs , err := git . NewCommand ( service , "--stateless-rpc" , "--advertise-refs" , "." ) . RunInDirTimeoutEnv ( h . environ , - 1 , h . dir )
2019-06-26 18:15:26 +00:00
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( refs ) ) )
}
2016-06-01 11:19:01 +00:00
h . w . Header ( ) . Set ( "Content-Type" , fmt . Sprintf ( "application/x-git-%s-advertisement" , service ) )
h . w . WriteHeader ( http . StatusOK )
2019-06-12 19:41:28 +00:00
_ , _ = h . w . Write ( packetWrite ( "# service=git-" + service + "\n" ) )
_ , _ = h . w . Write ( [ ] byte ( "0000" ) )
_ , _ = h . w . Write ( refs )
2016-06-01 11:19:01 +00:00
} else {
updateServerInfo ( h . dir )
2021-01-26 15:36:53 +00:00
h . sendFile ( "text/plain; charset=utf-8" , "info/refs" )
2014-04-10 18:20:58 +00:00
}
}
2021-01-26 15:36:53 +00:00
// GetTextFile implements Git dumb HTTP
func GetTextFile ( p string ) func ( * context . Context ) {
return func ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
h . setHeaderNoCache ( )
file := ctx . Params ( "file" )
if file != "" {
h . sendFile ( "text/plain" , "objects/info/" + file )
} else {
h . sendFile ( "text/plain" , p )
}
}
}
2014-04-10 18:20:58 +00:00
}
2021-01-26 15:36:53 +00:00
// GetInfoPacks implements Git dumb HTTP
func GetInfoPacks ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
h . setHeaderCacheForever ( )
h . sendFile ( "text/plain; charset=utf-8" , "objects/info/packs" )
}
2016-06-01 11:19:01 +00:00
}
2014-04-10 18:20:58 +00:00
2021-01-26 15:36:53 +00:00
// GetLooseObject implements Git dumb HTTP
func GetLooseObject ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
h . setHeaderCacheForever ( )
h . sendFile ( "application/x-git-loose-object" , fmt . Sprintf ( "objects/%s/%s" ,
ctx . Params ( "head" ) , ctx . Params ( "hash" ) ) )
}
2014-04-10 18:20:58 +00:00
}
2021-01-26 15:36:53 +00:00
// GetPackFile implements Git dumb HTTP
func GetPackFile ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
h . setHeaderCacheForever ( )
h . sendFile ( "application/x-git-packed-objects" , "objects/pack/pack-" + ctx . Params ( "file" ) + ".pack" )
2016-06-01 11:19:01 +00:00
}
2021-01-26 15:36:53 +00:00
}
2014-04-10 18:20:58 +00:00
2021-01-26 15:36:53 +00:00
// GetIdxFile implements Git dumb HTTP
func GetIdxFile ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
h . setHeaderCacheForever ( )
h . sendFile ( "application/x-git-packed-objects-toc" , "objects/pack/pack-" + ctx . Params ( "file" ) + ".idx" )
2014-04-10 18:20:58 +00:00
}
}