filer_server_handlers_write_autochunk.go 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. package weed_server
  2. import (
  3. "context"
  4. "fmt"
  5. "io"
  6. "net/http"
  7. "os"
  8. "path"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "github.com/chrislusf/seaweedfs/weed/filer"
  13. "github.com/chrislusf/seaweedfs/weed/glog"
  14. "github.com/chrislusf/seaweedfs/weed/operation"
  15. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  16. xhttp "github.com/chrislusf/seaweedfs/weed/s3api/http"
  17. "github.com/chrislusf/seaweedfs/weed/stats"
  18. "github.com/chrislusf/seaweedfs/weed/storage/needle"
  19. "github.com/chrislusf/seaweedfs/weed/util"
  20. )
  21. func (fs *FilerServer) autoChunk(ctx context.Context, w http.ResponseWriter, r *http.Request, contentLength int64, so *operation.StorageOption) {
  22. // autoChunking can be set at the command-line level or as a query param. Query param overrides command-line
  23. query := r.URL.Query()
  24. parsedMaxMB, _ := strconv.ParseInt(query.Get("maxMB"), 10, 32)
  25. maxMB := int32(parsedMaxMB)
  26. if maxMB <= 0 && fs.option.MaxMB > 0 {
  27. maxMB = int32(fs.option.MaxMB)
  28. }
  29. chunkSize := 1024 * 1024 * maxMB
  30. stats.FilerRequestCounter.WithLabelValues("chunk").Inc()
  31. start := time.Now()
  32. defer func() {
  33. stats.FilerRequestHistogram.WithLabelValues("chunk").Observe(time.Since(start).Seconds())
  34. }()
  35. var reply *FilerPostResult
  36. var err error
  37. var md5bytes []byte
  38. if r.Method == "POST" {
  39. if r.Header.Get("Content-Type") == "" && strings.HasSuffix(r.URL.Path, "/") {
  40. reply, err = fs.mkdir(ctx, w, r)
  41. } else {
  42. reply, md5bytes, err = fs.doPostAutoChunk(ctx, w, r, chunkSize, contentLength, so)
  43. }
  44. } else {
  45. reply, md5bytes, err = fs.doPutAutoChunk(ctx, w, r, chunkSize, contentLength, so)
  46. }
  47. if err != nil {
  48. if strings.HasPrefix(err.Error(), "read input:") {
  49. writeJsonError(w, r, 499, err)
  50. } else if strings.HasSuffix(err.Error(), "is a file") {
  51. writeJsonError(w, r, http.StatusConflict, err)
  52. } else {
  53. writeJsonError(w, r, http.StatusInternalServerError, err)
  54. }
  55. } else if reply != nil {
  56. if len(md5bytes) > 0 {
  57. md5InBase64 := util.Base64Encode(md5bytes)
  58. w.Header().Set("Content-MD5", md5InBase64)
  59. }
  60. writeJsonQuiet(w, r, http.StatusCreated, reply)
  61. }
  62. }
  63. func (fs *FilerServer) doPostAutoChunk(ctx context.Context, w http.ResponseWriter, r *http.Request, chunkSize int32, contentLength int64, so *operation.StorageOption) (filerResult *FilerPostResult, md5bytes []byte, replyerr error) {
  64. multipartReader, multipartReaderErr := r.MultipartReader()
  65. if multipartReaderErr != nil {
  66. return nil, nil, multipartReaderErr
  67. }
  68. part1, part1Err := multipartReader.NextPart()
  69. if part1Err != nil {
  70. return nil, nil, part1Err
  71. }
  72. fileName := part1.FileName()
  73. if fileName != "" {
  74. fileName = path.Base(fileName)
  75. }
  76. contentType := part1.Header.Get("Content-Type")
  77. if contentType == "application/octet-stream" {
  78. contentType = ""
  79. }
  80. fileChunks, md5Hash, chunkOffset, err, smallContent := fs.uploadReaderToChunks(w, r, part1, chunkSize, fileName, contentType, contentLength, so)
  81. if err != nil {
  82. return nil, nil, err
  83. }
  84. md5bytes = md5Hash.Sum(nil)
  85. filerResult, replyerr = fs.saveMetaData(ctx, r, fileName, contentType, so, md5bytes, fileChunks, chunkOffset, smallContent)
  86. if replyerr != nil {
  87. fs.filer.DeleteChunks(fileChunks)
  88. }
  89. return
  90. }
  91. func (fs *FilerServer) doPutAutoChunk(ctx context.Context, w http.ResponseWriter, r *http.Request, chunkSize int32, contentLength int64, so *operation.StorageOption) (filerResult *FilerPostResult, md5bytes []byte, replyerr error) {
  92. fileName := path.Base(r.URL.Path)
  93. contentType := r.Header.Get("Content-Type")
  94. if contentType == "application/octet-stream" {
  95. contentType = ""
  96. }
  97. fileChunks, md5Hash, chunkOffset, err, smallContent := fs.uploadReaderToChunks(w, r, r.Body, chunkSize, fileName, contentType, contentLength, so)
  98. if err != nil {
  99. return nil, nil, err
  100. }
  101. md5bytes = md5Hash.Sum(nil)
  102. filerResult, replyerr = fs.saveMetaData(ctx, r, fileName, contentType, so, md5bytes, fileChunks, chunkOffset, smallContent)
  103. if replyerr != nil {
  104. fs.filer.DeleteChunks(fileChunks)
  105. }
  106. return
  107. }
  108. func (fs *FilerServer) saveMetaData(ctx context.Context, r *http.Request, fileName string, contentType string, so *operation.StorageOption, md5bytes []byte, fileChunks []*filer_pb.FileChunk, chunkOffset int64, content []byte) (filerResult *FilerPostResult, replyerr error) {
  109. // detect file mode
  110. modeStr := r.URL.Query().Get("mode")
  111. if modeStr == "" {
  112. modeStr = "0660"
  113. }
  114. mode, err := strconv.ParseUint(modeStr, 8, 32)
  115. if err != nil {
  116. glog.Errorf("Invalid mode format: %s, use 0660 by default", modeStr)
  117. mode = 0660
  118. }
  119. // fix the path
  120. path := r.URL.Path
  121. if strings.HasSuffix(path, "/") {
  122. if fileName != "" {
  123. path += fileName
  124. }
  125. } else {
  126. if fileName != "" {
  127. if possibleDirEntry, findDirErr := fs.filer.FindEntry(ctx, util.FullPath(path)); findDirErr == nil {
  128. if possibleDirEntry.IsDirectory() {
  129. path += "/" + fileName
  130. }
  131. }
  132. }
  133. }
  134. var entry *filer.Entry
  135. var mergedChunks []*filer_pb.FileChunk
  136. isAppend := r.URL.Query().Get("op") == "append"
  137. isOffsetWrite := fileChunks[0].Offset > 0
  138. // when it is an append
  139. if isAppend || isOffsetWrite {
  140. existingEntry, findErr := fs.filer.FindEntry(ctx, util.FullPath(path))
  141. if findErr != nil && findErr != filer_pb.ErrNotFound {
  142. glog.V(0).Infof("failing to find %s: %v", path, findErr)
  143. }
  144. entry = existingEntry
  145. }
  146. if entry != nil {
  147. entry.Mtime = time.Now()
  148. entry.Md5 = nil
  149. // adjust chunk offsets
  150. if isAppend {
  151. for _, chunk := range fileChunks {
  152. chunk.Offset += int64(entry.FileSize)
  153. }
  154. entry.FileSize += uint64(chunkOffset)
  155. }
  156. mergedChunks = append(entry.Chunks, fileChunks...)
  157. // TODO
  158. if len(entry.Content) > 0 {
  159. replyerr = fmt.Errorf("append to small file is not supported yet")
  160. return
  161. }
  162. } else {
  163. glog.V(4).Infoln("saving", path)
  164. mergedChunks = fileChunks
  165. entry = &filer.Entry{
  166. FullPath: util.FullPath(path),
  167. Attr: filer.Attr{
  168. Mtime: time.Now(),
  169. Crtime: time.Now(),
  170. Mode: os.FileMode(mode),
  171. Uid: OS_UID,
  172. Gid: OS_GID,
  173. Replication: so.Replication,
  174. Collection: so.Collection,
  175. TtlSec: so.TtlSeconds,
  176. DiskType: so.DiskType,
  177. Mime: contentType,
  178. Md5: md5bytes,
  179. FileSize: uint64(chunkOffset),
  180. },
  181. Content: content,
  182. }
  183. }
  184. // maybe compact entry chunks
  185. mergedChunks, replyerr = filer.MaybeManifestize(fs.saveAsChunk(so), mergedChunks)
  186. if replyerr != nil {
  187. glog.V(0).Infof("manifestize %s: %v", r.RequestURI, replyerr)
  188. return
  189. }
  190. entry.Chunks = mergedChunks
  191. if isOffsetWrite {
  192. entry.Md5 = nil
  193. entry.FileSize = entry.Size()
  194. }
  195. filerResult = &FilerPostResult{
  196. Name: fileName,
  197. Size: int64(entry.FileSize),
  198. }
  199. entry.Extended = SaveAmzMetaData(r, entry.Extended, false)
  200. for k, v := range r.Header {
  201. if len(v) > 0 && len(v[0]) > 0 {
  202. if strings.HasPrefix(k, needle.PairNamePrefix) || k == "Cache-Control" || k == "Expires" || k == "Content-Disposition" {
  203. entry.Extended[k] = []byte(v[0])
  204. }
  205. if k == "Response-Content-Disposition" {
  206. entry.Extended["Content-Disposition"] = []byte(v[0])
  207. }
  208. }
  209. }
  210. if dbErr := fs.filer.CreateEntry(ctx, entry, false, false, nil); dbErr != nil {
  211. replyerr = dbErr
  212. filerResult.Error = dbErr.Error()
  213. glog.V(0).Infof("failing to write %s to filer server : %v", path, dbErr)
  214. }
  215. return filerResult, replyerr
  216. }
  217. func (fs *FilerServer) saveAsChunk(so *operation.StorageOption) filer.SaveDataAsChunkFunctionType {
  218. return func(reader io.Reader, name string, offset int64) (*filer_pb.FileChunk, string, string, error) {
  219. // assign one file id for one chunk
  220. fileId, urlLocation, auth, assignErr := fs.assignNewFileInfo(so)
  221. if assignErr != nil {
  222. return nil, "", "", assignErr
  223. }
  224. // upload the chunk to the volume server
  225. uploadOption := &operation.UploadOption{
  226. UploadUrl: urlLocation,
  227. Filename: name,
  228. Cipher: fs.option.Cipher,
  229. IsInputCompressed: false,
  230. MimeType: "",
  231. PairMap: nil,
  232. Jwt: auth,
  233. }
  234. uploadResult, uploadErr, _ := operation.Upload(reader, uploadOption)
  235. if uploadErr != nil {
  236. return nil, "", "", uploadErr
  237. }
  238. return uploadResult.ToPbFileChunk(fileId, offset), so.Collection, so.Replication, nil
  239. }
  240. }
  241. func (fs *FilerServer) mkdir(ctx context.Context, w http.ResponseWriter, r *http.Request) (filerResult *FilerPostResult, replyerr error) {
  242. // detect file mode
  243. modeStr := r.URL.Query().Get("mode")
  244. if modeStr == "" {
  245. modeStr = "0660"
  246. }
  247. mode, err := strconv.ParseUint(modeStr, 8, 32)
  248. if err != nil {
  249. glog.Errorf("Invalid mode format: %s, use 0660 by default", modeStr)
  250. mode = 0660
  251. }
  252. // fix the path
  253. path := r.URL.Path
  254. if strings.HasSuffix(path, "/") {
  255. path = path[:len(path)-1]
  256. }
  257. existingEntry, err := fs.filer.FindEntry(ctx, util.FullPath(path))
  258. if err == nil && existingEntry != nil {
  259. replyerr = fmt.Errorf("dir %s already exists", path)
  260. return
  261. }
  262. glog.V(4).Infoln("mkdir", path)
  263. entry := &filer.Entry{
  264. FullPath: util.FullPath(path),
  265. Attr: filer.Attr{
  266. Mtime: time.Now(),
  267. Crtime: time.Now(),
  268. Mode: os.FileMode(mode) | os.ModeDir,
  269. Uid: OS_UID,
  270. Gid: OS_GID,
  271. },
  272. }
  273. filerResult = &FilerPostResult{
  274. Name: util.FullPath(path).Name(),
  275. }
  276. if dbErr := fs.filer.CreateEntry(ctx, entry, false, false, nil); dbErr != nil {
  277. replyerr = dbErr
  278. filerResult.Error = dbErr.Error()
  279. glog.V(0).Infof("failing to create dir %s on filer server : %v", path, dbErr)
  280. }
  281. return filerResult, replyerr
  282. }
  283. func SaveAmzMetaData(r *http.Request, existing map[string][]byte, isReplace bool) (metadata map[string][]byte) {
  284. metadata = make(map[string][]byte)
  285. if !isReplace {
  286. for k, v := range existing {
  287. metadata[k] = v
  288. }
  289. }
  290. if sc := r.Header.Get(xhttp.AmzStorageClass); sc != "" {
  291. metadata[xhttp.AmzStorageClass] = []byte(sc)
  292. }
  293. if tags := r.Header.Get(xhttp.AmzObjectTagging); tags != "" {
  294. for _, v := range strings.Split(tags, "&") {
  295. tag := strings.Split(v, "=")
  296. if len(tag) == 2 {
  297. metadata[xhttp.AmzObjectTagging+"-"+tag[0]] = []byte(tag[1])
  298. } else if len(tag) == 1 {
  299. metadata[xhttp.AmzObjectTagging+"-"+tag[0]] = nil
  300. }
  301. }
  302. }
  303. for header, values := range r.Header {
  304. if strings.HasPrefix(header, xhttp.AmzUserMetaPrefix) {
  305. for _, value := range values {
  306. metadata[header] = []byte(value)
  307. }
  308. }
  309. }
  310. return
  311. }