-
Notifications
You must be signed in to change notification settings - Fork 137
/
client.go
209 lines (177 loc) · 5.2 KB
/
client.go
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
//
// Copyright 2021 The Sigstore Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package api
import (
"bytes"
"encoding/base64"
"encoding/json"
"encoding/pem"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"path"
"time"
)
type CertificateResponse struct {
CertPEM []byte
ChainPEM []byte
SCT []byte
}
type RootResponse struct {
ChainPEM []byte
}
// SigstorePublicServerURL is the URL of Sigstore's public Fulcio service.
const SigstorePublicServerURL = "https://fulcio.sigstore.dev"
// Client is the interface for accessing the Fulcio API.
type Client interface {
// SigningCert sends the provided CertificateRequest to the /api/v1/signingCert
// endpoint of a Fulcio API, authenticated with the provided bearer token.
SigningCert(cr CertificateRequest, token string) (*CertificateResponse, error)
// RootCert sends a request to get the current CA used by Fulcio.
RootCert() (*RootResponse, error)
}
// ClientOption is a functional option for customizing static signatures.
type ClientOption func(*clientOptions)
// NewClient creates a new Fulcio API client talking to the provided URL.
func NewClient(url *url.URL, opts ...ClientOption) Client {
o := makeOptions(opts...)
return &client{
baseURL: url,
client: &http.Client{
Transport: createRoundTripper(http.DefaultTransport, o),
Timeout: o.Timeout,
},
}
}
type client struct {
baseURL *url.URL
client *http.Client
}
var _ Client = (*client)(nil)
// SigningCert implements Client
func (c *client) SigningCert(cr CertificateRequest, token string) (*CertificateResponse, error) {
// Construct the API endpoint for this handler
endpoint := *c.baseURL
endpoint.Path = path.Join(endpoint.Path, signingCertPath)
b, err := json.Marshal(cr)
if err != nil {
return nil, fmt.Errorf("marshal: %w", err)
}
req, err := http.NewRequest(http.MethodPost, endpoint.String(), bytes.NewBuffer(b))
if err != nil {
return nil, fmt.Errorf("request: %w", err)
}
// Set the authorization header to our OIDC bearer token.
req.Header.Set("Authorization", "Bearer "+token)
// Set the content-type to reflect we're sending JSON.
req.Header.Set("Content-Type", "application/json")
resp, err := c.client.Do(req)
if err != nil {
return nil, fmt.Errorf("client: %w", err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, fmt.Errorf("%s read: %w", endpoint.String(), err)
}
// The API should return a 201 Created on success. If we see anything else,
// then turn the response body into an error.
if resp.StatusCode != http.StatusCreated {
return nil, fmt.Errorf("%s %s returned %s: %q", http.MethodPost, endpoint.String(), resp.Status, body)
}
// Extract the SCT from the response header.
sct, err := base64.StdEncoding.DecodeString(resp.Header.Get("SCT"))
if err != nil {
return nil, fmt.Errorf("decode: %w", err)
}
// Split the cert and the chain
certBlock, chainPem := pem.Decode(body)
if certBlock == nil {
return nil, errors.New("did not find a cert from Fulcio")
}
certPem := pem.EncodeToMemory(certBlock)
return &CertificateResponse{
CertPEM: certPem,
ChainPEM: chainPem,
SCT: sct,
}, nil
}
func (c *client) RootCert() (*RootResponse, error) {
// Construct the API endpoint for this handler
endpoint := *c.baseURL
endpoint.Path = path.Join(endpoint.Path, rootCertPath)
resp, err := http.Get(endpoint.String())
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, errors.New(string(body))
}
return &RootResponse{ChainPEM: body}, nil
}
type clientOptions struct {
UserAgent string
Timeout time.Duration
}
func makeOptions(opts ...ClientOption) *clientOptions {
o := &clientOptions{
UserAgent: "",
}
for _, opt := range opts {
opt(o)
}
return o
}
// WithTimeout sets the request timeout for the client
func WithTimeout(timeout time.Duration) ClientOption {
return func(o *clientOptions) {
o.Timeout = timeout
}
}
// WithUserAgent sets the media type of the signature.
func WithUserAgent(userAgent string) ClientOption {
return func(o *clientOptions) {
o.UserAgent = userAgent
}
}
type roundTripper struct {
http.RoundTripper
UserAgent string
}
// RoundTrip implements `http.RoundTripper`
func (rt *roundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
req.Header.Set("User-Agent", rt.UserAgent)
return rt.RoundTripper.RoundTrip(req)
}
func createRoundTripper(inner http.RoundTripper, o *clientOptions) http.RoundTripper {
if inner == nil {
inner = http.DefaultTransport
}
if o.UserAgent == "" {
// There's nothing to do...
return inner
}
return &roundTripper{
RoundTripper: inner,
UserAgent: o.UserAgent,
}
}