cubefs/objectnode/server.go
slasher 5c7898354f style(all): format all codes with golangci tools
closes #3371

@formatter:off

Signed-off-by: slasher <shenjie1@oppo.com>
2024-05-14 09:54:13 +08:00

498 lines
14 KiB
Go

// Copyright 2019 The CubeFS Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package objectnode
import (
"context"
"errors"
"fmt"
"net/http"
"path"
"regexp"
"strings"
"sync"
"time"
"github.com/cubefs/cubefs/blobstore/api/access"
"github.com/cubefs/cubefs/blobstore/common/rpc"
"github.com/cubefs/cubefs/blobstore/common/rpc/auditlog"
"github.com/cubefs/cubefs/blobstore/common/trace"
"github.com/cubefs/cubefs/blockcache/bcache"
"github.com/cubefs/cubefs/cmd/common"
"github.com/cubefs/cubefs/proto"
"github.com/cubefs/cubefs/sdk/data/blobstore"
"github.com/cubefs/cubefs/sdk/master"
"github.com/cubefs/cubefs/util/config"
"github.com/cubefs/cubefs/util/exporter"
"github.com/cubefs/cubefs/util/log"
"github.com/cubefs/cubefs/util/reloadconf"
"github.com/gorilla/mux"
)
func init() {
trace.PrefixBaggage = "x-object-baggage-"
trace.FieldKeyTraceID = "x-object-trace-id"
trace.FieldKeySpanID = "x-object-span-id"
}
// Configuration items that act on the ObjectNode.
const (
// String type configuration type, used to configure the listening port number of the service.
// Example:
// {
// "listen": "80"
// }
configListen = proto.ListenPort
// String array configuration item, used to configure the hostname or IP address of the cluster master node.
// The ObjectNode needs to communicate with the Master during the startup and running process to update the
// cluster, user and volume information.
// Example:
// {
// "masterAddr":[
// "master1.cube.io",
// "master2.cube.io",
// "master3.cube.io"
// ]
// }
configMasterAddr = proto.MasterAddr
// A bool type configuration is used to ensure that the topology information is consistent with the cluster
// in real time during the compatibility test. If true, the object node will not cache user information and
// volume topology. This configuration will cause a drastic decrease in performance after being turned on,
// and can only be turned on for protocol compatibility testing.
// Example:
// {
// "strict": true
// }
configStrict = "strict"
disableCreateBucketByS3 = "disableCreateBucketByS3"
// The character creation array configuration item is used to configure the domain name bound to the object
// storage interface. You can bind multiple. ObjectNode uses this configuration to implement automatic
// resolution of pan-domain names.
// Example:
// {
// "domains": [
// "object.cube.io"
// ]
// }
// The configuration in the example will allow ObjectNode to automatically resolve "* .object.cube.io".
configDomains = "domains"
disabledActions = "disabledActions"
configSignatureIgnoredActions = "signatureIgnoredActions"
// String array configuration item, used to configure the actions that are not allowed to be accessed by
// STS users.
// Example:
// {
// "stsNotAllowedActions": [
// "action:oss:CreateBucket",
// "action:oss:DeleteBucket"
// ]
// }
configSTSNotAllowedActions = "stsNotAllowedActions"
// Map type configuration item, used to configure ObjectNode to support audit log feature. For detailed
// parameters, see the AuditLogConfig structure.
// Example:
// {
// "auditLog": {
// "local": {
// "logdir": "./run/auditlog/object/",
// "no_2xx_body": true
// },
// "kafka": {
// "cubefs": {
// "enable": true,
// "topic": "audit_log_topic",
// "brokers": "192.168.80.130:9095,192.168.80.131:9095,192.168.80.132:9095"
// }
// },
// ...
// }
// }
configAuditLog = "auditLog"
// ObjMetaCache takes each path hierarchy of the path-like S3 object key as the cache key,
// and map it to the corresponding posix-compatible inode
// when enabled, the maxDentryCacheNum must at least be the minimum of defaultMaxDentryCacheNum
// Example:
// {
// "enableObjMetaCache": true
// }
configObjMetaCache = "enableObjMetaCache"
// Example:
// {
// "cacheRefreshIntervalSec": 600
// "maxDentryCacheNum": 10000000
// "maxInodeAttrCacheNum": 10000000
// }
configCacheRefreshIntervalSec = "cacheRefreshIntervalSec"
configMaxDentryCacheNum = "maxDentryCacheNum"
configMaxInodeAttrCacheNum = "maxInodeAttrCacheNum"
// enable block cache when reading data in cold volume
enableBcache = "enableBcache"
// define thread numbers for writing and reading ebs
ebsWriteThreads = "bStoreWriteThreads"
ebsReadThreads = "bStoreReadThreads"
// s3 QoS config refresh interval
s3QoSRefreshIntervalSec = "s3QoSRefreshIntervalSec"
)
// Default of configuration value
const (
defaultListen = "80"
defaultCacheRefreshInterval = 10 * 60
defaultMaxDentryCacheNum = 1000000
defaultMaxInodeAttrCacheNum = 1000000
defaultS3QoSReloadIntervalSec = 300
defaultS3QoSConfName = "s3qosInfo.conf"
// ebs
MaxSizePutOnce = int64(1) << 23
)
var (
// Regular expression used to verify the configuration of the service listening port.
// A valid service listening port configuration is a string containing only numbers.
regexpListen = regexp.MustCompile(`^(\d)+$`)
objMetaCache *ObjMetaCache
blockCache *bcache.BcacheClient
ebsClient *blobstore.BlobStoreClient
writeThreads = 4
readThreads = 4
enableBlockcache bool
)
type ObjectNode struct {
domains []string
wildcards Wildcards
listen string
region string
httpServer *http.Server
vm *VolumeManager
mc *master.MasterClient
userStore UserInfoStore
// state uint32
// wg sync.WaitGroup
localAuditHandler rpc.ProgressHandler
externalAudit *ExternalAudit
closes []func() // close other resources after http server closed
signatureIgnoredActions proto.Actions // signature ignored actions
disabledActions proto.Actions // disabled actions
stsNotAllowedActions proto.Actions // actions that are not accessible to STS users
control common.Control
rateLimit RateLimiter
limitMutex sync.RWMutex
disableCreateBucketByS3 bool
}
func (o *ObjectNode) Start(cfg *config.Config) (err error) {
return o.control.Start(o, cfg, handleStart)
}
func (o *ObjectNode) Shutdown() {
o.control.Shutdown(o, handleShutdown)
}
func (o *ObjectNode) Sync() {
o.control.Sync()
}
func (o *ObjectNode) loadConfig(cfg *config.Config) (err error) {
// parse listen
listen := cfg.GetString(configListen)
if len(listen) == 0 {
listen = defaultListen
}
if match := regexpListen.MatchString(listen); !match {
err = errors.New("invalid listen configuration")
return
}
o.listen = listen
log.LogInfof("loadConfig: setup config: %v(%v)", configListen, listen)
// parse domain
domains := cfg.GetStringSlice(configDomains)
o.domains = domains
if o.wildcards, err = NewWildcards(domains); err != nil {
return
}
log.LogInfof("loadConfig: setup config: %v(%v)", configDomains, domains)
// parse master config
masters := cfg.GetStringSlice(configMasterAddr)
if len(masters) == 0 {
return config.NewIllegalConfigError(configMasterAddr)
}
log.LogInfof("loadConfig: setup config: %v(%v)", configMasterAddr, strings.Join(masters, ","))
// parse signature ignored actions
signatureIgnoredActionNames := cfg.GetStringSlice(configSignatureIgnoredActions)
for _, actionName := range signatureIgnoredActionNames {
action := proto.ParseAction(actionName)
if !action.IsNone() {
o.signatureIgnoredActions = append(o.signatureIgnoredActions, action)
log.LogInfof("loadConfig: signature ignored action: %v", action)
}
}
// parse disabled actions
disabledActions := cfg.GetStringSlice(disabledActions)
for _, actionName := range disabledActions {
action := proto.ParseAction(actionName)
if !action.IsNone() {
o.disabledActions = append(o.disabledActions, action)
log.LogInfof("loadConfig: disabled action: %v", action)
}
}
// parse sts not allowed actions
stsNotAllowedActions := cfg.GetStringSlice(configSTSNotAllowedActions)
for _, actionName := range stsNotAllowedActions {
action := proto.ParseAction(actionName)
if !action.IsNone() {
o.stsNotAllowedActions = append(o.stsNotAllowedActions, action)
log.LogInfof("loadConfig: sts not allowed action: %v", action)
}
}
// parse auditLog config
if rawAuditLog := cfg.GetValue(configAuditLog); rawAuditLog != nil {
if err = o.setAuditLog(rawAuditLog); err != nil {
err = fmt.Errorf("invalid %v configuration: %v", configAuditLog, err)
return
}
log.LogInfof("loadConfig: setup config: %v(%v)", configAuditLog, rawAuditLog)
}
// parse strict config
strict := cfg.GetBool(configStrict)
log.LogInfof("loadConfig: strict: %v", strict)
o.disableCreateBucketByS3 = cfg.GetBool(disableCreateBucketByS3)
o.mc = master.NewMasterClient(masters, false)
o.vm = NewVolumeManager(masters, strict)
o.userStore = NewUserInfoStore(masters, strict)
// parse inode cache
cacheEnable := cfg.GetBool(configObjMetaCache)
if cacheEnable {
cacheRefreshInterval := uint64(cfg.GetInt64(configCacheRefreshIntervalSec))
if cacheRefreshInterval <= 0 {
cacheRefreshInterval = defaultCacheRefreshInterval
}
maxDentryCacheNum := cfg.GetInt64(configMaxDentryCacheNum)
if maxDentryCacheNum <= 0 {
maxDentryCacheNum = defaultMaxDentryCacheNum
}
maxInodeAttrCacheNum := cfg.GetInt64(configMaxInodeAttrCacheNum)
if maxInodeAttrCacheNum <= 0 {
maxInodeAttrCacheNum = defaultMaxInodeAttrCacheNum
}
objMetaCache = NewObjMetaCache(maxDentryCacheNum, maxInodeAttrCacheNum, cacheRefreshInterval)
log.LogDebugf("loadConfig: enableObjMetaCache, maxDentryCacheNum: %v, maxInodeAttrCacheNum: %v"+
", cacheRefreshIntervalSec: %v", maxDentryCacheNum, maxInodeAttrCacheNum, cacheRefreshInterval)
}
enableBlockcache = cfg.GetBool(enableBcache)
if enableBlockcache {
blockCache = bcache.NewBcacheClient()
}
return
}
func (o *ObjectNode) updateRegion(region string) {
o.region = region
}
func (o *ObjectNode) setAuditLog(raw interface{}) error {
var conf AuditLogConfig
if err := ParseJSONEntity(raw, &conf); err != nil {
return err
}
// set the local audit log
if conf.Local != nil {
ah, lf, err := auditlog.Open("OBJECT", conf.Local)
if err != nil {
return err
}
if lf != nil {
o.closes = append(o.closes, func() { lf.Close() })
}
o.localAuditHandler = ah
}
// set the external audit log
o.externalAudit = NewExternalAudit()
for id, cfg := range conf.Kafka {
if cfg.Enable {
ak, err := NewKafkaAudit(id, cfg)
if err != nil {
return err
}
o.externalAudit.AddLoggers(ak)
}
}
for id, cfg := range conf.Webhook {
if cfg.Enable {
aw, err := NewWebhookAudit(id, cfg)
if err != nil {
return err
}
o.externalAudit.AddLoggers(aw)
}
}
o.closes = append(o.closes, func() { o.externalAudit.Close() })
return nil
}
func handleStart(s common.Server, cfg *config.Config) (err error) {
o, ok := s.(*ObjectNode)
if !ok {
return errors.New("Invalid node Type!")
}
// parse config
if err = o.loadConfig(cfg); err != nil {
return
}
// Get cluster info from master
var ci *proto.ClusterInfo
if ci, err = o.mc.AdminAPI().GetClusterInfo(); err != nil {
return
}
o.updateRegion(ci.Cluster)
log.LogInfof("handleStart: get cluster information: region(%v)", o.region)
if ci.EbsAddr != "" {
err = newEbsClient(ci, cfg)
if err != nil {
log.LogWarnf("handleStart: new ebsClient err(%v)", err)
return err
}
wt := cfg.GetInt(ebsWriteThreads)
if wt != 0 {
writeThreads = wt
}
rt := cfg.GetInt(ebsReadThreads)
if rt != 0 {
readThreads = rt
}
}
// s3 api qos info
reloadConf := &reloadconf.ReloadConf{
ConfName: defaultS3QoSConfName,
ReloadSec: cfg.GetIntWithDefault(s3QoSRefreshIntervalSec, defaultS3QoSReloadIntervalSec),
RequestRemote: o.requestRemote,
}
err = reloadconf.StartReload(reloadConf, o.Reload)
if err != nil {
log.LogWarnf("handleStart: GetS3QoSInfo err(%v)", err)
o.limitMutex.Lock()
o.rateLimit = &NullRateLimit{}
o.limitMutex.Unlock()
}
// start rest api
if err = o.startMuxRestAPI(); err != nil {
log.LogInfof("handleStart: start rest api fail: err(%v)", err)
return
}
exporter.Init(cfg.GetString("role"), cfg)
exporter.RegistConsul(ci.Cluster, cfg.GetString("role"), cfg)
log.LogInfo("object subsystem start success")
return
}
func newEbsClient(ci *proto.ClusterInfo, cfg *config.Config) (err error) {
ebsClient, err = blobstore.NewEbsClient(access.Config{
ConnMode: access.NoLimitConnMode,
Consul: access.ConsulConfig{
Address: ci.EbsAddr,
},
MaxSizePutOnce: MaxSizePutOnce,
Logger: &access.Logger{
Filename: path.Join(cfg.GetString("logDir"), "ebs.log"),
},
})
return err
}
func handleShutdown(s common.Server) {
o, ok := s.(*ObjectNode)
if !ok {
return
}
o.shutdown()
}
func (o *ObjectNode) startMuxRestAPI() (err error) {
router := mux.NewRouter().SkipClean(true)
o.registerApiRouters(router)
router.Use(
o.auditMiddleware,
o.expectMiddleware,
o.traceMiddleware,
o.authMiddleware,
o.corsMiddleware,
o.policyCheckMiddleware,
o.contentMiddleware,
)
server := &http.Server{
Addr: ":" + o.listen,
Handler: router,
ReadTimeout: 5 * time.Minute,
WriteTimeout: 5 * time.Minute,
}
go func() {
if err = server.ListenAndServe(); err != nil {
log.LogErrorf("startMuxRestAPI: start http server fail, err(%v)", err)
return
}
}()
o.httpServer = server
return
}
func (o *ObjectNode) shutdown() {
if o.httpServer != nil {
_ = o.httpServer.Shutdown(context.Background())
o.httpServer = nil
}
// close other resources after http server closed
for _, f := range o.closes {
f()
}
}
func NewServer() *ObjectNode {
return &ObjectNode{}
}