-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathmysqlnd_azure.c
957 lines (804 loc) · 41.9 KB
/
mysqlnd_azure.c
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Qianqian Bu <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php_mysqlnd_azure.h"
#include "mysqlnd_azure.h"
#include "ext/standard/info.h"
#include "ext/mysqlnd/mysqlnd_ext_plugin.h"
#include "ext/mysqlnd/mysqlnd_structs.h"
#include "ext/mysqlnd/mysqlnd_statistics.h"
#include "ext/mysqlnd/mysqlnd_connection.h"
#include "utils.h"
unsigned int mysqlnd_azure_plugin_id;
struct st_mysqlnd_conn_data_methods org_conn_d_m;
struct st_mysqlnd_conn_data_methods* conn_d_m;
struct st_mysqlnd_conn_methods org_conn_m;
struct st_mysqlnd_conn_methods* conn_m;
FILE *logfile = NULL;
/* {{{ set_redirect_client_options */
static enum_func_status
set_redirect_client_options(MYSQLND_CONN_DATA * const conn, MYSQLND_CONN_DATA * const redirectConn)
{
AZURE_LOG(ALOG_LEVEL_DBG, "mysqlnd_azure.c: set_redirect_client_options()");
//TODO: the fields copies here are from list that is handled in mysqlnd_conn_data::set_client_option, may not compelete, and may need update when mysqlnd_conn_data::set_client_option updates
DBG_ENTER("mysqlnd_azure_data::set_redirect_client_options Copy client options for redirection connection");
enum_func_status ret = FAIL;
redirectConn->client_api_capabilities = conn->client_api_capabilities;
redirectConn->vio->data->ssl = conn->vio->data->ssl;
redirectConn->vio->data->options.timeout_read = conn->vio->data->options.timeout_read;
redirectConn->vio->data->options.timeout_write = conn->vio->data->options.timeout_write;
redirectConn->vio->data->options.timeout_connect = conn->vio->data->options.timeout_connect;
redirectConn->vio->data->options.ssl_verify_peer = conn->vio->data->options.ssl_verify_peer;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_SSL_KEY, conn->vio->data->options.ssl_key);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_SSL_CERT, conn->vio->data->options.ssl_cert);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_SSL_CA, conn->vio->data->options.ssl_ca);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_SSL_CAPATH, conn->vio->data->options.ssl_capath);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_SSL_CIPHER, conn->vio->data->options.ssl_cipher);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->vio->data->m.set_client_option(redirectConn->vio, MYSQLND_OPT_NET_READ_BUFFER_SIZE, (const char *)&conn->vio->data->options.net_read_buffer_size);
if (ret == FAIL) goto copyFailed;
ret = redirectConn->protocol_frame_codec->data->m.set_client_option(redirectConn->protocol_frame_codec, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (const char *)&conn->protocol_frame_codec->cmd_buffer.length);
if (ret == FAIL) goto copyFailed;
//MYSQL_OPT_COMPRESS
if (conn->protocol_frame_codec->data->flags & MYSQLND_PROTOCOL_FLAG_USE_COMPRESSION) {
redirectConn->protocol_frame_codec->data->flags |= MYSQLND_PROTOCOL_FLAG_USE_COMPRESSION;
}
else {
redirectConn->protocol_frame_codec->data->flags &= ~MYSQLND_PROTOCOL_FLAG_USE_COMPRESSION;
}
ret = redirectConn->protocol_frame_codec->data->m.set_client_option(redirectConn->protocol_frame_codec, MYSQL_SERVER_PUBLIC_KEY, conn->protocol_frame_codec->data->sha256_server_public_key);
if (ret == FAIL) goto copyFailed;
#ifdef MYSQLND_STRING_TO_INT_CONVERSION
redirectConn->options->int_and_float_native = conn->options->int_and_float_native;
#endif
redirectConn->options->flags = conn->options->flags;
//MYSQL_INIT_COMMAND:
{
if (redirectConn->options->num_commands) {
unsigned int i;
for (i = 0; i < redirectConn->options->num_commands; i++) {
/* allocated with pestrdup */
mnd_pefree(redirectConn->options->init_commands[i], redirectConn->persistent);
}
mnd_pefree(redirectConn->options->init_commands, redirectConn->persistent);
redirectConn->options->init_commands = NULL;
}
if (conn->options->num_commands)
{
char ** new_init_commands;
new_init_commands = mnd_perealloc(redirectConn->options->init_commands, sizeof(char *) * (conn->options->num_commands), conn->persistent);
if (!new_init_commands) {
SET_OOM_ERROR(redirectConn->error_info);
goto copyFailed;
}
redirectConn->options->init_commands = new_init_commands;
unsigned int i;
char * new_command;
for (i = 0; i < conn->options->num_commands; i++) {
new_command = mnd_pestrdup(conn->options->init_commands[i], conn->persistent);
if (!new_command) {
SET_OOM_ERROR(redirectConn->error_info);
goto copyFailed;
}
redirectConn->options->init_commands[i] = new_command;
++redirectConn->options->num_commands;
}
}
}
if (conn->options->charset_name != NULL) {
ret = redirectConn->m->set_client_option(redirectConn, MYSQL_SET_CHARSET_NAME, conn->options->charset_name);
if (ret == FAIL) goto copyFailed;
}
redirectConn->options->protocol = conn->options->protocol;
redirectConn->options->max_allowed_packet = conn->options->max_allowed_packet;
ret = redirectConn->m->set_client_option(redirectConn, MYSQLND_OPT_AUTH_PROTOCOL, conn->options->auth_protocol);
if (ret == FAIL) goto copyFailed;
//MYSQL_OPT_CONNECT_ATTR_xx
{
if (redirectConn->options->connect_attr) {
zend_hash_destroy(redirectConn->options->connect_attr);
mnd_pefree(redirectConn->options->connect_attr, redirectConn->persistent);
redirectConn->options->connect_attr = NULL;
}
zend_string * key;
zval * entry_value;
ZEND_HASH_FOREACH_STR_KEY_VAL(conn->options->connect_attr, key, entry_value) {
ret = redirectConn->m->set_client_option_2d(redirectConn, MYSQL_OPT_CONNECT_ATTR_ADD, ZSTR_VAL(key), Z_STRVAL_P(entry_value));
if (ret == FAIL) goto copyFailed;
} ZEND_HASH_FOREACH_END();
}
DBG_RETURN(ret);
copyFailed:
DBG_RETURN(FAIL);
}
/* }}} */
static int
mysqlnd_azure_strtoi(const char* const begin, unsigned int len)
{
//max length INT_MAX's char length cannot be greater than 32
if(len > 32) {
return -1;
}
char str[33] = { 0 };
memcpy(str, begin, len);
//value 0
if(strcmp(str, "0") == 0)
return 0;
char *endptr;
long long_var = strtol(str, &endptr, 0);
//out of long range or invalid
if (long_var == LONG_MAX || long_var == LONG_MIN || *endptr != '\0' || long_var == 0 ) {
return -1;
}
//out of int range
if (long_var < INT_MIN || long_var > INT_MAX) {
return -1;
}
return (int) long_var;
}
static zend_bool
parse_azure_protocol(const MYSQLND_STRING * const last_message, char* redirect_host, char* redirect_user, unsigned int* p_ui_redirect_port, unsigned int* p_ui_redirect_ttl)
{
/**
* Azure protocol:
* Location: mysql://redirectedHostName:redirectedPort/user=redirectedUser&ttl=%d (where ttl is optional)
*/
const char* msg_header = "Location: mysql://";
int msg_header_len = strlen(msg_header);
char* cur_pos = last_message->s + msg_header_len;
char* end = last_message->s + last_message->l;
char* host_begin = cur_pos, * host_end = NULL,
* port_begin = NULL, * port_end = NULL,
* user_begin = NULL, * user_end = NULL,
* ttl_begin = NULL, * ttl_end = NULL;
host_end = strchr(cur_pos, ':');
if (host_end == NULL) return FALSE;
cur_pos = host_end + 1;
if (cur_pos == end) return FALSE;
port_begin = cur_pos;
port_end = strchr(cur_pos, '/');
if (port_end == NULL) return FALSE;
cur_pos = port_end + 1;
if (cur_pos == end) return FALSE;
int user_delimiter_len = strlen("user=");
if (end - cur_pos <= user_delimiter_len || strncmp(cur_pos, "user=", user_delimiter_len) != 0) return FALSE;
user_begin = cur_pos + user_delimiter_len;
char* optional_ttl_pos = strchr(cur_pos, '&');
if (optional_ttl_pos == NULL) {
user_end = end;
}
else {
user_end = optional_ttl_pos;
cur_pos = user_end + 1;
int ttl_delimiter_len = strlen("ttl=");
if (end - cur_pos <= ttl_delimiter_len || strncmp(cur_pos, "ttl=", ttl_delimiter_len) != 0) return FALSE;
ttl_begin = cur_pos + ttl_delimiter_len;
ttl_end = end;
}
if (host_end == NULL || port_end == NULL || user_end == NULL) {
return FALSE;
}
int host_len = host_end - host_begin;
int port_len = port_end - port_begin;
int user_len = user_end - user_begin;
int ttl_len = ttl_end == NULL ? 0 : (ttl_end - ttl_begin);
if (host_len <= 0 || port_len <= 0 || user_len <= 0 || host_len > MAX_REDIRECT_HOST_LEN || port_len > 8 || user_len > MAX_REDIRECT_USER_LEN || ttl_len > 8) {
return FALSE;
}
int port = mysqlnd_azure_strtoi(port_begin, port_len);
if (port <= 0) {
return FALSE;
}
if (ttl_len > 0) {
int ttl = mysqlnd_azure_strtoi(ttl_begin, ttl_len);
if (ttl < 0) {
return FALSE;
}
*p_ui_redirect_ttl = ttl;
}
//setback the value when everything is settled
*p_ui_redirect_port = port;
memcpy(redirect_host, host_begin, host_len);
memcpy(redirect_user, user_begin, user_len);
return TRUE;
}
static zend_bool
parse_community_protocol(const MYSQLND_STRING * const last_message, char* redirect_host, char* redirect_user, unsigned int* p_ui_redirect_port, unsigned int* p_ui_redirect_ttl)
{
/**
* Community protocol:
* Location: mysql://[redirectedHostName]:redirectedPort/?user=redirectedUser&ttl=%d\n
*/
const char* msg_header = "Location: mysql://[";
int msg_header_len = strlen(msg_header);
char* cur_pos = last_message->s + msg_header_len;
char* end = last_message->s + last_message->l;
char* host_begin = cur_pos, * host_end = NULL,
* port_begin = NULL, * port_end = NULL,
* user_begin = NULL, * user_end = NULL,
* ttl_begin = NULL, * ttl_end = NULL;
host_end = strchr(cur_pos, ']');
if (host_end == NULL) return FALSE;
cur_pos = host_end + 1;
if (cur_pos == end || *cur_pos != ':' || ++cur_pos == end) return FALSE;
port_begin = cur_pos;
port_end = strchr(cur_pos, '/');
if (port_end == NULL) return FALSE;
cur_pos = port_end + 1;
if (cur_pos == end || *cur_pos != '?' || ++cur_pos == end) return FALSE;
int user_delimiter_len = strlen("user=");
if (end - cur_pos <= user_delimiter_len || strncmp(cur_pos, "user=", user_delimiter_len) != 0) return FALSE;
user_begin = cur_pos + user_delimiter_len;
user_end = strchr(cur_pos, '&');
if (user_end == NULL) return FALSE;
cur_pos = user_end + 1;
if (cur_pos == end) return FALSE;
int ttl_delimiter_len = strlen("ttl=");
if (end - cur_pos <= ttl_delimiter_len || strncmp(cur_pos, "ttl=", ttl_delimiter_len) != 0) return FALSE;
ttl_begin = cur_pos + ttl_delimiter_len;
ttl_end = strchr(cur_pos, '\n');
if (ttl_end == NULL) return FALSE;
int host_len = host_end - host_begin;
int port_len = port_end - port_begin;
int user_len = user_end - user_begin;
int ttl_len = ttl_end - ttl_begin;
if (host_len <= 0 || port_len <= 0 || user_len <= 0 || ttl_len <= 0 || host_len > MAX_REDIRECT_HOST_LEN || user_len > MAX_REDIRECT_USER_LEN) {
return FALSE;
}
int port = mysqlnd_azure_strtoi(port_begin, port_len);
if (port <= 0) {
return FALSE;
}
int ttl = mysqlnd_azure_strtoi(ttl_begin, ttl_len);
if (ttl < 0) {
return FALSE;
}
//setback the value when everything is settled
*p_ui_redirect_port = port;
*p_ui_redirect_ttl = ttl;
memcpy(redirect_host, host_begin, host_len);
memcpy(redirect_user, user_begin, user_len);
return TRUE;
}
/* {{{ get_redirect_info */
static zend_bool
get_redirect_info(const MYSQLND_CONN_DATA * const conn, char* redirect_host, char* redirect_user, unsigned int* p_ui_redirect_port, unsigned int* p_ui_redirect_ttl)
{
/**
* Get redirected server information contained in OK packet.
* Redirection string support following two formats:
* Azure protocol:
* Location: mysql://redirectedHostName:redirectedPort/user=redirectedUser&ttl=%d (where ttl is optional)
* Community protocol:
* Location: mysql://[redirectedHostName]:redirectedPort/?user=redirectedUser&ttl=%d\n
* the minimal len is 28 bytes
*/
AZURE_LOG(ALOG_LEVEL_DBG, "mysqlnd_azure.c: get_redirect_info()");
AZURE_LOG(ALOG_LEVEL_DBG, "last message in ok packet: %s", conn->last_message.s);
const char * msg_header = "Location: mysql://";
int msg_header_len = strlen(msg_header);
if (conn->last_message.l < 28 || (strncmp(conn->last_message.s, msg_header, msg_header_len) != 0)) {
return FALSE;
}
char *cur_pos = conn->last_message.s + msg_header_len;
if (*cur_pos == '[') {
return parse_community_protocol(&conn->last_message, redirect_host, redirect_user, p_ui_redirect_port, p_ui_redirect_ttl);
}
else {
return parse_azure_protocol(&conn->last_message, redirect_host, redirect_user, p_ui_redirect_port, p_ui_redirect_ttl);
}
}
/* {{{ mysqlnd_azure_data::connect */
MYSQLND_METHOD(mysqlnd_azure_data, connect)(MYSQLND_CONN_DATA ** pconn,
MYSQLND_CSTRING hostname,
MYSQLND_CSTRING username,
MYSQLND_CSTRING password,
MYSQLND_CSTRING database,
unsigned int port,
MYSQLND_CSTRING socket_or_pipe,
unsigned int mysql_flags
)
{
AZURE_LOG(ALOG_LEVEL_DBG, "mysqlnd_azure.c: mysqlnd_azure_data::connect()");
MYSQLND_CONN_DATA * conn = *pconn;
const size_t this_func = STRUCT_OFFSET(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data), connect);
zend_bool unix_socket = FALSE;
zend_bool named_pipe = FALSE;
zend_bool reconnect = FALSE;
zend_bool saved_compression = FALSE;
zend_bool local_tx_started = FALSE;
MYSQLND_PFC * pfc = conn->protocol_frame_codec;
MYSQLND_STRING transport = { NULL, 0 };
DBG_ENTER("mysqlnd_conn_data::connect");
DBG_INF_FMT("conn=%p", conn);
if (PASS != conn->m->local_tx_start(conn, this_func)) {
goto err;
}
local_tx_started = TRUE;
SET_EMPTY_ERROR(conn->error_info);
UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(conn->upsert_status);
DBG_INF_FMT("host=%s user=%s db=%s port=%u flags=%u persistent=%u state=%u",
hostname.s?hostname.s:"", username.s?username.s:"", database.s?database.s:"", port, mysql_flags,
conn? conn->persistent:0, conn? (int)GET_CONNECTION_STATE(&conn->state):-1);
AZURE_LOG(ALOG_LEVEL_DBG, "Connection Information: host=%s user=%s db=%s port=%u flags=%u persistent=%u state=%u",
hostname.s?hostname.s:"", username.s?username.s:"", database.s?database.s:"", port, mysql_flags,
conn? conn->persistent:0, conn? (int)GET_CONNECTION_STATE(&conn->state):-1);
if (GET_CONNECTION_STATE(&conn->state) > CONN_ALLOCED) {
DBG_INF("Connecting on a connected handle.");
if (GET_CONNECTION_STATE(&conn->state) < CONN_QUIT_SENT) {
MYSQLND_INC_CONN_STATISTIC(conn->stats, STAT_CLOSE_IMPLICIT);
reconnect = TRUE;
conn->m->send_close(conn);
}
conn->m->free_contents(conn);
/* Now reconnect using the same handle */
if (pfc->data->compressed) {
/*
we need to save the state. As we will re-connect, pfc->compressed should be off, or
we will look for a compression header as part of the greet message, but there will
be none.
*/
saved_compression = TRUE;
pfc->data->compressed = FALSE;
}
if (pfc->data->ssl) {
pfc->data->ssl = FALSE;
}
} else {
unsigned int max_allowed_size = MYSQLND_ASSEMBLED_PACKET_MAX_SIZE;
conn->m->set_client_option(conn, MYSQLND_OPT_MAX_ALLOWED_PACKET, (char *)&max_allowed_size);
}
if (!hostname.s || !hostname.s[0]) {
hostname.s = "localhost";
hostname.l = strlen(hostname.s);
}
if (!username.s) {
DBG_INF_FMT("no user given, using empty string");
username.s = "";
username.l = 0;
}
if (!password.s) {
DBG_INF_FMT("no password given, using empty string");
password.s = "";
password.l = 0;
}
if (!database.s || !database.s[0]) {
DBG_INF_FMT("no db given, using empty string");
database.s = "";
database.l = 0;
} else {
mysql_flags |= CLIENT_CONNECT_WITH_DB;
}
transport = conn->m->get_scheme(conn, hostname, &socket_or_pipe, port, &unix_socket, &named_pipe);
mysql_flags = conn->m->get_updated_connect_flags(conn, mysql_flags);
AZURE_LOG(ALOG_LEVEL_DBG, "mysql_flags after get_updated_connect_flags(): flags=%u", mysql_flags);
{
const MYSQLND_CSTRING scheme = { transport.s, transport.l };
if (FAIL == conn->m->connect_handshake(conn, &scheme, &username, &password, &database, mysql_flags)) {
AZURE_LOG(ALOG_LEVEL_ERR, "First connect_handshake failed.");
goto err;
}
}
/*start of Azure Redirection logic*/
//Redirect before run init_command
{
AZURE_LOG(ALOG_LEVEL_DBG, "Classical connection OK, try to get REDIRECTION information");
SET_CONNECTION_STATE(&conn->state, CONN_READY); //set ready status so the connection can be closed correctly later if redirect succeeds
DBG_ENTER("[redirect]: mysqlnd_azure_data::connect::redirect");
char redirect_host[MAX_REDIRECT_HOST_LEN] = { 0 };
char redirect_user[MAX_REDIRECT_USER_LEN] = { 0 };
unsigned int ui_redirect_port = 0;
unsigned int ui_redirect_ttl = 0;
zend_bool serverSupportRedirect = get_redirect_info(conn, redirect_host, redirect_user, &ui_redirect_port, &ui_redirect_ttl);
if (!serverSupportRedirect) {
AZURE_LOG(ALOG_LEVEL_ERR, "get_redirect_info return FALSE, please check whether your MySQL server support redirection and redirection has been turned on.");
DBG_ENTER("[redirect]: Server does not support redirection.");
if(MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON) {
//REDIRECT_ON, if redirection is not supported, abort the original connection and return error
conn->m->send_close(conn);
AZURE_LOG(ALOG_LEVEL_ERR, "mysqlnd_azure.enableRedirect: ON. Connection aborted because redirection is not enabled on the MySQL server or the network package doesn't meet meet redirection protocol.");
SET_CLIENT_ERROR(conn->error_info, MYSQLND_AZURE_ENFORCE_REDIRECT_ERROR_NO, UNKNOWN_SQLSTATE, "Connection aborted because redirection is not enabled on the MySQL server or the network package doesn't meet meet redirection protocol.");
goto err;
} else {
AZURE_LOG(ALOG_LEVEL_INFO, "mysqlnd_zaure.enableRedirect: PREFERRED. MySQL server does not support REDIRECTION, conn falls back to classical one.");
//REDIRECT_PREFERRED, do nothing else for redirection, just use the previous connection
goto after_conn;
}
}
//Get here means serverSupportRedirect
AZURE_LOG(ALOG_LEVEL_DBG, "Successfully get redirection information, try to connect with redirection connection");
//Already use redirected connection, or the connection string is a redirected one
if (strcmp(redirect_host, hostname.s) == 0 && strcmp(redirect_user, username.s) == 0 && ui_redirect_port == port) {
DBG_ENTER("[redirect]: Is using redirection, or redirection info are equal to origin, no need to redirect");
AZURE_LOG(ALOG_LEVEL_DBG, "Is using redirection, or redirection info are equal to origin, no need to redirect.");
goto after_conn;
}
//serverSupportRedirect, and currently used conn is not redirected connection, start redirection handshake
{
DBG_INF_FMT("[redirect]: redirect host=%s user=%s port=%d ", redirect_host, redirect_user, ui_redirect_port);
enum_func_status ret = FAIL;
MYSQLND* redirect_conneHandle = mysqlnd_init(MYSQLND_CLIENT_KNOWS_RSET_COPY_DATA, conn->persistent); //init MYSQLND but only need only MYSQLND_CONN_DATA here
if(!redirect_conneHandle) {
DBG_ENTER("[redirect]: init redirect_conneHandle failed");
if(MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON) {
//REDIRECT_ON, abort the original connection and return error
conn->m->send_close(conn);
SET_CLIENT_ERROR(conn->error_info, MYSQLND_AZURE_ENFORCE_REDIRECT_ERROR_NO, UNKNOWN_SQLSTATE, "Connection aborted because init redirection failed.");
AZURE_LOG(ALOG_LEVEL_ERR, "mysqlnd_azure.enableRedirect: ON. Connection aborted because redirect_connHandle init failed.");
goto err;
} else {
AZURE_LOG(ALOG_LEVEL_INFO, "mysqlnd_azure.enableRedirect: PREFERRED. redirect_connHandle init failed, conn falls back to classical one.");
//REDIRECT_PREFERRED, do nothing else for redirection, just use the previous connection
goto after_conn;
}
}
MYSQLND_CONN_DATA* redirect_conn = redirect_conneHandle->data;
redirect_conneHandle->data = NULL;
mnd_pefree(redirect_conneHandle, redirect_conneHandle->persistent);
redirect_conneHandle = NULL;
ret = set_redirect_client_options(conn, redirect_conn);
//init redirect_conn options failed
if (ret == FAIL) {
DBG_ENTER("[redirect]: init redirection option failed. ");
redirect_conn->m->dtor(redirect_conn); //release created resource
redirect_conn = NULL;
if(MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON) {
//REDIRECT_ON, abort the original connection
conn->m->send_close(conn);
SET_CLIENT_ERROR(conn->error_info, MYSQLND_AZURE_ENFORCE_REDIRECT_ERROR_NO, UNKNOWN_SQLSTATE, "Connection aborted because init redirection failed.");
AZURE_LOG(ALOG_LEVEL_ERR, "mysqlnd_azure.enableRedirect: ON. Connection aborted because set_redirect_client_options() failed.");
goto err;
} else {
AZURE_LOG(ALOG_LEVEL_INFO, "mysqlnd_azure.enableRedirect: PREFERRED. set_redirect_client_options() failed, conn falls back to classical one.");
//REDIRECT_PREFERRED, do nothing else for redirection, just use the previous connection
goto after_conn;
}
}
//init redirect_conn succeeded, use this conn to start a new connection and handshake
AZURE_LOG(ALOG_LEVEL_DBG, "Redirection connection Information: redirect_host=%s redirect_user=%s redirect_port=%u flags=%u persistent=%u state=%u",
redirect_host ? redirect_host : "", redirect_user ? redirect_user : "", ui_redirect_port, mysql_flags,
redirect_conn ? redirect_conn->persistent : 0, redirect_conn ? (int)GET_CONNECTION_STATE(&redirect_conn->state) : -1);
const MYSQLND_CSTRING redirect_hostname = { redirect_host, strlen(redirect_host) };
const MYSQLND_CSTRING redirect_username = { redirect_user, strlen(redirect_user) };
MYSQLND_STRING redirect_transport = redirect_conn->m->get_scheme(redirect_conn, redirect_hostname, &socket_or_pipe, ui_redirect_port, &unix_socket, &named_pipe);
const MYSQLND_CSTRING redirect_scheme = { redirect_transport.s, redirect_transport.l };
enum_func_status redirectState = redirect_conn->m->connect_handshake(redirect_conn, &redirect_scheme, &redirect_username, &password, &database, mysql_flags);
if (redirectState == PASS) { //handshake with redirect_conn succeeded, replace original connection info with redirect_conn and add the redirect info into cache table
AZURE_LOG(ALOG_LEVEL_DBG, "Redirect connection established.");
DBG_ENTER("[redirect]: mysql redirect handshake succeeded.");
//add the redirect info into cache table
mysqlnd_azure_add_redirect_cache(username.s, hostname.s, port, redirect_username.s, redirect_hostname.s, ui_redirect_port);
//close previous proxy connection
conn->m->send_close(conn);
conn->m->dtor(conn);
if (transport.s) {
mnd_sprintf_free(transport.s);
transport.s = NULL;
}
//upate conn, pfc, pconn for later user
conn = redirect_conn;
pfc = redirect_conn->protocol_frame_codec; //this variable will be used in after_conn context, so need take care
*pconn = redirect_conn; //use new conn outside for caller
//upate host, user, transport for later user
hostname = redirect_hostname;
username = redirect_username;
port = ui_redirect_port;
transport = redirect_transport;
redirect_transport.s = NULL;
} else { //redirect failed. if REDIRECT_ON, also abort the original conn, if REDIRECT_PREFERRED, use original connection
DBG_ENTER("[redirect]: mysql redirect handshake fails");
//need free in both cases
if (redirect_transport.s) {
mnd_sprintf_free(redirect_transport.s);
redirect_transport.s = NULL;
}
if (MYSQLND_AZURE_G(enableRedirect) == REDIRECT_PREFERRED) {
AZURE_LOG(ALOG_LEVEL_INFO, "mysqlnd_azure.enableRedirect: PREFERRED. redirect_conn handshake failed, conn falls back to classical one.");
//free object and use original connection
redirect_conn->m->dtor(redirect_conn);
goto after_conn;
} else { //REDIRECT_ON, free original connect, and use redirect_conn to handle error
AZURE_LOG(ALOG_LEVEL_ERR, "mysqlnd_azure.enableRedirect: ON. redirect_conn handshake failed, connection aborted.");
conn->m->send_close(conn);
conn->m->dtor(conn);
pfc = NULL;
//transport will be free after goto err
conn = redirect_conn;
*pconn = redirect_conn;
pfc = redirect_conn->protocol_frame_codec;
redirect_conn = NULL;
goto err;
}
}
}
}
/*end of Azure Redirection Logic*/
after_conn:
{
AZURE_LOG(ALOG_LEVEL_INFO, "connect_handshake finished. Post conn operations like set conn objec info, init_commands");
SET_CONNECTION_STATE(&conn->state, CONN_READY);
if (saved_compression) {
pfc->data->compressed = TRUE;
}
/*
If a connect on a existing handle is performed and mysql_flags is
passed which doesn't CLIENT_COMPRESS, then we need to overwrite the value
which we set based on saved_compression.
*/
pfc->data->compressed = mysql_flags & CLIENT_COMPRESS? TRUE:FALSE;
conn->scheme.s = mnd_pestrndup(transport.s, transport.l, conn->persistent);
conn->scheme.l = transport.l;
if (transport.s) {
mnd_sprintf_free(transport.s);
transport.s = NULL;
}
if (!conn->scheme.s) {
goto err; /* OOM */
}
conn->username.l = username.l;
conn->username.s = mnd_pestrndup(username.s, conn->username.l, conn->persistent);
conn->password.l = password.l;
conn->password.s = mnd_pestrndup(password.s, conn->password.l, conn->persistent);
conn->port = port;
conn->connect_or_select_db.l = database.l;
conn->connect_or_select_db.s = mnd_pestrndup(database.s, conn->connect_or_select_db.l, conn->persistent);
if (!conn->username.s || !conn->password.s|| !conn->connect_or_select_db.s) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
if (!unix_socket && !named_pipe) {
conn->hostname.s = mnd_pestrndup(hostname.s, hostname.l, conn->persistent);
if (!conn->hostname.s) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
conn->hostname.l = hostname.l;
{
char *p;
mnd_sprintf(&p, 0, "%s via TCP/IP", conn->hostname.s);
if (!p) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
conn->host_info = mnd_pestrdup(p, conn->persistent);
mnd_sprintf_free(p);
if (!conn->host_info) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
}
} else {
conn->unix_socket.s = mnd_pestrdup(socket_or_pipe.s, conn->persistent);
if (unix_socket) {
conn->host_info = mnd_pestrdup("Localhost via UNIX socket", conn->persistent);
} else if (named_pipe) {
char *p;
mnd_sprintf(&p, 0, "%s via named pipe", conn->unix_socket.s);
if (!p) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
conn->host_info = mnd_pestrdup(p, conn->persistent);
mnd_sprintf_free(p);
if (!conn->host_info) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
} else {
php_error_docref(NULL, E_WARNING, "Impossible. Should be either socket or a pipe. Report a bug!");
}
if (!conn->unix_socket.s || !conn->host_info) {
SET_OOM_ERROR(conn->error_info);
goto err; /* OOM */
}
conn->unix_socket.l = strlen(conn->unix_socket.s);
}
SET_EMPTY_ERROR(conn->error_info);
mysqlnd_local_infile_default(conn);
if (FAIL == conn->m->execute_init_commands(conn)) {
goto err;
}
MYSQLND_INC_CONN_STATISTIC_W_VALUE2(conn->stats, STAT_CONNECT_SUCCESS, 1, STAT_OPENED_CONNECTIONS, 1);
if (reconnect) {
MYSQLND_INC_GLOBAL_STATISTIC(STAT_RECONNECT);
}
if (conn->persistent) {
MYSQLND_INC_CONN_STATISTIC_W_VALUE2(conn->stats, STAT_PCONNECT_SUCCESS, 1, STAT_OPENED_PERSISTENT_CONNECTIONS, 1);
}
DBG_INF_FMT("connection_id=%llu", conn->thread_id);
conn->m->local_tx_end(conn, this_func, PASS);
DBG_RETURN(PASS);
}
err:
if (transport.s) {
mnd_sprintf_free(transport.s);
transport.s = NULL;
}
DBG_ERR_FMT("[%u] %.128s (trying to connect via %s)", conn->error_info->error_no, conn->error_info->error, conn->scheme.s);
if (!conn->error_info->error_no) {
SET_CLIENT_ERROR(conn->error_info, CR_CONNECTION_ERROR, UNKNOWN_SQLSTATE, conn->error_info->error? conn->error_info->error:"Unknown error");
php_error_docref(NULL, E_WARNING, "[%u] %.128s (trying to connect via %s)", conn->error_info->error_no, conn->error_info->error, conn->scheme.s);
}
conn->m->free_contents(conn);
MYSQLND_INC_CONN_STATISTIC(conn->stats, STAT_CONNECT_FAILURE);
if (TRUE == local_tx_started) {
conn->m->local_tx_end(conn, this_func, FAIL);
}
DBG_RETURN(FAIL);
}
/* }}} */
/* {{{ mysqlnd_azure::connect */
static enum_func_status
MYSQLND_METHOD(mysqlnd_azure, connect)(MYSQLND * conn_handle,
const MYSQLND_CSTRING hostname,
const MYSQLND_CSTRING username,
const MYSQLND_CSTRING password,
const MYSQLND_CSTRING database,
unsigned int port,
const MYSQLND_CSTRING socket_or_pipe,
unsigned int mysql_flags)
{
AZURE_LOG(ALOG_LEVEL_DBG, "mysqlnd_azure.c: mysqlnd_azure::connect()");
const size_t this_func = STRUCT_OFFSET(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data), connect);
enum_func_status ret = FAIL;
MYSQLND_CONN_DATA ** pconn = &conn_handle->data;
DBG_ENTER("mysqlnd_azure::connect");
AZURE_LOG(ALOG_LEVEL_INFO, "mysqlnd_azure.enableRedirect = %s", MYSQLND_AZURE_G(enableRedirect) == REDIRECT_OFF ? "off" : (MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON ? "on" : "preferred"));
if (PASS == (*pconn)->m->local_tx_start(*pconn, this_func)) {
mysqlnd_options4(conn_handle, MYSQL_OPT_CONNECT_ATTR_ADD, "_client_name", "mysqlnd");
mysqlnd_options4(conn_handle, MYSQL_OPT_CONNECT_ATTR_ADD, "_extension_version", MYSQLND_AZURE_VERSION);
if (hostname.l > 0) {
mysqlnd_options4(conn_handle, MYSQL_OPT_CONNECT_ATTR_ADD, "_server_host", hostname.s);
}
if (MYSQLND_AZURE_G(enableRedirect) == REDIRECT_OFF) {
DBG_ENTER("mysqlnd_azure::connect redirect disabled");
ret = org_conn_d_m.connect(*pconn, hostname, username, password, database, port, socket_or_pipe, mysql_flags);
}
else {
DBG_ENTER("mysqlnd_azure::connect redirect enabled");
//Redirection is only possible with SSL at present.
unsigned int temp_flags = (*pconn)->m->get_updated_connect_flags(*pconn, mysql_flags);
if (!(temp_flags & CLIENT_SSL)) {
//REDIRECT_ON, no ssl, return error
if((MYSQLND_AZURE_G(enableRedirect) == REDIRECT_ON)) {
AZURE_LOG(ALOG_LEVEL_ERR, "CLIENT_SSL is not set when mysqlnd_azure.enableRedirect is ON");
SET_CLIENT_ERROR((*pconn)->error_info, MYSQLND_AZURE_ENFORCE_REDIRECT_ERROR_NO, UNKNOWN_SQLSTATE, "mysqlnd_azure.enableRedirect is on, but SSL option is not set in connection string. Redirection is only possible with SSL.");
(*pconn)->m->local_tx_end(*pconn, this_func, FAIL);
(*pconn)->m->free_contents(*pconn);
DBG_RETURN(FAIL);
}
else { //REDIRECT_PREFERRED, no ssl, do not redirect
AZURE_LOG(ALOG_LEVEL_INFO, "CLIENT_SSL is not set and mysqlnd_zaure.enableRedirect is PREFERRED, connection will go through gateway.");
ret = org_conn_d_m.connect(*pconn, hostname, username, password, database, port, socket_or_pipe, mysql_flags);
}
}
else { //SSL is enabled
//first check whether the redirect info already cached
MYSQLND_AZURE_REDIRECT_INFO* redirect_info = mysqlnd_azure_find_redirect_cache(username.s, hostname.s, port);
if (redirect_info != NULL) {
DBG_ENTER("mysqlnd_azure::connect try the cached info first");
//init a new connection obj in order not to affect any field of pconn if cached connection failed.
enum_func_status init_cache_obj_res = PASS;
MYSQLND* redirect_cache_conneHandle = mysqlnd_init(MYSQLND_CLIENT_KNOWS_RSET_COPY_DATA, (*pconn)->persistent); //init MYSQLND but only need only MYSQLND_CONN_DATA here
MYSQLND_CONN_DATA* redirect_cache_conn = NULL;
if (!redirect_cache_conneHandle) {
init_cache_obj_res = FAIL;
}
else {
redirect_cache_conn = redirect_cache_conneHandle->data;
redirect_cache_conneHandle->data = NULL;
mnd_pefree(redirect_cache_conneHandle, redirect_cache_conneHandle->persistent);
redirect_cache_conneHandle = NULL;
init_cache_obj_res = set_redirect_client_options(*pconn, redirect_cache_conn);
}
//init redirect_conn options failed
if (init_cache_obj_res == FAIL) {
AZURE_LOG(ALOG_LEVEL_INFO, "Init redirection cache obj failed. Simply ignore the error and try the full round of connection");
}
else {
AZURE_LOG(ALOG_LEVEL_INFO, "Find cache. mysqlnd_azure::connect try the cached info first");
AZURE_LOG(ALOG_LEVEL_DBG, "cached host : %s, cached user : %s, cached port : %u", redirect_info->redirect_host, redirect_info->redirect_user, redirect_info->redirect_port);
const MYSQLND_CSTRING redirect_host = { redirect_info->redirect_host, strlen(redirect_info->redirect_host) };
const MYSQLND_CSTRING redirect_user = { redirect_info->redirect_user, strlen(redirect_info->redirect_user) };
ret = org_conn_d_m.connect(redirect_cache_conn, redirect_host, redirect_user, password, database, redirect_info->redirect_port, socket_or_pipe, mysql_flags);
if (ret == FAIL) {
AZURE_LOG(ALOG_LEVEL_INFO, "Use cache failed.");
//remove invalid cache and free redirect_cache_conn
mysqlnd_azure_remove_redirect_cache(username.s, hostname.s, port);
redirect_cache_conn->m->dtor(redirect_cache_conn);
redirect_cache_conn = NULL;
//Init a new full round of connection
ret = (*pconn)->m->connect(pconn, hostname, username, password, database, port, socket_or_pipe, mysql_flags);
}
else {
AZURE_LOG(ALOG_LEVEL_INFO, "Use cache sccuceeded.");
(*pconn)->m->dtor(*pconn);
*pconn = redirect_cache_conn;
ret = PASS;
}
}
}
else {
AZURE_LOG(ALOG_LEVEL_INFO, "No cache found");
ret = (*pconn)->m->connect(pconn, hostname, username, password, database, port, socket_or_pipe, mysql_flags);
}
}
}
(*pconn)->m->local_tx_end(*pconn, this_func, FAIL);
}
DBG_RETURN(ret);
}
/* }}} */
/* {{{ mysqlnd_azure_apply_resources, do resource apply works when module init */
int mysqlnd_azure_apply_resources() {
/*
If logOutput mode is FILE, a logfile will be opened no matter the verbose
level(logLevel) is configured, and closed at the module destruct time.
*/
if (MYSQLND_AZURE_G(logOutput) & ALOG_TYPE_FILE) {
char *logfilePath = NULL;
int logflag = 0;
if (ZSTR_LEN(MYSQLND_AZURE_G(logfilePath)) > 255) {
php_error_docref(NULL, E_WARNING, "[mysqlnd_azure] logOutput=2 but logfilePath %s is invalid. logfilePath string length can not exceed 255.", ZSTR_VAL(MYSQLND_AZURE_G(logfilePath)));
return 1;
}
else {
logfilePath = ZSTR_VAL(MYSQLND_AZURE_G(logfilePath));
}
OPEN_LOGFILE(logfilePath);
if (!logfile) {
php_error_docref(NULL, E_WARNING, "[mysqlnd_azure] logOutput=2 but unable to open logfilePath: %s. Please check the configuration of the file is correct.", logfilePath);
return 1;
}
}
return 0;
}
/* }}} */
/* {{{ mysqlnd_azure_release_resources, release resources when module destruct */
int mysqlnd_azure_release_resources() {
/*
If configured print logs to a local file, close it is needed.
note: logOutput is a PHP_INI_SYSTEM variable, and cannot be modified at runtime.
logLevel is a PHP_INI_ALL variable, so we try to close the logfile whatever the
logLevel value is.
*/
if ((MYSQLND_AZURE_G(logOutput) & ALOG_TYPE_FILE) && logfile) {
CLOSE_LOGFILE();
if (logfile != NULL) return 1;
}
return 0;
}
/* }}} */
/* {{{ mysqlnd_azure_minit_register_hooks */
void mysqlnd_azure_minit_register_hooks()
{
mysqlnd_azure_plugin_id = mysqlnd_plugin_register();
conn_m = mysqlnd_conn_get_methods();
memcpy(&org_conn_m, conn_m, sizeof(struct st_mysqlnd_conn_methods));
conn_d_m = mysqlnd_conn_data_get_methods();
memcpy(&org_conn_d_m, conn_d_m, sizeof(struct st_mysqlnd_conn_data_methods));
conn_m->connect = MYSQLND_METHOD(mysqlnd_azure, connect);
conn_d_m->connect = MYSQLND_METHOD(mysqlnd_azure_data, connect);
}
/* }}} */