Commit Graph

1081 Commits

Author SHA1 Message Date
665315ea5c Fix to bug #612, http://bugs.mariadb.com/show_bug.cgi?id=612
Also added error logging in cases where memory allocation failed etc.
2014-11-05 22:04:36 +02:00
4f5bda7a8b Merge branch 'develop' into firewall 2014-11-05 15:28:22 +02:00
43b4224d2d Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop 2014-11-05 14:43:22 +02:00
8b91a5f078 Fix to bug #610, http://bugs.mariadb.com/show_bug.cgi?id=610
Fixes to Coverity issues 72728, 72755, 72745
2014-11-05 14:41:04 +02:00
699d07a613 Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop 2014-11-05 14:22:46 +02:00
36c6a61330 Fixes to coverity bugs:
72670: query_classifier/query_classifier.cc
72682: server/modules/filter/qlafilter.c
72679: server/modules/filter/tee.c
72716: server/modules/protocol/maxscaled.c
72694: server/modules/protocol/telnetd.c
71743: server/modules/routing/readwritesplit/readwritesplit.c
2014-11-05 14:18:38 +02:00
42fc241cb7 Added comment to server selection routine 2014-11-05 12:15:48 +02:00
3278be565a Fix to bug #609, http://bugs.mariadb.com/show_bug.cgi?id=609
If target can't be resolved, master is chosen. Bug cause master be chosen in most of the cases.
2014-11-05 11:18:25 +02:00
349557c264 Added more documentation to fwfilter.c 2014-11-04 18:44:07 +02:00
f378c61948 Merge branch 'develop' into firewall 2014-11-04 18:42:35 +02:00
a493a841d9 Fix to harness_common.c Coverity errors. 2014-11-04 18:21:31 +02:00
1b9da8662d Fixed Coverity errors that were in harness_common.c 2014-11-04 11:37:26 +02:00
e275b5e533 Added query throttling for network ranges 2014-11-03 11:36:13 +02:00
b7f9819407 Merge branch 'develop' into firewall 2014-11-03 09:26:31 +02:00
54d389e329 Fix to Coverity issue 72733 2014-11-01 21:16:03 +02:00
10f8d0535a Fixes to Coverity tasks 72734, 72717, 72700 2014-11-01 20:33:17 +02:00
9ccbab1899 poll.c:dcb_close Don't call poll_remove_dcb anymore if DCB has already been removed from poll set.
mysql_backend.c, mysql_client.c free error message GWBUF after calling handleError
readconnroute.c:handleError send error message to client before returning.
readwritesplit.c:handleError don't free error message buffer anymore since the caller of handleError frees it.
2014-11-01 20:00:59 +02:00
b6fe4e620a Fixed another leaking socket. Coverity 72706 2014-11-01 15:28:41 +02:00
f1c4c1dfb2 Fixed one more socket leak 2014-11-01 00:01:38 +02:00
8aff04b0e9 Fixed Coverity case 72706 2014-10-31 23:35:29 +02:00
deffd4a69f Fix to Coverity cases 73417, 73420, 72759, 72639 2014-10-31 23:11:19 +02:00
3f375e680a Fix to #590, http://bugs.mariadb.com/show_bug.cgi?id=590
gw_change_user returned error code in cases where authentication failed. That is not right behavior in that context. gw_change_user succeeds to route query and should return succees to router's routeQuery. Possible error is handled by creating error message and by feeding it to client DCB's event queue.
2014-10-31 20:09:43 +02:00
e812d765ef Added Master Failback in show monitors
Added Master Failback in show monitors
2014-10-31 17:17:02 +01:00
3739e3ce56 Merge branch 'develop' into MAX-316 2014-10-31 15:45:05 +01:00
a342b453ac Fixed Coverity tasks : 72722, 72706 2014-10-31 15:55:13 +02:00
7615e9c0ac Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop 2014-10-31 15:28:58 +02:00
00fded016b Fixes to Coverity tasks : 73267, 72686, 72672
Cleaned up warnings, and added checks to malloc return values and error log writes in case of failures.
2014-10-31 15:25:59 +02:00
f8f6006314 Fixed a bug with regex matching 2014-10-31 14:37:06 +02:00
0f4fad5ec4 Merge branch 'develop' into firewall 2014-10-31 13:02:02 +02:00
09b3351427 Added mysqld_error.h in dbusers
Added mysqld_error.h in dbusers
2014-10-31 11:22:15 +01:00
848c7aa0b8 Fixes to Coverity cases 72678 (retry), 72693 2014-10-31 11:38:57 +02:00
6f22975e6c Added 'disable_master_failback' monitor option
Added 'disable_master_failback' option in Galera monitor
2014-10-30 19:03:07 +01:00
9967a45379 Disable Master failback in Galera Monitor
Disable Master failback in Galera Monitor
2014-10-30 18:41:30 +01:00
0a6820c0f6 Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop 2014-10-30 17:12:13 +02:00
60536f622e Fix to bug #590, http://bugs.mariadb.com/show_bug.cgi?id=590
Added function poll.c:poll_add_epollin_event_to_dcb which adds given event and related GWBUF to given DCB. The DCB is then added to event queue list so that its even becomes executed as soon as any of the threads start to process events next time.
The problem solved is case where COM_CHANGE_USER failed due to authentication failure. An error should be sent to the client but it was sent once per failed backend authentication instead of just once.
Thread which failed in authentication bypassed router and thus replies weren't filtered out. Solution adds an event and a GWBUF including error message to DCB and the DCB is then added to event queue. Thus the error message appeares like it was an incoming event and becomes processed properly.

