summaryrefslogtreecommitdiff
path: root/plugin
Commit message (Collapse)AuthorAgeFilesLines
* Merge 10.1 into 10.2Marko Mäkelä2019-06-121-1/+0
|\
| * MDEV-19563 Removed references to deprecated option ↵sjaakola2019-06-121-1/+0
| | | | | | | | | | | | | | | | | | innodb_locks_unsafe_for_binlog innodb_locks_unsafe_for_binlog variabe removed from wsrep_info test configuration and recommendation to use this variable in README-wsrep was removed as well Also relates to issue: MDEV-19544
* | Fix linking error, for GNU linker.Vladislav Vaintroub2019-06-031-1/+1
| |
* | Only link mysys_ssl when required.Vladislav Vaintroub2019-06-031-1/+1
| | | | | | | | | | Do not use TARGET_LINK_LIBRARIES(mysys mysys_ssl), this means that mysys_ssl is linked to practically everything.
* | MDEV-17456 Malicious SUPER user can possibly change audit log configuration ↵Alexey Botchkov2019-05-191-6/+9
| | | | | | | | | | | | without leaving traces. Fix for the SET GLOBAL server_audit_loggin=on; added.
* | Merge 10.1 into 10.2Marko Mäkelä2019-05-1366-67/+67
|\ \ | |/
| * Merge branch '5.5' into 10.1Vicențiu Ciorbaru2019-05-1153-54/+54
| |\
| | * Update FSF AddressVicențiu Ciorbaru2019-05-1137-38/+38
| | | | | | | | | | | | * Update wrong zip-code
| * | Update FSF addressVicențiu Ciorbaru2019-05-111-1/+1
| | |
| * | Merge branch '5.5' into 10.1Vicențiu Ciorbaru2019-05-1111-11/+11
| |\ \ | | |/
| | * Update FSF addressMichal Schorm2019-05-1011-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit is based on the work of Michal Schorm, rebased on the earliest MariaDB version. Th command line used to generate this diff was: find ./ -type f \ -exec sed -i -e 's/Foundation, Inc., 59 Temple Place, Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/Foundation, Inc. 59 Temple Place.* Suite 330, Boston, /Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, /g' {} \; \ -exec sed -i -e 's/MA.*.....-1307.*USA/MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/Foundation, Inc., 59 Temple/Foundation, Inc., 51 Franklin/g' {} \; \ -exec sed -i -e 's/Place, Suite 330, Boston, MA.*02111-1307.*USA/Street, Fifth Floor, Boston, MA 02110-1335 USA/g' {} \; \ -exec sed -i -e 's/MA.*.....-1307/MA 02110-1335/g' {} \;
| | * MDEV-15480 Audit plugin does not respect QUERY_DML for audit plugin.Alexey Botchkov2018-05-101-4/+25
| | | | | | | | | | | | QUERY_DML_NO_SELECT flag added.
| | * MDEV-13921 Audit log writes invalid SQL if single-line comments areAlexey Botchkov2017-11-031-1/+1
| | | | | | | | | | | | | | | | | | | | | present. thread_pool_server_audit.test fixed. plugin version updated.
| | * MDEV-13921 Audit log writes invalid SQL if single-line comments areAlexey Botchkov2017-11-031-18/+21
| | | | | | | | | | | | | | | | | | | | | present. Escape special characters (like \r \n \t) instead of replacing them with spaces.
* | | Merge branch '10.1' into 10.2Oleksandr Byelkin2019-05-041-1/+9
|\ \ \ | |/ /
| * | MDEV-18686 Add option to PAM authentication plugin to allow case insensitive ↵Sergei Golubchik2019-04-241-1/+9
| | | | | | | | | | | | | | | | | | | | | username matching add a new option --pam-windbind-workaround for a pam plugin to work around pam_winbind unconditional username lowercasing
* | | Remove a type cast, and use correct format insteadMarko Mäkelä2019-04-291-2/+2
| | |
* | | Make Win compiler happy.Alexey Botchkov2019-04-291-1/+1
| | |
* | | MDEV-17456 Malicious SUPER user can possibly change audit log configuration ↵Alexey Botchkov2019-04-291-3/+4
| | | | | | | | | | | | | | | | | | | | | without leaving traces. The 'SET server_audit_logging ' statements should be logged no matter what.
* | | MDEV-19141 server_audit_excl_users accepts only values with less than 1024 ↵Alexey Botchkov2019-04-291-6/+56
| | | | | | | | | | | | | | | | | | | | | chars. Since this limit is imposed by the SHOW_VAR_FUNC_BUFF_SIZE, we just launch the error message.
* | | Merge 10.1 into 10.2Marko Mäkelä2019-04-031-1/+1
|\ \ \ | |/ /
| * | cmake: fix krb5 detection on SUSESergei Golubchik2019-04-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `zypper install krb5-devel` installs executables outside of $PATH. It also installs /etc/profile.d/krb5.sh that is sourced by a new shell to add the new location to the $PATH. But this doesn't affect the current shell. Now decent Linux distros remind the user to run `. /etc/profile` to reload paths in such a case. SUSE doesn't and for a good reason - it doesn't work there. Because SUSE sets PROFILEREAD=true in the environment and /etc/profile does not do anything. By this point, one should not really expect `unset PROFILEREAD` to help, and it does not - PROFILEREAD is readonly, and cannot be unset. Apparently SUSE really *really* wants you to re-login between installing MariaDB build dependencies and actually running the rpmbuild. Which we cannot do it buildbot. And it would look very user-un-friendly in the Build Instructions section of the manual. So, we work around it - by adding SUSE krb5 path to the search list. THIS IS SUSEEEEEE!!!
* | | Merge branch '10.1' into 10.2Sergei Golubchik2019-03-291-0/+1
|\ \ \ | |/ /
| * | MDEV-7066 No Source RPMs ... (and so no "yum-builddep MariaDB-server" either)Sergei Golubchik2019-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | special cases: * change systemd detection to use CHECK_LIBRARY_EXISTS at least once, to have it detected by build_depends.cmake * similarly, use find_library for pam * unixODBC is weird, libodbc.so is in the unixODBC package, not in the unixODBC-devel, where normally all .so files belong. Packaging bug? As a workaround, use find_file(sql.h) instead of find_path(sql.h) to make sure that /usr/include/sql.h (not /usr/include) is cached by cmake, and later build_depends.cmake will select unixODBC-devel, as a package owning /usr/include/sql.h file.
* | | Merge 10.1 into 10.2Marko Mäkelä2019-03-222-8/+9
|\ \ \ | |/ /
| * | Merge 10.0 into 10.1Marko Mäkelä2019-03-212-8/+9
| |\ \
| | * | MDEV-6262 follow-up: Ensure NUL termination on strncpy()Marko Mäkelä2019-03-212-8/+9
| | | |
| | * | MDEV-15480 Audit plugin does not respect QUERY_DML for audit plugin.Alexey Botchkov2018-05-101-4/+25
| | | | | | | | | | | | | | | | QUERY_DML_NO_SELECT flag added.
| | * | MDEV-13921 Audit log writes invalid SQL if single-line comments areAlexey Botchkov2017-11-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | present. thread_pool_server_audit.test fixed. plugin version updated.
| | * | MDEV-13921 Audit log writes invalid SQL if single-line comments areAlexey Botchkov2017-11-031-18/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | present. Escape special characters (like \r \n \t) instead of replacing them with spaces.
* | | | Merge branch '10.1' into 10.2Oleksandr Byelkin2019-02-191-2/+6
|\ \ \ \ | |/ / /
| * | | Don't build aws_key_management plugin by defaultSergei Golubchik2019-02-191-0/+6
| | | |
* | | | Merge 10.1 into 10.2Marko Mäkelä2019-02-021-0/+2
|\ \ \ \ | |/ / /
| * | | postmerge rollbacks and fixesOleksandr Byelkin2019-01-311-0/+2
| | | |
* | | | Merge 10.1 into 10.2Marko Mäkelä2018-11-062-3/+9
|\ \ \ \ | |/ / /
| * | | auth_gssapi : Fix string formatting in my_printf_error()Vladislav Vaintroub2018-10-161-1/+1
| | | |
| * | | remove MYF flags from pluginVladislav Vaintroub2018-10-161-2/+2
| | | |
| * | | Fix regular expression in replace_regex in auth_gssapi test.Vladislav Vaintroub2018-10-151-1/+1
| | | |
| * | | make auth_gssapi_basic work, also in domain environment.Vladislav Vaintroub2018-10-153-1/+4
| | | |
| * | | MDEV-17462 Heap corruption with auth_gssapi on Windows.Vladislav Vaintroub2018-10-151-1/+6
| | | | | | | | | | | | | | | | | | | | use FreeContextAttributes() on individual members of SecPkgContext_NativeNames, not on the struct itself.
* | | | MDEV-14267: correct FSF addressDaniel Black2018-10-302-2/+2
| | | |
* | | | AWS KMS plugin : more detailed message when API calls fail.Vladislav Vaintroub2018-10-031-13/+16
| | | | | | | | | | | | | | | | Output API function name, exception name, exception text
* | | | Merge 10.1 into 10.2Marko Mäkelä2018-08-312-3/+5
|\ \ \ \ | |/ / /
| * | | MDEV-16665 ed25519 describes itself as 1.0-alpha even though it's not alpha.Alexey Botchkov2018-08-301-1/+1
| | | | | | | | | | | | | | | | Plugin version name fixed.
| * | | MDEV-17095 pam_user_map module throws syntax error if group name contains ↵Alexey Botchkov2018-08-301-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | backslash. Let '\\' and '/' symbols to be part of a group name.
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2018-06-281-1/+1
|\ \ \ \ | |/ / /
| * | | mark ed25519 stableSergei Golubchik2018-06-281-1/+1
| | | |
* | | | don't use my_error(0) or my_printf_error(0)Sergei Golubchik2018-06-211-5/+5
| | | | | | | | | | | | | | | | there's an assert that catches it
* | | | Merge 10.1 into 10.2Marko Mäkelä2018-05-111-4/+25
|\ \ \ \ | |/ / /
| * | | MDEV-15480 Audit plugin does not respect QUERY_DML for audit plugin.Alexey Botchkov2018-05-101-4/+25
| | | | | | | | | | | | | | | | QUERY_DML_NO_SELECT flag added.