ref: Move context.T out of rpc.ServerCall.
The purpose of this change is to make our usage of context.T more
consistent; it was a bit lame that we gave guidance to never wrap
context.T in another type, but were doing it ourselves. The JS
code is also being changed to follow this convention (in separate
CLs), so we'll be consistent between Go and JS as well.
The server implementation used to look like this:
func (*impl) Foo(call rpc.ServerCall, ...)
Now it looks like this:
func (*impl) Foo(ctx *context.T, call rpc.ServerCall, ...)
Also added a ServerCall.Security() function, which returns the
security.Call. The security.Call is still embedded inside
context.T for now; a subsequent change will remove it from
context.T and add an explicit security.Call argument where
necessary. That's a separate CL since some of the choices may be
more controversial, and it's a smaller set of changes.
MultiPart: 2/8
Change-Id: If1ea84b4263836f7ddd82b965c35178a73d314cf
diff --git a/services/internal/acls/aclaccess.go b/services/internal/acls/aclaccess.go
index 9be795e..389fb34 100644
--- a/services/internal/acls/aclaccess.go
+++ b/services/internal/acls/aclaccess.go
@@ -14,7 +14,7 @@
"path/filepath"
"sync"
- "v.io/v23/rpc"
+ "v.io/v23/context"
"v.io/v23/security"
"v.io/v23/security/access"
"v.io/v23/verror"
@@ -202,9 +202,9 @@
// authorization policy (i.e., the AccessList is matched by all blessings
// that are either extensions of one of the local blessings or can be
// extended to form one of the local blessings.)
-func NilAuthPermissions(call rpc.ServerCall) access.Permissions {
+func NilAuthPermissions(ctx *context.T) access.Permissions {
tam := make(access.Permissions)
- lb := security.LocalBlessingNames(call.Context())
+ lb := security.LocalBlessingNames(ctx)
for _, p := range PrefixPatterns(lb) {
for _, tag := range access.AllTypicalTags() {
tam.Add(p, string(tag))