filer.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. package command
  2. import (
  3. "fmt"
  4. "net"
  5. "net/http"
  6. "os"
  7. "runtime"
  8. "sort"
  9. "strings"
  10. "time"
  11. "google.golang.org/grpc/reflection"
  12. "github.com/seaweedfs/seaweedfs/weed/filer"
  13. "github.com/seaweedfs/seaweedfs/weed/glog"
  14. "github.com/seaweedfs/seaweedfs/weed/pb"
  15. "github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
  16. "github.com/seaweedfs/seaweedfs/weed/security"
  17. weed_server "github.com/seaweedfs/seaweedfs/weed/server"
  18. stats_collect "github.com/seaweedfs/seaweedfs/weed/stats"
  19. "github.com/seaweedfs/seaweedfs/weed/util"
  20. )
  21. var (
  22. f FilerOptions
  23. filerStartS3 *bool
  24. filerS3Options S3Options
  25. filerStartWebDav *bool
  26. filerWebDavOptions WebDavOption
  27. filerStartIam *bool
  28. filerIamOptions IamOptions
  29. )
  30. type FilerOptions struct {
  31. masters *pb.ServerDiscovery
  32. mastersString *string
  33. ip *string
  34. bindIp *string
  35. port *int
  36. portGrpc *int
  37. publicPort *int
  38. filerGroup *string
  39. collection *string
  40. defaultReplicaPlacement *string
  41. disableDirListing *bool
  42. maxMB *int
  43. dirListingLimit *int
  44. dataCenter *string
  45. rack *string
  46. enableNotification *bool
  47. disableHttp *bool
  48. cipher *bool
  49. metricsHttpPort *int
  50. saveToFilerLimit *int
  51. defaultLevelDbDirectory *string
  52. concurrentUploadLimitMB *int
  53. debug *bool
  54. debugPort *int
  55. localSocket *string
  56. showUIDirectoryDelete *bool
  57. downloadMaxMBps *int
  58. diskType *string
  59. }
  60. func init() {
  61. cmdFiler.Run = runFiler // break init cycle
  62. f.mastersString = cmdFiler.Flag.String("master", "localhost:9333", "comma-separated master servers or a single DNS SRV record of at least 1 master server, prepended with dnssrv+")
  63. f.filerGroup = cmdFiler.Flag.String("filerGroup", "", "share metadata with other filers in the same filerGroup")
  64. f.collection = cmdFiler.Flag.String("collection", "", "all data will be stored in this default collection")
  65. f.ip = cmdFiler.Flag.String("ip", util.DetectedHostAddress(), "filer server http listen ip address")
  66. f.bindIp = cmdFiler.Flag.String("ip.bind", "", "ip address to bind to. If empty, default to same as -ip option.")
  67. f.port = cmdFiler.Flag.Int("port", 8888, "filer server http listen port")
  68. f.portGrpc = cmdFiler.Flag.Int("port.grpc", 0, "filer server grpc listen port")
  69. f.publicPort = cmdFiler.Flag.Int("port.readonly", 0, "readonly port opened to public")
  70. f.defaultReplicaPlacement = cmdFiler.Flag.String("defaultReplicaPlacement", "", "default replication type. If not specified, use master setting.")
  71. f.disableDirListing = cmdFiler.Flag.Bool("disableDirListing", false, "turn off directory listing")
  72. f.maxMB = cmdFiler.Flag.Int("maxMB", 4, "split files larger than the limit")
  73. f.dirListingLimit = cmdFiler.Flag.Int("dirListLimit", 100000, "limit sub dir listing size")
  74. f.dataCenter = cmdFiler.Flag.String("dataCenter", "", "prefer to read and write to volumes in this data center")
  75. f.rack = cmdFiler.Flag.String("rack", "", "prefer to write to volumes in this rack")
  76. f.disableHttp = cmdFiler.Flag.Bool("disableHttp", false, "disable http request, only gRpc operations are allowed")
  77. f.cipher = cmdFiler.Flag.Bool("encryptVolumeData", false, "encrypt data on volume servers")
  78. f.metricsHttpPort = cmdFiler.Flag.Int("metricsPort", 0, "Prometheus metrics listen port")
  79. f.saveToFilerLimit = cmdFiler.Flag.Int("saveToFilerLimit", 0, "files smaller than this limit will be saved in filer store")
  80. f.defaultLevelDbDirectory = cmdFiler.Flag.String("defaultStoreDir", ".", "if filer.toml is empty, use an embedded filer store in the directory")
  81. f.concurrentUploadLimitMB = cmdFiler.Flag.Int("concurrentUploadLimitMB", 128, "limit total concurrent upload size")
  82. f.debug = cmdFiler.Flag.Bool("debug", false, "serves runtime profiling data, e.g., http://localhost:<debug.port>/debug/pprof/goroutine?debug=2")
  83. f.debugPort = cmdFiler.Flag.Int("debug.port", 6060, "http port for debugging")
  84. f.localSocket = cmdFiler.Flag.String("localSocket", "", "default to /tmp/seaweedfs-filer-<port>.sock")
  85. f.showUIDirectoryDelete = cmdFiler.Flag.Bool("ui.deleteDir", true, "enable filer UI show delete directory button")
  86. f.downloadMaxMBps = cmdFiler.Flag.Int("downloadMaxMBps", 0, "download max speed for each download request, in MB per second")
  87. f.diskType = cmdFiler.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  88. // start s3 on filer
  89. filerStartS3 = cmdFiler.Flag.Bool("s3", false, "whether to start S3 gateway")
  90. filerS3Options.port = cmdFiler.Flag.Int("s3.port", 8333, "s3 server http listen port")
  91. filerS3Options.portHttps = cmdFiler.Flag.Int("s3.port.https", 0, "s3 server https listen port")
  92. filerS3Options.portGrpc = cmdFiler.Flag.Int("s3.port.grpc", 0, "s3 server grpc listen port")
  93. filerS3Options.domainName = cmdFiler.Flag.String("s3.domainName", "", "suffix of the host name in comma separated list, {bucket}.{domainName}")
  94. filerS3Options.dataCenter = cmdFiler.Flag.String("s3.dataCenter", "", "prefer to read and write to volumes in this data center")
  95. filerS3Options.tlsPrivateKey = cmdFiler.Flag.String("s3.key.file", "", "path to the TLS private key file")
  96. filerS3Options.tlsCertificate = cmdFiler.Flag.String("s3.cert.file", "", "path to the TLS certificate file")
  97. filerS3Options.config = cmdFiler.Flag.String("s3.config", "", "path to the config file")
  98. filerS3Options.auditLogConfig = cmdFiler.Flag.String("s3.auditLogConfig", "", "path to the audit log config file")
  99. filerS3Options.allowEmptyFolder = cmdFiler.Flag.Bool("s3.allowEmptyFolder", true, "allow empty folders")
  100. filerS3Options.allowDeleteBucketNotEmpty = cmdFiler.Flag.Bool("s3.allowDeleteBucketNotEmpty", true, "allow recursive deleting all entries along with bucket")
  101. filerS3Options.localSocket = cmdFiler.Flag.String("s3.localSocket", "", "default to /tmp/seaweedfs-s3-<port>.sock")
  102. // start webdav on filer
  103. filerStartWebDav = cmdFiler.Flag.Bool("webdav", false, "whether to start webdav gateway")
  104. filerWebDavOptions.port = cmdFiler.Flag.Int("webdav.port", 7333, "webdav server http listen port")
  105. filerWebDavOptions.collection = cmdFiler.Flag.String("webdav.collection", "", "collection to create the files")
  106. filerWebDavOptions.replication = cmdFiler.Flag.String("webdav.replication", "", "replication to create the files")
  107. filerWebDavOptions.disk = cmdFiler.Flag.String("webdav.disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  108. filerWebDavOptions.tlsPrivateKey = cmdFiler.Flag.String("webdav.key.file", "", "path to the TLS private key file")
  109. filerWebDavOptions.tlsCertificate = cmdFiler.Flag.String("webdav.cert.file", "", "path to the TLS certificate file")
  110. filerWebDavOptions.cacheDir = cmdFiler.Flag.String("webdav.cacheDir", os.TempDir(), "local cache directory for file chunks")
  111. filerWebDavOptions.cacheSizeMB = cmdFiler.Flag.Int64("webdav.cacheCapacityMB", 0, "local cache capacity in MB")
  112. filerWebDavOptions.filerRootPath = cmdFiler.Flag.String("webdav.filer.path", "/", "use this remote path from filer server")
  113. // start iam on filer
  114. filerStartIam = cmdFiler.Flag.Bool("iam", false, "whether to start IAM service")
  115. filerIamOptions.ip = cmdFiler.Flag.String("iam.ip", *f.ip, "iam server http listen ip address")
  116. filerIamOptions.port = cmdFiler.Flag.Int("iam.port", 8111, "iam server http listen port")
  117. }
  118. func filerLongDesc() string {
  119. desc := `start a file server which accepts REST operation for any files.
  120. //create or overwrite the file, the directories /path/to will be automatically created
  121. POST /path/to/file
  122. //get the file content
  123. GET /path/to/file
  124. //create or overwrite the file, the filename in the multipart request will be used
  125. POST /path/to/
  126. //return a json format subdirectory and files listing
  127. GET /path/to/
  128. The configuration file "filer.toml" is read from ".", "$HOME/.seaweedfs/", "/usr/local/etc/seaweedfs/", or "/etc/seaweedfs/", in that order.
  129. If the "filer.toml" is not found, an embedded filer store will be created under "-defaultStoreDir".
  130. The example filer.toml configuration file can be generated by "weed scaffold -config=filer"
  131. Supported Filer Stores:
  132. `
  133. storeNames := make([]string, len(filer.Stores))
  134. for i, store := range filer.Stores {
  135. storeNames[i] = "\t" + store.GetName()
  136. }
  137. sort.Strings(storeNames)
  138. storeList := strings.Join(storeNames, "\n")
  139. return desc + storeList
  140. }
  141. var cmdFiler = &Command{
  142. UsageLine: "filer -port=8888 -master=<ip:port>[,<ip:port>]*",
  143. Short: "start a file server that points to a master server, or a list of master servers",
  144. Long: filerLongDesc(),
  145. }
  146. func runFiler(cmd *Command, args []string) bool {
  147. if *f.debug {
  148. go http.ListenAndServe(fmt.Sprintf(":%d", *f.debugPort), nil)
  149. }
  150. util.LoadConfiguration("security", false)
  151. go stats_collect.StartMetricsServer(*f.bindIp, *f.metricsHttpPort)
  152. filerAddress := util.JoinHostPort(*f.ip, *f.port)
  153. startDelay := time.Duration(2)
  154. if *filerStartS3 {
  155. filerS3Options.filer = &filerAddress
  156. filerS3Options.bindIp = f.bindIp
  157. filerS3Options.localFilerSocket = f.localSocket
  158. if *f.dataCenter != "" && *filerS3Options.dataCenter == "" {
  159. filerS3Options.dataCenter = f.dataCenter
  160. }
  161. go func(delay time.Duration) {
  162. time.Sleep(delay * time.Second)
  163. filerS3Options.startS3Server()
  164. }(startDelay)
  165. startDelay++
  166. }
  167. if *filerStartWebDav {
  168. filerWebDavOptions.filer = &filerAddress
  169. if *filerWebDavOptions.disk == "" {
  170. filerWebDavOptions.disk = f.diskType
  171. }
  172. go func(delay time.Duration) {
  173. time.Sleep(delay * time.Second)
  174. filerWebDavOptions.startWebDav()
  175. }(startDelay)
  176. startDelay++
  177. }
  178. if *filerStartIam {
  179. filerIamOptions.filer = &filerAddress
  180. filerIamOptions.masters = f.mastersString
  181. go func(delay time.Duration) {
  182. time.Sleep(delay * time.Second)
  183. filerIamOptions.startIamServer()
  184. }(startDelay)
  185. }
  186. f.masters = pb.ServerAddresses(*f.mastersString).ToServiceDiscovery()
  187. f.startFiler()
  188. return true
  189. }
  190. func (fo *FilerOptions) startFiler() {
  191. defaultMux := http.NewServeMux()
  192. publicVolumeMux := defaultMux
  193. if *fo.publicPort != 0 {
  194. publicVolumeMux = http.NewServeMux()
  195. }
  196. if *fo.portGrpc == 0 {
  197. *fo.portGrpc = 10000 + *fo.port
  198. }
  199. if *fo.bindIp == "" {
  200. *fo.bindIp = *fo.ip
  201. }
  202. defaultLevelDbDirectory := util.ResolvePath(*fo.defaultLevelDbDirectory + "/filerldb2")
  203. filerAddress := pb.NewServerAddress(*fo.ip, *fo.port, *fo.portGrpc)
  204. fs, nfs_err := weed_server.NewFilerServer(defaultMux, publicVolumeMux, &weed_server.FilerOption{
  205. Masters: fo.masters,
  206. FilerGroup: *fo.filerGroup,
  207. Collection: *fo.collection,
  208. DefaultReplication: *fo.defaultReplicaPlacement,
  209. DisableDirListing: *fo.disableDirListing,
  210. MaxMB: *fo.maxMB,
  211. DirListingLimit: *fo.dirListingLimit,
  212. DataCenter: *fo.dataCenter,
  213. Rack: *fo.rack,
  214. DefaultLevelDbDir: defaultLevelDbDirectory,
  215. DisableHttp: *fo.disableHttp,
  216. Host: filerAddress,
  217. Cipher: *fo.cipher,
  218. SaveToFilerLimit: int64(*fo.saveToFilerLimit),
  219. ConcurrentUploadLimit: int64(*fo.concurrentUploadLimitMB) * 1024 * 1024,
  220. ShowUIDirectoryDelete: *fo.showUIDirectoryDelete,
  221. DownloadMaxBytesPs: int64(*fo.downloadMaxMBps) * 1024 * 1024,
  222. DiskType: *fo.diskType,
  223. })
  224. if nfs_err != nil {
  225. glog.Fatalf("Filer startup error: %v", nfs_err)
  226. }
  227. if *fo.publicPort != 0 {
  228. publicListeningAddress := util.JoinHostPort(*fo.bindIp, *fo.publicPort)
  229. glog.V(0).Infoln("Start Seaweed filer server", util.Version(), "public at", publicListeningAddress)
  230. publicListener, localPublicListener, e := util.NewIpAndLocalListeners(*fo.bindIp, *fo.publicPort, 0)
  231. if e != nil {
  232. glog.Fatalf("Filer server public listener error on port %d:%v", *fo.publicPort, e)
  233. }
  234. go func() {
  235. if e := http.Serve(publicListener, publicVolumeMux); e != nil {
  236. glog.Fatalf("Volume server fail to serve public: %v", e)
  237. }
  238. }()
  239. if localPublicListener != nil {
  240. go func() {
  241. if e := http.Serve(localPublicListener, publicVolumeMux); e != nil {
  242. glog.Errorf("Volume server fail to serve public: %v", e)
  243. }
  244. }()
  245. }
  246. }
  247. glog.V(0).Infof("Start Seaweed Filer %s at %s:%d", util.Version(), *fo.ip, *fo.port)
  248. filerListener, filerLocalListener, e := util.NewIpAndLocalListeners(
  249. *fo.bindIp, *fo.port,
  250. time.Duration(10)*time.Second,
  251. )
  252. if e != nil {
  253. glog.Fatalf("Filer listener error: %v", e)
  254. }
  255. // starting grpc server
  256. grpcPort := *fo.portGrpc
  257. grpcL, grpcLocalL, err := util.NewIpAndLocalListeners(*fo.bindIp, grpcPort, 0)
  258. if err != nil {
  259. glog.Fatalf("failed to listen on grpc port %d: %v", grpcPort, err)
  260. }
  261. grpcS := pb.NewGrpcServer(security.LoadServerTLS(util.GetViper(), "grpc.filer"))
  262. filer_pb.RegisterSeaweedFilerServer(grpcS, fs)
  263. reflection.Register(grpcS)
  264. if grpcLocalL != nil {
  265. go grpcS.Serve(grpcLocalL)
  266. }
  267. go grpcS.Serve(grpcL)
  268. httpS := &http.Server{Handler: defaultMux}
  269. if runtime.GOOS != "windows" {
  270. localSocket := *fo.localSocket
  271. if localSocket == "" {
  272. localSocket = fmt.Sprintf("/tmp/seaweedfs-filer-%d.sock", *fo.port)
  273. }
  274. if err := os.Remove(localSocket); err != nil && !os.IsNotExist(err) {
  275. glog.Fatalf("Failed to remove %s, error: %s", localSocket, err.Error())
  276. }
  277. go func() {
  278. // start on local unix socket
  279. filerSocketListener, err := net.Listen("unix", localSocket)
  280. if err != nil {
  281. glog.Fatalf("Failed to listen on %s: %v", localSocket, err)
  282. }
  283. httpS.Serve(filerSocketListener)
  284. }()
  285. }
  286. if filerLocalListener != nil {
  287. go func() {
  288. if err := httpS.Serve(filerLocalListener); err != nil {
  289. glog.Errorf("Filer Fail to serve: %v", e)
  290. }
  291. }()
  292. }
  293. if err := httpS.Serve(filerListener); err != nil {
  294. glog.Fatalf("Filer Fail to serve: %v", e)
  295. }
  296. }