diff options
author | Christof Schmitt <cs@samba.org> | 2014-06-27 13:05:59 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-07-09 00:56:50 +0200 |
commit | f01af728fedc86a5802a2ba30545d62fc6d610d3 (patch) | |
tree | cb70a530dbf530eb94a6a6f7a5b627a269870bf2 /source3/smbd/process.c | |
parent | d3417b253e67aa476694d9c763fc3d8ee8f4fd90 (diff) | |
download | samba-f01af728fedc86a5802a2ba30545d62fc6d610d3.tar.gz samba-f01af728fedc86a5802a2ba30545d62fc6d610d3.tar.xz samba-f01af728fedc86a5802a2ba30545d62fc6d610d3.zip |
smbd: Use mutex instead of fcntl lock for echohandler coordination
This is based on a patch from Volker. When the system supports roboust
mutexes, they will be used for the coordiations between worker and
echohandler process. This avoids another aspect of the fcntl scalibility
issue when handling many client connections. When mutexes are not
available, the code falls back to the fcntl lock.
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed Jul 9 00:56:50 CEST 2014 on sn-devel-104
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r-- | source3/smbd/process.c | 192 |
1 files changed, 161 insertions, 31 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index b1d522dbc3..dd931e0225 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -40,6 +40,7 @@ #include "../libcli/security/security_token.h" #include "lib/id_cache.h" #include "serverid.h" +#include "system/threads.h" /* Internal message queue for deferred opens. */ struct pending_message_list { @@ -61,11 +62,33 @@ static struct pending_message_list *get_deferred_open_message_smb( struct smbd_server_connection *sconn, uint64_t mid); static bool smb_splice_chain(uint8_t **poutbuf, const uint8_t *andx_buf); -static bool smbd_lock_socket_internal(struct smbd_server_connection *sconn) +void smbd_echo_init(struct smbd_server_connection *sconn) { - bool ok; + sconn->smb1.echo_handler.trusted_fd = -1; + sconn->smb1.echo_handler.socket_lock_fd = -1; +#ifdef HAVE_ROBUST_MUTEXES + sconn->smb1.echo_handler.socket_mutex = NULL; +#endif +} - if (sconn->smb1.echo_handler.socket_lock_fd == -1) { +static bool smbd_echo_active(struct smbd_server_connection *sconn) +{ + if (sconn->smb1.echo_handler.socket_lock_fd != -1) { + return true; + } + +#ifdef HAVE_ROBUST_MUTEXES + if (sconn->smb1.echo_handler.socket_mutex != NULL) { + return true; + } +#endif + + return false; +} + +static bool smbd_lock_socket_internal(struct smbd_server_connection *sconn) +{ + if (!smbd_echo_active(sconn)) { return true; } @@ -77,15 +100,38 @@ static bool smbd_lock_socket_internal(struct smbd_server_connection *sconn) DEBUG(10,("pid[%d] wait for socket lock\n", (int)getpid())); - do { - ok = fcntl_lock( - sconn->smb1.echo_handler.socket_lock_fd, - F_SETLKW, 0, 0, F_WRLCK); - } while (!ok && (errno == EINTR)); +#ifdef HAVE_ROBUST_MUTEXES + if (sconn->smb1.echo_handler.socket_mutex != NULL) { + int ret = EINTR; - if (!ok) { - DEBUG(1, ("fcntl_lock failed: %s\n", strerror(errno))); - return false; + while (ret == EINTR) { + ret = pthread_mutex_lock( + sconn->smb1.echo_handler.socket_mutex); + if (ret == 0) { + break; + } + } + if (ret != 0) { + DEBUG(1, ("pthread_mutex_lock failed: %s\n", + strerror(ret))); + return false; + } + } +#endif + + if (sconn->smb1.echo_handler.socket_lock_fd != -1) { + bool ok; + + do { + ok = fcntl_lock( + sconn->smb1.echo_handler.socket_lock_fd, + F_SETLKW, 0, 0, F_WRLCK); + } while (!ok && (errno == EINTR)); + + if (!ok) { + DEBUG(1, ("fcntl_lock failed: %s\n", strerror(errno))); + return false; + } } DEBUG(10,("pid[%d] got socket lock\n", (int)getpid())); @@ -102,9 +148,7 @@ void smbd_lock_socket(struct smbd_server_connection *sconn) static bool smbd_unlock_socket_internal(struct smbd_server_connection *sconn) { - bool ok; - - if (sconn->smb1.echo_handler.socket_lock_fd == -1) { + if (!smbd_echo_active(sconn)) { return true; } @@ -114,15 +158,38 @@ static bool smbd_unlock_socket_internal(struct smbd_server_connection *sconn) return true; } - do { - ok = fcntl_lock( - sconn->smb1.echo_handler.socket_lock_fd, - F_SETLKW, 0, 0, F_UNLCK); - } while (!ok && (errno == EINTR)); +#ifdef HAVE_ROBUST_MUTEXES + if (sconn->smb1.echo_handler.socket_mutex != NULL) { + int ret = EINTR; - if (!ok) { - DEBUG(1, ("fcntl_lock failed: %s\n", strerror(errno))); - return false; + while (ret == EINTR) { + ret = pthread_mutex_unlock( + sconn->smb1.echo_handler.socket_mutex); + if (ret == 0) { + break; + } + } + if (ret != 0) { + DEBUG(1, ("pthread_mutex_unlock failed: %s\n", + strerror(ret))); + return false; + } + } +#endif + + if (sconn->smb1.echo_handler.socket_lock_fd != -1) { + bool ok; + + do { + ok = fcntl_lock( + sconn->smb1.echo_handler.socket_lock_fd, + F_SETLKW, 0, 0, F_UNLCK); + } while (!ok && (errno == EINTR)); + + if (!ok) { + DEBUG(1, ("fcntl_lock failed: %s\n", strerror(errno))); + return false; + } } DEBUG(10,("pid[%d] unlocked socket\n", (int)getpid())); @@ -3135,16 +3202,74 @@ bool fork_echo_handler(struct smbd_server_connection *sconn) int listener_pipe[2]; int res; pid_t child; + bool use_mutex = false; res = pipe(listener_pipe); if (res == -1) { DEBUG(1, ("pipe() failed: %s\n", strerror(errno))); return false; } - sconn->smb1.echo_handler.socket_lock_fd = create_unlink_tmp(lp_lock_directory()); - if (sconn->smb1.echo_handler.socket_lock_fd == -1) { - DEBUG(1, ("Could not create lock fd: %s\n", strerror(errno))); - goto fail; + +#ifdef HAVE_ROBUST_MUTEXES + use_mutex = tdb_runtime_check_for_robust_mutexes(); + + if (use_mutex) { + pthread_mutexattr_t a; + + sconn->smb1.echo_handler.socket_mutex = + anonymous_shared_allocate(sizeof(pthread_mutex_t)); + if (sconn->smb1.echo_handler.socket_mutex == NULL) { + DEBUG(1, ("Could not create mutex shared memory: %s\n", + strerror(errno))); + goto fail; + } + + res = pthread_mutexattr_init(&a); + if (res != 0) { + DEBUG(1, ("pthread_mutexattr_init failed: %s\n", + strerror(res))); + goto fail; + } + res = pthread_mutexattr_settype(&a, PTHREAD_MUTEX_ERRORCHECK); + if (res != 0) { + DEBUG(1, ("pthread_mutexattr_settype failed: %s\n", + strerror(res))); + pthread_mutexattr_destroy(&a); + goto fail; + } + res = pthread_mutexattr_setpshared(&a, PTHREAD_PROCESS_SHARED); + if (res != 0) { + DEBUG(1, ("pthread_mutexattr_setpshared failed: %s\n", + strerror(res))); + pthread_mutexattr_destroy(&a); + goto fail; + } + res = pthread_mutexattr_setrobust(&a, PTHREAD_MUTEX_ROBUST); + if (res != 0) { + DEBUG(1, ("pthread_mutexattr_setrobust failed: " + "%s\n", strerror(res))); + pthread_mutexattr_destroy(&a); + goto fail; + } + res = pthread_mutex_init(sconn->smb1.echo_handler.socket_mutex, + &a); + pthread_mutexattr_destroy(&a); + if (res != 0) { + DEBUG(1, ("pthread_mutex_init failed: %s\n", + strerror(res))); + goto fail; + } + } +#endif + + if (!use_mutex) { + sconn->smb1.echo_handler.socket_lock_fd = + create_unlink_tmp(lp_lock_directory()); + if (sconn->smb1.echo_handler.socket_lock_fd == -1) { + DEBUG(1, ("Could not create lock fd: %s\n", + strerror(errno))); + goto fail; + } } child = fork(); @@ -3195,12 +3320,18 @@ fail: if (listener_pipe[1] != -1) { close(listener_pipe[1]); } - sconn->smb1.echo_handler.trusted_fd = -1; if (sconn->smb1.echo_handler.socket_lock_fd != -1) { close(sconn->smb1.echo_handler.socket_lock_fd); } - sconn->smb1.echo_handler.trusted_fd = -1; - sconn->smb1.echo_handler.socket_lock_fd = -1; + +#ifdef HAVE_ROBUST_MUTEXES + if (sconn->smb1.echo_handler.socket_mutex != NULL) { + pthread_mutex_destroy(sconn->smb1.echo_handler.socket_mutex); + anonymous_shared_free(sconn->smb1.echo_handler.socket_mutex); + } +#endif + smbd_echo_init(sconn); + return false; } @@ -3417,8 +3548,7 @@ void smbd_process(struct tevent_context *ev_ctx, sconn->ev_ctx = ev_ctx; sconn->msg_ctx = msg_ctx; sconn->sock = sock_fd; - sconn->smb1.echo_handler.trusted_fd = -1; - sconn->smb1.echo_handler.socket_lock_fd = -1; + smbd_echo_init(sconn); if (!interactive) { smbd_setup_sig_term_handler(sconn); |