Submit
Path:
~
/
/
usr
/
include
/
mysql
/
mysql
/
File Content:
plugin_auth_common.h
#ifndef MYSQL_PLUGIN_AUTH_COMMON_INCLUDED /* Copyright (c) 2010, 2022, Oracle and/or its affiliates. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2.0, as published by the Free Software Foundation. This program is also distributed with certain software (including but not limited to OpenSSL) that is licensed under separate terms, as designated in a particular file or component or in included license documentation. The authors of MySQL hereby grant you an additional permission to link the program and your derivative works with the separately licensed software that they have included with MySQL. Without limiting anything contained in the foregoing, this file, which is part of C Driver for MySQL (Connector/C), is also subject to the Universal FOSS Exception, version 1.0, a copy of which can be found at http://oss.oracle.com/licenses/universal-foss-exception. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License, version 2.0, for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** @file This file defines constants and data structures that are the same for both client- and server-side authentication plugins. */ #define MYSQL_PLUGIN_AUTH_COMMON_INCLUDED /** the max allowed length for a user name */ #define MYSQL_USERNAME_LENGTH 96 /** return values of the plugin authenticate_user() method. */ /** Authentication failed, plugin internal error. An error occurred in the authentication plugin itself. These errors are reported in table performance_schema.host_cache, column COUNT_AUTH_PLUGIN_ERRORS. */ #define CR_AUTH_PLUGIN_ERROR 3 /** Authentication failed, client server handshake. An error occurred during the client server handshake. These errors are reported in table performance_schema.host_cache, column COUNT_HANDSHAKE_ERRORS. */ #define CR_AUTH_HANDSHAKE 2 /** Authentication failed, user credentials. For example, wrong passwords. These errors are reported in table performance_schema.host_cache, column COUNT_AUTHENTICATION_ERRORS. */ #define CR_AUTH_USER_CREDENTIALS 1 /** Authentication failed. Additionally, all other CR_xxx values (libmysql error code) can be used too. The client plugin may set the error code and the error message directly in the MYSQL structure and return CR_ERROR. If a CR_xxx specific error code was returned, an error message in the MYSQL structure will be overwritten. If CR_ERROR is returned without setting the error in MYSQL, CR_UNKNOWN_ERROR will be user. */ #define CR_ERROR 0 /** Authentication (client part) was successful. It does not mean that the authentication as a whole was successful, usually it only means that the client was able to send the user name and the password to the server. If CR_OK is returned, the libmysql reads the next packet expecting it to be one of OK, ERROR, or CHANGE_PLUGIN packets. */ #define CR_OK -1 /** Authentication was successful. It means that the client has done its part successfully and also that a plugin has read the last packet (one of OK, ERROR, CHANGE_PLUGIN). In this case, libmysql will not read a packet from the server, but it will use the data at mysql->net.read_pos. A plugin may return this value if the number of roundtrips in the authentication protocol is not known in advance, and the client plugin needs to read one packet more to determine if the authentication is finished or not. */ #define CR_OK_HANDSHAKE_COMPLETE -2 /** Flag to be passed back to server from authentication plugins via authenticated_as when proxy mapping should be done by the server. */ #define PROXY_FLAG 0 /* We need HANDLE definition if on Windows. Define WIN32_LEAN_AND_MEAN (if not already done) to minimize amount of imported declarations. */ #ifdef _WIN32 #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif #include <windows.h> #endif typedef struct st_plugin_vio_info { enum { MYSQL_VIO_INVALID, MYSQL_VIO_TCP, MYSQL_VIO_SOCKET, MYSQL_VIO_PIPE, MYSQL_VIO_MEMORY } protocol; int socket; /**< it's set, if the protocol is SOCKET or TCP */ #ifdef _WIN32 HANDLE handle; /**< it's set, if the protocol is PIPE or MEMORY */ #endif } MYSQL_PLUGIN_VIO_INFO; /** Provides plugin access to communication channel */ typedef struct st_plugin_vio { /** Plugin provides a pointer reference and this function sets it to the contents of any incoming packet. Returns the packet length, or -1 if the plugin should terminate. */ int (*read_packet)(struct st_plugin_vio *vio, unsigned char **buf); /** Plugin provides a buffer with data and the length and this function sends it as a packet. Returns 0 on success, 1 on failure. */ int (*write_packet)(struct st_plugin_vio *vio, const unsigned char *packet, int packet_len); /** Fills in a st_plugin_vio_info structure, providing the information about the connection. */ void (*info)(struct st_plugin_vio *vio, struct st_plugin_vio_info *info); } MYSQL_PLUGIN_VIO; #endif
Submit
FILE
FOLDER
Name
Size
Permission
Action
psi
---
0755
client_authentication.h
1658 bytes
0644
client_plugin.h
7143 bytes
0644
client_plugin.h.pp
1988 bytes
0644
com_data.h
3515 bytes
0644
get_password.h
1601 bytes
0644
group_replication_priv.h
5138 bytes
0644
innodb_priv.h
2570 bytes
0644
mysql_lex_string.h
1505 bytes
0644
plugin.h
26707 bytes
0644
plugin_audit.h
17944 bytes
0644
plugin_audit.h.pp
14023 bytes
0644
plugin_audit.h.pp.lve
13897 bytes
0644
plugin_auth.h
5767 bytes
0644
plugin_auth.h.pp
5147 bytes
0644
plugin_auth_common.h
5529 bytes
0644
plugin_ftparser.h
8047 bytes
0644
plugin_ftparser.h.pp
4871 bytes
0644
plugin_group_replication.h
6072 bytes
0644
plugin_keyring.h
6694 bytes
0644
plugin_keyring.h.pp
4458 bytes
0644
plugin_trace.h
12551 bytes
0644
plugin_validate_password.h
1986 bytes
0644
service_command.h
13882 bytes
0644
service_locking.h
4737 bytes
0644
service_my_plugin_log.h
2082 bytes
0644
service_my_snprintf.h
3812 bytes
0644
service_mysql_alloc.h
3163 bytes
0644
service_mysql_keyring.h
2858 bytes
0644
service_mysql_password_policy.h
2840 bytes
0644
service_mysql_string.h
5758 bytes
0644
service_parser.h
9814 bytes
0644
service_rpl_transaction_ctx.h
2764 bytes
0644
service_rpl_transaction_write_set.h
3663 bytes
0644
service_rules_table.h
5499 bytes
0644
service_security_context.h
4467 bytes
0644
service_srv_session.h
5300 bytes
0644
service_srv_session_info.h
5646 bytes
0644
service_ssl_wrapper.h
5558 bytes
0644
service_thd_alloc.h
4734 bytes
0644
service_thd_engine_lock.h
1898 bytes
0644
service_thd_wait.h
4348 bytes
0644
service_thread_scheduler.h
3079 bytes
0644
services.h
2351 bytes
0644
services.h.pp
22307 bytes
0644
thread_pool_priv.h
6652 bytes
0644
thread_type.h
1787 bytes
0644
N4ST4R_ID | Naxtarrr