MySQL 8.0.37
Source Code Documentation
mysql_com.h
Go to the documentation of this file.
1/* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 Without limiting anything contained in the foregoing, this file,
16 which is part of C Driver for MySQL (Connector/C), is also subject to the
17 Universal FOSS Exception, version 1.0, a copy of which can be found at
18 http://oss.oracle.com/licenses/universal-foss-exception.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License, version 2.0, for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
28
29/**
30 @file include/mysql_com.h
31 Common definition between mysql server & client.
32*/
33
34#ifndef _mysql_com_h
35#define _mysql_com_h
36
37#ifndef MYSQL_ABI_CHECK
38#include <stdbool.h>
39#include <stdint.h>
40#endif
41
42#include "my_command.h"
43#include "my_compress.h"
44
45/*
46 We need a definition for my_socket. On the client, <mysql.h> already provides
47 it, but on the server side, we need to get it from a header.
48*/
49#ifndef my_socket_defined
50#include "my_io.h"
52#endif
53
54#ifndef MYSQL_ABI_CHECK
55#include <stdbool.h>
56#endif
57
58#define SYSTEM_CHARSET_MBMAXLEN 3
59#define FILENAME_CHARSET_MBMAXLEN 5
60#define NAME_CHAR_LEN 64 /**< Field/table name length */
61#define PARTITION_EXPR_CHAR_LEN \
62 2048 /**< Maximum expression length in chars \
63 */
64#define USERNAME_CHAR_LENGTH 32
65#define USERNAME_CHAR_LENGTH_STR "32"
66#ifndef NAME_LEN
67#define NAME_LEN (NAME_CHAR_LEN * SYSTEM_CHARSET_MBMAXLEN)
68#endif
69#define USERNAME_LENGTH (USERNAME_CHAR_LENGTH * SYSTEM_CHARSET_MBMAXLEN)
70#define CONNECT_STRING_MAXLEN 1024
71
72#define MYSQL_AUTODETECT_CHARSET_NAME "auto"
73
74#define SERVER_VERSION_LENGTH 60
75#define SQLSTATE_LENGTH 5
76
77/*
78 In FIDO terminology, relying party is the server where required services are
79 running. Relying party ID is unique name given to server.
80*/
81#define RELYING_PARTY_ID_LENGTH 255
82
83/* Length of random salt sent during fido registration */
84#define CHALLENGE_LENGTH 32
85
86/* Maximum authentication factors server supports */
87#define MAX_AUTH_FACTORS 3
88/**
89 Maximum length of comments
90
91 pre 5.6: 60 characters
92*/
93#define TABLE_COMMENT_INLINE_MAXLEN 180
94#define TABLE_COMMENT_MAXLEN 2048
95#define COLUMN_COMMENT_MAXLEN 1024
96#define INDEX_COMMENT_MAXLEN 1024
97#define TABLE_PARTITION_COMMENT_MAXLEN 1024
98#define TABLESPACE_COMMENT_MAXLEN 2048
99
100/**
101 Maximum length of protocol packet.
102 @ref page_protocol_basic_ok_packet length limit also restricted to this value
103 as any length greater than this value will have first byte of
104 @ref page_protocol_basic_ok_packet to be 254 thus does not
105 provide a means to identify if this is @ref page_protocol_basic_ok_packet or
106 @ref page_protocol_basic_eof_packet.
107*/
108#define MAX_PACKET_LENGTH (256L * 256L * 256L - 1)
109
110#define LOCAL_HOST "localhost"
111#define LOCAL_HOST_NAMEDPIPE "."
112
113#if defined(_WIN32)
114#define MYSQL_NAMEDPIPE "MySQL"
115#define MYSQL_SERVICENAME "MySQL"
116#endif /* _WIN32 */
117
118/** The length of the header part for each generated column in the .frm file.*/
119#define FRM_GCOL_HEADER_SIZE 4
120/**
121 Maximum length of the expression statement defined for generated columns.
122*/
123#define GENERATED_COLUMN_EXPRESSION_MAXLEN 65535 - FRM_GCOL_HEADER_SIZE
124/**
125 Length of random string sent by server on handshake; this is also length of
126 obfuscated password, received from client
127*/
128#define SCRAMBLE_LENGTH 20
129#define AUTH_PLUGIN_DATA_PART_1_LENGTH 8
130/** length of password stored in the db: new passwords are preceded with '*'*/
131#define SCRAMBLED_PASSWORD_CHAR_LENGTH (SCRAMBLE_LENGTH * 2 + 1)
132
133/**
134 @defgroup group_cs_column_definition_flags Column Definition Flags
135 @ingroup group_cs
136
137 @brief Values for the flags bitmask used by ::Send_field:flags
138
139 Currently need to fit into 32 bits.
140
141 Each bit represents an optional feature of the protocol.
142
143 Both the client and the server are sending these.
144
145 The intersection of the two determines what optional parts of the
146 protocol will be used.
147*/
148
149/**
150 @addtogroup group_cs_column_definition_flags
151 @{
152*/
153
154#define NOT_NULL_FLAG 1 /**< Field can't be NULL */
155#define PRI_KEY_FLAG 2 /**< Field is part of a primary key */
156#define UNIQUE_KEY_FLAG 4 /**< Field is part of a unique key */
157#define MULTIPLE_KEY_FLAG 8 /**< Field is part of a key */
158#define BLOB_FLAG 16 /**< Field is a blob */
159#define UNSIGNED_FLAG 32 /**< Field is unsigned */
160#define ZEROFILL_FLAG 64 /**< Field is zerofill */
161#define BINARY_FLAG 128 /**< Field is binary */
162
163/* The following are only sent to new clients */
164#define ENUM_FLAG 256 /**< field is an enum */
165#define AUTO_INCREMENT_FLAG 512 /**< field is a autoincrement field */
166#define TIMESTAMP_FLAG 1024 /**< Field is a timestamp */
167#define SET_FLAG 2048 /**< field is a set */
168#define NO_DEFAULT_VALUE_FLAG 4096 /**< Field doesn't have default value */
169#define ON_UPDATE_NOW_FLAG 8192 /**< Field is set to NOW on UPDATE */
170#define NUM_FLAG 32768 /**< Field is num (for clients) */
171#define PART_KEY_FLAG 16384 /**< Intern; Part of some key */
172#define GROUP_FLAG 32768 /**< Intern: Group field */
173#define UNIQUE_FLAG 65536 /**< Intern: Used by sql_yacc */
174#define BINCMP_FLAG 131072 /**< Intern: Used by sql_yacc */
175#define GET_FIXED_FIELDS_FLAG \
176 (1 << 18) /**< Used to get fields in item tree \
177 */
178#define FIELD_IN_PART_FUNC_FLAG (1 << 19) /**< Field part of partition func */
179/**
180 Intern: Field in TABLE object for new version of altered table,
181 which participates in a newly added index.
182*/
183#define FIELD_IN_ADD_INDEX (1 << 20)
184#define FIELD_IS_RENAMED (1 << 21) /**< Intern: Field is being renamed */
185#define FIELD_FLAGS_STORAGE_MEDIA 22 /**< Field storage media, bit 22-23 */
186#define FIELD_FLAGS_STORAGE_MEDIA_MASK (3 << FIELD_FLAGS_STORAGE_MEDIA)
187#define FIELD_FLAGS_COLUMN_FORMAT 24 /**< Field column format, bit 24-25 */
188#define FIELD_FLAGS_COLUMN_FORMAT_MASK (3 << FIELD_FLAGS_COLUMN_FORMAT)
189#define FIELD_IS_DROPPED (1 << 26) /**< Intern: Field is being dropped */
190#define EXPLICIT_NULL_FLAG \
191 (1 << 27) /**< Field is explicitly specified as \
192 NULL by the user */
193/* 1 << 28 is unused. */
194
195/** Field will not be loaded in secondary engine. */
196#define NOT_SECONDARY_FLAG (1 << 29)
197/** Field is explicitly marked as invisible by the user. */
198#define FIELD_IS_INVISIBLE (1 << 30)
199
200/** @}*/
201
202/**
203 @defgroup group_cs_com_refresh_flags COM_REFRESH Flags
204 @ingroup group_cs
205
206 @brief Values for the `sub_command` in ::COM_REFRESH
207
208 Currently the protocol carries only 8 bits of these flags.
209
210 The rest (8-end) are used only internally in the server.
211*/
212
213/**
214 @addtogroup group_cs_com_refresh_flags
215 @{
216*/
217
218#define REFRESH_GRANT 1 /**< Refresh grant tables, FLUSH PRIVILEGES */
219#define REFRESH_LOG 2 /**< Start on new log file, FLUSH LOGS */
220#define REFRESH_TABLES 4 /**< close all tables, FLUSH TABLES */
221#define REFRESH_HOSTS 8 /**< Flush host cache, FLUSH HOSTS */
222#define REFRESH_STATUS 16 /**< Flush status variables, FLUSH STATUS */
223#define REFRESH_THREADS 32 /**< Flush thread cache */
224#define REFRESH_REPLICA \
225 64 /**< Reset master info and restart replica \
226 thread, RESET REPLICA */
227#define REFRESH_SLAVE \
228 REFRESH_REPLICA /**< Reset master info and restart replica \
229 thread, RESET REPLICA. This is deprecated, \
230 use REFRESH_REPLICA instead. */
231
232#define REFRESH_MASTER \
233 128 /**< Remove all bin logs in the index \
234 and truncate the index, RESET MASTER */
235#define REFRESH_ERROR_LOG 256 /**< Rotate only the error log */
236#define REFRESH_ENGINE_LOG 512 /**< Flush all storage engine logs */
237#define REFRESH_BINARY_LOG 1024 /**< Flush the binary log */
238#define REFRESH_RELAY_LOG 2048 /**< Flush the relay log */
239#define REFRESH_GENERAL_LOG 4096 /**< Flush the general log */
240#define REFRESH_SLOW_LOG 8192 /**< Flush the slow query log */
241#define REFRESH_READ_LOCK 16384 /**< Lock tables for read. */
242/**
243 Wait for an impending flush before closing the tables.
244
245 @sa REFRESH_READ_LOCK, handle_reload_request, close_cached_tables
246*/
247#define REFRESH_FAST 32768
248#define REFRESH_USER_RESOURCES \
249 0x80000L /** FLUSH RESOURCES. @sa ::reset_mqh \
250 */
251#define REFRESH_FOR_EXPORT 0x100000L /** FLUSH TABLES ... FOR EXPORT */
252#define REFRESH_OPTIMIZER_COSTS 0x200000L /** FLUSH OPTIMIZER_COSTS */
253#define REFRESH_PERSIST 0x400000L /** RESET PERSIST */
254
255/** @}*/
256
257/**
258 @defgroup group_cs_capabilities_flags Capabilities Flags
259 @ingroup group_cs
260
261 @brief Values for the capabilities flag bitmask used by the MySQL protocol
262
263 Currently need to fit into 32 bits.
264
265 Each bit represents an optional feature of the protocol.
266
267 Both the client and the server are sending these.
268
269 The intersection of the two determines whast optional parts of the
270 protocol will be used.
271*/
272
273/**
274 @addtogroup group_cs_capabilities_flags
275 @{
276*/
277
278/**
279 Use the improved version of Old Password Authentication.
280
281 Not used.
282
283 @note Assumed to be set since 4.1.1.
285#define CLIENT_LONG_PASSWORD 1
286/**
287 Send found rows instead of affected rows in @ref
288 page_protocol_basic_eof_packet
290#define CLIENT_FOUND_ROWS 2
291/**
292 @brief Get all column flags
293
294 Longer flags in Protocol::ColumnDefinition320.
295
296 @todo Reference Protocol::ColumnDefinition320
297
298 Server
299 ------
300
301 Supports longer flags.
302
303 Client
304 ------
305
306 Expects longer flags.
308#define CLIENT_LONG_FLAG 4
309/**
310 Database (schema) name can be specified on connect in Handshake Response
311 Packet.
312
313 @todo Reference Handshake Response Packet.
314
315 Server
316 ------
317
318 Supports schema-name in Handshake Response Packet.
319
320 Client
321 ------
322
323 Handshake Response Packet contains a schema-name.
324
325 @sa send_client_reply_packet()
327#define CLIENT_CONNECT_WITH_DB 8
328#define CLIENT_NO_SCHEMA \
329 16 /**< DEPRECATED: Don't allow database.table.column */
330/**
331 Compression protocol supported.
332
333 @todo Reference Compression
334
335 Server
336 ------
337
338 Supports compression.
339
340 Client
341 ------
342
343 Switches to Compression compressed protocol after successful authentication.
345#define CLIENT_COMPRESS 32
346/**
347 Special handling of ODBC behavior.
348
349 @note No special behavior since 3.22.
351#define CLIENT_ODBC 64
352/**
353 Can use LOAD DATA LOCAL.
354
355 Server
356 ------
357
358 Enables the LOCAL INFILE request of LOAD DATA|XML.
359
360 Client
361 ------
362
363 Will handle LOCAL INFILE request.
365#define CLIENT_LOCAL_FILES 128
366/**
367 Ignore spaces before '('
368
369 Server
370 ------
371
372 Parser can ignore spaces before '('.
373
374 Client
375 ------
376
377 Let the parser ignore spaces before '('.
379#define CLIENT_IGNORE_SPACE 256
380/**
381 New 4.1 protocol
382
383 @todo Reference the new 4.1 protocol
384
385 Server
386 ------
387
388 Supports the 4.1 protocol.
389
390 Client
391 ------
392
393 Uses the 4.1 protocol.
394
395 @note this value was CLIENT_CHANGE_USER in 3.22, unused in 4.0
397#define CLIENT_PROTOCOL_41 512
398/**
399 This is an interactive client
400
401 Use @ref System_variables::net_wait_timeout
402 versus @ref System_variables::net_interactive_timeout.
403
404 Server
405 ------
406
407 Supports interactive and noninteractive clients.
408
409 Client
410 ------
411
412 Client is interactive.
413
414 @sa mysql_real_connect()
416#define CLIENT_INTERACTIVE 1024
417/**
418 Use SSL encryption for the session
419
420 @todo Reference SSL
421
422 Server
423 ------
424
425 Supports SSL
426
427 Client
428 ------
429
430 Switch to SSL after sending the capability-flags.
432#define CLIENT_SSL 2048
433/**
434 Client only flag. Not used.
435
436 Client
437 ------
438
439 Do not issue SIGPIPE if network failures occur (libmysqlclient only).
440
441 @sa mysql_real_connect()
443#define CLIENT_IGNORE_SIGPIPE 4096
444/**
445 Client knows about transactions
446
447 Server
448 ------
449
450 Can send status flags in @ref page_protocol_basic_ok_packet /
451 @ref page_protocol_basic_eof_packet.
452
453 Client
454 ------
455
456 Expects status flags in @ref page_protocol_basic_ok_packet /
457 @ref page_protocol_basic_eof_packet.
458
459 @note This flag is optional in 3.23, but always set by the server since 4.0.
460 @sa send_server_handshake_packet(), parse_client_handshake_packet(),
461 net_send_ok(), net_send_eof()
463#define CLIENT_TRANSACTIONS 8192
464#define CLIENT_RESERVED 16384 /**< DEPRECATED: Old flag for 4.1 protocol */
465#define CLIENT_RESERVED2 \
466 32768 /**< DEPRECATED: Old flag for 4.1 authentication \
467 CLIENT_SECURE_CONNECTION */
468/**
469 Enable/disable multi-stmt support
470
471 Also sets @ref CLIENT_MULTI_RESULTS. Currently not checked anywhere.
472
473 Server
474 ------
475
476 Can handle multiple statements per COM_QUERY and COM_STMT_PREPARE.
477
478 Client
479 -------
480
481 May send multiple statements per COM_QUERY and COM_STMT_PREPARE.
482
483 @note Was named ::CLIENT_MULTI_QUERIES in 4.1.0, renamed later.
484
485 Requires
486 --------
487
488 ::CLIENT_PROTOCOL_41
489
490 @todo Reference COM_QUERY and COM_STMT_PREPARE
492#define CLIENT_MULTI_STATEMENTS (1UL << 16)
493/**
494 Enable/disable multi-results
495
496 Server
497 ------
498
499 Can send multiple resultsets for COM_QUERY.
500 Error if the server needs to send them and client
501 does not support them.
502
503 Client
504 -------
505
506 Can handle multiple resultsets for COM_QUERY.
507
508 Requires
509 --------
510
511 ::CLIENT_PROTOCOL_41
512
513 @sa mysql_execute_command(), sp_head::MULTI_RESULTS
515#define CLIENT_MULTI_RESULTS (1UL << 17)
516/**
517 Multi-results and OUT parameters in PS-protocol.
518
519 Server
520 ------
521
522 Can send multiple resultsets for COM_STMT_EXECUTE.
523
524 Client
525 ------
526
527 Can handle multiple resultsets for COM_STMT_EXECUTE.
528
529 Requires
530 --------
531
532 ::CLIENT_PROTOCOL_41
533
534 @todo Reference COM_STMT_EXECUTE and PS-protocol
535
536 @sa Protocol_binary::send_out_parameters
538#define CLIENT_PS_MULTI_RESULTS (1UL << 18)
539
540/**
541 Client supports plugin authentication
542
543 Server
544 ------
545
546 Sends extra data in Initial Handshake Packet and supports the pluggable
547 authentication protocol.
548
549 Client
550 ------
551
552 Supports authentication plugins.
553
554 Requires
555 --------
556
557 ::CLIENT_PROTOCOL_41
558
559 @todo Reference plugin authentication, Initial Handshake Packet,
560 Authentication plugins
561
562 @sa send_change_user_packet(), send_client_reply_packet(), run_plugin_auth(),
563 parse_com_change_user_packet(), parse_client_handshake_packet()
565#define CLIENT_PLUGIN_AUTH (1UL << 19)
566/**
567 Client supports connection attributes
568
569 Server
570 ------
571
572 Permits connection attributes in Protocol::HandshakeResponse41.
573
574 Client
575 ------
576
577 Sends connection attributes in Protocol::HandshakeResponse41.
578
579 @todo Reference Protocol::HandshakeResponse41
580
581 @sa send_client_connect_attrs(), read_client_connect_attrs()
583#define CLIENT_CONNECT_ATTRS (1UL << 20)
584
585/**
586 Enable authentication response packet to be larger than 255 bytes.
587
588 When the ability to change default plugin require that the initial password
589 field in the Protocol::HandshakeResponse41 paclet can be of arbitrary size.
590 However, the 4.1 client-server protocol limits the length of the
591 auth-data-field sent from client to server to 255 bytes.
592 The solution is to change the type of the field to a true length encoded
593 string and indicate the protocol change
594 with this client capability flag.
595
596 Server
597 ------
598
599 Understands length-encoded integer for auth response data in
600 Protocol::HandshakeResponse41.
601
602 Client
603 ------
604
605 Length of auth response data in Protocol::HandshakeResponse41
606 is a length-encoded integer.
607
608 @todo Reference Protocol::HandshakeResponse41
609
610 @note The flag was introduced in 5.6.6, but had the wrong value.
611
612 @sa send_client_reply_packet(), parse_client_handshake_packet(),
613 get_56_lenc_string(), get_41_lenc_string()
615#define CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA (1UL << 21)
616
617/**
618 Don't close the connection for a user account with expired password.
619
620 Server
621 ------
622
623 Announces support for expired password extension.
624
625 Client
626 ------
627
628 Can handle expired passwords.
629
630 @todo Reference expired password
631
632 @sa MYSQL_OPT_CAN_HANDLE_EXPIRED_PASSWORDS, disconnect_on_expired_password
633 ACL_USER::password_expired, check_password_lifetime(), acl_authenticate()
635#define CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS (1UL << 22)
636
637/**
638 Capable of handling server state change information. Its a hint to the
639 server to include the state change information in
640 @ref page_protocol_basic_ok_packet.
641
642 Server
643 ------
644 Can set ::SERVER_SESSION_STATE_CHANGED in the ::SERVER_STATUS_flags_enum
645 and send @ref sect_protocol_basic_ok_packet_sessinfo in a
646 @ref page_protocol_basic_ok_packet.
647
648 Client
649 ------
650
651 Expects the server to send @ref sect_protocol_basic_ok_packet_sessinfo in
652 a @ref page_protocol_basic_ok_packet.
653
654 @sa enum_session_state_type, read_ok_ex(), net_send_ok(), Session_tracker,
655 State_tracker
657#define CLIENT_SESSION_TRACK (1UL << 23)
658/**
659 Client no longer needs @ref page_protocol_basic_eof_packet and will
660 use @ref page_protocol_basic_ok_packet instead.
661 @sa net_send_ok()
662
663 Server
664 ------
665
666 Can send OK after a Text Resultset.
667
668 Client
669 ------
670
671 Expects an @ref page_protocol_basic_ok_packet (instead of
672 @ref page_protocol_basic_eof_packet) after the resultset rows of a
673 Text Resultset.
674
675 Background
676 ----------
677
678 To support ::CLIENT_SESSION_TRACK, additional information must be sent after
679 all successful commands. Although the @ref page_protocol_basic_ok_packet is
680 extensible, the @ref page_protocol_basic_eof_packet is not due to the overlap
681 of its bytes with the content of the Text Resultset Row.
682
683 Therefore, the @ref page_protocol_basic_eof_packet in the
684 Text Resultset is replaced with an @ref page_protocol_basic_ok_packet.
685 @ref page_protocol_basic_eof_packet is deprecated as of MySQL 5.7.5.
686
687 @todo Reference Text Resultset
688
689 @sa cli_safe_read_with_ok(), read_ok_ex(), net_send_ok(), net_send_eof()
691#define CLIENT_DEPRECATE_EOF (1UL << 24)
692
693/**
694 The client can handle optional metadata information in the resultset.
696#define CLIENT_OPTIONAL_RESULTSET_METADATA (1UL << 25)
697
698/**
699 Compression protocol extended to support zstd compression method
700
701 This capability flag is used to send zstd compression level between
702 client and server provided both client and server are enabled with
703 this flag.
704
705 Server
706 ------
707 Server sets this flag when global variable protocol-compression-algorithms
708 has zstd in its list of supported values.
709
710 Client
711 ------
712 Client sets this flag when it is configured to use zstd compression method.
713
715#define CLIENT_ZSTD_COMPRESSION_ALGORITHM (1UL << 26)
716
717/**
718 Support optional extension for query parameters into the @ref
719 page_protocol_com_query and @ref page_protocol_com_stmt_execute packets.
720
721 Server
722 ------
723
724 Expects an optional part containing the query parameter set(s). Executes the
725 query for each set of parameters or returns an error if more than 1 set of
726 parameters is sent and the server can't execute it.
727
728 Client
729 ------
730
731 Can send the optional part containing the query parameter set(s).
733#define CLIENT_QUERY_ATTRIBUTES (1UL << 27)
734
735/**
736 Support Multi factor authentication.
737
738 Server
739 ------
740 Server sends AuthNextFactor packet after every nth factor authentication
741 method succeeds, except the last factor authentication.
742
743 Client
744 ------
745 Client reads AuthNextFactor packet sent by server and initiates next factor
746 authentication method.
748#define MULTI_FACTOR_AUTHENTICATION (1UL << 28)
749
750/**
751 This flag will be reserved to extend the 32bit capabilities structure to
752 64bits.
754#define CLIENT_CAPABILITY_EXTENSION (1UL << 29)
755
756/**
757 Verify server certificate.
758
759 Client only flag.
760
761 @deprecated in favor of --ssl-mode.
763#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30)
764
765/**
766 Don't reset the options after an unsuccessful connect
767
768 Client only flag.
769
770 Typically passed via ::mysql_real_connect() 's client_flag parameter.
771
772 @sa mysql_real_connect()
774#define CLIENT_REMEMBER_OPTIONS (1UL << 31)
775/** @}*/
776
777/** a compatibility alias for CLIENT_COMPRESS */
778#define CAN_CLIENT_COMPRESS CLIENT_COMPRESS
779
780/** Gather all possible capabilities (flags) supported by the server */
781#define CLIENT_ALL_FLAGS \
782 (CLIENT_LONG_PASSWORD | CLIENT_FOUND_ROWS | CLIENT_LONG_FLAG | \
783 CLIENT_CONNECT_WITH_DB | CLIENT_NO_SCHEMA | CLIENT_COMPRESS | CLIENT_ODBC | \
784 CLIENT_LOCAL_FILES | CLIENT_IGNORE_SPACE | CLIENT_PROTOCOL_41 | \
785 CLIENT_INTERACTIVE | CLIENT_SSL | CLIENT_IGNORE_SIGPIPE | \
786 CLIENT_TRANSACTIONS | CLIENT_RESERVED | CLIENT_RESERVED2 | \
787 CLIENT_MULTI_STATEMENTS | CLIENT_MULTI_RESULTS | CLIENT_PS_MULTI_RESULTS | \
788 CLIENT_SSL_VERIFY_SERVER_CERT | CLIENT_REMEMBER_OPTIONS | \
789 CLIENT_PLUGIN_AUTH | CLIENT_CONNECT_ATTRS | \
790 CLIENT_PLUGIN_AUTH_LENENC_CLIENT_DATA | \
791 CLIENT_CAN_HANDLE_EXPIRED_PASSWORDS | CLIENT_SESSION_TRACK | \
792 CLIENT_DEPRECATE_EOF | CLIENT_OPTIONAL_RESULTSET_METADATA | \
793 CLIENT_ZSTD_COMPRESSION_ALGORITHM | CLIENT_QUERY_ATTRIBUTES | \
794 MULTI_FACTOR_AUTHENTICATION)
795
796/**
797 Switch off from ::CLIENT_ALL_FLAGS the flags that are optional and
798 depending on build flags.
799 If any of the optional flags is supported by the build it will be switched
800 on before sending to the client during the connection handshake.
802#define CLIENT_BASIC_FLAGS \
803 (CLIENT_ALL_FLAGS & \
804 ~(CLIENT_SSL | CLIENT_COMPRESS | CLIENT_SSL_VERIFY_SERVER_CERT | \
805 CLIENT_ZSTD_COMPRESSION_ALGORITHM))
806
807/** The status flags are a bit-field */
809 /**
810 Is raised when a multi-statement transaction
811 has been started, either explicitly, by means
812 of BEGIN or COMMIT AND CHAIN, or
813 implicitly, by the first transactional
814 statement, when autocommit=off.
815 */
817 SERVER_STATUS_AUTOCOMMIT = 2, /**< Server in auto_commit mode */
818 SERVER_MORE_RESULTS_EXISTS = 8, /**< Multi query - next query exists */
821 /**
822 The server was able to fulfill the clients request and opened a
823 read-only non-scrollable cursor for a query. This flag comes
824 in reply to COM_STMT_EXECUTE and COM_STMT_FETCH commands.
825 Used by Binary Protocol Resultset to signal that COM_STMT_FETCH
826 must be used to fetch the row-data.
827 @todo Refify "Binary Protocol Resultset" and "COM_STMT_FETCH".
828 */
830 /**
831 This flag is sent when a read-only cursor is exhausted, in reply to
832 COM_STMT_FETCH command.
833 */
835 SERVER_STATUS_DB_DROPPED = 256, /**< A database was dropped */
837 /**
838 Sent to the client if after a prepared statement reprepare
839 we discovered that the new statement returns a different
840 number of result set columns.
841 */
844 /**
845 To mark ResultSet containing output parameter values.
846 */
848
849 /**
850 Set at the same time as SERVER_STATUS_IN_TRANS if the started
851 multi-statement transaction is a read-only transaction. Cleared
852 when the transaction commits or aborts. Since this flag is sent
853 to clients in OK and EOF packets, the flag indicates the
854 transaction status at the end of command execution.
855 */
857
858 /**
859 This status flag, when on, implies that one of the state information has
860 changed on the server because of the execution of the last statement.
861 */
863};
864
865/**
866 Server status flags that must be cleared when starting
867 execution of a new SQL statement.
868 Flags from this set are only added to the
869 current server status by the execution engine, but
870 never removed -- the execution engine expects them
871 to disappear automagically by the next command.
873#define SERVER_STATUS_CLEAR_SET \
874 (SERVER_QUERY_NO_GOOD_INDEX_USED | SERVER_QUERY_NO_INDEX_USED | \
875 SERVER_MORE_RESULTS_EXISTS | SERVER_STATUS_METADATA_CHANGED | \
876 SERVER_QUERY_WAS_SLOW | SERVER_STATUS_DB_DROPPED | \
877 SERVER_STATUS_CURSOR_EXISTS | SERVER_STATUS_LAST_ROW_SENT | \
878 SERVER_SESSION_STATE_CHANGED)
879
880/** Max length of a error message. Should be kept in sync with ::ERRMSGSIZE. */
881#define MYSQL_ERRMSG_SIZE 512
882#define NET_READ_TIMEOUT 30 /**< Timeout on read */
883#define NET_WRITE_TIMEOUT 60 /**< Timeout on write */
884#define NET_WAIT_TIMEOUT 8 * 60 * 60 /**< Wait for new query */
885
886/**
887 Flag used by the parser. Kill only the query and not the connection.
888
889 @sa SQLCOM_KILL, sql_kill(), LEX::type
891#define ONLY_KILL_QUERY 1
892
893#ifndef MYSQL_VIO
894struct Vio;
895#define MYSQL_VIO struct Vio *
896#endif
898#define MAX_TINYINT_WIDTH 3 /**< Max width for a TINY w.o. sign */
899#define MAX_SMALLINT_WIDTH 5 /**< Max width for a SHORT w.o. sign */
900#define MAX_MEDIUMINT_WIDTH 8 /**< Max width for a INT24 w.o. sign */
901#define MAX_INT_WIDTH 10 /**< Max width for a LONG w.o. sign */
902#define MAX_BIGINT_WIDTH 20 /**< Max width for a LONGLONG */
903/// Max width for a CHAR column, in number of characters
904#define MAX_CHAR_WIDTH 255
905/// Default width for blob in bytes @todo - align this with sizes from field.h
906#define MAX_BLOB_WIDTH 16777216
908#define NET_ERROR_UNSET 0 /**< No error has occurred yet */
909#define NET_ERROR_SOCKET_RECOVERABLE 1 /**< Socket still usable */
910#define NET_ERROR_SOCKET_UNUSABLE 2 /**< Do not use the socket */
911#define NET_ERROR_SOCKET_NOT_READABLE 3 /**< Try write and close socket */
912#define NET_ERROR_SOCKET_NOT_WRITABLE 4 /**< Try read and close socket */
914typedef struct NET {
916 unsigned char *buff, *buff_end, *write_pos, *read_pos;
917 my_socket fd; /* For Perl DBI/dbd */
918 /**
919 Set if we are doing several queries in one
920 command ( as in LOAD TABLE ... FROM MASTER ),
921 and do not want to confuse the client with OK at the wrong time
922 */
925 unsigned int pkt_nr, compress_pkt_nr;
927 int fcntl;
928 unsigned int *return_status;
929 unsigned char reading_or_writing;
930 unsigned char save_char;
932 unsigned int last_errno;
933 unsigned char error;
934 /** Client library error message buffer. Actually belongs to struct MYSQL. */
936 /** Client library sqlstate buffer. Set along with the error message. */
937 char sqlstate[SQLSTATE_LENGTH + 1];
938 /**
939 Extension pointer, for the caller private use.
940 Any program linking with the networking library can use this pointer,
941 which is handy when private connection specific data needs to be
942 maintained.
943 The mysqld server process uses this pointer internally,
944 to maintain the server internal instrumentation for the connection.
945 */
947} NET;
949#define packet_error (~(unsigned long)0)
950
951/**
952 @addtogroup group_cs_backward_compatibility Backward compatibility
953 @ingroup group_cs
954 @{
956#define CLIENT_MULTI_QUERIES CLIENT_MULTI_STATEMENTS
957#define FIELD_TYPE_DECIMAL MYSQL_TYPE_DECIMAL
958#define FIELD_TYPE_NEWDECIMAL MYSQL_TYPE_NEWDECIMAL
959#define FIELD_TYPE_TINY MYSQL_TYPE_TINY
960#define FIELD_TYPE_SHORT MYSQL_TYPE_SHORT
961#define FIELD_TYPE_LONG MYSQL_TYPE_LONG
962#define FIELD_TYPE_FLOAT MYSQL_TYPE_FLOAT
963#define FIELD_TYPE_DOUBLE MYSQL_TYPE_DOUBLE
964#define FIELD_TYPE_NULL MYSQL_TYPE_NULL
965#define FIELD_TYPE_TIMESTAMP MYSQL_TYPE_TIMESTAMP
966#define FIELD_TYPE_LONGLONG MYSQL_TYPE_LONGLONG
967#define FIELD_TYPE_INT24 MYSQL_TYPE_INT24
968#define FIELD_TYPE_DATE MYSQL_TYPE_DATE
969#define FIELD_TYPE_TIME MYSQL_TYPE_TIME
970#define FIELD_TYPE_DATETIME MYSQL_TYPE_DATETIME
971#define FIELD_TYPE_YEAR MYSQL_TYPE_YEAR
972#define FIELD_TYPE_NEWDATE MYSQL_TYPE_NEWDATE
973#define FIELD_TYPE_ENUM MYSQL_TYPE_ENUM
974#define FIELD_TYPE_SET MYSQL_TYPE_SET
975#define FIELD_TYPE_TINY_BLOB MYSQL_TYPE_TINY_BLOB
976#define FIELD_TYPE_MEDIUM_BLOB MYSQL_TYPE_MEDIUM_BLOB
977#define FIELD_TYPE_LONG_BLOB MYSQL_TYPE_LONG_BLOB
978#define FIELD_TYPE_BLOB MYSQL_TYPE_BLOB
979#define FIELD_TYPE_VAR_STRING MYSQL_TYPE_VAR_STRING
980#define FIELD_TYPE_STRING MYSQL_TYPE_STRING
981#define FIELD_TYPE_CHAR MYSQL_TYPE_TINY
982#define FIELD_TYPE_INTERVAL MYSQL_TYPE_ENUM
983#define FIELD_TYPE_GEOMETRY MYSQL_TYPE_GEOMETRY
984#define FIELD_TYPE_BIT MYSQL_TYPE_BIT
985/** @}*/
986
987/**
988 @addtogroup group_cs_shutdown_kill_constants Shutdown/kill enums and constants
989 @ingroup group_cs
990
991 @sa THD::is_killable
992 @{
994#define MYSQL_SHUTDOWN_KILLABLE_CONNECT (unsigned char)(1 << 0)
995#define MYSQL_SHUTDOWN_KILLABLE_TRANS (unsigned char)(1 << 1)
996#define MYSQL_SHUTDOWN_KILLABLE_LOCK_TABLE (unsigned char)(1 << 2)
997#define MYSQL_SHUTDOWN_KILLABLE_UPDATE (unsigned char)(1 << 3)
998
999/**
1000 We want levels to be in growing order of hardness (because we use number
1001 comparisons).
1002
1003 @note ::SHUTDOWN_DEFAULT does not respect the growing property, but it's ok.
1006 SHUTDOWN_DEFAULT = 0,
1007 /** Wait for existing connections to finish */
1009 /** Wait for existing transactons to finish */
1011 /** Wait for existing updates to finish (=> no partial MyISAM update) */
1013 /** Flush InnoDB buffers and other storage engines' buffers*/
1015 /** Don't flush InnoDB buffers, flush other storage engines' buffers*/
1017 /** Query level of the KILL command */
1018 KILL_QUERY = 254,
1019 /** Connection level of the KILL command */
1021};
1022/** @}*/
1025 /** No metadata will be sent. */
1027 /** The server will send all metadata. */
1029};
1030
1031#if defined(__clang__)
1032// disable -Wdocumentation to workaround
1033// https://bugs.llvm.org/show_bug.cgi?id=38905
1034#pragma clang diagnostic push
1035#pragma clang diagnostic ignored "-Wdocumentation"
1036#endif
1037/**
1038 The flags used in COM_STMT_EXECUTE.
1039 @sa @ref Protocol_classic::parse_packet, @ref mysql_int_serialize_param_data
1040*/
1041#if defined(__clang__)
1042#pragma clang diagnostic pop
1043#endif
1049 /**
1050 On when the client will send the parameter count
1051 even for 0 parameters.
1052 */
1054};
1055
1056/** options for ::mysql_options() */
1060};
1061
1062/**
1063 Type of state change information that the server can include in the Ok
1064 packet.
1065
1066 @note
1067 - session_state_type shouldn't go past 255 (i.e. 1-byte boundary).
1068 - Modify the definition of ::SESSION_TRACK_END when a new member is added.
1071 SESSION_TRACK_SYSTEM_VARIABLES, /**< Session system variables */
1072 SESSION_TRACK_SCHEMA, /**< Current schema */
1073 SESSION_TRACK_STATE_CHANGE, /**< track session state changes */
1074 SESSION_TRACK_GTIDS, /**< See also: session_track_gtids */
1075 SESSION_TRACK_TRANSACTION_CHARACTERISTICS, /**< Transaction chistics */
1076 SESSION_TRACK_TRANSACTION_STATE /**< Transaction state */
1077};
1078
1079/** start of ::enum_session_state_type */
1080#define SESSION_TRACK_BEGIN SESSION_TRACK_SYSTEM_VARIABLES
1081
1082/** End of ::enum_session_state_type */
1083#define SESSION_TRACK_END SESSION_TRACK_TRANSACTION_STATE
1084
1085/** is T a valid session state type */
1086#define IS_SESSION_STATE_TYPE(T) \
1087 (((int)(T) >= SESSION_TRACK_BEGIN) && ((T) <= SESSION_TRACK_END))
1089#define net_new_transaction(net) ((net)->pkt_nr = 0)
1091bool my_net_init(struct NET *net, MYSQL_VIO vio);
1092void my_net_local_init(struct NET *net);
1093void net_end(struct NET *net);
1094void net_clear(struct NET *net, bool check_buffer);
1095void net_claim_memory_ownership(struct NET *net, bool claim);
1096bool net_realloc(struct NET *net, size_t length);
1097bool net_flush(struct NET *net);
1098bool my_net_write(struct NET *net, const unsigned char *packet, size_t len);
1099bool net_write_command(struct NET *net, unsigned char command,
1100 const unsigned char *header, size_t head_len,
1101 const unsigned char *packet, size_t len);
1102bool net_write_packet(struct NET *net, const unsigned char *packet,
1103 size_t length);
1104unsigned long my_net_read(struct NET *net);
1105void my_net_set_write_timeout(struct NET *net, unsigned int timeout);
1106void my_net_set_read_timeout(struct NET *net, unsigned int timeout);
1107void my_net_set_retry_count(struct NET *net, unsigned int retry_count);
1110 unsigned long seed1, seed2, max_value;
1111 double max_value_dbl;
1112};
1113
1114/* Include the types here so existing UDFs can keep compiling */
1116
1117/**
1118 @addtogroup group_cs_compresson_constants Constants when using compression
1119 @ingroup group_cs
1120 @{
1122#define NET_HEADER_SIZE 4 /**< standard header size */
1123#define COMP_HEADER_SIZE 3 /**< compression header extra size */
1124/** @}*/
1125
1126/* Prototypes to password functions */
1127
1128/*
1129 These functions are used for authentication by client and server and
1130 implemented in sql/password.c
1131*/
1133void randominit(struct rand_struct *, unsigned long seed1, unsigned long seed2);
1134double my_rnd(struct rand_struct *);
1135void create_random_string(char *to, unsigned int length,
1136 struct rand_struct *rand_st);
1138void hash_password(unsigned long *to, const char *password,
1139 unsigned int password_len);
1140void make_scrambled_password_323(char *to, const char *password);
1141void scramble_323(char *to, const char *message, const char *password);
1142bool check_scramble_323(const unsigned char *reply, const char *message,
1143 unsigned long *salt);
1144void get_salt_from_password_323(unsigned long *res, const char *password);
1145void make_password_from_salt_323(char *to, const unsigned long *salt);
1146
1147void make_scrambled_password(char *to, const char *password);
1148void scramble(char *to, const char *message, const char *password);
1149bool check_scramble(const unsigned char *reply, const char *message,
1150 const unsigned char *hash_stage2);
1151void get_salt_from_password(unsigned char *res, const char *password);
1152void make_password_from_salt(char *to, const unsigned char *hash_stage2);
1153char *octet2hex(char *to, const char *str, unsigned int len);
1154
1155/* end of password.c */
1156
1157bool generate_sha256_scramble(unsigned char *dst, size_t dst_size,
1158 const char *src, size_t src_size, const char *rnd,
1159 size_t rnd_size);
1160
1161// extern "C" since it is an (undocumented) part of the libmysql ABI.
1162#ifdef __cplusplus
1163extern "C" {
1164#endif
1165char *get_tty_password(const char *opt_message);
1166#ifdef __cplusplus
1167}
1168#endif
1169
1170const char *mysql_errno_to_sqlstate(unsigned int mysql_errno);
1171
1172/* Some other useful functions */
1173
1174// Need to be extern "C" for the time being, due to memcached.
1175#ifdef __cplusplus
1176extern "C" {
1177#endif
1178bool my_thread_init(void);
1179void my_thread_end(void);
1180#ifdef __cplusplus
1181}
1182#endif
1183
1184#ifdef STDCALL
1185unsigned long STDCALL net_field_length(unsigned char **packet);
1186unsigned long STDCALL net_field_length_checked(unsigned char **packet,
1187 unsigned long max_length);
1188#endif
1189uint64_t net_field_length_ll(unsigned char **packet);
1190unsigned char *net_store_length(unsigned char *pkg, unsigned long long length);
1191unsigned int net_length_size(unsigned long long num);
1192unsigned int net_field_length_size(const unsigned char *pos);
1194#define NULL_LENGTH ((unsigned long)~0) /**< For ::net_store_length() */
1195#define MYSQL_STMT_HEADER 4
1196#define MYSQL_LONG_DATA_HEADER 6
1197#endif
mysql_enum_shutdown_level
We want levels to be in growing order of hardness (because we use number comparisons).
Definition: mysql_com.h:1004
#define MYSQL_SHUTDOWN_KILLABLE_CONNECT
Definition: mysql_com.h:993
#define MYSQL_SHUTDOWN_KILLABLE_UPDATE
Definition: mysql_com.h:996
#define MYSQL_SHUTDOWN_KILLABLE_TRANS
Definition: mysql_com.h:994
@ SHUTDOWN_WAIT_CRITICAL_BUFFERS
Don't flush InnoDB buffers, flush other storage engines' buffers.
Definition: mysql_com.h:1015
@ SHUTDOWN_WAIT_ALL_BUFFERS
Flush InnoDB buffers and other storage engines' buffers.
Definition: mysql_com.h:1013
@ SHUTDOWN_WAIT_CONNECTIONS
Wait for existing connections to finish.
Definition: mysql_com.h:1007
@ SHUTDOWN_WAIT_TRANSACTIONS
Wait for existing transactons to finish.
Definition: mysql_com.h:1009
@ KILL_QUERY
Query level of the KILL command.
Definition: mysql_com.h:1017
@ SHUTDOWN_WAIT_UPDATES
Wait for existing updates to finish (=> no partial MyISAM update)
Definition: mysql_com.h:1011
@ KILL_CONNECTION
Connection level of the KILL command.
Definition: mysql_com.h:1019
@ SHUTDOWN_DEFAULT
Definition: mysql_com.h:1005
static int rnd(int max_value)
Definition: hp_test2.cc:548
#define STDCALL
Definition: my_compiler.h:156
Common #defines and includes for file and socket I/O.
Types to make file and socket I/O compatible.
unsigned int STDCALL mysql_errno(MYSQL *mysql)
Definition: client.cc:9086
int my_socket
Definition: mysql.h:65
unsigned char * net_store_length(unsigned char *pkg, unsigned long long length)
void make_scrambled_password_323(char *to, const char *password)
enum_session_state_type
Type of state change information that the server can include in the Ok packet.
Definition: mysql_com.h:1069
@ SESSION_TRACK_GTIDS
See also: session_track_gtids.
Definition: mysql_com.h:1073
@ SESSION_TRACK_SCHEMA
Current schema.
Definition: mysql_com.h:1071
@ SESSION_TRACK_TRANSACTION_CHARACTERISTICS
Transaction chistics.
Definition: mysql_com.h:1074
@ SESSION_TRACK_TRANSACTION_STATE
Transaction state.
Definition: mysql_com.h:1075
@ SESSION_TRACK_STATE_CHANGE
track session state changes
Definition: mysql_com.h:1072
@ SESSION_TRACK_SYSTEM_VARIABLES
Session system variables.
Definition: mysql_com.h:1070
SERVER_STATUS_flags_enum
The status flags are a bit-field.
Definition: mysql_com.h:807
@ SERVER_STATUS_LAST_ROW_SENT
This flag is sent when a read-only cursor is exhausted, in reply to COM_STMT_FETCH command.
Definition: mysql_com.h:833
@ SERVER_QUERY_WAS_SLOW
Definition: mysql_com.h:842
@ SERVER_STATUS_IN_TRANS
Is raised when a multi-statement transaction has been started, either explicitly, by means of BEGIN o...
Definition: mysql_com.h:815
@ SERVER_STATUS_NO_BACKSLASH_ESCAPES
Definition: mysql_com.h:835
@ SERVER_STATUS_DB_DROPPED
A database was dropped.
Definition: mysql_com.h:834
@ SERVER_STATUS_CURSOR_EXISTS
The server was able to fulfill the clients request and opened a read-only non-scrollable cursor for a...
Definition: mysql_com.h:828
@ SERVER_STATUS_AUTOCOMMIT
Server in auto_commit mode.
Definition: mysql_com.h:816
@ SERVER_SESSION_STATE_CHANGED
This status flag, when on, implies that one of the state information has changed on the server becaus...
Definition: mysql_com.h:861
@ SERVER_QUERY_NO_GOOD_INDEX_USED
Definition: mysql_com.h:818
@ SERVER_STATUS_IN_TRANS_READONLY
Set at the same time as SERVER_STATUS_IN_TRANS if the started multi-statement transaction is a read-o...
Definition: mysql_com.h:855
@ SERVER_QUERY_NO_INDEX_USED
Definition: mysql_com.h:819
@ SERVER_MORE_RESULTS_EXISTS
Multi query - next query exists.
Definition: mysql_com.h:817
@ SERVER_STATUS_METADATA_CHANGED
Sent to the client if after a prepared statement reprepare we discovered that the new statement retur...
Definition: mysql_com.h:841
@ SERVER_PS_OUT_PARAMS
To mark ResultSet containing output parameter values.
Definition: mysql_com.h:846
bool my_net_init(struct NET *net, MYSQL_VIO vio)
bool net_write_command(struct NET *net, unsigned char command, const unsigned char *header, size_t head_len, const unsigned char *packet, size_t len)
Send a command to the server.
Definition: net_serv.cc:872
void scramble_323(char *to, const char *message, const char *password)
void scramble(char *to, const char *message, const char *password)
Produce an obscure octet sequence from password and random string, received from the server.
Definition: password.cc:271
void my_net_set_read_timeout(struct NET *net, unsigned int timeout)
Definition: net_serv.cc:2247
void make_password_from_salt_323(char *to, const unsigned long *salt)
void my_net_set_write_timeout(struct NET *net, unsigned int timeout)
Definition: net_serv.cc:2254
bool my_thread_init(void)
Allocate thread specific memory for the thread, used by mysys and dbug.
Definition: my_thr_init.cc:269
double my_rnd(struct rand_struct *)
Generate random number.
Definition: my_rnd.cc:51
enum_cursor_type
The flags used in COM_STMT_EXECUTE.
Definition: mysql_com.h:1043
@ CURSOR_TYPE_NO_CURSOR
Definition: mysql_com.h:1044
@ CURSOR_TYPE_FOR_UPDATE
Definition: mysql_com.h:1046
@ CURSOR_TYPE_SCROLLABLE
Definition: mysql_com.h:1047
@ CURSOR_TYPE_READ_ONLY
Definition: mysql_com.h:1045
@ PARAMETER_COUNT_AVAILABLE
On when the client will send the parameter count even for 0 parameters.
Definition: mysql_com.h:1052
#define MYSQL_ERRMSG_SIZE
Max length of a error message.
Definition: mysql_com.h:880
void create_random_string(char *to, unsigned int length, struct rand_struct *rand_st)
bool check_scramble(const unsigned char *reply, const char *message, const unsigned char *hash_stage2)
char * get_tty_password(const char *opt_message)
Definition: get_password.cc:146
unsigned long my_net_read(struct NET *net)
Read a packet from the client/server and return it without the internal package header.
Definition: net_serv.cc:2234
#define MYSQL_VIO
Definition: mysql_com.h:894
bool check_scramble_323(const unsigned char *reply, const char *message, unsigned long *salt)
enum_mysql_set_option
options for mysql_options()
Definition: mysql_com.h:1056
@ MYSQL_OPTION_MULTI_STATEMENTS_OFF
Definition: mysql_com.h:1058
@ MYSQL_OPTION_MULTI_STATEMENTS_ON
Definition: mysql_com.h:1057
void get_salt_from_password_323(unsigned long *res, const char *password)
void my_thread_end(void)
Deallocate memory used by the thread for book-keeping.
Definition: my_thr_init.cc:304
void my_net_set_retry_count(struct NET *net, unsigned int retry_count)
Definition: net_serv.cc:2261
unsigned int net_field_length_size(const unsigned char *pos)
length of buffer required to represent a length-encoded string give the length part of length encoded...
Definition: pack.cc:178
void net_clear(struct NET *net, bool check_buffer)
Clear (reinitialize) the NET structure for a new command.
Definition: net_serv.cc:264
struct NET NET
#define SQLSTATE_LENGTH
Definition: mysql_com.h:75
unsigned int net_length_size(unsigned long long num)
bool generate_sha256_scramble(unsigned char *dst, size_t dst_size, const char *src, size_t src_size, const char *rnd, size_t rnd_size)
Definition: sha2_password_common.cc:387
bool net_write_packet(struct NET *net, const unsigned char *packet, size_t length)
Write a MySQL protocol packet to the network handler.
Definition: net_serv.cc:1289
const char * mysql_errno_to_sqlstate(unsigned int mysql_errno)
Definition: sql_state.cc:43
bool net_realloc(struct NET *net, size_t length)
Realloc the packet buffer.
Definition: net_serv.cc:210
void make_scrambled_password(char *to, const char *password)
Definition: password.cc:251
bool my_net_write(struct NET *net, const unsigned char *packet, size_t len)
Write a logical packet with packet header.
Definition: net_serv.cc:436
void net_end(struct NET *net)
Definition: net_serv.cc:191
enum_resultset_metadata
Definition: mysql_com.h:1023
@ RESULTSET_METADATA_NONE
No metadata will be sent.
Definition: mysql_com.h:1025
@ RESULTSET_METADATA_FULL
The server will send all metadata.
Definition: mysql_com.h:1027
char * octet2hex(char *to, const char *str, unsigned int len)
Definition: password.cc:139
void randominit(struct rand_struct *, unsigned long seed1, unsigned long seed2)
void my_net_local_init(struct NET *net)
Definition: libmysql.cc:952
bool net_flush(struct NET *net)
Flush write_buffer if not empty.
Definition: net_serv.cc:285
void get_salt_from_password(unsigned char *res, const char *password)
uint64_t net_field_length_ll(unsigned char **packet)
Definition: fido_common.h:83
void hash_password(unsigned long *to, const char *password, unsigned int password_len)
void net_claim_memory_ownership(struct NET *net, bool claim)
Definition: net_serv.cc:204
void make_password_from_salt(char *to, const unsigned char *hash_stage2)
static char * password
Definition: mysql_secure_installation.cc:56
std::string str(const mysqlrouter::ConfigGenerator::Options::Endpoint &ep)
Definition: config_generator.cc:1044
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
static bool timeout(bool(*wait_condition)())
Timeout function.
Definition: log0meb.cc:496
Definition: buffer.h:45
ulong STDCALL net_field_length(uchar **packet)
Definition: pack.cc:38
ulong STDCALL net_field_length_checked(uchar **packet, ulong max_length)
Definition: pack.cc:61
Definition: mysql_com.h:913
unsigned int pkt_nr
Definition: mysql_com.h:924
char sqlstate[SQLSTATE_LENGTH+1]
Client library sqlstate buffer.
Definition: mysql_com.h:936
MYSQL_VIO vio
Definition: mysql_com.h:914
unsigned char error
Definition: mysql_com.h:932
unsigned char * read_pos
Definition: mysql_com.h:915
unsigned char reading_or_writing
Definition: mysql_com.h:928
unsigned int retry_count
Definition: mysql_com.h:925
bool compress
Definition: mysql_com.h:930
unsigned int * return_status
Definition: mysql_com.h:927
unsigned long length
Definition: mysql_com.h:922
unsigned long max_packet_size
Definition: mysql_com.h:923
unsigned long where_b
Definition: mysql_com.h:922
unsigned long max_packet
Definition: mysql_com.h:923
void * extension
Extension pointer, for the caller private use.
Definition: mysql_com.h:945
unsigned char save_char
Definition: mysql_com.h:929
unsigned int last_errno
Definition: mysql_com.h:931
unsigned char * buff
Definition: mysql_com.h:915
int fcntl
Definition: mysql_com.h:926
my_socket fd
Definition: mysql_com.h:916
unsigned char * write_pos
Definition: mysql_com.h:915
unsigned long remain_in_buf
Set if we are doing several queries in one command ( as in LOAD TABLE ... FROM MASTER ),...
Definition: mysql_com.h:922
char last_error[MYSQL_ERRMSG_SIZE]
Client library error message buffer.
Definition: mysql_com.h:934
unsigned int compress_pkt_nr
Definition: mysql_com.h:924
unsigned int read_timeout
Definition: mysql_com.h:925
unsigned char * buff_end
Definition: mysql_com.h:915
unsigned int write_timeout
Definition: mysql_com.h:925
unsigned long buf_length
Definition: mysql_com.h:922
Definition: violite.h:318
Definition: mysql_com.h:1108
unsigned long seed2
Definition: mysql_com.h:1109
unsigned long max_value
Definition: mysql_com.h:1109
double max_value_dbl
Definition: mysql_com.h:1110
unsigned long seed1
Definition: mysql_com.h:1109
command
Definition: version_token.cc:280