-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release-16.0] vtgate : Disable Automatically setting immediateCallerID to user from static authentication context (#12961) #12984
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
33c4a15
Disables automatically setting immediateCallerID to User from Static …
2a989c0
Set effectiveCallerID based on these rules
fe5b38c
update vtgate help text fixture
b6f905e
Add new test to vtgate_shard_heavy test run
1220a1a
Run EffectiveCallerID tests in vtgate_general_heavy
0a3ddf8
feat: use DialWithOpts in release-16.0 since Dial doesn't exist
GuptaManan100 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,204 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package grpc_server_acls | ||
|
||
import ( | ||
"context" | ||
"flag" | ||
"fmt" | ||
"os" | ||
"path" | ||
"testing" | ||
|
||
"vitess.io/vitess/go/vt/callerid" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
"google.golang.org/grpc" | ||
|
||
"vitess.io/vitess/go/test/endtoend/cluster" | ||
"vitess.io/vitess/go/vt/grpcclient" | ||
"vitess.io/vitess/go/vt/vtgate/grpcvtgateconn" | ||
"vitess.io/vitess/go/vt/vtgate/vtgateconn" | ||
) | ||
|
||
var ( | ||
clusterInstance *cluster.LocalProcessCluster | ||
vtgateGrpcAddress string | ||
hostname = "localhost" | ||
keyspaceName = "ks" | ||
cell = "zone1" | ||
sqlSchema = ` | ||
create table test_table ( | ||
id bigint, | ||
val varchar(128), | ||
primary key(id) | ||
) Engine=InnoDB; | ||
` | ||
grpcServerAuthStaticJSON = ` | ||
[ | ||
{ | ||
"Username": "some_other_user", | ||
"Password": "test_password" | ||
}, | ||
{ | ||
"Username": "another_unrelated_user", | ||
"Password": "test_password" | ||
} | ||
] | ||
` | ||
tableACLJSON = ` | ||
{ | ||
"table_groups": [ | ||
{ | ||
"name": "default", | ||
"table_names_or_prefixes": ["%"], | ||
"readers": ["user_with_access"], | ||
"writers": ["user_with_access"], | ||
"admins": ["user_with_access"] | ||
} | ||
] | ||
} | ||
` | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
|
||
defer cluster.PanicHandler(nil) | ||
flag.Parse() | ||
|
||
exitcode := func() int { | ||
clusterInstance = cluster.NewCluster(cell, hostname) | ||
defer clusterInstance.Teardown() | ||
|
||
// Start topo server | ||
if err := clusterInstance.StartTopo(); err != nil { | ||
return 1 | ||
} | ||
|
||
// Directory for authn / authz config files | ||
authDirectory := path.Join(clusterInstance.TmpDirectory, "auth") | ||
if err := os.Mkdir(authDirectory, 0700); err != nil { | ||
return 1 | ||
} | ||
|
||
// Create grpc_server_auth_static.json file | ||
grpcServerAuthStaticPath := path.Join(authDirectory, "grpc_server_auth_static.json") | ||
if err := createFile(grpcServerAuthStaticPath, grpcServerAuthStaticJSON); err != nil { | ||
return 1 | ||
} | ||
|
||
// Create table_acl.json file | ||
tableACLPath := path.Join(authDirectory, "table_acl.json") | ||
if err := createFile(tableACLPath, tableACLJSON); err != nil { | ||
return 1 | ||
} | ||
|
||
// Configure vtgate to use static auth | ||
clusterInstance.VtGateExtraArgs = []string{ | ||
"--grpc_auth_mode", "static", | ||
"--grpc_auth_static_password_file", grpcServerAuthStaticPath, | ||
"--grpc_use_effective_callerid", | ||
"--grpc-use-static-authentication-callerid", | ||
} | ||
|
||
// Configure vttablet to use table ACL | ||
clusterInstance.VtTabletExtraArgs = []string{ | ||
"--enforce-tableacl-config", | ||
"--queryserver-config-strict-table-acl", | ||
"--table-acl-config", tableACLPath, | ||
} | ||
|
||
// Start keyspace | ||
keyspace := &cluster.Keyspace{ | ||
Name: keyspaceName, | ||
SchemaSQL: sqlSchema, | ||
} | ||
if err := clusterInstance.StartUnshardedKeyspace(*keyspace, 1, false); err != nil { | ||
return 1 | ||
} | ||
|
||
// Start vtgate | ||
if err := clusterInstance.StartVtgate(); err != nil { | ||
clusterInstance.VtgateProcess = cluster.VtgateProcess{} | ||
return 1 | ||
} | ||
vtgateGrpcAddress = fmt.Sprintf("%s:%d", clusterInstance.Hostname, clusterInstance.VtgateGrpcPort) | ||
|
||
return m.Run() | ||
}() | ||
os.Exit(exitcode) | ||
} | ||
|
||
// TestEffectiveCallerIDWithAccess verifies that an authenticated gRPC static user with an effectiveCallerID that has ACL access can execute queries | ||
func TestEffectiveCallerIDWithAccess(t *testing.T) { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
defer cancel() | ||
|
||
vtgateConn, err := dialVTGate(ctx, t, "some_other_user", "test_password") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
defer vtgateConn.Close() | ||
|
||
session := vtgateConn.Session(keyspaceName+"@primary", nil) | ||
query := "SELECT id FROM test_table" | ||
ctx = callerid.NewContext(ctx, callerid.NewEffectiveCallerID("user_with_access", "", ""), nil) | ||
_, err = session.Execute(ctx, query, nil) | ||
assert.NoError(t, err) | ||
} | ||
|
||
// TestEffectiveCallerIDWithNoAccess verifies that an authenticated gRPC static user without an effectiveCallerID that has ACL access cannot execute queries | ||
func TestEffectiveCallerIDWithNoAccess(t *testing.T) { | ||
ctx, cancel := context.WithCancel(context.Background()) | ||
defer cancel() | ||
|
||
vtgateConn, err := dialVTGate(ctx, t, "another_unrelated_user", "test_password") | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
defer vtgateConn.Close() | ||
|
||
session := vtgateConn.Session(keyspaceName+"@primary", nil) | ||
query := "SELECT id FROM test_table" | ||
ctx = callerid.NewContext(ctx, callerid.NewEffectiveCallerID("user_no_access", "", ""), nil) | ||
_, err = session.Execute(ctx, query, nil) | ||
require.Error(t, err) | ||
assert.Contains(t, err.Error(), "Select command denied to user") | ||
assert.Contains(t, err.Error(), "for table 'test_table' (ACL check error)") | ||
} | ||
|
||
func dialVTGate(ctx context.Context, t *testing.T, username string, password string) (*vtgateconn.VTGateConn, error) { | ||
clientCreds := &grpcclient.StaticAuthClientCreds{Username: username, Password: password} | ||
creds := grpc.WithPerRPCCredentials(clientCreds) | ||
dialerFunc := grpcvtgateconn.DialWithOpts(ctx, creds) | ||
dialerName := t.Name() | ||
vtgateconn.RegisterDialer(dialerName, dialerFunc) | ||
return vtgateconn.DialProtocol(ctx, dialerName, vtgateGrpcAddress) | ||
} | ||
|
||
func createFile(path string, contents string) error { | ||
f, err := os.Create(path) | ||
if err != nil { | ||
return err | ||
} | ||
_, err = f.WriteString(contents) | ||
if err != nil { | ||
return err | ||
} | ||
return f.Close() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Phanatic can you fix this?