Sun Microsystems, Inc.
spacerspacer
spacer www.sun.com docs.sun.com |
spacer
black dot
 
 
1.  WBEM and Solaris WBEM Services (Overview) Solaris WBEM Services  Previous   Contents   Next 
   
 

Software Components

Solaris WBEM Services software consists of three software components: Application, Management, and Provider. These components interact with the operating system and hardware. The following figure shows the software components and how they interact.

Figure 1-1 Solaris WBEM Services Architecture

  • Application layer - WBEM clients process and display data from managed resources. Solaris WBEM Services includes the following applications.

    • Sun WBEM User Manager and Solaris Management Console User tool - Applications that allow system administrators to add and delete authorized users and to set these users' access privileges to managed resources.

    • Solaris Management Console Log Viewer - An application that displays log files. A user can view details of a log record, including the name of the user who issued a logged command and the client computer on which a logged event occurred.

    • Managed Object Format (MOF) compiler - A program that parses a file containing MOF statements, converts the classes and instances defined in the file to Java classes, and then adds the Java classes to the CIM Object Manager Repository, a central storage area for management data.

      MOF is a language for defining CIM classes and instances. MOF files are ASCII text files that use the MOF language to describe CIM objects. A CIM object is a representation, or model, of a managed resource, such as a printer, disk drive, or CPU. MOF files are located in /usr/sadm/mof.

      Many sites store information about managed resources in MOF files. Because MOF can be converted to Java, applications that can run on any system with a Java virtual machine can interpret and exchange this information. You can also use the mofcomp command to compile MOF files at any time after installation. MOF is described on the DMTF web page at http://www.dmtf.org.

  • Management layer - Components at this layer provide services to connected WBEM clients.

    • Common Information Model (CIM) Object Manager - Software that manages CIM objects on a WBEM system. CIM objects are stored internally as Java classes. The CIM Object Manager transfers information between WBEM clients, the CIM Object Manager Repository, and managed resources.

    • CIM Object Manager Repository - Central storage area for CIM class and instance definitions.

    • Client and CIM application programming interfaces (APIs) - WBEM client applications use these Java interfaces to request operations, such as creating or viewing classes or instances of managed resources, from the CIM Object Manager.

    • Provider interfaces - Providers use these interfaces to transfer information about managed resources to the CIM Object Manager. The CIM Object Manager uses the provider interfaces to transfer information to locally installed providers.

  • Provider layer - Providers act as intermediaries between the CIM Object Manager and one or more managed resources. When the CIM Object Manager receives a request from a WBEM client for data that is not available from the CIM Object Manager Repository, it forwards the request to the appropriate provider.

    • Solaris providers - Provide the CIM Object Manager with instances of managed resources in the Solaris operating environment. Providers get and set information on managed devices. A native provider is a machine-specific program written to run on a managed device. For example, a provider that accesses data on a system running the Solaris operating environment probably includes C functions to query that system. The Java Native Interface is part of the JDK™ software. By writing programs using the Java Native Interface, you ensure that your code is portable across all platforms. The Java Native Interface enables Java code that runs within a Java virtual machine to operate with applications and libraries written in other languages, such as C, C++, and assembly.

    • Solaris Schema - A collection of classes that describes managed objects in the Solaris operating environment. The CIM Schema and Solaris Schema classes are stored in the CIM Object Manager Repository. The CIM Schema is a collection of class definitions used to represent managed objects that occur in every management environment.

      The Solaris Schema is a collection of class definitions that extend the CIM Schema and represent managed objects in a typical Solaris operating environment. Users can also use the MOF compiler (mofcomp) to add CIM Schema, Solaris Schema, or other classes to the CIM Object Manager Repository.

  • Operating system layer - The Solaris providers enable management applications to access information about managed resources (devices and software) in the Solaris operating environment.

  • Hardware layer - A management client can access management data on any supported Solaris platform.

Namespaces

One or more schemas can be stored in directory-like structures called namespaces. A CIM namespace is a directory-like structure that can contain other namespaces, classes, instances, and qualifier types. The names of objects within a namespace must be unique.

In Solaris WBEM Services, when a WBEM client application connects to a particular namespace, all subsequent operations occur within that namespace. When connected to a namespace, the client can access the classes and instances in that namespace (if they exist) and in any namespaces contained in that namespace. For example, if you create a namespace called child in the root\cimv2 namespace, you could connect to root\cimv2 and access the classes and instances in the root\cimv2 and root\cimv2\child namespaces.

An application can connect to a namespace within a namespace. This is similar to changing to a subdirectory within a directory. Once the application connects to the new namespace, all subsequent operations occur within that namespace. If you open a new connection to root\cimv2\child, you can access any classes and instances in that namespace but cannot access the classes and instances in the parent namespace, root\cimv2.

The following namespaces are created by default during installation.

  • root - The top-level namespace that contains other namespaces.

  • root\cimv2 - Contains the default CIM classes and instances that represent objects on your system, such as, LogicalDisk and Netcard. This is the default namespace.

  • root\security - Contains the security classes used by the CIM Object Manager to represent access rights for users and namespaces.

  • root\snmp - Contains the classes for the SNMP Provider and the SNMP Adapter for WBEM.

  • root\system - Contains CIM Object Manager information and provider paths.

Providers

When a WBEM client application accesses CIM data, the WBEM system validates the user's login information on the current host. By default, a user is granted read access to the CIM Schema and the Solaris Schema. The CIM Schema describes managed objects on your system in a standard format that all WBEM-enabled systems and applications can interpret.

Providers are classes that communicate with managed objects to access data. Providers forward this information to the CIM Object Manager for integration and interpretation. When the CIM Object Manager receives a request from a management application for data that is not available from the CIM Object Manager Repository, it forwards the request to a provider.

The CIM Object Manager uses object provider APIs to communicate with providers. When an application requests dynamic data from the CIM Object Manager, the CIM Object Manager uses the provider interfaces to pass the request to the provider.

Providers perform the following functions in response to a request from the CIM Object Manager:

  • Map the native information format to CIM classes

    • Get information from a device

    • Pass the information to the CIM Object Manager in the form of CIM classes

  • Map the information from CIM classes to native device format

    • Get the required information from the CIM class

    • Pass the information to the device in native device format

 
 
 
  Previous   Contents   Next