| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- %%--------------------------------------------------------------------
- %% Copyright (c) 2013-2018 EMQ Enterprise, Inc. (http://emqtt.io)
- %%
- %% 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.
- %%--------------------------------------------------------------------
- -module(emqttd_access_rule).
- -author("Feng Lee <feng@emqtt.io>").
- -include("emqttd.hrl").
- -type(who() :: all | binary() |
- {ipaddr, esockd_cidr:cidr_string()} |
- {client, binary()} |
- {user, binary()}).
- -type(access() :: subscribe | publish | pubsub).
- -type(topic() :: binary()).
- -type(rule() :: {allow, all} |
- {allow, who(), access(), list(topic())} |
- {deny, all} |
- {deny, who(), access(), list(topic())}).
- -export_type([rule/0]).
- -export([compile/1, match/3]).
- -define(ALLOW_DENY(A), ((A =:= allow) orelse (A =:= deny))).
- %% @doc Compile Access Rule.
- compile({A, all}) when ?ALLOW_DENY(A) ->
- {A, all};
- compile({A, Who, Access, Topic}) when ?ALLOW_DENY(A) andalso is_binary(Topic) ->
- {A, compile(who, Who), Access, [compile(topic, Topic)]};
- compile({A, Who, Access, TopicFilters}) when ?ALLOW_DENY(A) ->
- {A, compile(who, Who), Access, [compile(topic, Topic) || Topic <- TopicFilters]}.
- compile(who, all) ->
- all;
- compile(who, {ipaddr, CIDR}) ->
- {ipaddr, esockd_cidr:parse(CIDR, true)};
- compile(who, {client, all}) ->
- {client, all};
- compile(who, {client, ClientId}) ->
- {client, bin(ClientId)};
- compile(who, {user, all}) ->
- {user, all};
- compile(who, {user, Username}) ->
- {user, bin(Username)};
- compile(who, {'and', Conds}) when is_list(Conds) ->
- {'and', [compile(who, Cond) || Cond <- Conds]};
- compile(who, {'or', Conds}) when is_list(Conds) ->
- {'or', [compile(who, Cond) || Cond <- Conds]};
- compile(topic, {eq, Topic}) ->
- {eq, emqttd_topic:words(bin(Topic))};
- compile(topic, Topic) ->
- Words = emqttd_topic:words(bin(Topic)),
- case 'pattern?'(Words) of
- true -> {pattern, Words};
- false -> Words
- end.
- 'pattern?'(Words) ->
- lists:member(<<"%u">>, Words)
- orelse lists:member(<<"%c">>, Words).
- bin(L) when is_list(L) ->
- list_to_binary(L);
- bin(B) when is_binary(B) ->
- B.
- %% @doc Match Access Rule
- -spec(match(mqtt_client(), topic(), rule()) -> {matched, allow} | {matched, deny} | nomatch).
- match(_Client, _Topic, {AllowDeny, all}) when (AllowDeny =:= allow) orelse (AllowDeny =:= deny) ->
- {matched, AllowDeny};
- match(Client, Topic, {AllowDeny, Who, _PubSub, TopicFilters})
- when (AllowDeny =:= allow) orelse (AllowDeny =:= deny) ->
- case match_who(Client, Who) andalso match_topics(Client, Topic, TopicFilters) of
- true -> {matched, AllowDeny};
- false -> nomatch
- end.
- match_who(_Client, all) ->
- true;
- match_who(_Client, {user, all}) ->
- true;
- match_who(_Client, {client, all}) ->
- true;
- match_who(#mqtt_client{client_id = ClientId}, {client, ClientId}) ->
- true;
- match_who(#mqtt_client{username = Username}, {user, Username}) ->
- true;
- match_who(#mqtt_client{peername = undefined}, {ipaddr, _Tup}) ->
- false;
- match_who(#mqtt_client{peername = {IP, _}}, {ipaddr, CIDR}) ->
- esockd_cidr:match(IP, CIDR);
- match_who(Client, {'and', Conds}) when is_list(Conds) ->
- lists:foldl(fun(Who, Allow) ->
- match_who(Client, Who) andalso Allow
- end, true, Conds);
- match_who(Client, {'or', Conds}) when is_list(Conds) ->
- lists:foldl(fun(Who, Allow) ->
- match_who(Client, Who) orelse Allow
- end, false, Conds);
- match_who(_Client, _Who) ->
- false.
- match_topics(_Client, _Topic, []) ->
- false;
- match_topics(Client, Topic, [{pattern, PatternFilter}|Filters]) ->
- TopicFilter = feed_var(Client, PatternFilter),
- case match_topic(emqttd_topic:words(Topic), TopicFilter) of
- true -> true;
- false -> match_topics(Client, Topic, Filters)
- end;
- match_topics(Client, Topic, [TopicFilter|Filters]) ->
- case match_topic(emqttd_topic:words(Topic), TopicFilter) of
- true -> true;
- false -> match_topics(Client, Topic, Filters)
- end.
- match_topic(Topic, {eq, TopicFilter}) ->
- Topic =:= TopicFilter;
- match_topic(Topic, TopicFilter) ->
- emqttd_topic:match(Topic, TopicFilter).
- feed_var(Client, Pattern) ->
- feed_var(Client, Pattern, []).
- feed_var(_Client, [], Acc) ->
- lists:reverse(Acc);
- feed_var(Client = #mqtt_client{client_id = undefined}, [<<"%c">>|Words], Acc) ->
- feed_var(Client, Words, [<<"%c">>|Acc]);
- feed_var(Client = #mqtt_client{client_id = ClientId}, [<<"%c">>|Words], Acc) ->
- feed_var(Client, Words, [ClientId |Acc]);
- feed_var(Client = #mqtt_client{username = undefined}, [<<"%u">>|Words], Acc) ->
- feed_var(Client, Words, [<<"%u">>|Acc]);
- feed_var(Client = #mqtt_client{username = Username}, [<<"%u">>|Words], Acc) ->
- feed_var(Client, Words, [Username|Acc]);
- feed_var(Client, [W|Words], Acc) ->
- feed_var(Client, Words, [W|Acc]).
|