device_contract - device contract type
/system/contract/device
Device contracts allow processes to monitor events involving a device of interest and to react and/or block state changes involving such devices.
Device contracts are managed using the contract(4) file system and the libcontract(3LIB) library. The process contract type directory is /system/contract/device.
A device contract may be created in one of two ways:
A state refers to the state of the device which is the subject of the contract. Currently, three states are defined for device contracts:
CT_DEV_EV_ONLINE
CT_DEV_EV_DEGRADED
CT_DEV_EV_OFFLINE
A process creates a device contract with the kernel to get a guarantee that the device is in an acceptable set of states as long as the contract is valid. This acceptable set (or "A-set", for short) is specified as one of the terms of the contract when the contract is created.
When a device moves to a state outside the "A-set", the contract is broken. The breaking of the contract may be either asynchronous or synchronous, depending on whether the transition that led to the breaking of the contract is synchronous or asynchronous.
If the breaking of a contract is asynchronous, then a critical event is generated and sent to the contract holder. The event is generated even if the contract holder has not subscribed to the event via the critical or informative event sets.
If the breaking of the contract is synchronous, a critical contract event is generated with the CTE_NEG flag set to indicate that this is a negotiation event. The contract holder is expected to either acknowledge (ACK) this change and allow the state change to occur or it may negatively acknowledge (NACK) the change to block it (if it has sufficient privileges).
The term "event" refers to the transition of a device from one state to another. The event is named by the state to which the device is transitioning. For instance, if a device is transitioning to the OFFLINE state, the name of the event is CT_DEV_EV_OFFLINE. An event may have no consequence for a contract, or it may result in the asynchronous breaking of a contract or it may result in a synchronous (that is, negotiated) breaking of a contract. Events are delivered to a contract holder in three cases:
In the last two cases, a critical event is delivered even if the holder has not subscribed to the event via the critical or informative event sets.
If the breaking of a contract is synchronous, the kernel begins negotiations with the contract holder by generating a critical event before the device changes state. The event has the CTE_NEG flag set indicating that this is a negotiation event. The contract owner is allowed a limited period of time in which to either ACK the contract event (thus, allowing the state change) or if it has appropriate privileges, NACK the state change (thus, blocking the state change). ACKs may be sent by the holder via ct_ctl_ack(3CONTRACT) and NACKs may be sent via ct_ctl_nack(3CONTRACT). If a contract holder does not send either a NACK or ACK within a specified period of time, an ACK is assumed and the kernel proceeds with the state change.
Once the device state change is finalized, the contract subsystem sends negotiation end (NEGEND) critical messages to the contract owner indicating the final disposition of the state transition. That is, either success or failure.
Once a contract is broken, a contract owner may choose to create a replacement contract. It may do this after the contract is broken or it may choose to do this synchronously with the breaking of the old contract via ct_ctl_newct(3CONTRACT).
The following common contract terms, defined in contract(4), have device-contract specific attributes:
informative set
critical set
The following contract terms can be read from or written to a device contract template using the named libcontract(3LIB) interfaces. These contract terms are in addition to those described in contract(4).
CTDP_ACCEPT
This term is required for every device contract. It defines the set of device states which the contract owner expects to exist as long as the contract is valid. If a device transitions to a state outside this "A-set", then the contract breaks and is no longer valid. A critical contract event is sent to the contract owner to signal this break.
Use ct_dev_tmpl_set_aset() to set this term. The default "A-set" is CT_DEV_EV_ONLINE | CT_DEV_EV_DEGRADE. This term is mandatory. Use ct_dev_tmpl_get_aset() to query a template for this term.
CTDP_MINOR
If the contract is created synchronously at open(2) time, then this term is implied to be the minor node being opened. In this case, this term need not be explicitly be set.
Use ct_dev_tmpl_set_minor() to set this term. The default setting for this term is NULL. That is, no minor node is specified.
Use ct_dev_tmpl_get_noneg() to query a template for the setting of this term.
CTDP_NONEG
Use ct_dev_tmpl_set_noneg() to set this term. The default setting is off.
Use ct_dev_tmpl_get_noneg() to query a template for the setting of this term.
In addition to the standard items, the status object read from a status file descriptor contains the following items if CTD_FIXED is specified:
CTDS_STATE
Use ct_dev_status_get_dev_state() to obtain this information.
CTDS_ASET
Use ct_dev_status_get_aset() to obtain this information.
CTDS_NONEG
If CTD_ALL is specified, the following items are also available:
CTDS_MINOR
No new event related interfaces (beyond the standard contract event interfaces) are defined for device contract events.
/usr/include/sys/contract/device.h
ctrun(1), ctstat(1), ctwatch(1), open(2), ct_tmpl_set_critical(3CONTRACT), ct_tmpl_set_informative(3CONTRACT), ct_dev_tmpl_set_aset(3CONTRACT), ct_dev_tmpl_get_aset(3CONTRACT), ct_dev_tmpl_set_minor(3CONTRACT), ct_dev_tmpl_get_minor(3CONTRACT), ct_dev_tmpl_set_noneg(3CONTRACT), ct_dev_tmpl_get_noneg(3CONTRACT), ct_dev_status_get_dev_state(3CONTRACT), ct_dev_status_get_aset(3CONTRACT), ct_dev_status_get_minor(3CONTRACT), libcontract(3LIB), contract(4), privileges(5)
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |