mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
54 lines
902 B
Go
54 lines
902 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package tls
|
|
|
|
import (
|
|
"crypto/x509"
|
|
"sync"
|
|
)
|
|
|
|
type rootCertsCache struct {
|
|
sync.Mutex
|
|
pool *x509.CertPool
|
|
}
|
|
|
|
func (c *rootCertsCache) load() (*x509.CertPool, error) {
|
|
c.Lock()
|
|
defer c.Unlock()
|
|
|
|
if c.pool != nil {
|
|
return c.pool, nil
|
|
}
|
|
|
|
pool, err := x509.SystemCertPool()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c.pool = pool
|
|
return pool, nil
|
|
}
|
|
|
|
var rootCerts rootCertsCache
|
|
|
|
func (c *Config) getCertPool() (*x509.CertPool, error) {
|
|
if c.DisableSystemRoot {
|
|
return c.loadSelfCertPool()
|
|
}
|
|
|
|
if len(c.Certificate) == 0 {
|
|
return rootCerts.load()
|
|
}
|
|
|
|
pool, err := x509.SystemCertPool()
|
|
if err != nil {
|
|
return nil, newError("system root").AtWarning().Base(err)
|
|
}
|
|
for _, cert := range c.Certificate {
|
|
if !pool.AppendCertsFromPEM(cert.Certificate) {
|
|
return nil, newError("append cert to root").AtWarning().Base(err)
|
|
}
|
|
}
|
|
return pool, err
|
|
}
|