1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
/* Copyright (c) 2010, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/**
@file
Test driver for the mysql-test/t/plugin_auth.test
This is a set of test plugins used to test the external authentication
implementation.
See the above test file for more details.
This test plugin is based on the dialog plugin example.
*/
#define LOG_COMPONENT_TAG "test_plugin_server"
#include <mysql/client_plugin.h>
#include <mysql/components/my_service.h>
#include <mysql/components/services/log_builtins.h>
#include <mysql/plugin_auth.h>
#include <mysqld_error.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/**
first byte of the question string is the question "type".
It can be a "ordinary" or a "password" question.
The last bit set marks a last question in the authentication exchange.
*/
#define ORDINARY_QUESTION "\2"
#define LAST_QUESTION "\3"
#define LAST_PASSWORD "\4"
#define PASSWORD_QUESTION "\5"
/********************* SERVER SIDE ****************************************/
/**
Initialize parameters required for error logging
*/
static SERVICE_TYPE(registry) *reg_srv = nullptr;
SERVICE_TYPE(log_builtins) *log_bi = nullptr;
SERVICE_TYPE(log_builtins_string) *log_bs = nullptr;
/**
Handle assigned when loading the plugin.
Used with the error reporting functions.
*/
static MYSQL_PLUGIN plugin_info_ptr;
static int test_plugin_init(MYSQL_PLUGIN plugin_info) {
plugin_info_ptr = plugin_info;
return 0;
}
/**
dialog test plugin mimicking the ordinary auth mechanism. Used to test the
auth plugin API
*/
static int auth_test_plugin(MYSQL_PLUGIN_VIO *vio,
MYSQL_SERVER_AUTH_INFO *info) {
unsigned char *pkt;
int pkt_len;
/* Initialize error log service*/
if (init_logging_service_for_plugin(®_srv, &log_bi, &log_bs))
return CR_ERROR;
/* send a password question */
if (vio->write_packet(vio, (const unsigned char *)PASSWORD_QUESTION, 1)) {
deinit_logging_service_for_plugin(®_srv, &log_bi, &log_bs);
return CR_ERROR;
}
/* read the answer */
if ((pkt_len = vio->read_packet(vio, &pkt)) < 0) {
deinit_logging_service_for_plugin(®_srv, &log_bi, &log_bs);
return CR_ERROR;
}
info->password_used = PASSWORD_USED_YES;
/* fail if the password is wrong */
if (strcmp((const char *)pkt, info->auth_string)) {
LogPluginErrMsg(ERROR_LEVEL, ER_LOG_PRINTF_MSG,
"Wrong password supplied for %s", info->auth_string);
deinit_logging_service_for_plugin(®_srv, &log_bi, &log_bs);
return CR_ERROR;
}
/* copy auth string as a destination name to check it */
strcpy(info->authenticated_as, info->auth_string);
/* copy something into the external user name */
strcpy(info->external_user, info->auth_string);
LogPluginErrMsg(INFORMATION_LEVEL, ER_LOG_PRINTF_MSG,
"successfully authenticated user %s", info->authenticated_as);
deinit_logging_service_for_plugin(®_srv, &log_bi, &log_bs);
return CR_OK;
}
static int generate_auth_string_hash(char *outbuf, unsigned int *buflen,
const char *inbuf, unsigned int inbuflen) {
/*
if buffer specified by server is smaller than the buffer given
by plugin then return error
*/
if (*buflen < inbuflen) return 1;
strncpy(outbuf, inbuf, inbuflen);
*buflen = strlen(inbuf);
return 0;
}
static int validate_auth_string_hash(char *const inbuf [[maybe_unused]],
unsigned int buflen [[maybe_unused]]) {
return 0;
}
static int set_salt(const char *password [[maybe_unused]],
unsigned int password_len [[maybe_unused]],
unsigned char *salt [[maybe_unused]],
unsigned char *salt_len) {
*salt_len = 0;
return 0;
}
static struct st_mysql_auth auth_test_handler = {
MYSQL_AUTHENTICATION_INTERFACE_VERSION,
"auth_test_plugin", /* requires test_plugin client's plugin */
auth_test_plugin,
generate_auth_string_hash,
validate_auth_string_hash,
set_salt,
AUTH_FLAG_PRIVILEGED_USER_FOR_PASSWORD_CHANGE,
nullptr};
/**
dialog test plugin mimicking the ordinary auth mechanism. Used to test the
clear text plugin API
*/
static int auth_cleartext_plugin(MYSQL_PLUGIN_VIO *vio,
MYSQL_SERVER_AUTH_INFO *info) {
unsigned char *pkt;
int pkt_len;
/* read the password */
if ((pkt_len = vio->read_packet(vio, &pkt)) < 0) return CR_ERROR;
info->password_used = PASSWORD_USED_YES;
/* fail if the password is wrong */
if (strcmp((const char *)pkt, info->auth_string)) return CR_ERROR;
return CR_OK;
}
static struct st_mysql_auth auth_cleartext_handler = {
MYSQL_AUTHENTICATION_INTERFACE_VERSION,
"mysql_clear_password", /* requires the clear text plugin */
auth_cleartext_plugin,
generate_auth_string_hash,
validate_auth_string_hash,
set_salt,
AUTH_FLAG_PRIVILEGED_USER_FOR_PASSWORD_CHANGE,
nullptr};
mysql_declare_plugin(test_plugin){
MYSQL_AUTHENTICATION_PLUGIN,
&auth_test_handler,
"test_plugin_server",
PLUGIN_AUTHOR_ORACLE,
"plugin API test plugin",
PLUGIN_LICENSE_GPL,
test_plugin_init,
nullptr, /* Check uninstall */
nullptr, /* Deinit */
0x0101,
nullptr,
nullptr,
nullptr,
0,
},
{
MYSQL_AUTHENTICATION_PLUGIN,
&auth_cleartext_handler,
"cleartext_plugin_server",
PLUGIN_AUTHOR_ORACLE,
"cleartext plugin API test plugin",
PLUGIN_LICENSE_GPL,
nullptr, /* Init */
nullptr, /* Check uninstall */
nullptr, /* Deinit */
0x0101,
nullptr,
nullptr,
nullptr,
0,
} mysql_declare_plugin_end;
/********************* CLIENT SIDE ***************************************/
/*
client plugin used for testing the plugin API
*/
#include <mysql.h>
#include "my_compiler.h"
#ifdef __clang__
// Clang UBSAN false positive?
// Call to function through pointer to incorrect function type
static int test_plugin_client(MYSQL_PLUGIN_VIO *vio,
MYSQL *mysql) SUPPRESS_UBSAN;
#endif // __clang__
/**
The main function of the test plugin.
Reads the prompt, check if the handshake is done and if the prompt is a
password request and returns the password. Otherwise return error.
@note
1. this plugin shows how a client authentication plugin
may read a MySQL protocol OK packet internally - which is important
where a number of packets is not known in advance.
2. the first byte of the prompt is special. it is not
shown to the user, but signals whether it is the last question
(prompt[0] & 1 == 1) or not last (prompt[0] & 1 == 0),
and whether the input is a password (not echoed).
3. the prompt is expected to be sent zero-terminated
*/
static int test_plugin_client(MYSQL_PLUGIN_VIO *vio, MYSQL *mysql) {
unsigned char *pkt, cmd = 0;
int pkt_len, res;
char *reply;
do {
/* read the prompt */
pkt_len = vio->read_packet(vio, &pkt);
if (pkt_len < 0) return CR_ERROR;
if (pkt == nullptr) {
/*
in mysql_change_user() the client sends the first packet, so
the first vio->read_packet() does nothing (pkt == 0).
We send the "password", assuming the client knows what it's doing.
(in other words, the dialog plugin should be only set as a default
authentication plugin on the client if the first question
asks for a password - which will be sent in clear text, by the way)
*/
reply = mysql->passwd;
} else {
cmd = *pkt++;
/* is it MySQL protocol (0=OK or 254=need old password) packet ? */
if (cmd == 0 || cmd == 254)
return CR_OK_HANDSHAKE_COMPLETE; /* yes. we're done */
/*
asking for a password with an empty prompt means mysql->password
otherwise return an error
*/
if ((cmd == LAST_PASSWORD[0] || cmd == PASSWORD_QUESTION[0]) && *pkt == 0)
reply = mysql->passwd;
else
return CR_ERROR;
}
if (!reply) return CR_ERROR;
/* send the reply to the server */
res = vio->write_packet(vio, (const unsigned char *)reply,
(int)strlen(reply) + 1);
if (res) return CR_ERROR;
/* repeat unless it was the last question */
} while (cmd != LAST_QUESTION[0] && cmd != PASSWORD_QUESTION[0]);
/* the job of reading the ok/error packet is left to the server */
return CR_OK;
}
mysql_declare_client_plugin(AUTHENTICATION) "auth_test_plugin",
MYSQL_CLIENT_PLUGIN_AUTHOR_ORACLE, "Dialog Client Authentication Plugin",
{0, 1, 0}, "GPL", nullptr, nullptr, nullptr, nullptr,
nullptr, test_plugin_client, nullptr, mysql_end_client_plugin;
|