-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auto generate additional ssh keys #33974
base: main
Are you sure you want to change the base?
Changes from all commits
bde153e
ac013f0
e123054
ea31ae8
c51f3ca
3a67769
17cf418
ee93970
1ef0194
9de2cce
423cb0e
3c4ad30
f8e81df
61f4962
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,6 @@ package ssh | |
import ( | ||
"bytes" | ||
"context" | ||
"crypto/rand" | ||
"crypto/rsa" | ||
"crypto/x509" | ||
"encoding/pem" | ||
"errors" | ||
"fmt" | ||
|
@@ -24,6 +21,7 @@ import ( | |
"syscall" | ||
|
||
asymkey_model "code.gitea.io/gitea/models/asymkey" | ||
"code.gitea.io/gitea/modules/generate" | ||
"code.gitea.io/gitea/modules/graceful" | ||
"code.gitea.io/gitea/modules/log" | ||
"code.gitea.io/gitea/modules/process" | ||
|
@@ -55,6 +53,14 @@ import ( | |
|
||
const giteaPermissionExtensionKeyID = "gitea-perm-ext-key-id" | ||
|
||
type KeyType string | ||
|
||
const ( | ||
RSA KeyType = "rsa" | ||
ECDSA KeyType = "ecdsa" | ||
ED25519 KeyType = "ed25519" | ||
) | ||
|
||
func getExitStatusFromError(err error) int { | ||
if err == nil { | ||
return 0 | ||
|
@@ -367,18 +373,19 @@ func Listen(host string, port int, ciphers, keyExchanges, macs []string) { | |
} | ||
|
||
if len(keys) == 0 { | ||
filePath := filepath.Dir(setting.SSH.ServerHostKeys[0]) | ||
|
||
if err := os.MkdirAll(filePath, os.ModePerm); err != nil { | ||
log.Error("Failed to create dir %s: %v", filePath, err) | ||
} | ||
|
||
err := GenKeyPair(setting.SSH.ServerHostKeys[0]) | ||
if err != nil { | ||
log.Fatal("Failed to generate private key: %v", err) | ||
for i := range 3 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For new default settings and parity with default (rootful) container keys. I'd like to drop it for something better though. |
||
filename := setting.SSH.ServerHostKeys[i] | ||
filePath := filepath.Dir(filename) | ||
if err := os.MkdirAll(filePath, os.ModePerm); err != nil { | ||
log.Error("Failed to create dir %s: %v", filePath, err) | ||
} | ||
err := GenKeyPair(filename) | ||
if err != nil { | ||
log.Fatal("Failed to generate private key: %v", err) | ||
} | ||
log.Trace("New private key is generated: %s", filename) | ||
keys = append(keys, filename) | ||
} | ||
log.Trace("New private key is generated: %s", setting.SSH.ServerHostKeys[0]) | ||
keys = append(keys, setting.SSH.ServerHostKeys[0]) | ||
} | ||
|
||
for _, key := range keys { | ||
|
@@ -388,7 +395,6 @@ func Listen(host string, port int, ciphers, keyExchanges, macs []string) { | |
log.Error("Failed to set Host Key. %s", err) | ||
} | ||
} | ||
|
||
go func() { | ||
_, _, finished := process.GetManager().AddTypedContext(graceful.GetManager().HammerContext(), "Service: Built-in SSH server", process.SystemProcessType, true) | ||
defer finished() | ||
|
@@ -400,12 +406,21 @@ func Listen(host string, port int, ciphers, keyExchanges, macs []string) { | |
// Public key is encoded in the format for inclusion in an OpenSSH authorized_keys file. | ||
// Private Key generated is PEM encoded | ||
func GenKeyPair(keyPath string) error { | ||
privateKey, err := rsa.GenerateKey(rand.Reader, 4096) | ||
bits := 4096 | ||
keytype := filepath.Ext(keyPath) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't seem right to guess the content by file extension. (oudated)
Hmm, it is not for "parsing" but for "creating", but it still seems strange to guess the key type by file extension. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fully agreed it's a bad design. The default was |
||
if keytype == ".ed25519" { | ||
keytype = "ed25519" | ||
} else if keytype == ".ecdsa" { | ||
bits = 256 | ||
keytype = "ecdsa" | ||
} else { | ||
keytype = "rsa" | ||
} | ||
publicKey, privateKeyPEM, err := generate.NewSSHKey(keytype, bits) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
privateKeyPEM := &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(privateKey)} | ||
f, err := os.OpenFile(keyPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o600) | ||
if err != nil { | ||
return err | ||
|
@@ -420,13 +435,7 @@ func GenKeyPair(keyPath string) error { | |
return err | ||
} | ||
|
||
// generate public key | ||
pub, err := gossh.NewPublicKey(&privateKey.PublicKey) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
public := gossh.MarshalAuthorizedKey(pub) | ||
public := gossh.MarshalAuthorizedKey(publicKey) | ||
p, err := os.OpenFile(keyPath+".pub", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o600) | ||
if err != nil { | ||
return err | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright 2025 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package ssh_test | ||
|
||
import ( | ||
"crypto/ecdsa" | ||
"crypto/ed25519" | ||
"crypto/rsa" | ||
"io" | ||
"os" | ||
"path/filepath" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/modules/ssh" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
gossh "golang.org/x/crypto/ssh" | ||
) | ||
|
||
func TestGenKeyPair(t *testing.T) { | ||
testCases := []struct { | ||
keyPath string | ||
expectedType any | ||
}{ | ||
{ | ||
keyPath: "/gitea.rsa", | ||
expectedType: &rsa.PrivateKey{}, | ||
}, | ||
{ | ||
keyPath: "/gitea.ed25519", | ||
expectedType: &ed25519.PrivateKey{}, | ||
}, | ||
{ | ||
keyPath: "/gitea.ecdsa", | ||
expectedType: &ecdsa.PrivateKey{}, | ||
}, | ||
} | ||
for _, tC := range testCases { | ||
t.Run("Generate "+filepath.Ext(tC.keyPath), func(t *testing.T) { | ||
path := t.TempDir() + tC.keyPath | ||
require.NoError(t, ssh.GenKeyPair(path)) | ||
|
||
file, err := os.Open(path) | ||
require.NoError(t, err) | ||
|
||
bytes, err := io.ReadAll(file) | ||
require.NoError(t, err) | ||
|
||
privateKey, err := gossh.ParseRawPrivateKey(bytes) | ||
require.NoError(t, err) | ||
assert.IsType(t, tC.expectedType, privateKey) | ||
}) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it avoid overwriting existing file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be a good idea, I'll try to figure out how to do it.
Would comments also be a good idea to include?