-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathvalidate_password.cc
621 lines (527 loc) · 21.2 KB
/
validate_password.cc
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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
/* Copyright (c) 2012, 2024, 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 */
#include <mysql/components/my_service.h>
#include <mysql/components/services/log_builtins.h>
#include <mysql/plugin_validate_password.h>
#include <mysql/service_my_plugin_log.h>
#include <mysql/service_mysql_string.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#include <algorithm> // std::swap
#include <fstream>
#include <set>
#include <string>
#include "my_compiler.h"
#include "my_inttypes.h"
#include "my_psi_config.h"
#include "my_sys.h"
#include "my_systime.h" // my_time()
#include "mysql/mysql_lex_string.h"
#include "mysql/plugin.h"
#include "mysql/psi/mysql_rwlock.h"
#include "mysql/psi/psi_rwlock.h"
#include "mysql/service_locking.h"
#include "mysql/service_mysql_alloc.h"
#include "mysql/service_security_context.h"
#include "mysqld_error.h"
#include "nulls.h"
#include "sql/sql_error.h"
#include "template_utils.h"
#include "typelib.h"
class THD;
THD *thd_get_current_thd(); // from sql_class.cc
#undef MAX_PASSWORD_LENGTH
#define MAX_DICTIONARY_FILE_LENGTH 1024 * 1024
#define PASSWORD_SCORE 25
#define MIN_DICTIONARY_WORD_LENGTH 4
#define MAX_PASSWORD_LENGTH 100
static SERVICE_TYPE(registry) *reg_srv = nullptr;
SERVICE_TYPE(log_builtins) *log_bi = nullptr;
SERVICE_TYPE(log_builtins_string) *log_bs = nullptr;
/* Read-write lock for dictionary_words cache */
mysql_rwlock_t LOCK_dict_file;
#ifdef HAVE_PSI_INTERFACE
PSI_rwlock_key key_validate_password_LOCK_dict_file;
static PSI_rwlock_info all_validate_password_rwlocks[] = {
{&key_validate_password_LOCK_dict_file, "LOCK_dict_file", 0, 0,
PSI_DOCUMENT_ME}};
static void init_validate_password_psi_keys() {
const char *category = "validate";
int count;
count = static_cast<int>(array_elements(all_validate_password_rwlocks));
mysql_rwlock_register(category, all_validate_password_rwlocks, count);
}
#endif /* HAVE_PSI_INTERFACE */
/*
Handle assigned when loading the plugin.
Used with the error reporting functions.
*/
static MYSQL_PLUGIN plugin_info_ptr;
/*
These are the 3 password policies that this plugin allow to set
and configure as per the requirements.
*/
enum password_policy_enum {
PASSWORD_POLICY_LOW,
PASSWORD_POLICY_MEDIUM,
PASSWORD_POLICY_STRONG
};
static const char *policy_names[] = {"LOW", "MEDIUM", "STRONG", NullS};
static TYPELIB password_policy_typelib_t = {array_elements(policy_names) - 1,
"password_policy_typelib_t",
policy_names, nullptr};
typedef std::string string_type;
typedef std::set<string_type> set_type;
static set_type *dictionary_words{nullptr};
static int validate_password_length;
static int validate_password_number_count;
static int validate_password_mixed_case_count;
static int validate_password_special_char_count;
static ulong validate_password_policy;
static char *validate_password_dictionary_file;
static char *validate_password_dictionary_file_last_parsed = nullptr;
static long long validate_password_dictionary_file_words_count = 0;
static bool check_user_name;
/**
Activate the new dictionary
Assigns a local list to the global variable,
taking the correct locks in the process.
Also updates the status variables.
@param dict_words new dictionary words set
*/
static void dictionary_activate(set_type *dict_words) {
time_t start_time;
struct tm tm;
char timebuf[20 * 2]; /* "YYYY-MM-DD HH:MM:SS" */
char *new_ts;
/* fetch the start time */
start_time = time(nullptr);
localtime_r(&start_time, &tm);
snprintf(timebuf, sizeof(timebuf), "%04d-%02d-%02d %02d:%02d:%02d",
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min,
tm.tm_sec);
new_ts = my_strdup(PSI_NOT_INSTRUMENTED, timebuf, MYF(0));
mysql_rwlock_wrlock(&LOCK_dict_file);
std::swap(*dictionary_words, *dict_words);
validate_password_dictionary_file_words_count = dictionary_words->size();
std::swap(new_ts, validate_password_dictionary_file_last_parsed);
mysql_rwlock_unlock(&LOCK_dict_file);
/* frees up the data just replaced */
if (!dict_words->empty()) dict_words->clear();
if (new_ts) my_free(new_ts);
}
/* To read dictionary file into std::set */
static void read_dictionary_file() {
string_type words;
set_type dict_words;
std::streamoff file_length;
if (validate_password_dictionary_file == nullptr) {
if (validate_password_policy == PASSWORD_POLICY_STRONG)
LogPluginErr(WARNING_LEVEL, ER_VALIDATE_PWD_DICT_FILE_NOT_SPECIFIED);
/* NULL is a valid value, despite the warning */
dictionary_activate(&dict_words);
return;
}
try {
std::ifstream dictionary_stream(validate_password_dictionary_file);
if (!dictionary_stream || !dictionary_stream.is_open()) {
LogPluginErr(WARNING_LEVEL, ER_VALIDATE_PWD_DICT_FILE_NOT_LOADED);
return;
}
dictionary_stream.seekg(0, std::ios::end);
file_length = dictionary_stream.tellg();
dictionary_stream.seekg(0, std::ios::beg);
if (file_length > MAX_DICTIONARY_FILE_LENGTH) {
dictionary_stream.close();
LogPluginErr(WARNING_LEVEL, ER_VALIDATE_PWD_DICT_FILE_TOO_BIG);
return;
}
for (std::getline(dictionary_stream, words); dictionary_stream.good();
std::getline(dictionary_stream, words))
dict_words.insert(words);
dictionary_stream.close();
dictionary_activate(&dict_words);
} catch (...) // no exceptions !
{
LogPluginErr(WARNING_LEVEL, ER_VALIDATE_PWD_FAILED_TO_READ_DICT_FILE);
}
}
/* Clear words from std::set */
static void free_dictionary_file() {
mysql_rwlock_wrlock(&LOCK_dict_file);
if (!dictionary_words->empty()) dictionary_words->clear();
if (validate_password_dictionary_file_last_parsed) {
my_free(validate_password_dictionary_file_last_parsed);
validate_password_dictionary_file_last_parsed = nullptr;
}
mysql_rwlock_unlock(&LOCK_dict_file);
}
/*
Checks whether password or substring of password
is present in dictionary file stored as std::set
*/
static int validate_dictionary_check(mysql_string_handle password) {
int length;
int error = 0;
char *buffer;
if (dictionary_words->empty()) return (1);
/* New String is allocated */
mysql_string_handle lower_string_handle = mysql_string_to_lowercase(password);
if (!(buffer = (char *)malloc(MAX_PASSWORD_LENGTH))) return (0);
length = mysql_string_convert_to_char_ptr(
lower_string_handle, "utf8mb3", buffer, MAX_PASSWORD_LENGTH, &error);
/* Free the allocated string */
mysql_string_free(lower_string_handle);
int substr_pos = 0;
int substr_length = length;
const string_type password_str = string_type((const char *)buffer, length);
string_type password_substr;
set_type::iterator itr;
/*
std::set as container stores the dictionary words,
binary comparison between dictionary words and password
*/
mysql_rwlock_rdlock(&LOCK_dict_file);
while (substr_length >= MIN_DICTIONARY_WORD_LENGTH) {
substr_pos = 0;
while (substr_pos + substr_length <= length) {
password_substr = password_str.substr(substr_pos, substr_length);
itr = dictionary_words->find(password_substr);
if (itr != dictionary_words->end()) {
mysql_rwlock_unlock(&LOCK_dict_file);
free(buffer);
return (0);
}
substr_pos++;
}
substr_length--;
}
mysql_rwlock_unlock(&LOCK_dict_file);
free(buffer);
return (1);
}
/**
Compare a sequence of bytes in "a" with the reverse sequence of bytes of "b"
@param a the first sequence
@param a_len the length of a
@param b the second sequence
@param b_len the length of b
@retval true sequences match
@retval false sequences don't match
*/
static bool my_memcmp_reverse(const char *a, size_t a_len, const char *b,
size_t b_len) {
const char *a_ptr;
const char *b_ptr;
if (a_len != b_len) return false;
for (a_ptr = a, b_ptr = b + b_len - 1; b_ptr >= b; a_ptr++, b_ptr--)
if (*a_ptr != *b_ptr) return false;
return true;
}
/**
Validate a user name from the security context
A helper function.
Validates one user name (as specified by field_name)
against the data in buffer/length by comparing the byte
sequences in forward and reverse.
Logs an error to the error log if it can't pick up the user names.
@param ctx the current security context
@param buffer the password data
@param length the length of buffer
@param field_name the id of the security context field to use
@param logical_name the name of the field to use in the error message
@retval true name can be used
@retval false name is invalid
*/
static bool is_valid_user(MYSQL_SECURITY_CONTEXT ctx, const char *buffer,
int length, const char *field_name,
const char *logical_name) {
MYSQL_LEX_CSTRING user = {nullptr, 0};
if (security_context_get_option(ctx, field_name, &user)) {
LogPluginErr(ERROR_LEVEL,
ER_VALIDATE_PWD_FAILED_TO_GET_FLD_FROM_SECURITY_CTX,
logical_name);
return false;
}
/* lengths must match for the strings to match */
if (user.length != (size_t)length) return true;
/* empty strings turn the check off */
if (user.length == 0) return true;
/* empty strings turn the check off */
if (!user.str) return true;
return (0 != memcmp(buffer, user.str, user.length) &&
!my_memcmp_reverse(user.str, user.length, buffer, length));
}
/**
Check if the password is not the user name
Helper function.
Checks if the password supplied is valid to use by comparing it
the effected and the login user names to it and to the reverse of it.
logs an error to the error log if it can't pick up the names.
@param password the password handle
@retval true The password can be used
@retval false the password is invalid
*/
static bool is_valid_password_by_user_name(mysql_string_handle password) {
char buffer[MAX_PASSWORD_LENGTH];
int length, error;
MYSQL_SECURITY_CONTEXT ctx = nullptr;
if (!check_user_name) return true;
if (thd_get_security_context(thd_get_current_thd(), &ctx) || !ctx) {
LogPluginErr(ERROR_LEVEL, ER_VALIDATE_PWD_FAILED_TO_GET_SECURITY_CTX);
return false;
}
length = mysql_string_convert_to_char_ptr(password, "utf8mb3", buffer,
MAX_PASSWORD_LENGTH, &error);
return is_valid_user(ctx, buffer, length, "user", "login user name") &&
is_valid_user(ctx, buffer, length, "priv_user", "effective user name");
}
static int validate_password_policy_strength(mysql_string_handle password,
int policy) {
int has_digit = 0;
int has_lower = 0;
int has_upper = 0;
int has_special_chars = 0;
int n_chars = 0;
mysql_string_iterator_handle iter;
iter = mysql_string_get_iterator(password);
while (mysql_string_iterator_next(iter)) {
n_chars++;
if (policy > PASSWORD_POLICY_LOW) {
if (mysql_string_iterator_islower(iter))
has_lower++;
else if (mysql_string_iterator_isupper(iter))
has_upper++;
else if (mysql_string_iterator_isdigit(iter))
has_digit++;
else
has_special_chars++;
}
}
mysql_string_iterator_free(iter);
if (n_chars >= validate_password_length) {
if (!is_valid_password_by_user_name(password)) return (0);
if (policy == PASSWORD_POLICY_LOW) return (1);
if (has_upper >= validate_password_mixed_case_count &&
has_lower >= validate_password_mixed_case_count &&
has_special_chars >= validate_password_special_char_count &&
has_digit >= validate_password_number_count) {
if (policy == PASSWORD_POLICY_MEDIUM ||
validate_dictionary_check(password))
return (1);
}
}
return (0);
}
/* Actual plugin function which acts as a wrapper */
static int validate_password(mysql_string_handle password) {
return validate_password_policy_strength(password, validate_password_policy);
}
/* Password strength between (0-100) */
static int get_password_strength(mysql_string_handle password) {
int policy = 0;
int n_chars = 0;
mysql_string_iterator_handle iter;
if (!is_valid_password_by_user_name(password)) return 0;
iter = mysql_string_get_iterator(password);
while (mysql_string_iterator_next(iter)) n_chars++;
mysql_string_iterator_free(iter);
if (n_chars < MIN_DICTIONARY_WORD_LENGTH) return (policy);
if (n_chars < validate_password_length)
return (PASSWORD_SCORE);
else {
policy = PASSWORD_POLICY_LOW;
if (validate_password_policy_strength(password, PASSWORD_POLICY_MEDIUM)) {
policy = PASSWORD_POLICY_MEDIUM;
if (validate_dictionary_check(password)) policy = PASSWORD_POLICY_STRONG;
}
}
return ((policy + 1) * PASSWORD_SCORE + PASSWORD_SCORE);
}
/**
@brief Check and readjust effective value of validate_password_length
@details
Readjust validate_password_length according to the values of
validate_password_number_count,validate_password_mixed_case_count
and validate_password_special_char_count. This is required at the
time plugin installation and as a part of setting new values for
any of above mentioned variables.
*/
static void readjust_validate_password_length() {
int policy_password_length;
/*
Effective value of validate_password_length variable is:
MAX(validate_password_length,
(validate_password_number_count +
2*validate_password_mixed_case_count +
validate_password_special_char_count))
*/
policy_password_length = (validate_password_number_count +
(2 * validate_password_mixed_case_count) +
validate_password_special_char_count);
if (validate_password_length < policy_password_length) {
/*
Raise a warning that effective restriction on password
length is changed.
*/
LogPluginErr(WARNING_LEVEL, ER_VALIDATE_PWD_LENGTH_CHANGED,
policy_password_length);
validate_password_length = policy_password_length;
}
}
/* Plugin type-specific descriptor */
static struct st_mysql_validate_password validate_password_descriptor = {
MYSQL_VALIDATE_PASSWORD_INTERFACE_VERSION,
validate_password, /* validate function */
get_password_strength /* validate strength function */
};
/*
Initialize the password plugin at server start or plugin installation,
read dictionary file into std::set.
*/
static int validate_password_init(MYSQL_PLUGIN plugin_info) {
push_deprecated_warn(thd_get_current_thd(), "validate password plugin",
"validate_password component");
dictionary_words = new set_type();
// Initialize error logging service.
if (init_logging_service_for_plugin(®_srv, &log_bi, &log_bs)) return (1);
plugin_info_ptr = plugin_info;
#ifdef HAVE_PSI_INTERFACE
init_validate_password_psi_keys();
#endif
mysql_rwlock_init(key_validate_password_LOCK_dict_file, &LOCK_dict_file);
read_dictionary_file();
/* Check if validate_password_length needs readjustment */
readjust_validate_password_length();
return (0);
}
/*
Terminate the password plugin at server shutdown or plugin deinstallation.
It empty the std::set and returns 0
*/
static int validate_password_deinit(void *arg [[maybe_unused]]) {
push_deprecated_warn(thd_get_current_thd(), "validate password plugin",
"validate_password component");
free_dictionary_file();
mysql_rwlock_destroy(&LOCK_dict_file);
deinit_logging_service_for_plugin(®_srv, &log_bi, &log_bs);
delete dictionary_words;
dictionary_words = nullptr;
return (0);
}
/*
Update function for validate_password_dictionary_file.
If dictionary file is changed, this function will flush
the cache and re-load the new dictionary file.
*/
static void dictionary_update(MYSQL_THD thd [[maybe_unused]],
SYS_VAR *var [[maybe_unused]], void *var_ptr,
const void *save) {
*static_cast<const char **>(var_ptr) =
*static_cast<const char **>(const_cast<void *>(save));
read_dictionary_file();
}
/*
update function for:
1. validate_password_length
2. validate_password_number_count
3. validate_password_mixed_case_count
4. validate_password_special_char_count
*/
static void length_update(MYSQL_THD thd [[maybe_unused]],
SYS_VAR *var [[maybe_unused]], void *var_ptr,
const void *save) {
/* check if there is an actual change */
if (*static_cast<int *>(var_ptr) == *static_cast<const int *>(save)) return;
/*
set new value for system variable.
Note that we need not know for which of the above mentioned
variables, length_update() is called because var_ptr points
to the location at which corresponding static variable is
declared in this file.
*/
*static_cast<int *>(var_ptr) = *static_cast<const int *>(save);
readjust_validate_password_length();
}
/* Plugin system variables */
static MYSQL_SYSVAR_INT(
length, validate_password_length, PLUGIN_VAR_RQCMDARG,
"Password validate length to check for minimum password_length", nullptr,
length_update, 8, 0, 0, 0);
static MYSQL_SYSVAR_INT(
number_count, validate_password_number_count, PLUGIN_VAR_RQCMDARG,
"password validate digit to ensure minimum numeric character in password",
nullptr, length_update, 1, 0, 0, 0);
static MYSQL_SYSVAR_INT(mixed_case_count, validate_password_mixed_case_count,
PLUGIN_VAR_RQCMDARG,
"Password validate mixed case to ensure minimum "
"upper/lower case in password",
nullptr, length_update, 1, 0, 0, 0);
static MYSQL_SYSVAR_INT(
special_char_count, validate_password_special_char_count,
PLUGIN_VAR_RQCMDARG,
"password validate special to ensure minimum special character in password",
nullptr, length_update, 1, 0, 0, 0);
static MYSQL_SYSVAR_ENUM(
policy, validate_password_policy, PLUGIN_VAR_RQCMDARG,
"password_validate_policy choosen policy to validate password"
"possible values are LOW MEDIUM (default), STRONG",
nullptr, nullptr, PASSWORD_POLICY_MEDIUM, &password_policy_typelib_t);
static MYSQL_SYSVAR_STR(
dictionary_file, validate_password_dictionary_file,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_MEMALLOC,
"password_validate_dictionary file to be loaded and check for password",
nullptr, dictionary_update, nullptr);
static MYSQL_SYSVAR_BOOL(
check_user_name, check_user_name, PLUGIN_VAR_NOCMDARG,
"Check if the password matches the login or the effective user names "
"or the reverse of them",
nullptr, nullptr, true);
static SYS_VAR *validate_password_system_variables[] = {
MYSQL_SYSVAR(length), MYSQL_SYSVAR(number_count),
MYSQL_SYSVAR(mixed_case_count), MYSQL_SYSVAR(special_char_count),
MYSQL_SYSVAR(policy), MYSQL_SYSVAR(dictionary_file),
MYSQL_SYSVAR(check_user_name), nullptr};
static SHOW_VAR validate_password_status_variables[] = {
{"validate_password_dictionary_file_last_parsed",
(char *)&validate_password_dictionary_file_last_parsed, SHOW_CHAR_PTR,
SHOW_SCOPE_GLOBAL},
{"validate_password_dictionary_file_words_count",
(char *)&validate_password_dictionary_file_words_count, SHOW_LONGLONG,
SHOW_SCOPE_GLOBAL},
{NullS, NullS, SHOW_LONG, SHOW_SCOPE_GLOBAL}};
mysql_declare_plugin(validate_password){
MYSQL_VALIDATE_PASSWORD_PLUGIN, /* type */
&validate_password_descriptor, /* descriptor */
"validate_password", /* name */
PLUGIN_AUTHOR_ORACLE, /* author */
"check password strength", /* description */
PLUGIN_LICENSE_GPL,
validate_password_init, /* init function (when loaded) */
nullptr, /* cwcheck uninstall function */
validate_password_deinit, /* deinit function (when unloaded) */
0x0101, /* version */
validate_password_status_variables, /* status variables */
validate_password_system_variables, /* system variables */
nullptr,
0,
} mysql_declare_plugin_end;