1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
|
package config
import (
"crypto/x509"
"encoding/pem"
"errors"
"fmt"
"net"
"net/url"
"os"
"runtime"
"strings"
"github.com/go-macaroon-bakery/macaroon-bakery/v3/httpbakery"
"github.com/go-macaroon-bakery/macaroon-bakery/v3/httpbakery/form"
"github.com/juju/persistent-cookiejar"
schemaform "gopkg.in/juju/environschema.v1/form"
"github.com/canonical/lxd/client"
"github.com/canonical/lxd/shared"
)
// Remote holds details for communication with a remote daemon.
type Remote struct {
Addr string `yaml:"addr"`
AuthType string `yaml:"auth_type,omitempty"`
Domain string `yaml:"domain,omitempty"`
Project string `yaml:"project,omitempty"`
Protocol string `yaml:"protocol,omitempty"`
Public bool `yaml:"public"`
Global bool `yaml:"-"`
Static bool `yaml:"-"`
}
// ParseRemote splits remote and object.
func (c *Config) ParseRemote(raw string) (string, string, error) {
result := strings.SplitN(raw, ":", 2)
if len(result) == 1 {
return c.DefaultRemote, raw, nil
}
_, ok := c.Remotes[result[0]]
if !ok {
// Attempt to play nice with snapshots containing ":"
if shared.IsSnapshot(raw) && shared.IsSnapshot(result[0]) {
return c.DefaultRemote, raw, nil
}
return "", "", fmt.Errorf("The remote \"%s\" doesn't exist", result[0])
}
return result[0], result[1], nil
}
// GetInstanceServer returns a InstanceServer struct for the remote.
func (c *Config) GetInstanceServer(name string) (lxd.InstanceServer, error) {
// Handle "local" on non-Linux
if name == "local" && runtime.GOOS != "linux" {
return nil, ErrNotLinux
}
// Get the remote
remote, ok := c.Remotes[name]
if !ok {
return nil, fmt.Errorf("The remote \"%s\" doesn't exist", name)
}
// Quick checks.
if remote.Public || remote.Protocol == "simplestreams" {
return nil, fmt.Errorf("The remote isn't a private LXD server")
}
// Get connection arguments
args, err := c.getConnectionArgs(name)
if err != nil {
return nil, err
}
// Unix socket
if strings.HasPrefix(remote.Addr, "unix:") {
d, err := lxd.ConnectLXDUnix(strings.TrimPrefix(strings.TrimPrefix(remote.Addr, "unix:"), "//"), args)
if err != nil {
var netErr *net.OpError
if errors.As(err, &netErr) {
return nil, fmt.Errorf("The LXD daemon doesn't appear to be started (socket path: %s)", netErr.Addr)
}
return nil, err
}
if remote.Project != "" && remote.Project != "default" {
d = d.UseProject(remote.Project)
}
if c.ProjectOverride != "" {
d = d.UseProject(c.ProjectOverride)
}
return d, nil
}
// HTTPs
if remote.AuthType != "candid" && (args.TLSClientCert == "" || args.TLSClientKey == "") {
return nil, fmt.Errorf("Missing TLS client certificate and key")
}
d, err := lxd.ConnectLXD(remote.Addr, args)
if err != nil {
return nil, err
}
if remote.Project != "" && remote.Project != "default" {
d = d.UseProject(remote.Project)
}
if c.ProjectOverride != "" {
d = d.UseProject(c.ProjectOverride)
}
return d, nil
}
// GetImageServer returns a ImageServer struct for the remote.
func (c *Config) GetImageServer(name string) (lxd.ImageServer, error) {
// Handle "local" on non-Linux
if name == "local" && runtime.GOOS != "linux" {
return nil, ErrNotLinux
}
// Get the remote
remote, ok := c.Remotes[name]
if !ok {
return nil, fmt.Errorf("The remote \"%s\" doesn't exist", name)
}
// Get connection arguments
args, err := c.getConnectionArgs(name)
if err != nil {
return nil, err
}
// Unix socket
if strings.HasPrefix(remote.Addr, "unix:") {
d, err := lxd.ConnectLXDUnix(strings.TrimPrefix(strings.TrimPrefix(remote.Addr, "unix:"), "//"), args)
if err != nil {
return nil, err
}
if remote.Project != "" && remote.Project != "default" {
d = d.UseProject(remote.Project)
}
if c.ProjectOverride != "" {
d = d.UseProject(c.ProjectOverride)
}
return d, nil
}
// HTTPs (simplestreams)
if remote.Protocol == "simplestreams" {
d, err := lxd.ConnectSimpleStreams(remote.Addr, args)
if err != nil {
return nil, err
}
return d, nil
}
// HTTPs (public LXD)
if remote.Public {
d, err := lxd.ConnectPublicLXD(remote.Addr, args)
if err != nil {
return nil, err
}
return d, nil
}
// HTTPs (private LXD)
d, err := lxd.ConnectLXD(remote.Addr, args)
if err != nil {
return nil, err
}
if remote.Project != "" && remote.Project != "default" {
d = d.UseProject(remote.Project)
}
if c.ProjectOverride != "" {
d = d.UseProject(c.ProjectOverride)
}
return d, nil
}
// getConnectionArgs retrieves the connection arguments for the specified remote.
// It constructs the necessary connection arguments based on the remote's configuration, including authentication type,
// authentication interactors, cookie jar, OIDC tokens, TLS certificates, and client key.
// The function returns the connection arguments or an error if any configuration is missing or encounters a problem.
func (c *Config) getConnectionArgs(name string) (*lxd.ConnectionArgs, error) {
remote := c.Remotes[name]
args := lxd.ConnectionArgs{
UserAgent: c.UserAgent,
AuthType: remote.AuthType,
}
if args.AuthType == "candid" {
args.AuthInteractor = []httpbakery.Interactor{
form.Interactor{Filler: schemaform.IOFiller{}},
httpbakery.WebBrowserInteractor{
OpenWebBrowser: func(uri *url.URL) error {
if remote.Domain != "" {
query := uri.Query()
query.Set("domain", remote.Domain)
uri.RawQuery = query.Encode()
}
return httpbakery.OpenWebBrowser(uri)
},
},
}
if c.cookieJars == nil || c.cookieJars[name] == nil {
if !shared.PathExists(c.ConfigPath("jars")) {
err := os.MkdirAll(c.ConfigPath("jars"), 0700)
if err != nil {
return nil, err
}
}
if !shared.PathExists(c.CookiesPath(name)) {
if shared.PathExists(c.ConfigPath("cookies")) {
err := shared.FileCopy(c.ConfigPath("cookies"), c.CookiesPath(name))
if err != nil {
return nil, err
}
}
}
jar, err := cookiejar.New(
&cookiejar.Options{
Filename: c.CookiesPath(name),
})
if err != nil {
return nil, err
}
if c.cookieJars == nil {
c.cookieJars = map[string]*cookiejar.Jar{}
}
c.cookieJars[name] = jar
}
args.CookieJar = c.cookieJars[name]
}
// Stop here if no TLS involved
if strings.HasPrefix(remote.Addr, "unix:") {
return &args, nil
}
// Server certificate
if shared.PathExists(c.ServerCertPath(name)) {
content, err := os.ReadFile(c.ServerCertPath(name))
if err != nil {
return nil, err
}
args.TLSServerCert = string(content)
}
// Stop here if no client certificate involved
if remote.Protocol == "simplestreams" || remote.AuthType == "candid" {
return &args, nil
}
// Client certificate
if shared.PathExists(c.ConfigPath("client.crt")) {
content, err := os.ReadFile(c.ConfigPath("client.crt"))
if err != nil {
return nil, err
}
args.TLSClientCert = string(content)
}
// Client CA
if shared.PathExists(c.ConfigPath("client.ca")) {
content, err := os.ReadFile(c.ConfigPath("client.ca"))
if err != nil {
return nil, err
}
args.TLSCA = string(content)
}
// Client key
if shared.PathExists(c.ConfigPath("client.key")) {
content, err := os.ReadFile(c.ConfigPath("client.key"))
if err != nil {
return nil, err
}
pemKey, _ := pem.Decode(content)
// Golang has deprecated all methods relating to PEM encryption due to a vulnerability.
// However, the weakness does not make PEM unsafe for our purposes as it pertains to password protection on the
// key file (client.key is only readable to the user in any case), so we'll ignore deprecation.
if x509.IsEncryptedPEMBlock(pemKey) { //nolint:staticcheck
if c.PromptPassword == nil {
return nil, fmt.Errorf("Private key is password protected and no helper was configured")
}
password, err := c.PromptPassword("client.crt")
if err != nil {
return nil, err
}
derKey, err := x509.DecryptPEMBlock(pemKey, []byte(password)) //nolint:staticcheck
if err != nil {
return nil, err
}
content = pem.EncodeToMemory(&pem.Block{Type: "RSA PRIVATE KEY", Bytes: derKey})
}
args.TLSClientKey = string(content)
}
return &args, nil
}
|