You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

188 lines
5.1 KiB

3 years ago
3 years ago
4 years ago
4 years ago
3 years ago
3 years ago
4 years ago
4 years ago
  1. package filer
  2. import (
  3. "bytes"
  4. "context"
  5. "fmt"
  6. "github.com/seaweedfs/seaweedfs/weed/pb"
  7. "github.com/seaweedfs/seaweedfs/weed/wdclient"
  8. "google.golang.org/grpc"
  9. "io"
  10. "github.com/seaweedfs/seaweedfs/weed/glog"
  11. "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
  12. "github.com/seaweedfs/seaweedfs/weed/util"
  13. "github.com/viant/ptrie"
  14. jsonpb "google.golang.org/protobuf/encoding/protojson"
  15. )
  16. const (
  17. DirectoryEtcRoot = "/etc/"
  18. DirectoryEtcSeaweedFS = "/etc/seaweedfs"
  19. DirectoryEtcRemote = "/etc/remote"
  20. FilerConfName = "filer.conf"
  21. IamConfigDirectory = "/etc/iam"
  22. IamIdentityFile = "identity.json"
  23. IamPoliciesFile = "policies.json"
  24. )
  25. type FilerConf struct {
  26. rules ptrie.Trie
  27. }
  28. func ReadFilerConf(filerGrpcAddress pb.ServerAddress, grpcDialOption grpc.DialOption, masterClient *wdclient.MasterClient) (*FilerConf, error) {
  29. var buf bytes.Buffer
  30. if err := pb.WithGrpcFilerClient(false, filerGrpcAddress, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  31. if masterClient != nil {
  32. return ReadEntry(masterClient, client, DirectoryEtcSeaweedFS, FilerConfName, &buf)
  33. } else {
  34. content, err := ReadInsideFiler(client, DirectoryEtcSeaweedFS, FilerConfName)
  35. buf = *bytes.NewBuffer(content)
  36. return err
  37. }
  38. }); err != nil && err != filer_pb.ErrNotFound {
  39. return nil, fmt.Errorf("read %s/%s: %v", DirectoryEtcSeaweedFS, FilerConfName, err)
  40. }
  41. fc := NewFilerConf()
  42. if buf.Len() > 0 {
  43. if err := fc.LoadFromBytes(buf.Bytes()); err != nil {
  44. return nil, fmt.Errorf("parse %s/%s: %v", DirectoryEtcSeaweedFS, FilerConfName, err)
  45. }
  46. }
  47. return fc, nil
  48. }
  49. func NewFilerConf() (fc *FilerConf) {
  50. fc = &FilerConf{
  51. rules: ptrie.New(),
  52. }
  53. return fc
  54. }
  55. func (fc *FilerConf) loadFromFiler(filer *Filer) (err error) {
  56. filerConfPath := util.NewFullPath(DirectoryEtcSeaweedFS, FilerConfName)
  57. entry, err := filer.FindEntry(context.Background(), filerConfPath)
  58. if err != nil {
  59. if err == filer_pb.ErrNotFound {
  60. return nil
  61. }
  62. glog.Errorf("read filer conf entry %s: %v", filerConfPath, err)
  63. return
  64. }
  65. if len(entry.Content) > 0 {
  66. return fc.LoadFromBytes(entry.Content)
  67. }
  68. return fc.loadFromChunks(filer, entry.Content, entry.GetChunks(), entry.Size())
  69. }
  70. func (fc *FilerConf) loadFromChunks(filer *Filer, content []byte, chunks []*filer_pb.FileChunk, size uint64) (err error) {
  71. if len(content) == 0 {
  72. content, err = filer.readEntry(chunks, size)
  73. if err != nil {
  74. glog.Errorf("read filer conf content: %v", err)
  75. return
  76. }
  77. }
  78. return fc.LoadFromBytes(content)
  79. }
  80. func (fc *FilerConf) LoadFromBytes(data []byte) (err error) {
  81. conf := &filer_pb.FilerConf{}
  82. options := &jsonpb.UnmarshalOptions{
  83. DiscardUnknown: true,
  84. AllowPartial: true,
  85. }
  86. if err := options.Unmarshal(data, conf); err != nil {
  87. return err
  88. }
  89. return fc.doLoadConf(conf)
  90. }
  91. func (fc *FilerConf) doLoadConf(conf *filer_pb.FilerConf) (err error) {
  92. for _, location := range conf.Locations {
  93. err = fc.AddLocationConf(location)
  94. if err != nil {
  95. // this is not recoverable
  96. return nil
  97. }
  98. }
  99. return nil
  100. }
  101. func (fc *FilerConf) AddLocationConf(locConf *filer_pb.FilerConf_PathConf) (err error) {
  102. err = fc.rules.Put([]byte(locConf.LocationPrefix), locConf)
  103. if err != nil {
  104. glog.Errorf("put location prefix: %v", err)
  105. }
  106. return
  107. }
  108. func (fc *FilerConf) DeleteLocationConf(locationPrefix string) {
  109. rules := ptrie.New()
  110. fc.rules.Walk(func(key []byte, value interface{}) bool {
  111. if string(key) == locationPrefix {
  112. return true
  113. }
  114. rules.Put(key, value)
  115. return true
  116. })
  117. fc.rules = rules
  118. return
  119. }
  120. func (fc *FilerConf) MatchStorageRule(path string) (pathConf *filer_pb.FilerConf_PathConf) {
  121. pathConf = &filer_pb.FilerConf_PathConf{}
  122. fc.rules.MatchPrefix([]byte(path), func(key []byte, value interface{}) bool {
  123. t := value.(*filer_pb.FilerConf_PathConf)
  124. mergePathConf(pathConf, t)
  125. return true
  126. })
  127. return pathConf
  128. }
  129. func (fc *FilerConf) GetCollectionTtls(collection string) (ttls map[string]string) {
  130. ttls = make(map[string]string)
  131. fc.rules.Walk(func(key []byte, value interface{}) bool {
  132. t := value.(*filer_pb.FilerConf_PathConf)
  133. if t.Collection == collection {
  134. ttls[t.LocationPrefix] = t.GetTtl()
  135. }
  136. return true
  137. })
  138. return ttls
  139. }
  140. // merge if values in b is not empty, merge them into a
  141. func mergePathConf(a, b *filer_pb.FilerConf_PathConf) {
  142. a.Collection = util.Nvl(b.Collection, a.Collection)
  143. a.Replication = util.Nvl(b.Replication, a.Replication)
  144. a.Ttl = util.Nvl(b.Ttl, a.Ttl)
  145. a.DiskType = util.Nvl(b.DiskType, a.DiskType)
  146. a.Fsync = b.Fsync || a.Fsync
  147. if b.VolumeGrowthCount > 0 {
  148. a.VolumeGrowthCount = b.VolumeGrowthCount
  149. }
  150. a.ReadOnly = b.ReadOnly || a.ReadOnly
  151. a.DataCenter = util.Nvl(b.DataCenter, a.DataCenter)
  152. a.Rack = util.Nvl(b.Rack, a.Rack)
  153. a.DataNode = util.Nvl(b.DataNode, a.DataNode)
  154. }
  155. func (fc *FilerConf) ToProto() *filer_pb.FilerConf {
  156. m := &filer_pb.FilerConf{}
  157. fc.rules.Walk(func(key []byte, value interface{}) bool {
  158. pathConf := value.(*filer_pb.FilerConf_PathConf)
  159. m.Locations = append(m.Locations, pathConf)
  160. return true
  161. })
  162. return m
  163. }
  164. func (fc *FilerConf) ToText(writer io.Writer) error {
  165. return ProtoToText(writer, fc.ToProto())
  166. }