403Webshell
Server IP : 172.67.216.182  /  Your IP : 162.158.163.100
Web Server : Apache
System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64
User : www ( 1000)
PHP Version : 7.4.33
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /www/server/mysql/src/sql/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/server/mysql/src/sql/locking_service.cc
/* Copyright (c) 2015, 2023, 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.

   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 */

#include "locking_service.h"

#include "mysqld.h"        // current_thd
#include "mdl.h"           // MDL_request_list
#include "sql_class.h"     // THD

/**
  We want to convert ER_LOCK_DEADLOCK error to ER_LOCK_SERVICE_DEADLOCK error.
  The former means that implicit rollback of transaction has occurred
  which doesn't (and should not) happen when we get deadlock while waiting
  for locking service locks.

  We also want to convert ER_LOCK_WAIT_TIMEOUT as this error indicates that
  it helps to restart the transaction. This does not apply to locking service
  locks.
*/

class Locking_service_deadlock_error_handler: public Internal_error_handler
{
public:
  virtual bool handle_condition(THD *thd,
                                uint sql_errno,
                                const char *sqlstate,
                                Sql_condition::enum_severity_level *level,
                                const char *msg)
  {
    if (sql_errno == ER_LOCK_DEADLOCK)
    {
      my_error(ER_LOCKING_SERVICE_DEADLOCK, MYF(0));
      return true;
    }
    else if (sql_errno == ER_LOCK_WAIT_TIMEOUT)
    {
      my_error(ER_LOCKING_SERVICE_TIMEOUT, MYF(0));
      return true;
    }

    return false;
  }
};


static const size_t MAX_LOCKING_SERVICE_LOCK_NAME_LENGTH= 64;

/**
  Check if the given name has valid length.

  @param name     Name to check (namespace or lock)

  @retval true if invalid, false otherwise.
 */

static inline bool check_lock_name(const char *name)
{
  if (!name || strlen(name) == 0 ||
      strlen(name) > MAX_LOCKING_SERVICE_LOCK_NAME_LENGTH)
  {
    my_error(ER_LOCKING_SERVICE_WRONG_NAME, MYF(0), name);
    return true;
  }
  return false;
}


class Release_all_locking_service_locks : public MDL_release_locks_visitor
{
public:
  Release_all_locking_service_locks() { }

  virtual bool release(MDL_ticket *ticket)
  {
    return ticket->get_key()->mdl_namespace() == MDL_key::LOCKING_SERVICE;
  }
};


class Release_locking_service_locks : public MDL_release_locks_visitor
{
private:
  const char *m_lock_namespace;

public:
  explicit Release_locking_service_locks(const char *lock_namespace)
    : m_lock_namespace(lock_namespace) { }

  virtual bool release(MDL_ticket *ticket)
  {
    return (ticket->get_key()->mdl_namespace() == MDL_key::LOCKING_SERVICE &&
            strcmp(m_lock_namespace, ticket->get_key()->db_name()) == 0);
  }
};


int acquire_locking_service_locks(MYSQL_THD opaque_thd,
                                  const char *lock_namespace,
                                  const char **lock_names,
                                  size_t lock_num,
                                  enum_locking_service_lock_type lock_type,
                                  ulong lock_timeout)
{
  if (lock_num == 0)
    return 0;

  // Check that namespace length is acceptable
  if (check_lock_name(lock_namespace))
    return 1;

  THD *thd;
  if (opaque_thd)
    thd= static_cast<THD*>(opaque_thd);
  else
    thd= current_thd;

  // Initialize MDL_requests.
  MDL_request_list mdl_requests;
  for (size_t i= 0; i < lock_num; i++)
  {
    // Check that lock name length is acceptable
    if (check_lock_name(lock_names[i]))
      return 1;

    MDL_request *new_request= new (thd->mem_root) MDL_request;
    MDL_REQUEST_INIT(new_request, MDL_key::LOCKING_SERVICE,
                     lock_namespace, lock_names[i],
                     (lock_type == LOCKING_SERVICE_READ ?
                      MDL_SHARED : MDL_EXCLUSIVE),
                     MDL_EXPLICIT);
    mdl_requests.push_front(new_request);
  }

  // Acquire locks
  Locking_service_deadlock_error_handler handler;
  thd->push_internal_handler(&handler);
  bool res= thd->mdl_context.acquire_locks(&mdl_requests, lock_timeout);
  thd->pop_internal_handler();
  if (res)
    return 1;

  return 0;
}


int release_locking_service_locks(MYSQL_THD opaque_thd,
                                  const char *lock_namespace)
{
  // Check that namespace length is acceptable
  if (check_lock_name(lock_namespace))
    return 1;

  THD *thd;
  if (opaque_thd)
    thd= static_cast<THD*>(opaque_thd);
  else
    thd= current_thd;

  Release_locking_service_locks lock_visitor(lock_namespace);
  thd->mdl_context.release_locks(&lock_visitor);

  return 0;
}


void release_all_locking_service_locks(THD *thd)
{
  Release_all_locking_service_locks lock_visitor;
  thd->mdl_context.release_locks(&lock_visitor);
}


/*
  Wrapper functions for the plugin service API. The UDF implementation
  cannot call these as we get name conficts with the macros defined
  in service_locking.h as UDFs are built with MYSQL_DYNAMIC_PLUGIN
  yet are not able to call service API functions.
*/
C_MODE_START
int mysql_acquire_locking_service_locks(MYSQL_THD opaque_thd,
                                        const char *lock_namespace,
                                        const char **lock_names,
                                        size_t lock_num,
                                        enum_locking_service_lock_type lock_type,
                                        ulong lock_timeout)
{
  return acquire_locking_service_locks(opaque_thd, lock_namespace, lock_names,
                                       lock_num, lock_type, lock_timeout);
}


int mysql_release_locking_service_locks(MYSQL_THD opaque_thd,
                                        const char *lock_namespace)
{
  return release_locking_service_locks(opaque_thd, lock_namespace);
}
C_MODE_END


Youez - 2016 - github.com/yon3zu
LinuXploit