filer_copy.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. package command
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/chrislusf/seaweedfs/weed/filer"
  6. "io"
  7. "io/ioutil"
  8. "net/http"
  9. "net/url"
  10. "os"
  11. "path/filepath"
  12. "strconv"
  13. "strings"
  14. "sync"
  15. "time"
  16. "google.golang.org/grpc"
  17. "github.com/chrislusf/seaweedfs/weed/util/grace"
  18. "github.com/chrislusf/seaweedfs/weed/operation"
  19. "github.com/chrislusf/seaweedfs/weed/pb"
  20. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  21. "github.com/chrislusf/seaweedfs/weed/security"
  22. "github.com/chrislusf/seaweedfs/weed/storage/needle"
  23. "github.com/chrislusf/seaweedfs/weed/util"
  24. "github.com/chrislusf/seaweedfs/weed/wdclient"
  25. )
  26. var (
  27. copy CopyOptions
  28. waitGroup sync.WaitGroup
  29. )
  30. type CopyOptions struct {
  31. include *string
  32. replication *string
  33. collection *string
  34. ttl *string
  35. diskType *string
  36. maxMB *int
  37. masterClient *wdclient.MasterClient
  38. concurrenctFiles *int
  39. concurrenctChunks *int
  40. grpcDialOption grpc.DialOption
  41. masters []string
  42. cipher bool
  43. ttlSec int32
  44. checkSize *bool
  45. verbose *bool
  46. }
  47. func init() {
  48. cmdCopy.Run = runCopy // break init cycle
  49. cmdCopy.IsDebug = cmdCopy.Flag.Bool("debug", false, "verbose debug information")
  50. copy.include = cmdCopy.Flag.String("include", "", "pattens of files to copy, e.g., *.pdf, *.html, ab?d.txt, works together with -dir")
  51. copy.replication = cmdCopy.Flag.String("replication", "", "replication type")
  52. copy.collection = cmdCopy.Flag.String("collection", "", "optional collection name")
  53. copy.ttl = cmdCopy.Flag.String("ttl", "", "time to live, e.g.: 1m, 1h, 1d, 1M, 1y")
  54. copy.diskType = cmdCopy.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  55. copy.maxMB = cmdCopy.Flag.Int("maxMB", 4, "split files larger than the limit")
  56. copy.concurrenctFiles = cmdCopy.Flag.Int("c", 8, "concurrent file copy goroutines")
  57. copy.concurrenctChunks = cmdCopy.Flag.Int("concurrentChunks", 8, "concurrent chunk copy goroutines for each file")
  58. copy.checkSize = cmdCopy.Flag.Bool("check.size", false, "copy when the target file size is different from the source file")
  59. copy.verbose = cmdCopy.Flag.Bool("verbose", false, "print out details during copying")
  60. }
  61. var cmdCopy = &Command{
  62. UsageLine: "filer.copy file_or_dir1 [file_or_dir2 file_or_dir3] http://localhost:8888/path/to/a/folder/",
  63. Short: "copy one or a list of files to a filer folder",
  64. Long: `copy one or a list of files, or batch copy one whole folder recursively, to a filer folder
  65. It can copy one or a list of files or folders.
  66. If copying a whole folder recursively:
  67. All files under the folder and subfolders will be copyed.
  68. Optional parameter "-include" allows you to specify the file name patterns.
  69. If "maxMB" is set to a positive number, files larger than it would be split into chunks.
  70. `,
  71. }
  72. func runCopy(cmd *Command, args []string) bool {
  73. util.LoadConfiguration("security", false)
  74. if len(args) <= 1 {
  75. return false
  76. }
  77. filerDestination := args[len(args)-1]
  78. fileOrDirs := args[0 : len(args)-1]
  79. filerUrl, err := url.Parse(filerDestination)
  80. if err != nil {
  81. fmt.Printf("The last argument should be a URL on filer: %v\n", err)
  82. return false
  83. }
  84. urlPath := filerUrl.Path
  85. if !strings.HasSuffix(urlPath, "/") {
  86. fmt.Printf("The last argument should be a folder and end with \"/\"\n")
  87. return false
  88. }
  89. if filerUrl.Port() == "" {
  90. fmt.Printf("The filer port should be specified.\n")
  91. return false
  92. }
  93. filerPort, parseErr := strconv.ParseUint(filerUrl.Port(), 10, 64)
  94. if parseErr != nil {
  95. fmt.Printf("The filer port parse error: %v\n", parseErr)
  96. return false
  97. }
  98. filerGrpcPort := filerPort + 10000
  99. filerGrpcAddress := fmt.Sprintf("%s:%d", filerUrl.Hostname(), filerGrpcPort)
  100. copy.grpcDialOption = security.LoadClientTLS(util.GetViper(), "grpc.client")
  101. masters, collection, replication, dirBuckets, maxMB, cipher, err := readFilerConfiguration(copy.grpcDialOption, filerGrpcAddress)
  102. if err != nil {
  103. fmt.Printf("read from filer %s: %v\n", filerGrpcAddress, err)
  104. return false
  105. }
  106. if strings.HasPrefix(urlPath, dirBuckets+"/") {
  107. restPath := urlPath[len(dirBuckets)+1:]
  108. if strings.Index(restPath, "/") > 0 {
  109. expectedBucket := restPath[:strings.Index(restPath, "/")]
  110. if *copy.collection == "" {
  111. *copy.collection = expectedBucket
  112. } else if *copy.collection != expectedBucket {
  113. fmt.Printf("destination %s uses collection \"%s\": unexpected collection \"%v\"\n", urlPath, expectedBucket, *copy.collection)
  114. return true
  115. }
  116. }
  117. }
  118. if *copy.collection == "" {
  119. *copy.collection = collection
  120. }
  121. if *copy.replication == "" {
  122. *copy.replication = replication
  123. }
  124. if *copy.maxMB == 0 {
  125. *copy.maxMB = int(maxMB)
  126. }
  127. copy.masters = masters
  128. copy.cipher = cipher
  129. ttl, err := needle.ReadTTL(*copy.ttl)
  130. if err != nil {
  131. fmt.Printf("parsing ttl %s: %v\n", *copy.ttl, err)
  132. return false
  133. }
  134. copy.ttlSec = int32(ttl.Minutes()) * 60
  135. if *cmdCopy.IsDebug {
  136. grace.SetupProfiling("filer.copy.cpu.pprof", "filer.copy.mem.pprof")
  137. }
  138. fileCopyTaskChan := make(chan FileCopyTask, *copy.concurrenctFiles)
  139. go func() {
  140. defer close(fileCopyTaskChan)
  141. for _, fileOrDir := range fileOrDirs {
  142. if err := genFileCopyTask(fileOrDir, urlPath, fileCopyTaskChan); err != nil {
  143. fmt.Fprintf(os.Stderr, "genFileCopyTask : %v\n", err)
  144. break
  145. }
  146. }
  147. }()
  148. for i := 0; i < *copy.concurrenctFiles; i++ {
  149. waitGroup.Add(1)
  150. go func() {
  151. defer waitGroup.Done()
  152. worker := FileCopyWorker{
  153. options: &copy,
  154. filerHost: filerUrl.Host,
  155. filerGrpcAddress: filerGrpcAddress,
  156. }
  157. if err := worker.copyFiles(fileCopyTaskChan); err != nil {
  158. fmt.Fprintf(os.Stderr, "copy file error: %v\n", err)
  159. return
  160. }
  161. }()
  162. }
  163. waitGroup.Wait()
  164. return true
  165. }
  166. func readFilerConfiguration(grpcDialOption grpc.DialOption, filerGrpcAddress string) (masters []string, collection, replication string, dirBuckets string, maxMB uint32, cipher bool, err error) {
  167. err = pb.WithGrpcFilerClient(filerGrpcAddress, grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  168. resp, err := client.GetFilerConfiguration(context.Background(), &filer_pb.GetFilerConfigurationRequest{})
  169. if err != nil {
  170. return fmt.Errorf("get filer %s configuration: %v", filerGrpcAddress, err)
  171. }
  172. masters, collection, replication, maxMB = resp.Masters, resp.Collection, resp.Replication, resp.MaxMb
  173. dirBuckets = resp.DirBuckets
  174. cipher = resp.Cipher
  175. return nil
  176. })
  177. return
  178. }
  179. func genFileCopyTask(fileOrDir string, destPath string, fileCopyTaskChan chan FileCopyTask) error {
  180. fi, err := os.Stat(fileOrDir)
  181. if err != nil {
  182. fmt.Fprintf(os.Stderr, "Error: read file %s: %v\n", fileOrDir, err)
  183. return nil
  184. }
  185. mode := fi.Mode()
  186. uid, gid := util.GetFileUidGid(fi)
  187. fileSize := fi.Size()
  188. if mode.IsDir() {
  189. fileSize = 0
  190. }
  191. fileCopyTaskChan <- FileCopyTask{
  192. sourceLocation: fileOrDir,
  193. destinationUrlPath: destPath,
  194. fileSize: fileSize,
  195. fileMode: fi.Mode(),
  196. uid: uid,
  197. gid: gid,
  198. }
  199. if mode.IsDir() {
  200. files, _ := ioutil.ReadDir(fileOrDir)
  201. for _, subFileOrDir := range files {
  202. cleanedDestDirectory := filepath.Clean(destPath + fi.Name())
  203. if err = genFileCopyTask(fileOrDir+"/"+subFileOrDir.Name(), cleanedDestDirectory+"/", fileCopyTaskChan); err != nil {
  204. return err
  205. }
  206. }
  207. }
  208. return nil
  209. }
  210. type FileCopyWorker struct {
  211. options *CopyOptions
  212. filerHost string
  213. filerGrpcAddress string
  214. }
  215. func (worker *FileCopyWorker) copyFiles(fileCopyTaskChan chan FileCopyTask) error {
  216. for task := range fileCopyTaskChan {
  217. if err := worker.doEachCopy(task); err != nil {
  218. return err
  219. }
  220. }
  221. return nil
  222. }
  223. type FileCopyTask struct {
  224. sourceLocation string
  225. destinationUrlPath string
  226. fileSize int64
  227. fileMode os.FileMode
  228. uid uint32
  229. gid uint32
  230. }
  231. func (worker *FileCopyWorker) doEachCopy(task FileCopyTask) error {
  232. f, err := os.Open(task.sourceLocation)
  233. if err != nil {
  234. fmt.Printf("Failed to open file %s: %v\n", task.sourceLocation, err)
  235. if _, ok := err.(*os.PathError); ok {
  236. fmt.Printf("skipping %s\n", task.sourceLocation)
  237. return nil
  238. }
  239. return err
  240. }
  241. defer f.Close()
  242. // this is a regular file
  243. if *worker.options.include != "" {
  244. if ok, _ := filepath.Match(*worker.options.include, filepath.Base(task.sourceLocation)); !ok {
  245. return nil
  246. }
  247. }
  248. if shouldCopy, err := worker.checkExistingFileFirst(task, f); err != nil {
  249. return fmt.Errorf("check existing file: %v", err)
  250. } else if !shouldCopy {
  251. if *worker.options.verbose {
  252. fmt.Printf("skipping copied file: %v\n", f.Name())
  253. }
  254. return nil
  255. }
  256. // find the chunk count
  257. chunkSize := int64(*worker.options.maxMB * 1024 * 1024)
  258. chunkCount := 1
  259. if chunkSize > 0 && task.fileSize > chunkSize {
  260. chunkCount = int(task.fileSize/chunkSize) + 1
  261. }
  262. if chunkCount == 1 {
  263. return worker.uploadFileAsOne(task, f)
  264. }
  265. return worker.uploadFileInChunks(task, f, chunkCount, chunkSize)
  266. }
  267. func (worker *FileCopyWorker) checkExistingFileFirst(task FileCopyTask, f *os.File) (shouldCopy bool, err error) {
  268. shouldCopy = true
  269. if !*worker.options.checkSize {
  270. return
  271. }
  272. fileStat, err := f.Stat()
  273. if err != nil {
  274. shouldCopy = false
  275. return
  276. }
  277. err = pb.WithGrpcFilerClient(worker.filerGrpcAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  278. request := &filer_pb.LookupDirectoryEntryRequest{
  279. Directory: task.destinationUrlPath,
  280. Name: filepath.Base(f.Name()),
  281. }
  282. resp, lookupErr := client.LookupDirectoryEntry(context.Background(), request)
  283. if lookupErr != nil {
  284. // mostly not found error
  285. return nil
  286. }
  287. if fileStat.Size() == int64(filer.FileSize(resp.Entry)) {
  288. shouldCopy = false
  289. }
  290. return nil
  291. })
  292. return
  293. }
  294. func (worker *FileCopyWorker) uploadFileAsOne(task FileCopyTask, f *os.File) error {
  295. // upload the file content
  296. fileName := filepath.Base(f.Name())
  297. var mimeType string
  298. var chunks []*filer_pb.FileChunk
  299. var assignResult *filer_pb.AssignVolumeResponse
  300. var assignError error
  301. if task.fileMode&os.ModeDir == 0 && task.fileSize > 0 {
  302. mimeType = detectMimeType(f)
  303. data, err := ioutil.ReadAll(f)
  304. if err != nil {
  305. return err
  306. }
  307. // assign a volume
  308. err = util.Retry("assignVolume", func() error {
  309. return pb.WithGrpcFilerClient(worker.filerGrpcAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  310. request := &filer_pb.AssignVolumeRequest{
  311. Count: 1,
  312. Replication: *worker.options.replication,
  313. Collection: *worker.options.collection,
  314. TtlSec: worker.options.ttlSec,
  315. DiskType: *worker.options.diskType,
  316. Path: task.destinationUrlPath,
  317. }
  318. assignResult, assignError = client.AssignVolume(context.Background(), request)
  319. if assignError != nil {
  320. return fmt.Errorf("assign volume failure %v: %v", request, assignError)
  321. }
  322. if assignResult.Error != "" {
  323. return fmt.Errorf("assign volume failure %v: %v", request, assignResult.Error)
  324. }
  325. return nil
  326. })
  327. })
  328. if err != nil {
  329. return fmt.Errorf("Failed to assign from %v: %v\n", worker.options.masters, err)
  330. }
  331. targetUrl := "http://" + assignResult.Url + "/" + assignResult.FileId
  332. uploadResult, err := operation.UploadData(targetUrl, fileName, worker.options.cipher, data, false, mimeType, nil, security.EncodedJwt(assignResult.Auth))
  333. if err != nil {
  334. return fmt.Errorf("upload data %v to %s: %v\n", fileName, targetUrl, err)
  335. }
  336. if uploadResult.Error != "" {
  337. return fmt.Errorf("upload %v to %s result: %v\n", fileName, targetUrl, uploadResult.Error)
  338. }
  339. if *worker.options.verbose {
  340. fmt.Printf("uploaded %s to %s\n", fileName, targetUrl)
  341. }
  342. chunks = append(chunks, uploadResult.ToPbFileChunk(assignResult.FileId, 0))
  343. fmt.Printf("copied %s => http://%s%s%s\n", f.Name(), worker.filerHost, task.destinationUrlPath, fileName)
  344. }
  345. if err := pb.WithGrpcFilerClient(worker.filerGrpcAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  346. request := &filer_pb.CreateEntryRequest{
  347. Directory: task.destinationUrlPath,
  348. Entry: &filer_pb.Entry{
  349. Name: fileName,
  350. Attributes: &filer_pb.FuseAttributes{
  351. Crtime: time.Now().Unix(),
  352. Mtime: time.Now().Unix(),
  353. Gid: task.gid,
  354. Uid: task.uid,
  355. FileSize: uint64(task.fileSize),
  356. FileMode: uint32(task.fileMode),
  357. Mime: mimeType,
  358. Replication: *worker.options.replication,
  359. Collection: *worker.options.collection,
  360. TtlSec: worker.options.ttlSec,
  361. },
  362. Chunks: chunks,
  363. },
  364. }
  365. if err := filer_pb.CreateEntry(client, request); err != nil {
  366. return fmt.Errorf("update fh: %v", err)
  367. }
  368. return nil
  369. }); err != nil {
  370. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerHost, task.destinationUrlPath, fileName, err)
  371. }
  372. return nil
  373. }
  374. func (worker *FileCopyWorker) uploadFileInChunks(task FileCopyTask, f *os.File, chunkCount int, chunkSize int64) error {
  375. fileName := filepath.Base(f.Name())
  376. mimeType := detectMimeType(f)
  377. chunksChan := make(chan *filer_pb.FileChunk, chunkCount)
  378. concurrentChunks := make(chan struct{}, *worker.options.concurrenctChunks)
  379. var wg sync.WaitGroup
  380. var uploadError error
  381. var collection, replication string
  382. fmt.Printf("uploading %s in %d chunks ...\n", fileName, chunkCount)
  383. for i := int64(0); i < int64(chunkCount) && uploadError == nil; i++ {
  384. wg.Add(1)
  385. concurrentChunks <- struct{}{}
  386. go func(i int64) {
  387. defer func() {
  388. wg.Done()
  389. <-concurrentChunks
  390. }()
  391. // assign a volume
  392. var assignResult *filer_pb.AssignVolumeResponse
  393. var assignError error
  394. err := util.Retry("assignVolume", func() error {
  395. return pb.WithGrpcFilerClient(worker.filerGrpcAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  396. request := &filer_pb.AssignVolumeRequest{
  397. Count: 1,
  398. Replication: *worker.options.replication,
  399. Collection: *worker.options.collection,
  400. TtlSec: worker.options.ttlSec,
  401. DiskType: *worker.options.diskType,
  402. Path: task.destinationUrlPath + fileName,
  403. }
  404. assignResult, assignError = client.AssignVolume(context.Background(), request)
  405. if assignError != nil {
  406. return fmt.Errorf("assign volume failure %v: %v", request, assignError)
  407. }
  408. if assignResult.Error != "" {
  409. return fmt.Errorf("assign volume failure %v: %v", request, assignResult.Error)
  410. }
  411. return nil
  412. })
  413. })
  414. if err != nil {
  415. fmt.Printf("Failed to assign from %v: %v\n", worker.options.masters, err)
  416. }
  417. targetUrl := "http://" + assignResult.Url + "/" + assignResult.FileId
  418. if collection == "" {
  419. collection = assignResult.Collection
  420. }
  421. if replication == "" {
  422. replication = assignResult.Replication
  423. }
  424. uploadResult, err, _ := operation.Upload(targetUrl, fileName+"-"+strconv.FormatInt(i+1, 10), worker.options.cipher, io.NewSectionReader(f, i*chunkSize, chunkSize), false, "", nil, security.EncodedJwt(assignResult.Auth))
  425. if err != nil {
  426. uploadError = fmt.Errorf("upload data %v to %s: %v\n", fileName, targetUrl, err)
  427. return
  428. }
  429. if uploadResult.Error != "" {
  430. uploadError = fmt.Errorf("upload %v to %s result: %v\n", fileName, targetUrl, uploadResult.Error)
  431. return
  432. }
  433. chunksChan <- uploadResult.ToPbFileChunk(assignResult.FileId, i*chunkSize)
  434. fmt.Printf("uploaded %s-%d to %s [%d,%d)\n", fileName, i+1, targetUrl, i*chunkSize, i*chunkSize+int64(uploadResult.Size))
  435. }(i)
  436. }
  437. wg.Wait()
  438. close(chunksChan)
  439. var chunks []*filer_pb.FileChunk
  440. for chunk := range chunksChan {
  441. chunks = append(chunks, chunk)
  442. }
  443. if uploadError != nil {
  444. var fileIds []string
  445. for _, chunk := range chunks {
  446. fileIds = append(fileIds, chunk.FileId)
  447. }
  448. operation.DeleteFiles(func() string {
  449. return copy.masters[0]
  450. }, false, worker.options.grpcDialOption, fileIds)
  451. return uploadError
  452. }
  453. if err := pb.WithGrpcFilerClient(worker.filerGrpcAddress, worker.options.grpcDialOption, func(client filer_pb.SeaweedFilerClient) error {
  454. request := &filer_pb.CreateEntryRequest{
  455. Directory: task.destinationUrlPath,
  456. Entry: &filer_pb.Entry{
  457. Name: fileName,
  458. Attributes: &filer_pb.FuseAttributes{
  459. Crtime: time.Now().Unix(),
  460. Mtime: time.Now().Unix(),
  461. Gid: task.gid,
  462. Uid: task.uid,
  463. FileSize: uint64(task.fileSize),
  464. FileMode: uint32(task.fileMode),
  465. Mime: mimeType,
  466. Replication: replication,
  467. Collection: collection,
  468. TtlSec: worker.options.ttlSec,
  469. },
  470. Chunks: chunks,
  471. },
  472. }
  473. if err := filer_pb.CreateEntry(client, request); err != nil {
  474. return fmt.Errorf("update fh: %v", err)
  475. }
  476. return nil
  477. }); err != nil {
  478. return fmt.Errorf("upload data %v to http://%s%s%s: %v\n", fileName, worker.filerHost, task.destinationUrlPath, fileName, err)
  479. }
  480. fmt.Printf("copied %s => http://%s%s%s\n", f.Name(), worker.filerHost, task.destinationUrlPath, fileName)
  481. return nil
  482. }
  483. func detectMimeType(f *os.File) string {
  484. head := make([]byte, 512)
  485. f.Seek(0, io.SeekStart)
  486. n, err := f.Read(head)
  487. if err == io.EOF {
  488. return ""
  489. }
  490. if err != nil {
  491. fmt.Printf("read head of %v: %v\n", f.Name(), err)
  492. return ""
  493. }
  494. f.Seek(0, io.SeekStart)
  495. mimeType := http.DetectContentType(head[:n])
  496. if mimeType == "application/octet-stream" {
  497. return ""
  498. }
  499. return mimeType
  500. }