Facility IOevent

A set of messages from the low-level I/O event handling sub-system

NameSeverityIDDescriptionAction
AcceptErrorerror114An error occurred in accept.
AddrTypeerror112The socket address specified a family not known to the stream provider.
Connectedsuccess113The stream provider is connected to the peer.
ConnectionClosednotice103The Peer network entity closed the connection.
DupReaderror110A read request was received by a stream provider, when there was already an outstanding read request.
DupWriteerror111A write request was received by a stream provider, when there was already an outstanding write request.
Inheritfatal118 In order to pass a connection to another process it has to be made inheritable. This operation failed.
InvalidParametererror100An invalid parameter was received in a request.
IOerrorfatal102A system error occurred on the connection.
Listeningsuccess117The provider is listening OK
ManagerCreatederror2An event manager has already been created. Programmer or configuration error
Managertypefatal1In attempting to configure an event manager, an unknown event manager type was provided. Programmer or configuration error
MissingUserwarning104A Provider has no user with which it can communicate. This could indicate a race condition when both the connection and the user of the connection are shutting down at the same time.
NoPollProviderfatal14An I/O Stream needs a Poll Provider, but none has been set up.
NotConnectederror101A request for I/O was received when the provider was not connected.
Pollerrorerror12The call to the given system call returned an error. These should be very unusual, and are probably the result of a system problem, such as resource limitations.
PollProviderCreatederror11An poll provider has already been created. Programmer or configuration error
PollProvidertypefatal10In attempting to configure a poll service provider, an unknown type was supplied. Programmer or configuration error
PollRegisterfatal15Registering the end point with the poll service failed. If the error is -1, then the end point was already registered. Other values are system error numbers.
Pollthreadfatal13A serious problem with locking has occurred. This is can be fatal to the operation of the I/O polling.
SSLalreadywarning219An attempt was made to start TLS when TLS had already been started.
SSLCAfileerror217The SSL/TLS system failed loading the trusted CA file.
SSLcertdecryptfailederror221Could not decrypt the signature in the certificate.
SSLcertexpirederror224The certificate has a validity period in the past.
SSLcertnotbeforeerror225The certificate has an invalid date in its notBefore field.
SSLcertnotyetvaliderror223The certificate has a validity period in the future.
SSLcertsignatureerror222The certificate's signature could not be verified.
SSLcertverifyerror218A certificate in the path failed verification for the reason stated.
SSLchaintoolongerror229The certificate chain was too long.
SSLDHfileerror215A problem was found reading the Diffie-Hellman parameter file.
SSLDHparamerror216There is a problem with a Diffie-Hellman parameter read from the parameter file.
SSLentropyerror205TLS cryptographic random number generator seed data being generated internally. This is probably less secure than you intend, and NOT suitable for production use. For production use, the configured seed file (name given in the message) should be filled with a sufficient amount of externally-generated cryptographically random data. (This needs to be done only once.) ACCESS CONTROL set on the seed file should prevent all other users reading and writing the file.
SSLerrorerror207There was an error in an SSL/TLS function.
SSLIDnotice209The SSL/TLS system loaded the identity found in the file.
SSLIDerrorerror208There was a failure adding the identity from the given file.
SSLIDloaderror211The SSL/TLS system failed loading the ID file.
SSLIDloaderrorerror212The SSL/TLS system failed loading the ID file.
SSLIDmissingerror213Could not find the identity file id.p12 in the directory.
SSLinvalidCAerror230The CA's certificate was not valid.
SSLinvalidpurposeerror232The certificate contained a purpose which is not supported.
SSLkeyusageerror237A certificate in the path is not allowed to sign another certificate.
SSLleafsignatureerror228The first certificate did not verify.
SSLlibiniterror204Failed to load SSL/TLS library.
SSLlocalissuererror227The local issuer's certificate was not available.
SSLnocerterror238The configuration requires peer authentication, and no peer certificate was available.
SSLnoIDsnotice210There were no SSL/TLS identities which could be loaded.
SSLnoissuercerterror220Peer authentication was unable to get the issuer certificate.
SSLnosuiteserror206There are no cipher suites configured.
SSLnotverifiederror202SSL/TLS failed to verify the peer entity. A subordinate message may give more information.
SSLOKsuccess200SSL/TLS has started correctly.
SSLpathlengtherror231The length of the path exceeded the constraint.
SSLpreconfigerror203The first configuration function call failed.
SSLrejectederror234The certificate was rejected.
SSLrsablindingnotice214RSA blinding has been disabled.
SSLselfsignederror226A self signed certificate was found in the chain.
SSLserialmismatcherror236Mistamch with the authority and issuer serial number.
SSLsubjectissuererror235There was a mismatch with the subject issuer.
SSLunknownerror239The verification failed for some unknown reason.
SSLuntrustederror233A certificate is not trusted.
SSLverifiedsuccess201SSL/TLS has started correctly, and the peer identity identity has been verified.
StreamProvidertypefatal116In attempting to create a stream provider, an unknown type was supplied. Programmer or configuration error
Terminatingnotice3The system is shutting down.
UnknownStreamOptwarning115A control message was sent to a stream provider with an unknown option. It was ignored.
WrongStatefatal105The provider is not the correct state for this operation.

