1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
22 "git.arvados.org/arvados.git/lib/controller/rpc"
23 "git.arvados.org/arvados.git/sdk/go/arvados"
24 "git.arvados.org/arvados.git/sdk/go/auth"
25 "git.arvados.org/arvados.git/sdk/go/ctxlog"
26 "git.arvados.org/arvados.git/sdk/go/httpserver"
27 "github.com/coreos/go-oidc"
29 "google.golang.org/api/option"
30 "google.golang.org/api/people/v1"
33 type oidcLoginController struct {
34 Cluster *arvados.Cluster
35 RailsProxy *railsProxy
36 Issuer string // OIDC issuer URL, e.g., "https://accounts.google.com"
39 UseGooglePeopleAPI bool // Use Google People API to look up alternate email addresses
40 EmailClaim string // OpenID claim to use as email address; typically "email"
41 EmailVerifiedClaim string // If non-empty, ensure claim value is true before accepting EmailClaim; typically "email_verified"
42 UsernameClaim string // If non-empty, use as preferred username
44 // override Google People API base URL for testing purposes
45 // (normally empty, set by google pkg to
46 // https://people.googleapis.com/)
47 peopleAPIBasePath string
49 provider *oidc.Provider // initialized by setup()
50 oauth2conf *oauth2.Config // initialized by setup()
51 verifier *oidc.IDTokenVerifier // initialized by setup()
52 mu sync.Mutex // protects setup()
55 // Initialize ctrl.provider and ctrl.oauth2conf.
56 func (ctrl *oidcLoginController) setup() error {
58 defer ctrl.mu.Unlock()
59 if ctrl.provider != nil {
63 redirURL, err := (*url.URL)(&ctrl.Cluster.Services.Controller.ExternalURL).Parse("/" + arvados.EndpointLogin.Path)
65 return fmt.Errorf("error making redirect URL: %s", err)
67 provider, err := oidc.NewProvider(context.Background(), ctrl.Issuer)
71 ctrl.oauth2conf = &oauth2.Config{
72 ClientID: ctrl.ClientID,
73 ClientSecret: ctrl.ClientSecret,
74 Endpoint: provider.Endpoint(),
75 Scopes: []string{oidc.ScopeOpenID, "profile", "email"},
76 RedirectURL: redirURL.String(),
78 ctrl.verifier = provider.Verifier(&oidc.Config{
79 ClientID: ctrl.ClientID,
81 ctrl.provider = provider
85 func (ctrl *oidcLoginController) Logout(ctx context.Context, opts arvados.LogoutOptions) (arvados.LogoutResponse, error) {
86 return noopLogout(ctrl.Cluster, opts)
89 func (ctrl *oidcLoginController) Login(ctx context.Context, opts arvados.LoginOptions) (arvados.LoginResponse, error) {
92 return loginError(fmt.Errorf("error setting up OpenID Connect provider: %s", err))
95 // Initiate OIDC sign-in.
96 if opts.ReturnTo == "" {
97 return loginError(errors.New("missing return_to parameter"))
99 state := ctrl.newOAuth2State([]byte(ctrl.Cluster.SystemRootToken), opts.Remote, opts.ReturnTo)
100 return arvados.LoginResponse{
101 RedirectLocation: ctrl.oauth2conf.AuthCodeURL(state.String(),
102 // prompt=select_account tells Google
103 // to show the "choose which Google
104 // account" page, even if the client
105 // is currently logged in to exactly
106 // one Google account.
107 oauth2.SetAuthURLParam("prompt", "select_account")),
110 // Callback after OIDC sign-in.
111 state := ctrl.parseOAuth2State(opts.State)
112 if !state.verify([]byte(ctrl.Cluster.SystemRootToken)) {
113 return loginError(errors.New("invalid OAuth2 state"))
115 oauth2Token, err := ctrl.oauth2conf.Exchange(ctx, opts.Code)
117 return loginError(fmt.Errorf("error in OAuth2 exchange: %s", err))
119 rawIDToken, ok := oauth2Token.Extra("id_token").(string)
121 return loginError(errors.New("error in OAuth2 exchange: no ID token in OAuth2 token"))
123 idToken, err := ctrl.verifier.Verify(ctx, rawIDToken)
125 return loginError(fmt.Errorf("error verifying ID token: %s", err))
127 authinfo, err := ctrl.getAuthInfo(ctx, oauth2Token, idToken)
129 return loginError(err)
131 ctxRoot := auth.NewContext(ctx, &auth.Credentials{Tokens: []string{ctrl.Cluster.SystemRootToken}})
132 return ctrl.RailsProxy.UserSessionCreate(ctxRoot, rpc.UserSessionCreateOptions{
133 ReturnTo: state.Remote + "," + state.ReturnTo,
138 func (ctrl *oidcLoginController) UserAuthenticate(ctx context.Context, opts arvados.UserAuthenticateOptions) (arvados.APIClientAuthorization, error) {
139 return arvados.APIClientAuthorization{}, httpserver.ErrorWithStatus(errors.New("username/password authentication is not available"), http.StatusBadRequest)
142 // Use a person's token to get all of their email addresses, with the
143 // primary address at index 0. The provided defaultAddr is always
144 // included in the returned slice, and is used as the primary if the
145 // Google API does not indicate one.
146 func (ctrl *oidcLoginController) getAuthInfo(ctx context.Context, token *oauth2.Token, idToken *oidc.IDToken) (*rpc.UserSessionAuthInfo, error) {
147 var ret rpc.UserSessionAuthInfo
148 defer ctxlog.FromContext(ctx).WithField("ret", &ret).Debug("getAuthInfo returned")
150 var claims map[string]interface{}
151 if err := idToken.Claims(&claims); err != nil {
152 return nil, fmt.Errorf("error extracting claims from ID token: %s", err)
153 } else if verified, _ := claims[ctrl.EmailVerifiedClaim].(bool); verified || ctrl.EmailVerifiedClaim == "" {
154 // Fall back to this info if the People API call
155 // (below) doesn't return a primary && verified email.
156 name, _ := claims["name"].(string)
157 if names := strings.Fields(strings.TrimSpace(name)); len(names) > 1 {
158 ret.FirstName = strings.Join(names[0:len(names)-1], " ")
159 ret.LastName = names[len(names)-1]
161 ret.FirstName = names[0]
163 ret.Email, _ = claims[ctrl.EmailClaim].(string)
166 if ctrl.UsernameClaim != "" {
167 ret.Username, _ = claims[ctrl.UsernameClaim].(string)
170 if !ctrl.UseGooglePeopleAPI {
172 return nil, fmt.Errorf("cannot log in with unverified email address %q", claims[ctrl.EmailClaim])
177 svc, err := people.NewService(ctx, option.WithTokenSource(ctrl.oauth2conf.TokenSource(ctx, token)), option.WithScopes(people.UserEmailsReadScope))
179 return nil, fmt.Errorf("error setting up People API: %s", err)
181 if p := ctrl.peopleAPIBasePath; p != "" {
182 // Override normal API endpoint (for testing)
185 person, err := people.NewPeopleService(svc).Get("people/me").PersonFields("emailAddresses,names").Do()
187 if strings.Contains(err.Error(), "Error 403") && strings.Contains(err.Error(), "accessNotConfigured") {
188 // Log the original API error, but display
189 // only the "fix config" advice to the user.
190 ctxlog.FromContext(ctx).WithError(err).WithField("email", ret.Email).Error("People API is not enabled")
191 return nil, errors.New("configuration error: Login.GoogleAlternateEmailAddresses is true, but Google People API is not enabled")
193 return nil, fmt.Errorf("error getting profile info from People API: %s", err)
196 // The given/family names returned by the People API and
197 // flagged as "primary" (if any) take precedence over the
198 // split-by-whitespace result from above.
199 for _, name := range person.Names {
200 if name.Metadata != nil && name.Metadata.Primary {
201 ret.FirstName = name.GivenName
202 ret.LastName = name.FamilyName
207 altEmails := map[string]bool{}
209 altEmails[ret.Email] = true
211 for _, ea := range person.EmailAddresses {
212 if ea.Metadata == nil || !ea.Metadata.Verified {
213 ctxlog.FromContext(ctx).WithField("address", ea.Value).Info("skipping unverified email address")
216 altEmails[ea.Value] = true
217 if ea.Metadata.Primary || ret.Email == "" {
221 if len(altEmails) == 0 {
222 return nil, errors.New("cannot log in without a verified email address")
224 for ae := range altEmails {
228 ret.AlternateEmails = append(ret.AlternateEmails, ae)
229 if ret.Username == "" {
230 i := strings.Index(ae, "@")
231 if i > 0 && strings.ToLower(ae[i+1:]) == strings.ToLower(ctrl.Cluster.Users.PreferDomainForUsername) {
232 ret.Username = strings.SplitN(ae[:i], "+", 2)[0]
239 func loginError(sendError error) (resp arvados.LoginResponse, err error) {
240 tmpl, err := template.New("error").Parse(`<h2>Login error:</h2><p>{{.}}</p>`)
244 err = tmpl.Execute(&resp.HTML, sendError.Error())
248 func (ctrl *oidcLoginController) newOAuth2State(key []byte, remote, returnTo string) oauth2State {
250 Time: time.Now().Unix(),
254 s.HMAC = s.computeHMAC(key)
258 type oauth2State struct {
259 HMAC []byte // hash of other fields; see computeHMAC()
260 Time int64 // creation time (unix timestamp)
261 Remote string // remote cluster if requesting a salted token, otherwise blank
262 ReturnTo string // redirect target
265 func (ctrl *oidcLoginController) parseOAuth2State(encoded string) (s oauth2State) {
266 // Errors are not checked. If decoding/parsing fails, the
267 // token will be rejected by verify().
268 decoded, _ := base64.RawURLEncoding.DecodeString(encoded)
269 f := strings.Split(string(decoded), "\n")
273 fmt.Sscanf(f[0], "%x", &s.HMAC)
274 fmt.Sscanf(f[1], "%x", &s.Time)
275 fmt.Sscanf(f[2], "%s", &s.Remote)
276 fmt.Sscanf(f[3], "%s", &s.ReturnTo)
280 func (s oauth2State) verify(key []byte) bool {
281 if delta := time.Now().Unix() - s.Time; delta < 0 || delta > 300 {
284 return hmac.Equal(s.computeHMAC(key), s.HMAC)
287 func (s oauth2State) String() string {
289 enc := base64.NewEncoder(base64.RawURLEncoding, &buf)
290 fmt.Fprintf(enc, "%x\n%x\n%s\n%s", s.HMAC, s.Time, s.Remote, s.ReturnTo)
295 func (s oauth2State) computeHMAC(key []byte) []byte {
296 mac := hmac.New(sha256.New, key)
297 fmt.Fprintf(mac, "%x %s %s", s.Time, s.Remote, s.ReturnTo)