Skip to content
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

add groups tokenfile #15704

Merged
merged 1 commit into from
Oct 20, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/admin/authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ to apiserver. Currently, tokens last indefinitely, and the token list cannot
be changed without restarting apiserver.

The token file format is implemented in `plugin/pkg/auth/authenticator/token/tokenfile/...`
and is a csv file with 3 columns: token, user name, user uid.
and is a csv file with a minimum of 3 columns: token, user name, user uid, followed by
optional group names.

When using token authentication from an http client the apiserver expects an `Authorization`
header with a value of `Bearer SOMETOKEN`.
Expand Down
5 changes: 5 additions & 0 deletions plugin/pkg/auth/authenticator/token/tokenfile/tokenfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ func NewCSV(path string) (*TokenAuthenticator, error) {

tokens := make(map[string]*user.DefaultInfo)
reader := csv.NewReader(file)
reader.FieldsPerRecord = -1
for {
record, err := reader.Read()
if err == io.EOF {
Expand All @@ -56,6 +57,10 @@ func NewCSV(path string) (*TokenAuthenticator, error) {
UID: record[2],
}
tokens[record[0]] = obj

if len(record) > 3 {
obj.Groups = record[3:]
}
}

return &TokenAuthenticator{
Expand Down
13 changes: 13 additions & 0 deletions plugin/pkg/auth/authenticator/token/tokenfile/tokenfile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ func TestTokenFile(t *testing.T) {
auth, err := newWithContents(t, `
token1,user1,uid1
token2,user2,uid2
token3,user3,uid3,group1,group2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can never add another column to this now, since group is repeated.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if you used double quotes around a comma-separated list of groups, then this would not be a problem.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

strike now while the iron is hot

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lists inside lists is tricky, but I agree about not locking ourselves in

token4,user4,uid4,group2
`)
if err != nil {
t.Fatalf("unable to read tokenfile: %v", err)
Expand All @@ -52,9 +54,19 @@ token2,user2,uid2
},
{
Token: "token3",
User: &user.DefaultInfo{Name: "user3", UID: "uid3", Groups: []string{"group1", "group2"}},
Ok: true,
},
{
Token: "token4",
User: &user.DefaultInfo{Name: "user4", UID: "uid4", Groups: []string{"group2"}},
Ok: true,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need a test of an invalid token (all your test cases are valid tokens now)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've copied in the old false tests from master and squashed down to a single commit again

},
{
Token: "token5",
},
{
Token: "token6",
},
}
for i, testCase := range testCases {
Expand All @@ -66,6 +78,7 @@ token2,user2,uid2
} else if !reflect.DeepEqual(testCase.User, user) {
t.Errorf("%d: expected user %#v, got %#v", i, testCase.User, user)
}

if testCase.Ok != ok {
t.Errorf("%d: expected auth %v, got %v", i, testCase.Ok, ok)
}
Expand Down