TESTDLL.C
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:9k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2. Copyright (c) 1992-1996  Microsoft Corporation
  3. Module Name:
  4.     testdll.c
  5. Abstract:
  6.     Sample SNMP Extension Agent for Windows NT.
  7.     These files (testdll.c, testmib.c, and testmib.h) provide an example of 
  8.     how to structure an Extension Agent DLL which works in conjunction with 
  9.     the SNMP Extendible Agent for Windows NT.
  10.     Extensive comments have been included to describe its structure and
  11.     operation.  See also "Microsoft Windows NT SNMP Programmer's Reference".
  12. --*/
  13. // General notes:
  14. //
  15. //   Microsoft's Extendible Agent for Windows NT is implemented by dynamically
  16. // linking to Extension Agent DLLs that implement portions of the MIB.  These
  17. // Extension Agents are configured in the Windows NT Registration Database.
  18. // When the Extendible Agent Service is started, it queries the registry to
  19. // determine which Extension Agent DLLs have been installed and need to be
  20. // loaded and initialized.  The Extendible Agent invokes various DLL entry
  21. // points (examples follow in this file) to request MIB queries and obtain
  22. // Extension Agent generated traps.
  23. // Necessary includes.
  24. #include <windows.h>
  25. #include <snmp.h>
  26. // Contains definitions for the table structure describing the MIB.  This
  27. // is used in conjunction with testmib.c where the MIB requests are resolved.
  28. #include "testmib.h"
  29. // Extension Agent DLLs need access to elapsed time agent has been active.
  30. // This is implemented by initializing the Extension Agent with a time zero
  31. // reference, and allowing the agent to compute elapsed time by subtracting
  32. // the time zero reference from the current system time.  This example
  33. // Extension Agent implements this reference with dwTimeZero.
  34. DWORD dwTimeZero = 0;
  35. // Extension Agent DLLs that generate traps must create a Win32 Event object
  36. // to communicate occurence of traps to the Extendible Agent.  The event
  37. // handle is given to the Extendible Agent when the Extension Agent is 
  38. // initialized, it should be NULL if traps will not be generated.  This
  39. // example Extension Agent simulates the occurance of traps with hSimulateTrap.
  40. HANDLE hSimulateTrap = NULL;
  41. // This is a standard Win32 DLL entry point.  See the Win32 SDK for more
  42. // information on its arguments and their meanings.  This example DLL does 
  43. // not perform any special actions using this mechanism.
  44. BOOL WINAPI DLLEntry(
  45.     HANDLE hDll,
  46.     DWORD  dwReason,
  47.     LPVOID lpReserved)
  48.     {
  49.     switch(dwReason)
  50.         {
  51.         case DLL_PROCESS_ATTACH:
  52.         case DLL_PROCESS_DETACH:
  53.         case DLL_THREAD_ATTACH:
  54.         case DLL_THREAD_DETACH:
  55.         default:
  56.             break;
  57.         } // end switch()
  58.     return TRUE;
  59.     } // end DllEntryPoint()
  60. // Extension Agent DLLs provide the following entry point to coordinate the
  61. // initializations of the Extension Agent and the Extendible Agent.  The
  62. // Extendible Agent provides the Extension Agent with a time zero reference;
  63. // and the Extension Agent provides the Extendible Agent with an Event handle 
  64. // for communicating occurence of traps, and an object identifier representing
  65. // the root of the MIB subtree that the Extension Agent supports.
  66. BOOL WINAPI SnmpExtensionInit(
  67.     IN  DWORD               dwTimeZeroReference,
  68.     OUT HANDLE              *hPollForTrapEvent,
  69.     OUT AsnObjectIdentifier *supportedView)
  70.     {
  71.     // Record the time reference provided by the Extendible Agent.
  72.     dwTimeZero = dwTimeZeroReference;
  73.     // Create an Event that will be used to communicate the occurence of traps
  74.     // to the Extendible Agent.  The Extension Agent will assert this Event
  75.     // when a trap has occured.  This is explained further later in this file.
  76.     if ((*hPollForTrapEvent = CreateEvent(NULL, FALSE, FALSE, NULL)) == NULL)
  77.         {
  78.         // Indicate error?, be sure that NULL is returned to Extendible Agent.
  79.         }
  80.     // Indicate the MIB view supported by this Extension Agent, an object
  81.     // identifier representing the sub root of the MIB that is supported.
  82.     *supportedView = MIB_OidPrefix; // NOTE!  structure copy
  83.     // Record the trap Event.  This example Extension Agent simulates traps by 
  84.     // generating a trap after every given number of processed requests.
  85.     hSimulateTrap = *hPollForTrapEvent;
  86.     // Indicate that Extension Agent initialization was sucessfull.
  87.     return TRUE;
  88.     } // end SnmpExtensionInit()
  89. // Extension Agent DLLs provide the following entry point to communcate traps
  90. // to the Extendible Agent.  The Extendible Agent will query this entry point
  91. // when the trap Event (supplied at initialization time) is asserted, which
  92. // indicates that zero or more traps may have occured.  The Extendible Agent 
  93. // will repetedly call this entry point until FALSE is returned, indicating 
  94. // that all outstanding traps have been processed.
  95. BOOL WINAPI SnmpExtensionTrap(
  96.     OUT AsnObjectIdentifier *enterprise,
  97.     OUT AsnInteger          *genericTrap,
  98.     OUT AsnInteger          *specificTrap,
  99.     OUT AsnTimeticks        *timeStamp,
  100.     OUT RFC1157VarBindList  *variableBindings)
  101.     {
  102.     // The body of this routine is an extremely simple example/simulation of
  103.     // the trap functionality.  A real implementation will be more complex.
  104.     // The following define data inserted into the trap below.  The Lan Manager
  105.     // bytesAvailAlert from the Lan Manager Alerts-2 MIB is generated with an
  106.     // empty variable bindings list.
  107.     static UINT OidList[]  = { 1, 3, 6, 1, 4, 1, 77, 2 };
  108.     static UINT OidListLen = 8;
  109.     // The following variable is used for the simulation, it allows a single
  110.     // trap to be generated and then causes FALSE to be returned indicating
  111.     // no more traps.
  112.     static whichTime = 0;
  113.     // The following if/else support the simulation.
  114.     if (whichTime == 0)
  115.         {
  116.         whichTime = 1;    // Supports the simulation.
  117.         // Communicate the trap data to the Extendible Agent.
  118.         enterprise->idLength = OidListLen;
  119.         enterprise->ids = OidList;
  120.         *genericTrap      = SNMP_GENERICTRAP_ENTERSPECIFIC;
  121.         *specificTrap     = 1;                    // the bytesAvailAlert trap
  122.         *timeStamp        = GetCurrentTime() - dwTimeZero;
  123.         variableBindings->list = NULL;
  124.         variableBindings->len  = 0;
  125.         // Indicate that valid trap data exists in the parameters.
  126.         return TRUE;
  127.         }
  128.     else
  129.         {
  130.         whichTime = 0;    // Supports the simulation.
  131.         // Indicate that no more traps are available and parameters do not
  132.         // refer to any valid data.
  133.         return FALSE;
  134.         }
  135.     } // end SnmpExtensionTrap()
  136. // Extension Agent DLLs provide the following entry point to resolve queries
  137. // for MIB variables in their supported MIB view (supplied at initialization
  138. // time).  The requestType is Get/GetNext/Set.
  139. BOOL WINAPI SnmpExtensionQuery(
  140.     IN BYTE                   requestType,
  141.     IN OUT RFC1157VarBindList *variableBindings,
  142.     OUT AsnInteger            *errorStatus,
  143.     OUT AsnInteger            *errorIndex)
  144.     {
  145.     static unsigned long requestCount = 0;  // Supports the trap simulation.
  146.     UINT    I;
  147.     // Iterate through the variable bindings list to resolve individual
  148.     // variable bindings.
  149.     for ( I=0;I < variableBindings->len;I++ )
  150.         {
  151.         *errorStatus = ResolveVarBind( &variableBindings->list[I],
  152.                                        requestType );
  153.         // Test and handle case where Get Next past end of MIB view supported
  154.         // by this Extension Agent occurs.  Special processing is required to 
  155.         // communicate this situation to the Extendible Agent so it can take 
  156.         // appropriate action, possibly querying other Extension Agents.
  157.         if ( *errorStatus == SNMP_ERRORSTATUS_NOSUCHNAME &&
  158.              requestType == MIB_ACTION_GETNEXT )
  159.            {
  160.            *errorStatus = SNMP_ERRORSTATUS_NOERROR;
  161.            // Modify variable binding of such variables so the OID points
  162.            // just outside the MIB view supported by this Extension Agent.
  163.            // The Extendible Agent tests for this, and takes appropriate
  164.            // action.
  165.            SnmpUtilOidFree( &variableBindings->list[I].name );
  166.            SnmpUtilOidCpy( &variableBindings->list[I].name, &MIB_OidPrefix );
  167.            variableBindings->list[I].name.ids[MIB_PREFIX_LEN-1] ++;
  168.            }
  169.         // If an error was indicated, communicate error status and error
  170.         // index to the Extendible Agent.  The Extendible Agent will ensure
  171.         // that the origional variable bindings are returned in the response
  172.         // packet.
  173.         if ( *errorStatus != SNMP_ERRORSTATUS_NOERROR )
  174.            {
  175.    *errorIndex = I+1;
  176.    goto Exit;
  177.    }
  178.         }
  179. Exit:
  180.     // Supports the trap simulation.
  181.     if (++requestCount % 3 == 0 && hSimulateTrap != NULL)
  182.         SetEvent(hSimulateTrap);
  183.     // Indicate that Extension Agent processing was sucessfull.
  184.     return SNMPAPI_NOERROR;
  185.     } // end SnmpExtensionQuery()
  186. //-------------------------------- END --------------------------------------