MXS-421 Add maxscale::event concept
MaxScale now defines events for which the syslog facility and level can explicitly be defined by the administrator. Currently there is only one such event, namelt AUTHENTICATION_FAILURE. In a subsequent commit, config.cc will be modified so that event-related configuration parameters are passed to event::configure() and in another subsequent commit the authenticators will be modifed to use this mechanism. In practice a line like: MXS_WARNING("%s: login attempt for user '%s'@[%s]:%s, " "authentication failed.", dcb->service->name, client_data->user, dcb->remote, dcb->path); will be changed to MXS_LOG_EVENT(event::AUTHENTICATION_FAILURE, "%s: login attempt for user '%s'@[%s]:%s, " "authentication failed.", dcb->service->name, client_data->user, dcb->remote, dcb->path);
This commit is contained in:
46
server/core/internal/event.hh
Normal file
46
server/core/internal/event.hh
Normal file
@ -0,0 +1,46 @@
|
||||
#pragma once
|
||||
/*
|
||||
* Copyright (c) 2016 MariaDB Corporation Ab
|
||||
*
|
||||
* Use of this software is governed by the Business Source License included
|
||||
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
|
||||
*
|
||||
* Change Date: 2020-01-01
|
||||
*
|
||||
* On the date above, in accordance with the Business Source License, use
|
||||
* of this software will be governed by version 2 or later of the General
|
||||
* Public License.
|
||||
*/
|
||||
|
||||
#include <maxscale/cppdefs.hh>
|
||||
#include <maxscale/event.hh>
|
||||
|
||||
namespace maxscale
|
||||
{
|
||||
|
||||
namespace event
|
||||
{
|
||||
|
||||
enum result_t
|
||||
{
|
||||
IGNORED, /**< The configuration was ignored, it does not affect events. */
|
||||
INVALID, /**< The configuration was invalid. */
|
||||
ACCEPTED /**< The configuration was accepted. */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Configure an event
|
||||
*
|
||||
* @param zName A MaxScale event configuration item name,
|
||||
* such as "event.authentication_failure.facility"
|
||||
* @param zValue The value it should be set to, e.g. "LOG_ERROR".
|
||||
*
|
||||
* @return IGNORED, if @c zName does not start with "event.",
|
||||
* INVALID, if @c zName or @c zValue is invalid, and
|
||||
* ACCEPTED, if @c zName and @c zValue are valid.
|
||||
*/
|
||||
result_t configure(const char* zName, const char* zValue);
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user