-
-
Notifications
You must be signed in to change notification settings - Fork 238
/
Copy pathincus_oidc.go
250 lines (200 loc) · 7.53 KB
/
incus_oidc.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package incus
import (
"context"
"crypto/rand"
"fmt"
"io"
"net/http"
"net/url"
"os"
"os/signal"
"strings"
"syscall"
"time"
"github.com/zitadel/oidc/v3/pkg/client/rp"
httphelper "github.com/zitadel/oidc/v3/pkg/http"
"github.com/zitadel/oidc/v3/pkg/oidc"
"golang.org/x/oauth2"
)
// setupOIDCClient initializes the OIDC (OpenID Connect) client with given tokens if it hasn't been set up already.
// It also assigns the protocol's http client to the oidcClient's httpClient.
func (r *ProtocolIncus) setupOIDCClient(token *oidc.Tokens[*oidc.IDTokenClaims]) {
if r.oidcClient != nil {
return
}
r.oidcClient = newOIDCClient(token)
r.oidcClient.httpClient = r.http
}
// Custom transport that modifies requests to inject the audience field.
type oidcTransport struct {
deviceAuthorizationEndpoint string
audience string
}
// oidcTransport is a custom HTTP transport that injects the audience field into requests directed at the device authorization endpoint.
// RoundTrip is a method of oidcTransport that modifies the request, adds the audience parameter if appropriate, and sends it along.
func (o *oidcTransport) RoundTrip(r *http.Request) (*http.Response, error) {
// Don't modify the request if it's not to the device authorization endpoint, or there are no
// URL parameters which need to be set.
if r.URL.String() != o.deviceAuthorizationEndpoint || len(o.audience) == 0 {
return http.DefaultTransport.RoundTrip(r)
}
err := r.ParseForm()
if err != nil {
return nil, err
}
if o.audience != "" {
r.Form.Add("audience", o.audience)
}
// Update the body with the new URL parameters.
body := r.Form.Encode()
r.Body = io.NopCloser(strings.NewReader(body))
r.ContentLength = int64(len(body))
return http.DefaultTransport.RoundTrip(r)
}
var errRefreshAccessToken = fmt.Errorf("Failed refreshing access token")
var oidcScopes = []string{oidc.ScopeOpenID, oidc.ScopeOfflineAccess, oidc.ScopeEmail}
type oidcClient struct {
httpClient *http.Client
oidcTransport *oidcTransport
tokens *oidc.Tokens[*oidc.IDTokenClaims]
}
// oidcClient is a structure encapsulating an HTTP client, OIDC transport, and a token for OpenID Connect (OIDC) operations.
// newOIDCClient constructs a new oidcClient, ensuring the token field is non-nil to prevent panics during authentication.
func newOIDCClient(tokens *oidc.Tokens[*oidc.IDTokenClaims]) *oidcClient {
client := oidcClient{
tokens: tokens,
httpClient: &http.Client{},
oidcTransport: &oidcTransport{},
}
// Ensure client.tokens is never nil otherwise authenticate() will panic.
if client.tokens == nil {
client.tokens = &oidc.Tokens[*oidc.IDTokenClaims]{}
}
return &client
}
// getAccessToken returns the Access Token from the oidcClient's tokens, or an empty string if no tokens are present.
func (o *oidcClient) getAccessToken() string {
if o.tokens == nil || o.tokens.Token == nil {
return ""
}
return o.tokens.AccessToken
}
// do function executes an HTTP request using the oidcClient's http client, and manages authorization by refreshing or authenticating as needed.
// If the request fails with an HTTP Unauthorized status, it attempts to refresh the access token, or perform an OIDC authentication if refresh fails.
func (o *oidcClient) do(req *http.Request) (*http.Response, error) {
resp, err := o.httpClient.Do(req)
if err != nil {
return nil, err
}
// Return immediately if the error is not HTTP status unauthorized.
if resp.StatusCode != http.StatusUnauthorized {
return resp, nil
}
issuer := resp.Header.Get("X-Incus-OIDC-issuer")
clientID := resp.Header.Get("X-Incus-OIDC-clientid")
audience := resp.Header.Get("X-Incus-OIDC-audience")
err = o.refresh(issuer, clientID)
if err != nil {
err = o.authenticate(issuer, clientID, audience)
if err != nil {
return nil, err
}
}
// Set the new access token in the header.
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", o.tokens.AccessToken))
resp, err = o.httpClient.Do(req)
if err != nil {
return nil, err
}
return resp, nil
}
// getProvider initializes a new OpenID Connect Relying Party for a given issuer and clientID.
// The function also creates a secure CookieHandler with random encryption and hash keys, and applies a series of configurations on the Relying Party.
func (o *oidcClient) getProvider(issuer string, clientID string) (rp.RelyingParty, error) {
hashKey := make([]byte, 16)
encryptKey := make([]byte, 16)
_, err := rand.Read(hashKey)
if err != nil {
return nil, err
}
_, err = rand.Read(encryptKey)
if err != nil {
return nil, err
}
cookieHandler := httphelper.NewCookieHandler(hashKey, encryptKey, httphelper.WithUnsecure())
options := []rp.Option{
rp.WithCookieHandler(cookieHandler),
rp.WithVerifierOpts(rp.WithIssuedAtOffset(5 * time.Second)),
rp.WithPKCE(cookieHandler),
rp.WithHTTPClient(o.httpClient),
}
provider, err := rp.NewRelyingPartyOIDC(context.TODO(), issuer, clientID, "", "", oidcScopes, options...)
if err != nil {
return nil, err
}
return provider, nil
}
// refresh attempts to refresh the OpenID Connect access token for the client using the refresh token.
// If no token is present or the refresh token is empty, it returns an error. If successful, it updates the access token and other relevant token fields.
func (o *oidcClient) refresh(issuer string, clientID string) error {
if o.tokens.Token == nil || o.tokens.RefreshToken == "" {
return errRefreshAccessToken
}
provider, err := o.getProvider(issuer, clientID)
if err != nil {
return errRefreshAccessToken
}
oauthTokens, err := rp.RefreshTokens[*oidc.IDTokenClaims](context.TODO(), provider, o.tokens.RefreshToken, "", "")
if err != nil {
return errRefreshAccessToken
}
o.tokens.Token.AccessToken = oauthTokens.AccessToken
o.tokens.TokenType = oauthTokens.TokenType
o.tokens.Expiry = oauthTokens.Expiry
if oauthTokens.RefreshToken != "" {
o.tokens.Token.RefreshToken = oauthTokens.RefreshToken
}
return nil
}
// authenticate initiates the OpenID Connect device flow authentication process for the client.
// It presents a user code for the end user to input in the device that has web access and waits for them to complete the authentication,
// subsequently updating the client's tokens upon successful authentication.
func (o *oidcClient) authenticate(issuer string, clientID string, audience string) error {
// Store the old transport and restore it in the end.
oldTransport := o.httpClient.Transport
o.oidcTransport.audience = audience
o.httpClient.Transport = o.oidcTransport
defer func() {
o.httpClient.Transport = oldTransport
}()
provider, err := o.getProvider(issuer, clientID)
if err != nil {
return err
}
o.oidcTransport.deviceAuthorizationEndpoint = provider.GetDeviceAuthorizationEndpoint()
resp, err := rp.DeviceAuthorization(context.TODO(), oidcScopes, provider, nil)
if err != nil {
return err
}
u, _ := url.Parse(resp.VerificationURIComplete)
fmt.Printf("URL: %s\n", u.String())
fmt.Printf("Code: %s\n\n", resp.UserCode)
_ = openBrowser(u.String())
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGINT)
defer stop()
token, err := rp.DeviceAccessToken(ctx, resp.DeviceCode, time.Duration(resp.Interval)*time.Second, provider)
if err != nil {
return err
}
if o.tokens.Token == nil {
o.tokens.Token = &oauth2.Token{}
}
o.tokens.Expiry = time.Now().Add(time.Duration(token.ExpiresIn))
o.tokens.IDToken = token.IDToken
o.tokens.Token.AccessToken = token.AccessToken
o.tokens.TokenType = token.TokenType
if token.RefreshToken != "" {
o.tokens.Token.RefreshToken = token.RefreshToken
}
return nil
}