1b8ec9e64a6e01138a1bfc58a599a78eb2f0e44b
[arvados.git] / lib / controller / federation / conn.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package federation
6
7 import (
8         "bytes"
9         "context"
10         "encoding/json"
11         "errors"
12         "fmt"
13         "net/http"
14         "net/url"
15         "regexp"
16         "strings"
17         "time"
18
19         "git.arvados.org/arvados.git/lib/config"
20         "git.arvados.org/arvados.git/lib/controller/localdb"
21         "git.arvados.org/arvados.git/lib/controller/rpc"
22         "git.arvados.org/arvados.git/sdk/go/arvados"
23         "git.arvados.org/arvados.git/sdk/go/auth"
24         "git.arvados.org/arvados.git/sdk/go/ctxlog"
25         "git.arvados.org/arvados.git/sdk/go/health"
26 )
27
28 type Conn struct {
29         cluster *arvados.Cluster
30         local   backend
31         remotes map[string]backend
32 }
33
34 func New(cluster *arvados.Cluster, healthFuncs *map[string]health.Func) *Conn {
35         local := localdb.NewConn(cluster)
36         remotes := map[string]backend{}
37         for id, remote := range cluster.RemoteClusters {
38                 if !remote.Proxy || id == cluster.ClusterID {
39                         continue
40                 }
41                 conn := rpc.NewConn(id, &url.URL{Scheme: remote.Scheme, Host: remote.Host}, remote.Insecure, saltedTokenProvider(cluster, local, id))
42                 // Older versions of controller rely on the Via header
43                 // to detect loops.
44                 conn.SendHeader = http.Header{"Via": {"HTTP/1.1 arvados-controller"}}
45                 remotes[id] = conn
46         }
47
48         if healthFuncs != nil {
49                 hf := map[string]health.Func{"vocabulary": local.LastVocabularyError}
50                 *healthFuncs = hf
51         }
52
53         return &Conn{
54                 cluster: cluster,
55                 local:   local,
56                 remotes: remotes,
57         }
58 }
59
60 // Return a new rpc.TokenProvider that takes the client-provided
61 // tokens from an incoming request context, determines whether they
62 // should (and can) be salted for the given remoteID, and returns the
63 // resulting tokens.
64 func saltedTokenProvider(cluster *arvados.Cluster, local backend, remoteID string) rpc.TokenProvider {
65         return func(ctx context.Context) ([]string, error) {
66                 var tokens []string
67                 incoming, ok := auth.FromContext(ctx)
68                 if !ok {
69                         return nil, errors.New("no token provided")
70                 }
71                 for _, token := range incoming.Tokens {
72                         if strings.HasPrefix(token, "v2/"+cluster.ClusterID+"-") &&
73                                 !strings.HasPrefix(token, "v2/"+cluster.ClusterID+"-gj3su-anonymouspublic/") &&
74                                 remoteID == cluster.Login.LoginCluster {
75                                 // If we did this, the login cluster would call back to us and then
76                                 // reject our response because the user UUID prefix (i.e., the
77                                 // LoginCluster prefix) won't match the token UUID prefix (i.e., our
78                                 // prefix). The anonymous token is OK to forward, because (unlike other
79                                 // local tokens for real users) the validation callback will return the
80                                 // locally issued anonymous user ID instead of a login-cluster user ID.
81                                 // That anonymous user ID gets mapped to the local anonymous user
82                                 // automatically on the login cluster.
83                                 return nil, httpErrorf(http.StatusUnauthorized, "cannot use a locally issued token to forward a request to our login cluster (%s)", remoteID)
84                         }
85                         salted, err := auth.SaltToken(token, remoteID)
86                         switch err {
87                         case nil:
88                                 tokens = append(tokens, salted)
89                         case auth.ErrSalted:
90                                 tokens = append(tokens, token)
91                         case auth.ErrTokenFormat:
92                                 // pass through unmodified (assume it's an OIDC access token)
93                                 tokens = append(tokens, token)
94                         case auth.ErrObsoleteToken:
95                                 ctx := auth.NewContext(ctx, &auth.Credentials{Tokens: []string{token}})
96                                 aca, err := local.APIClientAuthorizationCurrent(ctx, arvados.GetOptions{})
97                                 if errStatus(err) == http.StatusUnauthorized {
98                                         // pass through unmodified
99                                         tokens = append(tokens, token)
100                                         continue
101                                 } else if err != nil {
102                                         return nil, err
103                                 }
104                                 if strings.HasPrefix(aca.UUID, remoteID) {
105                                         // We have it cached here, but
106                                         // the token belongs to the
107                                         // remote target itself, so
108                                         // pass it through unmodified.
109                                         tokens = append(tokens, token)
110                                         continue
111                                 }
112                                 salted, err := auth.SaltToken(aca.TokenV2(), remoteID)
113                                 if err != nil {
114                                         return nil, err
115                                 }
116                                 tokens = append(tokens, salted)
117                         default:
118                                 return nil, err
119                         }
120                 }
121                 return tokens, nil
122         }
123 }
124
125 // Return suitable backend for a query about the given cluster ID
126 // ("aaaaa") or object UUID ("aaaaa-dz642-abcdefghijklmno").
127 func (conn *Conn) chooseBackend(id string) backend {
128         if len(id) == 27 {
129                 id = id[:5]
130         } else if len(id) != 5 {
131                 // PDH or bogus ID
132                 return conn.local
133         }
134         if id == conn.cluster.ClusterID {
135                 return conn.local
136         } else if be, ok := conn.remotes[id]; ok {
137                 return be
138         } else {
139                 // TODO: return an "always error" backend?
140                 return conn.local
141         }
142 }
143
144 func (conn *Conn) localOrLoginCluster() backend {
145         if conn.cluster.Login.LoginCluster != "" {
146                 return conn.chooseBackend(conn.cluster.Login.LoginCluster)
147         }
148         return conn.local
149 }
150
151 // Call fn with the local backend; then, if fn returned 404, call fn
152 // on the available remote backends (possibly concurrently) until one
153 // succeeds.
154 //
155 // The second argument to fn is the cluster ID of the remote backend,
156 // or "" for the local backend.
157 //
158 // A non-nil error means all backends failed.
159 func (conn *Conn) tryLocalThenRemotes(ctx context.Context, forwardedFor string, fn func(context.Context, string, backend) error) error {
160         if err := fn(ctx, "", conn.local); err == nil || errStatus(err) != http.StatusNotFound || forwardedFor != "" {
161                 // Note: forwardedFor != "" means this request came
162                 // from a remote cluster, so we don't take a second
163                 // hop. This avoids cycles, redundant calls to a
164                 // mutually reachable remote, and use of double-salted
165                 // tokens.
166                 return err
167         }
168
169         ctx, cancel := context.WithCancel(ctx)
170         defer cancel()
171         errchan := make(chan error, len(conn.remotes))
172         for remoteID, be := range conn.remotes {
173                 remoteID, be := remoteID, be
174                 go func() {
175                         errchan <- fn(ctx, remoteID, be)
176                 }()
177         }
178         all404 := true
179         var errs []error
180         for i := 0; i < cap(errchan); i++ {
181                 err := <-errchan
182                 if err == nil {
183                         return nil
184                 }
185                 all404 = all404 && errStatus(err) == http.StatusNotFound
186                 errs = append(errs, err)
187         }
188         if all404 {
189                 return notFoundError{}
190         }
191         return httpErrorf(http.StatusBadGateway, "errors: %v", errs)
192 }
193
194 func (conn *Conn) CollectionCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Collection, error) {
195         return conn.chooseBackend(options.ClusterID).CollectionCreate(ctx, options)
196 }
197
198 func (conn *Conn) CollectionUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.Collection, error) {
199         return conn.chooseBackend(options.UUID).CollectionUpdate(ctx, options)
200 }
201
202 func rewriteManifest(mt, remoteID string) string {
203         return regexp.MustCompile(` [0-9a-f]{32}\+[^ ]*`).ReplaceAllStringFunc(mt, func(tok string) string {
204                 return strings.Replace(tok, "+A", "+R"+remoteID+"-", -1)
205         })
206 }
207
208 func (conn *Conn) ConfigGet(ctx context.Context) (json.RawMessage, error) {
209         var buf bytes.Buffer
210         err := config.ExportJSON(&buf, conn.cluster)
211         return json.RawMessage(buf.Bytes()), err
212 }
213
214 func (conn *Conn) VocabularyGet(ctx context.Context) (arvados.Vocabulary, error) {
215         return conn.chooseBackend(conn.cluster.ClusterID).VocabularyGet(ctx)
216 }
217
218 func (conn *Conn) Login(ctx context.Context, options arvados.LoginOptions) (arvados.LoginResponse, error) {
219         if id := conn.cluster.Login.LoginCluster; id != "" && id != conn.cluster.ClusterID {
220                 // defer entire login procedure to designated cluster
221                 remote, ok := conn.remotes[id]
222                 if !ok {
223                         return arvados.LoginResponse{}, fmt.Errorf("configuration problem: designated login cluster %q is not defined", id)
224                 }
225                 baseURL := remote.BaseURL()
226                 target, err := baseURL.Parse(arvados.EndpointLogin.Path)
227                 if err != nil {
228                         return arvados.LoginResponse{}, fmt.Errorf("internal error getting redirect target: %s", err)
229                 }
230                 params := url.Values{
231                         "return_to": []string{options.ReturnTo},
232                 }
233                 if options.Remote != "" {
234                         params.Set("remote", options.Remote)
235                 }
236                 target.RawQuery = params.Encode()
237                 return arvados.LoginResponse{
238                         RedirectLocation: target.String(),
239                 }, nil
240         }
241         return conn.local.Login(ctx, options)
242 }
243
244 func (conn *Conn) Logout(ctx context.Context, options arvados.LogoutOptions) (arvados.LogoutResponse, error) {
245         // If the logout request comes with an API token from a known
246         // remote cluster, redirect to that cluster's logout handler
247         // so it has an opportunity to clear sessions, expire tokens,
248         // etc. Otherwise use the local endpoint.
249         reqauth, ok := auth.FromContext(ctx)
250         if !ok || len(reqauth.Tokens) == 0 || len(reqauth.Tokens[0]) < 8 || !strings.HasPrefix(reqauth.Tokens[0], "v2/") {
251                 return conn.local.Logout(ctx, options)
252         }
253         id := reqauth.Tokens[0][3:8]
254         if id == conn.cluster.ClusterID {
255                 return conn.local.Logout(ctx, options)
256         }
257         remote, ok := conn.remotes[id]
258         if !ok {
259                 return conn.local.Logout(ctx, options)
260         }
261         baseURL := remote.BaseURL()
262         target, err := baseURL.Parse(arvados.EndpointLogout.Path)
263         if err != nil {
264                 return arvados.LogoutResponse{}, fmt.Errorf("internal error getting redirect target: %s", err)
265         }
266         target.RawQuery = url.Values{"return_to": {options.ReturnTo}}.Encode()
267         return arvados.LogoutResponse{RedirectLocation: target.String()}, nil
268 }
269
270 func (conn *Conn) CollectionGet(ctx context.Context, options arvados.GetOptions) (arvados.Collection, error) {
271         if len(options.UUID) == 27 {
272                 // UUID is really a UUID
273                 c, err := conn.chooseBackend(options.UUID).CollectionGet(ctx, options)
274                 if err == nil && options.UUID[:5] != conn.cluster.ClusterID {
275                         c.ManifestText = rewriteManifest(c.ManifestText, options.UUID[:5])
276                 }
277                 return c, err
278         }
279         // UUID is a PDH
280         first := make(chan arvados.Collection, 1)
281         err := conn.tryLocalThenRemotes(ctx, options.ForwardedFor, func(ctx context.Context, remoteID string, be backend) error {
282                 remoteOpts := options
283                 remoteOpts.ForwardedFor = conn.cluster.ClusterID + "-" + options.ForwardedFor
284                 c, err := be.CollectionGet(ctx, remoteOpts)
285                 if err != nil {
286                         return err
287                 }
288                 haveManifest := true
289                 if options.Select != nil {
290                         haveManifest = false
291                         for _, s := range options.Select {
292                                 if s == "manifest_text" {
293                                         haveManifest = true
294                                         break
295                                 }
296                         }
297                 }
298                 if haveManifest {
299                         pdh := arvados.PortableDataHash(c.ManifestText)
300                         // options.UUID is either hash+size or
301                         // hash+size+hints; only hash+size need to
302                         // match the computed PDH.
303                         if pdh != options.UUID && !strings.HasPrefix(options.UUID, pdh+"+") {
304                                 err = httpErrorf(http.StatusBadGateway, "bad portable data hash %q received from remote %q (expected %q)", pdh, remoteID, options.UUID)
305                                 ctxlog.FromContext(ctx).Warn(err)
306                                 return err
307                         }
308                 }
309                 if remoteID != "" {
310                         c.ManifestText = rewriteManifest(c.ManifestText, remoteID)
311                 }
312                 select {
313                 case first <- c:
314                         return nil
315                 default:
316                         // lost race, return value doesn't matter
317                         return nil
318                 }
319         })
320         if err != nil {
321                 return arvados.Collection{}, err
322         }
323         return <-first, nil
324 }
325
326 func (conn *Conn) CollectionList(ctx context.Context, options arvados.ListOptions) (arvados.CollectionList, error) {
327         return conn.generated_CollectionList(ctx, options)
328 }
329
330 func (conn *Conn) CollectionProvenance(ctx context.Context, options arvados.GetOptions) (map[string]interface{}, error) {
331         return conn.chooseBackend(options.UUID).CollectionProvenance(ctx, options)
332 }
333
334 func (conn *Conn) CollectionUsedBy(ctx context.Context, options arvados.GetOptions) (map[string]interface{}, error) {
335         return conn.chooseBackend(options.UUID).CollectionUsedBy(ctx, options)
336 }
337
338 func (conn *Conn) CollectionDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.Collection, error) {
339         return conn.chooseBackend(options.UUID).CollectionDelete(ctx, options)
340 }
341
342 func (conn *Conn) CollectionTrash(ctx context.Context, options arvados.DeleteOptions) (arvados.Collection, error) {
343         return conn.chooseBackend(options.UUID).CollectionTrash(ctx, options)
344 }
345
346 func (conn *Conn) CollectionUntrash(ctx context.Context, options arvados.UntrashOptions) (arvados.Collection, error) {
347         return conn.chooseBackend(options.UUID).CollectionUntrash(ctx, options)
348 }
349
350 func (conn *Conn) ContainerList(ctx context.Context, options arvados.ListOptions) (arvados.ContainerList, error) {
351         return conn.generated_ContainerList(ctx, options)
352 }
353
354 func (conn *Conn) ContainerCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Container, error) {
355         return conn.chooseBackend(options.ClusterID).ContainerCreate(ctx, options)
356 }
357
358 func (conn *Conn) ContainerUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.Container, error) {
359         return conn.chooseBackend(options.UUID).ContainerUpdate(ctx, options)
360 }
361
362 func (conn *Conn) ContainerGet(ctx context.Context, options arvados.GetOptions) (arvados.Container, error) {
363         return conn.chooseBackend(options.UUID).ContainerGet(ctx, options)
364 }
365
366 func (conn *Conn) ContainerDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.Container, error) {
367         return conn.chooseBackend(options.UUID).ContainerDelete(ctx, options)
368 }
369
370 func (conn *Conn) ContainerLock(ctx context.Context, options arvados.GetOptions) (arvados.Container, error) {
371         return conn.chooseBackend(options.UUID).ContainerLock(ctx, options)
372 }
373
374 func (conn *Conn) ContainerUnlock(ctx context.Context, options arvados.GetOptions) (arvados.Container, error) {
375         return conn.chooseBackend(options.UUID).ContainerUnlock(ctx, options)
376 }
377
378 func (conn *Conn) ContainerSSH(ctx context.Context, options arvados.ContainerSSHOptions) (arvados.ContainerSSHConnection, error) {
379         return conn.chooseBackend(options.UUID).ContainerSSH(ctx, options)
380 }
381
382 func (conn *Conn) ContainerRequestList(ctx context.Context, options arvados.ListOptions) (arvados.ContainerRequestList, error) {
383         return conn.generated_ContainerRequestList(ctx, options)
384 }
385
386 func (conn *Conn) ContainerRequestCreate(ctx context.Context, options arvados.CreateOptions) (arvados.ContainerRequest, error) {
387         be := conn.chooseBackend(options.ClusterID)
388         if be == conn.local {
389                 return be.ContainerRequestCreate(ctx, options)
390         }
391         if _, ok := options.Attrs["runtime_token"]; !ok {
392                 // If runtime_token is not set, create a new token
393                 aca, err := conn.local.APIClientAuthorizationCurrent(ctx, arvados.GetOptions{})
394                 if err != nil {
395                         // This should probably be StatusUnauthorized
396                         // (need to update test in
397                         // lib/controller/federation_test.go):
398                         // When RoR is out of the picture this should be:
399                         // return arvados.ContainerRequest{}, httpErrorf(http.StatusUnauthorized, "%w", err)
400                         return arvados.ContainerRequest{}, httpErrorf(http.StatusForbidden, "%s", "invalid API token")
401                 }
402                 user, err := conn.local.UserGetCurrent(ctx, arvados.GetOptions{})
403                 if err != nil {
404                         return arvados.ContainerRequest{}, err
405                 }
406                 if len(aca.Scopes) == 0 || aca.Scopes[0] != "all" {
407                         return arvados.ContainerRequest{}, httpErrorf(http.StatusForbidden, "token scope is not [all]")
408                 }
409                 if strings.HasPrefix(aca.UUID, conn.cluster.ClusterID) {
410                         // Local user, submitting to a remote cluster.
411                         // Create a new time-limited token.
412                         local, ok := conn.local.(*localdb.Conn)
413                         if !ok {
414                                 return arvados.ContainerRequest{}, httpErrorf(http.StatusInternalServerError, "bug: local backend is a %T, not a *localdb.Conn", conn.local)
415                         }
416                         aca, err = local.CreateAPIClientAuthorization(ctx, conn.cluster.SystemRootToken, rpc.UserSessionAuthInfo{UserUUID: user.UUID,
417                                 ExpiresAt: time.Now().UTC().Add(conn.cluster.Collections.BlobSigningTTL.Duration())})
418                         if err != nil {
419                                 return arvados.ContainerRequest{}, err
420                         }
421                         options.Attrs["runtime_token"] = aca.TokenV2()
422                 } else {
423                         // Remote user. Container request will use the
424                         // current token, minus the trailing portion
425                         // (optional container uuid).
426                         options.Attrs["runtime_token"] = aca.TokenV2()
427                 }
428         }
429         return be.ContainerRequestCreate(ctx, options)
430 }
431
432 func (conn *Conn) ContainerRequestUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.ContainerRequest, error) {
433         return conn.chooseBackend(options.UUID).ContainerRequestUpdate(ctx, options)
434 }
435
436 func (conn *Conn) ContainerRequestGet(ctx context.Context, options arvados.GetOptions) (arvados.ContainerRequest, error) {
437         return conn.chooseBackend(options.UUID).ContainerRequestGet(ctx, options)
438 }
439
440 func (conn *Conn) ContainerRequestDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.ContainerRequest, error) {
441         return conn.chooseBackend(options.UUID).ContainerRequestDelete(ctx, options)
442 }
443
444 func (conn *Conn) GroupCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Group, error) {
445         return conn.chooseBackend(options.ClusterID).GroupCreate(ctx, options)
446 }
447
448 func (conn *Conn) GroupUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.Group, error) {
449         return conn.chooseBackend(options.UUID).GroupUpdate(ctx, options)
450 }
451
452 func (conn *Conn) GroupGet(ctx context.Context, options arvados.GetOptions) (arvados.Group, error) {
453         return conn.chooseBackend(options.UUID).GroupGet(ctx, options)
454 }
455
456 func (conn *Conn) GroupList(ctx context.Context, options arvados.ListOptions) (arvados.GroupList, error) {
457         return conn.generated_GroupList(ctx, options)
458 }
459
460 var userUuidRe = regexp.MustCompile(`^[0-9a-z]{5}-tpzed-[0-9a-z]{15}$`)
461
462 func (conn *Conn) GroupContents(ctx context.Context, options arvados.GroupContentsOptions) (arvados.ObjectList, error) {
463         if options.ClusterID != "" {
464                 // explicitly selected cluster
465                 return conn.chooseBackend(options.ClusterID).GroupContents(ctx, options)
466         } else if userUuidRe.MatchString(options.UUID) {
467                 // user, get the things they own on the local cluster
468                 return conn.local.GroupContents(ctx, options)
469         } else {
470                 // a group, potentially want to make federated request
471                 return conn.chooseBackend(options.UUID).GroupContents(ctx, options)
472         }
473 }
474
475 func (conn *Conn) GroupShared(ctx context.Context, options arvados.ListOptions) (arvados.GroupList, error) {
476         return conn.chooseBackend(options.ClusterID).GroupShared(ctx, options)
477 }
478
479 func (conn *Conn) GroupDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.Group, error) {
480         return conn.chooseBackend(options.UUID).GroupDelete(ctx, options)
481 }
482
483 func (conn *Conn) GroupTrash(ctx context.Context, options arvados.DeleteOptions) (arvados.Group, error) {
484         return conn.chooseBackend(options.UUID).GroupTrash(ctx, options)
485 }
486
487 func (conn *Conn) GroupUntrash(ctx context.Context, options arvados.UntrashOptions) (arvados.Group, error) {
488         return conn.chooseBackend(options.UUID).GroupUntrash(ctx, options)
489 }
490
491 func (conn *Conn) LinkCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Link, error) {
492         return conn.chooseBackend(options.ClusterID).LinkCreate(ctx, options)
493 }
494
495 func (conn *Conn) LinkUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.Link, error) {
496         return conn.chooseBackend(options.UUID).LinkUpdate(ctx, options)
497 }
498
499 func (conn *Conn) LinkGet(ctx context.Context, options arvados.GetOptions) (arvados.Link, error) {
500         return conn.chooseBackend(options.UUID).LinkGet(ctx, options)
501 }
502
503 func (conn *Conn) LinkList(ctx context.Context, options arvados.ListOptions) (arvados.LinkList, error) {
504         return conn.generated_LinkList(ctx, options)
505 }
506
507 func (conn *Conn) LinkDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.Link, error) {
508         return conn.chooseBackend(options.UUID).LinkDelete(ctx, options)
509 }
510
511 func (conn *Conn) SpecimenList(ctx context.Context, options arvados.ListOptions) (arvados.SpecimenList, error) {
512         return conn.generated_SpecimenList(ctx, options)
513 }
514
515 func (conn *Conn) SpecimenCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Specimen, error) {
516         return conn.chooseBackend(options.ClusterID).SpecimenCreate(ctx, options)
517 }
518
519 func (conn *Conn) SpecimenUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.Specimen, error) {
520         return conn.chooseBackend(options.UUID).SpecimenUpdate(ctx, options)
521 }
522
523 func (conn *Conn) SpecimenGet(ctx context.Context, options arvados.GetOptions) (arvados.Specimen, error) {
524         return conn.chooseBackend(options.UUID).SpecimenGet(ctx, options)
525 }
526
527 func (conn *Conn) SpecimenDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.Specimen, error) {
528         return conn.chooseBackend(options.UUID).SpecimenDelete(ctx, options)
529 }
530
531 func (conn *Conn) SysTrashSweep(ctx context.Context, options struct{}) (struct{}, error) {
532         return conn.local.SysTrashSweep(ctx, options)
533 }
534
535 var userAttrsCachedFromLoginCluster = map[string]bool{
536         "created_at":  true,
537         "email":       true,
538         "first_name":  true,
539         "is_active":   true,
540         "is_admin":    true,
541         "last_name":   true,
542         "modified_at": true,
543         "prefs":       true,
544         "username":    true,
545         "kind":        true,
546
547         "etag":                    false,
548         "full_name":               false,
549         "identity_url":            false,
550         "is_invited":              false,
551         "modified_by_client_uuid": false,
552         "modified_by_user_uuid":   false,
553         "owner_uuid":              false,
554         "uuid":                    false,
555         "writable_by":             false,
556 }
557
558 func (conn *Conn) batchUpdateUsers(ctx context.Context,
559         options arvados.ListOptions,
560         items []arvados.User) (err error) {
561
562         id := conn.cluster.Login.LoginCluster
563         logger := ctxlog.FromContext(ctx)
564         batchOpts := arvados.UserBatchUpdateOptions{Updates: map[string]map[string]interface{}{}}
565         for _, user := range items {
566                 if !strings.HasPrefix(user.UUID, id) {
567                         continue
568                 }
569                 logger.Debugf("cache user info for uuid %q", user.UUID)
570
571                 // If the remote cluster has null timestamps
572                 // (e.g., test server with incomplete
573                 // fixtures) use dummy timestamps (instead of
574                 // the zero time, which causes a Rails API
575                 // error "year too big to marshal: 1 UTC").
576                 if user.ModifiedAt.IsZero() {
577                         user.ModifiedAt = time.Now()
578                 }
579                 if user.CreatedAt.IsZero() {
580                         user.CreatedAt = time.Now()
581                 }
582
583                 var allFields map[string]interface{}
584                 buf, err := json.Marshal(user)
585                 if err != nil {
586                         return fmt.Errorf("error encoding user record from remote response: %s", err)
587                 }
588                 err = json.Unmarshal(buf, &allFields)
589                 if err != nil {
590                         return fmt.Errorf("error transcoding user record from remote response: %s", err)
591                 }
592                 updates := allFields
593                 if len(options.Select) > 0 {
594                         updates = map[string]interface{}{}
595                         for _, k := range options.Select {
596                                 if v, ok := allFields[k]; ok && userAttrsCachedFromLoginCluster[k] {
597                                         updates[k] = v
598                                 }
599                         }
600                 } else {
601                         for k := range updates {
602                                 if !userAttrsCachedFromLoginCluster[k] {
603                                         delete(updates, k)
604                                 }
605                         }
606                 }
607                 batchOpts.Updates[user.UUID] = updates
608         }
609         if len(batchOpts.Updates) > 0 {
610                 ctxRoot := auth.NewContext(ctx, &auth.Credentials{Tokens: []string{conn.cluster.SystemRootToken}})
611                 _, err = conn.local.UserBatchUpdate(ctxRoot, batchOpts)
612                 if err != nil {
613                         return fmt.Errorf("error updating local user records: %s", err)
614                 }
615         }
616         return nil
617 }
618
619 func (conn *Conn) UserList(ctx context.Context, options arvados.ListOptions) (arvados.UserList, error) {
620         if id := conn.cluster.Login.LoginCluster; id != "" && id != conn.cluster.ClusterID && !options.BypassFederation {
621                 resp, err := conn.chooseBackend(id).UserList(ctx, options)
622                 if err != nil {
623                         return resp, err
624                 }
625                 err = conn.batchUpdateUsers(ctx, options, resp.Items)
626                 if err != nil {
627                         return arvados.UserList{}, err
628                 }
629                 return resp, nil
630         }
631         return conn.generated_UserList(ctx, options)
632 }
633
634 func (conn *Conn) UserCreate(ctx context.Context, options arvados.CreateOptions) (arvados.User, error) {
635         return conn.chooseBackend(options.ClusterID).UserCreate(ctx, options)
636 }
637
638 func (conn *Conn) UserUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.User, error) {
639         if options.BypassFederation {
640                 return conn.local.UserUpdate(ctx, options)
641         }
642         resp, err := conn.chooseBackend(options.UUID).UserUpdate(ctx, options)
643         if err != nil {
644                 return resp, err
645         }
646         if !strings.HasPrefix(options.UUID, conn.cluster.ClusterID) {
647                 // Copy the updated user record to the local cluster
648                 err = conn.batchUpdateUsers(ctx, arvados.ListOptions{}, []arvados.User{resp})
649                 if err != nil {
650                         return arvados.User{}, err
651                 }
652         }
653         return resp, err
654 }
655
656 func (conn *Conn) UserMerge(ctx context.Context, options arvados.UserMergeOptions) (arvados.User, error) {
657         return conn.local.UserMerge(ctx, options)
658 }
659
660 func (conn *Conn) UserActivate(ctx context.Context, options arvados.UserActivateOptions) (arvados.User, error) {
661         return conn.localOrLoginCluster().UserActivate(ctx, options)
662 }
663
664 func (conn *Conn) UserSetup(ctx context.Context, options arvados.UserSetupOptions) (map[string]interface{}, error) {
665         upstream := conn.localOrLoginCluster()
666         if upstream != conn.local {
667                 // When LoginCluster is in effect, and we're setting
668                 // up a remote user, and we want to give that user
669                 // access to a local VM, we can't include the VM in
670                 // the setup call, because the remote cluster won't
671                 // recognize it.
672
673                 // Similarly, if we want to create a git repo,
674                 // it should be created on the local cluster,
675                 // not the remote one.
676
677                 upstreamOptions := options
678                 upstreamOptions.VMUUID = ""
679                 upstreamOptions.RepoName = ""
680
681                 ret, err := upstream.UserSetup(ctx, upstreamOptions)
682                 if err != nil {
683                         return ret, err
684                 }
685         }
686
687         return conn.local.UserSetup(ctx, options)
688 }
689
690 func (conn *Conn) UserUnsetup(ctx context.Context, options arvados.GetOptions) (arvados.User, error) {
691         return conn.localOrLoginCluster().UserUnsetup(ctx, options)
692 }
693
694 func (conn *Conn) UserGet(ctx context.Context, options arvados.GetOptions) (arvados.User, error) {
695         resp, err := conn.chooseBackend(options.UUID).UserGet(ctx, options)
696         if err != nil {
697                 return resp, err
698         }
699         if options.UUID != resp.UUID {
700                 return arvados.User{}, httpErrorf(http.StatusBadGateway, "Had requested %v but response was for %v", options.UUID, resp.UUID)
701         }
702         if options.UUID[:5] != conn.cluster.ClusterID {
703                 err = conn.batchUpdateUsers(ctx, arvados.ListOptions{Select: options.Select}, []arvados.User{resp})
704                 if err != nil {
705                         return arvados.User{}, err
706                 }
707         }
708         return resp, nil
709 }
710
711 func (conn *Conn) UserGetCurrent(ctx context.Context, options arvados.GetOptions) (arvados.User, error) {
712         return conn.local.UserGetCurrent(ctx, options)
713 }
714
715 func (conn *Conn) UserGetSystem(ctx context.Context, options arvados.GetOptions) (arvados.User, error) {
716         return conn.chooseBackend(options.UUID).UserGetSystem(ctx, options)
717 }
718
719 func (conn *Conn) UserDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.User, error) {
720         return conn.chooseBackend(options.UUID).UserDelete(ctx, options)
721 }
722
723 func (conn *Conn) UserBatchUpdate(ctx context.Context, options arvados.UserBatchUpdateOptions) (arvados.UserList, error) {
724         return conn.local.UserBatchUpdate(ctx, options)
725 }
726
727 func (conn *Conn) UserAuthenticate(ctx context.Context, options arvados.UserAuthenticateOptions) (arvados.APIClientAuthorization, error) {
728         return conn.local.UserAuthenticate(ctx, options)
729 }
730
731 func (conn *Conn) APIClientAuthorizationCurrent(ctx context.Context, options arvados.GetOptions) (arvados.APIClientAuthorization, error) {
732         return conn.chooseBackend(options.UUID).APIClientAuthorizationCurrent(ctx, options)
733 }
734
735 func (conn *Conn) APIClientAuthorizationCreate(ctx context.Context, options arvados.CreateOptions) (arvados.APIClientAuthorization, error) {
736         if conn.cluster.Login.LoginCluster != "" {
737                 return conn.chooseBackend(conn.cluster.Login.LoginCluster).APIClientAuthorizationCreate(ctx, options)
738         }
739         ownerUUID, ok := options.Attrs["owner_uuid"].(string)
740         if ok && ownerUUID != "" {
741                 return conn.chooseBackend(ownerUUID).APIClientAuthorizationCreate(ctx, options)
742         }
743         return conn.local.APIClientAuthorizationCreate(ctx, options)
744 }
745
746 func (conn *Conn) APIClientAuthorizationUpdate(ctx context.Context, options arvados.UpdateOptions) (arvados.APIClientAuthorization, error) {
747         if options.BypassFederation {
748                 return conn.local.APIClientAuthorizationUpdate(ctx, options)
749         }
750         return conn.chooseBackend(options.UUID).APIClientAuthorizationUpdate(ctx, options)
751 }
752
753 func (conn *Conn) APIClientAuthorizationDelete(ctx context.Context, options arvados.DeleteOptions) (arvados.APIClientAuthorization, error) {
754         return conn.chooseBackend(options.UUID).APIClientAuthorizationDelete(ctx, options)
755 }
756
757 func (conn *Conn) APIClientAuthorizationList(ctx context.Context, options arvados.ListOptions) (arvados.APIClientAuthorizationList, error) {
758         if id := conn.cluster.Login.LoginCluster; id != "" && id != conn.cluster.ClusterID && !options.BypassFederation {
759                 return conn.chooseBackend(conn.cluster.Login.LoginCluster).APIClientAuthorizationList(ctx, options)
760         }
761         return conn.generated_APIClientAuthorizationList(ctx, options)
762 }
763
764 func (conn *Conn) APIClientAuthorizationGet(ctx context.Context, options arvados.GetOptions) (arvados.APIClientAuthorization, error) {
765         return conn.chooseBackend(options.UUID).APIClientAuthorizationGet(ctx, options)
766 }
767
768 type backend interface {
769         arvados.API
770         BaseURL() url.URL
771 }
772
773 type notFoundError struct{}
774
775 func (notFoundError) HTTPStatus() int { return http.StatusNotFound }
776 func (notFoundError) Error() string   { return "not found" }
777
778 func errStatus(err error) int {
779         if httpErr, ok := err.(interface{ HTTPStatus() int }); ok {
780                 return httpErr.HTTPStatus()
781         }
782         return http.StatusInternalServerError
783 }