123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- *
- * Gearmand client and server library.
- *
- * Copyright (C) 2011-2013 Data Differential, http://datadifferential.com/
- * Copyright (C) 2008 Brian Aker, Eric Day
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- *
- * * Redistributions in binary form must reproduce the above
- * copyright notice, this list of conditions and the following disclaimer
- * in the documentation and/or other materials provided with the
- * distribution.
- *
- * * The names of its contributors may not be used to endorse or
- * promote products derived from this software without specific prior
- * written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- /**
- * @file
- * @brief Server connection definitions
- */
- #include "gear_config.h"
- #include "libgearman-server/common.h"
- #include <libgearman/command.h>
- #include <cassert>
- #include <cerrno>
- #include <cstring>
- #include <memory>
- #pragma GCC diagnostic push
- #ifndef __INTEL_COMPILER
- #pragma GCC diagnostic ignored "-Wold-style-cast"
- #endif
- /*
- * Public definitions
- */
- gearman_server_packet_st *
- gearman_server_packet_create(gearman_server_thread_st *thread,
- bool from_thread)
- {
- gearman_server_packet_st *server_packet= NULL;
- if (from_thread and Server->flags.threaded)
- {
- if (thread->free_packet_count > 0)
- {
- server_packet= thread->free_packet_list;
- thread->free_packet_list= server_packet->next;
- thread->free_packet_count--;
- }
- }
- else
- {
- if (Server->free_packet_count > 0)
- {
- server_packet= Server->free_packet_list;
- Server->free_packet_list= server_packet->next;
- Server->free_packet_count--;
- }
- }
- if (server_packet == NULL)
- {
- server_packet= new (std::nothrow) gearman_server_packet_st;
- if (server_packet == NULL)
- {
- gearmand_perror(errno, "new() gearman_server_packet_st");
- return NULL;
- }
- }
- server_packet->next= NULL;
- return server_packet;
- }
- void destroy_gearman_server_packet_st(gearman_server_packet_st *packet)
- {
- delete packet;
- }
- void gearman_server_packet_free(gearman_server_packet_st *packet,
- gearman_server_thread_st *thread,
- bool from_thread)
- {
- if (from_thread and Server->flags.threaded)
- {
- if (thread->free_packet_count < GEARMAND_MAX_FREE_SERVER_PACKET)
- {
- packet->next= thread->free_packet_list;
- thread->free_packet_list= packet;
- thread->free_packet_count++;
- }
- else
- {
- delete packet;
- }
- }
- else
- {
- if (Server->free_packet_count < GEARMAND_MAX_FREE_SERVER_PACKET)
- {
- packet->next= Server->free_packet_list;
- Server->free_packet_list= packet;
- Server->free_packet_count++;
- }
- else
- {
- delete packet;
- }
- }
- }
- gearmand_error_t gearman_server_io_packet_add(gearman_server_con_st *con,
- bool take_data,
- enum gearman_magic_t magic,
- gearman_command_t command,
- const void *arg, ...)
- {
- gearman_server_packet_st *server_packet;
- va_list ap;
- server_packet= gearman_server_packet_create(con->thread, false);
- if (server_packet == NULL)
- {
- return GEARMAND_MEMORY_ALLOCATION_FAILURE;
- }
- server_packet->packet.reset(magic, command);
- va_start(ap, arg);
- while (arg)
- {
- size_t arg_size= va_arg(ap, size_t);
- gearmand_error_t ret= gearmand_packet_create(&(server_packet->packet), arg, arg_size);
- if (gearmand_failed(ret))
- {
- va_end(ap);
- gearmand_packet_free(&(server_packet->packet));
- gearman_server_packet_free(server_packet, con->thread, false);
- return ret;
- }
- arg= va_arg(ap, void *);
- }
- va_end(ap);
- gearmand_error_t ret= gearmand_packet_pack_header(&(server_packet->packet));
- if (gearmand_failed(ret))
- {
- gearmand_packet_free(&(server_packet->packet));
- gearman_server_packet_free(server_packet, con->thread, false);
- return ret;
- }
- if (take_data)
- {
- server_packet->packet.options.free_data= true;
- }
- int error;
- if ((error= pthread_mutex_lock(&con->thread->lock)) == 0)
- {
- GEARMAND_FIFO__ADD(con->io_packet, server_packet);
- if ((error= pthread_mutex_unlock(&con->thread->lock)))
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_unlock");
- }
- }
- else
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_lock");
- }
- gearman_server_con_io_add(con);
- return GEARMAND_SUCCESS;
- }
- void gearman_server_io_packet_remove(gearman_server_con_st *con)
- {
- gearman_server_packet_st *server_packet= con->io_packet_list;
- gearmand_packet_free(&(server_packet->packet));
- int error;
- if ((error= pthread_mutex_lock(&con->thread->lock)) == 0)
- {
- GEARMAND_FIFO__DEL(con->io_packet, server_packet);
- if ((error= pthread_mutex_unlock(&con->thread->lock)))
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_unlock");
- }
- }
- else
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_lock");
- }
- gearman_server_packet_free(server_packet, con->thread, true);
- }
- void gearman_server_proc_packet_add(gearman_server_con_st *con,
- gearman_server_packet_st *packet)
- {
- int error;
- if ((error= pthread_mutex_lock(&con->thread->lock)) == 0)
- {
- GEARMAND_FIFO__ADD(con->proc_packet, packet);
- if ((error= pthread_mutex_unlock(&con->thread->lock)))
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_unlock");
- }
- }
- else
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_lock");
- }
- gearman_server_con_proc_add(con);
- }
- gearman_server_packet_st *
- gearman_server_proc_packet_remove(gearman_server_con_st *con)
- {
- gearman_server_packet_st *server_packet= con->proc_packet_list;
- if (server_packet)
- {
- int error;
- if ((error= pthread_mutex_lock(&con->thread->lock)) == 0)
- {
- GEARMAND_FIFO__DEL(con->proc_packet, server_packet);
- if ((error= pthread_mutex_unlock(&con->thread->lock)) != 0)
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_unlock");
- }
- }
- else
- {
- gearmand_log_fatal_perror(GEARMAN_DEFAULT_LOG_PARAM, error, "pthread_mutex_lock");
- }
- }
- return server_packet;
- }
- const char *gearmand_strcommand(gearmand_packet_st *packet)
- {
- assert(packet);
- if (packet)
- {
- const gearman_command_info_st* info= gearman_command_info(packet->command);
- if (info)
- {
- return info->name;
- }
- }
- return "__INVALID_PACKET_COMMAND";
- }
- inline static gearmand_error_t packet_create_arg(gearmand_packet_st *packet,
- const void *arg, size_t arg_size)
- {
- if (packet->argc == gearman_command_info(packet->command)->argc and
- (not (gearman_command_info(packet->command)->data) or
- packet->data))
- {
- gearmand_log_error(GEARMAN_DEFAULT_LOG_PARAM, "too many arguments for command(%s)", gearman_command_info(packet->command)->name);
- return GEARMAND_TOO_MANY_ARGS;
- }
- if (packet->argc == gearman_command_info(packet->command)->argc)
- {
- packet->data= static_cast<const char *>(arg);
- packet->data_size= arg_size;
- return GEARMAND_SUCCESS;
- }
- if (packet->args_size == 0 and packet->magic != GEARMAN_MAGIC_TEXT)
- {
- packet->args_size= GEARMAND_PACKET_HEADER_SIZE;
- }
- if ((packet->args_size + arg_size) < GEARMAND_ARGS_BUFFER_SIZE)
- {
- packet->args= packet->args_buffer;
- }
- else
- {
- gearmand_log_debug(GEARMAN_DEFAULT_LOG_PARAM, "resizing packet buffer");
- if (packet->args == packet->args_buffer)
- {
- packet->args= (char *)realloc(NULL, packet->args_size + arg_size);
- memcpy(packet->args, packet->args_buffer, packet->args_size);
- }
- else
- {
- char *new_args= (char *)realloc(packet->args, packet->args_size + arg_size);
- if (new_args == NULL)
- {
- return gearmand_perror(errno, "realloc");
- }
- packet->args= new_args;
- }
- }
- memcpy(packet->args + packet->args_size, arg, arg_size);
- packet->args_size+= arg_size;
- packet->arg_size[packet->argc]= arg_size;
- packet->argc++;
- size_t offset;
- if (packet->magic == GEARMAN_MAGIC_TEXT)
- {
- offset= 0;
- }
- else
- {
- offset= GEARMAND_PACKET_HEADER_SIZE;
- }
- for (uint8_t x= 0; x < packet->argc; ++x)
- {
- packet->arg[x]= packet->args + offset;
- offset+= packet->arg_size[x];
- }
- return GEARMAND_SUCCESS;
- }
- /** @} */
- /*
- * Public Definitions
- */
- void gearmand_packet_st::reset(enum gearman_magic_t magic_, gearman_command_t command_)
- {
- options.complete= false;
- options.free_data= false;
- magic= magic_;
- command= command_;
- argc= 0;
- args_size= 0;
- data_size= 0;
- args= NULL;
- data= NULL;
- }
- gearmand_error_t gearmand_packet_create(gearmand_packet_st *packet,
- const void *arg, size_t arg_size)
- {
- return packet_create_arg(packet, arg, arg_size);
- }
- void gearmand_packet_free(gearmand_packet_st *packet)
- {
- if (packet->args != packet->args_buffer && packet->args != NULL)
- {
- free(packet->args);
- packet->args= NULL;
- }
- if (packet->options.free_data && packet->data != NULL)
- {
- free((void *)packet->data); //@todo fix the need for the casting.
- packet->data= NULL;
- }
- }
- gearmand_error_t gearmand_packet_pack_header(gearmand_packet_st *packet)
- {
- if (packet->magic == GEARMAN_MAGIC_TEXT)
- {
- packet->options.complete= true;
- return GEARMAND_SUCCESS;
- }
- if (packet->args_size == 0)
- {
- packet->args= packet->args_buffer;
- packet->args_size= GEARMAND_PACKET_HEADER_SIZE;
- }
- switch (packet->magic)
- {
- case GEARMAN_MAGIC_TEXT:
- break;
- case GEARMAN_MAGIC_REQUEST:
- memcpy(packet->args, "\0REQ", 4);
- break;
- case GEARMAN_MAGIC_RESPONSE:
- memcpy(packet->args, "\0RES", 4);
- break;
- default:
- gearmand_error("invalid magic value");
- return GEARMAND_INVALID_MAGIC;
- }
- if (packet->command == GEARMAN_COMMAND_TEXT ||
- packet->command >= GEARMAN_COMMAND_MAX)
- {
- gearmand_error("invalid command value");
- return GEARMAND_INVALID_COMMAND;
- }
- uint32_t tmp= packet->command;
- tmp= htonl(tmp);
- memcpy(packet->args + 4, &tmp, 4);
- uint64_t length_64= packet->args_size + packet->data_size - GEARMAND_PACKET_HEADER_SIZE;
- // Check for overflow on 32bit(portable?).
- if (length_64 >= UINT32_MAX || length_64 < packet->data_size)
- {
- gearmand_error("data size too too long");
- return GEARMAND_ARGUMENT_TOO_LARGE;
- }
- tmp= (uint32_t)length_64;
- tmp= htonl(tmp);
- memcpy(packet->args + 8, &tmp, 4);
- packet->options.complete= true;
- return GEARMAND_SUCCESS;
- }
- #pragma GCC diagnostic pop
|