Managertype

Message Text
Parameters
  1. The type of event manager requested
Description
In attempting to configure an event manager, an unknown event manager type was provided.
Action
Programmer or configuration error

ManagerCreated

Message Text
Description
An event manager has already been created.
Action
Programmer or configuration error

Terminating

Message Text
Description
The system is shutting down.
Action

PollProvidertype

Message Text
Parameters
  1. The type of poll provider
Description
In attempting to configure a poll service provider, an unknown type was supplied.
Action
Programmer or configuration error

PollProviderCreated

Message Text
Description
An poll provider has already been created.
Action
Programmer or configuration error

Pollerror

Message Text
Parameters
  1. The system call which returned the error
Description
The call to the given system call returned an error. These should be very unusual, and are probably the result of a system problem, such as resource limitations.
Action

Pollthread

Message Text
Parameters
  1. The error code from the pthread call.
Description
A serious problem with locking has occurred. This is can be fatal to the operation of the I/O polling.
Action

NoPollProvider

Message Text
Description
An I/O Stream needs a Poll Provider, but none has been set up.
Action

PollRegister

Message Text
Parameters
  1. The error code from the Register call.
Description
Registering the end point with the poll service failed. If the error is -1, then the end point was already registered. Other values are system error numbers.
Action

InvalidParameter

Message Text
Parameters
  1. The name of the parameter in error
Description
An invalid parameter was received in a request.
Action

NotConnected

Message Text
Description
A request for I/O was received when the provider was not connected.
Action

IOerror

Message Text
Parameters
  1. The operation which failed
Description
A system error occurred on the connection.
Action

ConnectionClosed

Message Text
Description
The Peer network entity closed the connection.
Action

MissingUser

Message Text
Description
A Provider has no user with which it can communicate. This could indicate a race condition when both the connection and the user of the connection are shutting down at the same time.
Action

WrongState

Message Text
Description
The provider is not the correct state for this operation.
Action

DupRead

Message Text
Description
A read request was received by a stream provider, when there was already an outstanding read request.
Action

DupWrite

Message Text
Description
A write request was received by a stream provider, when there was already an outstanding write request.
Action

AddrType

Message Text
Parameters
  1. The value of the sa_family field
Description
The socket address specified a family not known to the stream provider.
Action

Connected

Message Text
Description
The stream provider is connected to the peer.
Action

AcceptError

Message Text
Description
An error occurred in accept.
Action

UnknownStreamOpt

Message Text
Parameters
  1. The number of the option.
Description
A control message was sent to a stream provider with an unknown option. It was ignored.
Action

StreamProvidertype

Message Text
Parameters
  1. The type of stream provider
Description
In attempting to create a stream provider, an unknown type was supplied.
Action
Programmer or configuration error

Listening

Message Text
Description
The provider is listening OK
Action

Inherit

Message Text
Description
In order to pass a connection to another process it has to be made inheritable. This operation failed.
Action

SSLOK

Message Text
Parameters
  1. SSL version
  2. Cipher code
  3. Cipher strength
Description
SSL/TLS has started correctly.
Action

SSLverified

Message Text
Parameters
  1. SSL version
  2. Cipher code
  3. Cipher strength
  4. Peer name
Description
SSL/TLS has started correctly, and the peer identity identity has been verified.
Action

SSLnotverified

Message Text
Description
SSL/TLS failed to verify the peer entity. A subordinate message may give more information.
Action

