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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
package main
import (
"archive/tar"
"bytes"
"compress/gzip"
"crypto/sha256"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"os"
"time"
)
const ImageContentType string = "application/vnd.docker.container.image.v1+json"
const ManifestContentType string = "application/vnd.docker.distribution.manifest.v2+json"
const LayerContentType string = "application/vnd.docker.image.rootfs.diff.tar.gzip"
const DigestHeader string = "Docker-Content-Digest"
type Element struct {
MediaType string `json:"mediaType"`
Size int `json:"size"`
Digest string `json:"digest"`
}
type Manifest struct {
SchemaVersion int `json:"schemaVersion"`
MediaType string `json:"mediaType"`
Config Element `json:"config"`
Layers []Element `json:"layers"`
}
// A really "dumb" representation of an image, with a data blob (tar.gz image) and its hash as the type expected
// in the manifest.
type Image struct {
Data []byte
TarDigest string
GzipDigest string
}
func main() {
log.Println("Starting quinistry")
img := getImage()
now := time.Now()
config := Config{
Created: now,
Author: "tazjin",
Architecture: "amd64",
Os: "linux",
Config: &ImageConfig{
Cmd: []string{"main"},
Env: []string{"PATH=/"},
},
RootFs: RootFs{
DiffIds: []string{
img.TarDigest,
},
Type: "layers",
},
History: []History{
{
Created: now,
CreatedBy: "quinistry magic",
},
},
}
configJson, _ := json.Marshal(config)
manifest := Manifest{
SchemaVersion: 2,
MediaType: ManifestContentType,
Config: Element{
MediaType: ImageContentType,
Size: len(configJson),
Digest: digest(configJson),
},
Layers: []Element{
{
MediaType: LayerContentType,
Size: len(img.Data),
Digest: img.GzipDigest,
},
},
}
log.Fatal(http.ListenAndServe(":8080", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// Acknowledge that we speak V2
if r.RequestURI == "/v2/" {
logRequest("Acknowleding V2 API", r)
fmt.Fprintln(w)
return
}
// Serve manifest
if r.RequestURI == "/v2/quinistry/manifests/latest" {
logRequest("Serving manifest", r)
w.Header().Add("Content-Type", ManifestContentType)
resp, _ := json.Marshal(manifest)
w.Header().Add(DigestHeader, digest(resp))
w.Write(resp)
return
}
// Serve actual image layer
layerUri := fmt.Sprintf("/v2/quinistry/blobs/%s", img.GzipDigest)
if r.RequestURI == layerUri {
logRequest("Serving image layer blob", r)
w.Header().Add(DigestHeader, img.GzipDigest)
w.Write(img.Data)
return
}
// Serve image config
configUri := fmt.Sprintf("/v2/quinistry/blobs/%s", digest(configJson))
if r.RequestURI == configUri {
logRequest("Serving config", r)
w.Header().Set("Content-Type", ImageContentType)
w.Header().Set(DigestHeader, digest(configJson))
w.Write(configJson)
return
}
log.Printf("Unhandled request: %v\n", *r)
})))
}
func logRequest(msg string, r *http.Request) {
log.Printf("%s: %s %s\n", msg, r.Method, r.RequestURI)
}
func digest(b []byte) string {
hash := sha256.New()
hash.Write(b)
return fmt.Sprintf("sha256:%x", hash.Sum(nil))
}
// Creates an image of the currently running binary (spooky!)
func getImage() *Image {
// Current binary, imagine this is some other output or whatever
path, _ := os.Executable()
// don't care about error! :O
file, _ := ioutil.ReadFile(path)
// First create tar archive
tarBuf := new(bytes.Buffer)
tarW := tar.NewWriter(tarBuf)
hdr := &tar.Header{
Name: "/main",
Mode: 0755,
Size: int64(len(file)),
}
tarW.WriteHeader(hdr)
tarW.Write(file)
if err := tarW.Close(); err != nil {
log.Fatalln(err)
os.Exit(1)
}
tarBytes := tarBuf.Bytes()
// Then GZIP it
zBuf := new(bytes.Buffer)
zw := gzip.NewWriter(zBuf)
zw.Name = "Docker registry fake test"
zw.Write(tarBytes)
if err := zw.Close(); err != nil {
log.Fatal(err)
os.Exit(1)
}
gzipData := zBuf.Bytes()
return &Image{
TarDigest: digest(tarBytes),
GzipDigest: digest(gzipData),
Data: gzipData,
}
}
|