Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 9c73b5b

Browse files
committed
fix: the trustcerts not add to globalCerts after ca.ResetCertificate (#1801)
support PEM format for custom-certificates too
1 parent fc23318 commit 9c73b5b

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

component/ca/config.go

+10-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import (
1717
C "github.com/metacubex/mihomo/constant"
1818
)
1919

20-
var trustCerts []*x509.Certificate
2120
var globalCertPool *x509.CertPool
2221
var mutex sync.RWMutex
2322
var errNotMatch = errors.New("certificate fingerprints do not match")
@@ -30,11 +29,19 @@ var DisableSystemCa, _ = strconv.ParseBool(os.Getenv("DISABLE_SYSTEM_CA"))
3029
func AddCertificate(certificate string) error {
3130
mutex.Lock()
3231
defer mutex.Unlock()
32+
3333
if certificate == "" {
3434
return fmt.Errorf("certificate is empty")
3535
}
36-
if cert, err := x509.ParseCertificate([]byte(certificate)); err == nil {
37-
trustCerts = append(trustCerts, cert)
36+
37+
if globalCertPool == nil {
38+
initializeCertPool()
39+
}
40+
41+
if globalCertPool.AppendCertsFromPEM([]byte(certificate)) {
42+
return nil
43+
} else if cert, err := x509.ParseCertificate([]byte(certificate)); err == nil {
44+
globalCertPool.AddCert(cert)
3845
return nil
3946
} else {
4047
return fmt.Errorf("add certificate failed")
@@ -51,9 +58,6 @@ func initializeCertPool() {
5158
globalCertPool = x509.NewCertPool()
5259
}
5360
}
54-
for _, cert := range trustCerts {
55-
globalCertPool.AddCert(cert)
56-
}
5761
if !DisableEmbedCa {
5862
globalCertPool.AppendCertsFromPEM(_CaCertificates)
5963
}
@@ -62,7 +66,6 @@ func initializeCertPool() {
6266
func ResetCertificate() {
6367
mutex.Lock()
6468
defer mutex.Unlock()
65-
trustCerts = nil
6669
initializeCertPool()
6770
}
6871

0 commit comments

Comments
 (0)