mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
chore: make username of userpass case insensitive
close: #1297 Just a workaround for "uppercase usernames do not work". Usernames in different cases (like "Gawr" and "gawR") will now conflict.
This commit is contained in:
parent
8c05217590
commit
e1df8aa4e2
3 changed files with 30 additions and 5 deletions
|
@ -755,7 +755,7 @@ func (c *serverConfig) fillAuthenticator(hyConfig *server.Config) error {
|
||||||
if len(c.Auth.UserPass) == 0 {
|
if len(c.Auth.UserPass) == 0 {
|
||||||
return configError{Field: "auth.userpass", Err: errors.New("empty auth userpass")}
|
return configError{Field: "auth.userpass", Err: errors.New("empty auth userpass")}
|
||||||
}
|
}
|
||||||
hyConfig.Authenticator = &auth.UserPassAuthenticator{Users: c.Auth.UserPass}
|
hyConfig.Authenticator = auth.NewUserPassAuthenticator(c.Auth.UserPass)
|
||||||
return nil
|
return nil
|
||||||
case "http", "https":
|
case "http", "https":
|
||||||
if c.Auth.HTTP.URL == "" {
|
if c.Auth.HTTP.URL == "" {
|
||||||
|
|
|
@ -19,6 +19,16 @@ type UserPassAuthenticator struct {
|
||||||
Users map[string]string
|
Users map[string]string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewUserPassAuthenticator(users map[string]string) *UserPassAuthenticator {
|
||||||
|
// Usernames are case-insensitive, as they are already lowercased by viper.
|
||||||
|
// Lowercase it again on our own to make it explicit.
|
||||||
|
lcUsers := make(map[string]string, len(users))
|
||||||
|
for user, pass := range users {
|
||||||
|
lcUsers[strings.ToLower(user)] = pass
|
||||||
|
}
|
||||||
|
return &UserPassAuthenticator{Users: lcUsers}
|
||||||
|
}
|
||||||
|
|
||||||
func (a *UserPassAuthenticator) Authenticate(addr net.Addr, auth string, tx uint64) (ok bool, id string) {
|
func (a *UserPassAuthenticator) Authenticate(addr net.Addr, auth string, tx uint64) (ok bool, id string) {
|
||||||
u, p, ok := splitUserPass(auth)
|
u, p, ok := splitUserPass(auth)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
@ -36,5 +46,6 @@ func splitUserPass(auth string) (user, pass string, ok bool) {
|
||||||
if len(rs) != 2 {
|
if len(rs) != 2 {
|
||||||
return "", "", false
|
return "", "", false
|
||||||
}
|
}
|
||||||
return rs[0], rs[1], true
|
// Usernames are case-insensitive
|
||||||
|
return strings.ToLower(rs[0]), rs[1], true
|
||||||
}
|
}
|
||||||
|
|
|
@ -85,12 +85,26 @@ func TestUserPassAuthenticator(t *testing.T) {
|
||||||
wantOk: false,
|
wantOk: false,
|
||||||
wantId: "",
|
wantId: "",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: "case insensitive username",
|
||||||
|
fields: fields{
|
||||||
|
Users: map[string]string{
|
||||||
|
"gawR": "gura",
|
||||||
|
"fubuki": "shirakami",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
args: args{
|
||||||
|
addr: nil,
|
||||||
|
auth: "Gawr:gura",
|
||||||
|
tx: 0,
|
||||||
|
},
|
||||||
|
wantOk: true,
|
||||||
|
wantId: "gawr",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
for _, tt := range tests {
|
for _, tt := range tests {
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
t.Run(tt.name, func(t *testing.T) {
|
||||||
a := &UserPassAuthenticator{
|
a := NewUserPassAuthenticator(tt.fields.Users)
|
||||||
Users: tt.fields.Users,
|
|
||||||
}
|
|
||||||
gotOk, gotId := a.Authenticate(tt.args.addr, tt.args.auth, tt.args.tx)
|
gotOk, gotId := a.Authenticate(tt.args.addr, tt.args.auth, tt.args.tx)
|
||||||
if gotOk != tt.wantOk {
|
if gotOk != tt.wantOk {
|
||||||
t.Errorf("Authenticate() gotOk = %v, want %v", gotOk, tt.wantOk)
|
t.Errorf("Authenticate() gotOk = %v, want %v", gotOk, tt.wantOk)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue