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.

189 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, 0, 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. key = bytes.Clone(key)
  115. _ = rules.Put(key, value)
  116. return true
  117. })
  118. fc.rules = rules
  119. return
  120. }
  121. func (fc *FilerConf) MatchStorageRule(path string) (pathConf *filer_pb.FilerConf_PathConf) {
  122. pathConf = &filer_pb.FilerConf_PathConf{}
  123. fc.rules.MatchPrefix([]byte(path), func(key []byte, value interface{}) bool {
  124. t := value.(*filer_pb.FilerConf_PathConf)
  125. mergePathConf(pathConf, t)
  126. return true
  127. })
  128. return pathConf
  129. }
  130. func (fc *FilerConf) GetCollectionTtls(collection string) (ttls map[string]string) {
  131. ttls = make(map[string]string)
  132. fc.rules.Walk(func(key []byte, value interface{}) bool {
  133. t := value.(*filer_pb.FilerConf_PathConf)
  134. if t.Collection == collection {
  135. ttls[t.LocationPrefix] = t.GetTtl()
  136. }
  137. return true
  138. })
  139. return ttls
  140. }
  141. // merge if values in b is not empty, merge them into a
  142. func mergePathConf(a, b *filer_pb.FilerConf_PathConf) {
  143. a.Collection = util.Nvl(b.Collection, a.Collection)
  144. a.Replication = util.Nvl(b.Replication, a.Replication)
  145. a.Ttl = util.Nvl(b.Ttl, a.Ttl)
  146. a.DiskType = util.Nvl(b.DiskType, a.DiskType)
  147. a.Fsync = b.Fsync || a.Fsync
  148. if b.VolumeGrowthCount > 0 {
  149. a.VolumeGrowthCount = b.VolumeGrowthCount
  150. }
  151. a.ReadOnly = b.ReadOnly || a.ReadOnly
  152. a.DataCenter = util.Nvl(b.DataCenter, a.DataCenter)
  153. a.Rack = util.Nvl(b.Rack, a.Rack)
  154. a.DataNode = util.Nvl(b.DataNode, a.DataNode)
  155. }
  156. func (fc *FilerConf) ToProto() *filer_pb.FilerConf {
  157. m := &filer_pb.FilerConf{}
  158. fc.rules.Walk(func(key []byte, value interface{}) bool {
  159. pathConf := value.(*filer_pb.FilerConf_PathConf)
  160. m.Locations = append(m.Locations, pathConf)
  161. return true
  162. })
  163. return m
  164. }
  165. func (fc *FilerConf) ToText(writer io.Writer) error {
  166. return ProtoToText(writer, fc.ToProto())
  167. }