1 Star 0 Fork 1

mysnapcore / mysnapd

forked from tupelo-shen / mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
certs.go 3.50 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-08 15:12 . fix: overlord commit
// -*- Mode: Go; indent-tabs-mode: t -*-
//go:build !nomanagers
// +build !nomanagers
/*
* Copyright (C) 2020 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package configcore
import (
"crypto/x509"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"gitee.com/mysnapcore/mysnapd/dirs"
"gitee.com/mysnapcore/mysnapd/overlord/configstate/config"
)
func handleCertConfiguration(tr config.Conf, opts *fsOnlyContext) error {
// This handles the "snap revert core" case:
// We need to go over each pem cert on disk and check if there is
// a matching config entry - if not->delete the cert
//
// XXX: remove this code once we have a general way to handle
// "snap revert" and config updates
//
// TODO: add ways to detect cleanly if tr is a patch, skip the sync code if it is
storeCerts, err := filepath.Glob(filepath.Join(dirs.SnapdStoreSSLCertsDir, "*.pem"))
if err != nil {
return fmt.Errorf("cannot get exiting store certs: %v", err)
}
for _, storeCertPath := range storeCerts {
optionName := strings.TrimSuffix(filepath.Base(storeCertPath), ".pem")
v, err := coreCfg(tr, "store-certs."+optionName)
if err != nil {
return err
}
if v == "" {
if err := os.Remove(storeCertPath); err != nil {
return err
}
}
}
// add/remove regular (non revert) changes
for _, name := range tr.Changes() {
if !strings.HasPrefix(name, "core.store-certs.") {
continue
}
nameWithoutSnap := strings.SplitN(name, ".", 2)[1]
cert, err := coreCfg(tr, nameWithoutSnap)
if err != nil {
return fmt.Errorf("internal error: cannot get data for %s: %v", nameWithoutSnap, err)
}
optionName := strings.SplitN(name, ".", 3)[2]
certPath := filepath.Join(dirs.SnapdStoreSSLCertsDir, optionName+".pem")
switch cert {
case "":
// remove
if err := os.Remove(certPath); err != nil && !os.IsNotExist(err) {
return fmt.Errorf("cannot remove store certificate: %v", err)
}
default:
if err := os.MkdirAll(dirs.SnapdStoreSSLCertsDir, 0755); err != nil {
return fmt.Errorf("cannot create store ssl certs dir: %v", err)
}
if err := ioutil.WriteFile(certPath, []byte(cert), 0644); err != nil {
return fmt.Errorf("cannot write store certificate: %v", err)
}
}
}
return nil
}
func validateCertSettings(tr config.Conf) error {
for _, name := range tr.Changes() {
if !strings.HasPrefix(name, "core.store-certs.") {
continue
}
nameWithoutSnap := strings.SplitN(name, ".", 2)[1]
cert, err := coreCfg(tr, nameWithoutSnap)
if err != nil {
return fmt.Errorf("internal error: cannot get data for %s: %v", nameWithoutSnap, err)
}
if cert != "" {
optionName := strings.SplitN(name, ".", 3)[2]
if !validCertName(optionName) {
return fmt.Errorf("cannot set store ssl certificate under name %q: name must only contain word characters or a dash", optionName)
}
cp := x509.NewCertPool()
if !cp.AppendCertsFromPEM([]byte(cert)) {
return fmt.Errorf("cannot decode pem certificate %q", optionName)
}
}
}
return nil
}
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助