2014-04-16 02:37:07 -06:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2019-04-25 16:42:50 -06:00
// Copyright 2019 The Gitea Authors. All rights reserved.
2014-04-16 02:37:07 -06:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-04-10 12:20:58 -06:00
package repo
import (
2014-04-10 20:27:13 -06:00
"bytes"
2014-10-15 14:28:38 -06:00
"compress/gzip"
2022-01-19 16:26:57 -07:00
gocontext "context"
2014-04-10 12:20:58 -06:00
"fmt"
"net/http"
"os"
"path"
"regexp"
"strconv"
"strings"
2020-01-15 19:40:13 -07:00
"sync"
2014-04-10 12:20:58 -06:00
"time"
2022-01-02 06:12:35 -07:00
"code.gitea.io/gitea/models/auth"
2021-11-28 04:58:28 -07:00
"code.gitea.io/gitea/models/perm"
2022-05-11 04:09:36 -06:00
access_model "code.gitea.io/gitea/models/perm/access"
2021-12-09 18:27:50 -07:00
repo_model "code.gitea.io/gitea/models/repo"
2021-11-09 12:57:58 -07:00
"code.gitea.io/gitea/models/unit"
2016-11-10 09:24:48 -07:00
"code.gitea.io/gitea/modules/context"
2019-06-26 12:15:26 -06:00
"code.gitea.io/gitea/modules/git"
2016-11-10 09:24:48 -07:00
"code.gitea.io/gitea/modules/log"
2022-05-08 10:46:32 -06:00
repo_module "code.gitea.io/gitea/modules/repository"
2016-11-10 09:24:48 -07:00
"code.gitea.io/gitea/modules/setting"
2020-05-29 08:47:17 -06:00
"code.gitea.io/gitea/modules/structs"
2020-08-11 14:05:34 -06:00
"code.gitea.io/gitea/modules/util"
2019-12-14 19:49:52 -07:00
repo_service "code.gitea.io/gitea/services/repository"
2014-04-10 12:20:58 -06:00
)
2021-07-08 05:38:13 -06:00
// httpBase implementation git smart HTTP protocol
2021-01-26 08:36:53 -07:00
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 14:05:27 -07:00
if len ( setting . Repository . AccessControlAllowOrigin ) > 0 {
2019-01-15 21:16:45 -07:00
allowedOrigin := setting . Repository . AccessControlAllowOrigin
2019-01-14 14:05:27 -07:00
// Set CORS headers for browser-based git clients
2019-01-15 21:16:45 -07:00
ctx . Resp . Header ( ) . Set ( "Access-Control-Allow-Origin" , allowedOrigin )
2019-01-14 14:05:27 -07: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-15 21:16:45 -07: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 14:05:27 -07:00
return
}
}
2014-07-25 22:24:27 -06:00
username := ctx . Params ( ":username" )
2015-11-30 18:45:55 -07:00
reponame := strings . TrimSuffix ( ctx . Params ( ":reponame" ) , ".git" )
2017-04-20 20:43:29 -06:00
2021-08-10 18:31:13 -06:00
if ctx . FormString ( "go-get" ) == "1" {
2017-09-23 07:24:24 -06:00
context . EarlyResponseForGoGetMeta ( ctx )
2017-04-20 20:43:29 -06:00
return
}
2014-04-10 12:20:58 -06:00
2020-01-15 19:40:13 -07:00
var isPull , receivePack bool
2021-08-10 18:31:13 -06:00
service := ctx . FormString ( "service" )
2014-04-10 12:20:58 -06:00
if service == "git-receive-pack" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-receive-pack" ) {
isPull = false
2020-01-15 19:40:13 -07:00
receivePack = true
2014-04-10 12:20:58 -06:00
} else if service == "git-upload-pack" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-upload-pack" ) {
isPull = true
2017-02-21 08:02:10 -07:00
} else if service == "git-upload-archive" ||
strings . HasSuffix ( ctx . Req . URL . Path , "git-upload-archive" ) {
isPull = true
2014-04-10 12:20:58 -06:00
} else {
2021-04-09 01:40:34 -06:00
isPull = ctx . Req . Method == "GET"
2014-04-10 12:20:58 -06:00
}
2021-11-28 04:58:28 -07:00
var accessMode perm . AccessMode
2017-02-21 08:02:10 -07:00
if isPull {
2021-11-28 04:58:28 -07:00
accessMode = perm . AccessModeRead
2017-02-21 08:02:10 -07:00
} else {
2021-11-28 04:58:28 -07:00
accessMode = perm . AccessModeWrite
2017-02-21 08:02:10 -07:00
}
2015-11-30 18:45:55 -07:00
isWiki := false
2022-01-20 10:46:10 -07:00
unitType := unit . TypeCode
2021-04-15 12:57:19 -06:00
var wikiRepoName string
2015-11-30 18:45:55 -07:00
if strings . HasSuffix ( reponame , ".wiki" ) {
isWiki = true
2021-11-09 12:57:58 -07:00
unitType = unit . TypeWiki
2021-04-15 12:57:19 -06:00
wikiRepoName = reponame
2017-02-25 07:54:40 -07:00
reponame = reponame [ : len ( reponame ) - 5 ]
2015-11-30 18:45:55 -07:00
}
2022-03-26 03:04:22 -06:00
owner := ctx . ContextUser
2020-11-18 02:58:25 -07:00
if ! owner . IsOrganization ( ) && ! owner . IsActive {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "Repository cannot be accessed. You cannot push or open issues/pull-requests." )
2020-11-12 16:29:11 -07:00
return
}
2019-04-24 23:51:40 -06:00
2019-12-14 19:49:52 -07:00
repoExist := true
2021-12-09 18:27:50 -07:00
repo , err := repo_model . GetRepositoryByName ( owner . ID , reponame )
2019-04-24 23:51:40 -06:00
if err != nil {
2021-12-09 18:27:50 -07:00
if repo_model . IsErrRepoNotExist ( err ) {
2021-12-12 08:48:20 -07:00
if redirectRepoID , err := repo_model . LookupRedirect ( owner . ID , reponame ) ; err == nil {
2019-04-24 23:51:40 -06:00
context . RedirectToRepo ( ctx , redirectRepoID )
2019-12-14 19:49:52 -07:00
return
2019-04-24 23:51:40 -06:00
}
2019-12-14 19:49:52 -07:00
repoExist = false
2019-04-24 23:51:40 -06:00
} else {
ctx . ServerError ( "GetRepositoryByName" , err )
2019-12-14 19:49:52 -07:00
return
2019-04-24 23:51:40 -06:00
}
2014-04-10 12:20:58 -06:00
}
2019-01-23 11:58:38 -07:00
// Don't allow pushing if the repo is archived
2019-12-14 19:49:52 -07:00
if repoExist && repo . IsArchived && ! isPull {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests." )
2019-01-23 11:58:38 -07:00
return
}
2015-02-07 13:47:23 -07:00
// Only public pull don't need auth.
2019-12-14 19:49:52 -07:00
isPublicPull := repoExist && ! repo . IsPrivate && isPull
2015-02-07 13:47:23 -07:00
var (
2021-05-15 09:32:09 -06:00
askAuth = ! isPublicPull || setting . Service . RequireSignInView
environ [ ] string
2015-02-07 13:47:23 -07:00
)
2014-04-10 20:27:13 -06:00
2020-05-29 08:47:17 -06:00
// don't allow anonymous pulls if organization is not public
if isPublicPull {
2022-03-22 09:22:54 -06:00
if err := repo . GetOwner ( ctx ) ; err != nil {
2020-05-29 08:47:17 -06:00
ctx . ServerError ( "GetOwner" , err )
return
}
askAuth = askAuth || ( repo . Owner . Visibility != structs . VisibleTypePublic )
}
2014-04-10 12:20:58 -06:00
// check access
if askAuth {
2021-05-15 09:32:09 -06:00
// rely on the results of Contexter
if ! ctx . IsSigned {
// TODO: support digit auth - which would be Authorization header with digit
ctx . Resp . Header ( ) . Set ( "WWW-Authenticate" , "Basic realm=\".\"" )
ctx . Error ( http . StatusUnauthorized )
return
}
2016-12-28 14:33:59 -07:00
2021-05-18 20:30:33 -06:00
if ctx . IsBasicAuth && ctx . Data [ "IsApiToken" ] != true {
2022-03-22 01:03:22 -06:00
_ , err = auth . GetTwoFactorByUID ( ctx . Doer . ID )
2021-05-15 09:32:09 -06:00
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
2021-12-14 23:59:57 -07:00
ctx . PlainText ( 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" )
2016-12-28 14:33:59 -07:00
return
2022-01-02 06:12:35 -07:00
} else if ! auth . IsErrTwoFactorNotEnrolled ( err ) {
2021-05-15 09:32:09 -06:00
ctx . ServerError ( "IsErrTwoFactorNotEnrolled" , err )
2015-01-08 07:16:38 -07:00
return
}
2018-03-28 19:39:51 -06:00
}
2014-04-10 12:20:58 -06:00
2022-03-22 01:03:22 -06:00
if ! ctx . Doer . IsActive || ctx . Doer . ProhibitLogin {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "Your account is disabled." )
2020-11-12 16:29:11 -07:00
return
}
2019-12-14 19:49:52 -07:00
if repoExist {
2022-05-11 04:09:36 -06:00
p , err := access_model . GetUserRepoPermission ( ctx , repo , ctx . Doer )
2019-12-14 19:49:52 -07:00
if err != nil {
ctx . ServerError ( "GetUserRepoPermission" , err )
return
}
2018-03-28 19:39:51 -06:00
2021-07-28 03:42:56 -06:00
// Because of special ref "refs/for" .. , need delay write permission check
if git . SupportProcReceive {
2021-11-28 04:58:28 -07:00
accessMode = perm . AccessModeRead
2021-07-28 03:42:56 -06:00
}
2021-11-28 04:58:28 -07:00
if ! p . CanAccess ( accessMode , unitType ) {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "User permission denied" )
2019-12-14 19:49:52 -07:00
return
}
2014-04-10 12:20:58 -06:00
2019-12-14 19:49:52 -07:00
if ! isPull && repo . IsMirror {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "mirror repository is read-only" )
2019-12-14 19:49:52 -07:00
return
}
2017-05-18 08:54:24 -06:00
}
2017-02-25 07:54:40 -07:00
environ = [ ] string {
2022-05-08 10:46:32 -06:00
repo_module . EnvRepoUsername + "=" + username ,
repo_module . EnvRepoName + "=" + reponame ,
repo_module . EnvPusherName + "=" + ctx . Doer . Name ,
repo_module . EnvPusherID + fmt . Sprintf ( "=%d" , ctx . Doer . ID ) ,
repo_module . EnvAppURL + "=" + setting . AppURL ,
2015-11-30 18:45:55 -07:00
}
2018-07-26 10:38:55 -06:00
2022-03-22 01:03:22 -06:00
if ! ctx . Doer . KeepEmailPrivate {
2022-05-08 10:46:32 -06:00
environ = append ( environ , repo_module . EnvPusherEmail + "=" + ctx . Doer . Email )
2018-07-26 10:38:55 -06:00
}
2017-02-25 07:54:40 -07:00
if isWiki {
2022-05-08 10:46:32 -06:00
environ = append ( environ , repo_module . EnvRepoIsWiki + "=true" )
2017-02-25 07:54:40 -07:00
} else {
2022-05-08 10:46:32 -06:00
environ = append ( environ , repo_module . EnvRepoIsWiki + "=false" )
2017-02-21 08:02:10 -07:00
}
}
2019-12-14 19:49:52 -07:00
if ! repoExist {
2020-01-15 19:40:13 -07:00
if ! receivePack {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusNotFound , "Repository not found" )
2020-01-15 19:40:13 -07:00
return
}
2021-04-15 12:57:19 -06:00
if isWiki { // you cannot send wiki operation before create the repository
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusNotFound , "Repository not found" )
2021-04-15 12:57:19 -06:00
return
}
2019-12-14 19:49:52 -07:00
if owner . IsOrganization ( ) && ! setting . Repository . EnablePushCreateOrg {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "Push to create is not enabled for organizations." )
2019-12-14 19:49:52 -07:00
return
}
if ! owner . IsOrganization ( ) && ! setting . Repository . EnablePushCreateUser {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "Push to create is not enabled for users." )
2019-12-14 19:49:52 -07:00
return
}
2020-01-15 19:40:13 -07:00
// Return dummy payload if GET receive-pack
if ctx . Req . Method == http . MethodGet {
dummyInfoRefs ( ctx )
return
}
2022-03-22 01:03:22 -06:00
repo , err = repo_service . PushCreateRepo ( ctx . Doer , owner , reponame )
2019-12-14 19:49:52 -07:00
if err != nil {
log . Error ( "pushCreateRepo: %v" , err )
ctx . Status ( http . StatusNotFound )
return
}
}
2020-04-19 08:26:58 -06:00
if isWiki {
// Ensure the wiki is enabled before we allow access to it
2021-11-09 12:57:58 -07:00
if _ , err := repo . GetUnit ( unit . TypeWiki ) ; err != nil {
2021-12-09 18:27:50 -07:00
if repo_model . IsErrUnitTypeNotExist ( err ) {
2021-12-14 23:59:57 -07:00
ctx . PlainText ( http . StatusForbidden , "repository wiki is disabled" )
2020-04-19 08:26:58 -06:00
return
}
log . Error ( "Failed to get the wiki unit in %-v Error: %v" , repo , err )
ctx . ServerError ( "GetUnit(UnitTypeWiki) for " + repo . FullName ( ) , err )
return
}
}
2022-05-08 10:46:32 -06:00
environ = append ( environ , repo_module . EnvRepoID + fmt . Sprintf ( "=%d" , repo . ID ) )
2019-12-14 19:49:52 -07:00
2019-11-21 09:24:43 -07:00
w := ctx . Resp
2021-01-26 08:36:53 -07:00
r := ctx . Req
2019-11-21 09:24:43 -07:00
cfg := & serviceConfig {
2016-06-01 05:19:01 -06:00
UploadPack : true ,
ReceivePack : true ,
2017-02-25 07:54:40 -07:00
Env : environ ,
2019-11-21 09:24:43 -07:00
}
2020-06-10 09:26:28 -06:00
r . URL . Path = strings . ToLower ( r . URL . Path ) // blue: In case some repo name has upper case name
2021-12-09 18:27:50 -07:00
dir := repo_model . RepoPath ( username , reponame )
2021-04-15 12:57:19 -06:00
if isWiki {
2021-12-09 18:27:50 -07:00
dir = repo_model . RepoPath ( username , wikiRepoName )
2021-04-15 12:57:19 -06:00
}
2019-11-21 09:24:43 -07:00
2021-01-26 08:36:53 -07:00
return & serviceHandler { cfg , w , r , dir , cfg . Env }
2014-04-10 12:20:58 -06:00
}
2020-01-15 19:40:13 -07:00
var (
infoRefsCache [ ] byte
infoRefsOnce sync . Once
)
func dummyInfoRefs ( ctx * context . Context ) {
infoRefsOnce . Do ( func ( ) {
2021-09-21 23:38:34 -06:00
tmpDir , err := os . MkdirTemp ( os . TempDir ( ) , "gitea-info-refs-cache" )
2020-01-15 19:40:13 -07:00
if err != nil {
log . Error ( "Failed to create temp dir for git-receive-pack cache: %v" , err )
return
}
defer func ( ) {
2020-08-11 14:05:34 -06:00
if err := util . RemoveAll ( tmpDir ) ; err != nil {
2020-01-15 19:40:13 -07:00
log . Error ( "RemoveAll: %v" , err )
}
} ( )
2022-01-19 16:26:57 -07:00
if err := git . InitRepository ( ctx , tmpDir , true ) ; err != nil {
2020-01-15 19:40:13 -07:00
log . Error ( "Failed to init bare repo for git-receive-pack cache: %v" , err )
return
}
2022-03-31 20:55:30 -06:00
refs , _ , err := git . NewCommand ( ctx , "receive-pack" , "--stateless-rpc" , "--advertise-refs" , "." ) . RunStdBytes ( & git . RunOpts { Dir : tmpDir } )
2020-01-15 19:40:13 -07:00
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( refs ) ) )
}
log . Debug ( "populating infoRefsCache: \n%s" , string ( refs ) )
infoRefsCache = refs
} )
2021-12-14 23:59:57 -07:00
ctx . RespHeader ( ) . Set ( "Expires" , "Fri, 01 Jan 1980 00:00:00 GMT" )
ctx . RespHeader ( ) . Set ( "Pragma" , "no-cache" )
ctx . RespHeader ( ) . Set ( "Cache-Control" , "no-cache, max-age=0, must-revalidate" )
ctx . RespHeader ( ) . Set ( "Content-Type" , "application/x-git-receive-pack-advertisement" )
2020-01-15 19:40:13 -07:00
_ , _ = ctx . Write ( packetWrite ( "# service=git-receive-pack\n" ) )
_ , _ = ctx . Write ( [ ] byte ( "0000" ) )
_ , _ = ctx . Write ( infoRefsCache )
}
2016-06-01 05:19:01 -06:00
type serviceConfig struct {
UploadPack bool
ReceivePack bool
2017-02-25 07:54:40 -07:00
Env [ ] string
2014-04-10 12:20:58 -06:00
}
2016-06-01 05:19:01 -06:00
type serviceHandler struct {
2017-02-25 07:54:40 -07:00
cfg * serviceConfig
w http . ResponseWriter
r * http . Request
dir string
environ [ ] string
2016-06-01 05:19:01 -06: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-06-09 06:53:12 -06:00
func containsParentDirectorySeparator ( v string ) bool {
if ! strings . Contains ( v , ".." ) {
return false
}
for _ , ent := range strings . FieldsFunc ( v , isSlashRune ) {
if ent == ".." {
return true
}
}
return false
}
func isSlashRune ( r rune ) bool { return r == '/' || r == '\\' }
2021-01-26 08:36:53 -07:00
func ( h * serviceHandler ) sendFile ( contentType , file string ) {
2021-06-09 06:53:12 -06:00
if containsParentDirectorySeparator ( file ) {
log . Error ( "request file path contains invalid path: %v" , file )
h . w . WriteHeader ( http . StatusBadRequest )
return
}
2021-01-26 08:36:53 -07:00
reqFile := path . Join ( h . dir , file )
2016-06-01 05:19:01 -06: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 12:20:58 -06:00
}
2020-07-07 16:31:49 -06: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]+)*$ ` )
2022-01-19 16:26:57 -07:00
func getGitConfig ( ctx gocontext . Context , option , dir string ) string {
2022-03-31 20:55:30 -06:00
out , _ , err := git . NewCommand ( ctx , "config" , option ) . RunStdString ( & git . RunOpts { Dir : dir } )
2016-06-01 05:19:01 -06:00
if err != nil {
2019-06-01 09:00:21 -06:00
log . Error ( "%v - %s" , err , out )
2015-11-30 18:45:55 -07:00
}
2017-02-25 07:54:40 -07:00
return out [ 0 : len ( out ) - 1 ]
2016-06-01 05:19:01 -06:00
}
2015-11-30 18:45:55 -07:00
2022-01-19 16:26:57 -07:00
func getConfigSetting ( ctx gocontext . Context , service , dir string ) bool {
2020-10-11 14:27:20 -06:00
service = strings . ReplaceAll ( service , "-" , "" )
2022-01-19 16:26:57 -07:00
setting := getGitConfig ( ctx , "http." + service , dir )
2016-06-01 05:19:01 -06:00
if service == "uploadpack" {
return setting != "false"
2015-11-30 18:45:55 -07:00
}
2016-06-01 05:19:01 -06:00
return setting == "true"
2015-11-30 18:45:55 -07:00
}
2022-01-19 16:26:57 -07:00
func hasAccess ( ctx gocontext . Context , service string , h serviceHandler , checkContentType bool ) bool {
2016-06-01 05:19:01 -06:00
if checkContentType {
if h . r . Header . Get ( "Content-Type" ) != fmt . Sprintf ( "application/x-git-%s-request" , service ) {
return false
2014-04-10 12:20:58 -06:00
}
}
2016-06-01 05:19:01 -06: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 12:20:58 -06:00
2022-01-19 16:26:57 -07:00
return getConfigSetting ( ctx , service , h . dir )
2014-04-10 12:20:58 -06:00
}
2022-01-19 16:26:57 -07:00
func serviceRPC ( ctx gocontext . Context , h serviceHandler , service string ) {
2019-06-12 13:41:28 -06:00
defer func ( ) {
if err := h . r . Body . Close ( ) ; err != nil {
log . Error ( "serviceRPC: Close: %v" , err )
}
} ( )
2014-04-10 12:20:58 -06:00
2022-01-19 16:26:57 -07:00
if ! hasAccess ( ctx , service , h , true ) {
2016-06-01 05:19:01 -06:00
h . w . WriteHeader ( http . StatusUnauthorized )
2014-04-10 12:20:58 -06:00
return
}
2017-02-21 08:02:10 -07:00
2016-06-01 05:19:01 -06:00
h . w . Header ( ) . Set ( "Content-Type" , fmt . Sprintf ( "application/x-git-%s-result" , service ) )
2014-04-10 12:20:58 -06:00
2017-02-25 07:54:40 -07:00
var err error
2022-01-20 10:46:10 -07:00
reqBody := h . r . Body
2014-10-15 14:28:38 -06:00
// Handle GZIP.
2016-06-01 05:19:01 -06:00
if h . r . Header . Get ( "Content-Encoding" ) == "gzip" {
2014-10-15 14:28:38 -06:00
reqBody , err = gzip . NewReader ( reqBody )
if err != nil {
2019-06-01 09:00:21 -06:00
log . Error ( "Fail to create gzip reader: %v" , err )
2016-06-01 05:19:01 -06:00
h . w . WriteHeader ( http . StatusInternalServerError )
2014-10-15 14:28:38 -06:00
return
}
}
2017-02-25 07:54:40 -07:00
// set this for allow pre-receive and post-receive execute
h . environ = append ( h . environ , "SSH_ORIGINAL_COMMAND=" + service )
2017-02-21 08:02:10 -07:00
2020-07-07 16:31:49 -06:00
if protocol := h . r . Header . Get ( "Git-Protocol" ) ; protocol != "" && safeGitProtocolHeader . MatchString ( protocol ) {
h . environ = append ( h . environ , "GIT_PROTOCOL=" + protocol )
}
2017-02-25 07:54:40 -07:00
var stderr bytes . Buffer
2022-02-06 12:01:47 -07:00
cmd := git . NewCommand ( h . r . Context ( ) , service , "--stateless-rpc" , h . dir )
2022-01-22 22:57:52 -07:00
cmd . SetDescription ( fmt . Sprintf ( "%s %s %s [repo_path: %s]" , git . GitExecutable , service , "--stateless-rpc" , h . dir ) )
2022-03-31 20:55:30 -06:00
if err := cmd . Run ( & git . RunOpts {
2022-08-06 20:37:48 -06:00
Dir : h . dir ,
Env : append ( os . Environ ( ) , h . environ ... ) ,
Stdout : h . w ,
Stdin : reqBody ,
Stderr : & stderr ,
UseContextTimeout : true ,
2022-01-22 22:57:52 -07:00
} ) ; err != nil {
2022-02-22 01:32:25 -07:00
if err . Error ( ) != "signal: killed" {
log . Error ( "Fail to serve RPC(%s) in %s: %v - %s" , service , h . dir , err , stderr . String ( ) )
}
2014-04-10 12:20:58 -06:00
return
}
}
2021-01-26 08:36:53 -07:00
// ServiceUploadPack implements Git Smart HTTP protocol
func ServiceUploadPack ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
2022-01-19 16:26:57 -07:00
serviceRPC ( ctx , * h , "upload-pack" )
2021-01-26 08:36:53 -07:00
}
2014-04-10 12:20:58 -06:00
}
2021-01-26 08:36:53 -07:00
// ServiceReceivePack implements Git Smart HTTP protocol
func ServiceReceivePack ( ctx * context . Context ) {
h := httpBase ( ctx )
if h != nil {
2022-01-19 16:26:57 -07:00
serviceRPC ( ctx , * h , "receive-pack" )
2021-01-26 08:36:53 -07:00
}
2014-04-10 12:20:58 -06:00
}
func getServiceType ( r * http . Request ) string {
serviceType := r . FormValue ( "service" )
2016-06-01 05:19:01 -06:00
if ! strings . HasPrefix ( serviceType , "git-" ) {
2014-04-10 12:20:58 -06:00
return ""
}
return strings . Replace ( serviceType , "git-" , "" , 1 )
}
2022-01-19 16:26:57 -07:00
func updateServerInfo ( ctx gocontext . Context , dir string ) [ ] byte {
2022-03-31 20:55:30 -06:00
out , _ , err := git . NewCommand ( ctx , "update-server-info" ) . RunStdBytes ( & git . RunOpts { Dir : dir } )
2019-06-26 12:15:26 -06:00
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( out ) ) )
}
return out
2014-04-10 12:20:58 -06:00
}
2016-06-01 05:19:01 -06:00
func packetWrite ( str string ) [ ] byte {
2017-02-25 07:54:40 -07:00
s := strconv . FormatInt ( int64 ( len ( str ) + 4 ) , 16 )
2016-06-01 05:19:01 -06:00
if len ( s ) % 4 != 0 {
s = strings . Repeat ( "0" , 4 - len ( s ) % 4 ) + s
2014-04-10 12:20:58 -06:00
}
2016-06-01 05:19:01 -06:00
return [ ] byte ( s + str )
2014-04-10 12:20:58 -06:00
}
2021-01-26 08:36:53 -07:00
// GetInfoRefs implements Git dumb HTTP
func GetInfoRefs ( ctx * context . Context ) {
h := httpBase ( ctx )
if h == nil {
return
}
2016-06-01 05:19:01 -06:00
h . setHeaderNoCache ( )
2022-01-19 16:26:57 -07:00
if hasAccess ( ctx , getServiceType ( h . r ) , * h , false ) {
2016-06-01 05:19:01 -06:00
service := getServiceType ( h . r )
2020-07-07 16:31:49 -06: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 ... )
2022-03-31 20:55:30 -06:00
refs , _ , err := git . NewCommand ( ctx , service , "--stateless-rpc" , "--advertise-refs" , "." ) . RunStdBytes ( & git . RunOpts { Env : h . environ , Dir : h . dir } )
2019-06-26 12:15:26 -06:00
if err != nil {
log . Error ( fmt . Sprintf ( "%v - %s" , err , string ( refs ) ) )
}
2016-06-01 05:19:01 -06:00
h . w . Header ( ) . Set ( "Content-Type" , fmt . Sprintf ( "application/x-git-%s-advertisement" , service ) )
h . w . WriteHeader ( http . StatusOK )
2019-06-12 13:41:28 -06:00
_ , _ = h . w . Write ( packetWrite ( "# service=git-" + service + "\n" ) )
_ , _ = h . w . Write ( [ ] byte ( "0000" ) )
_ , _ = h . w . Write ( refs )
2016-06-01 05:19:01 -06:00
} else {
2022-01-19 16:26:57 -07:00
updateServerInfo ( ctx , h . dir )
2021-01-26 08:36:53 -07:00
h . sendFile ( "text/plain; charset=utf-8" , "info/refs" )
2014-04-10 12:20:58 -06:00
}
}
2021-01-26 08:36:53 -07: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 12:20:58 -06:00
}
2021-01-26 08:36:53 -07: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 05:19:01 -06:00
}
2014-04-10 12:20:58 -06:00
2021-01-26 08:36:53 -07: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 12:20:58 -06:00
}
2021-01-26 08:36:53 -07: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 05:19:01 -06:00
}
2021-01-26 08:36:53 -07:00
}
2014-04-10 12:20:58 -06:00
2021-01-26 08:36:53 -07: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 12:20:58 -06:00
}
}