forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth_ldap_sasl_client.cc
430 lines (385 loc) · 12.1 KB
/
auth_ldap_sasl_client.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
/* Copyright (c) 2017, 2023, 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 also distributed 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 included with MySQL.
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 Street, Fifth Floor, Boston, MA 02110-1301, USA */
#include "auth_ldap_sasl_client.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#ifndef _WIN32
#include <lber.h>
#include <sasl/sasl.h>
#endif
#include <mysql/client_plugin.h>
#include <mysql.h>
Ldap_logger *g_logger_client;
void Sasl_client::interact(sasl_interact_t *ilist)
{
while (ilist->id != SASL_CB_LIST_END)
{
switch(ilist->id)
{
/*
the name of the user authenticating
*/
case SASL_CB_USER:
ilist->result= m_user_name;
ilist->len= strlen((const char*)ilist->result);
break;
/* the name of the user acting for. (for example postman delivering mail for
Martin might have an AUTHNAME of postman and a USER of Martin)
*/
case SASL_CB_AUTHNAME:
ilist->result= m_user_name;
ilist->len= strlen((const char*)ilist->result);
break;
case SASL_CB_PASS:
ilist->result= m_user_pwd;
ilist->len= strlen((const char*)ilist->result);
break;
default:
ilist->result= NULL;
ilist->len= 0;
}
ilist++;
}
}
void Sasl_client::set_plugin_info(MYSQL_PLUGIN_VIO *vio, MYSQL *mysql)
{
m_vio= vio;
m_mysql= mysql;
}
/**
SASL method is send from the Mysql server, and this is set by the client.
SASL client and sasl server may support many sasl authentication methods
and can negotiate in anyone.
We want to enforce the SASL authentication set by the client.
*/
int Sasl_client::read_method_name_from_server()
{
int rc_server_read= -1;
unsigned char* packet= NULL;
std::stringstream log_stream;
/*
We are assuming that there will be only one method name passed by
server, and length of the method name will not exceed 256 chars.
*/
const int max_method_name_len= 256;
if (m_vio == NULL)
{
return rc_server_read;
}
/** Get authentication method from the server. */
rc_server_read= m_vio->read_packet(m_vio, (unsigned char**)&packet);
if (rc_server_read >= 0 && rc_server_read <= max_method_name_len)
{
strncpy(m_mechanism, (const char*)packet, rc_server_read);
m_mechanism[rc_server_read]= '\0';
log_stream << "Sasl_client::read_method_name_from_server : "
<< m_mechanism;
log_dbg(log_stream.str());
}
else if (rc_server_read > max_method_name_len)
{
rc_server_read= -1;
m_mechanism[0]= '\0';
log_stream << "Sasl_client::read_method_name_from_server : Method name "
<< "is greater then allowed limit of 256 characters.";
log_error(log_stream.str());
}
else
{
m_mechanism[0]= '\0';
log_stream << "Sasl_client::read_method_name_from_server : Plugin has "
<< "failed to read the method name, make sure that default "
<< "authentication plugin and method name specified at "
<< "server are correct.";
log_error(log_stream.str());
}
return rc_server_read;
}
Sasl_client::Sasl_client()
{
m_connection= NULL;
}
int Sasl_client::initilize()
{
std::stringstream log_stream;
int rc_sasl= SASL_FAIL;
#ifdef _WIN32
char sasl_plugin_dir[MAX_PATH]= "";
int ret_executable_path= 0;
/**
Getting the current executable path, SASL SCRAM dll will be copied in executable path.
Using/Setting the path from cmake file may not work as during installation SASL SCRAM DLL may be
copied to any path based on installable path.
*/
ret_executable_path= GetModuleFileName(NULL, sasl_plugin_dir, sizeof(sasl_plugin_dir));
if ((ret_executable_path == 0) || (ret_executable_path == sizeof(sasl_plugin_dir)))
{
log_error("sasl client initilize: failed to find executable path or buffer size for path is too small.");
goto EXIT;
}
char *pos= strrchr(sasl_plugin_dir, '\\');
if (pos != NULL)
{
*pos = '\0';
}
/**
Sasl SCRAM dll default search path is C:\CMU2,
This is the reason we have copied in the executable folder and setting the same
from the code.
*/
sasl_set_path(SASL_PATH_TYPE_PLUGIN, sasl_plugin_dir);
log_stream << "Sasl_client::initilize sasl scrum plug-in path : "
<< sasl_plugin_dir;
log_dbg(log_stream.str());
log_stream.clear();
#endif
strncpy(m_service_name, SASL_SERVICE_NAME, sizeof(m_service_name)-1);
m_service_name[sizeof(m_service_name)-1]= '\0';
/** Initialize client-side of SASL. */
rc_sasl= sasl_client_init(NULL);
if (rc_sasl != SASL_OK)
{
goto EXIT;
}
/** Creating sasl connection. */
rc_sasl= sasl_client_new(m_service_name, NULL, NULL, NULL, callbacks,
0, &m_connection);
if (rc_sasl != SASL_OK)
goto EXIT;
/** Set security properties. */
sasl_setprop(m_connection, SASL_SEC_PROPS, &security_properties);
rc_sasl= SASL_OK;
EXIT:
if (rc_sasl != SASL_OK)
{
log_stream << "Sasl_client::initilize failed rc: " << rc_sasl;
log_error(log_stream.str());
}
return rc_sasl;
}
Sasl_client::~Sasl_client()
{
if (m_connection)
{
sasl_dispose(&m_connection);
m_connection= NULL;
sasl_client_done_wrapper();
}
}
void Sasl_client::sasl_client_done_wrapper()
{
#if (SASL_VERSION_MAJOR >= 2) && \
(SASL_VERSION_MINOR >= 1) && \
(SASL_VERSION_STEP >= 24) && \
(!defined __APPLE__) && (!defined __sun)
sasl_client_done ();
#else
sasl_done();
#endif
}
int Sasl_client::send_sasl_request_to_server(const unsigned char *request,
int request_len,
unsigned char** response,
int* response_len)
{
int rc_server= CR_ERROR;
std::stringstream log_stream;
if (m_vio == NULL)
{
goto EXIT;
}
/** Send the request to the MySQL server. */
log_stream << "Sasl_client::SendSaslRequestToServer request:" << request;
log_dbg(log_stream.str());
rc_server= m_vio->write_packet(m_vio, request, request_len);
if (rc_server)
{
log_error("Sasl_client::SendSaslRequestToServer: sasl request write failed");
goto EXIT;
}
/** Get the sasl response from the MySQL server. */
*response_len = m_vio->read_packet(m_vio, response);
if ((*response_len) < 0 || (*response == NULL))
{
log_error("Sasl_client::SendSaslRequestToServer: sasl response read failed");
goto EXIT;
}
log_stream.str("");
log_stream << "Sasl_client::SendSaslRequestToServer response:" << *response;
log_dbg(log_stream.str());
EXIT:
return rc_server;
}
int Sasl_client::sasl_start(char **client_output, int* client_output_length)
{
int rc_sasl= SASL_FAIL;
const char *mechanism= NULL;
char* sasl_client_output= NULL;
sasl_interact_t *interactions= NULL;
std::stringstream log_stream;
if (m_connection == NULL)
{
log_error("Sasl_client::SaslStart: sasl connection is null");
return rc_sasl;
}
do
{
rc_sasl= sasl_client_start(m_connection, m_mechanism, &interactions,
(const char**)&sasl_client_output,
(unsigned int *)client_output_length,
&mechanism);
if(rc_sasl == SASL_INTERACT) interact(interactions);
}
while(rc_sasl == SASL_INTERACT);
if (rc_sasl == SASL_NOMECH)
{
log_stream << "SASL method '" << m_mechanism << "' sent by server, "
<< "is not supported by the SASL client. Make sure that "
<< "cyrus SASL library is installed.";
log_error(log_stream.str());
goto EXIT;
}
if (client_output != NULL)
{
*client_output= sasl_client_output;
log_stream << "Sasl_client::SaslStart sasl output: " << sasl_client_output;
log_dbg(log_stream.str());
}
EXIT:
return rc_sasl;
}
int Sasl_client::sasl_step(char* server_in, int server_in_length,
char** client_out, int* client_out_length)
{
int rc_sasl= SASL_FAIL;
sasl_interact_t *interactions= NULL;
if (m_connection == NULL)
{
return rc_sasl;
}
do
{
rc_sasl= sasl_client_step(m_connection,
server_in, server_in_length,
&interactions,
(const char**)client_out, (unsigned int *)client_out_length);
if(rc_sasl == SASL_INTERACT)
Sasl_client::interact(interactions);
}
while(rc_sasl == SASL_INTERACT);
return rc_sasl;
}
void Sasl_client::set_user_info(std::string name, std::string pwd)
{
strncpy(m_user_name, name.c_str(), sizeof(m_user_name)-1);
m_user_name[sizeof(m_user_name)-1]= '\0';
strncpy(m_user_pwd, pwd.c_str(), sizeof(m_user_pwd)-1);
m_user_pwd[sizeof(m_user_pwd)-1]= '\0';
}
static int sasl_authenticate(MYSQL_PLUGIN_VIO *vio, MYSQL *mysql)
{
int rc_sasl= SASL_FAIL;
int rc_auth= CR_ERROR;
unsigned char* server_packet= NULL;
int server_packet_len= 0;
char *sasl_client_output= NULL;
int sasl_client_output_len= 0;
const char *opt= getenv("AUTHENTICATION_LDAP_CLIENT_LOG");
int opt_val= opt ? atoi(opt) : 0;
std::stringstream log_stream;
g_logger_client= new Ldap_logger();
if (opt && opt_val > 0 && opt_val < 6)
{
g_logger_client->set_log_level((ldap_log_level)opt_val);
}
Sasl_client sasl_client;
sasl_client.set_user_info(mysql->user, mysql->passwd);
sasl_client.set_plugin_info(vio, mysql);
server_packet_len= sasl_client.read_method_name_from_server();
if (server_packet_len < 0)
{
// Callee has already logged the messages.
goto EXIT;
}
rc_sasl= sasl_client.initilize();
if (rc_sasl != SASL_OK)
{
log_error("sasl_authenticate: initialize failed");
goto EXIT;
}
rc_sasl= sasl_client.sasl_start(&sasl_client_output,
&sasl_client_output_len);
if ((rc_sasl != SASL_OK) && (rc_sasl != SASL_CONTINUE))
{
log_error("sasl_authenticate: SaslStart failed");
goto EXIT;
}
/**
Running SASL authentication step till authentication process is concluded
MySQL server plug-in working as proxy for SASL / LDAP server.
*/
do
{
rc_auth= sasl_client.send_sasl_request_to_server((const unsigned char *)sasl_client_output,
sasl_client_output_len,
&server_packet,
&server_packet_len);
if(rc_auth < 0)
{
goto EXIT;
}
rc_sasl= sasl_client.sasl_step((char*)server_packet,
server_packet_len, &sasl_client_output,
&sasl_client_output_len);
}while (rc_sasl == SASL_CONTINUE);
if (rc_sasl == SASL_OK)
{
rc_auth= CR_OK;
log_dbg("sasl_authenticate authentication successful");
}
else
{
log_error("sasl_authenticate client failed");
}
EXIT:
if (rc_sasl != SASL_OK)
{
log_stream.str("");
log_stream << "sasl_authenticate client failed rc: " << rc_sasl;
log_error(log_stream.str());
}
if (g_logger_client)
{
delete g_logger_client;
g_logger_client= NULL;
}
return rc_auth;
}
mysql_declare_client_plugin(AUTHENTICATION)
"authentication_ldap_sasl_client",
"Yashwant Sahu",
"LDAP SASL Client Authentication Plugin",
{0,1,0},
"PROPRIETARY",
NULL,
NULL,
NULL,
NULL,
sasl_authenticate
mysql_end_client_plugin;