2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2012-06-29 07:53:47 +00:00
|
|
|
"encoding/hex"
|
2012-09-25 22:37:13 +00:00
|
|
|
"errors"
|
2012-09-21 04:03:40 +00:00
|
|
|
"fmt"
|
2011-12-19 05:59:37 +00:00
|
|
|
"io"
|
2011-12-16 14:51:26 +00:00
|
|
|
"io/ioutil"
|
2012-07-30 08:37:10 +00:00
|
|
|
"mime"
|
2012-06-29 07:53:47 +00:00
|
|
|
"net/http"
|
2011-12-24 08:40:56 +00:00
|
|
|
"os"
|
2012-07-16 07:41:39 +00:00
|
|
|
"pkg/util"
|
2012-07-16 17:15:16 +00:00
|
|
|
"strconv"
|
2011-12-16 14:51:26 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
type Needle struct {
|
2011-12-20 09:00:01 +00:00
|
|
|
Cookie uint32 "random number to mitigate brute force lookups"
|
2012-08-24 06:06:15 +00:00
|
|
|
Id uint64 "needle id"
|
2011-12-20 09:00:01 +00:00
|
|
|
Size uint32 "Data size"
|
|
|
|
Data []byte "The actual file data"
|
2012-09-25 22:37:13 +00:00
|
|
|
Checksum CRC "CRC32 to check integrity"
|
2011-12-20 09:00:01 +00:00
|
|
|
Padding []byte "Aligned to 8 bytes"
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2012-09-21 04:03:40 +00:00
|
|
|
func NewNeedle(r *http.Request) (n *Needle, fname string, e error) {
|
2012-06-29 07:53:47 +00:00
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
n = new(Needle)
|
|
|
|
form, fe := r.MultipartReader()
|
|
|
|
if fe != nil {
|
2012-09-21 04:03:40 +00:00
|
|
|
fmt.Println("MultipartReader [ERROR]", fe)
|
2012-07-03 06:46:26 +00:00
|
|
|
e = fe
|
|
|
|
return
|
2011-12-19 05:59:37 +00:00
|
|
|
}
|
|
|
|
part, _ := form.NextPart()
|
2012-09-21 04:03:40 +00:00
|
|
|
fname = part.FileName()
|
2012-07-30 08:37:10 +00:00
|
|
|
data, _ := ioutil.ReadAll(part)
|
|
|
|
//log.Println("uploading file " + part.FileName())
|
|
|
|
dotIndex := strings.LastIndex(fname, ".")
|
|
|
|
if dotIndex > 0 {
|
|
|
|
ext := fname[dotIndex:]
|
|
|
|
mtype := mime.TypeByExtension(ext)
|
2012-10-23 17:59:40 +00:00
|
|
|
if IsGzippable(ext, mtype) {
|
2012-07-30 08:37:10 +00:00
|
|
|
data = GzipData(data)
|
|
|
|
}
|
|
|
|
}
|
2011-12-19 05:59:37 +00:00
|
|
|
n.Data = data
|
2012-09-25 22:37:13 +00:00
|
|
|
n.Checksum = NewCRC(data)
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2012-06-29 07:53:47 +00:00
|
|
|
commaSep := strings.LastIndex(r.URL.Path, ",")
|
2011-12-22 04:04:47 +00:00
|
|
|
dotSep := strings.LastIndex(r.URL.Path, ".")
|
|
|
|
fid := r.URL.Path[commaSep+1:]
|
|
|
|
if dotSep > 0 {
|
2012-06-29 07:53:47 +00:00
|
|
|
fid = r.URL.Path[commaSep+1 : dotSep]
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
n.ParsePath(fid)
|
2011-12-19 05:59:37 +00:00
|
|
|
|
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
func (n *Needle) ParsePath(fid string) {
|
|
|
|
length := len(fid)
|
|
|
|
if length <= 8 {
|
2012-07-16 07:41:39 +00:00
|
|
|
if length > 0 {
|
2012-08-24 08:15:27 +00:00
|
|
|
println("Invalid fid", fid, "length", length)
|
2012-07-16 07:41:39 +00:00
|
|
|
}
|
2011-12-20 09:00:01 +00:00
|
|
|
return
|
|
|
|
}
|
2012-07-16 17:15:16 +00:00
|
|
|
delta := ""
|
|
|
|
deltaIndex := strings.LastIndex(fid, "_")
|
|
|
|
if deltaIndex > 0 {
|
|
|
|
fid, delta = fid[0:deltaIndex], fid[deltaIndex+1:]
|
|
|
|
}
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id, n.Cookie = ParseKeyHash(fid)
|
2012-07-16 17:15:16 +00:00
|
|
|
if delta != "" {
|
|
|
|
d, e := strconv.ParseUint(delta, 10, 64)
|
|
|
|
if e == nil {
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id += d
|
2012-07-16 17:15:16 +00:00
|
|
|
}
|
|
|
|
}
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
func (n *Needle) Append(w io.Writer) uint32 {
|
2011-12-20 02:34:53 +00:00
|
|
|
header := make([]byte, 16)
|
2012-06-29 07:53:47 +00:00
|
|
|
util.Uint32toBytes(header[0:4], n.Cookie)
|
2012-08-24 06:06:15 +00:00
|
|
|
util.Uint64toBytes(header[4:12], n.Id)
|
2011-12-19 05:59:37 +00:00
|
|
|
n.Size = uint32(len(n.Data))
|
2012-06-29 07:53:47 +00:00
|
|
|
util.Uint32toBytes(header[12:16], n.Size)
|
2011-12-19 05:59:37 +00:00
|
|
|
w.Write(header)
|
|
|
|
w.Write(n.Data)
|
2011-12-20 02:34:53 +00:00
|
|
|
rest := 8 - ((n.Size + 16 + 4) % 8)
|
2012-09-25 22:37:13 +00:00
|
|
|
util.Uint32toBytes(header[0:4], n.Checksum.Value())
|
2011-12-19 05:59:37 +00:00
|
|
|
w.Write(header[0 : rest+4])
|
2011-12-24 01:25:22 +00:00
|
|
|
return n.Size
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
func (n *Needle) Read(r io.Reader, size uint32) (int, error) {
|
2011-12-20 02:34:53 +00:00
|
|
|
bytes := make([]byte, size+16+4)
|
2011-12-24 08:40:56 +00:00
|
|
|
ret, e := r.Read(bytes)
|
2012-06-29 07:53:47 +00:00
|
|
|
n.Cookie = util.BytesToUint32(bytes[0:4])
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id = util.BytesToUint64(bytes[4:12])
|
2012-06-29 07:53:47 +00:00
|
|
|
n.Size = util.BytesToUint32(bytes[12:16])
|
2011-12-20 02:34:53 +00:00
|
|
|
n.Data = bytes[16 : 16+size]
|
2012-09-25 22:37:13 +00:00
|
|
|
checksum := util.BytesToUint32(bytes[16+size : 16+size+4])
|
|
|
|
if checksum != NewCRC(n.Data).Value() {
|
|
|
|
return 0, errors.New("CRC error! Data On Disk Corrupted!")
|
|
|
|
}
|
2011-12-24 08:40:56 +00:00
|
|
|
return ret, e
|
|
|
|
}
|
|
|
|
func ReadNeedle(r *os.File) (*Needle, uint32) {
|
2012-06-29 07:53:47 +00:00
|
|
|
n := new(Needle)
|
|
|
|
bytes := make([]byte, 16)
|
|
|
|
count, e := r.Read(bytes)
|
|
|
|
if count <= 0 || e != nil {
|
|
|
|
return nil, 0
|
|
|
|
}
|
|
|
|
n.Cookie = util.BytesToUint32(bytes[0:4])
|
2012-08-24 06:06:15 +00:00
|
|
|
n.Id = util.BytesToUint64(bytes[4:12])
|
2012-06-29 07:53:47 +00:00
|
|
|
n.Size = util.BytesToUint32(bytes[12:16])
|
|
|
|
rest := 8 - ((n.Size + 16 + 4) % 8)
|
2012-11-07 09:51:43 +00:00
|
|
|
return n, n.Size + 4 + rest
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2012-06-29 07:53:47 +00:00
|
|
|
func ParseKeyHash(key_hash_string string) (uint64, uint32) {
|
|
|
|
key_hash_bytes, khe := hex.DecodeString(key_hash_string)
|
|
|
|
key_hash_len := len(key_hash_bytes)
|
|
|
|
if khe != nil || key_hash_len <= 4 {
|
2012-08-24 08:15:27 +00:00
|
|
|
println("Invalid key_hash", key_hash_string, "length:", key_hash_len, "error", khe)
|
2012-06-29 07:53:47 +00:00
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
key := util.BytesToUint64(key_hash_bytes[0 : key_hash_len-4])
|
|
|
|
hash := util.BytesToUint32(key_hash_bytes[key_hash_len-4 : key_hash_len])
|
|
|
|
return key, hash
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|