 0e968c2b28
			
		
	
	0e968c2b28
	
	
	
		
			
			Provides a clearer separation between what deals with query classification and what deals with query routing. Functions have only been moved. No other cleanup has been done.
		
			
				
	
	
		
			176 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			176 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2016 MariaDB Corporation Ab
 | |
|  *
 | |
|  * Use of this software is governed by the Business Source License included
 | |
|  * in the LICENSE.TXT file and at www.mariadb.com/bsl11.
 | |
|  *
 | |
|  * Change Date: 2020-01-01
 | |
|  *
 | |
|  * On the date above, in accordance with the Business Source License, use
 | |
|  * of this software will be governed by version 2 or later of the General
 | |
|  * Public License.
 | |
|  */
 | |
| 
 | |
| #include "readwritesplit.hh"
 | |
| #include "rwsplit_internal.hh"
 | |
| 
 | |
| #include <strings.h>
 | |
| #include <string.h>
 | |
| #include <stdlib.h>
 | |
| #include <stdint.h>
 | |
| 
 | |
| #include <maxscale/router.h>
 | |
| #include <maxscale/log_manager.h>
 | |
| #include <maxscale/query_classifier.h>
 | |
| #include <maxscale/dcb.h>
 | |
| #include <maxscale/spinlock.h>
 | |
| #include <maxscale/modinfo.h>
 | |
| #include <maxscale/modutil.h>
 | |
| #include <maxscale/protocol/mysql.h>
 | |
| #include <maxscale/alloc.h>
 | |
| 
 | |
| /**
 | |
|  * Functions within the read-write split router that are specific to
 | |
|  * MySQL. The aim is to either remove these into a separate module or to
 | |
|  * move them into the MySQL protocol modules.
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * The following functions are called from elsewhere in the router and
 | |
|  * are defined in rwsplit_internal.hh.  They are not intended to be called
 | |
|  * from outside this router.
 | |
|  */
 | |
| 
 | |
| /* This could be placed in the protocol, with a new API entry point
 | |
|  * It is certainly MySQL specific. Packet types are DB specific, but can be
 | |
|  * assumed to be enums, which can be handled as integers without knowing
 | |
|  * which DB is involved until the packet type needs to be interpreted.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| /*
 | |
|  * This appears to be MySQL specific
 | |
|  */
 | |
| /*
 | |
|  * This one is problematic because it is MySQL specific, but also router
 | |
|  * specific.
 | |
|  */
 | |
| /*
 | |
|  * This is mostly router code, but it contains MySQL specific operations that
 | |
|  * maybe could be moved to the protocol module. The modutil functions are mostly
 | |
|  * MySQL specific and could migrate to the MySQL protocol; likewise the
 | |
|  * utility to convert packet type to a string. The aim is for most of this
 | |
|  * code to remain as part of the router.
 | |
|  */
 | |
| /**
 | |
|  * @brief Operations to be carried out if request is for all backend servers
 | |
|  *
 | |
|  * If the choice of sending to all backends is in conflict with other bit
 | |
|  * settings in route_target, then error messages are written to the log.
 | |
|  *
 | |
|  * Otherwise, the function route_session_write is called to carry out the
 | |
|  * actual routing.
 | |
|  *
 | |
|  * @param route_target  Bit map indicating where packet should be routed
 | |
|  * @param inst          Router instance
 | |
|  * @param rses          Router session
 | |
|  * @param querybuf      Query buffer containing packet
 | |
|  * @param packet_type   Integer (enum) indicating type of packet
 | |
|  * @param qtype         Query type
 | |
|  * @return bool indicating whether the session can continue
 | |
|  */
 | |
| bool handle_target_is_all(route_target_t route_target, RWSplit *inst,
 | |
|                           RWSplitSession *rses, GWBUF *querybuf,
 | |
|                           int packet_type, uint32_t qtype)
 | |
| {
 | |
|     bool result = false;
 | |
| 
 | |
|     if (TARGET_IS_MASTER(route_target) || TARGET_IS_SLAVE(route_target))
 | |
|     {
 | |
|         /**
 | |
|          * Conflicting routing targets. Return an error to the client.
 | |
|          */
 | |
| 
 | |
|         char *query_str = modutil_get_query(querybuf);
 | |
|         char *qtype_str = qc_typemask_to_string(qtype);
 | |
| 
 | |
|         MXS_ERROR("Can't route %s:%s:\"%s\". SELECT with session data "
 | |
|                   "modification is not supported if configuration parameter "
 | |
|                   "use_sql_variables_in=all .", STRPACKETTYPE(packet_type),
 | |
|                   qtype_str, (query_str == NULL ? "(empty)" : query_str));
 | |
| 
 | |
|         GWBUF *errbuf = modutil_create_mysql_err_msg(1, 0, 1064, "42000",
 | |
|                                                      "Routing query to backend failed. "
 | |
|                                                      "See the error log for further details.");
 | |
| 
 | |
|         if (errbuf)
 | |
|         {
 | |
|             rses->client_dcb->func.write(rses->client_dcb, errbuf);
 | |
|             result = true;
 | |
|         }
 | |
| 
 | |
|         MXS_FREE(query_str);
 | |
|         MXS_FREE(qtype_str);
 | |
|     }
 | |
|     else if (route_session_write(rses, gwbuf_clone(querybuf), packet_type, qtype))
 | |
|     {
 | |
| 
 | |
|         result = true;
 | |
|         atomic_add_uint64(&inst->stats().n_all, 1);
 | |
|     }
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| /*
 | |
|  * Probably MySQL specific because of modutil function
 | |
|  */
 | |
| /**
 | |
|  * @brief Write an error message to the log for closed session
 | |
|  *
 | |
|  * This happens if a request is received for a session that is already
 | |
|  * closing down.
 | |
|  *
 | |
|  * @param querybuf      Query buffer containing packet
 | |
|  */
 | |
| void closed_session_reply(GWBUF *querybuf)
 | |
| {
 | |
|     uint8_t* data = GWBUF_DATA(querybuf);
 | |
| 
 | |
|     if (GWBUF_LENGTH(querybuf) >= 5 && !MYSQL_IS_COM_QUIT(data))
 | |
|     {
 | |
|         /* Note that most modutil functions are MySQL specific */
 | |
|         char *query_str = modutil_get_query(querybuf);
 | |
|         MXS_ERROR("Can't route %s:\"%s\" to backend server. Router is closed.",
 | |
|                   STRPACKETTYPE(data[4]), query_str ? query_str : "(empty)");
 | |
|         MXS_FREE(query_str);
 | |
|     }
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * @brief Send an error message to the client telling that the server is in read only mode
 | |
|  *
 | |
|  * @param dcb Client DCB
 | |
|  *
 | |
|  * @return True if sending the message was successful, false if an error occurred
 | |
|  */
 | |
| bool send_readonly_error(DCB *dcb)
 | |
| {
 | |
|     bool succp = false;
 | |
|     const char* errmsg = "The MariaDB server is running with the --read-only"
 | |
|                          " option so it cannot execute this statement";
 | |
|     GWBUF* err = modutil_create_mysql_err_msg(1, 0, ER_OPTION_PREVENTS_STATEMENT,
 | |
|                                               "HY000", errmsg);
 | |
| 
 | |
|     if (err)
 | |
|     {
 | |
|         succp = dcb->func.write(dcb, err);
 | |
|     }
 | |
|     else
 | |
|     {
 | |
|         MXS_ERROR("Memory allocation failed when creating client error message.");
 | |
|     }
 | |
| 
 | |
|     return succp;
 | |
| }
 |