2026-01-29 19:35:15 +00:00
|
|
|
package handler
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"fmt"
|
|
|
|
|
"io"
|
|
|
|
|
"net/http"
|
|
|
|
|
"regexp"
|
|
|
|
|
"strings"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
2026-03-18 10:59:29 +00:00
|
|
|
dockerHubRegistry = "https://registry-1.docker.io"
|
|
|
|
|
blobMatchCount = 3 // full match + name + digest
|
|
|
|
|
manifestMatchCount = 3 // full match + name + reference
|
|
|
|
|
tagsListMatchCount = 2 // full match + name
|
2026-01-29 19:35:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ContainerHandler handles OCI/Docker container registry protocol requests.
|
|
|
|
|
// It implements the OCI Distribution Spec for pulling images.
|
|
|
|
|
// Reference: https://github.com/opencontainers/distribution-spec/blob/main/spec.md
|
|
|
|
|
type ContainerHandler struct {
|
|
|
|
|
proxy *Proxy
|
|
|
|
|
registryURL string
|
|
|
|
|
proxyURL string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NewContainerHandler creates a new container registry protocol handler.
|
|
|
|
|
func NewContainerHandler(proxy *Proxy, proxyURL string) *ContainerHandler {
|
|
|
|
|
return &ContainerHandler{
|
|
|
|
|
proxy: proxy,
|
|
|
|
|
registryURL: dockerHubRegistry,
|
|
|
|
|
proxyURL: strings.TrimSuffix(proxyURL, "/"),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Routes returns the HTTP handler for container registry requests.
|
|
|
|
|
// Mount this at /v2 on your router.
|
|
|
|
|
func (h *ContainerHandler) Routes() http.Handler {
|
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
path := strings.TrimPrefix(r.URL.Path, "/")
|
|
|
|
|
|
|
|
|
|
// Set standard Docker registry header on all responses
|
|
|
|
|
w.Header().Set("Docker-Distribution-Api-Version", "registry/2.0")
|
|
|
|
|
|
|
|
|
|
// Handle different endpoints
|
|
|
|
|
switch {
|
|
|
|
|
case path == "" || path == "/":
|
|
|
|
|
// Version check: GET /v2/
|
|
|
|
|
h.handleVersionCheck(w, r)
|
|
|
|
|
case strings.HasSuffix(path, "/blobs/"+r.URL.Query().Get("digest")) || strings.Contains(path, "/blobs/sha256:"):
|
|
|
|
|
// Blob download: GET /v2/{name}/blobs/{digest}
|
|
|
|
|
h.handleBlobDownload(w, r, path)
|
|
|
|
|
case strings.Contains(path, "/manifests/"):
|
|
|
|
|
// Manifest: GET /v2/{name}/manifests/{reference}
|
|
|
|
|
h.handleManifest(w, r, path)
|
|
|
|
|
case strings.Contains(path, "/tags/list"):
|
|
|
|
|
// Tags list: GET /v2/{name}/tags/list
|
|
|
|
|
h.handleTagsList(w, r, path)
|
|
|
|
|
default:
|
|
|
|
|
http.Error(w, "not found", http.StatusNotFound)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleVersionCheck responds to the /v2/ endpoint.
|
|
|
|
|
// This is used by clients to verify the registry supports the v2 API.
|
|
|
|
|
func (h *ContainerHandler) handleVersionCheck(w http.ResponseWriter, _ *http.Request) {
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleBlobDownload fetches and caches container layer blobs.
|
|
|
|
|
// Path format: {name}/blobs/{digest}
|
|
|
|
|
// Example: library/nginx/blobs/sha256:abc123...
|
|
|
|
|
func (h *ContainerHandler) handleBlobDownload(w http.ResponseWriter, r *http.Request, path string) {
|
|
|
|
|
if r.Method != http.MethodGet && r.Method != http.MethodHead {
|
|
|
|
|
http.Error(w, "method not allowed", http.StatusMethodNotAllowed)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name, digest := h.parseBlobPath(path)
|
|
|
|
|
if name == "" || digest == "" {
|
|
|
|
|
h.containerError(w, http.StatusBadRequest, "BLOB_UNKNOWN", "invalid blob path")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h.proxy.Logger.Info("container blob request", "name", name, "digest", digest)
|
|
|
|
|
|
2026-07-13 16:24:36 -07:00
|
|
|
filename := digest
|
|
|
|
|
cached, err := h.proxy.GetCachedArtifact(r.Context(), "oci", name, digest, filename)
|
2026-01-29 19:35:15 +00:00
|
|
|
if err != nil {
|
2026-07-13 16:24:36 -07:00
|
|
|
h.proxy.Logger.Error("failed to check blob cache", "error", err)
|
|
|
|
|
h.containerError(w, http.StatusInternalServerError, "INTERNAL_ERROR", "failed to check blob cache")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if cached != nil {
|
|
|
|
|
w.Header().Set("Docker-Content-Digest", digest)
|
|
|
|
|
w.Header().Set("Content-Type", "application/octet-stream")
|
|
|
|
|
if r.Method == http.MethodHead {
|
|
|
|
|
serveArtifactHead(w, cached)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
ServeArtifact(w, cached)
|
2026-01-29 19:35:15 +00:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// For HEAD requests, just proxy to upstream
|
|
|
|
|
if r.Method == http.MethodHead {
|
2026-07-13 16:24:36 -07:00
|
|
|
h.proxyBlobHead(w, r, name, digest)
|
2026-01-29 19:35:15 +00:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-13 16:24:36 -07:00
|
|
|
// Try to get from cache, or fetch from the authentication-aware upstream client.
|
|
|
|
|
result, err := h.proxy.GetOrFetchArtifactFromURL(
|
2026-01-29 19:35:15 +00:00
|
|
|
r.Context(),
|
|
|
|
|
"oci",
|
|
|
|
|
name,
|
|
|
|
|
digest, // use digest as version
|
|
|
|
|
filename,
|
|
|
|
|
fmt.Sprintf("%s/v2/%s/blobs/%s", h.registryURL, name, digest),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
2026-04-01 15:22:39 +01:00
|
|
|
h.proxy.Logger.Error("failed to fetch blob", "error", err)
|
|
|
|
|
h.containerError(w, http.StatusBadGateway, "BLOB_UNKNOWN", "failed to fetch blob")
|
2026-01-29 19:35:15 +00:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w.Header().Set("Docker-Content-Digest", digest)
|
|
|
|
|
w.Header().Set("Content-Type", "application/octet-stream")
|
|
|
|
|
ServeArtifact(w, result)
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-13 16:24:36 -07:00
|
|
|
func serveArtifactHead(w http.ResponseWriter, result *CacheResult) {
|
2026-07-13 17:20:27 -07:00
|
|
|
if result.RedirectURL != "" {
|
|
|
|
|
if result.Hash != "" {
|
|
|
|
|
w.Header().Set("ETag", fmt.Sprintf(`"%s"`, result.Hash))
|
|
|
|
|
}
|
|
|
|
|
w.Header().Set("Location", result.RedirectURL)
|
|
|
|
|
w.WriteHeader(http.StatusFound)
|
|
|
|
|
return
|
|
|
|
|
}
|
2026-07-13 16:24:36 -07:00
|
|
|
if result.Reader != nil {
|
|
|
|
|
_ = result.Reader.Close()
|
|
|
|
|
}
|
|
|
|
|
if result.ContentType != "" {
|
|
|
|
|
w.Header().Set("Content-Type", result.ContentType)
|
|
|
|
|
}
|
|
|
|
|
if result.Size >= 0 {
|
|
|
|
|
w.Header().Set("Content-Length", fmt.Sprintf("%d", result.Size))
|
|
|
|
|
}
|
|
|
|
|
if result.Hash != "" {
|
|
|
|
|
w.Header().Set("ETag", fmt.Sprintf(`"%s"`, result.Hash))
|
|
|
|
|
}
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleManifest serves immutable manifests from cache and revalidates mutable tags.
|
2026-01-29 19:35:15 +00:00
|
|
|
// Path format: {name}/manifests/{reference}
|
|
|
|
|
func (h *ContainerHandler) handleManifest(w http.ResponseWriter, r *http.Request, path string) {
|
|
|
|
|
if r.Method != http.MethodGet && r.Method != http.MethodHead {
|
|
|
|
|
http.Error(w, "method not allowed", http.StatusMethodNotAllowed)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name, reference := h.parseManifestPath(path)
|
|
|
|
|
if name == "" || reference == "" {
|
|
|
|
|
h.containerError(w, http.StatusBadRequest, "MANIFEST_UNKNOWN", "invalid manifest path")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h.proxy.Logger.Info("container manifest request", "name", name, "reference", reference)
|
2026-07-13 16:24:36 -07:00
|
|
|
h.serveManifest(w, r, name, reference)
|
2026-01-29 19:35:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// handleTagsList proxies tag list requests to upstream.
|
|
|
|
|
func (h *ContainerHandler) handleTagsList(w http.ResponseWriter, r *http.Request, path string) {
|
|
|
|
|
if r.Method != http.MethodGet {
|
|
|
|
|
http.Error(w, "method not allowed", http.StatusMethodNotAllowed)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name := h.parseTagsListPath(path)
|
|
|
|
|
if name == "" {
|
|
|
|
|
h.containerError(w, http.StatusBadRequest, "NAME_UNKNOWN", "invalid repository name")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
upstreamURL := fmt.Sprintf("%s/v2/%s/tags/list", h.registryURL, name)
|
|
|
|
|
if r.URL.RawQuery != "" {
|
|
|
|
|
upstreamURL += "?" + r.URL.RawQuery
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(r.Context(), http.MethodGet, upstreamURL, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
h.containerError(w, http.StatusInternalServerError, "INTERNAL_ERROR", "failed to create request")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-13 07:44:11 +00:00
|
|
|
resp, err := h.proxy.HTTPClient.Do(req)
|
2026-01-29 19:35:15 +00:00
|
|
|
if err != nil {
|
|
|
|
|
h.containerError(w, http.StatusBadGateway, "INTERNAL_ERROR", "failed to fetch from upstream")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
|
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
w.WriteHeader(resp.StatusCode)
|
|
|
|
|
_, _ = io.Copy(w, resp.Body)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// proxyBlobHead handles HEAD requests for blobs.
|
2026-07-13 16:24:36 -07:00
|
|
|
func (h *ContainerHandler) proxyBlobHead(w http.ResponseWriter, r *http.Request, name, digest string) {
|
2026-01-29 19:35:15 +00:00
|
|
|
upstreamURL := fmt.Sprintf("%s/v2/%s/blobs/%s", h.registryURL, name, digest)
|
|
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(r.Context(), http.MethodHead, upstreamURL, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
h.containerError(w, http.StatusInternalServerError, "INTERNAL_ERROR", "failed to create request")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-13 07:44:11 +00:00
|
|
|
resp, err := h.proxy.HTTPClient.Do(req)
|
2026-01-29 19:35:15 +00:00
|
|
|
if err != nil {
|
|
|
|
|
h.containerError(w, http.StatusBadGateway, "INTERNAL_ERROR", "failed to fetch from upstream")
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
defer func() { _ = resp.Body.Close() }()
|
|
|
|
|
|
|
|
|
|
for _, header := range []string{"Content-Type", "Content-Length", "Docker-Content-Digest"} {
|
|
|
|
|
if v := resp.Header.Get(header); v != "" {
|
|
|
|
|
w.Header().Set(header, v)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
w.WriteHeader(resp.StatusCode)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// containerError writes an OCI-compliant error response.
|
|
|
|
|
func (h *ContainerHandler) containerError(w http.ResponseWriter, status int, code, message string) {
|
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
|
w.WriteHeader(status)
|
|
|
|
|
_ = json.NewEncoder(w).Encode(map[string]any{
|
|
|
|
|
"errors": []map[string]string{
|
|
|
|
|
{"code": code, "message": message},
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// blobPathPattern matches blob paths: {name}/blobs/{digest}
|
|
|
|
|
var blobPathPattern = regexp.MustCompile(`^(.+)/blobs/(sha256:[a-f0-9]+)$`)
|
|
|
|
|
|
|
|
|
|
// parseBlobPath extracts repository name and digest from a blob path.
|
|
|
|
|
func (h *ContainerHandler) parseBlobPath(path string) (name, digest string) {
|
|
|
|
|
matches := blobPathPattern.FindStringSubmatch(path)
|
2026-03-18 10:59:29 +00:00
|
|
|
if len(matches) != blobMatchCount {
|
2026-01-29 19:35:15 +00:00
|
|
|
return "", ""
|
|
|
|
|
}
|
|
|
|
|
return matches[1], matches[2]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// manifestPathPattern matches manifest paths: {name}/manifests/{reference}
|
|
|
|
|
var manifestPathPattern = regexp.MustCompile(`^(.+)/manifests/(.+)$`)
|
|
|
|
|
|
|
|
|
|
// parseManifestPath extracts repository name and reference from a manifest path.
|
|
|
|
|
func (h *ContainerHandler) parseManifestPath(path string) (name, reference string) {
|
|
|
|
|
matches := manifestPathPattern.FindStringSubmatch(path)
|
2026-03-18 10:59:29 +00:00
|
|
|
if len(matches) != manifestMatchCount {
|
2026-01-29 19:35:15 +00:00
|
|
|
return "", ""
|
|
|
|
|
}
|
|
|
|
|
return matches[1], matches[2]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// tagsListPathPattern matches tags list paths: {name}/tags/list
|
|
|
|
|
var tagsListPathPattern = regexp.MustCompile(`^(.+)/tags/list$`)
|
|
|
|
|
|
|
|
|
|
// parseTagsListPath extracts repository name from a tags list path.
|
|
|
|
|
func (h *ContainerHandler) parseTagsListPath(path string) string {
|
|
|
|
|
matches := tagsListPathPattern.FindStringSubmatch(path)
|
2026-03-18 10:59:29 +00:00
|
|
|
if len(matches) != tagsListMatchCount {
|
2026-01-29 19:35:15 +00:00
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
return matches[1]
|
|
|
|
|
}
|