2013-12-02 09:37:36 +00:00
|
|
|
package weed_server
|
|
|
|
|
|
|
|
import (
|
2015-01-08 08:19:32 +00:00
|
|
|
"fmt"
|
2013-12-02 09:37:36 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2019-02-14 08:08:20 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/security"
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/stats"
|
2019-04-19 04:43:36 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
2021-05-06 10:46:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/topology"
|
2013-12-02 09:37:36 +00:00
|
|
|
)
|
|
|
|
|
2014-04-14 06:56:15 +00:00
|
|
|
func (ms *MasterServer) lookupVolumeId(vids []string, collection string) (volumeLocations map[string]operation.LookupResult) {
|
|
|
|
volumeLocations = make(map[string]operation.LookupResult)
|
2014-04-14 06:41:34 +00:00
|
|
|
for _, vid := range vids {
|
|
|
|
commaSep := strings.Index(vid, ",")
|
|
|
|
if commaSep > 0 {
|
|
|
|
vid = vid[0:commaSep]
|
|
|
|
}
|
|
|
|
if _, ok := volumeLocations[vid]; ok {
|
|
|
|
continue
|
|
|
|
}
|
2019-07-28 10:58:13 +00:00
|
|
|
volumeLocations[vid] = ms.findVolumeLocation(collection, vid)
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-14 08:08:20 +00:00
|
|
|
// If "fileId" is provided, this returns the fileId location and a JWT to update or delete the file.
|
|
|
|
// If "volumeId" is provided, this only returns the volumeId location
|
2013-12-02 09:37:36 +00:00
|
|
|
func (ms *MasterServer) dirLookupHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
vid := r.FormValue("volumeId")
|
2019-02-14 08:08:20 +00:00
|
|
|
if vid != "" {
|
|
|
|
// backward compatible
|
|
|
|
commaSep := strings.Index(vid, ",")
|
|
|
|
if commaSep > 0 {
|
|
|
|
vid = vid[0:commaSep]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fileId := r.FormValue("fileId")
|
|
|
|
if fileId != "" {
|
|
|
|
commaSep := strings.Index(fileId, ",")
|
|
|
|
if commaSep > 0 {
|
|
|
|
vid = fileId[0:commaSep]
|
|
|
|
}
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2020-05-13 10:46:38 +00:00
|
|
|
collection := r.FormValue("collection") // optional, but can be faster if too many collections
|
2019-07-28 10:58:13 +00:00
|
|
|
location := ms.findVolumeLocation(collection, vid)
|
2015-01-08 08:19:32 +00:00
|
|
|
httpStatus := http.StatusOK
|
2019-09-29 06:17:37 +00:00
|
|
|
if location.Error != "" || location.Locations == nil {
|
2015-01-08 08:19:32 +00:00
|
|
|
httpStatus = http.StatusNotFound
|
2019-02-14 08:08:20 +00:00
|
|
|
} else {
|
2019-06-06 07:29:02 +00:00
|
|
|
forRead := r.FormValue("read")
|
|
|
|
isRead := forRead == "yes"
|
|
|
|
ms.maybeAddJwtAuthorization(w, fileId, !isRead)
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, httpStatus, location)
|
2014-04-14 06:41:34 +00:00
|
|
|
}
|
|
|
|
|
2019-07-28 10:58:13 +00:00
|
|
|
// findVolumeLocation finds the volume location from master topo if it is leader,
|
|
|
|
// or from master client if not leader
|
2019-09-29 06:17:37 +00:00
|
|
|
func (ms *MasterServer) findVolumeLocation(collection, vid string) operation.LookupResult {
|
2019-07-28 10:58:13 +00:00
|
|
|
var locations []operation.Location
|
|
|
|
var err error
|
|
|
|
if ms.Topo.IsLeader() {
|
|
|
|
volumeId, newVolumeIdErr := needle.NewVolumeId(vid)
|
2019-10-30 07:49:58 +00:00
|
|
|
if newVolumeIdErr != nil {
|
|
|
|
err = fmt.Errorf("Unknown volume id %s", vid)
|
|
|
|
} else {
|
|
|
|
machines := ms.Topo.Lookup(collection, volumeId)
|
|
|
|
for _, loc := range machines {
|
|
|
|
locations = append(locations, operation.Location{Url: loc.Url(), PublicUrl: loc.PublicUrl})
|
|
|
|
}
|
2019-07-28 10:58:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
machines, getVidLocationsErr := ms.MasterClient.GetVidLocations(vid)
|
|
|
|
for _, loc := range machines {
|
|
|
|
locations = append(locations, operation.Location{Url: loc.Url, PublicUrl: loc.PublicUrl})
|
|
|
|
}
|
|
|
|
err = getVidLocationsErr
|
|
|
|
}
|
2020-05-13 10:46:38 +00:00
|
|
|
if len(locations) == 0 && err == nil {
|
|
|
|
err = fmt.Errorf("volume id %s not found", vid)
|
|
|
|
}
|
2019-07-28 10:58:13 +00:00
|
|
|
ret := operation.LookupResult{
|
|
|
|
VolumeId: vid,
|
|
|
|
Locations: locations,
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
ret.Error = err.Error()
|
|
|
|
}
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2013-12-02 09:37:36 +00:00
|
|
|
func (ms *MasterServer) dirAssignHandler(w http.ResponseWriter, r *http.Request) {
|
2014-03-25 20:46:59 +00:00
|
|
|
stats.AssignRequest()
|
2015-04-06 21:17:36 +00:00
|
|
|
requestedCount, e := strconv.ParseUint(r.FormValue("count"), 10, 64)
|
|
|
|
if e != nil || requestedCount == 0 {
|
2014-04-13 08:29:52 +00:00
|
|
|
requestedCount = 1
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
|
2019-11-10 12:11:03 +00:00
|
|
|
writableVolumeCount, e := strconv.Atoi(r.FormValue("writableVolumeCount"))
|
|
|
|
if e != nil {
|
|
|
|
writableVolumeCount = 0
|
|
|
|
}
|
|
|
|
|
2014-04-13 08:29:52 +00:00
|
|
|
option, err := ms.getVolumeGrowOption(r)
|
2013-12-02 09:37:36 +00:00
|
|
|
if err != nil {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotAcceptable, operation.AssignResult{Error: err.Error()})
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-06 10:46:14 +00:00
|
|
|
if ms.shouldVolumeGrow(option) {
|
2020-12-14 03:44:57 +00:00
|
|
|
if ms.Topo.AvailableSpaceFor(option) <= 0 {
|
2021-02-19 03:10:20 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotFound, operation.AssignResult{Error: "No free volumes left for " + option.String()})
|
2013-12-02 09:37:36 +00:00
|
|
|
return
|
2015-03-10 07:20:31 +00:00
|
|
|
}
|
2021-05-06 10:46:14 +00:00
|
|
|
errCh := make(chan error, 1)
|
|
|
|
ms.vgCh <- &topology.VolumeGrowRequest{
|
|
|
|
Option: option,
|
|
|
|
Count: writableVolumeCount,
|
|
|
|
ErrCh: errCh,
|
|
|
|
}
|
|
|
|
if err := <- errCh; err != nil {
|
|
|
|
writeJsonError(w, r, http.StatusInternalServerError, fmt.Errorf("cannot grow volume group! %v", err))
|
|
|
|
return
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-13 08:29:52 +00:00
|
|
|
fid, count, dn, err := ms.Topo.PickForWrite(requestedCount, option)
|
2013-12-02 09:37:36 +00:00
|
|
|
if err == nil {
|
2019-06-06 07:29:02 +00:00
|
|
|
ms.maybeAddJwtAuthorization(w, fid, true)
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusOK, operation.AssignResult{Fid: fid, Url: dn.Url(), PublicUrl: dn.PublicUrl, Count: count})
|
2013-12-02 09:37:36 +00:00
|
|
|
} else {
|
2015-01-08 08:19:32 +00:00
|
|
|
writeJsonQuiet(w, r, http.StatusNotAcceptable, operation.AssignResult{Error: err.Error()})
|
2013-12-02 09:37:36 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-14 08:08:20 +00:00
|
|
|
|
2019-06-06 07:29:02 +00:00
|
|
|
func (ms *MasterServer) maybeAddJwtAuthorization(w http.ResponseWriter, fileId string, isWrite bool) {
|
2021-02-16 23:39:12 +00:00
|
|
|
if fileId == "" {
|
|
|
|
return
|
|
|
|
}
|
2019-06-06 07:29:02 +00:00
|
|
|
var encodedJwt security.EncodedJwt
|
|
|
|
if isWrite {
|
|
|
|
encodedJwt = security.GenJwt(ms.guard.SigningKey, ms.guard.ExpiresAfterSec, fileId)
|
|
|
|
} else {
|
|
|
|
encodedJwt = security.GenJwt(ms.guard.ReadSigningKey, ms.guard.ReadExpiresAfterSec, fileId)
|
|
|
|
}
|
2019-02-14 08:08:20 +00:00
|
|
|
if encodedJwt == "" {
|
|
|
|
return
|
|
|
|
}
|
2019-06-06 07:29:02 +00:00
|
|
|
|
2019-02-14 08:08:20 +00:00
|
|
|
w.Header().Set("Authorization", "BEARER "+string(encodedJwt))
|
|
|
|
}
|