UST 2.0 support
[lttng-tools.git] / ltt-sessiond / ust-comm.c
CommitLineData
099e26bd
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
3bd1e081 19#include <config.h>
0177d773 20#include <stdlib.h>
099e26bd 21#include <lttngerr.h>
099e26bd
DG
22#include "ust-comm.h"
23
24/*
25 * Send msg containing a command to an UST application via sock and wait for
44d3bd01 26 * the reply. Caller must free() the reply structure sent back.
099e26bd 27 *
0177d773 28 * Return the replied structure or NULL.
099e26bd 29 */
0177d773
DG
30struct lttcomm_ust_reply *ustcomm_send_command(int sock,
31 struct lttcomm_ust_msg *msg)
099e26bd
DG
32{
33 ssize_t len;
0177d773
DG
34 struct lttcomm_ust_reply *reply;
35
36 /* Extra safety */
37 if (msg == NULL || sock < 0) {
38 goto error;
39 }
099e26bd 40
44d3bd01 41 DBG2("Sending UST command %d to sock %d", msg->cmd, sock);
099e26bd
DG
42
43 /* Send UST msg */
44 len = lttcomm_send_unix_sock(sock, msg, sizeof(*msg));
45 if (len < 0) {
46 goto error;
47 }
48
0177d773
DG
49 reply = malloc(sizeof(struct lttcomm_ust_reply));
50 if (reply == NULL) {
51 perror("malloc ust reply");
099e26bd
DG
52 goto error;
53 }
54
44d3bd01 55 DBG2("Receiving UST reply on sock %d", sock);
0177d773
DG
56
57 /* Get UST reply */
58 len = lttcomm_recv_unix_sock(sock, reply, sizeof(*reply));
59 if (len < 0 || len < sizeof(*reply)) {
099e26bd
DG
60 goto error;
61 }
62
0177d773 63 return reply;
099e26bd
DG
64
65error:
0177d773 66 return NULL;
099e26bd 67}
This page took 0.025191 seconds and 4 git commands to generate.