以 PDF 格式下載這本書 (2441 KB)
Part IV Auditing and Device Management
Chapter 20 BSM (Overview)The Basic Security Module (BSM) provides two security features. The first feature is an auditing mechanism, which includes tools to assist with the analysis of the auditing data. The second feature is a device-allocation mechanism, which provides the required object-reuse characteristics for removable devices or assignable devices. This chapter introduces the concepts behind BSM. The following is a list of the information in this chapter. What Is Auditing?Auditing is the collection of data about the use of machine resources. The audit data provides a record of security-related system events. This data can then be used to assign responsibility to actions that take place on a host. Successful auditing starts with two security features: identification and authentication. At login, after a user supplies a user name and password, a unique audit ID is associated with the user's process. The audit ID is inherited by every process that is started during the login session. Even if a user changes identity, all user actions are tracked with the same audit ID. See the su(1M) man page. The auditing subsystem makes the following possible:
During system configuration, you select which activities to monitor. You can also fine-tune the degree of auditing that is done for individual users. After audit data is collected, audit-reduction and interpretation tools allow you to examine interesting parts of the audit trail. For example, you can choose to review audit records for individual users or specific groups. You can examine all records for a certain type of event on a specific day. Or you can select records that were generated at a certain time of day. How Does Auditing Work?Auditing is the generation of audit records when specified events occur. Most commonly, events that generate audit records include the following:
Audit records are generated from three sources:
Once the relevant event information has been captured, the information is formatted into an audit record. The record is then placed in a kernel buffer known as the audit queue. From this temporary location within the kernel, audit records are written to audit files. Where the audit files are located is determined by entries in the audit_control file. The location can include multiple partitions on the same machine, partitions on different machines, or partitions on machines on different but linked networks. The collection of audit files that are linked together is considered an audit trail. Audit records accumulate in audit files chronologically. Contained in each audit record is information that identifies the event, what caused the event, the time of the event, and other relevant information. How Is Auditing Related to Security?To secure a computer system, especially a system on a network, is complex. Security requires mechanisms that control activities before system processes or user processes begin. Security requires tools that monitor activities as the activities occur. Security also requires reports of activities after the activities have happened. Initial configuration of Solaris auditing requires that parameters be set before users log in or machine processes begin. Most auditing activities involve monitoring current events and reporting those events that meet the specified parameters. How Solaris auditing monitors and reports these events is discussed in detail in Chapter 21, Audit Planning and Chapter 22, Managing the BSM Service (Tasks). Auditing cannot prevent hackers from unauthorized entry. However, the audit subsystem can report, for example, that a specific user performed specific actions at a specific time and date. The audit report can identify the user by entry path and user name. Such information can be reported immediately to your terminal and to a file for later analysis. Thus, the audit subsystem provides data that helps you determine the following:
BSM TerminologyThe following terms are used to describe the BSM service. Some definitions include pointers to more complete descriptions. Table 20–1 BSM Terms
Audit EventsSecurity-relevant system actions can be audited. These auditable actions are defined as audit events. Audit events are listed in the /etc/security/audit_event file. Each auditable event is defined in the file by a symbolic name, an event number, a set of preselection classes, and a short description. See the audit_event(4) man page. There are several categories of audit events. The primary distinction is between kernel-level events and user-level events. Events that are generated by the kernel are called kernel-level events. Events that are generated by applications are called user-level events. Kernel-level events have a lower audit event number than a user-level event, as shown in the following table. Table 20–2 Audit Event Categories
Kernel-Level Audit EventsEvents that are generated by the kernel are system calls. System calls have audit event numbers between 1 and 2047. The event names for kernel events begin with AUE_, followed by an uppercase mnemonic for the event. For example, the event number for the creat() system call is 4, and the event name is AUE_CREAT. User-Level Audit EventsEvents that are generated by application software are outside the kernel. Application software generates user-level events. User-level events range in number from 2048 to 65535. The event names begin with AUE_, followed by a lowercase mnemonic for the event. For example, the event number for the rlogin command is 6155, and the event name is AUE_rlogin. Table 20–2 shows general categories of user-related events. Nonattributable Audit EventsMost events are attributable to an individual user, but some events are not. Events are nonattributable if the events occur at the kernel-interrupt level, or if the events occur before a user is identified and authenticated. Nonattributable events are auditable. The following example lists two nonattributable events from the /etc/security/audit_event file:
AUE_ENTERPROM is a kernel-level na event. AUE_mountd_mount is a user-level na event. Audit ClassesEach audit event is also defined as belonging to an audit class or classes. Audit classes are convenient containers for large numbers of audit events. When you preselect a class to be audited, you preselect for auditing all the events in that class. Audit classes are defined in the /etc/security/audit_class file. Each entry contains the name of the class, its audit mask, and its short name.
The mapping of audit events to classes is configurable. These configuration changes are made in the audit_event file. An auditable event is recorded in the audit trail when you preselect an audit class for auditing that includes the specific event. There are 32 possible audit classes. The classes include the two global classes: all and no. The audit classes are described in Table 23–1. See also the audit_class(4) man page. Audit FlagsAudit flags are the short names for audit classes. Audit flags are used in the audit_control file to specify machine-wide defaults for auditing on the machine. The audit_control file is described in The audit_control File. You can make exceptions to the machine-wide auditing defaults for individual users. You put audit flags in a user's entry in the audit_user file. The audit flags are also used as arguments to the auditconfig command. See the auditconfig(1M) and audit_user(4) man pages. Audit Records and Audit TokensEach audit record describes the occurrence of a single audited event. The record includes information such as who did the action, which files were affected, what action was attempted, and where and when the action occurred. For example, the following line shows an audit record when processed by the praudit command:
Audit records are collected in an audit file. The set of audit files from a machine or site is called the audit trail. For a description of how audit files are handled, see the audit.log(4) man page. Audit records can be converted to a readable format by the praudit command. For examples of praudit output, see The praudit Command. See also the praudit(1M) man page. The type of information that is saved for each audit event is defined in a set of audit tokens. Each time an audit record is created for an event, the record contains some or all of the tokens that are defined for the event. The nature of the event determines which tokens are recorded. You can generate audit record descriptions with the bsmrecord command. The following output shows the structure of the audit record that is generated when the creat() system call is used. The lines beginning with header are the audit tokens.
For more information, see How to Display Audit Record Formats. For a description of the structure of each audit token, see Audit Token Formats. The audit.log(4) man page also lists the audit tokens. Audit DirectoryAn audit directory holds a collection of audit files. A typical installation uses many audit directories. The three types of audit directories are as follows:
Device AllocationThe device-allocation mechanism enables you to restrict access to a device, such as a CD-ROM. Device clean scripts erase any leftover data after a device has been used. These actions increase the security of a device. For more information, see Managing Device Allocation (Tasks) or Device Allocation Reference. Chapter 21 Audit PlanningThis chapter describes how to set up auditing for your Solaris installation. In particular, the chapter covers issues that you need to consider before you enable the auditing service. The following is a list of the planning information in this chapter: For an overview of auditing, see Chapter 20, BSM (Overview). For procedures to configure auditing at your site, see Chapter 22, Managing the BSM Service (Tasks). Handling the Audit TrailFile space for the audit trail is one of the biggest issues with auditing. Each host should have several audit directories that are configured for audit files. You should decide how to configure the audit directories as one of the first steps before you enable auditing on any hosts. The following table lists the issues that should be resolved when you plan for audit trail storage.
Deciding Who and What to AuditYou want to be selective about what kinds of activities are audited, and you want to collect useful audit information. Audit files can quickly grow to fill the available space, so you should plan what to audit.
Determining Which Audit Policies to UseAudit policies determine the characteristics of the audit records for the local host. The policies are set by a startup script. The bsmconv script, which enables the auditing service, creates the /etc/security/audit_startup script. The audit_startup script executes the auditconfig command to establish audit policy. See the audit_startup(1M) man page. The audit policies are disabled by default to minimize storage requirements and system processing demands. You can enable and disable audit policies dynamically with the auditconfig command. You can enable and disable the policies permanently with the audit_startup script. Use the following table to determine if the needs of your site justify the additional overhead that results from enabling one or more audit policies. Table 21–1 Effects of Audit Policies
Controlling Auditing CostsBecause auditing consumes system resources, you must control the degree of detail that is recorded. When you decide what to audit, consider the following costs of auditing:
Cost of Increased Processing Time of Audit DataThe cost of increased processing time is the least significant of the costs of auditing. The first reason is that auditing generally does not occur during computation-intensive tasks, such as image processing, complex calculations, and so forth. The other reason is that the cost for single-user systems is usually small enough to ignore. Cost of Analysis of Audit DataThe cost of analysis is roughly proportional to the amount of audit data that is collected. The cost of analysis includes the time that is required to merge and review audit records. Cost also includes the time that is required to archive the records and keep the records in a safe place. The fewer records that you generate, the less time that is required to analyze the audit trail. Upcoming sections, Cost of Storage of Audit Data and Auditing Efficiently, describe ways to audit efficiently. You can reduce the amount of data that you collect, while still providing enough coverage to achieve your site's security goals. Cost of Storage of Audit DataStorage cost is the most significant cost of auditing. The amount of audit data depends on the following:
Because these factors vary from site to site, no formula can determine in advance the amount of disk space to set aside for audit data storage. Full auditing, that is, with the all flag, fills up disks quickly. Even a simple task such as compiling a program could generate a large audit file. A program of modest size could generate thousands of audit records in less than a minute. For example, the audit trail of a program of five files and 5000 lines would occupy many megabytes of disk space. You judiciously use the preselection features to reduce the volume of records that are generated. For example, by omitting the fr class, you can reduce the audit volume by more than two-thirds. Efficient audit file management is also important. After the audit records are created, file management reduces the amount of storage that is required. Before you configure auditing, you should understand the audit flags. You should understand the types of events that the flags audit. Develop a philosophy of auditing for your site that is based on sensible measures. Such measures include the amount of security that your site requires, and the types of users that you administer. Auditing EfficientlyThe techniques in this section can help you achieve your organization's security goals while auditing more efficiently:
Chapter 22 Managing the BSM Service (Tasks)This chapter presents procedures that are designed to help you set up and manage a Solaris environment that includes auditing. This chapter also includes instructions for administering the audit trail and for administering device allocation. The following is a list of the task maps in this chapter. For an overview of auditing, see Chapter 20, BSM (Overview). For planning suggestions, see Chapter 21, Audit Planning. Managing the BSM Service (Task Map)The following task map shows the major tasks that are required to administer the BSM service.
Configuring Audit Files (Task Map)Before you enable auditing on your network, you might want to edit the audit configuration files. Many of the following procedures require you to restart the service or reboot the local system. You should make as many of these changes as possible before you start the service. The following task map describes the tasks in this section.
How to Select Audit FlagsAudit flags are defined in the /etc/security/audit_control file. The audit flags select which classes of audit records are written to the audit log.
Example—Changing the Location of the Audit Trail FileLines that start with dir: define which audit file systems can be used to store audit trail files. In this example, two additional locations for audit trail files are defined.
Example—Changing Audit Flags for All UsersThe flags line in the audit_control file defines which classes of events are audited for all users on the host. The classes are separated by commas, with no spaces. In this example, the events in the lo class are audited for all users.
Example—Changing the Soft Limit for WarningsThe minfree line in the audit_control file defines the minimum free-space level for all audit file systems. In this example, the soft limit is set so that a warning is issued when only 10 percent of the file system is available.
Example—Changing Auditing of Nonattributable EventsThe naflags: line in the audit_control file defines which classes of nonattributable events are audited for all users on the host. The classes are separated by commas, with no spaces. In this example, the na event class was added.
How to Change Users' Audit CharacteristicsDefinitions for each user are stored in the /etc/security/audit_user file. These definitions are exceptions to the flags in the audit_control file.
Example—Changing Auditing for One UserThis example shows an entry that causes audit records to be generated any time that the user sue accesses any programs in the login class (lo).
Example—Creating an Audit Admin LoginIf all the audit partitions are full and logins are audited, then users might not be able to log in to a host. To avoid this situation, you can set up a special account that is not audited. The special account could log in to the host even when the audit partitions are full, and fix the problem with the full partitions. In this example, the account auditadm is defined so that no auditing takes place.
Note – The user who is selected to use the audit admin account might need to be monitored in another way. How to Add Audit ClassesAudit classes are defined in the /etc/security/audit_class file.
Example—Setting a New Audit ClassIn this example, add an entry to the audit_class file that resembles the following entry. The entry creates a new audit class that is called ta.
How to Change an Audit Event's Class MembershipEvent-class mappings are defined in the /etc/security/audit_event file.
Example—Creating a Site-Specific Audit Event MappingIn this example, you define a new class, and then add events to that class. To use the mapping, put the new class in the audit_control file, then reboot the system.
How to Add Audit EventsAudit event definitions are stored in the /etc/security/audit_event file.
Example—Adding a New Audit EventThis example shows an entry that defines a new audit event for a local application.
Configuring the Auditing Service (Task Map)This section covers the tasks that are required to configure and enable the auditing service. The following task map describes the tasks that are required to configure the auditing service.
How to Create Partitions for AuditingThe following procedure shows how to create partitions for audit files, as well as the corresponding file systems and directories. Skip steps as necessary, depending on if you already have an empty partition, or if you have already mounted an empty file system.
Example—Creating an Audit Directory of Last ResortAll systems that run the auditing subsystem should have a local file system that can be used if no other file system is available. In this example, a file system is being added to a system that is named egret. Since this file system is only used locally, none of the steps for a file server are followed.
Example—Creating New Audit PartitionsIn this example, a new file system is created on two new disks that are to be used by other systems in the network.
How to Configure the audit_warn AliasThe audit_warn script generates mail to an alias that is called audit_warn. To send this mail to a valid email address, you can follow either of the following options:
How to Enable or Disable an Audit PolicyAudit policies determine the characteristics of the audit records for the local host. By default, all audit policies are disabled. You need to enable any audit policies that you want to use. For a description of each policy, see Audit Policies. You can inspect, enable, or disable the current audit policy with the auditon() system call at the program level. Or, to do the same task, you can run the auditconfig command. You can also modify the policy options to the auditconfig command in the audit_startup script to make more permanent audit policy changes.
Example—Setting the cnt PolicyThe cnt policy can be set so that if the audit partitions become full, then processes are not blocked. The records are discarded when the partitions are full, but the system still functions. The cnt policy keeps a count of the number of discarded audit records. The cnt policy should not be set if security is paramount, since unrecorded events can occur if the file system is full. The following command enables the cnt policy:
To maintain the policy across reboots, you should place the auditconfig -setpolicy +cnt command in the audit_startup file. How to Enable AuditingThis task starts the auditing service. If the service has been configured, then rebooting the host also starts the service.
How to Disable AuditingIf auditing is no longer required at some point, you can disable the auditing subsystem by running the bsmunconv command. See the bsmconv(1M) man page.
Managing Audit Records (Task Map)By managing the audit trail, you can monitor the actions of users on your network. Auditing can generate large amounts of data. The following tasks show you how to work with all this data. The following task map describes the tasks in this section.
How to Display Audit Record FormatsThe bsmrecord command displays the audit id, audit class, selection mask, and record format of an audit event. The command operates on records in the audit_class and audit_event files. The -a option in the following command lists all audit event record formats. The -h option puts the list in HTML format. The resulting file can be displayed in a browser. Use the bsmrecord command to put the format of all audit event records in an HTML file.
You can display the *html file in a browser. Use the browser's Find tool to find specific records. See the bsmrecord(1M) man page for more information. Example—Displaying the Audit Record Formats of a ProgramIn this example, the format of all audit records that are generated by the login program are displayed.
Example—Displaying the Audit Record Formats of an Audit ClassIn this example, the format of all audit records in the fd class are displayed.
How to Merge Audit RecordsThis task shows you how to merge all audit files in all the audit directories. Follow these steps when you want to analyze the contents of the audit trail.
Example—Displaying the Entire Audit TrailTo display the entire audit trail at once, pipe the output of the auditreduce command into the praudit command.
Example—Printing the Entire Audit TrailWith a pipe to the lp command, the output goes to the printer.
Example—Combining and Reducing Audit FilesUse the auditreduce command with the -O option to combine several audit files into one file and to save the files in a specified output file. auditreduce can do this type of combination and deletion automatically. See the -C and -D options in the auditreduce(1M) man page. However, you can select the files manually to good effect. Use the find command, then use auditreduce to combine just the named set of files. When used in this way, the auditreduce command merges all the records from its input files into a single output file. The input files should then be deleted. In addition, the output file should be kept in a directory that is named /etc/security/audit/server-name/files so that auditreduce can find the output file.
The auditreduce command can also reduce the number of records in its output file. The command can eliminate the less interesting records as it combines the input files. For example, you might use the auditreduce command to retain only the login and logout records in audit files that are over a month old. If you need to retrieve the complete audit trail, you could recover the trail from backup tapes.
Example—Displaying User Activity From a Selected DateIn the following example, the system administrator checks to see when user tamiko logged in and logged out on April 13, 1999. The administrator requests the lo event class. The short-form date is in the form yymmdd. The long form is described in the auditreduce(1M) man page.
Example—Copying Selected Records to a Single FileIn this example, login and logout messages for a particular day are selected from the audit trail. The messages are merged into a target file. The target file is written in a directory other than the normal audit root directory.
The -O option creates an audit file with 14-character timestamps for both the start-time and the end-time, with the suffix logins:
Example—Cleaning Up a not_terminated Audit FileOccasionally, an audit daemon dies while its audit file is still open. Or, a server becomes inaccessible and forces the machine to switch to a new server. In such instances, an audit file remains with the string not_terminated as the end-time, even though the file is no longer used for audit records. When you find such a file, you can manually verify that the file is no longer in use. You can clean up the open file by specifying the name of the file with the correct options.
The audit command checks the name of the current audit file. The auditreduce command creates a new audit file with the correct name and correct timestamps. The correct name includes the correct suffix (egret). The auditreduce then copies all the records into the file. How to Display Audit Records
Example—Putting Audit Records in XML FormatIn this example, the audit records are converted to XML format. XML format can be displayed in a browser. The format can also be used to create a report.
The *xml file can be displayed in a browser. The contents of the file can be operated on by a script to extract the relevant information. How to Prevent Audit Trail OverflowIf your security policy requires that all audit data be saved, do the following:
Managing Device Allocation (Tasks)You can use device allocation to decrease the security risk that is associated with various removable media. Adding an Allocatable Device (Task Map)The following task map describes the major steps that are required to define a new allocatable device.
How to Set Up Lock Files for an Allocatable DeviceThe lock files are zero-length files that are created in the /etc/security/dev directory. One file is created for each allocatable device. If no lock file exists for a device, the device cannot be allocated, so no one can access the device.
How to Change Which Devices Can Be AllocatedThis procedure defines which devices can be used with the device allocation mechanism.
How to Allocate a Device
You can also allocate a device by device type by using the -g option to the allocate command. If the command cannot allocate the device, an error message is displayed in the console window. For a list of allocation error messages, see the allocate(1) man page. Example—Allocating a PrinterOnly the user who ran the allocate command can use the printer.
How to Deallocate a DeviceDeallocation enables other users to allocate and use the device when you are finished.
Example—Deallocating a PrinterTo deallocate a printer that is named chestnut, type the following command:
Example—Forcing a DeallocationDevices that a user has allocated are not automatically deallocated when the process terminates or when this user logs out. You most commonly need to use the following form of the deallocate command when a user forgets to deallocate a specific device. The following command deallocates the device so that others users can allocate the device.
Example—Deallocating All DevicesYou can deallocate all devices only at system initialization time.
Chapter 23 BSM Service (Reference)This chapter describes the important components of the BSM service, which are the auditing subsystem and the device allocation mechanism. The auditing mechanism helps you detect potential security breaches by revealing suspicious or abnormal patterns of system usage. The auditing mechanism also provides a means to trace suspect actions back to a particular user, thus serving as a deterrent. If users know that their activities are likely to be audited, they might be less likely to attempt malicious activities. The following is a list of the reference information in this chapter. For an overview of auditing, see Chapter 20, BSM (Overview). For planning suggestions, see Chapter 21, Audit Planning. For procedures to configure auditing at your site, see Chapter 22, Managing the BSM Service (Tasks). Audit CommandsThis section provides information about the commands that are used with the auditing service. The Audit DaemonThe following list summarizes what the audit daemon, auditd, does.
The auditd daemon can be started automatically when the machine is brought up to multiuser mode, or you can start it from the command line. When the audit daemon is started, it determines the amount of free space necessary for audit log files. The daemon uses the list of audit directories in the audit_control file as possible locations for creating audit files. The audit daemon maintains a pointer into this list of directories, starting with the first directory. Every time the audit daemon needs to create an audit file, it puts the file into the first available directory in the list. The list starts at the audit daemon's current pointer. You can reset the pointer to the beginning of the list by running the audit -s command. The audit -n command instructs the daemon to switch to a new audit file. The new file is created in the same directory as the current file. The audit CommandThe audit command controls the actions of the audit daemon. The audit command can do the following tasks:
See the audit(1M) man page for a discussion of the available options. The bsmrecord CommandThe bsmrecord command displays the format of audit events that are defined in the /etc/security/audit_event file. The output includes the event's audit ID, audit class, audit flag, and the record's tokens in order. With no option, the bsmrecord output displays well in a terminal window. With the -h option, the output is suitable for viewing in a browser. See How to Display Audit Record Formats for examples of its use. For more information, see the bsmrecord(1M) man page. The auditreduce CommandUse the auditreduce command to merge audit records from one or more input audit files. The command can also be used to perform a post selection of audit records. See the auditreduce(1M) man page. To merge the entire audit trail, run this command on the audit server. The audit server is the machine that mounts all the audit file systems for the installation. The auditreduce command enables you to track all auditable actions on multiple machines from a single location. The command can read the logical combination of all audit files as a single audit trail. You must identically configure all machines at a site for auditing, and create servers and local directories for the audit log files. The auditreduce command ignores how the records were generated or where they are stored. Without options, the auditreduce command merges audit records from all the audit files in all of the subdirectories in the audit root directory. Typically, /etc/security/audit is the audit root directory. The auditreduce command sends the merge result to standard output. You can also place the result into a single, chronologically ordered output file. The file contains binary data. The auditreduce command also can select particular types of records for analysis. The merging functions and selecting functions of the auditreduce command are logically independent. auditreduce captures data from the input files as the records are read, before the files are merged and then written to disk. The praudit command makes the binary output of the auditreduce command readable. By specifying options to the auditreduce command, you can also do the following:
With no arguments, auditreduce checks the subdirectories within the /etc/security/audit directory, the default audit root directory. The command checks for a files directory in which the start-time.end-time.hostname files reside. The auditreduce command is very useful when audit data resides in separate directories. Figure 23–1 illustrates audit data in separate directories for different hosts. Figure 23–2) illustrates audit data in separate directories for different audit servers. Figure 23–1 Audit Trail Storage Sorted by Host
Figure 23–2 Audit Trail Storage Sorted by Server
If the partition for /etc/security/audit is very small, you might not store audit data in the default directory. You can pass the auditreduce command another directory by using the -R option:
You can also specify a particular subdirectory by using the -S option:
You can direct auditreduce to process only certain audit log files by specifying them as command arguments:
For other options and additional examples, see the auditreduce(1M) man page. The praudit CommandThe praudit command reads audit records in binary format from standard input and displays the records in a presentable format. The input can be piped from the auditreduce command or from a single audit file. Input can also be produced with the cat command to concatenate several files, or the tail command for a current audit file. The praudit command can generate five output formats:
In the default output format of praudit, each record is easily identified as a sequence of audit tokens. Each token is on a separate line. Each record begins with a header token. You could, for example, further process the output with the awk command. Here is the default output from the praudit command for a header token:
Here is the output from the praudit -r command for the same header token:
Example—Processing praudit Output With a ScriptSometimes, you might want to manipulate output from the praudit command as lines of text. For example, you might want to select records that the auditreduce command cannot select. You can use a simple shell script to process the output of praudit. The following simple example script puts one audit record on one line, searches for a user-specified string, then returns the audit file to its original form. Specifically, the script does the following:
Note that the ^a in the script is Control-A, not the two characters ^ and a. The prefix distinguishes the header token from the string header that might appear as text. The auditconfig CommandThe auditconfig command provides a command-line interface to retrieve and set audit configuration parameters. The auditconfig command can do the following tasks:
See the auditconfig(1M) man page for a discussion of the command options. Audit Service FilesAuditing uses the following files: The /etc/system FileThe /etc/system file contains commands that the kernel reads during initialization to customize the system operations. The bsmconv and bsmunconv shell scripts, which are used to activate and deactivate auditing, modify the /etc/system file. The bsmconv shell script adds the following line to the /etc/system file:
The set c2audit:audit_load=1 command causes the auditing module, a kernel module, to be loaded when the system is booted. The bsmunconv shell script disables auditing when the system is rebooted. The command removes the c2audit line from the /etc/system file. The audit_class FileThe /etc/security/audit_class file contains definitions of the existing audit classes. Audit classes are groups of audit events. Each class has an associated audit flag, which is the short name that stands for the class. You use the short name in the audit_control file to preselect the classes whose events you want to audit. The flags accept prefixes for finer–grained selection. See Audit Flag Syntax for more information. The root user, or an administrator in an equivalent role, can modify the definitions of audit classes. This administrator can define new audit classes, rename existing classes, or otherwise change existing classes by editing the audit_class file in a text editor. See the audit_class(4) man page for more information. For descriptions of the audit flags, see Definitions of Audit Flags. The audit_control FileAn /etc/security/audit_control file on each machine is read by the audit daemon. See the audit_control(4) man page. The audit_control file is located in the /etc/security directory. Each machine has its own local audit_control file. The file enables every machine to mount their audit file systems from different locations or in a different order. For example, the primary audit file system for machineA might be the secondary audit file system for machineB. You specify four kinds of information in the audit_control file. Each line of information begins with a keyword.
An audit_control file is created during the configuration process on each machine. When you make changes to the audit_control file, you then run the audit -s command to instruct the audit daemon to reread the file. Note – The audit -s command does not change the preselection mask for existing processes. Use auditconfig, setaudit, or auditon for existing processes. See the getaudit(2) and auditconfig(1M) man pages for more information. Sample audit_control FileThe following is a sample audit_control file for the machine dopey. dopey uses two audit file systems on the audit server blinken, and a third audit file system that is mounted from the second audit server winken. The third file system is used only when the audit file systems on blinken become full or unavailable. The minfree value of 20 percent specifies that the warning script is run when the file systems are 80 percent filled. The flags specify that logins and administrative operations are to be audited. The operations are audited for success and for failure. Failures of all types, except failures to create a file system object, are to be audited. Non-attributable events are also audited.
The audit_data FileWhen the auditd daemon starts on each machine, it creates the file /etc/security/audit_data. The format of the file consists of a single entry with the two fields separated by a colon. See the audit_data(4) man page. The first field is the audit daemon's process ID. The second field is the path name of the audit file to which the audit daemon is currently writing audit records. Here is an example:
The audit_event FileThe /etc/security/audit_event file contains the default event-to-class mappings.You can edit this file to change the class mappings. However, if you do so, you must reboot the system or run auditconfig -conf to read the changed mappings into the kernel. See the audit_event(4) man page. The audit_startup ScriptThe /etc/security/audit_startup script automatically starts the audit daemon when the system enters multiuser mode. The script is invoked as part of the startup sequence, just prior to the execution of the audit daemon. See the audit_startup(1M) man page for more information. A default audit_startup script that automatically configures the event-to-class mappings and sets the audit policies. The script is created during the BSM package installation. The audit_user FileTo audit some users differently from others, you can edit the /etc/security/audit_user file to add audit flags for individual users. If specified, these flags are combined with the system-wide flags in the audit_control file to determine which classes of events to audit for that user. The flags that you add to the user's entry in the audit_user file modify the defaults from the audit_control file in two ways:
Each user entry in the audit_user file contains three fields.
The audit fields are processed in sequence. The always-audit field turns on the auditing of the classes in that field. The never-audit field turns off the auditing of the classes in that field. Note – Avoid the common mistake of leaving the all audit flag in the never-audit field. This mistake causes all auditing to be turned off for that user, which overrides the flags that are set in the always-audit field. The flag also overrides machine-wide audit flags set in the audit_control file. The never-audit flags for a user override the system defaults. You might not want to overrride system defaults. For example, suppose you want to audit everything for user tamiko for except for successful reads of file system objects. This strategy audits almost everything for a user. However, the strategy generates about three-quarters of the audit data that would be produced if all data reads were audited. You also want to apply the system defaults to tamiko. Here are two possible audit_user entries: The correct entry:
The incorrect entry:
The first example means, “always audit everything except for successful file-reads.” The second example means, “always audit everything, but never audit successful file-reads.” The second example is incorrect because the never-audit field would override the system defaults. The first example achieves the desired effect: the always-audit flags include the exception to the all flag. Since no flag is in the never-audit field, the system defaults from the audit_control file are not overridden here. Note – Successful events and failed events are treated separately. A process could generate more audit records when an error occurs than when an event is successful. The audit_warn ScriptWhenever the audit daemon encounters an unusual condition while writing audit records, it invokes the /etc/security/audit_warn script. See the audit_warn(1M) man page. You can customize this script for your site to warn of conditions that might require manual intervention. Or, you could specify how to handle those conditions automatically. For all error conditions, audit_warn writes a message to the console. audit_warn also sends a message to the audit_warn mail alias. You should set up this alias when you enable auditing. When audit daemon detects the following conditions, it invokes the audit_warn script.
Audit Administration ProfilesThe Solaris operating environment provides profiles for configuring the audit service and for analyzing the audit trail.
To assign a profile to a role, see Creating Roles. Audit Classes and Their Audit FlagsAudit flags indicate classes of events to audit. Machine-wide defaults for auditing are specified for all users on each machine by flags in the audit_control file. The file is described in The audit_control File. You can modify what is audited for individual users by putting audit flags in a user's entry in the audit_user file. The audit flags are also used as arguments to the auditconfig command. See the auditconfig(1M) man page. Definitions of Audit FlagsThe following table shows each predefined audit class. The table shows the audit flag, the long name, and a short description. The audit flag is the short name that stands for the class. You use these audit flags in the auditing configuration files to specify which classes of events to audit. You also use them as arguments to auditing commands, such as auditconfig. You can define new classes by modifying the audit_class file. You can also rename existing classes. See the audit_class(4) man page for more information. Table 23–1 Predefined Audit Flags
Audit Flag SyntaxThe prefixes to the audit flags determine whether a class of events is audited for success, or for failure. Without a prefix, a class is audited for success and for failure. The following table shows the format of the audit flag and some possible representations. Table 23–2 Plus and Minus Prefixes to Audit Flags
The all flag can generate large amounts of data and fill up audit file systems quickly. Use the all flag only if you have extraordinary reasons to audit all activities. Prefixes That Modify Audit FlagsAudit flags that were previously selected can be further modified by a caret prefix, ^. The following table shows how the caret prefix modifies a preselected audit flag. Table 23–3 Caret Prefix That Modifies Already-Specified Audit Flags
The prefixes to the audit flags can be used in the following files and commands:
See The audit_control File for an example of using the prefixes in the audit_control file. Audit PoliciesAudit policies determine if additional information is added to the audit trail. The audit policies are described in Determining Which Audit Policies to Use. Process Audit CharacteristicsThe following audit characteristics are set at initial login:
Audit TrailThe audit trail is created by the audit daemon. The audit daemon starts on each machine when the machine is brought up. After the auditd daemon starts at boot time, it is responsible for collecting the audit trail data and writing the audit records into audit files, which are also called audit log files. For a description of the file format, see the audit.log(4) man page. See also the auditd(1M) man page. Even though you can physically locate audit directories within file systems that are not dedicated to auditing, do not do so except for directories of last resort. Directories of last resort are directories where audit files are written only when there is no other suitable directory available. There is one other scenario where locating audit directories outside of dedicated audit file systems could be acceptable. You might do so in a software development environment where auditing is optional. To make full use of disk space might be more important than to keep an audit trail. However, in a security-conscious environment, audit directories within other file systems is not acceptable. You should also consider the following factors.
Naming Conventions for Audit FilesEach audit file is a self-contained collection of records. The file's name identifies the time span during which the records were generated and the machine that generated them. Audit File NamingAudit files that are complete have names of the following form:
where
For an example of these names, see Example of a Closed Audit File Name. An audit log file that is still active has a name of the following form:
How Audit File Names Are UsedThe time stamps in file names are used by the auditreduce command to locate records within a specific time range. These time stamps are important because there can be a month's accumulation or more of audit files online. To search all the files for records that were generated in the last 24 hours would be unacceptably expensive. Time-Stamp Format and InterpretationThe start-time and end-time are timestamps with one-second resolution. They are specified in Greenwich Mean Time (GMT). The format is four digits for the year, followed by two digits for each month, day, hour, minute, and second, as follows:
The timestamps are in GMT to ensure that they sort in proper order even across a daylight savings time boundary. Because they are in GMT, the date and hour must be translated to the current time zone to be meaningful. Beware of this point whenever you manipulate these files with standard file commands rather than with the auditreduce command. Example of a File Name for a Still-Active FileThe format of a file name of a still-active file is as follows:
Here is an example:
The audit log files are named by the beginning date. So, in the example above the audit file was created in 1999, on March 27, at 10:52:43 p.m, GMT. The not_terminated in the file name means either that the file is still active or that the auditd daemon was unexpectedly interrupted. The name dopey at the end is the host name of the machine whose audit data is being collected. Example of a Closed Audit File NameThe format of the name of a closed audit log file is as follows:
Here is an example:
In this example, the audit log file was created in 1999, on March 20, at 12:52:43 a.m., GMT. The file was closed March 27, at 10:53:51 p.m., GMT. The name dopey at the end is the host name of the machine whose audit data was collected. Whenever auditd is unexpectedly interrupted, the audit file that is open at the time retains the not_terminated file name designation. For example, when a machine is writing to a remotely mounted audit file, the file server can become inaccessible. When the mounted audit file cannot be reached, the not_terminated designation remains in the file's name. When service is restored, the audit daemon opens a new audit file and keeps the old audit file name intact. Audit Record StructureAn audit record is a sequence of audit tokens. Each audit token contains event information such as user ID, time, and date. A header token begins an audit record, and an optional trailer token concludes the record. Other audit tokens contain information relevant to the auditable event. The following figure shows a typical audit record. Figure 23–3 Typical Audit Record Structure
Audit Token FormatsEach token has a token type identifier followed by data that is specific to the token. Each token type has its own format. The following table shows the token names with a description of each token. Table 23–4 Audit Tokens for the Basic Security Module
An audit record always contains a header token. The header token indicates where the audit record begins in the audit trail. Every audit record contains a subject token, except for audit records from some nonattributable events. In the case of attributable events, these two tokens refer to the values of the process that caused the event. In the case of asynchronous events, the process tokens refer to the system. acl TokenThe acl token records information about Access Control Lists. This token consists of four fixed fields:
The praudit command displays the acl token as follows:
The following figure shows the format of the acl token. Figure 23–4 acl Token Formatarbitrary TokenThe arbitrary token encapsulates data for the audit trail. This token consists of four fixed fields and an array of data. The fixed fields are as follows:
The remainder of the token is composed of one or more items of the specified type. The praudit command displays the arbitrary token as follows:
The following figure shows the format of the arbitrary token. Figure 23–5 arbitrary Token FormatThe following table shows the possible values of the print format field. Table 23–5. Table 23–5 Values for the arbitrary Token's Print Format Field
The following table shows the possible values of the item size field. Table 23–6 Values for the arbitrary Token's Item Size Field
arg TokenThe arg token contains information about the arguments to a system call: the argument number of the system call, the argument value, and an optional description. This token allows a 32-bit integer system-call argument in an audit record. The arg token has five fields:
The praudit command displays the arg token as follows:
The following figure shows the format of the arg token. Figure 23–6 arg Token Formatattr TokenThe attr token contains information from the file vnode. This token has seven fields:
See the statvfs(2) man page for further information about the file system ID and the device ID. The attr token usually accompanies a path token. The attr token is produced during path searches. In the event of a path-search error, there is no vnode available to obtain the necessary file information. Therefore, the attr token is not included as part of the audit record. The praudit command displays the attr token as follows:
The following figure shows the format of an attr token. Figure 23–7 attr Token Formatexec_args TokenThe exec_args token records the arguments to an exec() system call. The exec_args token has two fixed fields:
The remainder of this token is composed of zero or more null-terminated strings. The praudit command displays the exec_args token as follows:
The following figure shows the format of an exec_args token. Figure 23–8 exec_args Token FormatNote – The exec_args token is output only when the audit policy argv is active. exec_env TokenThe exec_env token records the current environment variables to an exec() system call. The exec_env token has two fixed fields:
The remainder of this token is composed of zero or more null-terminated strings. The praudit command displays the exec_env token as follows:
The following figure shows the format of an exec_env token. Figure 23–9 exec_env Token Format
Note – The exec_env token is output only when the audit policy arge is active. exit TokenThe exit token records the exit status of a program. The exit token contains the following fields:
The praudit command displays the exit token as follows:
The following figure shows the format of an exit token. Figure 23–10 exit Token Formatfile TokenThe file token is a special token that is generated by the audit daemon. The token marks the beginning of a new audit file and the end of an old audit file as the old file is deactivated. The audit daemon builds a special audit record that contains this token to “link” together successive audit files into one audit trail. The file token has four fields:
The praudit command displays the file token as follows:
The following figure shows the format of a file token. Figure 23–11 file Token Formatgroup Token (Obsolete)This token has been replaced by the newgroups token, which provides the same type of information but requires less space. A description of the group token is provided here for completeness, but the application designer should use the newgroups token. Notice that praudit does not distinguish between the two tokens, as both token IDs are labeled group in praudit output. The group token records the groups entries from the process's credential. The group token has two fixed fields:
The remainder of the token consists of zero or more group entries. The praudit command displays the group token as follows:
The following figure shows the format of a group token. Figure 23–12 group Token FormatNote – The group token is output only when the audit policy group is active. header TokenThe header token is special in that it marks the beginning of an audit record. The header token combines with the trailer token to bracket all the other tokens in the record. The header token has six fields:
On 64-bit systems, the header token is displayed with a 64-bit time stamp, in place of the 32-bit time stamp. The praudit command displays the header token for a ioctl() system call as follows:
The following figure shows the format of a header token. Figure 23–13 header Token FormatThe ID modifier field has the following flags defined:
in_addr TokenThe in_addr token contains an Internet Protocol address. Since the Solaris 8 release, the Internet address can be displayed in IPv4 format or IPv6 format. The IPv4 address uses 4 bytes. The IPv6 address uses 16 bytes to describe the type, and 16 bytes to describe the address. The in_addr token has two fields:
The praudit command displays the in_addr token as follows:
The following figure shows the format of an in_addr token. Figure 23–14 in_addr Token Formatip Token (Obsolete)The ip token contains a copy of an Internet Protocol header. The ip token has two fields:
The praudit command displays the ip token as follows:
The IP header structure is defined in the /usr/include/netinet/ip.h file. The following figure shows the format of an ip token. Figure 23–15 ip Token Formatipc TokenThe ipc token contains the System V IPC message/semaphore/shared-memory handle that is used by the caller to identify a particular IPC object. The ipc token has three fields:
The praudit command displays the ipc token as follows:
Note – The IPC object identifiers violate the context-free nature of the Solaris audit tokens. No global “name” uniquely identifies IPC objects. Instead, IPC objects are identified by their handles. The handles are valid only during the time that the IPC objects are active. However, the identification of IPC objects should not be a problem. The System V IPC mechanisms are seldom used, and the mechanisms all share the same audit class. The following table shows the possible values for the IPC object type field. The values are defined in the /usr/include/bsm/audit.h file. Table 23–7 Values for the IPC Object Type Field
The following figure shows the format of an ipc token. Figure 23–16 ipc Token Formatipc_perm TokenThe ipc_perm token contains a copy of the System V IPC access information. This token is added to audit records that are generated by IPC shared-memory events, IPC semaphore events, and IPC message events. The ipc_perm token has eight fields:
The praudit command displays the ipc_perm token as follows:
The values are taken from the ipc_perm structure that is associated with the IPC object. The following figure shows the format of an ipc_perm token. Figure 23–17 ipc_perm Token Formatiport TokenThe iport token contains the TCP or UDP port address. The iport token has two fields:
The praudit command displays the iport token as follows:
The following figure shows the format of an iport token. Figure 23–18 iport Token Formatnewgroups TokenThis token replaces the group token. Notice that the praudit command does not distinguish between the two tokens, as both token IDs are labeled group in praudit output. The newgroups token records the group entries from the process's credential. The newgroups token has two fixed fields:
The remainder of this token is composed of zero or more group entries. The praudit command displays the newgroups token as follows:
The following figure shows the format of a newgroups token. Figure 23–19 newgroups Token FormatNote – The newgroups token is output only when the group audit policy is active. opaque TokenThe opaque token contains unformatted data as a sequence of bytes. The opaque token has three fields:
The praudit command displays the opaque token as follows:
The following figure shows the format of an opaque token. Figure 23–20 opaque Token Formatpath TokenThe path token contains access path information for an object. This token contains the following fields:
The praudit command displays the path token as follows. Note that the path length field is not displayed.
The following figure shows the format of a path token. Figure 23–21 path Token Format
process TokenThe process token contains information about a user who is associated with a process, such as the recipient of a signal. The process token has nine fields:
The audit ID, user ID, group ID, process ID, and session ID are long instead of short. Note – The process token fields for the session ID, the real user ID, or the real group ID might be unavailable. The value is then set to -1. Any token that contains a terminal ID has several variations. The praudit command hides these variations. So, the terminal ID is handled the same way for any token that contains a terminal ID. The terminal ID is either an IP address and port number, or a device ID. A device ID, such as the serial port that is connected to a modem, can be zero. The terminal ID is specified in one of several formats. The terminal ID for device numbers is specified as follows:
The terminal ID for port numbers in releases that are earlier than the Solaris 8 release is specified as follows:
The terminal ID for port numbers in the Solaris 8 release or the Solaris 9 release is specified as follows:
The praudit command displays the process token as follows:
The following figure shows the format of a process token. Figure 23–22 process Token Format
return TokenThe return token contains the return status of the system call (u_error) and the process return value (u_rval1). This token has three fields:
The return token is always returned as part of kernel-generated audit records for system calls. This token indicates exit status and other return values in application auditing. The praudit command displays the return token as follows:
The following figures shows the format of a return token. Figure 23–23 return Token Formatseq TokenThe sequence token, seq, is an optional token that contains a sequence number. Used for debugging, this token is added to each audit record when the seq policy is active. The seq token has two fields:
The sequence number is incremented every time an audit record is generated and added to the audit trail. The praudit command displays the seq token as follows:
The following figure shows the format of a seq token. Figure 23–24 seq Token FormatNote – The seq token is output only when the seq audit policy is active. socket TokenThe socket token contains information that describes an Internet socket. This token has six fields:
The praudit command displays the socket token as follows:
Since the Solaris 8 release, the Internet address can be displayed in IPv4 format or IPv6 format. The IPv4 address uses 4 bytes. The IPv6 address uses 16 bytes to describe the type, and 16 bytes to describe the address. The following figure shows the format of a socket token. Figure 23–25 socket Token Formatsubject TokenThe subject token describes a user who performs or attempts to perform an operation. The format is the same as the process token. The subject token has nine fields:
The audit ID, user ID, group ID, process ID, and session ID are long instead of short. Note – The subject token fields for the session ID, the real user ID, or the real group ID might be unavailable. The value is then set to -1. Any token that contains a terminal ID has several variations. The praudit command hides these variations. So, the terminal ID is handled the same way for any token that contains a terminal ID. The terminal ID is either an IP address and port number, or a device ID. A device ID, such as the serial port that is connected to a modem, can be zero. The terminal ID is specified in one of several formats. The terminal ID for device numbers is specified as follows:
The terminal ID for port numbers in releases that are earlier than the Solaris 8 release is specified as follows:
The terminal ID for port numbers in the Solaris 8 release or the Solaris 9 release is specified as follows:
The subject token is always returned as part of kernel-generated audit records for system calls. The praudit command displays the subject token as follows:
The following figure shows the format of the subject token. Figure 23–26 subject Token Format
text TokenThe text token contains a text string. This token has three fields:
The praudit command displays the text token as follows:
The following figure shows the format of a text token. Figure 23–27 text Token Formattrailer TokenThe two tokens, header and trailer, are special in that they distinguish the end points of an audit record and bracket all the other tokens. A header token begins an audit record. A trailer token ends an audit record. The trailer token is an optional token. The trailer token is added as the last token of each record only when the trail audit policy has been set. If an audit record was generated with trailers turned on, the auditreduce command verifies that the trailer points back to the record header correctly. The trailer token supports backward seeks of the audit trail. The trailer token has three fields:
The praudit command displays the trailer token as follows:
The following figure shows the format of a trailer token. Figure 23–28 trailer Token FormatDevice Allocation ReferenceDevice allocation protects removable media from unauthorized use. You can require that a user allocate a device. You can deny a user permission to use a device. Such allocation measures can protect your site from loss of data, computer viruses, and other security breaches. The following section provides information about device allocation. Components of the Device-Allocation MechanismThe components of the device-allocation mechanism are as follows:
The device_allocate file, the device_maps file, and the lock files are local configuration files. These files are not administered as name service databases because tape drives, diskette drives, and printers connect to specific machines. Using the Device Allocation CommandsThis section describes some of the options to the allocate, deallocate, and list_devices commands that are for use by administrators. Only root or a role of equivalent power can access these options. The commands are detailed on their respective man pages. Table 23–8 Administrative Options to the Device Allocation Commands
The Allocate Error StateAn allocatable device is in the allocate error state if it is owned by user bin and group bin with a device-special file mode of 0100. If a user wants to allocate a device that is in the allocate error state, you can try to force the deallocation of the device. The deallocate command with the -F option forces deallocation. Or, you can use allocate -U to assign the device to the user. Once the device is allocated, you can investigate any error messages that appear. After any problems with the device are corrected, you must use the force option, -F to clear the allocate error state from the device. The device_maps FileYou can examine the /etc/security/device_maps file to determine the device names, device types, and device-special files that are associated with each allocatable device. See the device_maps(4) man page. Device maps are created when you set up device allocation. A rudimentary device_maps file is created by bsmconv when the BSM is enabled. This initial device_maps file should be used only as a starting point. You can then augment and customize the device_maps file for your site. The device_maps file defines the device-special file mappings for each device, which in many cases is not intuitive. This file allows various programs to discover which device-special files map to which devices. You can use the dminfo command, for example, to retrieve the device name, the device type, and the device-special files to specify when you set up an allocatable device. The dminfo command uses the device_maps file to report this information. Each device is represented by a one-line entry of the form: device-name:device-type:device-list Lines in the device_maps file can end with a backslash (\) to continue an entry on the next line. Comments can also be included. A “#” makes a comment out of all subsequent text until the next newline not immediately preceded by a backslash. Leading and trailing blanks are allowed in any field. Table 23–9 Description of Fields in a device_maps Entry
The following is an example of entries in a device_maps file for SCSI tape st0 and diskette fd0.
The device_allocate FileYou can modify the device_allocate file to change devices from allocatable to nonallocatable, or to add new devices. A sample device_allocate file follows.
You define which devices should be allocatable during initial BSM configuration. You can decide to accept the default devices and their defined characteristics, as shown in the preceding sample device_allocate file. Whenever you add a device to any machine after the system is up and running, you must decide whether to make the new device allocatable. After installation, you can modify the entries for devices in the device_allocate file. Any device that needs to be allocated before use must be defined in the device_allocate file on each machine. Currently, cartridge tape drives, diskette drives, CD-ROM devices, and audio chips are considered allocatable. These device types have device-clean scripts. Note – XylogicsTM tape drives or Archive tape drives also use the st_clean script that is supplied for SCSI devices. You need to create your own device-clean scripts for other devices, such as modems, terminals, graphics tablets, and other allocatable devices. The script must fulfill object-reuse requirements for that type of device. An entry in the device_allocate file does not mean that the device is allocatable, unless the entry specifically states that the device is allocatable. In the sample device_allocate file, note the asterisk (*) in the fifth field of the audio device entry. An asterisk in the fifth field indicates to the system that the device is not allocatable. That is, the system administrator does not require a user to allocate the device before it is used nor to deallocate it afterward. Any other string placed in this field indicates that the device is allocatable. In the device_allocate file, you represent each device by a one-line entry of the form:
For example, the following line shows the entry for device name st0:
Lines in the device_allocate file can end with a “\” to continue an entry on the next line. Comments can also be included. A “#” makes a comment out of all subsequent text until the next newline not immediately preceded by a “\”. Leading and trailing blanks are allowed in any field. The following table describes each field in the device_allocate file. Table 23–10 Description of Fields in a device_allocate Entry
Device-Clean ScriptsThe device-clean scripts address the security requirement that all usable data be purged from a physical device before reuse. By default, cartridge tape drives, diskette drives, CD-ROM devices, and audio devices require device-clean scripts, which are provided. This section describes what device-clean scripts do. Object ReuseDevice allocation satisfies part of the object-reuse requirement. The device-clean scripts make sure that data that is left on a device by one user is cleared. The data is cleared before the device is allocatable by another user. Device-Clean Script for TapesThe st_clean device-clean script supports three tape devices. The supported tape devices are as follows:
The st_clean script uses the rewoffl option to the mt command to affect the device cleanup. For more information, see the mt(1) man page. If the script runs during system boot, the script queries the device. The script determines if the device is online. If the device is online, the script determines if the device has media in it. The 1/4-inch tape devices that have media in them are placed in the allocate error state. The allocate error state forces the administrator to clean up the device manually. During normal system operation, when the allocate or deallocate command is executed in interactive mode, the user is prompted to remove the media. The script pauses until the media is removed from the device. Device-Clean Scripts for Diskettes and CD-ROM DevicesThe following table shows the device-clean scripts for diskettes and CD-ROM devices. Table 23–11 Device-Clean Scripts for Diskettes and CD-ROM Devices
The scripts use the eject command to remove the media from the drive. See the eject(1) man page. If the eject command fails, the device is placed in the allocate error state. Device-Clean Script for AudioAudio devices are cleaned up with an audio-clean script. The script performs an AUDIO_DRAIN ioctl system call to flush the device. The script then performs an AUDIO_SETINFO ioctl system call to reset the device configuration to the default. In addition, the script retrieves the audio chip registers by using the AUDIOGETREG ioctl system call. Any registers that deviate from the default settings are reset by using the AUDIOSETREG ioctl system call. Writing New Device-Clean ScriptsIf you add more allocatable devices to the system, you might need to create your own device-clean scripts. The deallocate command passes a parameter to the device-clean scripts. The parameter, shown here, is a string that contains the device name. See the device_allocate(4) man page for more information.
Device-clean scripts must return “0” for success and greater than “0” for failure. The options -I, -F, and -S help the script determine its running mode. The following table describes the options. Table 23–12 Options for Device-Clean Scripts
How the Device Allocation Mechanism WorksThis section gives an example of how the device-allocate mechanism works. The allocate command first checks for the presence of a lock file under the device name for the specified device in the /etc/security/dev directory. If the file is owned by allocate, then the ownership of the lock file is changed to the name of the user who initiated the allocate command. The allocate command then checks for an entry for the device in the device_allocate file. The command further checks that the entry shows that the device as allocatable. The first listing in the following example shows that a lock file exists with owner bin, group bin, and mode 600 for the st0 device in /etc/security/dev. The second listing shows that the associated device-special files are set up properly, with owner bin, group bin, and mode 000.
In this example, the user vanessa allocates device st0.
When the user vanessa runs the allocate command to allocate the tape st0, allocate first checks for the existence of an /etc/security/dev/st0 file. If no lock file exists or if the lock file is owned by a user other than allocate, then user vanessa could not allocate the device. If the allocate command finds the lock file for the device with the correct ownership and permissions, the command then checks to make sure that the device has an entry in the device_allocate file. The command also checks that the entry specifies that the device is allocatable. In this example, the default device_allocate entry for the st0 device specifies that the device is allocatable. Because the allocate command finds that all these conditions are met, the device is allocated to user vanessa. The allocate command changes the ownership and permissions of the device-special files that are associated with the device in the /dev directory. To allocate the st0 device to the user vanessa, the mode on its associated device-special files is changed to 600 and the owner is changed to vanessa. The allocate command also changes the ownership of the lock file that is associated with the device in the /etc/security/dev directory. To allocate the st0 device to the user vanessa, the owner of /etc/security/dev/st0 is changed to vanessa. In the following example, after the user vanessa executes the allocate command with the device name st0, the owner of /etc/security/dev/st0 is changed to vanessa and the owner of the associated device-special files is now also vanessa. Lastly, user vanessa now has permission to read and write the files.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||