An addition was made to mysql_backend.c:gw_read_backend_event so that self-generated event can be processed. Even if socket read doesn't manage to read anything, function proceeds if there is enough data in DCB's readqueue.

Fix ti bug #602, http://bugs.mariadb.com/show_bug.cgi?id=602
Added function sescmd_response_complete which checks if the read data completes session command response packet(s). Function is called only if there's a sessoin command being executed.
2014-10-30 16:54:27 +02:00
39cee913cc Refined the rule syntax,moved over to separate rule files and fixed some bugs. 2014-10-29 16:10:13 +02:00
a78f1e1b6c Merge branch 'develop' into firewall 2014-10-29 13:21:55 +02:00
f3c627cfed Queries can be matched against any matching rule or only when all rules match. 2014-10-29 13:19:00 +02:00
f787077bc5 Removing two monitor consecutive events
Removing two monitor consecutive events
2014-10-27 16:24:35 +01:00
339974ae84 Added a regex rule. 2014-10-27 13:38:31 +02:00
4576ae6613 Fixed query buffer length in mysql_mon
Fixed query buffer length in mysql_mon
2014-10-27 11:17:16 +01:00
38de0909c3 Redid some of the code to make it easier to add more rule types.
Added a timerange for the rules when they are active, defaults to always on.
Added custom error messages.
2014-10-27 10:29:29 +02:00
16f2c39bea Fine tuning of log print. 2014-10-25 00:28:48 +03:00
236a72a6b6 Fix to bug #590, http://bugs.mariadb.com/show_bug.cgi?id=590
mysql_common.c:gw_send_change_user_to_backend creates new authentication message which is to be sent to backend. GWBUG type flags were not copied from original GWBUF to new one. Thus the information that this is a session command was lost and it was processed in a wrong way. Especially replies were all routed back to client which caused misbehavior.
2014-10-25 00:19:31 +03:00
18ec838ba7 Merge branch 'develop' of https://github.com/mariadb-corporation/MaxScale into develop 2014-10-24 18:34:55 +03:00
89c7b907a3 Addition to Fix of bug #585, http://bugs.mariadb.com/show_bug.cgi?id=585
regexfilter.c:routeQuery called modutil_replace_SQL which resulted in multiple buffers in query GWBUF. Those weren't handled properly later. Added call for gwbug_make_contiguous.
2014-10-24 18:30:53 +03:00
7b5d2df7a6 mysql_send_custom_error returns write operation
mysql_send_custom_error returns write operation
2014-10-24 17:21:07 +02:00
970511a275 Update for message errors in DB authentication
Update for message errors in DB authentication
2014-10-24 12:20:50 +02:00
48423f75f6 Merge branch 'develop' into MAX-309 2014-10-24 09:39:42 +02:00
67101278ac Redid the rules to make it easier to apply different rules to different users 2014-10-24 08:43:51 +03:00