util.sasl.oauthbearer: Adjust parsing of GS2 to allow lack of authzid

Partly copied from util.sasl.scram and then reduced a bit.
This commit is contained in:
Kim Alvefur 2023-03-16 13:45:49 +01:00
parent 8aecd19812
commit 2331fc8b65
2 changed files with 5 additions and 4 deletions

View file

@ -33,8 +33,8 @@ local function anonymous(self, message) -- luacheck: ignore 212/message
local username;
repeat
username = generate_random_id():lower();
until self.profile.anonymous(self, username, self.realm);
self.username = username;
self.username = username;
until self.profile.anonymous(self, username, self.realm, message);
return "success"
end

View file

@ -11,10 +11,11 @@ local function oauthbearer(self, message)
return "failure", "not-authorized";
end
local gs2_authzid, kvpairs = message:match("n,a=([^,]+),(.+)$");
if not gs2_authzid then
local gs2_header, kvpairs = message:match("^(n,[^,]*,),(.+)$");
if not gs2_header then
return "failure", "malformed-request";
end
local gs2_authzid = gs2_header:match("^[^,]*,a=([^,]*),$");
local auth_header;
for k, v in kvpairs:gmatch("([a-zA-Z]+)=([\033-\126 \009\r\n]*)\001") do