X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=ltt-sessiond%2Fchannel.c;fp=ltt-sessiond%2Fchannel.c;h=ab9bf6c6d4fcbafbbe48d085b0143de0949e76f4;hp=0000000000000000000000000000000000000000;hb=54d01ffb43587b221dc50ec42b6070fad89bd255;hpb=e848fc768a950acc1b823fcb139057a4fac1442a diff --git a/ltt-sessiond/channel.c b/ltt-sessiond/channel.c new file mode 100644 index 000000000..ab9bf6c6d --- /dev/null +++ b/ltt-sessiond/channel.c @@ -0,0 +1,156 @@ +/* + * Copyright (C) 2011 - David Goulet + * + * 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; only version 2 of the License. + * + * 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, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include + +#include +#include +#include + +#include "channel.h" +#include "kernel-ctl.h" +#include "utils.h" + +/* + * Return allocated channel attributes. + */ +static struct lttng_channel *init_default_attr(int dom, char *name) +{ + struct lttng_channel *chan; + + chan = zmalloc(sizeof(struct lttng_channel)); + if (chan == NULL) { + perror("malloc channel init"); + goto error_alloc; + } + + if (snprintf(chan->name, sizeof(chan->name), "%s", name) < 0) { + perror("snprintf channel name"); + goto error; + } + + chan->attr.overwrite = DEFAULT_CHANNEL_OVERWRITE; + chan->attr.switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER; + chan->attr.read_timer_interval = DEFAULT_CHANNEL_READ_TIMER; + + switch (dom) { + case LTTNG_DOMAIN_KERNEL: + chan->attr.subbuf_size = DEFAULT_KERNEL_CHANNEL_SUBBUF_SIZE; + chan->attr.num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM; + chan->attr.output = DEFAULT_KERNEL_CHANNEL_OUTPUT; + break; + /* TODO: add UST */ + default: + goto error; /* Not implemented */ + } + + return chan; + +error: + free(chan); +error_alloc: + return NULL; +} + +/* + * Disable kernel channel of the kernel session. + */ +int channel_kernel_disable(struct ltt_kernel_session *ksession, + char *channel_name) +{ + int ret; + struct ltt_kernel_channel *kchan; + + kchan = trace_kernel_get_channel_by_name(channel_name, ksession); + if (kchan == NULL) { + ret = LTTCOMM_KERN_CHAN_NOT_FOUND; + goto error; + } else if (kchan->enabled == 1) { + ret = kernel_disable_channel(kchan); + if (ret < 0) { + if (ret != EEXIST) { + ret = LTTCOMM_KERN_CHAN_DISABLE_FAIL; + } + goto error; + } + } + + ret = LTTCOMM_OK; + +error: + return ret; +} + +/* + * Enable kernel channel of the kernel session. + */ +int channel_kernel_enable(struct ltt_kernel_session *ksession, + struct ltt_kernel_channel *kchan) +{ + int ret; + + if (kchan->enabled == 0) { + ret = kernel_enable_channel(kchan); + if (ret < 0) { + ret = LTTCOMM_KERN_CHAN_ENABLE_FAIL; + goto error; + } + } + + ret = LTTCOMM_OK; + +error: + return ret; +} + +/* + * Create kernel channel of the kernel session and notify kernel thread. + */ +int channel_kernel_create(struct ltt_kernel_session *ksession, + char *channel_name, struct lttng_channel *chan, int kernel_pipe) +{ + int ret; + struct lttng_channel *attr = chan; + + /* Creating channel attributes if needed */ + if (attr == NULL) { + attr = init_default_attr(LTTNG_DOMAIN_KERNEL, channel_name); + if (attr == NULL) { + ret = LTTCOMM_FATAL; + goto error; + } + } + + /* Channel not found, creating it */ + ret = kernel_create_channel(ksession, attr, ksession->trace_path); + if (ret < 0) { + ret = LTTCOMM_KERN_CHAN_FAIL; + goto error; + } + + /* Notify kernel thread that there is a new channel */ + ret = notify_thread_pipe(kernel_pipe); + if (ret < 0) { + ret = LTTCOMM_FATAL; + goto error; + } + + ret = LTTCOMM_OK; + +error: + return ret; +}