SSLpreconfig

Message Text
Description
The first configuration function call failed.
Action

SSLlibinit

Message Text
Description
Failed to load SSL/TLS library.
Action

SSLentropy

Message Text
Parameters
  1. Name of seed file
  2. Specific information
Description
TLS cryptographic random number generator seed data being generated internally. This is probably less secure than you intend, and NOT suitable for production use.
Action
For production use, the configured seed file (name given in the message) should be filled with a sufficient amount of externally-generated cryptographically random data. (This needs to be done only once.) ACCESS CONTROL set on the seed file should prevent all other users reading and writing the file.

SSLnosuites

Message Text
Description
There are no cipher suites configured.
Action

SSLerror

Message Text
Parameters
  1. Context for error
  2. Specific information
Description
There was an error in an SSL/TLS function.
Action

SSLIDerror

Message Text
Parameters
  1. Path for ID file
Description
There was a failure adding the identity from the given file.
Action

SSLID

Message Text
Parameters
  1. Path for ID file
Description
The SSL/TLS system loaded the identity found in the file.
Action

SSLnoIDs

Message Text
Description
There were no SSL/TLS identities which could be loaded.
Action

SSLIDload

Message Text
Parameters
  1. Path for ID file
Description
The SSL/TLS system failed loading the ID file.
Action

SSLIDloaderror

Message Text
Parameters
  1. Path for ID file
  2. Additional information
Description
The SSL/TLS system failed loading the ID file.
Action

SSLIDmissing

Message Text
Parameters
  1. Path for ID file
Description
Could not find the identity file id.p12 in the directory.
Action

SSLrsablinding

Message Text
Description
RSA blinding has been disabled.
Action

SSLDHfile

Message Text
Parameters
  1. name of file
Description
A problem was found reading the Diffie-Hellman parameter file.
Action

SSLDHparam

Message Text
Parameters
  1. error detail
Description
There is a problem with a Diffie-Hellman parameter read from the parameter file.
Action

SSLCAfile

Message Text
Parameters
  1. Path for CA file
  2. Additional information
Description
The SSL/TLS system failed loading the trusted CA file.
Action

SSLcertverify

Message Text
Parameters
  1. Error number
  2. Error description
  3. Depth in chain
  4. Certificate issuer
Description
A certificate in the path failed verification for the reason stated.
Action

SSLalready

Message Text
Description
An attempt was made to start TLS when TLS had already been started.
Action

SSLnoissuercert

Message Text
Description
Peer authentication was unable to get the issuer certificate.
Action

SSLcertdecryptfailed

Message Text
Description
Could not decrypt the signature in the certificate.
Action

SSLcertsignature

Message Text
Description
The certificate's signature could not be verified.
Action

SSLcertnotyetvalid

Message Text
Description
The certificate has a validity period in the future.
Action

SSLcertexpired

Message Text
Description
The certificate has a validity period in the past.
Action

SSLcertnotbefore

Message Text
Description
The certificate has an invalid date in its notBefore field.
Action

SSLselfsigned

Message Text
Description
A self signed certificate was found in the chain.
Action

SSLlocalissuer

Message Text
Description
The local issuer's certificate was not available.
Action

SSLleafsignature

Message Text
Description
The first certificate did not verify.
Action

SSLchaintoolong

Message Text
Description
The certificate chain was too long.
Action

SSLinvalidCA

Message Text
Description
The CA's certificate was not valid.
Action

SSLpathlength

Message Text
Description
The length of the path exceeded the constraint.
Action

SSLinvalidpurpose

Message Text
Description
The certificate contained a purpose which is not supported.
Action

SSLuntrusted

Message Text
Description
A certificate is not trusted.
Action

SSLrejected

Message Text
Description
The certificate was rejected.
Action

SSLsubjectissuer

Message Text
Description
There was a mismatch with the subject issuer.
Action

SSLserialmismatch

Message Text
Description
Mistamch with the authority and issuer serial number.
Action

SSLkeyusage

Message Text
Description
A certificate in the path is not allowed to sign another certificate.
Action

SSLnocert

Message Text
Description
The configuration requires peer authentication, and no peer certificate was available.
Action

SSLunknown

Message Text
Parameters
  1. Internal error code
Description
The verification failed for some unknown reason.
Action