{
int ret;
+ if (!data)
+ return -EINVAL;
+
if (data->shm_fd >= 0) {
ret = close(data->shm_fd);
if (ret < 0) {
struct lttng_ust_object_data *metadata_data;
int ret, err = 0;
+ if (!chops || !_metadata_data)
+ return -EINVAL;
+
metadata_data = malloc(sizeof(*metadata_data));
if (!metadata_data)
return -ENOMEM;
struct lttng_ust_object_data *channel_data;
int ret, err = 0;
+ if (!chops || !_channel_data)
+ return -EINVAL;
+
channel_data = malloc(sizeof(*channel_data));
if (!channel_data)
return -ENOMEM;
struct lttng_ust_object_data *stream_data;
int ret, fd, err = 0;
+ if (!channel_data || !_stream_data)
+ return -EINVAL;
+
stream_data = malloc(sizeof(*stream_data));
if (!stream_data)
return -ENOMEM;
struct lttng_ust_object_data *event_data;
int ret;
+ if (!channel_data || !_event_data)
+ return -EINVAL;
+
event_data = malloc(sizeof(*event_data));
if (!event_data)
return -ENOMEM;
struct lttng_ust_object_data *context_data;
int ret;
+ if (!obj_data || !_context_data)
+ return -EINVAL;
+
context_data = malloc(sizeof(*context_data));
if (!context_data)
return -ENOMEM;
struct ustcomm_ust_reply lur;
int ret;
+ if (!object)
+ return -EINVAL;
+
memset(&lum, 0, sizeof(lum));
lum.handle = object->handle;
lum.cmd = LTTNG_UST_ENABLE;
struct ustcomm_ust_reply lur;
int ret;
+ if (!object)
+ return -EINVAL;
+
memset(&lum, 0, sizeof(lum));
lum.handle = object->handle;
lum.cmd = LTTNG_UST_DISABLE;
struct ustcomm_ust_reply lur;
int ret;
+ if (!iter)
+ return -EINVAL;
+
memset(&lum, 0, sizeof(lum));
lum.handle = tp_list_handle;
lum.cmd = LTTNG_UST_TRACEPOINT_LIST_GET;
struct ustcomm_ust_reply lur;
int ret;
+ if (!v)
+ return -EINVAL;
+
memset(&lum, 0, sizeof(lum));
lum.handle = LTTNG_UST_ROOT_HANDLE;
lum.cmd = LTTNG_UST_TRACER_VERSION;
int ustctl_calibrate(int sock, struct lttng_ust_calibrate *calibrate)
{
+ if (!calibrate)
+ return -EINVAL;
+
return -ENOSYS;
}
struct ustcomm_ust_reply lur;
int ret;
+ if (!object)
+ return -EINVAL;
+
memset(&lum, 0, sizeof(lum));
lum.handle = object->handle;
lum.cmd = LTTNG_UST_FLUSH_BUFFER;
struct lttng_ust_lib_ring_buffer_config *config;
int ret;
+ if (!chan_data)
+ return NULL;
+
handle = channel_handle_create(chan_data->shm_fd,
chan_data->wait_fd,
chan_data->memory_map_size);
{
int ret;
+ if (!handle || !stream_data)
+ return -EINVAL;
+
if (!stream_data->handle)
return -ENOENT;
/* map stream */
{
struct channel *chan;
+ assert(handle);
chan = shmp(handle, handle->chan);
channel_destroy(chan, handle, 1);
}
struct lttng_ust_lib_ring_buffer *buf;
int ret;
+ if (!handle)
+ return NULL;
+
buf = channel_get_ring_buffer(&chan->backend.config,
chan, cpu, handle, &shm_fd, &wait_fd, &memory_map_size);
if (!buf)
void ustctl_close_stream_read(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ assert(handle && buf);
lib_ring_buffer_release_read(buf, handle, 1);
}
void *ustctl_get_mmap_base(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ if (!handle || !buf)
+ return NULL;
return shmp(handle, buf->backend.memory_map);
}
unsigned long mmap_buf_len;
struct channel *chan = handle->shadow_chan;
+ if (!handle || !buf || !len)
+ return -EINVAL;
+
if (chan->backend.config.output != RING_BUFFER_MMAP)
return -EINVAL;
mmap_buf_len = chan->backend.buf_size;
{
struct channel *chan = handle->shadow_chan;
+ if (!handle || !buf || !len)
+ return -EINVAL;
+
*len = chan->backend.subbuf_size;
return 0;
}
struct channel *chan = handle->shadow_chan;
unsigned long sb_bindex;
+ if (!handle || !buf || !off)
+ return -EINVAL;
+
if (chan->backend.config.output != RING_BUFFER_MMAP)
return -EINVAL;
sb_bindex = subbuffer_id_get_index(&chan->backend.config,
{
struct channel *chan = handle->shadow_chan;
+ if (!handle || !buf || !len)
+ return -EINVAL;
+
*len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
handle);
return 0;
{
struct channel *chan = handle->shadow_chan;
+ if (!handle || !buf || !len)
+ return -EINVAL;
+
*len = lib_ring_buffer_get_read_data_size(&chan->backend.config, buf,
handle);
*len = PAGE_ALIGN(*len);
int ustctl_get_next_subbuf(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ if (!handle || !buf)
+ return -EINVAL;
+
return lib_ring_buffer_get_next_subbuf(buf, handle);
}
int ustctl_put_next_subbuf(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ if (!handle || !buf)
+ return -EINVAL;
+
lib_ring_buffer_put_next_subbuf(buf, handle);
return 0;
}
int ustctl_snapshot(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ if (!handle || !buf)
+ return -EINVAL;
+
return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot,
&buf->prod_snapshot, handle);
}
int ustctl_snapshot_get_consumed(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
{
+ if (!handle || !buf || !pos)
+ return -EINVAL;
+
*pos = buf->cons_snapshot;
return 0;
}
int ustctl_snapshot_get_produced(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
{
+ if (!handle || !buf || !pos)
+ return -EINVAL;
+
*pos = buf->prod_snapshot;
return 0;
}
int ustctl_get_subbuf(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf, unsigned long *pos)
{
+ if (!handle || !buf || !pos)
+ return -EINVAL;
+
return lib_ring_buffer_get_subbuf(buf, *pos, handle);
}
int ustctl_put_subbuf(struct lttng_ust_shm_handle *handle,
struct lttng_ust_lib_ring_buffer *buf)
{
+ if (!handle || !buf)
+ return -EINVAL;
+
lib_ring_buffer_put_subbuf(buf, handle);
return 0;
}
struct lttng_ust_lib_ring_buffer *buf,
int producer_active)
{
+ assert(handle && buf);
lib_ring_buffer_switch_slow(buf,
producer_active ? SWITCH_ACTIVE : SWITCH_FLUSH,
handle);