2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2011-12-22 04:04:47 +00:00
|
|
|
"encoding/hex"
|
2011-12-19 05:59:37 +00:00
|
|
|
"io"
|
2011-12-16 14:51:26 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"http"
|
|
|
|
"log"
|
2011-12-24 08:40:56 +00:00
|
|
|
"os"
|
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"
|
|
|
|
Key uint64 "file id"
|
|
|
|
Size uint32 "Data size"
|
|
|
|
Data []byte "The actual file data"
|
|
|
|
Checksum int32 "CRC32 to check integrity"
|
|
|
|
Padding []byte "Aligned to 8 bytes"
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
func NewNeedle(r *http.Request) (n *Needle) {
|
|
|
|
n = new(Needle)
|
|
|
|
form, fe := r.MultipartReader()
|
|
|
|
if fe != nil {
|
|
|
|
log.Fatalf("MultipartReader [ERROR] %s\n", fe)
|
|
|
|
}
|
|
|
|
part, _ := form.NextPart()
|
|
|
|
data, _ := ioutil.ReadAll(part)
|
|
|
|
n.Data = data
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2011-12-22 04:04:47 +00:00
|
|
|
commaSep := strings.LastIndex(r.URL.Path, ",")
|
|
|
|
dotSep := strings.LastIndex(r.URL.Path, ".")
|
|
|
|
fid := r.URL.Path[commaSep+1:]
|
|
|
|
if dotSep > 0 {
|
|
|
|
fid = r.URL.Path[commaSep+1:dotSep]
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
log.Println("Invalid fid", fid, "length", length)
|
2011-12-20 09:00:01 +00:00
|
|
|
return
|
|
|
|
}
|
2011-12-22 04:04:47 +00:00
|
|
|
n.Key, n.Cookie = ParseKeyHash(fid)
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-24 01:25:22 +00:00
|
|
|
func (n *Needle) Append(w io.Writer) (uint32){
|
2011-12-20 02:34:53 +00:00
|
|
|
header := make([]byte, 16)
|
2011-12-20 09:00:01 +00:00
|
|
|
Uint32toBytes(header[0:4], n.Cookie)
|
|
|
|
Uint64toBytes(header[4:12], n.Key)
|
2011-12-19 05:59:37 +00:00
|
|
|
n.Size = uint32(len(n.Data))
|
2011-12-20 09:00:01 +00:00
|
|
|
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)
|
2011-12-20 09:00:01 +00:00
|
|
|
Uint32toBytes(header[0:4], uint32(n.Checksum))
|
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
|
|
|
}
|
2011-12-24 08:40:56 +00:00
|
|
|
func (n *Needle) Read(r io.Reader, size uint32)(int, os.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)
|
2011-12-20 09:00:01 +00:00
|
|
|
n.Cookie = BytesToUint32(bytes[0:4])
|
|
|
|
n.Key = BytesToUint64(bytes[4:12])
|
|
|
|
n.Size = BytesToUint32(bytes[12:16])
|
2011-12-20 02:34:53 +00:00
|
|
|
n.Data = bytes[16 : 16+size]
|
2011-12-20 09:00:01 +00:00
|
|
|
n.Checksum = int32(BytesToUint32(bytes[16+size : 16+size+4]))
|
2011-12-24 08:40:56 +00:00
|
|
|
return ret, e
|
|
|
|
}
|
|
|
|
func ReadNeedle(r *os.File) (*Needle, uint32) {
|
|
|
|
n := new(Needle)
|
|
|
|
bytes := make([]byte, 16)
|
|
|
|
count, e := r.Read(bytes)
|
|
|
|
if count<=0 || e!=nil {
|
|
|
|
return nil, 0
|
|
|
|
}
|
|
|
|
n.Cookie = BytesToUint32(bytes[0:4])
|
|
|
|
n.Key = BytesToUint64(bytes[4:12])
|
|
|
|
n.Size = BytesToUint32(bytes[12:16])
|
|
|
|
rest := 8 - ((n.Size + 16 + 4) % 8)
|
|
|
|
r.Seek(int64(n.Size+4+rest), 1)
|
|
|
|
return n, 16+n.Size+4+rest
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2011-12-22 04:04: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 {
|
|
|
|
log.Println("Invalid key_hash", key_hash_string, "length:", key_hash_len, "error", khe)
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
key := BytesToUint64(key_hash_bytes[0 : key_hash_len-4])
|
|
|
|
hash := BytesToUint32(key_hash_bytes[key_hash_len-4 : key_hash_len])
|
|
|
|
return key, hash
|
|
|
|
}
|