Change malloc to zmalloc in lttng-sessiond code
[lttng-tools.git] / lttng-sessiond / ust-consumer.c
index 1e583839e4292c2befce109f7549dc76b5d51593..df569368ae04f2e8faafb1b9ebbfde069fc618aa 100644 (file)
@@ -38,8 +38,7 @@ static int send_channel_streams(int sock,
 {
        int ret, fd;
        struct lttcomm_consumer_msg lum;
-       struct cds_lfht_iter iter;
-       struct cds_lfht_node *node;
+       struct ltt_ust_stream *stream, *tmp;
 
        DBG("Sending streams of channel %s to UST consumer", uchan->name);
 
@@ -66,21 +65,21 @@ static int send_channel_streams(int sock,
                goto error;
        }
 
-       rcu_read_lock();
-       hashtable_get_first(uchan->streams, &iter);
-       while ((node = hashtable_iter_get_node(&iter)) != NULL) {
-               struct ltt_ust_stream *stream =
-                               caa_container_of(node, struct ltt_ust_stream, node);
+       cds_list_for_each_entry_safe(stream, tmp, &uchan->streams.head, list) {
                int fds[2];
 
                if (!stream->obj->shm_fd) {
-                       goto next;
+                       continue;
                }
                lum.cmd_type = LTTNG_CONSUMER_ADD_STREAM;
                lum.u.stream.channel_key = uchan->obj->shm_fd;
                lum.u.stream.stream_key = stream->obj->shm_fd;
                lum.u.stream.state = LTTNG_CONSUMER_ACTIVE_STREAM;
-               lum.u.stream.output = uchan->attr.output;
+               /*
+                * FIXME Hack alert! we force MMAP for now. Mixup
+                * between EVENT and UST enums elsewhere.
+                */
+               lum.u.stream.output = DEFAULT_UST_CHANNEL_OUTPUT;
                lum.u.stream.mmap_len = stream->obj->memory_map_size;
                strncpy(lum.u.stream.path_name, stream->pathname, PATH_MAX - 1);
                lum.u.stream.path_name[PATH_MAX - 1] = '\0';
@@ -99,10 +98,17 @@ static int send_channel_streams(int sock,
                        goto error;
                }
 
-next:
-               hashtable_get_next(uchan->streams, &iter);
+               /*
+                * We release the stream object here, as we have passed
+                * it to the consumer.
+                */
+               /* Ensure we don't let the app know (sock = -1). */
+               ustctl_release_object(-1, stream->obj);
+               cds_list_del(&stream->list);
+               free(stream);
        }
-       rcu_read_unlock();
+       /* Ensure we don't let the app know (sock = -1). */
+       ustctl_release_object(-1, uchan->obj);
 
        DBG("consumer channel streams sent");
 
@@ -170,6 +176,10 @@ int ust_consumer_send_session(int consumer_fd, struct ust_app_session *usess)
                        perror("send consumer stream");
                        goto error;
                }
+               /* Metadata fds passed to consumer, release them. */
+               /* Ensure we don't let the app know (sock = -1). */
+               ustctl_release_object(-1, usess->metadata->stream_obj);
+               ustctl_release_object(-1, usess->metadata->obj);
        }
 
        /* Send each channel fd streams of session */
@@ -180,6 +190,7 @@ int ust_consumer_send_session(int consumer_fd, struct ust_app_session *usess)
 
                ret = send_channel_streams(sock, uchan);
                if (ret < 0) {
+                       rcu_read_unlock();
                        goto error;
                }
                hashtable_get_next(usess->channels, &iter);
This page took 0.023431 seconds and 4 git commands to generate.