snmpm_usm.erl

来自「OTP是开放电信平台的简称」· ERL 代码 · 共 512 行 · 第 1/2 页

ERL
512
字号
%% ``The contents of this file are subject to the Erlang Public License,%% Version 1.1, (the "License"); you may not use this file except in%% compliance with the License. You should have received a copy of the%% Erlang Public License along with this software. If not, it can be%% retrieved via the world wide web at http://www.erlang.org/.%% %% Software distributed under the License is distributed on an "AS IS"%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See%% the License for the specific language governing rights and limitations%% under the License.%% %% The Initial Developer of the Original Code is Ericsson Utvecklings AB.%% Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings%% AB. All Rights Reserved.''%% %%     $Id$%%%%-----------------------------------------------------------------%% This module implements the User Based Security Model for SNMP,%% as defined in rfc2274.%%------------------------------------------------------------------module(snmpm_usm).-export([init/0, 	 reset/0, 	 process_incoming_msg/4, generate_outgoing_msg/5]).-define(SNMP_USE_V3, true).-include("snmp_types.hrl").-include("snmpm_usm.hrl").-include("SNMP-USER-BASED-SM-MIB.hrl").-include("SNMP-USM-AES-MIB.hrl").% -include("SNMPv2-TC.hrl").-define(VMODULE,"M-USM").-include("snmp_verbosity.hrl").%%------------------------------------------------------------------define(i32(Int), (Int bsr 24) band 255, (Int bsr 16) band 255, (Int bsr 8) band 255, Int band 255).-define(i64(Int), (Int bsr 56) band 255, (Int bsr 48) band 255, (Int bsr 40) band 255, (Int bsr 32) band 255, (Int bsr 24) band 255, (Int bsr 16) band 255, (Int bsr 8) band 255, Int band 255).init() ->    init_counters().%%-----------------------------------------------------------------%% Func: process_incoming_msg(Packet, Data, SecParams, SecLevel) ->%%       {ok, {SecEngineID, SecName, ScopedPDUBytes, SecData}} |%%       {error, Reason} | {error, Reason, ErrorInfo}%%       Return value may be throwed.%% Types: Reason -> term()%% Purpose: %%-----------------------------------------------------------------process_incoming_msg(Packet, Data, SecParams, SecLevel) ->    %% 3.2.1    ?vtrace("process_incoming_msg -> [3.2.1] check security parms",[]),    UsmSecParams =	case (catch snmp_pdus:dec_usm_security_parameters(SecParams)) of	    {'EXIT', Reason} ->		inc(snmpInASNParseErrs),		error({parseError, Reason}, []);	    Res ->		Res	end,    %% Part of 3.2.2    #usmSecurityParameters{msgAuthoritativeEngineID = MsgAuthEngineID,			   msgUserName = MsgUserName} = UsmSecParams,    ?vlog("process_incoming_msg -> [3.2.2]"	  "~n   authEngineID: ~p"	  "~n   userName:     ~p", [MsgAuthEngineID, MsgUserName]),    %% 3.2.3 (b)    ?vtrace("process_incoming_msg -> [3.2.3-b] check engine id",[]),    case snmpm_config:is_usm_engine_id_known(MsgAuthEngineID) of	true ->	    ok;	false ->	    SecData1 = [MsgUserName],	    error(usmStatsUnknownEngineIDs, 		  ?usmStatsUnknownEngineIDs_instance,		  undefined, [{sec_data, SecData1}])    end,    %% 3.2.4    ?vtrace("process_incoming_msg -> [3.2.4] retrieve usm user",[]),    SecUser =	case snmpm_config:get_usm_user(MsgAuthEngineID, MsgUserName) of	    {ok, User} ->		User;	    _ -> % undefined user		SecData2 = [MsgUserName],		error(usmStatsUnknownUserNames, 		      ?usmStatsUnknownUserNames_instance, %% OTP-3542		      undefined, [{sec_data, SecData2}])	end,    %% 3.2.5 - implicit in following checks    %% 3.2.6 - 3.2.7    ?vtrace("process_incoming_msg -> "	    "[3.2.5 - 3.2.7] authenticate incoming",[]),    authenticate_incoming(Packet, UsmSecParams, SecUser, SecLevel),    %% 3.2.8    ?vtrace("process_incoming_msg -> [3.2.8] decrypt scoped data",[]),    ScopedPDUBytes = decrypt(Data, SecUser, UsmSecParams, SecLevel),    %% 3.2.9    %% Means that if AuthKey/PrivKey are changed; the old values    %% will be used.    CachedSecData = {MsgUserName,		     SecUser#usm_user.auth,		     SecUser#usm_user.auth_key,		     SecUser#usm_user.priv,		     SecUser#usm_user.priv_key},    SecName = SecUser#usm_user.sec_name,    {ok, {MsgAuthEngineID, SecName, ScopedPDUBytes, CachedSecData}}.    authenticate_incoming(Packet, UsmSecParams, UsmUser, SecLevel) ->    %% 3.2.6    ?vtrace("authenticate incoming: 3.2.6",[]),    #usmSecurityParameters{msgAuthoritativeEngineID    = MsgAuthEngineID,			   msgAuthoritativeEngineBoots = MsgAuthEngineBoots,			   msgAuthoritativeEngineTime  = MsgAuthEngineTime,			   msgAuthenticationParameters = MsgAuthParams} =	UsmSecParams,    case snmp_misc:is_auth(SecLevel) of	true ->	    SecName = UsmUser#usm_user.sec_name,	    case is_auth(UsmUser#usm_user.auth, 			 UsmUser#usm_user.auth_key,			 MsgAuthParams,			 Packet,			 SecName,			 MsgAuthEngineID,			 MsgAuthEngineBoots, 			 MsgAuthEngineTime) of		true -> 		    ok;		false -> 		    error(usmStatsWrongDigests,			  ?usmStatsWrongDigests_instance, SecName)	    end;	false ->  % noAuth	    ok    end.	    is_auth(usmNoAuthProtocol, _, _, _, SecName, _, _, _) -> % 3.2.5    error(usmStatsUnsupportedSecLevels,	  ?usmStatsUnsupportedSecLevels_instance, SecName);is_auth(AuthProtocol, AuthKey, AuthParams, Packet, SecName,	MsgAuthEngineID, MsgAuthEngineBoots, MsgAuthEngineTime) ->    case auth_in(AuthProtocol, AuthKey, AuthParams, Packet) of	true ->	    %% 3.2.7	    ?vtrace("retrieve EngineBoots and EngineTime: 3.2.7",[]),	    SnmpEngineID = get_engine_id(),	    ?vtrace("SnmpEngineID: ~p",[SnmpEngineID]),	    case MsgAuthEngineID of		SnmpEngineID -> %% 3.2.7a		    ?vtrace("we are authoritative: 3.2.7a",[]),		    SnmpEngineBoots = get_engine_boots(),		    ?vtrace("SnmpEngineBoots: ~p",[SnmpEngineBoots]),		    SnmpEngineTime = get_engine_time(),		    ?vtrace("SnmpEngineTime: ~p",[SnmpEngineTime]),		    InTimeWindow =			if			    SnmpEngineBoots == 2147483647 -> false;			    MsgAuthEngineBoots /= SnmpEngineBoots -> false;			    MsgAuthEngineTime + 150 < SnmpEngineTime -> false;			    MsgAuthEngineTime - 150 > SnmpEngineTime -> false;			    true -> true			end,		    case InTimeWindow of			true -> 			    true;			%% OTP-4090 (OTP-3542)			false -> 			    error(usmStatsNotInTimeWindows,				  ?usmStatsNotInTimeWindows_instance,				  SecName,				  [{securityLevel, 1}]) % authNoPriv		    end;		_ -> %% 3.2.7b - we're non-authoritative		    ?vtrace("we are non-authoritative: 3.2.7b",[]),		    SnmpEngineBoots = get_engine_boots(MsgAuthEngineID),		    ?vtrace("SnmpEngineBoots: ~p",[SnmpEngineBoots]),		    SnmpEngineTime = get_engine_time(MsgAuthEngineID),		    ?vtrace("SnmpEngineTime: ~p",[SnmpEngineTime]),		    LatestRecvTime = get_engine_latest_time(MsgAuthEngineID),		    ?vtrace("LatestRecvTime: ~p",[LatestRecvTime]),		    UpdateLCD =			if			    MsgAuthEngineBoots > SnmpEngineBoots -> true;			    MsgAuthEngineBoots == SnmpEngineBoots,			    MsgAuthEngineTime > LatestRecvTime -> true;			    true -> false			end,		    case UpdateLCD of			true -> %% 3.2.7b1			    ?vtrace("update msgAuthoritativeEngineID: 3.2.7b1",				    []),			    set_engine_boots(MsgAuthEngineID,					     MsgAuthEngineBoots),			    set_engine_time(MsgAuthEngineID,					    MsgAuthEngineTime),			    set_engine_latest_time(MsgAuthEngineID,						   MsgAuthEngineTime);			false ->			    ok		    end,		    %% 3.2.7.b2		    ?vtrace("check if message is outside time window: 3.2.7b2",			    []),		    InTimeWindow =			if			    SnmpEngineBoots == 2147483647 ->				{false, [{engine, SnmpEngineID}, 					 {boots,  at_max}]};			    MsgAuthEngineBoots < SnmpEngineBoots ->				{false, [{engine, MsgAuthEngineID},					 {boots,  MsgAuthEngineBoots}]};			    MsgAuthEngineBoots == SnmpEngineBoots,			    MsgAuthEngineTime < (SnmpEngineTime - 150) ->				{false, [{engine, MsgAuthEngineID},					 {time,   MsgAuthEngineTime}]};			    true -> true			end,		    case InTimeWindow of			{false, Reason} ->			    ?vinfo("not in time window[3.2.7b2]: ~p", 				   [Reason]),			    error(notInTimeWindow, Reason);			true ->			    ok		    end,		    true	    end;	false -> 	    false    end.							    decrypt(Data, UsmUser, UsmSecParams, SecLevel) ->    case snmp_misc:is_priv(SecLevel) of	true ->	    do_decrypt(Data, UsmUser, UsmSecParams);	false ->	    Data

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?