Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 5 | package mounttable |
| 6 | |
| 7 | import ( |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 8 | "encoding/json" |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 9 | "os" |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 10 | "reflect" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 11 | "strings" |
| 12 | "sync" |
| 13 | "time" |
| 14 | |
Jiri Simsa | ffceefa | 2015-02-28 11:03:34 -0800 | [diff] [blame] | 15 | "v.io/x/ref/lib/glob" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 16 | |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 17 | "v.io/v23" |
Matt Rosencrantz | 250558f | 2015-03-17 11:37:31 -0700 | [diff] [blame] | 18 | "v.io/v23/context" |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 19 | "v.io/v23/naming" |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 20 | "v.io/v23/rpc" |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 21 | "v.io/v23/security" |
Todd Wang | 387d8a4 | 2015-03-30 17:09:05 -0700 | [diff] [blame] | 22 | "v.io/v23/security/access" |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 23 | "v.io/v23/services/mounttable" |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 24 | "v.io/v23/verror" |
Jiri Simsa | 337af23 | 2015-02-27 14:36:46 -0800 | [diff] [blame] | 25 | "v.io/x/lib/vlog" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 26 | ) |
| 27 | |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 28 | const pkgPath = "v.io/x/ref/services/mounttable/lib" |
| 29 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 30 | var ( |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 31 | errMalformedAddress = verror.Register(pkgPath+".errMalformedAddress", verror.NoRetry, "{1:}{2:} malformed address {3} for mounted server {4}{:_}") |
| 32 | errMTDoesntMatch = verror.Register(pkgPath+".errMTDoesntMatch", verror.NoRetry, "{1:}{2:} MT doesn't match{:_}") |
| 33 | errLeafDoesntMatch = verror.Register(pkgPath+".errLeafDoesntMatch", verror.NoRetry, "{1:}{2:} Leaf doesn't match{:_}") |
| 34 | errCantDeleteRoot = verror.Register(pkgPath+".errCantDeleteRoot", verror.NoRetry, "{1:}{2:} cannot delete root node{:_}") |
| 35 | errNotEmpty = verror.Register(pkgPath+".errNotEmpty", verror.NoRetry, "{1:}{2:} cannot delete {3}: has children{:_}") |
| 36 | errNamingLoop = verror.Register(pkgPath+".errNamingLoop", verror.NoRetry, "{1:}{2:} Loop in namespace{:_}") |
| 37 | ) |
| 38 | |
| 39 | var ( |
| 40 | traverseTags = []mounttable.Tag{mounttable.Read, mounttable.Resolve, mounttable.Create, mounttable.Admin} |
| 41 | createTags = []mounttable.Tag{mounttable.Create, mounttable.Admin} |
| 42 | removeTags = []mounttable.Tag{mounttable.Admin} |
| 43 | mountTags = []mounttable.Tag{mounttable.Mount, mounttable.Admin} |
| 44 | resolveTags = []mounttable.Tag{mounttable.Read, mounttable.Resolve, mounttable.Admin} |
| 45 | globTags = []mounttable.Tag{mounttable.Read, mounttable.Admin} |
| 46 | setTags = []mounttable.Tag{mounttable.Admin} |
| 47 | getTags = []mounttable.Tag{mounttable.Admin, mounttable.Read} |
| 48 | allTags = []mounttable.Tag{mounttable.Read, mounttable.Resolve, mounttable.Admin, mounttable.Mount, mounttable.Create} |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 49 | ) |
| 50 | |
| 51 | // mountTable represents a namespace. One exists per server instance. |
| 52 | type mountTable struct { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 53 | root *node |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 54 | superUsers access.AccessList |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 57 | var _ rpc.Dispatcher = (*mountTable)(nil) |
Benjamin Prosnitz | fdfbf7b | 2014-10-08 09:47:21 -0700 | [diff] [blame] | 58 | |
David Why Use Two When One Will Do Presotto | cfea09a | 2014-05-12 10:45:40 -0700 | [diff] [blame] | 59 | // mountContext represents a client bind. The name is the name that was bound to. |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 60 | type mountContext struct { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 61 | name string |
| 62 | elems []string // parsed elements of name |
| 63 | mt *mountTable |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 64 | } |
| 65 | |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 66 | // mount represents a single mount point. It contains the rooted names of all servers mounted |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 67 | // here. The servers are considered equivalent, i.e., RPCs to a name below this |
| 68 | // point can be sent to any of these servers. |
| 69 | type mount struct { |
| 70 | servers *serverList |
David Why Use Two When One Will Do Presotto | 3da1c79 | 2014-10-03 11:15:53 -0700 | [diff] [blame] | 71 | mt bool |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 72 | leaf bool |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 73 | } |
| 74 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 75 | // node is a single point in the tree representing the mount table. |
| 76 | type node struct { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 77 | sync.RWMutex |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 78 | parent *node |
| 79 | mount *mount |
| 80 | children map[string]*node |
| 81 | acls *TAMG |
| 82 | amTemplate access.Permissions |
| 83 | explicitAccessLists bool |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 84 | } |
| 85 | |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 86 | const templateVar = "%%" |
| 87 | |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 88 | // NewMountTableDispatcher creates a new server that uses the AccessLists specified in |
Asim Shankar | 6888519 | 2014-11-26 12:48:35 -0800 | [diff] [blame] | 89 | // aclfile for authorization. |
| 90 | // |
| 91 | // aclfile is a JSON-encoded mapping from paths in the mounttable to the |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 92 | // access.Permissions for that path. The tags used in the map are the typical |
Todd Wang | 387d8a4 | 2015-03-30 17:09:05 -0700 | [diff] [blame] | 93 | // access tags (the Tag type defined in v.io/v23/security/access). |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 94 | func NewMountTableDispatcher(aclfile string) (rpc.Dispatcher, error) { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 95 | mt := &mountTable{ |
| 96 | root: new(node), |
| 97 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 98 | mt.root.parent = new(node) // just for its lock |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 99 | if err := mt.parseAccessLists(aclfile); err != nil && !os.IsNotExist(err) { |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 100 | return nil, err |
| 101 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 102 | return mt, nil |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 105 | func (mt *mountTable) parseAccessLists(path string) error { |
| 106 | vlog.VI(2).Infof("parseAccessLists(%s)", path) |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 107 | if path == "" { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 108 | return nil |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 109 | } |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 110 | var tams map[string]access.Permissions |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 111 | f, err := os.Open(path) |
| 112 | if err != nil { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 113 | return err |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 114 | } |
| 115 | defer f.Close() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 116 | if err = json.NewDecoder(f).Decode(&tams); err != nil { |
| 117 | return err |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 118 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 119 | for name, tam := range tams { |
| 120 | var elems []string |
| 121 | isPattern := false |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 122 | // Create name and add the AccessList map to it. |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 123 | if len(name) == 0 { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 124 | // If the config file has is an Admin tag on the root AccessList, the |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 125 | // list of Admin users is the equivalent of a super user for |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 126 | // the whole table. This is not updated if the AccessList is later |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 127 | // modified. |
| 128 | if acl, exists := tam[string(mounttable.Admin)]; exists { |
| 129 | mt.superUsers = acl |
| 130 | } |
| 131 | } else { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 132 | // AccessList templates terminate with a %% element. These are very |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 133 | // constrained matches, i.e., the trailing element of the name |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 134 | // is copied into every %% in the AccessList. |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 135 | elems = strings.Split(name, "/") |
| 136 | if elems[len(elems)-1] == templateVar { |
| 137 | isPattern = true |
| 138 | elems = elems[:len(elems)-1] |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | n, err := mt.findNode(nil, elems, true, nil) |
| 143 | if n != nil || err == nil { |
| 144 | vlog.VI(2).Infof("added tam %v to %s", tam, name) |
| 145 | if isPattern { |
| 146 | n.amTemplate = tam |
| 147 | } else { |
| 148 | n.acls, _ = n.acls.Set("", tam) |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 149 | n.explicitAccessLists = true |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 150 | } |
Asim Shankar | 6888519 | 2014-11-26 12:48:35 -0800 | [diff] [blame] | 151 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 152 | n.parent.Unlock() |
| 153 | n.Unlock() |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 154 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 155 | return nil |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 158 | // Lookup implements rpc.Dispatcher.Lookup. |
Robin Thellend | a02fe8f | 2014-11-19 09:58:29 -0800 | [diff] [blame] | 159 | func (mt *mountTable) Lookup(name string) (interface{}, security.Authorizer, error) { |
Cosmos Nicolaou | 6933540 | 2014-05-20 14:41:58 -0700 | [diff] [blame] | 160 | vlog.VI(2).Infof("*********************Lookup %s", name) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 161 | ms := &mountContext{ |
| 162 | name: name, |
| 163 | mt: mt, |
| 164 | } |
| 165 | if len(name) > 0 { |
| 166 | ms.elems = strings.Split(name, "/") |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 167 | } |
Cosmos Nicolaou | 710daa2 | 2014-11-11 19:39:18 -0800 | [diff] [blame] | 168 | return mounttable.MountTableServer(ms), ms, nil |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 171 | // isActive returns true if a mount has unexpired servers attached. |
| 172 | func (m *mount) isActive() bool { |
| 173 | if m == nil { |
| 174 | return false |
| 175 | } |
| 176 | return m.servers.removeExpired() > 0 |
| 177 | } |
| 178 | |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 179 | // satisfies returns no error if the ctx + n.acls satisfies the associated one of the required Tags. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 180 | func (n *node) satisfies(mt *mountTable, call rpc.ServerCall, tags []mounttable.Tag) error { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 181 | // No AccessLists means everything (for now). |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 182 | if call == nil || tags == nil || n.acls == nil { |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 183 | return nil |
| 184 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 185 | // "Self-RPCs" are always authorized. |
Matt Rosencrantz | 311378b | 2015-03-25 15:26:12 -0700 | [diff] [blame] | 186 | secCall := security.GetCall(call.Context()) |
| 187 | if l, r := secCall.LocalBlessings().PublicKey(), secCall.RemoteBlessings().PublicKey(); l != nil && reflect.DeepEqual(l, r) { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 188 | return nil |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 189 | } |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 190 | // Match client's blessings against the AccessLists. |
Ankur | 9e75e7f | 2015-03-18 18:48:41 -0700 | [diff] [blame] | 191 | blessings, invalidB := security.RemoteBlessingNames(call.Context()) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 192 | for _, tag := range tags { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 193 | if acl, exists := n.acls.GetPermissionsForTag(string(tag)); exists && acl.Includes(blessings...) { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 194 | return nil |
| 195 | } |
| 196 | } |
| 197 | if mt.superUsers.Includes(blessings...) { |
| 198 | return nil |
| 199 | } |
Ryan Brown | 41093a9 | 2015-02-10 10:59:14 -0800 | [diff] [blame] | 200 | if len(invalidB) > 0 { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 201 | return verror.New(verror.ErrNoAccess, call.Context(), blessings, invalidB) |
Ryan Brown | 41093a9 | 2015-02-10 10:59:14 -0800 | [diff] [blame] | 202 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 203 | return verror.New(verror.ErrNoAccess, call.Context(), blessings) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 204 | } |
| 205 | |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 206 | func expand(acl *access.AccessList, name string) *access.AccessList { |
| 207 | newAccessList := new(access.AccessList) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 208 | for _, bp := range acl.In { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 209 | newAccessList.In = append(newAccessList.In, security.BlessingPattern(strings.Replace(string(bp), templateVar, name, -1))) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 210 | } |
| 211 | for _, bp := range acl.NotIn { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 212 | newAccessList.NotIn = append(newAccessList.NotIn, strings.Replace(bp, templateVar, name, -1)) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 213 | } |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 214 | return newAccessList |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | // satisfiesTemplate returns no error if the ctx + n.amTemplate satisfies the associated one of |
| 218 | // the required Tags. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 219 | func (n *node) satisfiesTemplate(call rpc.ServerCall, tags []mounttable.Tag, name string) error { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 220 | if n.amTemplate == nil { |
| 221 | return nil |
| 222 | } |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 223 | // Match client's blessings against the AccessLists. |
Ankur | 9e75e7f | 2015-03-18 18:48:41 -0700 | [diff] [blame] | 224 | blessings, invalidB := security.RemoteBlessingNames(call.Context()) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 225 | for _, tag := range tags { |
| 226 | if acl, exists := n.amTemplate[string(tag)]; exists && expand(&acl, name).Includes(blessings...) { |
| 227 | return nil |
| 228 | } |
| 229 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 230 | return verror.New(verror.ErrNoAccess, call.Context(), blessings, invalidB) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 231 | } |
| 232 | |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 233 | // copyAccessLists copies one nodes AccessLists to another and adds the clients blessings as |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 234 | // patterns to the Admin tag. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 235 | func copyAccessLists(call rpc.ServerCall, cur *node) *TAMG { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 236 | if call == nil { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 237 | return nil |
| 238 | } |
| 239 | if cur.acls == nil { |
| 240 | return nil |
| 241 | } |
| 242 | acls := cur.acls.Copy() |
Ankur | 9e75e7f | 2015-03-18 18:48:41 -0700 | [diff] [blame] | 243 | blessings, _ := security.RemoteBlessingNames(call.Context()) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 244 | for _, b := range blessings { |
| 245 | acls.Add(security.BlessingPattern(b), string(mounttable.Admin)) |
| 246 | } |
| 247 | return acls |
| 248 | } |
| 249 | |
| 250 | // createTAMGFromTemplate creates a new TAMG from the template subsituting name for %% everywhere. |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 251 | func createTAMGFromTemplate(tam access.Permissions, name string) *TAMG { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 252 | tamg := NewTAMG() |
| 253 | for tag, acl := range tam { |
| 254 | tamg.tam[tag] = *expand(&acl, name) |
| 255 | } |
| 256 | return tamg |
| 257 | } |
| 258 | |
| 259 | // traverse returns the node for the path represented by elems. If none exists and create is false, return nil. |
| 260 | // Otherwise create the path and return a pointer to the terminal node. If a mount point is encountered |
| 261 | // while following the path, return that node and any remaining elems. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 262 | // |
| 263 | // If it returns a node, both the node and its parent are locked. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 264 | func (mt *mountTable) traverse(call rpc.ServerCall, elems []string, create bool) (*node, []string, error) { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 265 | // Invariant is that the current node and its parent are both locked. |
| 266 | cur := mt.root |
| 267 | cur.parent.Lock() |
| 268 | cur.Lock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 269 | for i, e := range elems { |
| 270 | vlog.VI(2).Infof("satisfying %v %v", elems[0:i], *cur) |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 271 | if call != nil { |
| 272 | if err := cur.satisfies(mt, call, traverseTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 273 | cur.parent.Unlock() |
| 274 | cur.Unlock() |
| 275 | return nil, nil, err |
| 276 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 277 | } |
| 278 | // If we hit another mount table, we're done. |
| 279 | if cur.mount.isActive() { |
| 280 | return cur, elems[i:], nil |
| 281 | } |
| 282 | // Walk the children looking for a match. |
| 283 | c, ok := cur.children[e] |
| 284 | if ok { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 285 | cur.parent.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 286 | cur = c |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 287 | cur.Lock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 288 | continue |
| 289 | } |
| 290 | if !create { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 291 | cur.parent.Unlock() |
| 292 | cur.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 293 | return nil, nil, nil |
| 294 | } |
| 295 | // Create a new node and keep recursing. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 296 | cur.parent.Unlock() |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 297 | if err := cur.satisfies(mt, call, createTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 298 | cur.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 299 | return nil, nil, err |
| 300 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 301 | if call != nil { |
| 302 | if err := cur.satisfiesTemplate(call, createTags, e); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 303 | cur.Unlock() |
| 304 | return nil, nil, err |
| 305 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 306 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 307 | // At this point cur is still locked, OK to use and change it. |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 308 | next := new(node) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 309 | next.parent = cur |
| 310 | if cur.amTemplate != nil { |
| 311 | next.acls = createTAMGFromTemplate(cur.amTemplate, e) |
| 312 | } else { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 313 | next.acls = copyAccessLists(call, cur) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 314 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 315 | if cur.children == nil { |
| 316 | cur.children = make(map[string]*node) |
| 317 | } |
| 318 | cur.children[e] = next |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 319 | cur = next |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 320 | cur.Lock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 321 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 322 | // Only way out of the loop is via a return or exhausting all elements. In |
| 323 | // the latter case both cur and cur.parent are locked. |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 324 | return cur, nil, nil |
| 325 | } |
| 326 | |
| 327 | // findNode finds a node in the table and optionally creates a path to it. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 328 | // |
| 329 | // If a node is found, on return it and its parent are locked. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 330 | func (mt *mountTable) findNode(call rpc.ServerCall, elems []string, create bool, tags []mounttable.Tag) (*node, error) { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 331 | n, nelems, err := mt.traverse(call, elems, create) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 332 | if err != nil { |
| 333 | return nil, err |
| 334 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 335 | if n == nil { |
| 336 | return nil, nil |
| 337 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 338 | if len(nelems) > 0 { |
| 339 | n.parent.Unlock() |
| 340 | n.Unlock() |
| 341 | return nil, nil |
| 342 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 343 | if err := n.satisfies(mt, call, tags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 344 | n.parent.Unlock() |
| 345 | n.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 346 | return nil, err |
| 347 | } |
| 348 | return n, nil |
| 349 | } |
| 350 | |
| 351 | // findMountPoint returns the first mount point encountered in the path and |
| 352 | // any elements remaining of the path. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 353 | // |
| 354 | // If a mountpoint is found, on return it and its parent are locked. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 355 | func (mt *mountTable) findMountPoint(call rpc.ServerCall, elems []string) (*node, []string, error) { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 356 | n, nelems, err := mt.traverse(call, elems, false) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 357 | if err != nil { |
| 358 | return nil, nil, err |
| 359 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 360 | if n == nil { |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 361 | return nil, nil, nil |
| 362 | } |
David Why Use Two When One Will Do Presotto | c67ad7c | 2015-03-04 14:27:42 -0800 | [diff] [blame] | 363 | // If we can't resolve it, we can't use it. |
| 364 | if err := n.satisfies(mt, call, resolveTags); err != nil { |
| 365 | n.parent.Unlock() |
| 366 | n.Unlock() |
| 367 | return nil, nil, err |
| 368 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 369 | if !n.mount.isActive() { |
| 370 | removed := n.removeUseless() |
| 371 | n.parent.Unlock() |
| 372 | n.Unlock() |
| 373 | // If we removed the node, see if we can remove any of its |
| 374 | // ascendants. |
| 375 | if removed { |
| 376 | mt.removeUselessRecursive(elems[:len(elems)-1]) |
| 377 | } |
| 378 | return nil, nil, nil |
| 379 | } |
| 380 | return n, nelems, nil |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 381 | } |
| 382 | |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 383 | // Authorize verifies that the client has access to the requested node. |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 384 | // Since we do the check at the time of access, we always return OK here. |
Matt Rosencrantz | 250558f | 2015-03-17 11:37:31 -0700 | [diff] [blame] | 385 | func (ms *mountContext) Authorize(*context.T) error { |
Ryan Brown | ac97265 | 2014-05-19 10:57:32 -0700 | [diff] [blame] | 386 | return nil |
| 387 | } |
| 388 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 389 | // ResolveStep returns the next server in a resolution, the name remaining below that server, |
| 390 | // and whether or not that server is another mount table. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 391 | func (ms *mountContext) ResolveStepX(call rpc.ServerCall) (entry naming.MountEntry, err error) { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 392 | return ms.ResolveStep(call) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 393 | } |
| 394 | |
David Why Use Two When One Will Do Presotto | d3aa663 | 2015-01-20 10:15:39 -0800 | [diff] [blame] | 395 | // ResolveStep returns the next server in a resolution in the form of a MountEntry. The name |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 396 | // in the mount entry is the name relative to the server's root. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 397 | func (ms *mountContext) ResolveStep(call rpc.ServerCall) (entry naming.MountEntry, err error) { |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 398 | vlog.VI(2).Infof("ResolveStep %q", ms.name) |
| 399 | mt := ms.mt |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 400 | // Find the next mount point for the name. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 401 | n, elems, werr := mt.findMountPoint(call, ms.elems) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 402 | if werr != nil { |
| 403 | err = werr |
| 404 | return |
| 405 | } |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 406 | if n == nil { |
| 407 | entry.Name = ms.name |
| 408 | if len(ms.elems) == 0 { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 409 | err = verror.New(naming.ErrNoSuchNameRoot, call.Context(), ms.name) |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 410 | } else { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 411 | err = verror.New(naming.ErrNoSuchName, call.Context(), ms.name) |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 412 | } |
| 413 | return |
| 414 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 415 | n.parent.Unlock() |
| 416 | defer n.Unlock() |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 417 | entry.Servers = n.mount.servers.copyToSlice() |
David Why Use Two When One Will Do Presotto | adf0ca1 | 2014-11-13 10:49:01 -0800 | [diff] [blame] | 418 | entry.Name = strings.Join(elems, "/") |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 419 | entry.ServesMountTable = n.mount.mt |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 420 | entry.IsLeaf = n.mount.leaf |
David Why Use Two When One Will Do Presotto | 6f9f574 | 2014-10-20 16:27:05 -0700 | [diff] [blame] | 421 | return |
| 422 | } |
| 423 | |
Todd Wang | 1aa5769 | 2014-11-11 13:53:29 -0800 | [diff] [blame] | 424 | func hasMTFlag(flags naming.MountFlag) bool { |
| 425 | return (flags & naming.MT) == naming.MT |
David Why Use Two When One Will Do Presotto | 3da1c79 | 2014-10-03 11:15:53 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 428 | func hasLeafFlag(flags naming.MountFlag) bool { |
| 429 | return (flags & naming.Leaf) == naming.Leaf |
| 430 | } |
| 431 | |
Todd Wang | 1aa5769 | 2014-11-11 13:53:29 -0800 | [diff] [blame] | 432 | func hasReplaceFlag(flags naming.MountFlag) bool { |
| 433 | return (flags & naming.Replace) == naming.Replace |
David Why Use Two When One Will Do Presotto | 3da1c79 | 2014-10-03 11:15:53 -0700 | [diff] [blame] | 434 | } |
| 435 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 436 | // Mount a server onto the name in the receiver. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 437 | func (ms *mountContext) Mount(call rpc.ServerCall, server string, ttlsecs uint32, flags naming.MountFlag) error { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 438 | mt := ms.mt |
| 439 | if ttlsecs == 0 { |
| 440 | ttlsecs = 10 * 365 * 24 * 60 * 60 // a really long time |
| 441 | } |
Asim Shankar | 43d1f93 | 2015-03-24 20:57:56 -0700 | [diff] [blame] | 442 | vlog.VI(2).Infof("*********************Mount %q -> %s", ms.name, server) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 443 | |
Cosmos Nicolaou | 8bd8e10 | 2015-01-13 21:52:53 -0800 | [diff] [blame] | 444 | // Make sure the server address is reasonable. |
| 445 | epString := server |
| 446 | if naming.Rooted(server) { |
| 447 | epString, _ = naming.SplitAddressName(server) |
| 448 | } |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 449 | _, err := v23.NewEndpoint(epString) |
David Why Use Two When One Will Do Presotto | 59a254c | 2014-10-30 13:09:29 -0700 | [diff] [blame] | 450 | if err != nil { |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 451 | return verror.New(errMalformedAddress, call.Context(), epString, server) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | // Find/create node in namespace and add the mount. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 455 | n, werr := mt.findNode(call, ms.elems, true, mountTags) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 456 | if werr != nil { |
| 457 | return werr |
| 458 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 459 | if n == nil { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 460 | return verror.New(naming.ErrNoSuchNameRoot, call.Context(), ms.name) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 461 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 462 | // We don't need the parent lock |
| 463 | n.parent.Unlock() |
| 464 | defer n.Unlock() |
David Why Use Two When One Will Do Presotto | 3da1c79 | 2014-10-03 11:15:53 -0700 | [diff] [blame] | 465 | if hasReplaceFlag(flags) { |
| 466 | n.mount = nil |
| 467 | } |
David Why Use Two When One Will Do Presotto | c28686e | 2014-11-05 11:19:29 -0800 | [diff] [blame] | 468 | wantMT := hasMTFlag(flags) |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 469 | wantLeaf := hasLeafFlag(flags) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 470 | if n.mount == nil { |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 471 | n.mount = &mount{servers: newServerList(), mt: wantMT, leaf: wantLeaf} |
David Why Use Two When One Will Do Presotto | 3da1c79 | 2014-10-03 11:15:53 -0700 | [diff] [blame] | 472 | } else { |
David Why Use Two When One Will Do Presotto | 59a254c | 2014-10-30 13:09:29 -0700 | [diff] [blame] | 473 | if wantMT != n.mount.mt { |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 474 | return verror.New(errMTDoesntMatch, call.Context()) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 475 | } |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 476 | if wantLeaf != n.mount.leaf { |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 477 | return verror.New(errLeafDoesntMatch, call.Context()) |
Robin Thellend | 89e9523 | 2015-03-24 13:48:48 -0700 | [diff] [blame] | 478 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 479 | } |
Asim Shankar | 43d1f93 | 2015-03-24 20:57:56 -0700 | [diff] [blame] | 480 | n.mount.servers.add(server, time.Duration(ttlsecs)*time.Second) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 481 | return nil |
| 482 | } |
| 483 | |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 484 | // fullName is for debugging only and should not normally be called. |
| 485 | func (n *node) fullName() string { |
| 486 | if n.parent == nil || n.parent.parent == nil { |
| 487 | return "" |
| 488 | } |
| 489 | for k, c := range n.parent.children { |
| 490 | if c == n { |
| 491 | return n.parent.fullName() + "/" + k |
| 492 | } |
| 493 | } |
| 494 | return n.parent.fullName() + "/" + "?" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | // removeUseless removes a node and all of its ascendants that are not useful. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 498 | // |
| 499 | // We assume both n and n.parent are locked. |
| 500 | func (n *node) removeUseless() bool { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 501 | if len(n.children) > 0 || n.mount.isActive() || n.explicitAccessLists { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 502 | return false |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 503 | } |
| 504 | for k, c := range n.parent.children { |
| 505 | if c == n { |
| 506 | delete(n.parent.children, k) |
| 507 | break |
| 508 | } |
| 509 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 510 | return true |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 511 | } |
| 512 | |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 513 | // removeUselessRecursive removes any useless nodes on the tail of the path. |
| 514 | func (mt *mountTable) removeUselessRecursive(elems []string) { |
| 515 | for i := len(elems); i > 0; i-- { |
| 516 | n, nelems, _ := mt.traverse(nil, elems[:i-1], false) |
| 517 | if n == nil { |
| 518 | break |
| 519 | } |
| 520 | if nelems != nil { |
| 521 | n.parent.Unlock() |
| 522 | n.Unlock() |
| 523 | break |
| 524 | } |
| 525 | removed := n.removeUseless() |
| 526 | n.parent.Unlock() |
| 527 | n.Unlock() |
| 528 | if !removed { |
| 529 | break |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 530 | } |
| 531 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 532 | } |
| 533 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 534 | // Unmount removes servers from the name in the receiver. If server is specified, only that |
| 535 | // server is removed. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 536 | func (ms *mountContext) Unmount(call rpc.ServerCall, server string) error { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 537 | vlog.VI(2).Infof("*********************Unmount %q, %s", ms.name, server) |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 538 | mt := ms.mt |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 539 | n, err := mt.findNode(call, ms.elems, false, mountTags) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 540 | if err != nil { |
| 541 | return err |
| 542 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 543 | if n == nil { |
| 544 | return nil |
| 545 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 546 | if server == "" { |
| 547 | n.mount = nil |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 548 | } else if n.mount != nil && n.mount.servers.remove(server) == 0 { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 549 | n.mount = nil |
| 550 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 551 | removed := n.removeUseless() |
| 552 | n.parent.Unlock() |
| 553 | n.Unlock() |
| 554 | if removed { |
| 555 | // If we removed the node, see if we can also remove |
| 556 | // any of its ascendants. |
| 557 | mt.removeUselessRecursive(ms.elems[:len(ms.elems)-1]) |
| 558 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 559 | return nil |
| 560 | } |
| 561 | |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 562 | // Delete removes the receiver. If all is true, any subtree is also removed. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 563 | func (ms *mountContext) Delete(call rpc.ServerCall, deleteSubTree bool) error { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 564 | vlog.VI(2).Infof("*********************Delete %q, %v", ms.name, deleteSubTree) |
| 565 | if len(ms.elems) == 0 { |
| 566 | // We can't delete the root. |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 567 | return verror.New(errCantDeleteRoot, call.Context()) |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 568 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 569 | mt := ms.mt |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 570 | // Find and lock the parent node. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 571 | n, err := mt.findNode(call, ms.elems, false, removeTags) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 572 | if err != nil { |
| 573 | return err |
| 574 | } |
| 575 | if n == nil { |
| 576 | return nil |
| 577 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 578 | defer n.parent.Unlock() |
| 579 | defer n.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 580 | if !deleteSubTree && len(n.children) > 0 { |
Mike Burrows | cf76681 | 2015-03-31 16:01:50 -0700 | [diff] [blame] | 581 | return verror.New(errNotEmpty, call.Context(), ms.name) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 582 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 583 | delete(n.parent.children, ms.elems[len(ms.elems)-1]) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 584 | return nil |
| 585 | } |
| 586 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 587 | // A struct holding a partial result of Glob. |
| 588 | type globEntry struct { |
| 589 | n *node |
| 590 | name string |
| 591 | } |
| 592 | |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 593 | // globStep is called with n and n.parent locked. Returns with both unlocked. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 594 | func (mt *mountTable) globStep(n *node, name string, pattern *glob.Glob, call rpc.ServerCall, ch chan<- naming.GlobReply) { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 595 | vlog.VI(2).Infof("globStep(%s, %s)", name, pattern) |
| 596 | |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 597 | // If this is a mount point, we're done. |
| 598 | if m := n.mount; m != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 599 | removed := n.removeUseless() |
| 600 | if removed { |
| 601 | n.parent.Unlock() |
| 602 | n.Unlock() |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 603 | return |
| 604 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 605 | // Don't need the parent lock anymore. |
| 606 | n.parent.Unlock() |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 607 | me := naming.MountEntry{ |
David Why Use Two When One Will Do Presotto | c67ad7c | 2015-03-04 14:27:42 -0800 | [diff] [blame] | 608 | Name: name, |
| 609 | } |
| 610 | // Only fill in the mount info if we can resolve this name. |
| 611 | if err := n.satisfies(mt, call, resolveTags); err == nil { |
| 612 | me.Servers = m.servers.copyToSlice() |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 613 | me.ServesMountTable = n.mount.mt |
Robin Thellend | 0064374 | 2015-04-01 10:36:50 -0700 | [diff] [blame] | 614 | me.IsLeaf = n.mount.leaf |
David Why Use Two When One Will Do Presotto | c67ad7c | 2015-03-04 14:27:42 -0800 | [diff] [blame] | 615 | } else { |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 616 | me.Servers = []naming.MountedServer{} |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 617 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 618 | // Unlock while we are sending on the channel to avoid livelock. |
| 619 | n.Unlock() |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 620 | ch <- naming.GlobReplyEntry{me} |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 621 | return |
| 622 | } |
| 623 | |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 624 | if !pattern.Finished() { |
| 625 | // Recurse through the children. OK if client has read access to the |
| 626 | // directory or has traverse access to the directory and any access to the child. |
| 627 | allAllowed := true |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 628 | if err := n.satisfies(mt, call, globTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 629 | allAllowed = false |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 630 | if err := n.satisfies(mt, call, traverseTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 631 | n.parent.Unlock() |
| 632 | n.Unlock() |
| 633 | return |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 634 | } |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 635 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 636 | children := make(map[string]*node, len(n.children)) |
| 637 | for k, c := range n.children { |
| 638 | children[k] = c |
| 639 | } |
| 640 | n.parent.Unlock() |
| 641 | for k, c := range children { |
| 642 | // At this point, n lock is held. |
| 643 | if ok, _, suffix := pattern.MatchInitialSegment(k); ok { |
| 644 | c.Lock() |
| 645 | if !allAllowed { |
| 646 | // If child allows any access show it. Otherwise, skip. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 647 | if err := c.satisfies(mt, call, allTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 648 | c.Unlock() |
| 649 | continue |
| 650 | } |
| 651 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 652 | mt.globStep(c, naming.Join(name, k), suffix, call, ch) |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 653 | n.Lock() |
| 654 | } |
| 655 | } |
| 656 | // Relock the node and its parent in the correct order. |
| 657 | // Safe to access n.parent when its unlocked because it never changes. |
| 658 | n.Unlock() |
| 659 | n.parent.Lock() |
| 660 | n.Lock() |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 661 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 662 | |
| 663 | // Remove if no longer useful. |
| 664 | if n.removeUseless() || pattern.Len() != 0 { |
| 665 | n.parent.Unlock() |
| 666 | n.Unlock() |
| 667 | return |
| 668 | } |
| 669 | |
| 670 | // To see anything, one has to have some access to the node. Don't need the parent lock anymore. |
| 671 | n.parent.Unlock() |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 672 | if err := n.satisfies(mt, call, allTags); err != nil { |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 673 | n.Unlock() |
| 674 | return |
| 675 | } |
| 676 | // Unlock while we are sending on the channel to avoid livelock. |
| 677 | n.Unlock() |
David Why Use Two When One Will Do Presotto | 0696678 | 2015-03-18 17:00:25 -0700 | [diff] [blame] | 678 | // Intermediate nodes are marked as serving a mounttable since they answer the mounttable methods. |
| 679 | ch <- naming.GlobReplyEntry{naming.MountEntry{Name: name, ServesMountTable: true}} |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | // Glob finds matches in the namespace. If we reach a mount point before matching the |
| 683 | // whole pattern, return that mount point. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 684 | // |
Suharsh Sivakumar | 8646ba6 | 2015-03-18 15:22:28 -0700 | [diff] [blame] | 685 | // pattern is a glob pattern as defined by the v.io/x/ref/lib/glob package. |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 686 | // |
| 687 | // To avoid livelocking an application, Glob grabs and releases locks as it descends the tree |
| 688 | // and holds no locks while writing to the channel. As such a glob can interleave with other |
| 689 | // operations that add or remove nodes. The result returned by glob may, therefore, represent |
| 690 | // a state that never existed in the mounttable. For example, if someone removes c/d and later |
| 691 | // adds a/b while a Glob is in progress, the Glob may return a set of nodes that includes both |
| 692 | // c/d and a/b. |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 693 | func (ms *mountContext) Glob__(call rpc.ServerCall, pattern string) (<-chan naming.GlobReply, error) { |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 694 | vlog.VI(2).Infof("mt.Glob %v", ms.elems) |
| 695 | |
| 696 | g, err := glob.Parse(pattern) |
| 697 | if err != nil { |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 698 | return nil, err |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 699 | } |
| 700 | |
| 701 | mt := ms.mt |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 702 | ch := make(chan naming.GlobReply) |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 703 | go func() { |
| 704 | defer close(ch) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 705 | // If there was an access error, just ignore the entry, i.e., make it invisible. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 706 | n, err := mt.findNode(call, ms.elems, false, nil) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 707 | if err != nil { |
| 708 | return |
| 709 | } |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 710 | // If the current name is not fully resolvable on this nameserver we |
| 711 | // don't need to evaluate the glob expression. Send a partially resolved |
| 712 | // name back to the client. |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 713 | if n == nil { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 714 | ms.linkToLeaf(call, ch) |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 715 | return |
| 716 | } |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 717 | mt.globStep(n, "", g, call, ch) |
Robin Thellend | 39ac323 | 2014-12-02 09:50:41 -0800 | [diff] [blame] | 718 | }() |
| 719 | return ch, nil |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 720 | } |
Robin Thellend | 434e39f | 2014-08-27 14:46:27 -0700 | [diff] [blame] | 721 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 722 | func (ms *mountContext) linkToLeaf(call rpc.ServerCall, ch chan<- naming.GlobReply) { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 723 | n, elems, err := ms.mt.findMountPoint(call, ms.elems) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 724 | if err != nil || n == nil { |
Robin Thellend | 434e39f | 2014-08-27 14:46:27 -0700 | [diff] [blame] | 725 | return |
| 726 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 727 | n.parent.Unlock() |
Robin Thellend | 434e39f | 2014-08-27 14:46:27 -0700 | [diff] [blame] | 728 | servers := n.mount.servers.copyToSlice() |
| 729 | for i, s := range servers { |
David Why Use Two When One Will Do Presotto | adf0ca1 | 2014-11-13 10:49:01 -0800 | [diff] [blame] | 730 | servers[i].Server = naming.Join(s.Server, strings.Join(elems, "/")) |
Robin Thellend | 434e39f | 2014-08-27 14:46:27 -0700 | [diff] [blame] | 731 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 732 | n.Unlock() |
Todd Wang | 2331dd0 | 2015-03-17 15:38:39 -0700 | [diff] [blame] | 733 | ch <- naming.GlobReplyEntry{naming.MountEntry{Name: "", Servers: servers}} |
Robin Thellend | 434e39f | 2014-08-27 14:46:27 -0700 | [diff] [blame] | 734 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 735 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 736 | func (ms *mountContext) SetPermissions(call rpc.ServerCall, tam access.Permissions, etag string) error { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 737 | vlog.VI(2).Infof("SetPermissions %q", ms.name) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 738 | mt := ms.mt |
| 739 | |
| 740 | // Find/create node in namespace and add the mount. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 741 | n, err := mt.findNode(call, ms.elems, true, setTags) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 742 | if err != nil { |
| 743 | return err |
| 744 | } |
| 745 | if n == nil { |
| 746 | // TODO(p): can this even happen? |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 747 | return verror.New(naming.ErrNoSuchName, call.Context(), ms.name) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 748 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 749 | n.parent.Unlock() |
| 750 | defer n.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 751 | n.acls, err = n.acls.Set(etag, tam) |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 752 | if err == nil { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 753 | n.explicitAccessLists = true |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 754 | } |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 755 | return err |
| 756 | } |
| 757 | |
Matt Rosencrantz | 94502cf | 2015-03-18 09:43:44 -0700 | [diff] [blame] | 758 | func (ms *mountContext) GetPermissions(call rpc.ServerCall) (access.Permissions, string, error) { |
Benjamin Prosnitz | b60efb9 | 2015-03-11 17:47:43 -0700 | [diff] [blame] | 759 | vlog.VI(2).Infof("GetPermissions %q", ms.name) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 760 | mt := ms.mt |
| 761 | |
| 762 | // Find node in namespace and add the mount. |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 763 | n, err := mt.findNode(call, ms.elems, false, getTags) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 764 | if err != nil { |
| 765 | return nil, "", err |
| 766 | } |
| 767 | if n == nil { |
Matt Rosencrantz | 9dce9b2 | 2015-03-02 10:48:37 -0800 | [diff] [blame] | 768 | return nil, "", verror.New(naming.ErrNoSuchName, call.Context(), ms.name) |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 769 | } |
David Why Use Two When One Will Do Presotto | a410017 | 2015-01-14 09:25:45 -0800 | [diff] [blame] | 770 | n.parent.Unlock() |
| 771 | defer n.Unlock() |
David Why Use Two When One Will Do Presotto | ab2bcf2 | 2015-01-05 13:14:01 -0800 | [diff] [blame] | 772 | etag, tam := n.acls.Get() |
| 773 | return tam, etag, nil |
| 774 | } |