summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2010-12-14 18:26:59 +0000
committerMatthew Sackman <matthew@rabbitmq.com>2010-12-14 18:26:59 +0000
commite66487e2706659d42d41a76132c822756dc5a72e (patch)
treee308db9543c397f55e09a58f5e2d0eb3ce55826c
parent6265287799c4afbe764a8ead01b1ddf1c8568720 (diff)
downloadrabbitmq-server-e66487e2706659d42d41a76132c822756dc5a72e.tar.gz
Don't use re where it can be easily avoided in the plain auth mech
-rw-r--r--src/rabbit_auth_mechanism_plain.erl22
1 files changed, 14 insertions, 8 deletions
diff --git a/src/rabbit_auth_mechanism_plain.erl b/src/rabbit_auth_mechanism_plain.erl
index e5f8f3e6..fcb7fe6b 100644
--- a/src/rabbit_auth_mechanism_plain.erl
+++ b/src/rabbit_auth_mechanism_plain.erl
@@ -56,11 +56,17 @@ init(_Sock) ->
[].
handle_response(Response, _State) ->
- %% The '%%"' at the end of the next line is for Emacs
- case re:run(Response, "^\\0([^\\0]*)\\0([^\\0]*)$",%%"
- [{capture, all_but_first, binary}]) of
- {match, [User, Pass]} ->
- rabbit_access_control:check_user_pass_login(User, Pass);
- _ ->
- {protocol_error, "response ~p invalid", [Response]}
- end.
+ {User, Response1} = split_on_null(drop_leading_null(Response), []),
+ {Pass, _Response2} = split_on_null(Response1, []),
+ rabbit_access_control:check_user_pass_login(
+ list_to_binary(User), list_to_binary(Pass)).
+
+drop_leading_null(<<0:8, Rest/binary>>) ->
+ Rest.
+
+split_on_null(<<0:8, Rest/binary>>, Acc) ->
+ {lists:reverse(Acc), Rest};
+split_on_null(<<>>, Acc) ->
+ {lists:reverse(Acc), <<>>};
+split_on_null(<<C:8, Rest/binary>>, Acc) ->
+ split_on_null(Rest, [C | Acc]).