2014-04-10 22:20:58 +04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2016-12-21 15:13:17 +03:00
// Copyright 2016 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2014-04-10 22:20:58 +04:00
2014-05-02 05:21:46 +04:00
package cmd
2014-04-10 22:20:58 +04:00
import (
2022-06-10 04:57:49 +03:00
"context"
2014-04-10 22:20:58 +04:00
"fmt"
2019-06-01 18:00:21 +03:00
"net/http"
"net/url"
2014-04-10 22:20:58 +04:00
"os"
"os/exec"
2023-02-28 23:33:10 +03:00
"path/filepath"
2020-02-05 12:40:35 +03:00
"regexp"
2019-06-01 18:00:21 +03:00
"strconv"
2014-04-10 22:20:58 +04:00
"strings"
2014-08-10 02:40:10 +04:00
"time"
2014-04-10 22:20:58 +04:00
2021-12-10 11:14:24 +03:00
asymkey_model "code.gitea.io/gitea/models/asymkey"
2022-06-12 18:51:54 +03:00
git_model "code.gitea.io/gitea/models/git"
2021-11-28 14:58:28 +03:00
"code.gitea.io/gitea/models/perm"
2021-07-28 12:42:56 +03:00
"code.gitea.io/gitea/modules/git"
2021-07-24 19:03:58 +03:00
"code.gitea.io/gitea/modules/json"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/log"
2018-08-07 21:49:18 +03:00
"code.gitea.io/gitea/modules/pprof"
2017-04-19 06:45:01 +03:00
"code.gitea.io/gitea/modules/private"
2022-06-03 17:36:18 +03:00
"code.gitea.io/gitea/modules/process"
2022-05-08 19:46:32 +03:00
repo_module "code.gitea.io/gitea/modules/repository"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/setting"
2021-04-09 01:25:57 +03:00
"code.gitea.io/gitea/services/lfs"
2017-04-12 10:44:54 +03:00
2022-01-14 18:03:31 +03:00
"github.com/golang-jwt/jwt/v4"
2020-08-28 22:55:25 +03:00
"github.com/kballard/go-shellquote"
2016-11-10 01:18:22 +03:00
"github.com/urfave/cli"
2014-04-10 22:20:58 +04:00
)
2015-02-16 17:38:01 +03:00
const (
2016-12-26 04:16:37 +03:00
lfsAuthenticateVerb = "git-lfs-authenticate"
2015-02-16 17:38:01 +03:00
)
2016-11-04 14:42:18 +03:00
// CmdServ represents the available serv sub-command.
2014-04-10 22:20:58 +04:00
var CmdServ = cli . Command {
2014-05-05 08:55:17 +04:00
Name : "serv" ,
Usage : "This command should only be called by SSH shell" ,
2022-09-18 11:13:34 +03:00
Description : "Serv provides access auth for repositories" ,
2014-05-05 08:55:17 +04:00
Action : runServ ,
2015-02-05 13:12:37 +03:00
Flags : [ ] cli . Flag {
2018-08-07 21:49:18 +03:00
cli . BoolFlag {
Name : "enable-pprof" ,
} ,
2019-12-25 18:44:57 +03:00
cli . BoolFlag {
Name : "debug" ,
} ,
2015-02-05 13:12:37 +03:00
} ,
2014-04-10 22:20:58 +04:00
}
2019-12-25 18:44:57 +03:00
func setup ( logPath string , debug bool ) {
2020-08-31 20:12:49 +03:00
_ = log . DelLogger ( "console" )
if debug {
_ = log . NewLogger ( 1000 , "console" , "console" , ` { "level":"trace","stacktracelevel":"NONE","stderr":true} ` )
2020-10-07 23:44:16 +03:00
} else {
_ = log . NewLogger ( 1000 , "console" , "console" , ` { "level":"fatal","stacktracelevel":"NONE","stderr":true} ` )
2019-12-25 18:44:57 +03:00
}
2023-02-19 19:12:01 +03:00
setting . InitProviderFromExistingFile ( )
setting . LoadCommonSettings ( )
2019-12-25 18:44:57 +03:00
if debug {
2021-01-15 00:17:03 +03:00
setting . RunMode = "dev"
2019-12-25 18:44:57 +03:00
}
2022-06-10 04:57:49 +03:00
// Check if setting.RepoRootPath exists. It could be the case that it doesn't exist, this can happen when
// `[repository]` `ROOT` is a relative path and $GITEA_WORK_DIR isn't passed to the SSH connection.
if _ , err := os . Stat ( setting . RepoRootPath ) ; err != nil {
if os . IsNotExist ( err ) {
_ = fail ( "Incorrect configuration, no repository directory." , "Directory `[repository].ROOT` %q was not found, please check if $GITEA_WORK_DIR is passed to the SSH connection or make `[repository].ROOT` an absolute value." , setting . RepoRootPath )
} else {
_ = fail ( "Incorrect configuration, repository directory is inaccessible" , "Directory `[repository].ROOT` %q is inaccessible. err: %v" , setting . RepoRootPath , err )
}
return
}
if err := git . InitSimple ( context . Background ( ) ) ; err != nil {
_ = fail ( "Failed to init git" , "Failed to init git, err: %v" , err )
}
2014-05-22 05:37:13 +04:00
}
var (
2021-11-28 14:58:28 +03:00
allowedCommands = map [ string ] perm . AccessMode {
"git-upload-pack" : perm . AccessModeRead ,
"git-upload-archive" : perm . AccessModeRead ,
"git-receive-pack" : perm . AccessModeWrite ,
lfsAuthenticateVerb : perm . AccessModeNone ,
2014-05-22 05:37:13 +04:00
}
2020-02-05 12:40:35 +03:00
alphaDashDotPattern = regexp . MustCompile ( ` [^\w-\.] ` )
2014-05-22 05:37:13 +04:00
)
2021-07-14 17:43:13 +03:00
func fail ( userMessage , logMessage string , args ... interface { } ) error {
// There appears to be a chance to cause a zombie process and failure to read the Exit status
// if nothing is outputted on stdout.
2022-06-10 04:57:49 +03:00
_ , _ = fmt . Fprintln ( os . Stdout , "" )
_ , _ = fmt . Fprintln ( os . Stderr , "Gitea:" , userMessage )
2015-11-08 22:31:49 +03:00
if len ( logMessage ) > 0 {
2021-10-20 17:37:19 +03:00
if ! setting . IsProd {
2022-06-10 04:57:49 +03:00
_ , _ = fmt . Fprintf ( os . Stderr , logMessage + "\n" , args ... )
2015-11-24 06:33:24 +03:00
}
2015-11-08 22:31:49 +03:00
}
2021-07-14 17:43:13 +03:00
ctx , cancel := installSignals ( )
defer cancel ( )
2015-11-08 22:31:49 +03:00
2021-05-22 00:37:16 +03:00
if len ( logMessage ) > 0 {
2021-07-14 17:43:13 +03:00
_ = private . SSHLog ( ctx , true , fmt . Sprintf ( logMessage + ": " , args ... ) )
2021-05-22 00:37:16 +03:00
}
2022-01-16 12:32:32 +03:00
return cli . NewExitError ( "" , 1 )
2015-08-06 17:48:11 +03:00
}
2016-05-12 21:32:28 +03:00
func runServ ( c * cli . Context ) error {
2021-07-14 17:43:13 +03:00
ctx , cancel := installSignals ( )
defer cancel ( )
2019-06-01 18:00:21 +03:00
// FIXME: This needs to internationalised
2019-12-25 18:44:57 +03:00
setup ( "serv.log" , c . Bool ( "debug" ) )
2014-04-10 22:20:58 +04:00
2016-02-28 04:48:39 +03:00
if setting . SSH . Disabled {
2016-12-21 15:13:17 +03:00
println ( "Gitea: SSH has been disabled" )
2016-05-12 21:32:28 +03:00
return nil
2016-02-22 05:55:59 +03:00
}
2015-02-13 08:58:46 +03:00
if len ( c . Args ( ) ) < 1 {
2019-06-12 22:41:28 +03:00
if err := cli . ShowSubcommandHelp ( c ) ; err != nil {
fmt . Printf ( "error showing subcommand help: %v\n" , err )
}
2017-04-12 10:44:54 +03:00
return nil
2015-02-09 13:32:42 +03:00
}
2015-02-16 17:38:01 +03:00
2019-06-01 18:00:21 +03:00
keys := strings . Split ( c . Args ( ) [ 0 ] , "-" )
if len ( keys ) != 2 || keys [ 0 ] != "key" {
2021-07-14 17:43:13 +03:00
return fail ( "Key ID format error" , "Invalid key argument: %s" , c . Args ( ) [ 0 ] )
2019-06-01 18:00:21 +03:00
}
2020-12-25 12:59:32 +03:00
keyID , err := strconv . ParseInt ( keys [ 1 ] , 10 , 64 )
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Key ID format error" , "Invalid key argument: %s" , c . Args ( ) [ 1 ] )
2020-12-25 12:59:32 +03:00
}
2019-06-01 18:00:21 +03:00
2014-04-10 22:20:58 +04:00
cmd := os . Getenv ( "SSH_ORIGINAL_COMMAND" )
2015-08-05 06:14:17 +03:00
if len ( cmd ) == 0 {
2021-07-14 17:43:13 +03:00
key , user , err := private . ServNoCommand ( ctx , keyID )
2019-06-01 18:00:21 +03:00
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Internal error" , "Failed to check provided key: %v" , err )
2019-06-01 18:00:21 +03:00
}
2020-10-11 03:38:09 +03:00
switch key . Type {
2021-12-10 11:14:24 +03:00
case asymkey_model . KeyTypeDeploy :
2019-06-01 18:00:21 +03:00
println ( "Hi there! You've successfully authenticated with the deploy key named " + key . Name + ", but Gitea does not provide shell access." )
2021-12-10 11:14:24 +03:00
case asymkey_model . KeyTypePrincipal :
2020-10-11 03:38:09 +03:00
println ( "Hi there! You've successfully authenticated with the principal " + key . Content + ", but Gitea does not provide shell access." )
default :
2019-08-11 15:15:58 +03:00
println ( "Hi there, " + user . Name + "! You've successfully authenticated with the key named " + key . Name + ", but Gitea does not provide shell access." )
2019-06-01 18:00:21 +03:00
}
2016-12-21 15:13:17 +03:00
println ( "If this is unexpected, please log in with password and setup Gitea under another user." )
2016-05-12 21:32:28 +03:00
return nil
2020-08-31 20:12:49 +03:00
} else if c . Bool ( "debug" ) {
log . Debug ( "SSH_ORIGINAL_COMMAND: %s" , os . Getenv ( "SSH_ORIGINAL_COMMAND" ) )
2014-04-10 22:20:58 +04:00
}
2020-08-28 22:55:25 +03:00
words , err := shellquote . Split ( cmd )
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Error parsing arguments" , "Failed to parse arguments: %v" , err )
2020-08-28 22:55:25 +03:00
}
if len ( words ) < 2 {
2021-07-28 12:42:56 +03:00
if git . CheckGitVersionAtLeast ( "2.29" ) == nil {
// for AGit Flow
if cmd == "ssh_info" {
fmt . Print ( ` { "type":"gitea","version":1} ` )
return nil
}
}
2021-07-14 17:43:13 +03:00
return fail ( "Too few arguments" , "Too few arguments in cmd: %s" , cmd )
2020-08-28 22:55:25 +03:00
}
verb := words [ 0 ]
repoPath := words [ 1 ]
if repoPath [ 0 ] == '/' {
repoPath = repoPath [ 1 : ]
}
2016-12-26 04:16:37 +03:00
var lfsVerb string
if verb == lfsAuthenticateVerb {
if ! setting . LFS . StartServer {
2021-07-14 17:43:13 +03:00
return fail ( "Unknown git command" , "LFS authentication request over SSH denied, LFS support is disabled" )
2016-12-26 04:16:37 +03:00
}
2020-08-28 22:55:25 +03:00
if len ( words ) > 2 {
lfsVerb = words [ 2 ]
2016-12-26 04:16:37 +03:00
}
}
2020-08-31 20:12:49 +03:00
// LowerCase and trim the repoPath as that's how they are stored.
repoPath = strings . ToLower ( strings . TrimSpace ( repoPath ) )
2014-04-10 22:20:58 +04:00
rr := strings . SplitN ( repoPath , "/" , 2 )
if len ( rr ) != 2 {
2021-07-14 17:43:13 +03:00
return fail ( "Invalid repository path" , "Invalid repository path: %v" , repoPath )
2014-04-10 22:20:58 +04:00
}
2017-02-25 17:54:40 +03:00
2015-12-01 04:45:55 +03:00
username := strings . ToLower ( rr [ 0 ] )
reponame := strings . ToLower ( strings . TrimSuffix ( rr [ 1 ] , ".git" ) )
2020-02-05 12:40:35 +03:00
if alphaDashDotPattern . MatchString ( reponame ) {
2021-07-14 17:43:13 +03:00
return fail ( "Invalid repo name" , "Invalid repo name: %s" , reponame )
2020-02-05 12:40:35 +03:00
}
2021-12-22 19:48:12 +03:00
if c . Bool ( "enable-pprof" ) {
2018-08-07 21:49:18 +03:00
if err := os . MkdirAll ( setting . PprofDataPath , os . ModePerm ) ; err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Error while trying to create PPROF_DATA_PATH" , "Error while trying to create PPROF_DATA_PATH: %v" , err )
2018-08-07 21:49:18 +03:00
}
2019-06-01 18:00:21 +03:00
stopCPUProfiler , err := pprof . DumpCPUProfileForUsername ( setting . PprofDataPath , username )
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Internal Server Error" , "Unable to start CPU profile: %v" , err )
2019-06-01 18:00:21 +03:00
}
2018-08-07 21:49:18 +03:00
defer func ( ) {
stopCPUProfiler ( )
2019-06-01 18:00:21 +03:00
err := pprof . DumpMemProfileForUsername ( setting . PprofDataPath , username )
if err != nil {
2021-07-14 17:43:13 +03:00
_ = fail ( "Internal Server Error" , "Unable to dump Mem Profile: %v" , err )
2019-06-01 18:00:21 +03:00
}
2018-08-07 21:49:18 +03:00
} ( )
}
2015-11-24 06:32:07 +03:00
requestedMode , has := allowedCommands [ verb ]
2015-02-16 17:38:01 +03:00
if ! has {
2021-07-14 17:43:13 +03:00
return fail ( "Unknown git command" , "Unknown git command %s" , verb )
2015-02-16 17:38:01 +03:00
}
2014-04-10 22:20:58 +04:00
2016-12-26 04:16:37 +03:00
if verb == lfsAuthenticateVerb {
if lfsVerb == "upload" {
2021-11-28 14:58:28 +03:00
requestedMode = perm . AccessModeWrite
2017-03-22 13:43:28 +03:00
} else if lfsVerb == "download" {
2021-11-28 14:58:28 +03:00
requestedMode = perm . AccessModeRead
2017-03-22 13:43:28 +03:00
} else {
2021-07-14 17:43:13 +03:00
return fail ( "Unknown LFS verb" , "Unknown lfs verb %s" , lfsVerb )
2016-12-26 04:16:37 +03:00
}
}
2021-07-14 17:43:13 +03:00
results , err := private . ServCommand ( ctx , keyID , username , reponame , requestedMode , verb , lfsVerb )
2019-06-01 18:00:21 +03:00
if err != nil {
if private . IsErrServCommand ( err ) {
errServCommand := err . ( private . ErrServCommand )
if errServCommand . StatusCode != http . StatusInternalServerError {
2021-07-14 17:43:13 +03:00
return fail ( "Unauthorized" , "%s" , errServCommand . Error ( ) )
2015-08-05 06:14:17 +03:00
}
2021-07-14 17:43:13 +03:00
return fail ( "Internal Server Error" , "%s" , errServCommand . Error ( ) )
2014-04-10 22:20:58 +04:00
}
2021-07-14 17:43:13 +03:00
return fail ( "Internal Server Error" , "%s" , err . Error ( ) )
2014-04-10 22:20:58 +04:00
}
2022-01-20 20:46:10 +03:00
// LFS token authentication
2016-12-26 04:16:37 +03:00
if verb == lfsAuthenticateVerb {
2019-06-01 18:00:21 +03:00
url := fmt . Sprintf ( "%s%s/%s.git/info/lfs" , setting . AppURL , url . PathEscape ( results . OwnerName ) , url . PathEscape ( results . RepoName ) )
2016-12-26 04:16:37 +03:00
now := time . Now ( )
2020-03-09 22:56:18 +03:00
claims := lfs . Claims {
2022-01-21 00:52:56 +03:00
RegisteredClaims : jwt . RegisteredClaims {
ExpiresAt : jwt . NewNumericDate ( now . Add ( setting . LFS . HTTPAuthExpiry ) ) ,
NotBefore : jwt . NewNumericDate ( now ) ,
2020-03-09 22:56:18 +03:00
} ,
RepoID : results . RepoID ,
Op : lfsVerb ,
UserID : results . UserID ,
2018-01-27 19:48:15 +03:00
}
token := jwt . NewWithClaims ( jwt . SigningMethodHS256 , claims )
2016-12-26 04:16:37 +03:00
// Sign and get the complete encoded token as a string using the secret
tokenString , err := token . SignedString ( setting . LFS . JWTSecretBytes )
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Internal error" , "Failed to sign JWT token: %v" , err )
2016-12-26 04:16:37 +03:00
}
2022-06-12 18:51:54 +03:00
tokenAuthentication := & git_model . LFSTokenResponse {
2016-12-26 04:16:37 +03:00
Header : make ( map [ string ] string ) ,
Href : url ,
}
tokenAuthentication . Header [ "Authorization" ] = fmt . Sprintf ( "Bearer %s" , tokenString )
enc := json . NewEncoder ( os . Stdout )
err = enc . Encode ( tokenAuthentication )
if err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Internal error" , "Failed to encode LFS json response: %v" , err )
2016-12-26 04:16:37 +03:00
}
return nil
}
2014-10-01 15:40:48 +04:00
var gitcmd * exec . Cmd
2023-02-28 23:33:10 +03:00
gitBinPath := filepath . Dir ( git . GitExecutable ) // e.g. /usr/bin
gitBinVerb := filepath . Join ( gitBinPath , verb ) // e.g. /usr/bin/git-upload-pack
if _ , err := os . Stat ( gitBinVerb ) ; err != nil {
// if the command "git-upload-pack" doesn't exist, try to split "git-upload-pack" to use the sub-command with git
// ps: Windows only has "git.exe" in the bin path, so Windows always uses this way
verbFields := strings . SplitN ( verb , "-" , 2 )
if len ( verbFields ) == 2 {
// use git binary with the sub-command part: "C:\...\bin\git.exe", "upload-pack", ...
gitcmd = exec . CommandContext ( ctx , git . GitExecutable , verbFields [ 1 ] , repoPath )
}
}
if gitcmd == nil {
// by default, use the verb (it has been checked above by allowedCommands)
gitcmd = exec . CommandContext ( ctx , gitBinVerb , repoPath )
2014-10-01 15:40:48 +04:00
}
2017-03-17 07:59:42 +03:00
2022-06-03 17:36:18 +03:00
process . SetSysProcAttribute ( gitcmd )
2014-05-26 04:11:25 +04:00
gitcmd . Dir = setting . RepoRootPath
2014-04-10 22:20:58 +04:00
gitcmd . Stdout = os . Stdout
gitcmd . Stdin = os . Stdin
gitcmd . Stderr = os . Stderr
2022-06-10 04:57:49 +03:00
gitcmd . Env = append ( gitcmd . Env , os . Environ ( ) ... )
gitcmd . Env = append ( gitcmd . Env ,
repo_module . EnvRepoIsWiki + "=" + strconv . FormatBool ( results . IsWiki ) ,
repo_module . EnvRepoName + "=" + results . RepoName ,
repo_module . EnvRepoUsername + "=" + results . OwnerName ,
repo_module . EnvPusherName + "=" + results . UserName ,
repo_module . EnvPusherEmail + "=" + results . UserEmail ,
repo_module . EnvPusherID + "=" + strconv . FormatInt ( results . UserID , 10 ) ,
repo_module . EnvRepoID + "=" + strconv . FormatInt ( results . RepoID , 10 ) ,
repo_module . EnvPRID + "=" + fmt . Sprintf ( "%d" , 0 ) ,
repo_module . EnvDeployKeyID + "=" + fmt . Sprintf ( "%d" , results . DeployKeyID ) ,
repo_module . EnvKeyID + "=" + fmt . Sprintf ( "%d" , results . KeyID ) ,
repo_module . EnvAppURL + "=" + setting . AppURL ,
)
// to avoid breaking, here only use the minimal environment variables for the "gitea serv" command.
// it could be re-considered whether to use the same git.CommonGitCmdEnvs() as "git" command later.
gitcmd . Env = append ( gitcmd . Env , git . CommonCmdServEnvs ( ) ... )
2014-07-26 08:24:27 +04:00
if err = gitcmd . Run ( ) ; err != nil {
2021-07-14 17:43:13 +03:00
return fail ( "Internal error" , "Failed to execute git command: %v" , err )
2014-04-10 22:20:58 +04:00
}
2014-06-28 19:56:41 +04:00
2015-08-06 17:48:11 +03:00
// Update user key activity.
2019-06-01 18:00:21 +03:00
if results . KeyID > 0 {
2021-07-14 17:43:13 +03:00
if err = private . UpdatePublicKeyInRepo ( ctx , results . KeyID , results . RepoID ) ; err != nil {
return fail ( "Internal error" , "UpdatePublicKeyInRepo: %v" , err )
2015-08-05 06:14:17 +03:00
}
2014-08-10 02:40:10 +04:00
}
2016-05-12 21:32:28 +03:00
return nil
2014-04-10 22:20:58 +04:00
}