aboutsummaryrefslogtreecommitdiff
path: root/internal/contentenc/file_header.go
blob: 1463773622c82799090378a01cf84af5345d3b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package contentenc

// Per-file header
//
// Format: [ "Version" uint16 big endian ] [ "Id" 16 random bytes ]

import (
	"encoding/binary"
	"fmt"

	"github.com/rfjakob/gocryptfs/internal/cryptocore"
)

const (
	// Current On-Disk-Format version
	CurrentVersion = 2

	HEADER_VERSION_LEN = 2                                  // uint16
	HEADER_ID_LEN      = 16                                 // 128 bit random file id
	HEADER_LEN         = HEADER_VERSION_LEN + HEADER_ID_LEN // Total header length
)

type FileHeader struct {
	Version uint16
	Id      []byte
}

// Pack - serialize fileHeader object
func (h *FileHeader) Pack() []byte {
	if len(h.Id) != HEADER_ID_LEN || h.Version != CurrentVersion {
		panic("FileHeader object not properly initialized")
	}
	buf := make([]byte, HEADER_LEN)
	binary.BigEndian.PutUint16(buf[0:HEADER_VERSION_LEN], h.Version)
	copy(buf[HEADER_VERSION_LEN:], h.Id)
	return buf

}

// ParseHeader - parse "buf" into fileHeader object
func ParseHeader(buf []byte) (*FileHeader, error) {
	if len(buf) != HEADER_LEN {
		return nil, fmt.Errorf("ParseHeader: invalid length: got %d, want %d", len(buf), HEADER_LEN)
	}
	var h FileHeader
	h.Version = binary.BigEndian.Uint16(buf[0:HEADER_VERSION_LEN])
	if h.Version != CurrentVersion {
		return nil, fmt.Errorf("ParseHeader: invalid version: got %d, want %d", h.Version, CurrentVersion)
	}
	h.Id = buf[HEADER_VERSION_LEN:]
	return &h, nil
}

// RandomHeader - create new fileHeader object with random Id
func RandomHeader() *FileHeader {
	var h FileHeader
	h.Version = CurrentVersion
	h.Id = cryptocore.RandBytes(HEADER_ID_LEN)
	return &h
}