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.

347 lines
14 KiB

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