rtsession: fix locking
[platform/upstream/gst-plugins-good.git] / gst / rtpmanager / rtpsession.c
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library 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 GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 /* FIXME 0.11: suppress warnings for deprecated API such as GValueArray
21  * with newer GLib versions (>= 2.31.0) */
22 #define GLIB_DISABLE_DEPRECATION_WARNINGS
23
24 #include <string.h>
25
26 #include <gst/rtp/gstrtpbuffer.h>
27 #include <gst/rtp/gstrtcpbuffer.h>
28
29 #include <gst/glib-compat-private.h>
30
31 #include "rtpsession.h"
32
33 GST_DEBUG_CATEGORY_STATIC (rtp_session_debug);
34 #define GST_CAT_DEFAULT rtp_session_debug
35
36 /* signals and args */
37 enum
38 {
39   SIGNAL_GET_SOURCE_BY_SSRC,
40   SIGNAL_ON_NEW_SSRC,
41   SIGNAL_ON_SSRC_COLLISION,
42   SIGNAL_ON_SSRC_VALIDATED,
43   SIGNAL_ON_SSRC_ACTIVE,
44   SIGNAL_ON_SSRC_SDES,
45   SIGNAL_ON_BYE_SSRC,
46   SIGNAL_ON_BYE_TIMEOUT,
47   SIGNAL_ON_TIMEOUT,
48   SIGNAL_ON_SENDER_TIMEOUT,
49   SIGNAL_ON_SENDING_RTCP,
50   SIGNAL_ON_FEEDBACK_RTCP,
51   SIGNAL_SEND_RTCP,
52   LAST_SIGNAL
53 };
54
55 #define DEFAULT_INTERNAL_SOURCE      NULL
56 #define DEFAULT_BANDWIDTH            RTP_STATS_BANDWIDTH
57 #define DEFAULT_RTCP_FRACTION        (RTP_STATS_RTCP_FRACTION * RTP_STATS_BANDWIDTH)
58 #define DEFAULT_RTCP_RR_BANDWIDTH    -1
59 #define DEFAULT_RTCP_RS_BANDWIDTH    -1
60 #define DEFAULT_RTCP_MTU             1400
61 #define DEFAULT_SDES                 NULL
62 #define DEFAULT_NUM_SOURCES          0
63 #define DEFAULT_NUM_ACTIVE_SOURCES   0
64 #define DEFAULT_SOURCES              NULL
65 #define DEFAULT_RTCP_MIN_INTERVAL    (RTP_STATS_MIN_INTERVAL * GST_SECOND)
66 #define DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW (2 * GST_SECOND)
67 #define DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD (3)
68 #define DEFAULT_PROBATION            RTP_DEFAULT_PROBATION
69
70 enum
71 {
72   PROP_0,
73   PROP_INTERNAL_SSRC,
74   PROP_INTERNAL_SOURCE,
75   PROP_BANDWIDTH,
76   PROP_RTCP_FRACTION,
77   PROP_RTCP_RR_BANDWIDTH,
78   PROP_RTCP_RS_BANDWIDTH,
79   PROP_RTCP_MTU,
80   PROP_SDES,
81   PROP_NUM_SOURCES,
82   PROP_NUM_ACTIVE_SOURCES,
83   PROP_SOURCES,
84   PROP_FAVOR_NEW,
85   PROP_RTCP_MIN_INTERVAL,
86   PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
87   PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
88   PROP_PROBATION,
89   PROP_LAST
90 };
91
92 /* update average packet size */
93 #define INIT_AVG(avg, val) \
94    (avg) = (val);
95 #define UPDATE_AVG(avg, val)            \
96   if ((avg) == 0)                       \
97    (avg) = (val);                       \
98   else                                  \
99    (avg) = ((val) + (15 * (avg))) >> 4;
100
101
102 /* The number RTCP intervals after which to timeout entries in the
103  * collision table
104  */
105 #define RTCP_INTERVAL_COLLISION_TIMEOUT 10
106
107 /* GObject vmethods */
108 static void rtp_session_finalize (GObject * object);
109 static void rtp_session_set_property (GObject * object, guint prop_id,
110     const GValue * value, GParamSpec * pspec);
111 static void rtp_session_get_property (GObject * object, guint prop_id,
112     GValue * value, GParamSpec * pspec);
113
114 static void rtp_session_send_rtcp (RTPSession * sess, GstClockTime max_delay);
115
116 static guint rtp_session_signals[LAST_SIGNAL] = { 0 };
117
118 G_DEFINE_TYPE (RTPSession, rtp_session, G_TYPE_OBJECT);
119
120 static guint32 rtp_session_create_new_ssrc (RTPSession * sess);
121 static RTPSource *obtain_source (RTPSession * sess, guint32 ssrc,
122     gboolean * created, RTPArrivalStats * arrival, gboolean rtp);
123 static RTPSource *obtain_internal_source (RTPSession * sess,
124     guint32 ssrc, gboolean * created);
125 static GstFlowReturn rtp_session_schedule_bye_locked (RTPSession * sess,
126     GstClockTime current_time);
127 static GstClockTime calculate_rtcp_interval (RTPSession * sess,
128     gboolean deterministic, gboolean first);
129
130 static gboolean
131 accumulate_trues (GSignalInvocationHint * ihint, GValue * return_accu,
132     const GValue * handler_return, gpointer data)
133 {
134   if (g_value_get_boolean (handler_return))
135     g_value_set_boolean (return_accu, TRUE);
136
137   return TRUE;
138 }
139
140 static void
141 rtp_session_class_init (RTPSessionClass * klass)
142 {
143   GObjectClass *gobject_class;
144
145   gobject_class = (GObjectClass *) klass;
146
147   gobject_class->finalize = rtp_session_finalize;
148   gobject_class->set_property = rtp_session_set_property;
149   gobject_class->get_property = rtp_session_get_property;
150
151   /**
152    * RTPSession::get-source-by-ssrc:
153    * @session: the object which received the signal
154    * @ssrc: the SSRC of the RTPSource
155    *
156    * Request the #RTPSource object with SSRC @ssrc in @session.
157    */
158   rtp_session_signals[SIGNAL_GET_SOURCE_BY_SSRC] =
159       g_signal_new ("get-source-by-ssrc", G_TYPE_FROM_CLASS (klass),
160       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (RTPSessionClass,
161           get_source_by_ssrc), NULL, NULL, g_cclosure_marshal_generic,
162       RTP_TYPE_SOURCE, 1, G_TYPE_UINT);
163
164   /**
165    * RTPSession::on-new-ssrc:
166    * @session: the object which received the signal
167    * @src: the new RTPSource
168    *
169    * Notify of a new SSRC that entered @session.
170    */
171   rtp_session_signals[SIGNAL_ON_NEW_SSRC] =
172       g_signal_new ("on-new-ssrc", G_TYPE_FROM_CLASS (klass),
173       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_new_ssrc),
174       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
175       RTP_TYPE_SOURCE);
176   /**
177    * RTPSession::on-ssrc-collision:
178    * @session: the object which received the signal
179    * @src: the #RTPSource that caused a collision
180    *
181    * Notify when we have an SSRC collision
182    */
183   rtp_session_signals[SIGNAL_ON_SSRC_COLLISION] =
184       g_signal_new ("on-ssrc-collision", G_TYPE_FROM_CLASS (klass),
185       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_collision),
186       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
187       RTP_TYPE_SOURCE);
188   /**
189    * RTPSession::on-ssrc-validated:
190    * @session: the object which received the signal
191    * @src: the new validated RTPSource
192    *
193    * Notify of a new SSRC that became validated.
194    */
195   rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED] =
196       g_signal_new ("on-ssrc-validated", G_TYPE_FROM_CLASS (klass),
197       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_validated),
198       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
199       RTP_TYPE_SOURCE);
200   /**
201    * RTPSession::on-ssrc-active:
202    * @session: the object which received the signal
203    * @src: the active RTPSource
204    *
205    * Notify of a SSRC that is active, i.e., sending RTCP.
206    */
207   rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE] =
208       g_signal_new ("on-ssrc-active", G_TYPE_FROM_CLASS (klass),
209       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_active),
210       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
211       RTP_TYPE_SOURCE);
212   /**
213    * RTPSession::on-ssrc-sdes:
214    * @session: the object which received the signal
215    * @src: the RTPSource
216    *
217    * Notify that a new SDES was received for SSRC.
218    */
219   rtp_session_signals[SIGNAL_ON_SSRC_SDES] =
220       g_signal_new ("on-ssrc-sdes", G_TYPE_FROM_CLASS (klass),
221       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_ssrc_sdes),
222       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
223       RTP_TYPE_SOURCE);
224   /**
225    * RTPSession::on-bye-ssrc:
226    * @session: the object which received the signal
227    * @src: the RTPSource that went away
228    *
229    * Notify of an SSRC that became inactive because of a BYE packet.
230    */
231   rtp_session_signals[SIGNAL_ON_BYE_SSRC] =
232       g_signal_new ("on-bye-ssrc", G_TYPE_FROM_CLASS (klass),
233       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_ssrc),
234       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
235       RTP_TYPE_SOURCE);
236   /**
237    * RTPSession::on-bye-timeout:
238    * @session: the object which received the signal
239    * @src: the RTPSource that timed out
240    *
241    * Notify of an SSRC that has timed out because of BYE
242    */
243   rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT] =
244       g_signal_new ("on-bye-timeout", G_TYPE_FROM_CLASS (klass),
245       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_bye_timeout),
246       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
247       RTP_TYPE_SOURCE);
248   /**
249    * RTPSession::on-timeout:
250    * @session: the object which received the signal
251    * @src: the RTPSource that timed out
252    *
253    * Notify of an SSRC that has timed out
254    */
255   rtp_session_signals[SIGNAL_ON_TIMEOUT] =
256       g_signal_new ("on-timeout", G_TYPE_FROM_CLASS (klass),
257       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_timeout),
258       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
259       RTP_TYPE_SOURCE);
260   /**
261    * RTPSession::on-sender-timeout:
262    * @session: the object which received the signal
263    * @src: the RTPSource that timed out
264    *
265    * Notify of an SSRC that was a sender but timed out and became a receiver.
266    */
267   rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT] =
268       g_signal_new ("on-sender-timeout", G_TYPE_FROM_CLASS (klass),
269       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sender_timeout),
270       NULL, NULL, g_cclosure_marshal_VOID__OBJECT, G_TYPE_NONE, 1,
271       RTP_TYPE_SOURCE);
272
273   /**
274    * RTPSession::on-sending-rtcp
275    * @session: the object which received the signal
276    * @buffer: the #GstBuffer containing the RTCP packet about to be sent
277    * @early: %TRUE if the packet is early, %FALSE if it is regular
278    *
279    * This signal is emitted before sending an RTCP packet, it can be used
280    * to add extra RTCP Packets.
281    *
282    * Returns: %TRUE if the RTCP buffer should NOT be suppressed, %FALSE
283    * if suppressing it is acceptable
284    */
285   rtp_session_signals[SIGNAL_ON_SENDING_RTCP] =
286       g_signal_new ("on-sending-rtcp", G_TYPE_FROM_CLASS (klass),
287       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_sending_rtcp),
288       accumulate_trues, NULL, g_cclosure_marshal_generic, G_TYPE_BOOLEAN, 2,
289       GST_TYPE_BUFFER | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_BOOLEAN);
290
291   /**
292    * RTPSession::on-feedback-rtcp:
293    * @session: the object which received the signal
294    * @type: Type of RTCP packet, will be %GST_RTCP_TYPE_RTPFB or
295    *  %GST_RTCP_TYPE_RTPFB
296    * @fbtype: The type of RTCP FB packet, probably part of #GstRTCPFBType
297    * @sender_ssrc: The SSRC of the sender
298    * @media_ssrc: The SSRC of the media this refers to
299    * @fci: a #GstBuffer with the FCI data from the FB packet or %NULL if
300    * there was no FCI
301    *
302    * Notify that a RTCP feedback packet has been received
303    */
304   rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP] =
305       g_signal_new ("on-feedback-rtcp", G_TYPE_FROM_CLASS (klass),
306       G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (RTPSessionClass, on_feedback_rtcp),
307       NULL, NULL, g_cclosure_marshal_generic, G_TYPE_NONE, 5, G_TYPE_UINT,
308       G_TYPE_UINT, G_TYPE_UINT, G_TYPE_UINT, GST_TYPE_BUFFER);
309
310   /**
311    * RTPSession::send-rtcp:
312    * @session: the object which received the signal
313    * @max_delay: The maximum delay after which the feedback will not be useful
314    *  anymore
315    *
316    * Requests that the #RTPSession initiate a new RTCP packet as soon as
317    * possible within the requested delay.
318    */
319   rtp_session_signals[SIGNAL_SEND_RTCP] =
320       g_signal_new ("send-rtcp", G_TYPE_FROM_CLASS (klass),
321       G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
322       G_STRUCT_OFFSET (RTPSessionClass, send_rtcp), NULL, NULL,
323       g_cclosure_marshal_generic, G_TYPE_NONE, 1, G_TYPE_UINT64);
324
325   g_object_class_install_property (gobject_class, PROP_INTERNAL_SSRC,
326       g_param_spec_uint ("internal-ssrc", "Internal SSRC",
327           "The internal SSRC used for the session (deprecated)",
328           0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
329
330   g_object_class_install_property (gobject_class, PROP_INTERNAL_SOURCE,
331       g_param_spec_object ("internal-source", "Internal Source",
332           "The internal source element of the session (deprecated)",
333           RTP_TYPE_SOURCE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
334
335   g_object_class_install_property (gobject_class, PROP_BANDWIDTH,
336       g_param_spec_double ("bandwidth", "Bandwidth",
337           "The bandwidth of the session (0 for auto-discover)",
338           0.0, G_MAXDOUBLE, DEFAULT_BANDWIDTH,
339           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
340
341   g_object_class_install_property (gobject_class, PROP_RTCP_FRACTION,
342       g_param_spec_double ("rtcp-fraction", "RTCP Fraction",
343           "The fraction of the bandwidth used for RTCP (or as a real fraction of the RTP bandwidth if < 1)",
344           0.0, G_MAXDOUBLE, DEFAULT_RTCP_FRACTION,
345           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
346
347   g_object_class_install_property (gobject_class, PROP_RTCP_RR_BANDWIDTH,
348       g_param_spec_int ("rtcp-rr-bandwidth", "RTCP RR bandwidth",
349           "The RTCP bandwidth used for receivers in bytes per second (-1 = default)",
350           -1, G_MAXINT, DEFAULT_RTCP_RR_BANDWIDTH,
351           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
352
353   g_object_class_install_property (gobject_class, PROP_RTCP_RS_BANDWIDTH,
354       g_param_spec_int ("rtcp-rs-bandwidth", "RTCP RS bandwidth",
355           "The RTCP bandwidth used for senders in bytes per second (-1 = default)",
356           -1, G_MAXINT, DEFAULT_RTCP_RS_BANDWIDTH,
357           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
358
359   g_object_class_install_property (gobject_class, PROP_RTCP_MTU,
360       g_param_spec_uint ("rtcp-mtu", "RTCP MTU",
361           "The maximum size of the RTCP packets",
362           16, G_MAXINT16, DEFAULT_RTCP_MTU,
363           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
364
365   g_object_class_install_property (gobject_class, PROP_SDES,
366       g_param_spec_boxed ("sdes", "SDES",
367           "The SDES items of this session",
368           GST_TYPE_STRUCTURE, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
369
370   g_object_class_install_property (gobject_class, PROP_NUM_SOURCES,
371       g_param_spec_uint ("num-sources", "Num Sources",
372           "The number of sources in the session", 0, G_MAXUINT,
373           DEFAULT_NUM_SOURCES, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
374
375   g_object_class_install_property (gobject_class, PROP_NUM_ACTIVE_SOURCES,
376       g_param_spec_uint ("num-active-sources", "Num Active Sources",
377           "The number of active sources in the session", 0, G_MAXUINT,
378           DEFAULT_NUM_ACTIVE_SOURCES,
379           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
380   /**
381    * RTPSource::sources
382    *
383    * Get a GValue Array of all sources in the session.
384    *
385    * <example>
386    * <title>Getting the #RTPSources of a session
387    * <programlisting>
388    * {
389    *   GValueArray *arr;
390    *   GValue *val;
391    *   guint i;
392    *
393    *   g_object_get (sess, "sources", &arr, NULL);
394    *
395    *   for (i = 0; i < arr->n_values; i++) {
396    *     RTPSource *source;
397    *
398    *     val = g_value_array_get_nth (arr, i);
399    *     source = g_value_get_object (val);
400    *   }
401    *   g_value_array_free (arr);
402    * }
403    * </programlisting>
404    * </example>
405    */
406   g_object_class_install_property (gobject_class, PROP_SOURCES,
407       g_param_spec_boxed ("sources", "Sources",
408           "An array of all known sources in the session",
409           G_TYPE_VALUE_ARRAY, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
410
411   g_object_class_install_property (gobject_class, PROP_FAVOR_NEW,
412       g_param_spec_boolean ("favor-new", "Favor new sources",
413           "Resolve SSRC conflict in favor of new sources", FALSE,
414           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
415
416   g_object_class_install_property (gobject_class, PROP_RTCP_MIN_INTERVAL,
417       g_param_spec_uint64 ("rtcp-min-interval", "Minimum RTCP interval",
418           "Minimum interval between Regular RTCP packet (in ns)",
419           0, G_MAXUINT64, DEFAULT_RTCP_MIN_INTERVAL,
420           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
421
422   g_object_class_install_property (gobject_class,
423       PROP_RTCP_FEEDBACK_RETENTION_WINDOW,
424       g_param_spec_uint64 ("rtcp-feedback-retention-window",
425           "RTCP Feedback retention window",
426           "Duration during which RTCP Feedback packets are retained (in ns)",
427           0, G_MAXUINT64, DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW,
428           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
429
430   g_object_class_install_property (gobject_class,
431       PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
432       g_param_spec_uint ("rtcp-immediate-feedback-threshold",
433           "RTCP Immediate Feedback threshold",
434           "The maximum number of members of a RTP session for which immediate"
435           " feedback is used",
436           0, G_MAXUINT, DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD,
437           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
438
439   g_object_class_install_property (gobject_class, PROP_PROBATION,
440       g_param_spec_uint ("probation", "Number of probations",
441           "Consecutive packet sequence numbers to accept the source",
442           0, G_MAXUINT, DEFAULT_PROBATION,
443           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
444
445   klass->get_source_by_ssrc =
446       GST_DEBUG_FUNCPTR (rtp_session_get_source_by_ssrc);
447   klass->send_rtcp = GST_DEBUG_FUNCPTR (rtp_session_send_rtcp);
448
449   GST_DEBUG_CATEGORY_INIT (rtp_session_debug, "rtpsession", 0, "RTP Session");
450 }
451
452 static void
453 rtp_session_init (RTPSession * sess)
454 {
455   gint i;
456   gchar *str;
457
458   g_mutex_init (&sess->lock);
459   sess->key = g_random_int ();
460   sess->mask_idx = 0;
461   sess->mask = 0;
462
463   for (i = 0; i < 32; i++) {
464     sess->ssrcs[i] =
465         g_hash_table_new_full (NULL, NULL, NULL,
466         (GDestroyNotify) g_object_unref);
467   }
468
469   rtp_stats_init_defaults (&sess->stats);
470   INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
471   rtp_stats_set_min_interval (&sess->stats,
472       (gdouble) DEFAULT_RTCP_MIN_INTERVAL / GST_SECOND);
473
474   sess->recalc_bandwidth = TRUE;
475   sess->bandwidth = DEFAULT_BANDWIDTH;
476   sess->rtcp_bandwidth = DEFAULT_RTCP_FRACTION;
477   sess->rtcp_rr_bandwidth = DEFAULT_RTCP_RR_BANDWIDTH;
478   sess->rtcp_rs_bandwidth = DEFAULT_RTCP_RS_BANDWIDTH;
479
480   /* default UDP header length */
481   sess->header_len = 28;
482   sess->mtu = DEFAULT_RTCP_MTU;
483
484   sess->probation = DEFAULT_PROBATION;
485
486   /* some default SDES entries */
487   sess->sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
488
489   /* we do not want to leak details like the username or hostname here */
490   str = g_strdup_printf ("user%u@host-%x", g_random_int (), g_random_int ());
491   gst_structure_set (sess->sdes, "cname", G_TYPE_STRING, str, NULL);
492   g_free (str);
493
494 #if 0
495   /* we do not want to leak the user's real name here */
496   str = g_strdup_printf ("Anon%u", g_random_int ());
497   gst_structure_set (sdes, "name", G_TYPE_STRING, str, NULL);
498   g_free (str);
499 #endif
500
501   gst_structure_set (sess->sdes, "tool", G_TYPE_STRING, "GStreamer", NULL);
502
503   /* this is the SSRC we suggest */
504   sess->suggested_ssrc = rtp_session_create_new_ssrc (sess);
505
506   sess->first_rtcp = TRUE;
507   sess->next_rtcp_check_time = GST_CLOCK_TIME_NONE;
508
509   sess->allow_early = TRUE;
510   sess->next_early_rtcp_time = GST_CLOCK_TIME_NONE;
511   sess->rtcp_feedback_retention_window = DEFAULT_RTCP_FEEDBACK_RETENTION_WINDOW;
512   sess->rtcp_immediate_feedback_threshold =
513       DEFAULT_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD;
514
515   sess->last_keyframe_request = GST_CLOCK_TIME_NONE;
516 }
517
518 static void
519 rtp_session_finalize (GObject * object)
520 {
521   RTPSession *sess;
522   gint i;
523
524   sess = RTP_SESSION_CAST (object);
525
526   gst_structure_free (sess->sdes);
527
528   for (i = 0; i < 32; i++)
529     g_hash_table_destroy (sess->ssrcs[i]);
530
531   g_mutex_clear (&sess->lock);
532
533   G_OBJECT_CLASS (rtp_session_parent_class)->finalize (object);
534 }
535
536 static void
537 copy_source (gpointer key, RTPSource * source, GValueArray * arr)
538 {
539   GValue value = { 0 };
540
541   g_value_init (&value, RTP_TYPE_SOURCE);
542   g_value_take_object (&value, source);
543   /* copies the value */
544   g_value_array_append (arr, &value);
545 }
546
547 static GValueArray *
548 rtp_session_create_sources (RTPSession * sess)
549 {
550   GValueArray *res;
551   guint size;
552
553   RTP_SESSION_LOCK (sess);
554   /* get number of elements in the table */
555   size = g_hash_table_size (sess->ssrcs[sess->mask_idx]);
556   /* create the result value array */
557   res = g_value_array_new (size);
558
559   /* and copy all values into the array */
560   g_hash_table_foreach (sess->ssrcs[sess->mask_idx], (GHFunc) copy_source, res);
561   RTP_SESSION_UNLOCK (sess);
562
563   return res;
564 }
565
566 static void
567 rtp_session_set_property (GObject * object, guint prop_id,
568     const GValue * value, GParamSpec * pspec)
569 {
570   RTPSession *sess;
571
572   sess = RTP_SESSION (object);
573
574   switch (prop_id) {
575     case PROP_INTERNAL_SSRC:
576       break;
577     case PROP_BANDWIDTH:
578       RTP_SESSION_LOCK (sess);
579       sess->bandwidth = g_value_get_double (value);
580       sess->recalc_bandwidth = TRUE;
581       RTP_SESSION_UNLOCK (sess);
582       break;
583     case PROP_RTCP_FRACTION:
584       RTP_SESSION_LOCK (sess);
585       sess->rtcp_bandwidth = g_value_get_double (value);
586       sess->recalc_bandwidth = TRUE;
587       RTP_SESSION_UNLOCK (sess);
588       break;
589     case PROP_RTCP_RR_BANDWIDTH:
590       RTP_SESSION_LOCK (sess);
591       sess->rtcp_rr_bandwidth = g_value_get_int (value);
592       sess->recalc_bandwidth = TRUE;
593       RTP_SESSION_UNLOCK (sess);
594       break;
595     case PROP_RTCP_RS_BANDWIDTH:
596       RTP_SESSION_LOCK (sess);
597       sess->rtcp_rs_bandwidth = g_value_get_int (value);
598       sess->recalc_bandwidth = TRUE;
599       RTP_SESSION_UNLOCK (sess);
600       break;
601     case PROP_RTCP_MTU:
602       sess->mtu = g_value_get_uint (value);
603       break;
604     case PROP_SDES:
605       rtp_session_set_sdes_struct (sess, g_value_get_boxed (value));
606       break;
607     case PROP_FAVOR_NEW:
608       sess->favor_new = g_value_get_boolean (value);
609       break;
610     case PROP_RTCP_MIN_INTERVAL:
611       rtp_stats_set_min_interval (&sess->stats,
612           (gdouble) g_value_get_uint64 (value) / GST_SECOND);
613       /* trigger reconsideration */
614       RTP_SESSION_LOCK (sess);
615       sess->next_rtcp_check_time = 0;
616       RTP_SESSION_UNLOCK (sess);
617       if (sess->callbacks.reconsider)
618         sess->callbacks.reconsider (sess, sess->reconsider_user_data);
619       break;
620     case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
621       sess->rtcp_immediate_feedback_threshold = g_value_get_uint (value);
622       break;
623     case PROP_PROBATION:
624       sess->probation = g_value_get_uint (value);
625       break;
626     default:
627       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
628       break;
629   }
630 }
631
632 static void
633 rtp_session_get_property (GObject * object, guint prop_id,
634     GValue * value, GParamSpec * pspec)
635 {
636   RTPSession *sess;
637
638   sess = RTP_SESSION (object);
639
640   switch (prop_id) {
641     case PROP_INTERNAL_SSRC:
642       g_value_set_uint (value, rtp_session_suggest_ssrc (sess));
643       break;
644     case PROP_INTERNAL_SOURCE:
645       /* FIXME, return a random source */
646       g_value_set_object (value, NULL);
647       break;
648     case PROP_BANDWIDTH:
649       g_value_set_double (value, sess->bandwidth);
650       break;
651     case PROP_RTCP_FRACTION:
652       g_value_set_double (value, sess->rtcp_bandwidth);
653       break;
654     case PROP_RTCP_RR_BANDWIDTH:
655       g_value_set_int (value, sess->rtcp_rr_bandwidth);
656       break;
657     case PROP_RTCP_RS_BANDWIDTH:
658       g_value_set_int (value, sess->rtcp_rs_bandwidth);
659       break;
660     case PROP_RTCP_MTU:
661       g_value_set_uint (value, sess->mtu);
662       break;
663     case PROP_SDES:
664       g_value_take_boxed (value, rtp_session_get_sdes_struct (sess));
665       break;
666     case PROP_NUM_SOURCES:
667       g_value_set_uint (value, rtp_session_get_num_sources (sess));
668       break;
669     case PROP_NUM_ACTIVE_SOURCES:
670       g_value_set_uint (value, rtp_session_get_num_active_sources (sess));
671       break;
672     case PROP_SOURCES:
673       g_value_take_boxed (value, rtp_session_create_sources (sess));
674       break;
675     case PROP_FAVOR_NEW:
676       g_value_set_boolean (value, sess->favor_new);
677       break;
678     case PROP_RTCP_MIN_INTERVAL:
679       g_value_set_uint64 (value, sess->stats.min_interval * GST_SECOND);
680       break;
681     case PROP_RTCP_IMMEDIATE_FEEDBACK_THRESHOLD:
682       g_value_set_uint (value, sess->rtcp_immediate_feedback_threshold);
683       break;
684     case PROP_PROBATION:
685       g_value_set_uint (value, sess->probation);
686       break;
687     default:
688       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
689       break;
690   }
691 }
692
693 static void
694 on_new_ssrc (RTPSession * sess, RTPSource * source)
695 {
696   g_object_ref (source);
697   RTP_SESSION_UNLOCK (sess);
698   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_NEW_SSRC], 0, source);
699   RTP_SESSION_LOCK (sess);
700   g_object_unref (source);
701 }
702
703 static void
704 on_ssrc_collision (RTPSession * sess, RTPSource * source)
705 {
706   g_object_ref (source);
707   RTP_SESSION_UNLOCK (sess);
708   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_COLLISION], 0,
709       source);
710   RTP_SESSION_LOCK (sess);
711   g_object_unref (source);
712 }
713
714 static void
715 on_ssrc_validated (RTPSession * sess, RTPSource * source)
716 {
717   g_object_ref (source);
718   RTP_SESSION_UNLOCK (sess);
719   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_VALIDATED], 0,
720       source);
721   RTP_SESSION_LOCK (sess);
722   g_object_unref (source);
723 }
724
725 static void
726 on_ssrc_active (RTPSession * sess, RTPSource * source)
727 {
728   g_object_ref (source);
729   RTP_SESSION_UNLOCK (sess);
730   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_ACTIVE], 0, source);
731   RTP_SESSION_LOCK (sess);
732   g_object_unref (source);
733 }
734
735 static void
736 on_ssrc_sdes (RTPSession * sess, RTPSource * source)
737 {
738   g_object_ref (source);
739   GST_DEBUG ("SDES changed for SSRC %08x", source->ssrc);
740   RTP_SESSION_UNLOCK (sess);
741   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SSRC_SDES], 0, source);
742   RTP_SESSION_LOCK (sess);
743   g_object_unref (source);
744 }
745
746 static void
747 on_bye_ssrc (RTPSession * sess, RTPSource * source)
748 {
749   g_object_ref (source);
750   RTP_SESSION_UNLOCK (sess);
751   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_SSRC], 0, source);
752   RTP_SESSION_LOCK (sess);
753   g_object_unref (source);
754 }
755
756 static void
757 on_bye_timeout (RTPSession * sess, RTPSource * source)
758 {
759   g_object_ref (source);
760   RTP_SESSION_UNLOCK (sess);
761   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_BYE_TIMEOUT], 0, source);
762   RTP_SESSION_LOCK (sess);
763   g_object_unref (source);
764 }
765
766 static void
767 on_timeout (RTPSession * sess, RTPSource * source)
768 {
769   g_object_ref (source);
770   RTP_SESSION_UNLOCK (sess);
771   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_TIMEOUT], 0, source);
772   RTP_SESSION_LOCK (sess);
773   g_object_unref (source);
774 }
775
776 static void
777 on_sender_timeout (RTPSession * sess, RTPSource * source)
778 {
779   g_object_ref (source);
780   RTP_SESSION_UNLOCK (sess);
781   g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDER_TIMEOUT], 0,
782       source);
783   RTP_SESSION_LOCK (sess);
784   g_object_unref (source);
785 }
786
787 /**
788  * rtp_session_new:
789  *
790  * Create a new session object.
791  *
792  * Returns: a new #RTPSession. g_object_unref() after usage.
793  */
794 RTPSession *
795 rtp_session_new (void)
796 {
797   RTPSession *sess;
798
799   sess = g_object_new (RTP_TYPE_SESSION, NULL);
800
801   return sess;
802 }
803
804 /**
805  * rtp_session_set_callbacks:
806  * @sess: an #RTPSession
807  * @callbacks: callbacks to configure
808  * @user_data: user data passed in the callbacks
809  *
810  * Configure a set of callbacks to be notified of actions.
811  */
812 void
813 rtp_session_set_callbacks (RTPSession * sess, RTPSessionCallbacks * callbacks,
814     gpointer user_data)
815 {
816   g_return_if_fail (RTP_IS_SESSION (sess));
817
818   if (callbacks->process_rtp) {
819     sess->callbacks.process_rtp = callbacks->process_rtp;
820     sess->process_rtp_user_data = user_data;
821   }
822   if (callbacks->send_rtp) {
823     sess->callbacks.send_rtp = callbacks->send_rtp;
824     sess->send_rtp_user_data = user_data;
825   }
826   if (callbacks->send_rtcp) {
827     sess->callbacks.send_rtcp = callbacks->send_rtcp;
828     sess->send_rtcp_user_data = user_data;
829   }
830   if (callbacks->sync_rtcp) {
831     sess->callbacks.sync_rtcp = callbacks->sync_rtcp;
832     sess->sync_rtcp_user_data = user_data;
833   }
834   if (callbacks->clock_rate) {
835     sess->callbacks.clock_rate = callbacks->clock_rate;
836     sess->clock_rate_user_data = user_data;
837   }
838   if (callbacks->reconsider) {
839     sess->callbacks.reconsider = callbacks->reconsider;
840     sess->reconsider_user_data = user_data;
841   }
842   if (callbacks->request_key_unit) {
843     sess->callbacks.request_key_unit = callbacks->request_key_unit;
844     sess->request_key_unit_user_data = user_data;
845   }
846   if (callbacks->request_time) {
847     sess->callbacks.request_time = callbacks->request_time;
848     sess->request_time_user_data = user_data;
849   }
850   if (callbacks->notify_nack) {
851     sess->callbacks.notify_nack = callbacks->notify_nack;
852     sess->notify_nack_user_data = user_data;
853   }
854 }
855
856 /**
857  * rtp_session_set_process_rtp_callback:
858  * @sess: an #RTPSession
859  * @callback: callback to set
860  * @user_data: user data passed in the callback
861  *
862  * Configure only the process_rtp callback to be notified of the process_rtp action.
863  */
864 void
865 rtp_session_set_process_rtp_callback (RTPSession * sess,
866     RTPSessionProcessRTP callback, gpointer user_data)
867 {
868   g_return_if_fail (RTP_IS_SESSION (sess));
869
870   sess->callbacks.process_rtp = callback;
871   sess->process_rtp_user_data = user_data;
872 }
873
874 /**
875  * rtp_session_set_send_rtp_callback:
876  * @sess: an #RTPSession
877  * @callback: callback to set
878  * @user_data: user data passed in the callback
879  *
880  * Configure only the send_rtp callback to be notified of the send_rtp action.
881  */
882 void
883 rtp_session_set_send_rtp_callback (RTPSession * sess,
884     RTPSessionSendRTP callback, gpointer user_data)
885 {
886   g_return_if_fail (RTP_IS_SESSION (sess));
887
888   sess->callbacks.send_rtp = callback;
889   sess->send_rtp_user_data = user_data;
890 }
891
892 /**
893  * rtp_session_set_send_rtcp_callback:
894  * @sess: an #RTPSession
895  * @callback: callback to set
896  * @user_data: user data passed in the callback
897  *
898  * Configure only the send_rtcp callback to be notified of the send_rtcp action.
899  */
900 void
901 rtp_session_set_send_rtcp_callback (RTPSession * sess,
902     RTPSessionSendRTCP callback, gpointer user_data)
903 {
904   g_return_if_fail (RTP_IS_SESSION (sess));
905
906   sess->callbacks.send_rtcp = callback;
907   sess->send_rtcp_user_data = user_data;
908 }
909
910 /**
911  * rtp_session_set_sync_rtcp_callback:
912  * @sess: an #RTPSession
913  * @callback: callback to set
914  * @user_data: user data passed in the callback
915  *
916  * Configure only the sync_rtcp callback to be notified of the sync_rtcp action.
917  */
918 void
919 rtp_session_set_sync_rtcp_callback (RTPSession * sess,
920     RTPSessionSyncRTCP callback, gpointer user_data)
921 {
922   g_return_if_fail (RTP_IS_SESSION (sess));
923
924   sess->callbacks.sync_rtcp = callback;
925   sess->sync_rtcp_user_data = user_data;
926 }
927
928 /**
929  * rtp_session_set_clock_rate_callback:
930  * @sess: an #RTPSession
931  * @callback: callback to set
932  * @user_data: user data passed in the callback
933  *
934  * Configure only the clock_rate callback to be notified of the clock_rate action.
935  */
936 void
937 rtp_session_set_clock_rate_callback (RTPSession * sess,
938     RTPSessionClockRate callback, gpointer user_data)
939 {
940   g_return_if_fail (RTP_IS_SESSION (sess));
941
942   sess->callbacks.clock_rate = callback;
943   sess->clock_rate_user_data = user_data;
944 }
945
946 /**
947  * rtp_session_set_reconsider_callback:
948  * @sess: an #RTPSession
949  * @callback: callback to set
950  * @user_data: user data passed in the callback
951  *
952  * Configure only the reconsider callback to be notified of the reconsider action.
953  */
954 void
955 rtp_session_set_reconsider_callback (RTPSession * sess,
956     RTPSessionReconsider callback, gpointer user_data)
957 {
958   g_return_if_fail (RTP_IS_SESSION (sess));
959
960   sess->callbacks.reconsider = callback;
961   sess->reconsider_user_data = user_data;
962 }
963
964 /**
965  * rtp_session_set_request_time_callback:
966  * @sess: an #RTPSession
967  * @callback: callback to set
968  * @user_data: user data passed in the callback
969  *
970  * Configure only the request_time callback
971  */
972 void
973 rtp_session_set_request_time_callback (RTPSession * sess,
974     RTPSessionRequestTime callback, gpointer user_data)
975 {
976   g_return_if_fail (RTP_IS_SESSION (sess));
977
978   sess->callbacks.request_time = callback;
979   sess->request_time_user_data = user_data;
980 }
981
982 /**
983  * rtp_session_set_bandwidth:
984  * @sess: an #RTPSession
985  * @bandwidth: the bandwidth allocated
986  *
987  * Set the session bandwidth in bytes per second.
988  */
989 void
990 rtp_session_set_bandwidth (RTPSession * sess, gdouble bandwidth)
991 {
992   g_return_if_fail (RTP_IS_SESSION (sess));
993
994   RTP_SESSION_LOCK (sess);
995   sess->stats.bandwidth = bandwidth;
996   RTP_SESSION_UNLOCK (sess);
997 }
998
999 /**
1000  * rtp_session_get_bandwidth:
1001  * @sess: an #RTPSession
1002  *
1003  * Get the session bandwidth.
1004  *
1005  * Returns: the session bandwidth.
1006  */
1007 gdouble
1008 rtp_session_get_bandwidth (RTPSession * sess)
1009 {
1010   gdouble result;
1011
1012   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1013
1014   RTP_SESSION_LOCK (sess);
1015   result = sess->stats.bandwidth;
1016   RTP_SESSION_UNLOCK (sess);
1017
1018   return result;
1019 }
1020
1021 /**
1022  * rtp_session_set_rtcp_fraction:
1023  * @sess: an #RTPSession
1024  * @bandwidth: the RTCP bandwidth
1025  *
1026  * Set the bandwidth in bytes per second that should be used for RTCP
1027  * messages.
1028  */
1029 void
1030 rtp_session_set_rtcp_fraction (RTPSession * sess, gdouble bandwidth)
1031 {
1032   g_return_if_fail (RTP_IS_SESSION (sess));
1033
1034   RTP_SESSION_LOCK (sess);
1035   sess->stats.rtcp_bandwidth = bandwidth;
1036   RTP_SESSION_UNLOCK (sess);
1037 }
1038
1039 /**
1040  * rtp_session_get_rtcp_fraction:
1041  * @sess: an #RTPSession
1042  *
1043  * Get the session bandwidth used for RTCP.
1044  *
1045  * Returns: The bandwidth used for RTCP messages.
1046  */
1047 gdouble
1048 rtp_session_get_rtcp_fraction (RTPSession * sess)
1049 {
1050   gdouble result;
1051
1052   g_return_val_if_fail (RTP_IS_SESSION (sess), 0.0);
1053
1054   RTP_SESSION_LOCK (sess);
1055   result = sess->stats.rtcp_bandwidth;
1056   RTP_SESSION_UNLOCK (sess);
1057
1058   return result;
1059 }
1060
1061 /**
1062  * rtp_session_get_sdes_struct:
1063  * @sess: an #RTSPSession
1064  *
1065  * Get the SDES data as a #GstStructure
1066  *
1067  * Returns: a GstStructure with SDES items for @sess. This function returns a
1068  * copy of the SDES structure, use gst_structure_free() after usage.
1069  */
1070 GstStructure *
1071 rtp_session_get_sdes_struct (RTPSession * sess)
1072 {
1073   GstStructure *result = NULL;
1074
1075   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1076
1077   RTP_SESSION_LOCK (sess);
1078   if (sess->sdes)
1079     result = gst_structure_copy (sess->sdes);
1080   RTP_SESSION_UNLOCK (sess);
1081
1082   return result;
1083 }
1084
1085 /**
1086  * rtp_session_set_sdes_struct:
1087  * @sess: an #RTSPSession
1088  * @sdes: a #GstStructure
1089  *
1090  * Set the SDES data as a #GstStructure. This function makes a copy of @sdes.
1091  */
1092 void
1093 rtp_session_set_sdes_struct (RTPSession * sess, const GstStructure * sdes)
1094 {
1095   g_return_if_fail (sdes);
1096   g_return_if_fail (RTP_IS_SESSION (sess));
1097
1098   RTP_SESSION_LOCK (sess);
1099   if (sess->sdes)
1100     gst_structure_free (sess->sdes);
1101   sess->sdes = gst_structure_copy (sdes);
1102   RTP_SESSION_UNLOCK (sess);
1103 }
1104
1105 static GstFlowReturn
1106 source_push_rtp (RTPSource * source, gpointer data, RTPSession * session)
1107 {
1108   GstFlowReturn result = GST_FLOW_OK;
1109
1110   if (source->internal) {
1111     GST_LOG ("source %08x pushed sender RTP packet", source->ssrc);
1112
1113     RTP_SESSION_UNLOCK (session);
1114
1115     if (session->callbacks.send_rtp)
1116       result =
1117           session->callbacks.send_rtp (session, source, data,
1118           session->send_rtp_user_data);
1119     else {
1120       gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
1121     }
1122   } else {
1123     GST_LOG ("source %08x pushed receiver RTP packet", source->ssrc);
1124     RTP_SESSION_UNLOCK (session);
1125
1126     if (session->callbacks.process_rtp)
1127       result =
1128           session->callbacks.process_rtp (session, source,
1129           GST_BUFFER_CAST (data), session->process_rtp_user_data);
1130     else
1131       gst_buffer_unref (GST_BUFFER_CAST (data));
1132   }
1133   RTP_SESSION_LOCK (session);
1134
1135   return result;
1136 }
1137
1138 static gint
1139 source_clock_rate (RTPSource * source, guint8 pt, RTPSession * session)
1140 {
1141   gint result;
1142
1143   RTP_SESSION_UNLOCK (session);
1144
1145   if (session->callbacks.clock_rate)
1146     result =
1147         session->callbacks.clock_rate (session, pt,
1148         session->clock_rate_user_data);
1149   else
1150     result = -1;
1151
1152   RTP_SESSION_LOCK (session);
1153
1154   GST_DEBUG ("got clock-rate %d for pt %d", result, pt);
1155
1156   return result;
1157 }
1158
1159 static RTPSourceCallbacks callbacks = {
1160   (RTPSourcePushRTP) source_push_rtp,
1161   (RTPSourceClockRate) source_clock_rate,
1162 };
1163
1164 static gboolean
1165 check_collision (RTPSession * sess, RTPSource * source,
1166     RTPArrivalStats * arrival, gboolean rtp)
1167 {
1168   guint32 ssrc;
1169
1170   /* If we have no arrival address, we can't do collision checking */
1171   if (!arrival->address)
1172     return FALSE;
1173
1174   ssrc = rtp_source_get_ssrc (source);
1175
1176   if (!source->internal) {
1177     GSocketAddress *from;
1178
1179     /* This is not our local source, but lets check if two remote
1180      * source collide */
1181     if (rtp) {
1182       from = source->rtp_from;
1183     } else {
1184       from = source->rtcp_from;
1185     }
1186
1187     if (from) {
1188       if (__g_socket_address_equal (from, arrival->address)) {
1189         /* Address is the same */
1190         return FALSE;
1191       } else {
1192         GST_LOG ("we have a third-party collision or loop ssrc:%x", ssrc);
1193         if (sess->favor_new) {
1194           if (rtp_source_find_conflicting_address (source,
1195                   arrival->address, arrival->current_time)) {
1196             gchar *buf1;
1197
1198             buf1 = __g_socket_address_to_string (arrival->address);
1199             GST_LOG ("Known conflict on %x for %s, dropping packet", ssrc,
1200                 buf1);
1201             g_free (buf1);
1202
1203             return TRUE;
1204           } else {
1205             gchar *buf1, *buf2;
1206
1207             /* Current address is not a known conflict, lets assume this is
1208              * a new source. Save old address in possible conflict list
1209              */
1210             rtp_source_add_conflicting_address (source, from,
1211                 arrival->current_time);
1212
1213             buf1 = __g_socket_address_to_string (from);
1214             buf2 = __g_socket_address_to_string (arrival->address);
1215
1216             GST_DEBUG ("New conflict for ssrc %x, replacing %s with %s,"
1217                 " saving old as known conflict", ssrc, buf1, buf2);
1218
1219             if (rtp)
1220               rtp_source_set_rtp_from (source, arrival->address);
1221             else
1222               rtp_source_set_rtcp_from (source, arrival->address);
1223
1224             g_free (buf1);
1225             g_free (buf2);
1226
1227             return FALSE;
1228           }
1229         } else {
1230           /* Don't need to save old addresses, we ignore new sources */
1231           return TRUE;
1232         }
1233       }
1234     } else {
1235       /* We don't already have a from address for RTP, just set it */
1236       if (rtp)
1237         rtp_source_set_rtp_from (source, arrival->address);
1238       else
1239         rtp_source_set_rtcp_from (source, arrival->address);
1240       return FALSE;
1241     }
1242
1243     /* FIXME: Log 3rd party collision somehow
1244      * Maybe should be done in upper layer, only the SDES can tell us
1245      * if its a collision or a loop
1246      */
1247   } else {
1248     /* This is sending with our ssrc, is it an address we already know */
1249     if (rtp_source_find_conflicting_address (source, arrival->address,
1250             arrival->current_time)) {
1251       /* Its a known conflict, its probably a loop, not a collision
1252        * lets just drop the incoming packet
1253        */
1254       GST_DEBUG ("Our packets are being looped back to us, dropping");
1255     } else {
1256       /* Its a new collision, lets change our SSRC */
1257       rtp_source_add_conflicting_address (source, arrival->address,
1258           arrival->current_time);
1259
1260       GST_DEBUG ("Collision for SSRC %x", ssrc);
1261       /* mark the source BYE */
1262       rtp_source_mark_bye (source, "SSRC Collision");
1263       /* if we were suggesting this SSRC, change to something else */
1264       if (sess->suggested_ssrc == ssrc)
1265         sess->suggested_ssrc = rtp_session_create_new_ssrc (sess);
1266
1267       on_ssrc_collision (sess, source);
1268
1269       rtp_session_schedule_bye_locked (sess, arrival->current_time);
1270     }
1271   }
1272
1273   return TRUE;
1274 }
1275
1276 static RTPSource *
1277 find_source (RTPSession * sess, guint32 ssrc)
1278 {
1279   return g_hash_table_lookup (sess->ssrcs[sess->mask_idx],
1280       GINT_TO_POINTER (ssrc));
1281 }
1282
1283 static void
1284 add_source (RTPSession * sess, RTPSource * src)
1285 {
1286   g_hash_table_insert (sess->ssrcs[sess->mask_idx],
1287       GINT_TO_POINTER (src->ssrc), src);
1288   /* report the new source ASAP */
1289   src->generation = sess->generation;
1290   /* we have one more source now */
1291   sess->total_sources++;
1292   if (RTP_SOURCE_IS_ACTIVE (src))
1293     sess->stats.active_sources++;
1294   if (src->internal) {
1295     sess->stats.internal_sources++;
1296     if (sess->suggested_ssrc != src->ssrc)
1297       sess->suggested_ssrc = src->ssrc;
1298   }
1299 }
1300
1301 /* must be called with the session lock, the returned source needs to be
1302  * unreffed after usage. */
1303 static RTPSource *
1304 obtain_source (RTPSession * sess, guint32 ssrc, gboolean * created,
1305     RTPArrivalStats * arrival, gboolean rtp)
1306 {
1307   RTPSource *source;
1308
1309   source = find_source (sess, ssrc);
1310   if (source == NULL) {
1311     /* make new Source in probation and insert */
1312     source = rtp_source_new (ssrc);
1313
1314     GST_DEBUG ("creating new source %08x %p", ssrc, source);
1315
1316     /* for RTP packets we need to set the source in probation. Receiving RTCP
1317      * packets of an SSRC, on the other hand, is a strong indication that we
1318      * are dealing with a valid source. */
1319     if (rtp)
1320       g_object_set (source, "probation", sess->probation, NULL);
1321     else
1322       g_object_set (source, "probation", 0, NULL);
1323
1324     /* store from address, if any */
1325     if (arrival->address) {
1326       if (rtp)
1327         rtp_source_set_rtp_from (source, arrival->address);
1328       else
1329         rtp_source_set_rtcp_from (source, arrival->address);
1330     }
1331
1332     /* configure a callback on the source */
1333     rtp_source_set_callbacks (source, &callbacks, sess);
1334
1335     add_source (sess, source);
1336     *created = TRUE;
1337   } else {
1338     *created = FALSE;
1339     /* check for collision, this updates the address when not previously set */
1340     if (check_collision (sess, source, arrival, rtp)) {
1341       return NULL;
1342     }
1343     /* Receiving RTCP packets of an SSRC is a strong indication that we
1344      * are dealing with a valid source. */
1345     if (!rtp)
1346       g_object_set (source, "probation", 0, NULL);
1347   }
1348   /* update last activity */
1349   source->last_activity = arrival->current_time;
1350   if (rtp)
1351     source->last_rtp_activity = arrival->current_time;
1352   g_object_ref (source);
1353
1354   return source;
1355 }
1356
1357 /* must be called with the session lock, the returned source needs to be
1358  * unreffed after usage. */
1359 static RTPSource *
1360 obtain_internal_source (RTPSession * sess, guint32 ssrc, gboolean * created)
1361 {
1362   RTPSource *source;
1363
1364   source = find_source (sess, ssrc);
1365   if (source == NULL) {
1366     /* make new internal Source and insert */
1367     source = rtp_source_new (ssrc);
1368
1369     GST_DEBUG ("creating new internal source %08x %p", ssrc, source);
1370
1371     source->validated = TRUE;
1372     source->internal = TRUE;
1373     rtp_source_set_sdes_struct (source, gst_structure_copy (sess->sdes));
1374     rtp_source_set_callbacks (source, &callbacks, sess);
1375
1376     add_source (sess, source);
1377     *created = TRUE;
1378   } else {
1379     *created = FALSE;
1380   }
1381   g_object_ref (source);
1382
1383   return source;
1384 }
1385
1386 /**
1387  * rtp_session_suggest_ssrc:
1388  * @sess: a #RTPSession
1389  *
1390  * Suggest an unused SSRC in @sess.
1391  *
1392  * Returns: a free unused SSRC
1393  */
1394 guint32
1395 rtp_session_suggest_ssrc (RTPSession * sess)
1396 {
1397   guint32 result;
1398
1399   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1400
1401   RTP_SESSION_LOCK (sess);
1402   result = sess->suggested_ssrc;
1403   RTP_SESSION_UNLOCK (sess);
1404
1405   return result;
1406 }
1407
1408 /**
1409  * rtp_session_add_source:
1410  * @sess: a #RTPSession
1411  * @src: #RTPSource to add
1412  *
1413  * Add @src to @session.
1414  *
1415  * Returns: %TRUE on success, %FALSE if a source with the same SSRC already
1416  * existed in the session.
1417  */
1418 gboolean
1419 rtp_session_add_source (RTPSession * sess, RTPSource * src)
1420 {
1421   gboolean result = FALSE;
1422   RTPSource *find;
1423
1424   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1425   g_return_val_if_fail (src != NULL, FALSE);
1426
1427   RTP_SESSION_LOCK (sess);
1428   find = find_source (sess, src->ssrc);
1429   if (find == NULL) {
1430     add_source (sess, src);
1431     result = TRUE;
1432   }
1433   RTP_SESSION_UNLOCK (sess);
1434
1435   return result;
1436 }
1437
1438 /**
1439  * rtp_session_get_num_sources:
1440  * @sess: an #RTPSession
1441  *
1442  * Get the number of sources in @sess.
1443  *
1444  * Returns: The number of sources in @sess.
1445  */
1446 guint
1447 rtp_session_get_num_sources (RTPSession * sess)
1448 {
1449   guint result;
1450
1451   g_return_val_if_fail (RTP_IS_SESSION (sess), FALSE);
1452
1453   RTP_SESSION_LOCK (sess);
1454   result = sess->total_sources;
1455   RTP_SESSION_UNLOCK (sess);
1456
1457   return result;
1458 }
1459
1460 /**
1461  * rtp_session_get_num_active_sources:
1462  * @sess: an #RTPSession
1463  *
1464  * Get the number of active sources in @sess. A source is considered active when
1465  * it has been validated and has not yet received a BYE RTCP message.
1466  *
1467  * Returns: The number of active sources in @sess.
1468  */
1469 guint
1470 rtp_session_get_num_active_sources (RTPSession * sess)
1471 {
1472   guint result;
1473
1474   g_return_val_if_fail (RTP_IS_SESSION (sess), 0);
1475
1476   RTP_SESSION_LOCK (sess);
1477   result = sess->stats.active_sources;
1478   RTP_SESSION_UNLOCK (sess);
1479
1480   return result;
1481 }
1482
1483 /**
1484  * rtp_session_get_source_by_ssrc:
1485  * @sess: an #RTPSession
1486  * @ssrc: an SSRC
1487  *
1488  * Find the source with @ssrc in @sess.
1489  *
1490  * Returns: a #RTPSource with SSRC @ssrc or NULL if the source was not found.
1491  * g_object_unref() after usage.
1492  */
1493 RTPSource *
1494 rtp_session_get_source_by_ssrc (RTPSession * sess, guint32 ssrc)
1495 {
1496   RTPSource *result;
1497
1498   g_return_val_if_fail (RTP_IS_SESSION (sess), NULL);
1499
1500   RTP_SESSION_LOCK (sess);
1501   result = find_source (sess, ssrc);
1502   if (result)
1503     g_object_ref (result);
1504   RTP_SESSION_UNLOCK (sess);
1505
1506   return result;
1507 }
1508
1509 /* should be called with the SESSION lock */
1510 static guint32
1511 rtp_session_create_new_ssrc (RTPSession * sess)
1512 {
1513   guint32 ssrc;
1514
1515   while (TRUE) {
1516     ssrc = g_random_int ();
1517
1518     /* see if it exists in the session, we're done if it doesn't */
1519     if (find_source (sess, ssrc) == NULL)
1520       break;
1521   }
1522   return ssrc;
1523 }
1524
1525
1526 /**
1527  * rtp_session_create_source:
1528  * @sess: an #RTPSession
1529  *
1530  * Create an #RTPSource for use in @sess. This function will create a source
1531  * with an ssrc that is currently not used by any participants in the session.
1532  *
1533  * Returns: an #RTPSource.
1534  */
1535 RTPSource *
1536 rtp_session_create_source (RTPSession * sess)
1537 {
1538   guint32 ssrc;
1539   RTPSource *source;
1540
1541   RTP_SESSION_LOCK (sess);
1542   ssrc = rtp_session_create_new_ssrc (sess);
1543   source = rtp_source_new (ssrc);
1544   rtp_source_set_callbacks (source, &callbacks, sess);
1545   /* we need an additional ref for the source in the hashtable */
1546   g_object_ref (source);
1547   add_source (sess, source);
1548   RTP_SESSION_UNLOCK (sess);
1549
1550   return source;
1551 }
1552
1553 /* update the RTPArrivalStats structure with the current time and other bits
1554  * about the current buffer we are handling.
1555  * This function is typically called when a validated packet is received.
1556  * This function should be called with the SESSION_LOCK
1557  */
1558 static void
1559 update_arrival_stats (RTPSession * sess, RTPArrivalStats * arrival,
1560     gboolean rtp, GstBuffer * buffer, GstClockTime current_time,
1561     GstClockTime running_time, guint64 ntpnstime)
1562 {
1563   GstNetAddressMeta *meta;
1564   GstRTPBuffer rtpb = { NULL };
1565
1566   /* get time of arrival */
1567   arrival->current_time = current_time;
1568   arrival->running_time = running_time;
1569   arrival->ntpnstime = ntpnstime;
1570
1571   /* get packet size including header overhead */
1572   arrival->bytes = gst_buffer_get_size (buffer) + sess->header_len;
1573
1574   if (rtp) {
1575     gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtpb);
1576     arrival->payload_len = gst_rtp_buffer_get_payload_len (&rtpb);
1577     gst_rtp_buffer_unmap (&rtpb);
1578   } else {
1579     arrival->payload_len = 0;
1580   }
1581
1582   /* for netbuffer we can store the IP address to check for collisions */
1583   meta = gst_buffer_get_net_address_meta (buffer);
1584   if (arrival->address)
1585     g_object_unref (arrival->address);
1586   if (meta) {
1587     arrival->address = G_SOCKET_ADDRESS (g_object_ref (meta->addr));
1588   } else {
1589     arrival->address = NULL;
1590   }
1591 }
1592
1593 static void
1594 clean_arrival_stats (RTPArrivalStats * arrival)
1595 {
1596   if (arrival->address)
1597     g_object_unref (arrival->address);
1598 }
1599
1600 static gboolean
1601 source_update_active (RTPSession * sess, RTPSource * source,
1602     gboolean prevactive)
1603 {
1604   gboolean active = RTP_SOURCE_IS_ACTIVE (source);
1605   guint32 ssrc = source->ssrc;
1606
1607   if (prevactive == active)
1608     return FALSE;
1609
1610   if (active) {
1611     sess->stats.active_sources++;
1612     GST_DEBUG ("source: %08x became active, %d active sources", ssrc,
1613         sess->stats.active_sources);
1614   } else {
1615     sess->stats.active_sources--;
1616     GST_DEBUG ("source: %08x became inactive, %d active sources", ssrc,
1617         sess->stats.active_sources);
1618   }
1619   return TRUE;
1620 }
1621
1622 static gboolean
1623 source_update_sender (RTPSession * sess, RTPSource * source,
1624     gboolean prevsender)
1625 {
1626   gboolean sender = RTP_SOURCE_IS_SENDER (source);
1627   guint32 ssrc = source->ssrc;
1628
1629   if (prevsender == sender)
1630     return FALSE;
1631
1632   if (sender) {
1633     sess->stats.sender_sources++;
1634     if (source->internal)
1635       sess->stats.internal_sender_sources++;
1636     GST_DEBUG ("source: %08x became sender, %d sender sources", ssrc,
1637         sess->stats.sender_sources);
1638   } else {
1639     sess->stats.sender_sources--;
1640     if (source->internal)
1641       sess->stats.internal_sender_sources--;
1642     GST_DEBUG ("source: %08x became non sender, %d sender sources", ssrc,
1643         sess->stats.sender_sources);
1644   }
1645   return TRUE;
1646 }
1647
1648 /**
1649  * rtp_session_process_rtp:
1650  * @sess: and #RTPSession
1651  * @buffer: an RTP buffer
1652  * @current_time: the current system time
1653  * @running_time: the running_time of @buffer
1654  *
1655  * Process an RTP buffer in the session manager. This function takes ownership
1656  * of @buffer.
1657  *
1658  * Returns: a #GstFlowReturn.
1659  */
1660 GstFlowReturn
1661 rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
1662     GstClockTime current_time, GstClockTime running_time)
1663 {
1664   GstFlowReturn result;
1665   guint32 ssrc;
1666   RTPSource *source;
1667   gboolean created;
1668   gboolean prevsender, prevactive;
1669   RTPArrivalStats arrival = { NULL, };
1670   guint32 csrcs[16];
1671   guint8 i, count;
1672   guint64 oldrate;
1673   GstRTPBuffer rtp = { NULL };
1674
1675   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
1676   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
1677
1678   if (!gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp))
1679     goto invalid_packet;
1680
1681   /* get SSRC to look up in session database */
1682   ssrc = gst_rtp_buffer_get_ssrc (&rtp);
1683   /* copy available csrc for later */
1684   count = gst_rtp_buffer_get_csrc_count (&rtp);
1685   /* make sure to not overflow our array. An RTP buffer can maximally contain
1686    * 16 CSRCs */
1687   count = MIN (count, 16);
1688
1689   for (i = 0; i < count; i++)
1690     csrcs[i] = gst_rtp_buffer_get_csrc (&rtp, i);
1691
1692   gst_rtp_buffer_unmap (&rtp);
1693
1694   RTP_SESSION_LOCK (sess);
1695
1696   /* update arrival stats */
1697   update_arrival_stats (sess, &arrival, TRUE, buffer, current_time,
1698       running_time, -1);
1699
1700   source = obtain_source (sess, ssrc, &created, &arrival, TRUE);
1701   if (!source)
1702     goto collision;
1703
1704   prevsender = RTP_SOURCE_IS_SENDER (source);
1705   prevactive = RTP_SOURCE_IS_ACTIVE (source);
1706   oldrate = source->bitrate;
1707
1708   /* let source process the packet */
1709   result = rtp_source_process_rtp (source, buffer, &arrival);
1710
1711   /* source became active */
1712   if (source_update_active (sess, source, prevactive))
1713     on_ssrc_validated (sess, source);
1714
1715   source_update_sender (sess, source, prevsender);
1716
1717   if (oldrate != source->bitrate)
1718     sess->recalc_bandwidth = TRUE;
1719
1720   if (created)
1721     on_new_ssrc (sess, source);
1722
1723   if (source->validated) {
1724     gboolean created;
1725
1726     /* for validated sources, we add the CSRCs as well */
1727     for (i = 0; i < count; i++) {
1728       guint32 csrc;
1729       RTPSource *csrc_src;
1730
1731       csrc = csrcs[i];
1732
1733       /* get source */
1734       csrc_src = obtain_source (sess, csrc, &created, &arrival, TRUE);
1735       if (!csrc_src)
1736         continue;
1737
1738       if (created) {
1739         GST_DEBUG ("created new CSRC: %08x", csrc);
1740         rtp_source_set_as_csrc (csrc_src);
1741         source_update_active (sess, csrc_src, FALSE);
1742         on_new_ssrc (sess, csrc_src);
1743       }
1744       g_object_unref (csrc_src);
1745     }
1746   }
1747   g_object_unref (source);
1748
1749   RTP_SESSION_UNLOCK (sess);
1750
1751   clean_arrival_stats (&arrival);
1752
1753   return result;
1754
1755   /* ERRORS */
1756 invalid_packet:
1757   {
1758     gst_buffer_unref (buffer);
1759     GST_DEBUG ("invalid RTP packet received");
1760     return GST_FLOW_OK;
1761   }
1762 collision:
1763   {
1764     RTP_SESSION_UNLOCK (sess);
1765     gst_buffer_unref (buffer);
1766     clean_arrival_stats (&arrival);
1767     GST_DEBUG ("ignoring packet because its collisioning");
1768     return GST_FLOW_OK;
1769   }
1770 }
1771
1772 static void
1773 rtp_session_process_rb (RTPSession * sess, RTPSource * source,
1774     GstRTCPPacket * packet, RTPArrivalStats * arrival)
1775 {
1776   guint count, i;
1777
1778   count = gst_rtcp_packet_get_rb_count (packet);
1779   for (i = 0; i < count; i++) {
1780     guint32 ssrc, exthighestseq, jitter, lsr, dlsr;
1781     guint8 fractionlost;
1782     gint32 packetslost;
1783     RTPSource *src;
1784
1785     gst_rtcp_packet_get_rb (packet, i, &ssrc, &fractionlost,
1786         &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
1787
1788     GST_DEBUG ("RB %d: SSRC %08x, jitter %" G_GUINT32_FORMAT, i, ssrc, jitter);
1789
1790     /* find our own source */
1791     src = find_source (sess, ssrc);
1792     if (src == NULL)
1793       continue;
1794
1795     if (src->internal && RTP_SOURCE_IS_ACTIVE (src)) {
1796       /* only deal with report blocks for our session, we update the stats of
1797        * the sender of the RTCP message. We could also compare our stats against
1798        * the other sender to see if we are better or worse. */
1799       /* FIXME, need to keep track who the RB block is from */
1800       rtp_source_process_rb (source, arrival->ntpnstime, fractionlost,
1801           packetslost, exthighestseq, jitter, lsr, dlsr);
1802     }
1803   }
1804   on_ssrc_active (sess, source);
1805 }
1806
1807 /* A Sender report contains statistics about how the sender is doing. This
1808  * includes timing informataion such as the relation between RTP and NTP
1809  * timestamps and the number of packets/bytes it sent to us.
1810  *
1811  * In this report is also included a set of report blocks related to how this
1812  * sender is receiving data (in case we (or somebody else) is also sending stuff
1813  * to it). This info includes the packet loss, jitter and seqnum. It also
1814  * contains information to calculate the round trip time (LSR/DLSR).
1815  */
1816 static void
1817 rtp_session_process_sr (RTPSession * sess, GstRTCPPacket * packet,
1818     RTPArrivalStats * arrival, gboolean * do_sync)
1819 {
1820   guint32 senderssrc, rtptime, packet_count, octet_count;
1821   guint64 ntptime;
1822   RTPSource *source;
1823   gboolean created, prevsender;
1824
1825   gst_rtcp_packet_sr_get_sender_info (packet, &senderssrc, &ntptime, &rtptime,
1826       &packet_count, &octet_count);
1827
1828   GST_DEBUG ("got SR packet: SSRC %08x, time %" GST_TIME_FORMAT,
1829       senderssrc, GST_TIME_ARGS (arrival->current_time));
1830
1831   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1832   if (!source)
1833     return;
1834
1835   /* don't try to do lip-sync for sources that sent a BYE */
1836   if (RTP_SOURCE_IS_MARKED_BYE (source))
1837     *do_sync = FALSE;
1838   else
1839     *do_sync = TRUE;
1840
1841   prevsender = RTP_SOURCE_IS_SENDER (source);
1842
1843   /* first update the source */
1844   rtp_source_process_sr (source, arrival->current_time, ntptime, rtptime,
1845       packet_count, octet_count);
1846
1847   source_update_sender (sess, source, prevsender);
1848
1849   if (created)
1850     on_new_ssrc (sess, source);
1851
1852   rtp_session_process_rb (sess, source, packet, arrival);
1853   g_object_unref (source);
1854 }
1855
1856 /* A receiver report contains statistics about how a receiver is doing. It
1857  * includes stuff like packet loss, jitter and the seqnum it received last. It
1858  * also contains info to calculate the round trip time.
1859  *
1860  * We are only interested in how the sender of this report is doing wrt to us.
1861  */
1862 static void
1863 rtp_session_process_rr (RTPSession * sess, GstRTCPPacket * packet,
1864     RTPArrivalStats * arrival)
1865 {
1866   guint32 senderssrc;
1867   RTPSource *source;
1868   gboolean created;
1869
1870   senderssrc = gst_rtcp_packet_rr_get_ssrc (packet);
1871
1872   GST_DEBUG ("got RR packet: SSRC %08x", senderssrc);
1873
1874   source = obtain_source (sess, senderssrc, &created, arrival, FALSE);
1875   if (!source)
1876     return;
1877
1878   if (created)
1879     on_new_ssrc (sess, source);
1880
1881   rtp_session_process_rb (sess, source, packet, arrival);
1882   g_object_unref (source);
1883 }
1884
1885 /* Get SDES items and store them in the SSRC */
1886 static void
1887 rtp_session_process_sdes (RTPSession * sess, GstRTCPPacket * packet,
1888     RTPArrivalStats * arrival)
1889 {
1890   guint items, i, j;
1891   gboolean more_items, more_entries;
1892
1893   items = gst_rtcp_packet_sdes_get_item_count (packet);
1894   GST_DEBUG ("got SDES packet with %d items", items);
1895
1896   more_items = gst_rtcp_packet_sdes_first_item (packet);
1897   i = 0;
1898   while (more_items) {
1899     guint32 ssrc;
1900     gboolean changed, created, prevactive;
1901     RTPSource *source;
1902     GstStructure *sdes;
1903
1904     ssrc = gst_rtcp_packet_sdes_get_ssrc (packet);
1905
1906     GST_DEBUG ("item %d, SSRC %08x", i, ssrc);
1907
1908     changed = FALSE;
1909
1910     /* find src, no probation when dealing with RTCP */
1911     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1912     if (!source)
1913       return;
1914
1915     sdes = gst_structure_new_empty ("application/x-rtp-source-sdes");
1916
1917     more_entries = gst_rtcp_packet_sdes_first_entry (packet);
1918     j = 0;
1919     while (more_entries) {
1920       GstRTCPSDESType type;
1921       guint8 len;
1922       guint8 *data;
1923       gchar *name;
1924       gchar *value;
1925
1926       gst_rtcp_packet_sdes_get_entry (packet, &type, &len, &data);
1927
1928       GST_DEBUG ("entry %d, type %d, len %d, data %.*s", j, type, len, len,
1929           data);
1930
1931       if (type == GST_RTCP_SDES_PRIV) {
1932         name = g_strndup ((const gchar *) &data[1], data[0]);
1933         len -= data[0] + 1;
1934         data += data[0] + 1;
1935       } else {
1936         name = g_strdup (gst_rtcp_sdes_type_to_name (type));
1937       }
1938
1939       value = g_strndup ((const gchar *) data, len);
1940
1941       gst_structure_set (sdes, name, G_TYPE_STRING, value, NULL);
1942
1943       g_free (name);
1944       g_free (value);
1945
1946       more_entries = gst_rtcp_packet_sdes_next_entry (packet);
1947       j++;
1948     }
1949
1950     /* takes ownership of sdes */
1951     changed = rtp_source_set_sdes_struct (source, sdes);
1952
1953     prevactive = RTP_SOURCE_IS_ACTIVE (source);
1954     source->validated = TRUE;
1955
1956     if (created)
1957       on_new_ssrc (sess, source);
1958
1959     /* source became active */
1960     if (source_update_active (sess, source, prevactive))
1961       on_ssrc_validated (sess, source);
1962
1963     if (changed)
1964       on_ssrc_sdes (sess, source);
1965
1966     g_object_unref (source);
1967
1968     more_items = gst_rtcp_packet_sdes_next_item (packet);
1969     i++;
1970   }
1971 }
1972
1973 /* BYE is sent when a client leaves the session
1974  */
1975 static void
1976 rtp_session_process_bye (RTPSession * sess, GstRTCPPacket * packet,
1977     RTPArrivalStats * arrival)
1978 {
1979   guint count, i;
1980   gchar *reason;
1981   gboolean reconsider = FALSE;
1982
1983   reason = gst_rtcp_packet_bye_get_reason (packet);
1984   GST_DEBUG ("got BYE packet (reason: %s)", GST_STR_NULL (reason));
1985
1986   count = gst_rtcp_packet_bye_get_ssrc_count (packet);
1987   for (i = 0; i < count; i++) {
1988     guint32 ssrc;
1989     RTPSource *source;
1990     gboolean created, prevactive, prevsender;
1991     guint pmembers, members;
1992
1993     ssrc = gst_rtcp_packet_bye_get_nth_ssrc (packet, i);
1994     GST_DEBUG ("SSRC: %08x", ssrc);
1995
1996     /* find src and mark bye, no probation when dealing with RTCP */
1997     source = obtain_source (sess, ssrc, &created, arrival, FALSE);
1998     if (!source)
1999       return;
2000
2001     if (source->internal) {
2002       /* our own source, something weird with this packet */
2003       g_object_unref (source);
2004       continue;
2005     }
2006
2007     /* store time for when we need to time out this source */
2008     source->bye_time = arrival->current_time;
2009
2010     prevactive = RTP_SOURCE_IS_ACTIVE (source);
2011     prevsender = RTP_SOURCE_IS_SENDER (source);
2012
2013     /* mark the source BYE */
2014     rtp_source_mark_bye (source, reason);
2015
2016     pmembers = sess->stats.active_sources;
2017
2018     source_update_active (sess, source, prevactive);
2019     source_update_sender (sess, source, prevsender);
2020
2021     members = sess->stats.active_sources;
2022
2023     if (!sess->scheduled_bye && members < pmembers) {
2024       /* some members went away since the previous timeout estimate.
2025        * Perform reverse reconsideration but only when we are not scheduling a
2026        * BYE ourselves. */
2027       if (sess->next_rtcp_check_time != GST_CLOCK_TIME_NONE &&
2028           arrival->current_time < sess->next_rtcp_check_time) {
2029         GstClockTime time_remaining;
2030
2031         time_remaining = sess->next_rtcp_check_time - arrival->current_time;
2032         sess->next_rtcp_check_time =
2033             gst_util_uint64_scale (time_remaining, members, pmembers);
2034
2035         GST_DEBUG ("reverse reconsideration %" GST_TIME_FORMAT,
2036             GST_TIME_ARGS (sess->next_rtcp_check_time));
2037
2038         sess->next_rtcp_check_time += arrival->current_time;
2039
2040         /* mark pending reconsider. We only want to signal the reconsideration
2041          * once after we handled all the source in the bye packet */
2042         reconsider = TRUE;
2043       }
2044     }
2045
2046     if (created)
2047       on_new_ssrc (sess, source);
2048
2049     on_bye_ssrc (sess, source);
2050
2051     g_object_unref (source);
2052   }
2053   if (reconsider) {
2054     RTP_SESSION_UNLOCK (sess);
2055     /* notify app of reconsideration */
2056     if (sess->callbacks.reconsider)
2057       sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2058     RTP_SESSION_LOCK (sess);
2059   }
2060   g_free (reason);
2061 }
2062
2063 static void
2064 rtp_session_process_app (RTPSession * sess, GstRTCPPacket * packet,
2065     RTPArrivalStats * arrival)
2066 {
2067   GST_DEBUG ("received APP");
2068 }
2069
2070 static gboolean
2071 rtp_session_request_local_key_unit (RTPSession * sess, RTPSource * src,
2072     gboolean fir, GstClockTime current_time)
2073 {
2074   guint32 round_trip = 0;
2075
2076   rtp_source_get_last_rb (src, NULL, NULL, NULL, NULL, NULL, NULL, &round_trip);
2077
2078   if (sess->last_keyframe_request != GST_CLOCK_TIME_NONE && round_trip) {
2079     GstClockTime round_trip_in_ns = gst_util_uint64_scale (round_trip,
2080         GST_SECOND, 65536);
2081
2082     if (current_time - sess->last_keyframe_request < 2 * round_trip_in_ns) {
2083       GST_DEBUG ("Ignoring %s request because one was send without one "
2084           "RTT (%" GST_TIME_FORMAT " < %" GST_TIME_FORMAT ")",
2085           fir ? "FIR" : "PLI",
2086           GST_TIME_ARGS (current_time - sess->last_keyframe_request),
2087           GST_TIME_ARGS (round_trip_in_ns));;
2088       return FALSE;
2089     }
2090   }
2091
2092   sess->last_keyframe_request = current_time;
2093
2094   GST_LOG ("received %s request from %X %p(%p)", fir ? "FIR" : "PLI",
2095       rtp_source_get_ssrc (src), sess->callbacks.process_rtp,
2096       sess->callbacks.request_key_unit);
2097
2098   RTP_SESSION_UNLOCK (sess);
2099   sess->callbacks.request_key_unit (sess, fir,
2100       sess->request_key_unit_user_data);
2101   RTP_SESSION_LOCK (sess);
2102
2103   return TRUE;
2104 }
2105
2106 static void
2107 rtp_session_process_pli (RTPSession * sess, guint32 sender_ssrc,
2108     guint32 media_ssrc, GstClockTime current_time)
2109 {
2110   RTPSource *src;
2111
2112   if (!sess->callbacks.request_key_unit)
2113     return;
2114
2115   src = find_source (sess, sender_ssrc);
2116   if (!src)
2117     return;
2118
2119   rtp_session_request_local_key_unit (sess, src, FALSE, current_time);
2120 }
2121
2122 static void
2123 rtp_session_process_fir (RTPSession * sess, guint32 sender_ssrc,
2124     guint8 * fci_data, guint fci_length, GstClockTime current_time)
2125 {
2126   RTPSource *src;
2127   guint32 ssrc;
2128   guint position = 0;
2129   gboolean our_request = FALSE;
2130
2131   if (!sess->callbacks.request_key_unit)
2132     return;
2133
2134   if (fci_length < 8)
2135     return;
2136
2137   src = find_source (sess, sender_ssrc);
2138
2139   /* Hack because Google fails to set the sender_ssrc correctly */
2140   if (!src && sender_ssrc == 1) {
2141     GHashTableIter iter;
2142
2143     /* we can't find the source if there are multiple */
2144     if (sess->stats.sender_sources > sess->stats.internal_sender_sources + 1)
2145       return;
2146
2147     g_hash_table_iter_init (&iter, sess->ssrcs[sess->mask_idx]);
2148     while (g_hash_table_iter_next (&iter, NULL, (gpointer *) & src)) {
2149       if (!src->internal && rtp_source_is_sender (src))
2150         break;
2151       src = NULL;
2152     }
2153   }
2154   if (!src)
2155     return;
2156
2157   for (position = 0; position < fci_length; position += 8) {
2158     guint8 *data = fci_data + position;
2159     RTPSource *own;
2160
2161     ssrc = GST_READ_UINT32_BE (data);
2162
2163     own = find_source (sess, ssrc);
2164     if (own->internal) {
2165       our_request = TRUE;
2166       break;
2167     }
2168   }
2169   if (!our_request)
2170     return;
2171
2172   rtp_session_request_local_key_unit (sess, src, TRUE, current_time);
2173 }
2174
2175 static void
2176 rtp_session_process_nack (RTPSession * sess, guint32 sender_ssrc,
2177     guint32 media_ssrc, guint8 * fci_data, guint fci_length,
2178     GstClockTime current_time)
2179 {
2180   if (!sess->callbacks.notify_nack)
2181     return;
2182
2183   while (fci_length > 0) {
2184     guint16 seqnum, blp;
2185
2186     seqnum = GST_READ_UINT16_BE (fci_data);
2187     blp = GST_READ_UINT16_BE (fci_data + 2);
2188
2189     GST_DEBUG ("NACK #%u, blp %04x", seqnum, blp);
2190
2191     RTP_SESSION_UNLOCK (sess);
2192     sess->callbacks.notify_nack (sess, seqnum, blp,
2193         sess->notify_nack_user_data);
2194     RTP_SESSION_LOCK (sess);
2195
2196     fci_data += 4;
2197     fci_length -= 4;
2198   }
2199 }
2200
2201 static void
2202 rtp_session_process_feedback (RTPSession * sess, GstRTCPPacket * packet,
2203     RTPArrivalStats * arrival, GstClockTime current_time)
2204 {
2205   GstRTCPType type = gst_rtcp_packet_get_type (packet);
2206   GstRTCPFBType fbtype = gst_rtcp_packet_fb_get_type (packet);
2207   guint32 sender_ssrc = gst_rtcp_packet_fb_get_sender_ssrc (packet);
2208   guint32 media_ssrc = gst_rtcp_packet_fb_get_media_ssrc (packet);
2209   guint8 *fci_data = gst_rtcp_packet_fb_get_fci (packet);
2210   guint fci_length = 4 * gst_rtcp_packet_fb_get_fci_length (packet);
2211   RTPSource *src;
2212
2213   GST_DEBUG ("received feedback %d:%d from %08X about %08X with FCI of "
2214       "length %d", type, fbtype, sender_ssrc, media_ssrc, fci_length);
2215
2216   if (g_signal_has_handler_pending (sess,
2217           rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0, TRUE)) {
2218     GstBuffer *fci_buffer = NULL;
2219
2220     if (fci_length > 0) {
2221       fci_buffer = gst_buffer_copy_region (packet->rtcp->buffer,
2222           GST_BUFFER_COPY_MEMORY, fci_data - packet->rtcp->map.data,
2223           fci_length);
2224       GST_BUFFER_TIMESTAMP (fci_buffer) = arrival->running_time;
2225     }
2226
2227     RTP_SESSION_UNLOCK (sess);
2228     g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_FEEDBACK_RTCP], 0,
2229         type, fbtype, sender_ssrc, media_ssrc, fci_buffer);
2230     RTP_SESSION_LOCK (sess);
2231
2232     if (fci_buffer)
2233       gst_buffer_unref (fci_buffer);
2234   }
2235
2236   src = find_source (sess, media_ssrc);
2237   if (!src)
2238     return;
2239
2240   if (sess->rtcp_feedback_retention_window) {
2241     rtp_source_retain_rtcp_packet (src, packet, arrival->running_time);
2242   }
2243
2244   if (src->internal ||
2245       /* PSFB FIR puts the media ssrc inside the FCI */
2246       (type == GST_RTCP_TYPE_PSFB && fbtype == GST_RTCP_PSFB_TYPE_FIR)) {
2247     switch (type) {
2248       case GST_RTCP_TYPE_PSFB:
2249         switch (fbtype) {
2250           case GST_RTCP_PSFB_TYPE_PLI:
2251             rtp_session_process_pli (sess, sender_ssrc, media_ssrc,
2252                 current_time);
2253             break;
2254           case GST_RTCP_PSFB_TYPE_FIR:
2255             rtp_session_process_fir (sess, sender_ssrc, fci_data, fci_length,
2256                 current_time);
2257             break;
2258           default:
2259             break;
2260         }
2261         break;
2262       case GST_RTCP_TYPE_RTPFB:
2263         switch (fbtype) {
2264           case GST_RTCP_RTPFB_TYPE_NACK:
2265             rtp_session_process_nack (sess, sender_ssrc, media_ssrc,
2266                 fci_data, fci_length, current_time);
2267             break;
2268           default:
2269             break;
2270         }
2271       default:
2272         break;
2273     }
2274   }
2275 }
2276
2277 /**
2278  * rtp_session_process_rtcp:
2279  * @sess: and #RTPSession
2280  * @buffer: an RTCP buffer
2281  * @current_time: the current system time
2282  * @ntpnstime: the current NTP time in nanoseconds
2283  *
2284  * Process an RTCP buffer in the session manager. This function takes ownership
2285  * of @buffer.
2286  *
2287  * Returns: a #GstFlowReturn.
2288  */
2289 GstFlowReturn
2290 rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
2291     GstClockTime current_time, guint64 ntpnstime)
2292 {
2293   GstRTCPPacket packet;
2294   gboolean more, is_bye = FALSE, do_sync = FALSE;
2295   RTPArrivalStats arrival = { NULL, };
2296   GstFlowReturn result = GST_FLOW_OK;
2297   GstRTCPBuffer rtcp = { NULL, };
2298
2299   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2300   g_return_val_if_fail (GST_IS_BUFFER (buffer), GST_FLOW_ERROR);
2301
2302   if (!gst_rtcp_buffer_validate (buffer))
2303     goto invalid_packet;
2304
2305   GST_DEBUG ("received RTCP packet");
2306
2307   RTP_SESSION_LOCK (sess);
2308   /* update arrival stats */
2309   update_arrival_stats (sess, &arrival, FALSE, buffer, current_time, -1,
2310       ntpnstime);
2311
2312   /* start processing the compound packet */
2313   gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp);
2314   more = gst_rtcp_buffer_get_first_packet (&rtcp, &packet);
2315   while (more) {
2316     GstRTCPType type;
2317
2318     type = gst_rtcp_packet_get_type (&packet);
2319
2320     /* when we are leaving the session, we should ignore all non-BYE messages */
2321     if (sess->scheduled_bye && type != GST_RTCP_TYPE_BYE) {
2322       GST_DEBUG ("ignoring non-BYE RTCP packet because we are leaving");
2323       goto next;
2324     }
2325
2326     switch (type) {
2327       case GST_RTCP_TYPE_SR:
2328         rtp_session_process_sr (sess, &packet, &arrival, &do_sync);
2329         break;
2330       case GST_RTCP_TYPE_RR:
2331         rtp_session_process_rr (sess, &packet, &arrival);
2332         break;
2333       case GST_RTCP_TYPE_SDES:
2334         rtp_session_process_sdes (sess, &packet, &arrival);
2335         break;
2336       case GST_RTCP_TYPE_BYE:
2337         is_bye = TRUE;
2338         /* don't try to attempt lip-sync anymore for streams with a BYE */
2339         do_sync = FALSE;
2340         rtp_session_process_bye (sess, &packet, &arrival);
2341         break;
2342       case GST_RTCP_TYPE_APP:
2343         rtp_session_process_app (sess, &packet, &arrival);
2344         break;
2345       case GST_RTCP_TYPE_RTPFB:
2346       case GST_RTCP_TYPE_PSFB:
2347         rtp_session_process_feedback (sess, &packet, &arrival, current_time);
2348         break;
2349       default:
2350         GST_WARNING ("got unknown RTCP packet");
2351         break;
2352     }
2353   next:
2354     more = gst_rtcp_packet_move_to_next (&packet);
2355   }
2356
2357   gst_rtcp_buffer_unmap (&rtcp);
2358
2359   /* if we are scheduling a BYE, we only want to count bye packets, else we
2360    * count everything */
2361   if (sess->scheduled_bye) {
2362     if (is_bye) {
2363       sess->stats.bye_members++;
2364       UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2365     }
2366   } else {
2367     /* keep track of average packet size */
2368     UPDATE_AVG (sess->stats.avg_rtcp_packet_size, arrival.bytes);
2369   }
2370   GST_DEBUG ("%p, received RTCP packet, avg size %u, %u", &sess->stats,
2371       sess->stats.avg_rtcp_packet_size, arrival.bytes);
2372   RTP_SESSION_UNLOCK (sess);
2373
2374   clean_arrival_stats (&arrival);
2375
2376   /* notify caller of sr packets in the callback */
2377   if (do_sync && sess->callbacks.sync_rtcp) {
2378     result = sess->callbacks.sync_rtcp (sess, buffer,
2379         sess->sync_rtcp_user_data);
2380   } else
2381     gst_buffer_unref (buffer);
2382
2383   return result;
2384
2385   /* ERRORS */
2386 invalid_packet:
2387   {
2388     GST_DEBUG ("invalid RTCP packet received");
2389     gst_buffer_unref (buffer);
2390     return GST_FLOW_OK;
2391   }
2392 }
2393
2394 /**
2395  * rtp_session_update_send_caps:
2396  * @sess: an #RTPSession
2397  * @caps: a #GstCaps
2398  *
2399  * Update the caps of the sender in the rtp session.
2400  */
2401 void
2402 rtp_session_update_send_caps (RTPSession * sess, GstCaps * caps)
2403 {
2404   GstStructure *s;
2405   guint ssrc;
2406
2407   g_return_if_fail (RTP_IS_SESSION (sess));
2408   g_return_if_fail (GST_IS_CAPS (caps));
2409
2410   GST_LOG ("received caps %" GST_PTR_FORMAT, caps);
2411
2412   s = gst_caps_get_structure (caps, 0);
2413
2414   if (gst_structure_get_uint (s, "ssrc", &ssrc)) {
2415     RTPSource *source;
2416     gboolean created;
2417
2418     RTP_SESSION_LOCK (sess);
2419     source = obtain_internal_source (sess, ssrc, &created);
2420     if (source) {
2421       rtp_source_update_caps (source, caps);
2422       g_object_unref (source);
2423     }
2424     RTP_SESSION_UNLOCK (sess);
2425   }
2426 }
2427
2428 /**
2429  * rtp_session_send_rtp:
2430  * @sess: an #RTPSession
2431  * @data: pointer to either an RTP buffer or a list of RTP buffers
2432  * @is_list: TRUE when @data is a buffer list
2433  * @current_time: the current system time
2434  * @running_time: the running time of @data
2435  *
2436  * Send the RTP buffer in the session manager. This function takes ownership of
2437  * @buffer.
2438  *
2439  * Returns: a #GstFlowReturn.
2440  */
2441 GstFlowReturn
2442 rtp_session_send_rtp (RTPSession * sess, gpointer data, gboolean is_list,
2443     GstClockTime current_time, GstClockTime running_time)
2444 {
2445   GstFlowReturn result;
2446   RTPSource *source;
2447   gboolean prevsender;
2448   guint64 oldrate;
2449   GstBuffer *buffer;
2450   GstRTPBuffer rtp = { NULL };
2451   guint32 ssrc;
2452   gboolean created;
2453
2454   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2455   g_return_val_if_fail (is_list || GST_IS_BUFFER (data), GST_FLOW_ERROR);
2456
2457   GST_LOG ("received RTP %s for sending", is_list ? "list" : "packet");
2458
2459   if (is_list) {
2460     GstBufferList *list = GST_BUFFER_LIST_CAST (data);
2461
2462     buffer = gst_buffer_list_get (list, 0);
2463     if (!buffer)
2464       goto no_buffer;
2465   } else {
2466     buffer = GST_BUFFER_CAST (data);
2467   }
2468
2469   if (!gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtp))
2470     goto invalid_packet;
2471
2472   /* get SSRC and look up in session database */
2473   ssrc = gst_rtp_buffer_get_ssrc (&rtp);
2474
2475   gst_rtp_buffer_unmap (&rtp);
2476
2477   RTP_SESSION_LOCK (sess);
2478   source = obtain_internal_source (sess, ssrc, &created);
2479
2480   /* update last activity */
2481   source->last_rtp_activity = current_time;
2482
2483   prevsender = RTP_SOURCE_IS_SENDER (source);
2484   oldrate = source->bitrate;
2485
2486   /* we use our own source to send */
2487   result = rtp_source_send_rtp (source, data, is_list, running_time);
2488
2489   source_update_sender (sess, source, prevsender);
2490
2491   if (oldrate != source->bitrate)
2492     sess->recalc_bandwidth = TRUE;
2493   RTP_SESSION_UNLOCK (sess);
2494
2495   g_object_unref (source);
2496
2497   return result;
2498
2499 invalid_packet:
2500   {
2501     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
2502     GST_DEBUG ("invalid RTP packet received");
2503     return GST_FLOW_OK;
2504   }
2505 no_buffer:
2506   {
2507     gst_mini_object_unref (GST_MINI_OBJECT_CAST (data));
2508     GST_DEBUG ("no buffer in list");
2509     return GST_FLOW_OK;
2510   }
2511 }
2512
2513 static void
2514 add_bitrates (gpointer key, RTPSource * source, gdouble * bandwidth)
2515 {
2516   *bandwidth += source->bitrate;
2517 }
2518
2519 /* must be called with session lock */
2520 static GstClockTime
2521 calculate_rtcp_interval (RTPSession * sess, gboolean deterministic,
2522     gboolean first)
2523 {
2524   GstClockTime result;
2525
2526   /* recalculate bandwidth when it changed */
2527   if (sess->recalc_bandwidth) {
2528     gdouble bandwidth;
2529
2530     if (sess->bandwidth > 0)
2531       bandwidth = sess->bandwidth;
2532     else {
2533       /* If it is <= 0, then try to estimate the actual bandwidth */
2534       bandwidth = 0;
2535
2536       g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2537           (GHFunc) add_bitrates, &bandwidth);
2538       bandwidth /= 8.0;
2539     }
2540     if (bandwidth < 8000)
2541       bandwidth = RTP_STATS_BANDWIDTH;
2542
2543     rtp_stats_set_bandwidths (&sess->stats, bandwidth,
2544         sess->rtcp_bandwidth, sess->rtcp_rs_bandwidth, sess->rtcp_rr_bandwidth);
2545
2546     sess->recalc_bandwidth = FALSE;
2547   }
2548
2549   if (sess->scheduled_bye) {
2550     result = rtp_stats_calculate_bye_interval (&sess->stats);
2551   } else {
2552     result = rtp_stats_calculate_rtcp_interval (&sess->stats,
2553         sess->stats.internal_sender_sources > 0, first);
2554   }
2555
2556   GST_DEBUG ("next deterministic interval: %" GST_TIME_FORMAT ", first %d",
2557       GST_TIME_ARGS (result), first);
2558
2559   if (!deterministic && result != GST_CLOCK_TIME_NONE)
2560     result = rtp_stats_add_rtcp_jitter (&sess->stats, result);
2561
2562   GST_DEBUG ("next interval: %" GST_TIME_FORMAT, GST_TIME_ARGS (result));
2563
2564   return result;
2565 }
2566
2567 static void
2568 source_mark_bye (const gchar * key, RTPSource * source, const gchar * reason)
2569 {
2570   if (source->internal)
2571     rtp_source_mark_bye (source, reason);
2572 }
2573
2574 /**
2575  * rtp_session_mark_all_bye:
2576  * @sess: an #RTPSession
2577  * @reason: a reason
2578  *
2579  * Mark all internal sources of the session as BYE with @reason.
2580  */
2581 void
2582 rtp_session_mark_all_bye (RTPSession * sess, const gchar * reason)
2583 {
2584   g_return_if_fail (RTP_IS_SESSION (sess));
2585
2586   RTP_SESSION_LOCK (sess);
2587   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2588       (GHFunc) source_mark_bye, (gpointer) reason);
2589   RTP_SESSION_UNLOCK (sess);
2590 }
2591
2592 /* Stop the current @sess and schedule a BYE message for the other members.
2593  * One must have the session lock to call this function
2594  */
2595 static GstFlowReturn
2596 rtp_session_schedule_bye_locked (RTPSession * sess, GstClockTime current_time)
2597 {
2598   GstFlowReturn result = GST_FLOW_OK;
2599   GstClockTime interval;
2600
2601   /* nothing to do it we already scheduled bye */
2602   if (sess->scheduled_bye)
2603     goto done;
2604
2605   /* we schedule BYE now */
2606   sess->scheduled_bye = TRUE;
2607   /* at least one member wants to send a BYE */
2608   INIT_AVG (sess->stats.avg_rtcp_packet_size, 100);
2609   sess->stats.bye_members = 1;
2610   sess->first_rtcp = TRUE;
2611   sess->allow_early = TRUE;
2612
2613   /* reschedule transmission */
2614   sess->last_rtcp_send_time = current_time;
2615   interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2616
2617   if (interval != GST_CLOCK_TIME_NONE)
2618     sess->next_rtcp_check_time = current_time + interval;
2619   else
2620     sess->next_rtcp_check_time = GST_CLOCK_TIME_NONE;
2621
2622   GST_DEBUG ("Schedule BYE for %" GST_TIME_FORMAT ", %" GST_TIME_FORMAT,
2623       GST_TIME_ARGS (interval), GST_TIME_ARGS (sess->next_rtcp_check_time));
2624
2625   RTP_SESSION_UNLOCK (sess);
2626   /* notify app of reconsideration */
2627   if (sess->callbacks.reconsider)
2628     sess->callbacks.reconsider (sess, sess->reconsider_user_data);
2629   RTP_SESSION_LOCK (sess);
2630 done:
2631
2632   return result;
2633 }
2634
2635 /**
2636  * rtp_session_schedule_bye:
2637  * @sess: an #RTPSession
2638  * @current_time: the current system time
2639  *
2640  * Schedule a BYE message for all sources marked as BYE in @sess.
2641  *
2642  * Returns: a #GstFlowReturn.
2643  */
2644 GstFlowReturn
2645 rtp_session_schedule_bye (RTPSession * sess, GstClockTime current_time)
2646 {
2647   GstFlowReturn result = GST_FLOW_OK;
2648
2649   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
2650
2651   RTP_SESSION_LOCK (sess);
2652   result = rtp_session_schedule_bye_locked (sess, current_time);
2653   RTP_SESSION_UNLOCK (sess);
2654
2655   return result;
2656 }
2657
2658 /**
2659  * rtp_session_next_timeout:
2660  * @sess: an #RTPSession
2661  * @current_time: the current system time
2662  *
2663  * Get the next time we should perform session maintenance tasks.
2664  *
2665  * Returns: a time when rtp_session_on_timeout() should be called with the
2666  * current system time.
2667  */
2668 GstClockTime
2669 rtp_session_next_timeout (RTPSession * sess, GstClockTime current_time)
2670 {
2671   GstClockTime result, interval = 0;
2672
2673   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_CLOCK_TIME_NONE);
2674
2675   RTP_SESSION_LOCK (sess);
2676
2677   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time)) {
2678     GST_DEBUG ("have early rtcp time");
2679     result = sess->next_early_rtcp_time;
2680     goto early_exit;
2681   }
2682
2683   result = sess->next_rtcp_check_time;
2684
2685   GST_DEBUG ("current time: %" GST_TIME_FORMAT
2686       ", next time: %" GST_TIME_FORMAT,
2687       GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2688
2689   if (result == GST_CLOCK_TIME_NONE || result < current_time) {
2690     GST_DEBUG ("take current time as base");
2691     /* our previous check time expired, start counting from the current time
2692      * again. */
2693     result = current_time;
2694   }
2695
2696   if (sess->scheduled_bye) {
2697     if (sess->stats.active_sources >= 50) {
2698       GST_DEBUG ("reconsider BYE, more than 50 sources");
2699       /* reconsider BYE if members >= 50 */
2700       interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2701     }
2702   } else {
2703     if (sess->first_rtcp) {
2704       GST_DEBUG ("first RTCP packet");
2705       /* we are called for the first time */
2706       interval = calculate_rtcp_interval (sess, FALSE, TRUE);
2707     } else if (sess->next_rtcp_check_time < current_time) {
2708       GST_DEBUG ("old check time expired, getting new timeout");
2709       /* get a new timeout when we need to */
2710       interval = calculate_rtcp_interval (sess, FALSE, FALSE);
2711     }
2712   }
2713
2714   if (interval != GST_CLOCK_TIME_NONE)
2715     result += interval;
2716   else
2717     result = GST_CLOCK_TIME_NONE;
2718
2719   sess->next_rtcp_check_time = result;
2720
2721 early_exit:
2722
2723   GST_DEBUG ("current time: %" GST_TIME_FORMAT
2724       ", next time: %" GST_TIME_FORMAT,
2725       GST_TIME_ARGS (current_time), GST_TIME_ARGS (result));
2726   RTP_SESSION_UNLOCK (sess);
2727
2728   return result;
2729 }
2730
2731 typedef struct
2732 {
2733   RTPSource *source;
2734   gboolean is_bye;
2735   GstBuffer *buffer;
2736 } ReportOutput;
2737
2738 typedef struct
2739 {
2740   GstRTCPBuffer rtcpbuf;
2741   RTPSession *sess;
2742   RTPSource *source;
2743   guint num_to_report;
2744   gboolean have_fir;
2745   gboolean have_pli;
2746   gboolean have_nack;
2747   GstBuffer *rtcp;
2748   GstClockTime current_time;
2749   guint64 ntpnstime;
2750   GstClockTime running_time;
2751   GstClockTime interval;
2752   GstRTCPPacket packet;
2753   gboolean has_sdes;
2754   gboolean is_early;
2755   gboolean may_suppress;
2756   GQueue output;
2757 } ReportData;
2758
2759 static void
2760 session_start_rtcp (RTPSession * sess, ReportData * data)
2761 {
2762   GstRTCPPacket *packet = &data->packet;
2763   RTPSource *own = data->source;
2764   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2765
2766   data->rtcp = gst_rtcp_buffer_new (sess->mtu);
2767   data->has_sdes = FALSE;
2768
2769   gst_rtcp_buffer_map (data->rtcp, GST_MAP_READWRITE, rtcp);
2770
2771   if (RTP_SOURCE_IS_SENDER (own)) {
2772     guint64 ntptime;
2773     guint32 rtptime;
2774     guint32 packet_count, octet_count;
2775
2776     /* we are a sender, create SR */
2777     GST_DEBUG ("create SR for SSRC %08x", own->ssrc);
2778     gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SR, packet);
2779
2780     /* get latest stats */
2781     rtp_source_get_new_sr (own, data->ntpnstime, data->running_time,
2782         &ntptime, &rtptime, &packet_count, &octet_count);
2783     /* store stats */
2784     rtp_source_process_sr (own, data->current_time, ntptime, rtptime,
2785         packet_count, octet_count);
2786
2787     /* fill in sender report info */
2788     gst_rtcp_packet_sr_set_sender_info (packet, own->ssrc,
2789         ntptime, rtptime, packet_count, octet_count);
2790   } else {
2791     /* we are only receiver, create RR */
2792     GST_DEBUG ("create RR for SSRC %08x", own->ssrc);
2793     gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_RR, packet);
2794     gst_rtcp_packet_rr_set_ssrc (packet, own->ssrc);
2795   }
2796 }
2797
2798 /* construct a Sender or Receiver Report */
2799 static void
2800 session_report_blocks (const gchar * key, RTPSource * source, ReportData * data)
2801 {
2802   RTPSession *sess = data->sess;
2803   GstRTCPPacket *packet = &data->packet;
2804   guint8 fractionlost;
2805   gint32 packetslost;
2806   guint32 exthighestseq, jitter;
2807   guint32 lsr, dlsr;
2808
2809   /* don't report for sources in future generations */
2810   if (((gint16) (source->generation - sess->generation)) > 0) {
2811     GST_DEBUG ("source %08x generation %u > %u", source->ssrc,
2812         source->generation, sess->generation);
2813     return;
2814   }
2815
2816   /* only report about other sender */
2817   if (source == data->source)
2818     goto reported;
2819
2820   if (gst_rtcp_packet_get_rb_count (packet) == GST_RTCP_MAX_RB_COUNT) {
2821     GST_DEBUG ("max RB count reached");
2822     return;
2823   }
2824
2825   if (!RTP_SOURCE_IS_SENDER (source)) {
2826     GST_DEBUG ("source %08x not sender", source->ssrc);
2827     goto reported;
2828   }
2829
2830   GST_DEBUG ("create RB for SSRC %08x", source->ssrc);
2831
2832   /* get new stats */
2833   rtp_source_get_new_rb (source, data->current_time, &fractionlost,
2834       &packetslost, &exthighestseq, &jitter, &lsr, &dlsr);
2835
2836   /* store last generated RR packet */
2837   source->last_rr.is_valid = TRUE;
2838   source->last_rr.fractionlost = fractionlost;
2839   source->last_rr.packetslost = packetslost;
2840   source->last_rr.exthighestseq = exthighestseq;
2841   source->last_rr.jitter = jitter;
2842   source->last_rr.lsr = lsr;
2843   source->last_rr.dlsr = dlsr;
2844
2845   /* packet is not yet filled, add report block for this source. */
2846   gst_rtcp_packet_add_rb (packet, source->ssrc, fractionlost, packetslost,
2847       exthighestseq, jitter, lsr, dlsr);
2848
2849 reported:
2850   /* source is reported, move to next generation */
2851   source->generation = sess->generation + 1;
2852
2853   /* if we reported all sources in this generation, move to next */
2854   if (--data->num_to_report == 0) {
2855     sess->generation++;
2856     GST_DEBUG ("all reported, generation now %u", sess->generation);
2857   }
2858 }
2859
2860 /* construct FIR */
2861 static void
2862 session_add_fir (const gchar * key, RTPSource * source, ReportData * data)
2863 {
2864   GstRTCPPacket *packet = &data->packet;
2865   guint16 len;
2866   guint8 *fci_data;
2867
2868   if (!source->send_fir)
2869     return;
2870
2871   len = gst_rtcp_packet_fb_get_fci_length (packet);
2872   if (!gst_rtcp_packet_fb_set_fci_length (packet, len + 2))
2873     /* exit because the packet is full, will put next request in a
2874      * further packet */
2875     return;
2876
2877   fci_data = gst_rtcp_packet_fb_get_fci (packet) + (len * 4);
2878
2879   GST_WRITE_UINT32_BE (fci_data, source->ssrc);
2880   fci_data += 4;
2881   fci_data[0] = source->current_send_fir_seqnum;
2882   fci_data[1] = fci_data[2] = fci_data[3] = 0;
2883
2884   source->send_fir = FALSE;
2885 }
2886
2887 static void
2888 session_fir (RTPSession * sess, ReportData * data)
2889 {
2890   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2891   GstRTCPPacket *packet = &data->packet;
2892
2893   if (!gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_PSFB, packet))
2894     return;
2895
2896   gst_rtcp_packet_fb_set_type (packet, GST_RTCP_PSFB_TYPE_FIR);
2897   gst_rtcp_packet_fb_set_sender_ssrc (packet, data->source->ssrc);
2898   gst_rtcp_packet_fb_set_media_ssrc (packet, 0);
2899
2900   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
2901       (GHFunc) session_add_fir, data);
2902
2903   if (gst_rtcp_packet_fb_get_fci_length (packet) == 0)
2904     gst_rtcp_packet_remove (packet);
2905   else
2906     data->may_suppress = FALSE;
2907 }
2908
2909 static gboolean
2910 has_pli_compare_func (gconstpointer a, gconstpointer ignored)
2911 {
2912   GstRTCPPacket packet;
2913   GstRTCPBuffer rtcp = { NULL, };
2914   gboolean ret = FALSE;
2915
2916   gst_rtcp_buffer_map ((GstBuffer *) a, GST_MAP_READ, &rtcp);
2917
2918   if (gst_rtcp_buffer_get_first_packet (&rtcp, &packet)) {
2919     if (gst_rtcp_packet_get_type (&packet) == GST_RTCP_TYPE_PSFB &&
2920         gst_rtcp_packet_fb_get_type (&packet) == GST_RTCP_PSFB_TYPE_PLI)
2921       ret = TRUE;
2922   }
2923
2924   gst_rtcp_buffer_unmap (&rtcp);
2925
2926   return ret;
2927 }
2928
2929 /* construct PLI */
2930 static void
2931 session_pli (const gchar * key, RTPSource * source, ReportData * data)
2932 {
2933   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2934   GstRTCPPacket *packet = &data->packet;
2935
2936   if (!source->send_pli)
2937     return;
2938
2939   if (rtp_source_has_retained (source, has_pli_compare_func, NULL))
2940     return;
2941
2942   if (!gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_PSFB, packet))
2943     /* exit because the packet is full, will put next request in a
2944      * further packet */
2945     return;
2946
2947   gst_rtcp_packet_fb_set_type (packet, GST_RTCP_PSFB_TYPE_PLI);
2948   gst_rtcp_packet_fb_set_sender_ssrc (packet, data->source->ssrc);
2949   gst_rtcp_packet_fb_set_media_ssrc (packet, source->ssrc);
2950
2951   source->send_pli = FALSE;
2952   data->may_suppress = FALSE;
2953 }
2954
2955 /* construct NACK */
2956 static void
2957 session_nack (const gchar * key, RTPSource * source, ReportData * data)
2958 {
2959   GstRTCPBuffer *rtcp = &data->rtcpbuf;
2960   GstRTCPPacket *packet = &data->packet;
2961   guint32 *nacks;
2962   guint n_nacks, i;
2963   guint8 *fci_data;
2964
2965   if (!source->send_nack)
2966     return;
2967
2968   if (!gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_RTPFB, packet))
2969     /* exit because the packet is full, will put next request in a
2970      * further packet */
2971     return;
2972
2973   gst_rtcp_packet_fb_set_type (packet, GST_RTCP_RTPFB_TYPE_NACK);
2974   gst_rtcp_packet_fb_set_sender_ssrc (packet, data->source->ssrc);
2975   gst_rtcp_packet_fb_set_media_ssrc (packet, source->ssrc);
2976
2977   nacks = rtp_source_get_nacks (source, &n_nacks);
2978   GST_DEBUG ("%u NACKs", n_nacks);
2979   if (!gst_rtcp_packet_fb_set_fci_length (packet, n_nacks))
2980     return;
2981
2982   fci_data = gst_rtcp_packet_fb_get_fci (packet);
2983   for (i = 0; i < n_nacks; i++) {
2984     GST_WRITE_UINT32_BE (fci_data, nacks[i]);
2985     fci_data += 4;
2986   }
2987
2988   rtp_source_clear_nacks (source);
2989   data->may_suppress = FALSE;
2990 }
2991
2992 /* perform cleanup of sources that timed out */
2993 static void
2994 session_cleanup (const gchar * key, RTPSource * source, ReportData * data)
2995 {
2996   gboolean remove = FALSE;
2997   gboolean byetimeout = FALSE;
2998   gboolean sendertimeout = FALSE;
2999   gboolean is_sender, is_active;
3000   RTPSession *sess = data->sess;
3001   GstClockTime interval, binterval;
3002   GstClockTime btime;
3003
3004   GST_DEBUG ("look at %08x, generation %u", source->ssrc, source->generation);
3005
3006   /* check for outdated collisions */
3007   if (source->internal) {
3008     GST_DEBUG ("Timing out collisions for %x", source->ssrc);
3009     rtp_source_timeout (source, data->current_time,
3010         /* "a relatively long time" -- RFC 3550 section 8.2 */
3011         RTP_STATS_MIN_INTERVAL * GST_SECOND * 10,
3012         data->running_time - sess->rtcp_feedback_retention_window);
3013   }
3014
3015   /* nothing else to do when without RTCP */
3016   if (data->interval == GST_CLOCK_TIME_NONE)
3017     return;
3018
3019   is_sender = RTP_SOURCE_IS_SENDER (source);
3020   is_active = RTP_SOURCE_IS_ACTIVE (source);
3021
3022   /* our own rtcp interval may have been forced low by secondary configuration,
3023    * while sender side may still operate with higher interval,
3024    * so do not just take our interval to decide on timing out sender,
3025    * but take (if data->interval <= 5 * GST_SECOND):
3026    *   interval = CLAMP (sender_interval, data->interval, 5 * GST_SECOND)
3027    * where sender_interval is difference between last 2 received RTCP reports
3028    */
3029   if (data->interval >= 5 * GST_SECOND || source->internal) {
3030     binterval = data->interval;
3031   } else {
3032     GST_LOG ("prev_rtcp %" GST_TIME_FORMAT ", last_rtcp %" GST_TIME_FORMAT,
3033         GST_TIME_ARGS (source->stats.prev_rtcptime),
3034         GST_TIME_ARGS (source->stats.last_rtcptime));
3035     /* if not received enough yet, fallback to larger default */
3036     if (source->stats.last_rtcptime > source->stats.prev_rtcptime)
3037       binterval = source->stats.last_rtcptime - source->stats.prev_rtcptime;
3038     else
3039       binterval = 5 * GST_SECOND;
3040     binterval = CLAMP (binterval, data->interval, 5 * GST_SECOND);
3041   }
3042   GST_LOG ("timeout base interval %" GST_TIME_FORMAT,
3043       GST_TIME_ARGS (binterval));
3044
3045   if (!source->internal) {
3046     if (source->marked_bye) {
3047       /* if we received a BYE from the source, remove the source after some
3048        * time. */
3049       if (data->current_time > source->bye_time &&
3050           data->current_time - source->bye_time > sess->stats.bye_timeout) {
3051         GST_DEBUG ("removing BYE source %08x", source->ssrc);
3052         remove = TRUE;
3053         byetimeout = TRUE;
3054       }
3055     }
3056     /* sources that were inactive for more than 5 times the deterministic reporting
3057      * interval get timed out. the min timeout is 5 seconds. */
3058     /* mind old time that might pre-date last time going to PLAYING */
3059     btime = MAX (source->last_activity, sess->start_time);
3060     if (data->current_time > btime) {
3061       interval = MAX (binterval * 5, 5 * GST_SECOND);
3062       if (data->current_time - btime > interval) {
3063         GST_DEBUG ("removing timeout source %08x, last %" GST_TIME_FORMAT,
3064             source->ssrc, GST_TIME_ARGS (btime));
3065         remove = TRUE;
3066       }
3067     }
3068   }
3069
3070   /* senders that did not send for a long time become a receiver, this also
3071    * holds for our own sources. */
3072   if (is_sender) {
3073     /* mind old time that might pre-date last time going to PLAYING */
3074     btime = MAX (source->last_rtp_activity, sess->start_time);
3075     if (data->current_time > btime) {
3076       interval = MAX (binterval * 2, 5 * GST_SECOND);
3077       if (data->current_time - btime > interval) {
3078         if (source->internal && source->sent_bye) {
3079           /* an internal source is BYE and stopped sending RTP, remove */
3080           GST_DEBUG ("internal BYE source %08x timed out, last %"
3081               GST_TIME_FORMAT, source->ssrc, GST_TIME_ARGS (btime));
3082           remove = TRUE;
3083         } else {
3084           GST_DEBUG ("sender source %08x timed out and became receiver, last %"
3085               GST_TIME_FORMAT, source->ssrc, GST_TIME_ARGS (btime));
3086           sendertimeout = TRUE;
3087         }
3088       }
3089     }
3090   }
3091
3092   if (remove) {
3093     sess->total_sources--;
3094     if (is_sender) {
3095       sess->stats.sender_sources--;
3096       if (source->internal)
3097         sess->stats.internal_sender_sources--;
3098     }
3099     if (is_active)
3100       sess->stats.active_sources--;
3101
3102     if (source->internal)
3103       sess->stats.internal_sources--;
3104
3105     if (byetimeout)
3106       on_bye_timeout (sess, source);
3107     else
3108       on_timeout (sess, source);
3109   } else {
3110     if (sendertimeout) {
3111       source->is_sender = FALSE;
3112       sess->stats.sender_sources--;
3113       if (source->internal)
3114         sess->stats.internal_sender_sources--;
3115
3116       on_sender_timeout (sess, source);
3117     }
3118     /* count how many source to report in this generation */
3119     if (((gint16) (source->generation - sess->generation)) <= 0)
3120       data->num_to_report++;
3121   }
3122   source->closing = remove;
3123 }
3124
3125 static void
3126 session_sdes (RTPSession * sess, ReportData * data)
3127 {
3128   GstRTCPPacket *packet = &data->packet;
3129   const GstStructure *sdes;
3130   gint i, n_fields;
3131   GstRTCPBuffer *rtcp = &data->rtcpbuf;
3132
3133   /* add SDES packet */
3134   gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_SDES, packet);
3135
3136   gst_rtcp_packet_sdes_add_item (packet, data->source->ssrc);
3137
3138   sdes = rtp_source_get_sdes_struct (data->source);
3139
3140   /* add all fields in the structure, the order is not important. */
3141   n_fields = gst_structure_n_fields (sdes);
3142   for (i = 0; i < n_fields; ++i) {
3143     const gchar *field;
3144     const gchar *value;
3145     GstRTCPSDESType type;
3146
3147     field = gst_structure_nth_field_name (sdes, i);
3148     if (field == NULL)
3149       continue;
3150     value = gst_structure_get_string (sdes, field);
3151     if (value == NULL)
3152       continue;
3153     type = gst_rtcp_sdes_name_to_type (field);
3154
3155     /* Early packets are minimal and only include the CNAME */
3156     if (data->is_early && type != GST_RTCP_SDES_CNAME)
3157       continue;
3158
3159     if (type > GST_RTCP_SDES_END && type < GST_RTCP_SDES_PRIV) {
3160       gst_rtcp_packet_sdes_add_entry (packet, type, strlen (value),
3161           (const guint8 *) value);
3162     } else if (type == GST_RTCP_SDES_PRIV) {
3163       gsize prefix_len;
3164       gsize value_len;
3165       gsize data_len;
3166       guint8 data[256];
3167
3168       /* don't accept entries that are too big */
3169       prefix_len = strlen (field);
3170       if (prefix_len > 255)
3171         continue;
3172       value_len = strlen (value);
3173       if (value_len > 255)
3174         continue;
3175       data_len = 1 + prefix_len + value_len;
3176       if (data_len > 255)
3177         continue;
3178
3179       data[0] = prefix_len;
3180       memcpy (&data[1], field, prefix_len);
3181       memcpy (&data[1 + prefix_len], value, value_len);
3182
3183       gst_rtcp_packet_sdes_add_entry (packet, type, data_len, data);
3184     }
3185   }
3186
3187   data->has_sdes = TRUE;
3188 }
3189
3190 /* schedule a BYE packet */
3191 static void
3192 make_source_bye (RTPSession * sess, RTPSource * source, ReportData * data)
3193 {
3194   GstRTCPPacket *packet = &data->packet;
3195   GstRTCPBuffer *rtcp = &data->rtcpbuf;
3196
3197   /* add SDES */
3198   session_sdes (sess, data);
3199   /* add a BYE packet */
3200   gst_rtcp_buffer_add_packet (rtcp, GST_RTCP_TYPE_BYE, packet);
3201   gst_rtcp_packet_bye_add_ssrc (packet, source->ssrc);
3202   if (source->bye_reason)
3203     gst_rtcp_packet_bye_set_reason (packet, source->bye_reason);
3204
3205   /* we have a BYE packet now */
3206   source->sent_bye = TRUE;
3207 }
3208
3209 static gboolean
3210 is_rtcp_time (RTPSession * sess, GstClockTime current_time, ReportData * data)
3211 {
3212   GstClockTime new_send_time, elapsed;
3213
3214   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time))
3215     data->is_early = TRUE;
3216   else
3217     data->is_early = FALSE;
3218
3219   if (data->is_early && sess->next_early_rtcp_time < current_time)
3220     goto early;
3221
3222   /* no need to check yet */
3223   if (sess->next_rtcp_check_time == GST_CLOCK_TIME_NONE ||
3224       sess->next_rtcp_check_time > current_time) {
3225     GST_DEBUG ("no check time yet, next %" GST_TIME_FORMAT " > now %"
3226         GST_TIME_FORMAT, GST_TIME_ARGS (sess->next_rtcp_check_time),
3227         GST_TIME_ARGS (current_time));
3228     return FALSE;
3229   }
3230
3231   /* get elapsed time since we last reported */
3232   elapsed = current_time - sess->last_rtcp_send_time;
3233
3234   new_send_time = data->interval;
3235   /* perform forward reconsideration */
3236   if (new_send_time != GST_CLOCK_TIME_NONE) {
3237     new_send_time = rtp_stats_add_rtcp_jitter (&sess->stats, new_send_time);
3238
3239     GST_DEBUG ("forward reconsideration %" GST_TIME_FORMAT ", elapsed %"
3240         GST_TIME_FORMAT, GST_TIME_ARGS (new_send_time),
3241         GST_TIME_ARGS (elapsed));
3242
3243     new_send_time += sess->last_rtcp_send_time;
3244   }
3245
3246   /* check if reconsideration */
3247   if (new_send_time == GST_CLOCK_TIME_NONE || current_time < new_send_time) {
3248     GST_DEBUG ("reconsider RTCP for %" GST_TIME_FORMAT,
3249         GST_TIME_ARGS (new_send_time));
3250     /* store new check time */
3251     sess->next_rtcp_check_time = new_send_time;
3252     return FALSE;
3253   }
3254
3255 early:
3256
3257   new_send_time = calculate_rtcp_interval (sess, FALSE, FALSE);
3258
3259   GST_DEBUG ("can send RTCP now, next interval %" GST_TIME_FORMAT,
3260       GST_TIME_ARGS (new_send_time));
3261
3262   sess->next_rtcp_check_time = new_send_time;
3263   if (new_send_time != GST_CLOCK_TIME_NONE) {
3264     sess->next_rtcp_check_time += current_time;
3265
3266     /* Apply the rules from RFC 4585 section 3.5.3 */
3267     if (sess->stats.min_interval != 0 && !sess->first_rtcp) {
3268       GstClockTime T_rr_current_interval =
3269           g_random_double_range (0.5, 1.5) * sess->stats.min_interval;
3270
3271       /* This will caused the RTCP to be suppressed if no FB packets are added */
3272       if (sess->last_rtcp_send_time + T_rr_current_interval >
3273           sess->next_rtcp_check_time) {
3274         GST_DEBUG ("RTCP packet could be suppressed min: %" GST_TIME_FORMAT
3275             " last: %" GST_TIME_FORMAT
3276             " + T_rr_current_interval: %" GST_TIME_FORMAT
3277             " >  sess->next_rtcp_check_time: %" GST_TIME_FORMAT,
3278             GST_TIME_ARGS (sess->stats.min_interval),
3279             GST_TIME_ARGS (sess->last_rtcp_send_time),
3280             GST_TIME_ARGS (T_rr_current_interval),
3281             GST_TIME_ARGS (sess->next_rtcp_check_time));
3282         data->may_suppress = TRUE;
3283       }
3284     }
3285   }
3286
3287   return TRUE;
3288 }
3289
3290 static void
3291 clone_ssrcs_hashtable (gchar * key, RTPSource * source, GHashTable * hash_table)
3292 {
3293   g_hash_table_insert (hash_table, key, g_object_ref (source));
3294 }
3295
3296 static gboolean
3297 remove_closing_sources (const gchar * key, RTPSource * source,
3298     ReportData * data)
3299 {
3300   if (source->closing)
3301     return TRUE;
3302
3303   if (source->send_fir)
3304     data->have_fir = TRUE;
3305   if (source->send_pli)
3306     data->have_pli = TRUE;
3307   if (source->send_nack)
3308     data->have_nack = TRUE;
3309
3310   return FALSE;
3311 }
3312
3313 static void
3314 generate_rtcp (const gchar * key, RTPSource * source, ReportData * data)
3315 {
3316   RTPSession *sess = data->sess;
3317   gboolean is_bye = FALSE;
3318   ReportOutput *output;
3319
3320   /* only generate RTCP for active internal sources */
3321   if (!source->internal || source->sent_bye)
3322     return;
3323
3324   data->source = source;
3325
3326   /* open packet */
3327   session_start_rtcp (sess, data);
3328
3329   if (source->marked_bye) {
3330     /* send BYE */
3331     make_source_bye (sess, source, data);
3332     is_bye = TRUE;
3333   } else if (!data->is_early) {
3334     /* loop over all known sources and add report blocks. If we are early, we
3335      * just make a minimal RTCP packet and skip this step */
3336     g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3337         (GHFunc) session_report_blocks, data);
3338   }
3339   if (!data->has_sdes)
3340     session_sdes (sess, data);
3341
3342   if (data->have_fir)
3343     session_fir (sess, data);
3344
3345   if (data->have_pli)
3346     g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3347         (GHFunc) session_pli, data);
3348
3349   if (data->have_nack)
3350     g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3351         (GHFunc) session_nack, data);
3352
3353   gst_rtcp_buffer_unmap (&data->rtcpbuf);
3354
3355   output = g_slice_new (ReportOutput);
3356   output->source = g_object_ref (source);
3357   output->is_bye = is_bye;
3358   output->buffer = data->rtcp;
3359   /* queue the RTCP packet to push later */
3360   g_queue_push_tail (&data->output, output);
3361 }
3362
3363 /**
3364  * rtp_session_on_timeout:
3365  * @sess: an #RTPSession
3366  * @current_time: the current system time
3367  * @ntpnstime: the current NTP time in nanoseconds
3368  * @running_time: the current running_time of the pipeline
3369  *
3370  * Perform maintenance actions after the timeout obtained with
3371  * rtp_session_next_timeout() expired.
3372  *
3373  * This function will perform timeouts of receivers and senders, send a BYE
3374  * packet or generate RTCP packets with current session stats.
3375  *
3376  * This function can call the #RTPSessionSendRTCP callback, possibly multiple
3377  * times, for each packet that should be processed.
3378  *
3379  * Returns: a #GstFlowReturn.
3380  */
3381 GstFlowReturn
3382 rtp_session_on_timeout (RTPSession * sess, GstClockTime current_time,
3383     guint64 ntpnstime, GstClockTime running_time)
3384 {
3385   GstFlowReturn result = GST_FLOW_OK;
3386   ReportData data = { GST_RTCP_BUFFER_INIT };
3387   GHashTable *table_copy;
3388   ReportOutput *output;
3389
3390   g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
3391
3392   GST_DEBUG ("reporting at %" GST_TIME_FORMAT ", NTP time %" GST_TIME_FORMAT
3393       ", running-time %" GST_TIME_FORMAT, GST_TIME_ARGS (current_time),
3394       GST_TIME_ARGS (ntpnstime), GST_TIME_ARGS (running_time));
3395
3396   data.sess = sess;
3397   data.current_time = current_time;
3398   data.ntpnstime = ntpnstime;
3399   data.running_time = running_time;
3400   data.num_to_report = 0;
3401   data.may_suppress = FALSE;
3402   g_queue_init (&data.output);
3403
3404   RTP_SESSION_LOCK (sess);
3405   /* get a new interval, we need this for various cleanups etc */
3406   data.interval = calculate_rtcp_interval (sess, TRUE, sess->first_rtcp);
3407
3408   /* we need an internal source now */
3409   if (sess->stats.internal_sources == 0) {
3410     RTPSource *source;
3411     gboolean created;
3412
3413     source = obtain_internal_source (sess, sess->suggested_ssrc, &created);
3414     g_object_unref (source);
3415   }
3416
3417   /* Make a local copy of the hashtable. We need to do this because the
3418    * cleanup stage below releases the session lock. */
3419   table_copy = g_hash_table_new_full (NULL, NULL, NULL,
3420       (GDestroyNotify) g_object_unref);
3421   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3422       (GHFunc) clone_ssrcs_hashtable, table_copy);
3423
3424   /* Clean up the session, mark the source for removing, this might release the
3425    * session lock. */
3426   g_hash_table_foreach (table_copy, (GHFunc) session_cleanup, &data);
3427   g_hash_table_destroy (table_copy);
3428
3429   /* Now remove the marked sources */
3430   g_hash_table_foreach_remove (sess->ssrcs[sess->mask_idx],
3431       (GHRFunc) remove_closing_sources, &data);
3432
3433   /* see if we need to generate SR or RR packets */
3434   if (!is_rtcp_time (sess, current_time, &data))
3435     goto done;
3436
3437   GST_DEBUG ("doing RTCP generation %u for %u sources, early %d",
3438       sess->generation, data.num_to_report, data.is_early);
3439
3440   /* generate RTCP for all internal sources */
3441   g_hash_table_foreach (sess->ssrcs[sess->mask_idx],
3442       (GHFunc) generate_rtcp, &data);
3443
3444   /* we keep track of the last report time in order to timeout inactive
3445    * receivers or senders */
3446   if (!data.is_early && !data.may_suppress)
3447     sess->last_rtcp_send_time = data.current_time;
3448   sess->first_rtcp = FALSE;
3449   sess->next_early_rtcp_time = GST_CLOCK_TIME_NONE;
3450
3451 done:
3452   RTP_SESSION_UNLOCK (sess);
3453
3454   /* push out the RTCP packets */
3455   while ((output = g_queue_pop_head (&data.output))) {
3456     gboolean do_not_suppress;
3457     GstBuffer *buffer = output->buffer;
3458     RTPSource *source = output->source;
3459
3460     /* Give the user a change to add its own packet */
3461     g_signal_emit (sess, rtp_session_signals[SIGNAL_ON_SENDING_RTCP], 0,
3462         buffer, data.is_early, &do_not_suppress);
3463
3464     if (sess->callbacks.send_rtcp && (do_not_suppress || !data.may_suppress)) {
3465       guint packet_size;
3466
3467       packet_size = gst_buffer_get_size (buffer) + sess->header_len;
3468
3469       UPDATE_AVG (sess->stats.avg_rtcp_packet_size, packet_size);
3470       GST_DEBUG ("%p, sending RTCP packet, avg size %u, %u", &sess->stats,
3471           sess->stats.avg_rtcp_packet_size, packet_size);
3472       result =
3473           sess->callbacks.send_rtcp (sess, source, buffer, output->is_bye,
3474           sess->send_rtcp_user_data);
3475     } else {
3476       GST_DEBUG ("freeing packet callback: %p"
3477           " do_not_suppress: %d may_suppress: %d",
3478           sess->callbacks.send_rtcp, do_not_suppress, data.may_suppress);
3479       gst_buffer_unref (buffer);
3480     }
3481     g_object_unref (source);
3482     g_slice_free (ReportOutput, output);
3483   }
3484   return result;
3485 }
3486
3487 /**
3488  * rtp_session_request_early_rtcp:
3489  * @sess: an #RTPSession
3490  * @current_time: the current system time
3491  * @max_delay: maximum delay
3492  *
3493  * Request transmission of early RTCP
3494  */
3495 void
3496 rtp_session_request_early_rtcp (RTPSession * sess, GstClockTime current_time,
3497     GstClockTime max_delay)
3498 {
3499   GstClockTime T_dither_max;
3500
3501   /* Implements the algorithm described in RFC 4585 section 3.5.2 */
3502
3503   RTP_SESSION_LOCK (sess);
3504
3505   /* Check if already requested */
3506   /*  RFC 4585 section 3.5.2 step 2 */
3507   if (GST_CLOCK_TIME_IS_VALID (sess->next_early_rtcp_time)) {
3508     GST_LOG_OBJECT (sess, "already have next early rtcp time");
3509     goto dont_send;
3510   }
3511
3512   if (!GST_CLOCK_TIME_IS_VALID (sess->next_rtcp_check_time)) {
3513     GST_LOG_OBJECT (sess, "no next RTCP check time");
3514     goto dont_send;
3515   }
3516
3517   /* Ignore the request a scheduled packet will be in time anyway */
3518   if (current_time + max_delay > sess->next_rtcp_check_time) {
3519     GST_LOG_OBJECT (sess, "next scheduled time is soon");
3520     goto dont_send;
3521   }
3522
3523   /*  RFC 4585 section 3.5.2 step 2b */
3524   /* If the total sources is <=2, then there is only us and one peer */
3525   if (sess->total_sources <= 2) {
3526     T_dither_max = 0;
3527   } else {
3528     /* Divide by 2 because l = 0.5 */
3529     T_dither_max = sess->next_rtcp_check_time - sess->last_rtcp_send_time;
3530     T_dither_max /= 2;
3531   }
3532
3533   /*  RFC 4585 section 3.5.2 step 3 */
3534   if (current_time + T_dither_max > sess->next_rtcp_check_time) {
3535     GST_LOG_OBJECT (sess, "don't send because of dither");
3536     goto dont_send;
3537   }
3538
3539   /*  RFC 4585 section 3.5.2 step 4
3540    * Don't send if allow_early is FALSE, but not if we are in
3541    * immediate mode, meaning we are part of a group of at most the
3542    * application-specific threshold.
3543    */
3544   if (sess->total_sources > sess->rtcp_immediate_feedback_threshold &&
3545       sess->allow_early == FALSE) {
3546     GST_LOG_OBJECT (sess, "can't allow early feedback");
3547     goto dont_send;
3548   }
3549
3550   if (T_dither_max) {
3551     /* Schedule an early transmission later */
3552     sess->next_early_rtcp_time = g_random_double () * T_dither_max +
3553         current_time;
3554   } else {
3555     /* If no dithering, schedule it for NOW */
3556     sess->next_early_rtcp_time = current_time;
3557   }
3558
3559   GST_LOG_OBJECT (sess, "next early RTCP time %" GST_TIME_FORMAT,
3560       GST_TIME_ARGS (sess->next_early_rtcp_time));
3561   RTP_SESSION_UNLOCK (sess);
3562
3563   /* notify app of need to send packet early
3564    * and therefore of timeout change */
3565   if (sess->callbacks.reconsider)
3566     sess->callbacks.reconsider (sess, sess->reconsider_user_data);
3567
3568   return;
3569
3570 dont_send:
3571
3572   RTP_SESSION_UNLOCK (sess);
3573 }
3574
3575 static void
3576 rtp_session_send_rtcp (RTPSession * sess, GstClockTime max_delay)
3577 {
3578   GstClockTime now;
3579
3580   if (!sess->callbacks.send_rtcp)
3581     return;
3582
3583   now = sess->callbacks.request_time (sess, sess->request_time_user_data);
3584
3585   rtp_session_request_early_rtcp (sess, now, max_delay);
3586 }
3587
3588 gboolean
3589 rtp_session_request_key_unit (RTPSession * sess, guint32 ssrc,
3590     gboolean fir, gint count)
3591 {
3592   RTPSource *src;
3593
3594   RTP_SESSION_LOCK (sess);
3595   src = find_source (sess, ssrc);
3596   if (!src)
3597     goto no_source;
3598
3599   if (fir) {
3600     src->send_pli = FALSE;
3601     src->send_fir = TRUE;
3602
3603     if (count == -1 || count != src->last_fir_count)
3604       src->current_send_fir_seqnum++;
3605     src->last_fir_count = count;
3606   } else if (!src->send_fir) {
3607     src->send_pli = TRUE;
3608   }
3609   RTP_SESSION_UNLOCK (sess);
3610
3611   rtp_session_send_rtcp (sess, 200 * GST_MSECOND);
3612
3613   return TRUE;
3614
3615   /* ERRORS */
3616 no_source:
3617   {
3618     RTP_SESSION_UNLOCK (sess);
3619     return FALSE;
3620   }
3621 }
3622
3623 /**
3624  * rtp_session_request_nack:
3625  * @sess: a #RTPSession
3626  * @ssrc: the SSRC
3627  * @seqnum: the missing seqnum
3628  * @max_delay: max delay to request NACK
3629  *
3630  * Request scheduling of a NACK feedback packet for @seqnum in @ssrc.
3631  *
3632  * Returns: %TRUE if the NACK feedback could be scheduled
3633  */
3634 gboolean
3635 rtp_session_request_nack (RTPSession * sess, guint32 ssrc, guint16 seqnum,
3636     GstClockTime max_delay)
3637 {
3638   RTPSource *source;
3639
3640   RTP_SESSION_LOCK (sess);
3641   source = find_source (sess, ssrc);
3642   if (source == NULL)
3643     goto no_source;
3644
3645   GST_DEBUG ("request NACK for %08x, #%u", ssrc, seqnum);
3646   rtp_source_register_nack (source, seqnum);
3647   RTP_SESSION_UNLOCK (sess);
3648
3649   rtp_session_send_rtcp (sess, max_delay);
3650
3651   return TRUE;
3652
3653   /* ERRORS */
3654 no_source:
3655   {
3656     RTP_SESSION_UNLOCK (sess);
3657     return FALSE;
3658   }
3659 }