forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make command in authorized keys a template
Fix go-gitea#15595 Replaces go-gitea#15978 Signed-off-by: Andrew Thornton <[email protected]>
- Loading branch information
Showing
3 changed files
with
55 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -267,6 +267,7 @@ The following configuration set `Content-Type: application/vnd.android.package-a | |
- `SSH_AUTHORIZED_PRINCIPALS_ALLOW`: **off** or **username, email**: \[off, username, email, anything\]: Specify the principals values that users are allowed to use as principal. When set to `anything` no checks are done on the principal string. When set to `off` authorized principal are not allowed to be set. | ||
- `SSH_CREATE_AUTHORIZED_PRINCIPALS_FILE`: **false/true**: Gitea will create a authorized_principals file by default when it is not using the internal ssh server and `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`. | ||
- `SSH_AUTHORIZED_PRINCIPALS_BACKUP`: **false/true**: Enable SSH Authorized Principals Backup when rewriting all keys, default is true if `SSH_AUTHORIZED_PRINCIPALS_ALLOW` is not `off`. | ||
- `SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE`: **{{.AppPath}} --config={{.CustomConf}} serv key-{{.Key.ID}}**: Set the template for the command to passed on authorized keys. Possible keys are: AppPath, AppWorkPath, CustomConf, CustomPath, Key - where Key is a `models.PublicKey` and the others are strings which are shellquoted. | ||
- `SSH_SERVER_CIPHERS`: **aes128-ctr, aes192-ctr, aes256-ctr, [email protected], arcfour256, arcfour128**: For the built-in SSH server, choose the ciphers to support for SSH connections, for system SSH this setting has no effect. | ||
- `SSH_SERVER_KEY_EXCHANGES`: **diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, [email protected]**: For the built-in SSH server, choose the key exchange algorithms to support for SSH connections, for system SSH this setting has no effect. | ||
- `SSH_SERVER_MACS`: **[email protected], hmac-sha2-256, hmac-sha1, hmac-sha1-96**: For the built-in SSH server, choose the MACs to support for SSH connections, for system SSH this setting has no effect | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ import ( | |
"runtime" | ||
"strconv" | ||
"strings" | ||
"text/template" | ||
"time" | ||
|
||
"code.gitea.io/gitea/modules/generate" | ||
|
@@ -121,44 +122,47 @@ var ( | |
AbsoluteAssetURL string | ||
|
||
SSH = struct { | ||
Disabled bool `ini:"DISABLE_SSH"` | ||
StartBuiltinServer bool `ini:"START_SSH_SERVER"` | ||
BuiltinServerUser string `ini:"BUILTIN_SSH_SERVER_USER"` | ||
Domain string `ini:"SSH_DOMAIN"` | ||
Port int `ini:"SSH_PORT"` | ||
ListenHost string `ini:"SSH_LISTEN_HOST"` | ||
ListenPort int `ini:"SSH_LISTEN_PORT"` | ||
RootPath string `ini:"SSH_ROOT_PATH"` | ||
ServerCiphers []string `ini:"SSH_SERVER_CIPHERS"` | ||
ServerKeyExchanges []string `ini:"SSH_SERVER_KEY_EXCHANGES"` | ||
ServerMACs []string `ini:"SSH_SERVER_MACS"` | ||
ServerHostKeys []string `ini:"SSH_SERVER_HOST_KEYS"` | ||
KeyTestPath string `ini:"SSH_KEY_TEST_PATH"` | ||
KeygenPath string `ini:"SSH_KEYGEN_PATH"` | ||
AuthorizedKeysBackup bool `ini:"SSH_AUTHORIZED_KEYS_BACKUP"` | ||
AuthorizedPrincipalsBackup bool `ini:"SSH_AUTHORIZED_PRINCIPALS_BACKUP"` | ||
MinimumKeySizeCheck bool `ini:"-"` | ||
MinimumKeySizes map[string]int `ini:"-"` | ||
CreateAuthorizedKeysFile bool `ini:"SSH_CREATE_AUTHORIZED_KEYS_FILE"` | ||
CreateAuthorizedPrincipalsFile bool `ini:"SSH_CREATE_AUTHORIZED_PRINCIPALS_FILE"` | ||
ExposeAnonymous bool `ini:"SSH_EXPOSE_ANONYMOUS"` | ||
AuthorizedPrincipalsAllow []string `ini:"SSH_AUTHORIZED_PRINCIPALS_ALLOW"` | ||
AuthorizedPrincipalsEnabled bool `ini:"-"` | ||
TrustedUserCAKeys []string `ini:"SSH_TRUSTED_USER_CA_KEYS"` | ||
TrustedUserCAKeysFile string `ini:"SSH_TRUSTED_USER_CA_KEYS_FILENAME"` | ||
TrustedUserCAKeysParsed []gossh.PublicKey `ini:"-"` | ||
Disabled bool `ini:"DISABLE_SSH"` | ||
StartBuiltinServer bool `ini:"START_SSH_SERVER"` | ||
BuiltinServerUser string `ini:"BUILTIN_SSH_SERVER_USER"` | ||
Domain string `ini:"SSH_DOMAIN"` | ||
Port int `ini:"SSH_PORT"` | ||
ListenHost string `ini:"SSH_LISTEN_HOST"` | ||
ListenPort int `ini:"SSH_LISTEN_PORT"` | ||
RootPath string `ini:"SSH_ROOT_PATH"` | ||
ServerCiphers []string `ini:"SSH_SERVER_CIPHERS"` | ||
ServerKeyExchanges []string `ini:"SSH_SERVER_KEY_EXCHANGES"` | ||
ServerMACs []string `ini:"SSH_SERVER_MACS"` | ||
ServerHostKeys []string `ini:"SSH_SERVER_HOST_KEYS"` | ||
KeyTestPath string `ini:"SSH_KEY_TEST_PATH"` | ||
KeygenPath string `ini:"SSH_KEYGEN_PATH"` | ||
AuthorizedKeysBackup bool `ini:"SSH_AUTHORIZED_KEYS_BACKUP"` | ||
AuthorizedPrincipalsBackup bool `ini:"SSH_AUTHORIZED_PRINCIPALS_BACKUP"` | ||
AuthorizedKeysCommandTemplate string `ini:"SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE"` | ||
AuthorizedKeysCommandTemplateTemplate *template.Template `ini:"-"` | ||
MinimumKeySizeCheck bool `ini:"-"` | ||
MinimumKeySizes map[string]int `ini:"-"` | ||
CreateAuthorizedKeysFile bool `ini:"SSH_CREATE_AUTHORIZED_KEYS_FILE"` | ||
CreateAuthorizedPrincipalsFile bool `ini:"SSH_CREATE_AUTHORIZED_PRINCIPALS_FILE"` | ||
ExposeAnonymous bool `ini:"SSH_EXPOSE_ANONYMOUS"` | ||
AuthorizedPrincipalsAllow []string `ini:"SSH_AUTHORIZED_PRINCIPALS_ALLOW"` | ||
AuthorizedPrincipalsEnabled bool `ini:"-"` | ||
TrustedUserCAKeys []string `ini:"SSH_TRUSTED_USER_CA_KEYS"` | ||
TrustedUserCAKeysFile string `ini:"SSH_TRUSTED_USER_CA_KEYS_FILENAME"` | ||
TrustedUserCAKeysParsed []gossh.PublicKey `ini:"-"` | ||
}{ | ||
Disabled: false, | ||
StartBuiltinServer: false, | ||
Domain: "", | ||
Port: 22, | ||
ServerCiphers: []string{"aes128-ctr", "aes192-ctr", "aes256-ctr", "[email protected]", "arcfour256", "arcfour128"}, | ||
ServerKeyExchanges: []string{"diffie-hellman-group1-sha1", "diffie-hellman-group14-sha1", "ecdh-sha2-nistp256", "ecdh-sha2-nistp384", "ecdh-sha2-nistp521", "[email protected]"}, | ||
ServerMACs: []string{"[email protected]", "hmac-sha2-256", "hmac-sha1", "hmac-sha1-96"}, | ||
KeygenPath: "ssh-keygen", | ||
MinimumKeySizeCheck: true, | ||
MinimumKeySizes: map[string]int{"ed25519": 256, "ed25519-sk": 256, "ecdsa": 256, "ecdsa-sk": 256, "rsa": 2048}, | ||
ServerHostKeys: []string{"ssh/gitea.rsa", "ssh/gogs.rsa"}, | ||
Disabled: false, | ||
StartBuiltinServer: false, | ||
Domain: "", | ||
Port: 22, | ||
ServerCiphers: []string{"aes128-ctr", "aes192-ctr", "aes256-ctr", "[email protected]", "arcfour256", "arcfour128"}, | ||
ServerKeyExchanges: []string{"diffie-hellman-group1-sha1", "diffie-hellman-group14-sha1", "ecdh-sha2-nistp256", "ecdh-sha2-nistp384", "ecdh-sha2-nistp521", "[email protected]"}, | ||
ServerMACs: []string{"[email protected]", "hmac-sha2-256", "hmac-sha1", "hmac-sha1-96"}, | ||
KeygenPath: "ssh-keygen", | ||
MinimumKeySizeCheck: true, | ||
MinimumKeySizes: map[string]int{"ed25519": 256, "ed25519-sk": 256, "ecdsa": 256, "ecdsa-sk": 256, "rsa": 2048}, | ||
ServerHostKeys: []string{"ssh/gitea.rsa", "ssh/gogs.rsa"}, | ||
AuthorizedKeysCommandTemplate: "{{.AppPath}} --config={{.CustomConf}} serv key-{{.Key.ID}}", | ||
} | ||
|
||
// Security settings | ||
|
@@ -777,6 +781,9 @@ func NewContext() { | |
} | ||
|
||
SSH.ExposeAnonymous = sec.Key("SSH_EXPOSE_ANONYMOUS").MustBool(false) | ||
SSH.AuthorizedKeysCommandTemplate = sec.Key("SSH_AUTHORIZED_KEYS_COMMAND_TEMPLATE").MustString(SSH.AuthorizedKeysCommandTemplate) | ||
|
||
SSH.AuthorizedKeysCommandTemplateTemplate = template.Must(template.New("").Parse(SSH.AuthorizedKeysCommandTemplate)) | ||
|
||
if err = Cfg.Section("oauth2").MapTo(&OAuth2); err != nil { | ||
log.Fatal("Failed to OAuth2 settings: %v", err) | ||
|