Use non-blocking recvmsg() for data/ctrl connections of lttng-relayd
[lttng-tools.git] / src / bin / lttng-relayd / cmd-2-1.c
CommitLineData
0f907de1
JD
1/*
2 * Copyright (C) 2013 - Julien Desfossez <jdesfossez@efficios.com>
3 * David Goulet <dgoulet@efficios.com>
7591bab1 4 * 2015 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
0f907de1
JD
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License, version 2 only, as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
6c1c0768 20#define _LGPL_SOURCE
0f907de1 21#include <assert.h>
0f907de1
JD
22
23#include <common/common.h>
24#include <common/sessiond-comm/relayd.h>
246777db
MD
25#include <common/compat/string.h>
26#include <lttng/constant.h>
0f907de1 27
0f907de1
JD
28#include "cmd-2-1.h"
29#include "utils.h"
30
7591bab1
MD
31/*
32 * cmd_recv_stream_2_1 allocates path_name and channel_name.
33 */
5312a3ed 34int cmd_recv_stream_2_1(const struct lttng_buffer_view *payload,
7591bab1 35 char **ret_path_name, char **ret_channel_name)
0f907de1
JD
36{
37 int ret;
38 struct lttcomm_relayd_add_stream stream_info;
7591bab1
MD
39 char *path_name = NULL;
40 char *channel_name = NULL;
246777db 41 size_t len;
0f907de1 42
5312a3ed
JG
43 if (payload->size < sizeof(stream_info)) {
44 ERR("Unexpected payload size in \"cmd_recv_stream_2_1\": expected >= %zu bytes, got %zu bytes",
45 sizeof(stream_info), payload->size);
46 ret = -1;
0f907de1
JD
47 goto error;
48 }
5312a3ed 49 memcpy(&stream_info, payload->data, sizeof(stream_info));
0f907de1 50
246777db
MD
51 len = lttng_strnlen(stream_info.pathname, sizeof(stream_info.pathname));
52 /* Ensure that NULL-terminated and fits in local filename length. */
53 if (len == sizeof(stream_info.pathname) || len >= LTTNG_NAME_MAX) {
54 ret = -ENAMETOOLONG;
55 ERR("Path name too long");
56 goto error;
57 }
7591bab1
MD
58 path_name = create_output_path(stream_info.pathname);
59 if (!path_name) {
0f907de1
JD
60 PERROR("Path name allocation");
61 ret = -ENOMEM;
62 goto error;
63 }
246777db
MD
64 len = lttng_strnlen(stream_info.channel_name, sizeof(stream_info.channel_name));
65 if (len == sizeof(stream_info.channel_name) || len >= DEFAULT_STREAM_NAME_LEN) {
66 ret = -ENAMETOOLONG;
67 ERR("Channel name too long");
68 goto error;
69 }
7591bab1
MD
70 channel_name = strdup(stream_info.channel_name);
71 if (!channel_name) {
0f907de1 72 ret = -errno;
246777db 73 PERROR("Channel name allocation");
0f907de1
JD
74 goto error;
75 }
0f907de1 76
7591bab1
MD
77 *ret_path_name = path_name;
78 *ret_channel_name = channel_name;
79 return 0;
0f907de1 80error:
7591bab1
MD
81 free(path_name);
82 free(channel_name);
0f907de1
JD
83 return ret;
84}
This page took 0.039706 seconds and 4 git commands to generate.