mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
f408a42896
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
459 lines
11 KiB
C
459 lines
11 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
* Samba internal messaging functions
|
|
* Copyright (C) 2013 by Volker Lendecke
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include "lib/util/data_blob.h"
|
|
#include "lib/util/debug.h"
|
|
#include "lib/unix_msg/unix_msg.h"
|
|
#include "system/filesys.h"
|
|
#include "messages.h"
|
|
#include "lib/param/param.h"
|
|
#include "poll_funcs/poll_funcs_tevent.h"
|
|
#include "unix_msg/unix_msg.h"
|
|
#include "librpc/gen_ndr/messaging.h"
|
|
|
|
struct messaging_dgm_context {
|
|
struct server_id pid;
|
|
struct poll_funcs *msg_callbacks;
|
|
void *tevent_handle;
|
|
struct unix_msg_ctx *dgm_ctx;
|
|
char *cache_dir;
|
|
int lockfile_fd;
|
|
|
|
void (*recv_cb)(int msg_type,
|
|
struct server_id src, struct server_id dst,
|
|
const uint8_t *msg, size_t msg_len,
|
|
void *private_data);
|
|
void *recv_cb_private_data;
|
|
};
|
|
|
|
struct messaging_dgm_hdr {
|
|
uint32_t msg_version;
|
|
enum messaging_type msg_type;
|
|
struct server_id dst;
|
|
struct server_id src;
|
|
};
|
|
|
|
static void messaging_dgm_recv(struct unix_msg_ctx *ctx,
|
|
uint8_t *msg, size_t msg_len,
|
|
void *private_data);
|
|
|
|
static int messaging_dgm_context_destructor(struct messaging_dgm_context *c);
|
|
|
|
static int messaging_dgm_lockfile_create(TALLOC_CTX *tmp_ctx,
|
|
const char *cache_dir, pid_t pid,
|
|
int *plockfile_fd, uint64_t unique)
|
|
{
|
|
fstring buf;
|
|
char *dir;
|
|
char *lockfile_name;
|
|
int lockfile_fd;
|
|
struct flock lck = {};
|
|
int unique_len, ret;
|
|
ssize_t written;
|
|
bool ok;
|
|
|
|
dir = talloc_asprintf(tmp_ctx, "%s/lck", cache_dir);
|
|
if (dir == NULL) {
|
|
return ENOMEM;
|
|
}
|
|
|
|
ok = directory_create_or_exist_strict(dir, sec_initial_uid(), 0755);
|
|
if (!ok) {
|
|
ret = errno;
|
|
DEBUG(1, ("%s: Could not create lock directory: %s\n",
|
|
__func__, strerror(ret)));
|
|
TALLOC_FREE(dir);
|
|
return ret;
|
|
}
|
|
|
|
lockfile_name = talloc_asprintf(tmp_ctx, "%s/%u", dir,
|
|
(unsigned)pid);
|
|
TALLOC_FREE(dir);
|
|
if (lockfile_name == NULL) {
|
|
DEBUG(1, ("%s: talloc_asprintf failed\n", __func__));
|
|
return ENOMEM;
|
|
}
|
|
|
|
/* no O_EXCL, existence check is via the fcntl lock */
|
|
|
|
lockfile_fd = open(lockfile_name, O_NONBLOCK|O_CREAT|O_WRONLY, 0644);
|
|
if (lockfile_fd == -1) {
|
|
ret = errno;
|
|
DEBUG(1, ("%s: open failed: %s\n", __func__, strerror(errno)));
|
|
goto fail_free;
|
|
}
|
|
|
|
lck.l_type = F_WRLCK;
|
|
lck.l_whence = SEEK_SET;
|
|
lck.l_start = 0;
|
|
lck.l_len = 0;
|
|
|
|
ret = fcntl(lockfile_fd, F_SETLK, &lck);
|
|
if (ret == -1) {
|
|
ret = errno;
|
|
DEBUG(1, ("%s: fcntl failed: %s\n", __func__, strerror(ret)));
|
|
goto fail_close;
|
|
}
|
|
|
|
unique_len = snprintf(buf, sizeof(buf), "%"PRIu64, unique);
|
|
|
|
/* shorten a potentially preexisting file */
|
|
|
|
ret = ftruncate(lockfile_fd, unique_len);
|
|
if (ret == -1) {
|
|
ret = errno;
|
|
DEBUG(1, ("%s: ftruncate failed: %s\n", __func__,
|
|
strerror(ret)));
|
|
goto fail_unlink;
|
|
}
|
|
|
|
written = write(lockfile_fd, buf, unique_len);
|
|
if (written != unique_len) {
|
|
ret = errno;
|
|
DEBUG(1, ("%s: write failed: %s\n", __func__, strerror(ret)));
|
|
goto fail_unlink;
|
|
}
|
|
|
|
TALLOC_FREE(lockfile_name);
|
|
*plockfile_fd = lockfile_fd;
|
|
return 0;
|
|
|
|
fail_unlink:
|
|
unlink(lockfile_name);
|
|
fail_close:
|
|
close(lockfile_fd);
|
|
fail_free:
|
|
TALLOC_FREE(lockfile_name);
|
|
return ret;
|
|
}
|
|
|
|
static int messaging_dgm_lockfile_remove(TALLOC_CTX *tmp_ctx,
|
|
const char *cache_dir, pid_t pid)
|
|
{
|
|
char *lockfile_name;
|
|
int ret;
|
|
|
|
lockfile_name = talloc_asprintf(
|
|
tmp_ctx, "%s/lck/%u", cache_dir, (unsigned)pid);
|
|
if (lockfile_name == NULL) {
|
|
return ENOMEM;
|
|
}
|
|
|
|
ret = unlink(lockfile_name);
|
|
if (ret == -1) {
|
|
ret = errno;
|
|
DEBUG(10, ("%s: unlink(%s) failed: %s\n", __func__,
|
|
lockfile_name, strerror(ret)));
|
|
}
|
|
|
|
TALLOC_FREE(lockfile_name);
|
|
return ret;
|
|
}
|
|
|
|
int messaging_dgm_init(TALLOC_CTX *mem_ctx,
|
|
struct tevent_context *ev,
|
|
struct server_id pid,
|
|
const char *cache_dir,
|
|
void (*recv_cb)(int msg_type,
|
|
struct server_id src,
|
|
struct server_id dst,
|
|
const uint8_t *msg,
|
|
size_t msg_len,
|
|
void *private_data),
|
|
void *recv_cb_private_data,
|
|
struct messaging_dgm_context **pctx)
|
|
{
|
|
struct messaging_dgm_context *ctx;
|
|
int ret;
|
|
bool ok;
|
|
char *socket_dir;
|
|
struct sockaddr_un socket_address;
|
|
size_t sockname_len;
|
|
uint64_t cookie;
|
|
|
|
ctx = talloc_zero(mem_ctx, struct messaging_dgm_context);
|
|
if (ctx == NULL) {
|
|
goto fail_nomem;
|
|
}
|
|
ctx->pid = pid;
|
|
ctx->recv_cb = recv_cb;
|
|
ctx->recv_cb_private_data = recv_cb_private_data;
|
|
|
|
ctx->cache_dir = talloc_strdup(ctx, cache_dir);
|
|
if (ctx->cache_dir == NULL) {
|
|
goto fail_nomem;
|
|
}
|
|
socket_dir = talloc_asprintf(ctx, "%s/msg", cache_dir);
|
|
if (socket_dir == NULL) {
|
|
goto fail_nomem;
|
|
}
|
|
|
|
socket_address = (struct sockaddr_un) { .sun_family = AF_UNIX };
|
|
sockname_len = snprintf(socket_address.sun_path,
|
|
sizeof(socket_address.sun_path),
|
|
"%s/%u", socket_dir, (unsigned)pid.pid);
|
|
if (sockname_len >= sizeof(socket_address.sun_path)) {
|
|
TALLOC_FREE(ctx);
|
|
return ENAMETOOLONG;
|
|
}
|
|
|
|
ret = messaging_dgm_lockfile_create(ctx, cache_dir, pid.pid,
|
|
&ctx->lockfile_fd, pid.unique_id);
|
|
if (ret != 0) {
|
|
DEBUG(1, ("%s: messaging_dgm_create_lockfile failed: %s\n",
|
|
__func__, strerror(ret)));
|
|
TALLOC_FREE(ctx);
|
|
return ret;
|
|
}
|
|
|
|
ctx->msg_callbacks = poll_funcs_init_tevent(ctx);
|
|
if (ctx->msg_callbacks == NULL) {
|
|
goto fail_nomem;
|
|
}
|
|
|
|
ctx->tevent_handle = poll_funcs_tevent_register(
|
|
ctx, ctx->msg_callbacks, ev);
|
|
if (ctx->tevent_handle == NULL) {
|
|
goto fail_nomem;
|
|
}
|
|
|
|
ok = directory_create_or_exist_strict(socket_dir, sec_initial_uid(),
|
|
0700);
|
|
if (!ok) {
|
|
DEBUG(1, ("Could not create socket directory\n"));
|
|
TALLOC_FREE(ctx);
|
|
return EACCES;
|
|
}
|
|
TALLOC_FREE(socket_dir);
|
|
|
|
unlink(socket_address.sun_path);
|
|
|
|
generate_random_buffer((uint8_t *)&cookie, sizeof(cookie));
|
|
|
|
ret = unix_msg_init(&socket_address, ctx->msg_callbacks, 1024, cookie,
|
|
messaging_dgm_recv, ctx, &ctx->dgm_ctx);
|
|
if (ret != 0) {
|
|
DEBUG(1, ("unix_msg_init failed: %s\n", strerror(ret)));
|
|
TALLOC_FREE(ctx);
|
|
return ret;
|
|
}
|
|
talloc_set_destructor(ctx, messaging_dgm_context_destructor);
|
|
|
|
*pctx = ctx;
|
|
return 0;
|
|
|
|
fail_nomem:
|
|
TALLOC_FREE(ctx);
|
|
return ENOMEM;
|
|
}
|
|
|
|
static int messaging_dgm_context_destructor(struct messaging_dgm_context *c)
|
|
{
|
|
struct server_id pid = c->pid;
|
|
|
|
/*
|
|
* First delete the socket to avoid races. The lockfile is the
|
|
* indicator that we're still around.
|
|
*/
|
|
unix_msg_free(c->dgm_ctx);
|
|
|
|
if (getpid() == pid.pid) {
|
|
(void)messaging_dgm_lockfile_remove(c, c->cache_dir, pid.pid);
|
|
}
|
|
close(c->lockfile_fd);
|
|
return 0;
|
|
}
|
|
|
|
int messaging_dgm_send(struct messaging_dgm_context *ctx,
|
|
struct server_id src, struct server_id pid,
|
|
int msg_type, const struct iovec *iov, int iovlen)
|
|
{
|
|
struct messaging_dgm_hdr hdr;
|
|
struct iovec iov2[iovlen + 1];
|
|
struct server_id_buf idbuf;
|
|
struct sockaddr_un dst;
|
|
ssize_t dst_pathlen;
|
|
int ret;
|
|
|
|
dst = (struct sockaddr_un) { .sun_family = AF_UNIX };
|
|
|
|
dst_pathlen = snprintf(dst.sun_path, sizeof(dst.sun_path),
|
|
"%s/msg/%u", ctx->cache_dir, (unsigned)pid.pid);
|
|
if (dst_pathlen >= sizeof(dst.sun_path)) {
|
|
return ENAMETOOLONG;
|
|
}
|
|
|
|
hdr.msg_version = MESSAGE_VERSION;
|
|
hdr.msg_type = msg_type & MSG_TYPE_MASK;
|
|
hdr.dst = pid;
|
|
hdr.src = src;
|
|
|
|
DEBUG(10, ("%s: Sending message 0x%x to %s\n", __func__,
|
|
(unsigned)hdr.msg_type,
|
|
server_id_str_buf(pid, &idbuf)));
|
|
|
|
iov2[0].iov_base = &hdr;
|
|
iov2[0].iov_len = sizeof(hdr);
|
|
memcpy(iov2+1, iov, iovlen*sizeof(struct iovec));
|
|
|
|
ret = unix_msg_send(ctx->dgm_ctx, &dst, iov2, iovlen + 1);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void messaging_dgm_recv(struct unix_msg_ctx *ctx,
|
|
uint8_t *msg, size_t msg_len,
|
|
void *private_data)
|
|
{
|
|
struct messaging_dgm_context *dgm_ctx = talloc_get_type_abort(
|
|
private_data, struct messaging_dgm_context);
|
|
struct messaging_dgm_hdr *hdr;
|
|
struct server_id_buf idbuf;
|
|
|
|
if (msg_len < sizeof(*hdr)) {
|
|
DEBUG(1, ("message too short: %u\n", (unsigned)msg_len));
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* unix_msg guarantees alignment, so we can cast here
|
|
*/
|
|
hdr = (struct messaging_dgm_hdr *)msg;
|
|
|
|
DEBUG(10, ("%s: Received message 0x%x len %u from %s\n", __func__,
|
|
(unsigned)hdr->msg_type, (unsigned)(msg_len - sizeof(*hdr)),
|
|
server_id_str_buf(hdr->src, &idbuf)));
|
|
|
|
dgm_ctx->recv_cb(hdr->msg_type, hdr->src, hdr->dst,
|
|
msg + sizeof(*hdr), msg_len - sizeof(*hdr),
|
|
dgm_ctx->recv_cb_private_data);
|
|
}
|
|
|
|
int messaging_dgm_cleanup(struct messaging_dgm_context *ctx, pid_t pid)
|
|
{
|
|
char *lockfile_name, *socket_name;
|
|
int fd, ret;
|
|
struct flock lck = {};
|
|
|
|
lockfile_name = talloc_asprintf(talloc_tos(), "%s/lck/%u",
|
|
ctx->cache_dir, (unsigned)pid);
|
|
if (lockfile_name == NULL) {
|
|
return ENOMEM;
|
|
}
|
|
socket_name = talloc_asprintf(lockfile_name, "%s/msg/%u",
|
|
ctx->cache_dir, (unsigned)pid);
|
|
if (socket_name == NULL) {
|
|
TALLOC_FREE(lockfile_name);
|
|
return ENOMEM;
|
|
}
|
|
|
|
fd = open(lockfile_name, O_NONBLOCK|O_WRONLY, 0);
|
|
if (fd == -1) {
|
|
ret = errno;
|
|
DEBUG(10, ("%s: open(%s) failed: %s\n", __func__,
|
|
lockfile_name, strerror(ret)));
|
|
TALLOC_FREE(lockfile_name);
|
|
return ret;
|
|
}
|
|
|
|
lck.l_type = F_WRLCK;
|
|
lck.l_whence = SEEK_SET;
|
|
lck.l_start = 0;
|
|
lck.l_len = 0;
|
|
|
|
ret = fcntl(fd, F_SETLK, &lck);
|
|
if (ret != 0) {
|
|
ret = errno;
|
|
DEBUG(10, ("%s: Could not get lock: %s\n", __func__,
|
|
strerror(ret)));
|
|
TALLOC_FREE(lockfile_name);
|
|
close(fd);
|
|
return ret;
|
|
}
|
|
|
|
(void)unlink(socket_name);
|
|
(void)unlink(lockfile_name);
|
|
(void)close(fd);
|
|
|
|
TALLOC_FREE(lockfile_name);
|
|
return 0;
|
|
}
|
|
|
|
int messaging_dgm_wipe(struct messaging_dgm_context *ctx)
|
|
{
|
|
char *msgdir_name;
|
|
DIR *msgdir;
|
|
struct dirent *dp;
|
|
pid_t our_pid = getpid();
|
|
int ret;
|
|
|
|
/*
|
|
* We scan the socket directory and not the lock directory. Otherwise
|
|
* we would race against messaging_dgm_lockfile_create's open(O_CREAT)
|
|
* and fcntl(SETLK).
|
|
*/
|
|
|
|
msgdir_name = talloc_asprintf(talloc_tos(), "%s/msg", ctx->cache_dir);
|
|
if (msgdir_name == NULL) {
|
|
return ENOMEM;
|
|
}
|
|
|
|
msgdir = opendir(msgdir_name);
|
|
if (msgdir == NULL) {
|
|
ret = errno;
|
|
TALLOC_FREE(msgdir_name);
|
|
return ret;
|
|
}
|
|
TALLOC_FREE(msgdir_name);
|
|
|
|
while ((dp = readdir(msgdir)) != NULL) {
|
|
unsigned long pid;
|
|
|
|
pid = strtoul(dp->d_name, NULL, 10);
|
|
if (pid == 0) {
|
|
/*
|
|
* . and .. and other malformed entries
|
|
*/
|
|
continue;
|
|
}
|
|
if (pid == our_pid) {
|
|
/*
|
|
* fcntl(F_GETLK) will succeed for ourselves, we hold
|
|
* that lock ourselves.
|
|
*/
|
|
continue;
|
|
}
|
|
|
|
ret = messaging_dgm_cleanup(ctx, pid);
|
|
DEBUG(10, ("messaging_dgm_cleanup(%lu) returned %s\n",
|
|
pid, ret ? strerror(ret) : "ok"));
|
|
}
|
|
closedir(msgdir);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void *messaging_dgm_register_tevent_context(TALLOC_CTX *mem_ctx,
|
|
struct messaging_dgm_context *ctx,
|
|
struct tevent_context *ev)
|
|
{
|
|
return poll_funcs_tevent_register(mem_ctx, ctx->msg_callbacks, ev);
|
|
}
|