
The dbusers.c was a MySQL protocol specific file which was used directly by some of the modules. Added a new return value for the loadusers authenticator entry point which allows fatal failures to occur when users are loaded. Currently this is only taken into notice when the service is first started. If a listener later returns a fatal error, it is only logged but the service stays in operation. Moved the MySQLAuth authenticator sources and the tests that relate to this module into a subdirectory in the authenticator directory. Eventually, all authenticators could have a subdirectory of their own.
72 lines
2.2 KiB
C
72 lines
2.2 KiB
C
#pragma once
|
|
#ifndef _MAXSCALE_DBUSERS_H
|
|
#define _MAXSCALE_DBUSERS_H
|
|
/*
|
|
* 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/bsl.
|
|
*
|
|
* Change Date: 2019-07-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.
|
|
*/
|
|
|
|
/**
|
|
* @file dbusers.h Extarct user information form the backend database
|
|
*
|
|
* @verbatim
|
|
* Revision History
|
|
*
|
|
* Date Who Description
|
|
* 25/06/13 Mark Riddoch Initial implementation
|
|
* 25/02/13 Massimiliano Pinto Added users table refresh rate default values
|
|
* 28/02/14 Massimiliano Pinto Added MySQL user and host data structure
|
|
* 03/10/14 Massimiliano Pinto Added netmask to MySQL user and host data structure
|
|
* 13/10/14 Massimiliano Pinto Added resource to MySQL user and host data structure
|
|
*
|
|
* @endverbatim
|
|
*/
|
|
|
|
#include <maxscale/cdefs.h>
|
|
#include <maxscale/service.h>
|
|
#include <maxscale/protocol/mysql.h>
|
|
#include <arpa/inet.h>
|
|
|
|
MXS_BEGIN_DECLS
|
|
|
|
|
|
/** Cache directory and file names */
|
|
static const char DBUSERS_DIR[] = "cache";
|
|
static const char DBUSERS_FILE[] = "dbusers";
|
|
|
|
/**
|
|
* MySQL user and host data structure
|
|
*/
|
|
typedef struct mysql_user_host_key
|
|
{
|
|
char *user;
|
|
struct sockaddr_in ipv4;
|
|
int netmask;
|
|
char *resource;
|
|
char hostname[MYSQL_HOST_MAXLEN + 1];
|
|
} MYSQL_USER_HOST;
|
|
|
|
extern int add_mysql_users_with_host_ipv4(USERS *users, const char *user, const char *host,
|
|
char *passwd, const char *anydb, const char *db);
|
|
extern bool check_service_permissions(SERVICE* service);
|
|
extern int dbusers_load(USERS *, const char *filename);
|
|
extern int dbusers_save(USERS *, const char *filename);
|
|
extern int load_mysql_users(SERV_LISTENER *listener);
|
|
extern int mysql_users_add(USERS *users, MYSQL_USER_HOST *key, char *auth);
|
|
extern USERS *mysql_users_alloc();
|
|
extern char *mysql_users_fetch(USERS *users, MYSQL_USER_HOST *key);
|
|
extern int reload_mysql_users(SERV_LISTENER *listener);
|
|
extern int replace_mysql_users(SERV_LISTENER *listener);
|
|
|
|
MXS_END_DECLS
|
|
|
|
#endif
|