ptp: Add median based pre-filtering of delays
[platform/upstream/gstreamer.git] / libs / gst / net / gstptpclock.c
1 /* GStreamer
2  * Copyright (C) 2015 Sebastian Dröge <sebastian@centricular.com>
3  *
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 /**
21  * SECTION:gstptpclock
22  * @short_description: Special clock that synchronizes to a remote time
23  *                     provider via PTP (IEEE1588:2008).
24  * @see_also: #GstClock, #GstNetClientClock, #GstPipeline
25  *
26  * GstPtpClock implements a PTP (IEEE1588:2008) ordinary clock in slave-only
27  * mode, that allows a GStreamer pipeline to synchronize to a PTP network
28  * clock in some specific domain.
29  *
30  * The PTP subsystem can be initialized with gst_ptp_init(), which then starts
31  * a helper process to do the actual communication via the PTP ports. This is
32  * required as PTP listens on ports < 1024 and thus requires special
33  * privileges. Once this helper process is started, the main process will
34  * synchronize to all PTP domains that are detected on the selected
35  * interfaces.
36  *
37  * gst_ptp_clock_new() then allows to create a GstClock that provides the PTP
38  * time from a master clock inside a specific PTP domain. This clock will only
39  * return valid timestamps once the timestamps in the PTP domain are known. To
40  * check this, the GstPtpClock::internal-clock property and the related
41  * notify::clock signal can be used. Once the internal clock is not NULL, the
42  * PTP domain's time is known. Alternatively you can wait for this with
43  * gst_ptp_clock_wait_ready().
44  *
45  *
46  * To gather statistics about the PTP clock synchronization,
47  * gst_ptp_statistics_callback_add() can be used. This gives the application
48  * the possibility to collect all kinds of statistics from the clock
49  * synchronization.
50  *
51  * Since: 1.6
52  *
53  */
54 #ifdef HAVE_CONFIG_H
55 #include "config.h"
56 #endif
57
58 #include "gstptpclock.h"
59
60 #ifdef HAVE_PTP
61
62 #include "gstptp_private.h"
63
64 #include <sys/wait.h>
65 #include <sys/types.h>
66 #include <unistd.h>
67
68 #include <gst/base/base.h>
69
70 GST_DEBUG_CATEGORY_STATIC (ptp_debug);
71 #define GST_CAT_DEFAULT (ptp_debug)
72
73 /* IEEE 1588 7.7.3.1 */
74 #define PTP_ANNOUNCE_RECEIPT_TIMEOUT 4
75
76 /* Use a running average for calculating the mean path delay instead
77  * of just using the last measurement. Enabling this helps in unreliable
78  * networks, like wifi, with often changing delays
79  *
80  * Undef for following IEEE1588-2008 by the letter
81  */
82 #define USE_RUNNING_AVERAGE_DELAY 1
83
84 /* Filter out any measurements that are above a certain threshold compared to
85  * previous measurements. Enabling this helps filtering out outliers that
86  * happen fairly often in unreliable networks, like wifi.
87  *
88  * Undef for following IEEE1588-2008 by the letter
89  */
90 #define USE_MEASUREMENT_FILTERING 1
91
92 /* Select the first clock from which we capture a SYNC message as the master
93  * clock of the domain until we are ready to run the best master clock
94  * algorithm. This allows faster syncing but might mean a change of the master
95  * clock in the beginning. As all clocks in a domain are supposed to use the
96  * same time, this shouldn't be much of a problem.
97  *
98  * Undef for following IEEE1588-2008 by the letter
99  */
100 #define USE_OPPORTUNISTIC_CLOCK_SELECTION 1
101
102 /* Only consider SYNC messages for which we are allowed to send a DELAY_REQ
103  * afterwards. This allows better synchronization in networks with varying
104  * delays, as for every other SYNC message we would have to assume that it's
105  * the average of what we saw before. But that might be completely off
106  */
107 #define USE_ONLY_SYNC_WITH_DELAY 1
108
109 /* Filter out delay measurements that are too far away from the median of the
110  * last delay measurements, currently those that are more than 2 times as big.
111  * This increases accuracy a lot on wifi.
112  */
113 #define USE_MEDIAN_PRE_FILTERING 1
114 #define MEDIAN_PRE_FILTERING_WINDOW 9
115
116 /* How many updates should be skipped at maximum when using USE_MEASUREMENT_FILTERING */
117 #define MAX_SKIPPED_UPDATES 5
118
119 typedef enum
120 {
121   PTP_MESSAGE_TYPE_SYNC = 0x0,
122   PTP_MESSAGE_TYPE_DELAY_REQ = 0x1,
123   PTP_MESSAGE_TYPE_PDELAY_REQ = 0x2,
124   PTP_MESSAGE_TYPE_PDELAY_RESP = 0x3,
125   PTP_MESSAGE_TYPE_FOLLOW_UP = 0x8,
126   PTP_MESSAGE_TYPE_DELAY_RESP = 0x9,
127   PTP_MESSAGE_TYPE_PDELAY_RESP_FOLLOW_UP = 0xA,
128   PTP_MESSAGE_TYPE_ANNOUNCE = 0xB,
129   PTP_MESSAGE_TYPE_SIGNALING = 0xC,
130   PTP_MESSAGE_TYPE_MANAGEMENT = 0xD
131 } PtpMessageType;
132
133 typedef struct
134 {
135   guint64 seconds_field;        /* 48 bits valid */
136   guint32 nanoseconds_field;
137 } PtpTimestamp;
138
139 #define PTP_TIMESTAMP_TO_GST_CLOCK_TIME(ptp) (ptp.seconds_field * GST_SECOND + ptp.nanoseconds_field)
140 #define GST_CLOCK_TIME_TO_PTP_TIMESTAMP_SECONDS(gst) (((GstClockTime) gst) / GST_SECOND)
141 #define GST_CLOCK_TIME_TO_PTP_TIMESTAMP_NANOSECONDS(gst) (((GstClockTime) gst) % GST_SECOND)
142
143 typedef struct
144 {
145   guint64 clock_identity;
146   guint16 port_number;
147 } PtpClockIdentity;
148
149 static gint
150 compare_clock_identity (const PtpClockIdentity * a, const PtpClockIdentity * b)
151 {
152   if (a->clock_identity < b->clock_identity)
153     return -1;
154   else if (a->clock_identity > b->clock_identity)
155     return 1;
156
157   if (a->port_number < b->port_number)
158     return -1;
159   else if (a->port_number > b->port_number)
160     return 1;
161
162   return 0;
163 }
164
165 typedef struct
166 {
167   guint8 clock_class;
168   guint8 clock_accuracy;
169   guint16 offset_scaled_log_variance;
170 } PtpClockQuality;
171
172 typedef struct
173 {
174   guint8 transport_specific;
175   PtpMessageType message_type;
176   /* guint8 reserved; */
177   guint8 version_ptp;
178   guint16 message_length;
179   guint8 domain_number;
180   /* guint8 reserved; */
181   guint16 flag_field;
182   gint64 correction_field;      /* 48.16 fixed point nanoseconds */
183   /* guint32 reserved; */
184   PtpClockIdentity source_port_identity;
185   guint16 sequence_id;
186   guint8 control_field;
187   gint8 log_message_interval;
188
189   union
190   {
191     struct
192     {
193       PtpTimestamp origin_timestamp;
194       gint16 current_utc_offset;
195       /* guint8 reserved; */
196       guint8 grandmaster_priority_1;
197       PtpClockQuality grandmaster_clock_quality;
198       guint8 grandmaster_priority_2;
199       guint64 grandmaster_identity;
200       guint16 steps_removed;
201       guint8 time_source;
202     } announce;
203
204     struct
205     {
206       PtpTimestamp origin_timestamp;
207     } sync;
208
209     struct
210     {
211       PtpTimestamp precise_origin_timestamp;
212     } follow_up;
213
214     struct
215     {
216       PtpTimestamp origin_timestamp;
217     } delay_req;
218
219     struct
220     {
221       PtpTimestamp receive_timestamp;
222       PtpClockIdentity requesting_port_identity;
223     } delay_resp;
224
225   } message_specific;
226 } PtpMessage;
227
228 static GMutex ptp_lock;
229 static GCond ptp_cond;
230 static gboolean initted = FALSE;
231 static gboolean supported = TRUE;
232 static GPid ptp_helper_pid;
233 static GThread *ptp_helper_thread;
234 static GMainContext *main_context;
235 static GMainLoop *main_loop;
236 static GIOChannel *stdin_channel, *stdout_channel;
237 static GRand *delay_req_rand;
238 static PtpClockIdentity ptp_clock_id = { GST_PTP_CLOCK_ID_NONE, 0 };
239
240 typedef struct
241 {
242   GstClockTime receive_time;
243
244   PtpClockIdentity master_clock_identity;
245
246   guint8 grandmaster_priority_1;
247   PtpClockQuality grandmaster_clock_quality;
248   guint8 grandmaster_priority_2;
249   guint64 grandmaster_identity;
250   guint16 steps_removed;
251   guint8 time_source;
252
253   guint16 sequence_id;
254 } PtpAnnounceMessage;
255
256 typedef struct
257 {
258   PtpClockIdentity master_clock_identity;
259
260   GstClockTime announce_interval;       /* last interval we received */
261   GQueue announce_messages;
262 } PtpAnnounceSender;
263
264 typedef struct
265 {
266   guint domain;
267   PtpClockIdentity master_clock_identity;
268
269   guint16 sync_seqnum;
270   GstClockTime sync_recv_time_local;    /* t2 */
271   GstClockTime sync_send_time_remote;   /* t1, might be -1 if FOLLOW_UP pending */
272   GstClockTime follow_up_recv_time_local;
273
274   GSource *timeout_source;
275   guint16 delay_req_seqnum;
276   GstClockTime delay_req_send_time_local;       /* t3, -1 if we wait for FOLLOW_UP */
277   GstClockTime delay_req_recv_time_remote;      /* t4, -1 if we wait */
278   GstClockTime delay_resp_recv_time_local;
279
280   gint64 correction_field_sync; /* sum of the correction fields of SYNC/FOLLOW_UP */
281   gint64 correction_field_delay;        /* sum of the correction fields of DELAY_RESP */
282 } PtpPendingSync;
283
284 static void
285 ptp_pending_sync_free (PtpPendingSync * sync)
286 {
287   if (sync->timeout_source)
288     g_source_destroy (sync->timeout_source);
289   g_free (sync);
290 }
291
292 typedef struct
293 {
294   guint domain;
295
296   GstClockTime last_ptp_time;
297   GstClockTime last_local_time;
298   gint skipped_updates;
299
300   /* Used for selecting the master/grandmaster */
301   GList *announce_senders;
302
303   /* Last selected master clock */
304   gboolean have_master_clock;
305   PtpClockIdentity master_clock_identity;
306   guint64 grandmaster_identity;
307
308   /* Last SYNC or FOLLOW_UP timestamp we received */
309   GstClockTime last_ptp_sync_time;
310   GstClockTime sync_interval;
311
312   GstClockTime mean_path_delay;
313   GstClockTime last_delay_req, min_delay_req_interval;
314   guint16 last_delay_req_seqnum;
315
316   GstClockTime last_path_delays[MEDIAN_PRE_FILTERING_WINDOW];
317   gint last_path_delays_missing;
318
319   GQueue pending_syncs;
320
321   GstClock *domain_clock;
322 } PtpDomainData;
323
324 static GList *domain_data;
325 static GMutex domain_clocks_lock;
326 static GList *domain_clocks;
327
328 /* Protected by PTP lock */
329 static void emit_ptp_statistics (guint8 domain, const GstStructure * stats);
330 static GHookList domain_stats_hooks;
331 static gint domain_stats_n_hooks;
332 static gboolean domain_stats_hooks_initted = FALSE;
333
334 /* Converts log2 seconds to GstClockTime */
335 static GstClockTime
336 log2_to_clock_time (gint l)
337 {
338   if (l < 0)
339     return GST_SECOND >> (-l);
340   else
341     return GST_SECOND << l;
342 }
343
344 static void
345 dump_ptp_message (PtpMessage * msg)
346 {
347   GST_TRACE ("PTP message:");
348   GST_TRACE ("\ttransport_specific: %u", msg->transport_specific);
349   GST_TRACE ("\tmessage_type: 0x%01x", msg->message_type);
350   GST_TRACE ("\tversion_ptp: %u", msg->version_ptp);
351   GST_TRACE ("\tmessage_length: %u", msg->message_length);
352   GST_TRACE ("\tdomain_number: %u", msg->domain_number);
353   GST_TRACE ("\tflag_field: 0x%04x", msg->flag_field);
354   GST_TRACE ("\tcorrection_field: %" G_GINT64_FORMAT ".%03u",
355       (msg->correction_field / 65536),
356       (guint) ((msg->correction_field & 0xffff) * 1000) / 65536);
357   GST_TRACE ("\tsource_port_identity: 0x%016" G_GINT64_MODIFIER "x %u",
358       msg->source_port_identity.clock_identity,
359       msg->source_port_identity.port_number);
360   GST_TRACE ("\tsequence_id: %u", msg->sequence_id);
361   GST_TRACE ("\tcontrol_field: 0x%02x", msg->control_field);
362   GST_TRACE ("\tmessage_interval: %" GST_TIME_FORMAT,
363       GST_TIME_ARGS (log2_to_clock_time (msg->log_message_interval)));
364
365   switch (msg->message_type) {
366     case PTP_MESSAGE_TYPE_ANNOUNCE:
367       GST_TRACE ("\tANNOUNCE:");
368       GST_TRACE ("\t\torigin_timestamp: %" G_GUINT64_FORMAT ".%09u",
369           msg->message_specific.announce.origin_timestamp.seconds_field,
370           msg->message_specific.announce.origin_timestamp.nanoseconds_field);
371       GST_TRACE ("\t\tcurrent_utc_offset: %d",
372           msg->message_specific.announce.current_utc_offset);
373       GST_TRACE ("\t\tgrandmaster_priority_1: %u",
374           msg->message_specific.announce.grandmaster_priority_1);
375       GST_TRACE ("\t\tgrandmaster_clock_quality: 0x%02x 0x%02x %u",
376           msg->message_specific.announce.grandmaster_clock_quality.clock_class,
377           msg->message_specific.announce.
378           grandmaster_clock_quality.clock_accuracy,
379           msg->message_specific.announce.
380           grandmaster_clock_quality.offset_scaled_log_variance);
381       GST_TRACE ("\t\tgrandmaster_priority_2: %u",
382           msg->message_specific.announce.grandmaster_priority_2);
383       GST_TRACE ("\t\tgrandmaster_identity: 0x%016" G_GINT64_MODIFIER "x",
384           msg->message_specific.announce.grandmaster_identity);
385       GST_TRACE ("\t\tsteps_removed: %u",
386           msg->message_specific.announce.steps_removed);
387       GST_TRACE ("\t\ttime_source: 0x%02x",
388           msg->message_specific.announce.time_source);
389       break;
390     case PTP_MESSAGE_TYPE_SYNC:
391       GST_TRACE ("\tSYNC:");
392       GST_TRACE ("\t\torigin_timestamp: %" G_GUINT64_FORMAT ".%09u",
393           msg->message_specific.sync.origin_timestamp.seconds_field,
394           msg->message_specific.sync.origin_timestamp.nanoseconds_field);
395       break;
396     case PTP_MESSAGE_TYPE_FOLLOW_UP:
397       GST_TRACE ("\tFOLLOW_UP:");
398       GST_TRACE ("\t\tprecise_origin_timestamp: %" G_GUINT64_FORMAT ".%09u",
399           msg->message_specific.follow_up.
400           precise_origin_timestamp.seconds_field,
401           msg->message_specific.follow_up.
402           precise_origin_timestamp.nanoseconds_field);
403       break;
404     case PTP_MESSAGE_TYPE_DELAY_REQ:
405       GST_TRACE ("\tDELAY_REQ:");
406       GST_TRACE ("\t\torigin_timestamp: %" G_GUINT64_FORMAT ".%09u",
407           msg->message_specific.delay_req.origin_timestamp.seconds_field,
408           msg->message_specific.delay_req.origin_timestamp.nanoseconds_field);
409       break;
410     case PTP_MESSAGE_TYPE_DELAY_RESP:
411       GST_TRACE ("\tDELAY_RESP:");
412       GST_TRACE ("\t\treceive_timestamp: %" G_GUINT64_FORMAT ".%09u",
413           msg->message_specific.delay_resp.receive_timestamp.seconds_field,
414           msg->message_specific.delay_resp.receive_timestamp.nanoseconds_field);
415       GST_TRACE ("\t\trequesting_port_identity: 0x%016" G_GINT64_MODIFIER
416           "x %u",
417           msg->message_specific.delay_resp.
418           requesting_port_identity.clock_identity,
419           msg->message_specific.delay_resp.
420           requesting_port_identity.port_number);
421       break;
422     default:
423       break;
424   }
425   GST_TRACE (" ");
426 }
427
428 /* IEEE 1588-2008 5.3.3 */
429 static gboolean
430 parse_ptp_timestamp (PtpTimestamp * timestamp, GstByteReader * reader)
431 {
432   g_return_val_if_fail (gst_byte_reader_get_remaining (reader) >= 10, FALSE);
433
434   timestamp->seconds_field =
435       (((guint64) gst_byte_reader_get_uint32_be_unchecked (reader)) << 16) |
436       gst_byte_reader_get_uint16_be_unchecked (reader);
437   timestamp->nanoseconds_field =
438       gst_byte_reader_get_uint32_be_unchecked (reader);
439
440   if (timestamp->nanoseconds_field >= 1000000000)
441     return FALSE;
442
443   return TRUE;
444 }
445
446 /* IEEE 1588-2008 13.3 */
447 static gboolean
448 parse_ptp_message_header (PtpMessage * msg, GstByteReader * reader)
449 {
450   guint8 b;
451
452   g_return_val_if_fail (gst_byte_reader_get_remaining (reader) >= 34, FALSE);
453
454   b = gst_byte_reader_get_uint8_unchecked (reader);
455   msg->transport_specific = b >> 4;
456   msg->message_type = b & 0x0f;
457
458   b = gst_byte_reader_get_uint8_unchecked (reader);
459   msg->version_ptp = b & 0x0f;
460   if (msg->version_ptp != 2) {
461     GST_WARNING ("Unsupported PTP message version (%u != 2)", msg->version_ptp);
462     return FALSE;
463   }
464
465   msg->message_length = gst_byte_reader_get_uint16_be_unchecked (reader);
466   if (gst_byte_reader_get_remaining (reader) + 4 < msg->message_length) {
467     GST_WARNING ("Not enough data (%u < %u)",
468         gst_byte_reader_get_remaining (reader) + 4, msg->message_length);
469     return FALSE;
470   }
471
472   msg->domain_number = gst_byte_reader_get_uint8_unchecked (reader);
473   gst_byte_reader_skip_unchecked (reader, 1);
474
475   msg->flag_field = gst_byte_reader_get_uint16_be_unchecked (reader);
476   msg->correction_field = gst_byte_reader_get_uint64_be_unchecked (reader);
477   gst_byte_reader_skip_unchecked (reader, 4);
478
479   msg->source_port_identity.clock_identity =
480       gst_byte_reader_get_uint64_be_unchecked (reader);
481   msg->source_port_identity.port_number =
482       gst_byte_reader_get_uint16_be_unchecked (reader);
483
484   msg->sequence_id = gst_byte_reader_get_uint16_be_unchecked (reader);
485   msg->control_field = gst_byte_reader_get_uint8_unchecked (reader);
486   msg->log_message_interval = gst_byte_reader_get_uint8_unchecked (reader);
487
488   return TRUE;
489 }
490
491 /* IEEE 1588-2008 13.5 */
492 static gboolean
493 parse_ptp_message_announce (PtpMessage * msg, GstByteReader * reader)
494 {
495   g_return_val_if_fail (msg->message_type == PTP_MESSAGE_TYPE_ANNOUNCE, FALSE);
496
497   if (gst_byte_reader_get_remaining (reader) < 20)
498     return FALSE;
499
500   if (!parse_ptp_timestamp (&msg->message_specific.announce.origin_timestamp,
501           reader))
502     return FALSE;
503
504   msg->message_specific.announce.current_utc_offset =
505       gst_byte_reader_get_uint16_be_unchecked (reader);
506   gst_byte_reader_skip_unchecked (reader, 1);
507
508   msg->message_specific.announce.grandmaster_priority_1 =
509       gst_byte_reader_get_uint8_unchecked (reader);
510   msg->message_specific.announce.grandmaster_clock_quality.clock_class =
511       gst_byte_reader_get_uint8_unchecked (reader);
512   msg->message_specific.announce.grandmaster_clock_quality.clock_accuracy =
513       gst_byte_reader_get_uint8_unchecked (reader);
514   msg->message_specific.announce.
515       grandmaster_clock_quality.offset_scaled_log_variance =
516       gst_byte_reader_get_uint16_be_unchecked (reader);
517   msg->message_specific.announce.grandmaster_priority_2 =
518       gst_byte_reader_get_uint8_unchecked (reader);
519   msg->message_specific.announce.grandmaster_identity =
520       gst_byte_reader_get_uint64_be_unchecked (reader);
521   msg->message_specific.announce.steps_removed =
522       gst_byte_reader_get_uint16_be_unchecked (reader);
523   msg->message_specific.announce.time_source =
524       gst_byte_reader_get_uint8_unchecked (reader);
525
526   return TRUE;
527 }
528
529 /* IEEE 1588-2008 13.6 */
530 static gboolean
531 parse_ptp_message_sync (PtpMessage * msg, GstByteReader * reader)
532 {
533   g_return_val_if_fail (msg->message_type == PTP_MESSAGE_TYPE_SYNC, FALSE);
534
535   if (gst_byte_reader_get_remaining (reader) < 10)
536     return FALSE;
537
538   if (!parse_ptp_timestamp (&msg->message_specific.sync.origin_timestamp,
539           reader))
540     return FALSE;
541
542   return TRUE;
543 }
544
545 /* IEEE 1588-2008 13.6 */
546 static gboolean
547 parse_ptp_message_delay_req (PtpMessage * msg, GstByteReader * reader)
548 {
549   g_return_val_if_fail (msg->message_type == PTP_MESSAGE_TYPE_DELAY_REQ, FALSE);
550
551   if (gst_byte_reader_get_remaining (reader) < 10)
552     return FALSE;
553
554   if (!parse_ptp_timestamp (&msg->message_specific.delay_req.origin_timestamp,
555           reader))
556     return FALSE;
557
558   return TRUE;
559 }
560
561 /* IEEE 1588-2008 13.7 */
562 static gboolean
563 parse_ptp_message_follow_up (PtpMessage * msg, GstByteReader * reader)
564 {
565   g_return_val_if_fail (msg->message_type == PTP_MESSAGE_TYPE_FOLLOW_UP, FALSE);
566
567   if (gst_byte_reader_get_remaining (reader) < 10)
568     return FALSE;
569
570   if (!parse_ptp_timestamp (&msg->message_specific.
571           follow_up.precise_origin_timestamp, reader))
572     return FALSE;
573
574   return TRUE;
575 }
576
577 /* IEEE 1588-2008 13.8 */
578 static gboolean
579 parse_ptp_message_delay_resp (PtpMessage * msg, GstByteReader * reader)
580 {
581   g_return_val_if_fail (msg->message_type == PTP_MESSAGE_TYPE_DELAY_RESP,
582       FALSE);
583
584   if (gst_byte_reader_get_remaining (reader) < 20)
585     return FALSE;
586
587   if (!parse_ptp_timestamp (&msg->message_specific.delay_resp.receive_timestamp,
588           reader))
589     return FALSE;
590
591   msg->message_specific.delay_resp.requesting_port_identity.clock_identity =
592       gst_byte_reader_get_uint64_be_unchecked (reader);
593   msg->message_specific.delay_resp.requesting_port_identity.port_number =
594       gst_byte_reader_get_uint16_be_unchecked (reader);
595
596   return TRUE;
597 }
598
599 static gboolean
600 parse_ptp_message (PtpMessage * msg, const guint8 * data, gsize size)
601 {
602   GstByteReader reader;
603   gboolean ret = FALSE;
604
605   gst_byte_reader_init (&reader, data, size);
606
607   if (!parse_ptp_message_header (msg, &reader)) {
608     GST_WARNING ("Failed to parse PTP message header");
609     return FALSE;
610   }
611
612   switch (msg->message_type) {
613     case PTP_MESSAGE_TYPE_SYNC:
614       ret = parse_ptp_message_sync (msg, &reader);
615       break;
616     case PTP_MESSAGE_TYPE_FOLLOW_UP:
617       ret = parse_ptp_message_follow_up (msg, &reader);
618       break;
619     case PTP_MESSAGE_TYPE_DELAY_REQ:
620       ret = parse_ptp_message_delay_req (msg, &reader);
621       break;
622     case PTP_MESSAGE_TYPE_DELAY_RESP:
623       ret = parse_ptp_message_delay_resp (msg, &reader);
624       break;
625     case PTP_MESSAGE_TYPE_ANNOUNCE:
626       ret = parse_ptp_message_announce (msg, &reader);
627       break;
628     default:
629       /* ignore for now */
630       break;
631   }
632
633   return ret;
634 }
635
636 static gint
637 compare_announce_message (const PtpAnnounceMessage * a,
638     const PtpAnnounceMessage * b)
639 {
640   /* IEEE 1588 Figure 27 */
641   if (a->grandmaster_identity == b->grandmaster_identity) {
642     if (a->steps_removed + 1 < b->steps_removed)
643       return -1;
644     else if (a->steps_removed > b->steps_removed + 1)
645       return 1;
646
647     /* Error cases are filtered out earlier */
648     if (a->steps_removed < b->steps_removed)
649       return -1;
650     else if (a->steps_removed > b->steps_removed)
651       return 1;
652
653     /* Error cases are filtered out earlier */
654     if (a->master_clock_identity.clock_identity <
655         b->master_clock_identity.clock_identity)
656       return -1;
657     else if (a->master_clock_identity.clock_identity >
658         b->master_clock_identity.clock_identity)
659       return 1;
660
661     /* Error cases are filtered out earlier */
662     if (a->master_clock_identity.port_number <
663         b->master_clock_identity.port_number)
664       return -1;
665     else if (a->master_clock_identity.port_number >
666         b->master_clock_identity.port_number)
667       return 1;
668     else
669       g_assert_not_reached ();
670
671     return 0;
672   }
673
674   if (a->grandmaster_priority_1 < b->grandmaster_priority_1)
675     return -1;
676   else if (a->grandmaster_priority_1 > b->grandmaster_priority_1)
677     return 1;
678
679   if (a->grandmaster_clock_quality.clock_class <
680       b->grandmaster_clock_quality.clock_class)
681     return -1;
682   else if (a->grandmaster_clock_quality.clock_class >
683       b->grandmaster_clock_quality.clock_class)
684     return 1;
685
686   if (a->grandmaster_clock_quality.clock_accuracy <
687       b->grandmaster_clock_quality.clock_accuracy)
688     return -1;
689   else if (a->grandmaster_clock_quality.clock_accuracy >
690       b->grandmaster_clock_quality.clock_accuracy)
691     return 1;
692
693   if (a->grandmaster_clock_quality.offset_scaled_log_variance <
694       b->grandmaster_clock_quality.offset_scaled_log_variance)
695     return -1;
696   else if (a->grandmaster_clock_quality.offset_scaled_log_variance >
697       b->grandmaster_clock_quality.offset_scaled_log_variance)
698     return 1;
699
700   if (a->grandmaster_priority_2 < b->grandmaster_priority_2)
701     return -1;
702   else if (a->grandmaster_priority_2 > b->grandmaster_priority_2)
703     return 1;
704
705   if (a->grandmaster_identity < b->grandmaster_identity)
706     return -1;
707   else if (a->grandmaster_identity > b->grandmaster_identity)
708     return 1;
709   else
710     g_assert_not_reached ();
711
712   return 0;
713 }
714
715 static void
716 select_best_master_clock (PtpDomainData * domain, GstClockTime now)
717 {
718   GList *qualified_messages = NULL;
719   GList *l, *m;
720   PtpAnnounceMessage *best = NULL;
721
722   /* IEEE 1588 9.3.2.5 */
723   for (l = domain->announce_senders; l; l = l->next) {
724     PtpAnnounceSender *sender = l->data;
725     GstClockTime window = 4 * sender->announce_interval;
726     gint count = 0;
727
728     for (m = sender->announce_messages.head; m; m = m->next) {
729       PtpAnnounceMessage *msg = m->data;
730
731       if (now - msg->receive_time <= window)
732         count++;
733     }
734
735     /* Only include the newest message of announce senders that had at least 2
736      * announce messages in the last 4 announce intervals. Which also means
737      * that we wait at least 4 announce intervals before we select a master
738      * clock. Until then we just report based on the newest SYNC we received
739      */
740     if (count >= 2) {
741       qualified_messages =
742           g_list_prepend (qualified_messages,
743           g_queue_peek_tail (&sender->announce_messages));
744     }
745   }
746
747   if (!qualified_messages) {
748     GST_DEBUG
749         ("No qualified announce messages for domain %u, can't select a master clock",
750         domain->domain);
751     domain->have_master_clock = FALSE;
752     return;
753   }
754
755   for (l = qualified_messages; l; l = l->next) {
756     PtpAnnounceMessage *msg = l->data;
757
758     if (!best || compare_announce_message (msg, best) < 0)
759       best = msg;
760   }
761
762   if (domain->have_master_clock
763       && compare_clock_identity (&domain->master_clock_identity,
764           &best->master_clock_identity) == 0) {
765     GST_DEBUG ("Master clock in domain %u did not change", domain->domain);
766   } else {
767     GST_DEBUG ("Selected master clock for domain %u: 0x%016" G_GINT64_MODIFIER
768         "x %u with grandmaster clock 0x%016" G_GINT64_MODIFIER "x",
769         domain->domain, best->master_clock_identity.clock_identity,
770         best->master_clock_identity.port_number, best->grandmaster_identity);
771
772     domain->have_master_clock = TRUE;
773     domain->grandmaster_identity = best->grandmaster_identity;
774
775     /* Opportunistic master clock selection likely gave us the same master
776      * clock before, no need to reset all statistics */
777     if (compare_clock_identity (&domain->master_clock_identity,
778             &best->master_clock_identity) != 0) {
779       memcpy (&domain->master_clock_identity, &best->master_clock_identity,
780           sizeof (PtpClockIdentity));
781       domain->mean_path_delay = 0;
782       domain->last_delay_req = 0;
783       domain->last_path_delays_missing = 9;
784       domain->min_delay_req_interval = 0;
785       domain->sync_interval = 0;
786       domain->last_ptp_sync_time = 0;
787       domain->skipped_updates = 0;
788       g_queue_foreach (&domain->pending_syncs, (GFunc) ptp_pending_sync_free,
789           NULL);
790       g_queue_clear (&domain->pending_syncs);
791     }
792
793     if (g_atomic_int_get (&domain_stats_n_hooks)) {
794       GstStructure *stats =
795           gst_structure_new (GST_PTP_STATISTICS_BEST_MASTER_CLOCK_SELECTED,
796           "domain", G_TYPE_UINT, domain->domain,
797           "master-clock-id", G_TYPE_UINT64,
798           domain->master_clock_identity.clock_identity,
799           "master-clock-port", G_TYPE_UINT,
800           domain->master_clock_identity.port_number,
801           "grandmaster-clock-id", G_TYPE_UINT64, domain->grandmaster_identity,
802           NULL);
803       emit_ptp_statistics (domain->domain, stats);
804       gst_structure_free (stats);
805     }
806   }
807 }
808
809 static void
810 handle_announce_message (PtpMessage * msg, GstClockTime receive_time)
811 {
812   GList *l;
813   PtpDomainData *domain = NULL;
814   PtpAnnounceSender *sender = NULL;
815   PtpAnnounceMessage *announce;
816
817   /* IEEE1588 9.3.2.2 e)
818    * Don't consider messages with the alternate master flag set
819    */
820   if ((msg->flag_field & 0x0100))
821     return;
822
823   /* IEEE 1588 9.3.2.5 d)
824    * Don't consider announce messages with steps_removed>=255
825    */
826   if (msg->message_specific.announce.steps_removed >= 255)
827     return;
828
829   for (l = domain_data; l; l = l->next) {
830     PtpDomainData *tmp = l->data;
831
832     if (tmp->domain == msg->domain_number) {
833       domain = tmp;
834       break;
835     }
836   }
837
838   if (!domain) {
839     gchar *clock_name;
840
841     domain = g_new0 (PtpDomainData, 1);
842     domain->domain = msg->domain_number;
843     clock_name = g_strdup_printf ("ptp-clock-%u", domain->domain);
844     domain->domain_clock =
845         g_object_new (GST_TYPE_SYSTEM_CLOCK, "name", clock_name, NULL);
846     g_free (clock_name);
847     g_queue_init (&domain->pending_syncs);
848     domain->last_path_delays_missing = 9;
849     domain_data = g_list_prepend (domain_data, domain);
850
851     g_mutex_lock (&domain_clocks_lock);
852     domain_clocks = g_list_prepend (domain_clocks, domain);
853     g_mutex_unlock (&domain_clocks_lock);
854
855     if (g_atomic_int_get (&domain_stats_n_hooks)) {
856       GstStructure *stats =
857           gst_structure_new (GST_PTP_STATISTICS_NEW_DOMAIN_FOUND, "domain",
858           G_TYPE_UINT, domain->domain, "clock", GST_TYPE_CLOCK,
859           domain->domain_clock, NULL);
860       emit_ptp_statistics (domain->domain, stats);
861       gst_structure_free (stats);
862     }
863   }
864
865   for (l = domain->announce_senders; l; l = l->next) {
866     PtpAnnounceSender *tmp = l->data;
867
868     if (compare_clock_identity (&tmp->master_clock_identity,
869             &msg->source_port_identity) == 0) {
870       sender = tmp;
871       break;
872     }
873   }
874
875   if (!sender) {
876     sender = g_new0 (PtpAnnounceSender, 1);
877
878     memcpy (&sender->master_clock_identity, &msg->source_port_identity,
879         sizeof (PtpClockIdentity));
880     g_queue_init (&sender->announce_messages);
881     domain->announce_senders =
882         g_list_prepend (domain->announce_senders, sender);
883   }
884
885   for (l = sender->announce_messages.head; l; l = l->next) {
886     PtpAnnounceMessage *tmp = l->data;
887
888     /* IEEE 1588 9.3.2.5 c)
889      * Don't consider identical messages, i.e. duplicates
890      */
891     if (tmp->sequence_id == msg->sequence_id)
892       return;
893   }
894
895   sender->announce_interval = log2_to_clock_time (msg->log_message_interval);
896
897   announce = g_new0 (PtpAnnounceMessage, 1);
898   announce->receive_time = receive_time;
899   announce->sequence_id = msg->sequence_id;
900   memcpy (&announce->master_clock_identity, &msg->source_port_identity,
901       sizeof (PtpClockIdentity));
902   announce->grandmaster_identity =
903       msg->message_specific.announce.grandmaster_identity;
904   announce->grandmaster_priority_1 =
905       msg->message_specific.announce.grandmaster_priority_1;
906   announce->grandmaster_clock_quality.clock_class =
907       msg->message_specific.announce.grandmaster_clock_quality.clock_class;
908   announce->grandmaster_clock_quality.clock_accuracy =
909       msg->message_specific.announce.grandmaster_clock_quality.clock_accuracy;
910   announce->grandmaster_clock_quality.offset_scaled_log_variance =
911       msg->message_specific.announce.
912       grandmaster_clock_quality.offset_scaled_log_variance;
913   announce->grandmaster_priority_2 =
914       msg->message_specific.announce.grandmaster_priority_2;
915   announce->steps_removed = msg->message_specific.announce.steps_removed;
916   announce->time_source = msg->message_specific.announce.time_source;
917   g_queue_push_tail (&sender->announce_messages, announce);
918
919   select_best_master_clock (domain, receive_time);
920 }
921
922 static gboolean
923 send_delay_req_timeout (PtpPendingSync * sync)
924 {
925   StdIOHeader header = { 0, };
926   guint8 delay_req[44];
927   GstByteWriter writer;
928   GIOStatus status;
929   gsize written;
930   GError *err = NULL;
931
932   header.type = TYPE_EVENT;
933   header.size = 44;
934
935   gst_byte_writer_init_with_data (&writer, delay_req, 44, FALSE);
936   gst_byte_writer_put_uint8_unchecked (&writer, PTP_MESSAGE_TYPE_DELAY_REQ);
937   gst_byte_writer_put_uint8_unchecked (&writer, 2);
938   gst_byte_writer_put_uint16_be_unchecked (&writer, 44);
939   gst_byte_writer_put_uint8_unchecked (&writer, sync->domain);
940   gst_byte_writer_put_uint8_unchecked (&writer, 0);
941   gst_byte_writer_put_uint16_be_unchecked (&writer, 0);
942   gst_byte_writer_put_uint64_be_unchecked (&writer, 0);
943   gst_byte_writer_put_uint32_be_unchecked (&writer, 0);
944   gst_byte_writer_put_uint64_be_unchecked (&writer,
945       ptp_clock_id.clock_identity);
946   gst_byte_writer_put_uint16_be_unchecked (&writer, ptp_clock_id.port_number);
947   gst_byte_writer_put_uint16_be_unchecked (&writer, sync->delay_req_seqnum);
948   gst_byte_writer_put_uint8_unchecked (&writer, 0x01);
949   gst_byte_writer_put_uint8_unchecked (&writer, 0x7f);
950   gst_byte_writer_put_uint64_be_unchecked (&writer, 0);
951   gst_byte_writer_put_uint16_be_unchecked (&writer, 0);
952
953   status =
954       g_io_channel_write_chars (stdout_channel, (gchar *) & header,
955       sizeof (header), &written, &err);
956   if (status == G_IO_STATUS_ERROR) {
957     g_warning ("Failed to write to stdout: %s", err->message);
958     return G_SOURCE_REMOVE;
959   } else if (status == G_IO_STATUS_EOF) {
960     g_message ("EOF on stdout");
961     g_main_loop_quit (main_loop);
962     return G_SOURCE_REMOVE;
963   } else if (status != G_IO_STATUS_NORMAL) {
964     g_warning ("Unexpected stdout write status: %d", status);
965     g_main_loop_quit (main_loop);
966     return G_SOURCE_REMOVE;
967   } else if (written != sizeof (header)) {
968     g_warning ("Unexpected write size: %" G_GSIZE_FORMAT, written);
969     g_main_loop_quit (main_loop);
970     return G_SOURCE_REMOVE;
971   }
972
973   sync->delay_req_send_time_local = gst_util_get_timestamp ();
974
975   status =
976       g_io_channel_write_chars (stdout_channel,
977       (const gchar *) delay_req, 44, &written, &err);
978   if (status == G_IO_STATUS_ERROR) {
979     g_warning ("Failed to write to stdout: %s", err->message);
980     g_main_loop_quit (main_loop);
981     return G_SOURCE_REMOVE;
982   } else if (status == G_IO_STATUS_EOF) {
983     g_message ("EOF on stdout");
984     g_main_loop_quit (main_loop);
985     return G_SOURCE_REMOVE;
986   } else if (status != G_IO_STATUS_NORMAL) {
987     g_warning ("Unexpected stdout write status: %d", status);
988     g_main_loop_quit (main_loop);
989     return G_SOURCE_REMOVE;
990   } else if (written != 44) {
991     g_warning ("Unexpected write size: %" G_GSIZE_FORMAT, written);
992     g_main_loop_quit (main_loop);
993     return G_SOURCE_REMOVE;
994   }
995
996   return G_SOURCE_REMOVE;
997 }
998
999 static gboolean
1000 send_delay_req (PtpDomainData * domain, PtpPendingSync * sync)
1001 {
1002   GstClockTime now = gst_util_get_timestamp ();
1003   guint timeout;
1004   GSource *timeout_source;
1005
1006   if (domain->last_delay_req != 0
1007       && domain->last_delay_req + domain->min_delay_req_interval > now)
1008     return FALSE;
1009
1010   domain->last_delay_req = now;
1011   sync->delay_req_seqnum = domain->last_delay_req_seqnum++;
1012
1013   /* IEEE 1588 9.5.11.2 */
1014   if (domain->last_delay_req == 0 || domain->min_delay_req_interval == 0)
1015     timeout = 0;
1016   else
1017     timeout =
1018         g_rand_int_range (delay_req_rand, 0,
1019         (domain->min_delay_req_interval * 2) / GST_MSECOND);
1020
1021   sync->timeout_source = timeout_source = g_timeout_source_new (timeout);
1022   g_source_set_priority (timeout_source, G_PRIORITY_DEFAULT);
1023   g_source_set_callback (timeout_source, (GSourceFunc) send_delay_req_timeout,
1024       sync, NULL);
1025   g_source_attach (timeout_source, main_context);
1026
1027   return TRUE;
1028 }
1029
1030 /* Filtering of outliers for RTT and time calculations inspired
1031  * by the code from gstnetclientclock.c
1032  */
1033 static void
1034 update_ptp_time (PtpDomainData * domain, PtpPendingSync * sync)
1035 {
1036   GstClockTime internal_time, external_time, rate_num, rate_den;
1037   GstClockTime corrected_ptp_time, corrected_local_time;
1038   gdouble r_squared = 0.0;
1039   gboolean synced;
1040   GstClockTimeDiff discont = 0;
1041   GstClockTime estimated_ptp_time = GST_CLOCK_TIME_NONE;
1042
1043 #ifdef USE_ONLY_SYNC_WITH_DELAY
1044   if (sync->delay_req_send_time_local == GST_CLOCK_TIME_NONE)
1045     return;
1046 #endif
1047
1048 #ifdef USE_MEASUREMENT_FILTERING
1049   GstClockTime orig_internal_time, orig_external_time, orig_rate_num,
1050       orig_rate_den;
1051   GstClockTime new_estimated_ptp_time;
1052   GstClockTime max_discont, estimated_ptp_time_min, estimated_ptp_time_max;
1053   gboolean now_synced;
1054
1055   /* We check this here and when updating the mean path delay, because
1056    * we can get here without a delay response too */
1057   if (sync->follow_up_recv_time_local != GST_CLOCK_TIME_NONE
1058       && sync->follow_up_recv_time_local >
1059       sync->sync_recv_time_local + 2 * domain->mean_path_delay) {
1060     GST_WARNING ("Sync-follow-up delay for domain %u too big: %" GST_TIME_FORMAT
1061         " > 2 * %" GST_TIME_FORMAT, domain->domain,
1062         GST_TIME_ARGS (sync->follow_up_recv_time_local),
1063         GST_TIME_ARGS (domain->mean_path_delay));
1064     goto out;
1065   }
1066 #endif
1067
1068   /* IEEE 1588 11.2 */
1069   corrected_ptp_time =
1070       sync->sync_send_time_remote +
1071       (sync->correction_field_sync + 32768) / 65536;
1072   corrected_local_time = sync->sync_recv_time_local - domain->mean_path_delay;
1073
1074   /* Set an initial local-remote relation */
1075   if (domain->last_ptp_time == 0)
1076     gst_clock_set_calibration (domain->domain_clock, corrected_local_time,
1077         corrected_ptp_time, 1, 1);
1078
1079 #ifdef USE_MEASUREMENT_FILTERING
1080   /* Check if the corrected PTP time is +/- 3/4 RTT around what we would
1081    * estimate with our present knowledge about the clock
1082    */
1083   /* Store what the clock produced as 'now' before this update */
1084   gst_clock_get_calibration (GST_CLOCK_CAST (domain->domain_clock),
1085       &orig_internal_time, &orig_external_time, &orig_rate_num, &orig_rate_den);
1086   internal_time = orig_internal_time;
1087   external_time = orig_external_time;
1088   rate_num = orig_rate_num;
1089   rate_den = orig_rate_den;
1090
1091   /* 3/4 RTT window around the estimation */
1092   max_discont = domain->mean_path_delay * 3 / 2;
1093
1094   /* Check if the estimated sync time is inside our window */
1095   estimated_ptp_time_min = corrected_local_time - max_discont;
1096   estimated_ptp_time_min =
1097       gst_clock_adjust_with_calibration (GST_CLOCK_CAST (domain->domain_clock),
1098       estimated_ptp_time_min, internal_time, external_time, rate_num, rate_den);
1099   estimated_ptp_time_max = corrected_local_time + max_discont;
1100   estimated_ptp_time_max =
1101       gst_clock_adjust_with_calibration (GST_CLOCK_CAST (domain->domain_clock),
1102       estimated_ptp_time_max, internal_time, external_time, rate_num, rate_den);
1103
1104   synced = (estimated_ptp_time_min < corrected_ptp_time
1105       && corrected_ptp_time < estimated_ptp_time_max);
1106
1107   GST_DEBUG ("Adding observation for domain %u: %" GST_TIME_FORMAT " - %"
1108       GST_TIME_FORMAT, domain->domain,
1109       GST_TIME_ARGS (corrected_ptp_time), GST_TIME_ARGS (corrected_local_time));
1110
1111   GST_DEBUG ("Synced %d: %" GST_TIME_FORMAT " < %" GST_TIME_FORMAT " < %"
1112       GST_TIME_FORMAT, synced, GST_TIME_ARGS (estimated_ptp_time_min),
1113       GST_TIME_ARGS (corrected_ptp_time),
1114       GST_TIME_ARGS (estimated_ptp_time_max));
1115
1116   if (gst_clock_add_observation_unapplied (domain->domain_clock,
1117           corrected_local_time, corrected_ptp_time, &r_squared,
1118           &internal_time, &external_time, &rate_num, &rate_den)) {
1119     GST_DEBUG ("Regression gave r_squared: %f", r_squared);
1120
1121     /* Old estimated PTP time based on receive time and path delay */
1122     estimated_ptp_time = corrected_local_time;
1123     estimated_ptp_time =
1124         gst_clock_adjust_with_calibration (GST_CLOCK_CAST
1125         (domain->domain_clock), estimated_ptp_time, orig_internal_time,
1126         orig_external_time, orig_rate_num, orig_rate_den);
1127
1128     /* New estimated PTP time based on receive time and path delay */
1129     new_estimated_ptp_time = corrected_local_time;
1130     new_estimated_ptp_time =
1131         gst_clock_adjust_with_calibration (GST_CLOCK_CAST
1132         (domain->domain_clock), new_estimated_ptp_time, internal_time,
1133         external_time, rate_num, rate_den);
1134
1135     discont = GST_CLOCK_DIFF (estimated_ptp_time, new_estimated_ptp_time);
1136     if (synced && ABS (discont) > max_discont) {
1137       GstClockTimeDiff offset;
1138       GST_DEBUG ("Too large a discont %s%" GST_TIME_FORMAT
1139           ", clamping to 1/4 average RTT = %" GST_TIME_FORMAT,
1140           (discont < 0 ? "-" : ""), GST_TIME_ARGS (ABS (discont)),
1141           GST_TIME_ARGS (max_discont));
1142       if (discont > 0) {        /* Too large a forward step - add a -ve offset */
1143         offset = max_discont - discont;
1144         if (-offset > external_time)
1145           external_time = 0;
1146         else
1147           external_time += offset;
1148       } else {                  /* Too large a backward step - add a +ve offset */
1149         offset = -(max_discont + discont);
1150         external_time += offset;
1151       }
1152
1153       discont += offset;
1154     } else {
1155       GST_DEBUG ("Discont %s%" GST_TIME_FORMAT " (max: %" GST_TIME_FORMAT ")",
1156           (discont < 0 ? "-" : ""), GST_TIME_ARGS (ABS (discont)),
1157           GST_TIME_ARGS (max_discont));
1158     }
1159
1160     /* Check if the estimated sync time is now (still) inside our window */
1161     estimated_ptp_time_min = corrected_local_time - max_discont;
1162     estimated_ptp_time_min =
1163         gst_clock_adjust_with_calibration (GST_CLOCK_CAST
1164         (domain->domain_clock), estimated_ptp_time_min, internal_time,
1165         external_time, rate_num, rate_den);
1166     estimated_ptp_time_max = corrected_local_time + max_discont;
1167     estimated_ptp_time_max =
1168         gst_clock_adjust_with_calibration (GST_CLOCK_CAST
1169         (domain->domain_clock), estimated_ptp_time_max, internal_time,
1170         external_time, rate_num, rate_den);
1171
1172     now_synced = (estimated_ptp_time_min < corrected_ptp_time
1173         && corrected_ptp_time < estimated_ptp_time_max);
1174
1175     GST_DEBUG ("Now synced %d: %" GST_TIME_FORMAT " < %" GST_TIME_FORMAT " < %"
1176         GST_TIME_FORMAT, now_synced, GST_TIME_ARGS (estimated_ptp_time_min),
1177         GST_TIME_ARGS (corrected_ptp_time),
1178         GST_TIME_ARGS (estimated_ptp_time_max));
1179
1180     if (synced || now_synced || domain->skipped_updates > MAX_SKIPPED_UPDATES) {
1181       gst_clock_set_calibration (GST_CLOCK_CAST (domain->domain_clock),
1182           internal_time, external_time, rate_num, rate_den);
1183       domain->skipped_updates = 0;
1184
1185       domain->last_ptp_time = corrected_ptp_time;
1186       domain->last_local_time = corrected_local_time;
1187     } else {
1188       domain->skipped_updates++;
1189     }
1190   } else {
1191     domain->last_ptp_time = corrected_ptp_time;
1192     domain->last_local_time = corrected_local_time;
1193   }
1194
1195 #else
1196   GST_DEBUG ("Adding observation for domain %u: %" GST_TIME_FORMAT " - %"
1197       GST_TIME_FORMAT, domain->domain,
1198       GST_TIME_ARGS (corrected_ptp_time), GST_TIME_ARGS (corrected_local_time));
1199
1200   gst_clock_get_calibration (GST_CLOCK_CAST (domain->domain_clock),
1201       &internal_time, &external_time, &rate_num, &rate_den);
1202
1203   estimated_ptp_time = corrected_local_time;
1204   estimated_ptp_time =
1205       gst_clock_adjust_with_calibration (GST_CLOCK_CAST
1206       (domain->domain_clock), estimated_ptp_time, internal_time,
1207       external_time, rate_num, rate_den);
1208
1209   gst_clock_add_observation (domain->domain_clock,
1210       corrected_local_time, corrected_ptp_time, &r_squared);
1211
1212   gst_clock_get_calibration (GST_CLOCK_CAST (domain->domain_clock),
1213       &internal_time, &external_time, &rate_num, &rate_den);
1214
1215   synced = TRUE;
1216   domain->last_ptp_time = corrected_ptp_time;
1217   domain->last_local_time = corrected_local_time;
1218 #endif
1219
1220 #ifdef USE_MEASUREMENT_FILTERING
1221 out:
1222 #endif
1223   if (g_atomic_int_get (&domain_stats_n_hooks)) {
1224     GstStructure *stats = gst_structure_new (GST_PTP_STATISTICS_TIME_UPDATED,
1225         "domain", G_TYPE_UINT, domain->domain,
1226         "mean-path-delay-avg", GST_TYPE_CLOCK_TIME, domain->mean_path_delay,
1227         "local-time", GST_TYPE_CLOCK_TIME, corrected_local_time,
1228         "ptp-time", GST_TYPE_CLOCK_TIME, corrected_ptp_time,
1229         "estimated-ptp-time", GST_TYPE_CLOCK_TIME, estimated_ptp_time,
1230         "discontinuity", G_TYPE_INT64, discont,
1231         "synced", G_TYPE_BOOLEAN, synced,
1232         "r-squared", G_TYPE_DOUBLE, r_squared,
1233         "internal-time", GST_TYPE_CLOCK_TIME, internal_time,
1234         "external-time", GST_TYPE_CLOCK_TIME, external_time,
1235         "rate-num", G_TYPE_UINT64, rate_num,
1236         "rate-den", G_TYPE_UINT64, rate_den,
1237         "rate", G_TYPE_DOUBLE, (gdouble) (rate_num) / rate_den,
1238         NULL);
1239     emit_ptp_statistics (domain->domain, stats);
1240     gst_structure_free (stats);
1241   }
1242
1243 }
1244
1245 #ifdef USE_MEDIAN_PRE_FILTERING
1246 static gint
1247 compare_clock_time (const GstClockTime * a, const GstClockTime * b)
1248 {
1249   if (*a < *b)
1250     return -1;
1251   else if (*a > *b)
1252     return 1;
1253   return 0;
1254 }
1255 #endif
1256
1257 static gboolean
1258 update_mean_path_delay (PtpDomainData * domain, PtpPendingSync * sync)
1259 {
1260 #ifdef USE_MEDIAN_PRE_FILTERING
1261   GstClockTime last_path_delays[G_N_ELEMENTS (domain->last_path_delays)];
1262   GstClockTime median;
1263   gint i;
1264 #endif
1265
1266   GstClockTime mean_path_delay, delay_req_delay;
1267   gboolean ret;
1268
1269   /* IEEE 1588 11.3 */
1270   mean_path_delay =
1271       (sync->delay_req_recv_time_remote - sync->sync_send_time_remote +
1272       sync->sync_recv_time_local - sync->delay_req_send_time_local -
1273       (sync->correction_field_sync + sync->correction_field_delay +
1274           32768) / 65536) / 2;
1275
1276 #ifdef USE_MEDIAN_PRE_FILTERING
1277   for (i = 1; i < G_N_ELEMENTS (domain->last_path_delays); i++)
1278     domain->last_path_delays[i - 1] = domain->last_path_delays[i];
1279   domain->last_path_delays[i - 1] = mean_path_delay;
1280
1281   if (domain->last_path_delays_missing) {
1282     domain->last_path_delays_missing--;
1283   } else {
1284     memcpy (&last_path_delays, &domain->last_path_delays,
1285         sizeof (last_path_delays));
1286     g_qsort_with_data (&last_path_delays,
1287         G_N_ELEMENTS (domain->last_path_delays), sizeof (GstClockTime),
1288         (GCompareDataFunc) compare_clock_time, NULL);
1289
1290     median = last_path_delays[G_N_ELEMENTS (last_path_delays) / 2];
1291
1292     /* FIXME: We might want to use something else here, like only allowing
1293      * things in the interquartile range, or also filtering away delays that
1294      * are too small compared to the median. This here worked well enough
1295      * in tests so far.
1296      */
1297     if (mean_path_delay > 2 * median) {
1298       GST_WARNING ("Path delay for domain %u too big compared to median: %"
1299           GST_TIME_FORMAT " > 2 * %" GST_TIME_FORMAT, domain->domain,
1300           GST_TIME_ARGS (mean_path_delay), GST_TIME_ARGS (median));
1301       ret = FALSE;
1302       goto out;
1303     }
1304   }
1305 #endif
1306
1307 #ifdef USE_RUNNING_AVERAGE_DELAY
1308   /* Track an average round trip time, for a bit of smoothing */
1309   /* Always update before discarding a sample, so genuine changes in
1310    * the network get picked up, eventually */
1311   if (domain->mean_path_delay == 0)
1312     domain->mean_path_delay = mean_path_delay;
1313   else if (mean_path_delay < domain->mean_path_delay)   /* Shorter RTTs carry more weight than longer */
1314     domain->mean_path_delay =
1315         (3 * domain->mean_path_delay + mean_path_delay) / 4;
1316   else
1317     domain->mean_path_delay =
1318         (15 * domain->mean_path_delay + mean_path_delay) / 16;
1319 #else
1320   domain->mean_path_delay = mean_path_delay;
1321 #endif
1322
1323 #ifdef USE_MEASUREMENT_FILTERING
1324   if (sync->follow_up_recv_time_local != GST_CLOCK_TIME_NONE &&
1325       domain->mean_path_delay != 0
1326       && sync->follow_up_recv_time_local >
1327       sync->sync_recv_time_local + 2 * domain->mean_path_delay) {
1328     GST_WARNING ("Sync-follow-up delay for domain %u too big: %" GST_TIME_FORMAT
1329         " > 2 * %" GST_TIME_FORMAT, domain->domain,
1330         GST_TIME_ARGS (sync->follow_up_recv_time_local),
1331         GST_TIME_ARGS (domain->mean_path_delay));
1332     ret = FALSE;
1333     goto out;
1334   }
1335
1336   if (mean_path_delay > 2 * domain->mean_path_delay) {
1337     GST_WARNING ("Mean path delay for domain %u too big: %" GST_TIME_FORMAT
1338         " > 2 * %" GST_TIME_FORMAT, domain->domain,
1339         GST_TIME_ARGS (mean_path_delay),
1340         GST_TIME_ARGS (domain->mean_path_delay));
1341     ret = FALSE;
1342     goto out;
1343   }
1344 #endif
1345
1346   delay_req_delay =
1347       sync->delay_resp_recv_time_local - sync->delay_req_send_time_local;
1348
1349 #ifdef USE_MEASUREMENT_FILTERING
1350   /* delay_req_delay is a RTT, so 2 times the path delay */
1351   if (delay_req_delay > 4 * domain->mean_path_delay) {
1352     GST_WARNING ("Delay-request-response delay for domain %u too big: %"
1353         GST_TIME_FORMAT " > 4 * %" GST_TIME_FORMAT, domain->domain,
1354         GST_TIME_ARGS (delay_req_delay),
1355         GST_TIME_ARGS (domain->mean_path_delay));
1356     ret = FALSE;
1357     goto out;
1358   }
1359 #endif
1360
1361   ret = TRUE;
1362
1363   GST_DEBUG ("Got mean path delay for domain %u: %" GST_TIME_FORMAT " (new: %"
1364       GST_TIME_FORMAT ")", domain->domain,
1365       GST_TIME_ARGS (domain->mean_path_delay), GST_TIME_ARGS (mean_path_delay));
1366   GST_DEBUG ("Delay request delay for domain %u: %" GST_TIME_FORMAT,
1367       domain->domain, GST_TIME_ARGS (delay_req_delay));
1368
1369 #ifdef USE_MEASUREMENT_FILTERING
1370 out:
1371 #endif
1372   if (g_atomic_int_get (&domain_stats_n_hooks)) {
1373     GstStructure *stats =
1374         gst_structure_new (GST_PTP_STATISTICS_PATH_DELAY_MEASURED,
1375         "domain", G_TYPE_UINT, domain->domain,
1376         "mean-path-delay-avg", GST_TYPE_CLOCK_TIME, domain->mean_path_delay,
1377         "mean-path-delay", GST_TYPE_CLOCK_TIME, mean_path_delay,
1378         "delay-request-delay", GST_TYPE_CLOCK_TIME, delay_req_delay, NULL);
1379     emit_ptp_statistics (domain->domain, stats);
1380     gst_structure_free (stats);
1381   }
1382
1383   return ret;
1384 }
1385
1386 static void
1387 handle_sync_message (PtpMessage * msg, GstClockTime receive_time)
1388 {
1389   GList *l;
1390   PtpDomainData *domain = NULL;
1391   PtpPendingSync *sync = NULL;
1392
1393   /* Don't consider messages with the alternate master flag set */
1394   if ((msg->flag_field & 0x0100))
1395     return;
1396
1397   for (l = domain_data; l; l = l->next) {
1398     PtpDomainData *tmp = l->data;
1399
1400     if (msg->domain_number == tmp->domain) {
1401       domain = tmp;
1402       break;
1403     }
1404   }
1405
1406   if (!domain) {
1407     gchar *clock_name;
1408
1409     domain = g_new0 (PtpDomainData, 1);
1410     domain->domain = msg->domain_number;
1411     clock_name = g_strdup_printf ("ptp-clock-%u", domain->domain);
1412     domain->domain_clock =
1413         g_object_new (GST_TYPE_SYSTEM_CLOCK, "name", clock_name, NULL);
1414     g_free (clock_name);
1415     g_queue_init (&domain->pending_syncs);
1416     domain->last_path_delays_missing = 9;
1417     domain_data = g_list_prepend (domain_data, domain);
1418
1419     g_mutex_lock (&domain_clocks_lock);
1420     domain_clocks = g_list_prepend (domain_clocks, domain);
1421     g_mutex_unlock (&domain_clocks_lock);
1422   }
1423
1424   /* If we have a master clock, ignore this message if it's not coming from there */
1425   if (domain->have_master_clock
1426       && compare_clock_identity (&domain->master_clock_identity,
1427           &msg->source_port_identity) != 0)
1428     return;
1429
1430 #ifdef USE_OPPORTUNISTIC_CLOCK_SELECTION
1431   /* Opportunistic selection of master clock */
1432   if (!domain->have_master_clock)
1433     memcpy (&domain->master_clock_identity, &msg->source_port_identity,
1434         sizeof (PtpClockIdentity));
1435 #else
1436   if (!domain->have_master_clock)
1437     return;
1438 #endif
1439
1440   domain->sync_interval = log2_to_clock_time (msg->log_message_interval);
1441
1442   /* Check if duplicated */
1443   for (l = domain->pending_syncs.head; l; l = l->next) {
1444     PtpPendingSync *tmp = l->data;
1445
1446     if (tmp->sync_seqnum == msg->sequence_id)
1447       return;
1448   }
1449
1450   if (msg->message_specific.sync.origin_timestamp.seconds_field >
1451       GST_CLOCK_TIME_NONE / GST_SECOND) {
1452     GST_FIXME ("Unsupported sync message seconds field value: %"
1453         G_GUINT64_FORMAT " > %" G_GUINT64_FORMAT,
1454         msg->message_specific.sync.origin_timestamp.seconds_field,
1455         GST_CLOCK_TIME_NONE / GST_SECOND);
1456     return;
1457   }
1458
1459   sync = g_new0 (PtpPendingSync, 1);
1460   sync->domain = domain->domain;
1461   sync->sync_seqnum = msg->sequence_id;
1462   sync->sync_recv_time_local = receive_time;
1463   sync->sync_send_time_remote = GST_CLOCK_TIME_NONE;
1464   sync->follow_up_recv_time_local = GST_CLOCK_TIME_NONE;
1465   sync->delay_req_send_time_local = GST_CLOCK_TIME_NONE;
1466   sync->delay_req_recv_time_remote = GST_CLOCK_TIME_NONE;
1467   sync->delay_resp_recv_time_local = GST_CLOCK_TIME_NONE;
1468
1469   /* 0.5 correction factor for division later */
1470   sync->correction_field_sync = msg->correction_field;
1471
1472   if ((msg->flag_field & 0x0200)) {
1473     /* Wait for FOLLOW_UP */
1474   } else {
1475     sync->sync_send_time_remote =
1476         PTP_TIMESTAMP_TO_GST_CLOCK_TIME (msg->message_specific.
1477         sync.origin_timestamp);
1478
1479     if (domain->last_ptp_sync_time != 0
1480         && domain->last_ptp_sync_time >= sync->sync_send_time_remote) {
1481       GST_WARNING ("Backwards PTP times in domain %u: %" GST_TIME_FORMAT " >= %"
1482           GST_TIME_FORMAT, domain->domain,
1483           GST_TIME_ARGS (domain->last_ptp_sync_time),
1484           GST_TIME_ARGS (sync->sync_send_time_remote));
1485       ptp_pending_sync_free (sync);
1486       sync = NULL;
1487       return;
1488     }
1489     domain->last_ptp_sync_time = sync->sync_send_time_remote;
1490
1491     if (send_delay_req (domain, sync)) {
1492       /* Sent delay request */
1493     } else {
1494       update_ptp_time (domain, sync);
1495       ptp_pending_sync_free (sync);
1496       sync = NULL;
1497     }
1498   }
1499
1500   if (sync)
1501     g_queue_push_tail (&domain->pending_syncs, sync);
1502 }
1503
1504 static void
1505 handle_follow_up_message (PtpMessage * msg, GstClockTime receive_time)
1506 {
1507   GList *l;
1508   PtpDomainData *domain = NULL;
1509   PtpPendingSync *sync = NULL;
1510
1511   /* Don't consider messages with the alternate master flag set */
1512   if ((msg->flag_field & 0x0100))
1513     return;
1514
1515   for (l = domain_data; l; l = l->next) {
1516     PtpDomainData *tmp = l->data;
1517
1518     if (msg->domain_number == tmp->domain) {
1519       domain = tmp;
1520       break;
1521     }
1522   }
1523
1524   if (!domain)
1525     return;
1526
1527   /* If we have a master clock, ignore this message if it's not coming from there */
1528   if (domain->have_master_clock
1529       && compare_clock_identity (&domain->master_clock_identity,
1530           &msg->source_port_identity) != 0)
1531     return;
1532
1533   /* Check if we know about this one */
1534   for (l = domain->pending_syncs.head; l; l = l->next) {
1535     PtpPendingSync *tmp = l->data;
1536
1537     if (tmp->sync_seqnum == msg->sequence_id) {
1538       sync = tmp;
1539       break;
1540     }
1541   }
1542
1543   if (!sync)
1544     return;
1545
1546   /* Got a FOLLOW_UP for this already */
1547   if (sync->sync_send_time_remote != GST_CLOCK_TIME_NONE)
1548     return;
1549
1550   if (sync->sync_recv_time_local >= receive_time) {
1551     GST_ERROR ("Got bogus follow up in domain %u: %" GST_TIME_FORMAT " > %"
1552         GST_TIME_FORMAT, domain->domain,
1553         GST_TIME_ARGS (sync->sync_recv_time_local),
1554         GST_TIME_ARGS (receive_time));
1555     g_queue_remove (&domain->pending_syncs, sync);
1556     ptp_pending_sync_free (sync);
1557     return;
1558   }
1559
1560   sync->correction_field_sync += msg->correction_field;
1561   sync->sync_send_time_remote =
1562       PTP_TIMESTAMP_TO_GST_CLOCK_TIME (msg->message_specific.
1563       follow_up.precise_origin_timestamp);
1564   sync->follow_up_recv_time_local = receive_time;
1565
1566   if (domain->last_ptp_sync_time >= sync->sync_send_time_remote) {
1567     GST_WARNING ("Backwards PTP times in domain %u: %" GST_TIME_FORMAT " >= %"
1568         GST_TIME_FORMAT, domain->domain,
1569         GST_TIME_ARGS (domain->last_ptp_sync_time),
1570         GST_TIME_ARGS (sync->sync_send_time_remote));
1571     g_queue_remove (&domain->pending_syncs, sync);
1572     ptp_pending_sync_free (sync);
1573     sync = NULL;
1574     return;
1575   }
1576   domain->last_ptp_sync_time = sync->sync_send_time_remote;
1577
1578   if (send_delay_req (domain, sync)) {
1579     /* Sent delay request */
1580   } else {
1581     update_ptp_time (domain, sync);
1582     g_queue_remove (&domain->pending_syncs, sync);
1583     ptp_pending_sync_free (sync);
1584     sync = NULL;
1585   }
1586 }
1587
1588 static void
1589 handle_delay_resp_message (PtpMessage * msg, GstClockTime receive_time)
1590 {
1591   GList *l;
1592   PtpDomainData *domain = NULL;
1593   PtpPendingSync *sync = NULL;
1594
1595   /* Don't consider messages with the alternate master flag set */
1596   if ((msg->flag_field & 0x0100))
1597     return;
1598
1599   for (l = domain_data; l; l = l->next) {
1600     PtpDomainData *tmp = l->data;
1601
1602     if (msg->domain_number == tmp->domain) {
1603       domain = tmp;
1604       break;
1605     }
1606   }
1607
1608   if (!domain)
1609     return;
1610
1611   /* If we have a master clock, ignore this message if it's not coming from there */
1612   if (domain->have_master_clock
1613       && compare_clock_identity (&domain->master_clock_identity,
1614           &msg->source_port_identity) != 0)
1615     return;
1616
1617   /* Not for us */
1618   if (msg->message_specific.delay_resp.
1619       requesting_port_identity.clock_identity != ptp_clock_id.clock_identity
1620       || msg->message_specific.delay_resp.
1621       requesting_port_identity.port_number != ptp_clock_id.port_number)
1622     return;
1623
1624   domain->min_delay_req_interval =
1625       log2_to_clock_time (msg->log_message_interval);
1626
1627   /* Check if we know about this one */
1628   for (l = domain->pending_syncs.head; l; l = l->next) {
1629     PtpPendingSync *tmp = l->data;
1630
1631     if (tmp->delay_req_seqnum == msg->sequence_id) {
1632       sync = tmp;
1633       break;
1634     }
1635   }
1636
1637   if (!sync)
1638     return;
1639
1640   /* Got a DELAY_RESP for this already */
1641   if (sync->delay_req_recv_time_remote != GST_CLOCK_TIME_NONE)
1642     return;
1643
1644   if (sync->delay_req_send_time_local > receive_time) {
1645     GST_ERROR ("Got bogus delay response in domain %u: %" GST_TIME_FORMAT " > %"
1646         GST_TIME_FORMAT, domain->domain,
1647         GST_TIME_ARGS (sync->delay_req_send_time_local),
1648         GST_TIME_ARGS (receive_time));
1649     g_queue_remove (&domain->pending_syncs, sync);
1650     ptp_pending_sync_free (sync);
1651     return;
1652   }
1653
1654   sync->correction_field_delay = msg->correction_field;
1655
1656   sync->delay_req_recv_time_remote =
1657       PTP_TIMESTAMP_TO_GST_CLOCK_TIME (msg->message_specific.
1658       delay_resp.receive_timestamp);
1659   sync->delay_resp_recv_time_local = receive_time;
1660
1661   if (domain->mean_path_delay != 0
1662       && sync->sync_send_time_remote > sync->delay_req_recv_time_remote) {
1663     GST_WARNING ("Sync send time after delay req receive time for domain %u: %"
1664         GST_TIME_FORMAT " > %" GST_TIME_FORMAT, domain->domain,
1665         GST_TIME_ARGS (sync->sync_send_time_remote),
1666         GST_TIME_ARGS (sync->delay_req_recv_time_remote));
1667     g_queue_remove (&domain->pending_syncs, sync);
1668     ptp_pending_sync_free (sync);
1669     return;
1670   }
1671
1672   if (update_mean_path_delay (domain, sync))
1673     update_ptp_time (domain, sync);
1674   g_queue_remove (&domain->pending_syncs, sync);
1675   ptp_pending_sync_free (sync);
1676 }
1677
1678 static void
1679 handle_ptp_message (PtpMessage * msg, GstClockTime receive_time)
1680 {
1681   /* Ignore our own messages */
1682   if (msg->source_port_identity.clock_identity == ptp_clock_id.clock_identity &&
1683       msg->source_port_identity.port_number == ptp_clock_id.port_number)
1684     return;
1685
1686   switch (msg->message_type) {
1687     case PTP_MESSAGE_TYPE_ANNOUNCE:
1688       handle_announce_message (msg, receive_time);
1689       break;
1690     case PTP_MESSAGE_TYPE_SYNC:
1691       handle_sync_message (msg, receive_time);
1692       break;
1693     case PTP_MESSAGE_TYPE_FOLLOW_UP:
1694       handle_follow_up_message (msg, receive_time);
1695       break;
1696     case PTP_MESSAGE_TYPE_DELAY_RESP:
1697       handle_delay_resp_message (msg, receive_time);
1698       break;
1699     default:
1700       break;
1701   }
1702 }
1703
1704 static gboolean
1705 have_stdin_data_cb (GIOChannel * channel, GIOCondition condition,
1706     gpointer user_data)
1707 {
1708   GIOStatus status;
1709   StdIOHeader header;
1710   gchar buffer[8192];
1711   GError *err = NULL;
1712   gsize read;
1713
1714   if ((condition & G_IO_STATUS_EOF)) {
1715     GST_ERROR ("Got EOF on stdin");
1716     g_main_loop_quit (main_loop);
1717     return G_SOURCE_REMOVE;
1718   }
1719
1720   status =
1721       g_io_channel_read_chars (channel, (gchar *) & header, sizeof (header),
1722       &read, &err);
1723   if (status == G_IO_STATUS_ERROR) {
1724     GST_ERROR ("Failed to read from stdin: %s", err->message);
1725     g_main_loop_quit (main_loop);
1726     return G_SOURCE_REMOVE;
1727   } else if (status == G_IO_STATUS_EOF) {
1728     GST_ERROR ("Got EOF on stdin");
1729     g_main_loop_quit (main_loop);
1730     return G_SOURCE_REMOVE;
1731   } else if (status != G_IO_STATUS_NORMAL) {
1732     GST_ERROR ("Unexpected stdin read status: %d", status);
1733     g_main_loop_quit (main_loop);
1734     return G_SOURCE_REMOVE;
1735   } else if (read != sizeof (header)) {
1736     GST_ERROR ("Unexpected read size: %" G_GSIZE_FORMAT, read);
1737     g_main_loop_quit (main_loop);
1738     return G_SOURCE_REMOVE;
1739   } else if (header.size > 8192) {
1740     GST_ERROR ("Unexpected size: %u", header.size);
1741     g_main_loop_quit (main_loop);
1742     return G_SOURCE_REMOVE;
1743   }
1744
1745   status = g_io_channel_read_chars (channel, buffer, header.size, &read, &err);
1746   if (status == G_IO_STATUS_ERROR) {
1747     GST_ERROR ("Failed to read from stdin: %s", err->message);
1748     g_main_loop_quit (main_loop);
1749     return G_SOURCE_REMOVE;
1750   } else if (status == G_IO_STATUS_EOF) {
1751     GST_ERROR ("EOF on stdin");
1752     g_main_loop_quit (main_loop);
1753     return G_SOURCE_REMOVE;
1754   } else if (status != G_IO_STATUS_NORMAL) {
1755     GST_ERROR ("Unexpected stdin read status: %d", status);
1756     g_main_loop_quit (main_loop);
1757     return G_SOURCE_REMOVE;
1758   } else if (read != header.size) {
1759     GST_ERROR ("Unexpected read size: %" G_GSIZE_FORMAT, read);
1760     g_main_loop_quit (main_loop);
1761     return G_SOURCE_REMOVE;
1762   }
1763
1764   switch (header.type) {
1765     case TYPE_EVENT:
1766     case TYPE_GENERAL:{
1767       GstClockTime receive_time = gst_util_get_timestamp ();
1768       PtpMessage msg;
1769
1770       if (parse_ptp_message (&msg, (const guint8 *) buffer, header.size)) {
1771         dump_ptp_message (&msg);
1772         handle_ptp_message (&msg, receive_time);
1773       }
1774       break;
1775     }
1776     default:
1777     case TYPE_CLOCK_ID:{
1778       if (header.size != 8) {
1779         GST_ERROR ("Unexpected clock id size (%u != 8)", header.size);
1780         g_main_loop_quit (main_loop);
1781         return G_SOURCE_REMOVE;
1782       }
1783       g_mutex_lock (&ptp_lock);
1784       ptp_clock_id.clock_identity = GST_READ_UINT64_BE (buffer);
1785       ptp_clock_id.port_number = getpid ();
1786       GST_DEBUG ("Got clock id 0x%016" G_GINT64_MODIFIER "x %u",
1787           ptp_clock_id.clock_identity, ptp_clock_id.port_number);
1788       g_cond_signal (&ptp_cond);
1789       g_mutex_unlock (&ptp_lock);
1790       break;
1791     }
1792   }
1793
1794   return G_SOURCE_CONTINUE;
1795 }
1796
1797 /* Cleanup all announce messages and announce message senders
1798  * that are timed out by now, and clean up all pending syncs
1799  * that are missing their FOLLOW_UP or DELAY_RESP */
1800 static gboolean
1801 cleanup_cb (gpointer data)
1802 {
1803   GstClockTime now = gst_util_get_timestamp ();
1804   GList *l, *m, *n;
1805
1806   for (l = domain_data; l; l = l->next) {
1807     PtpDomainData *domain = l->data;
1808
1809     for (n = domain->announce_senders; n;) {
1810       PtpAnnounceSender *sender = n->data;
1811       gboolean timed_out = TRUE;
1812
1813       /* Keep only 5 messages per sender around */
1814       while (g_queue_get_length (&sender->announce_messages) > 5) {
1815         PtpAnnounceMessage *msg = g_queue_pop_head (&sender->announce_messages);
1816         g_free (msg);
1817       }
1818
1819       for (m = sender->announce_messages.head; m; m = m->next) {
1820         PtpAnnounceMessage *msg = m->data;
1821
1822         if (msg->receive_time +
1823             sender->announce_interval * PTP_ANNOUNCE_RECEIPT_TIMEOUT > now) {
1824           timed_out = FALSE;
1825           break;
1826         }
1827       }
1828
1829       if (timed_out) {
1830         GST_DEBUG ("Announce sender 0x%016" G_GINT64_MODIFIER "x %u timed out",
1831             sender->master_clock_identity.clock_identity,
1832             sender->master_clock_identity.port_number);
1833         g_queue_foreach (&sender->announce_messages, (GFunc) g_free, NULL);
1834         g_queue_clear (&sender->announce_messages);
1835       }
1836
1837       if (g_queue_get_length (&sender->announce_messages) == 0) {
1838         GList *tmp = n->next;
1839
1840         if (compare_clock_identity (&sender->master_clock_identity,
1841                 &domain->master_clock_identity) == 0)
1842           GST_WARNING ("currently selected master clock timed out");
1843         g_free (sender);
1844         domain->announce_senders =
1845             g_list_delete_link (domain->announce_senders, n);
1846         n = tmp;
1847       } else {
1848         n = n->next;
1849       }
1850     }
1851     select_best_master_clock (domain, now);
1852
1853     /* Clean up any pending syncs */
1854     for (n = domain->pending_syncs.head; n;) {
1855       PtpPendingSync *sync = n->data;
1856       gboolean timed_out = FALSE;
1857
1858       /* Time out pending syncs after 4 sync intervals or 10 seconds,
1859        * and pending delay reqs after 4 delay req intervals or 10 seconds
1860        */
1861       if (sync->delay_req_send_time_local != GST_CLOCK_TIME_NONE &&
1862           ((domain->min_delay_req_interval != 0
1863                   && sync->delay_req_send_time_local +
1864                   4 * domain->min_delay_req_interval < now)
1865               || (sync->delay_req_send_time_local + 10 * GST_SECOND < now))) {
1866         timed_out = TRUE;
1867       } else if ((domain->sync_interval != 0
1868               && sync->sync_recv_time_local + 4 * domain->sync_interval < now)
1869           || (sync->sync_recv_time_local + 10 * GST_SECOND < now)) {
1870         timed_out = TRUE;
1871       }
1872
1873       if (timed_out) {
1874         GList *tmp = n->next;
1875         ptp_pending_sync_free (sync);
1876         g_queue_delete_link (&domain->pending_syncs, n);
1877         n = tmp;
1878       } else {
1879         n = n->next;
1880       }
1881     }
1882   }
1883
1884   return G_SOURCE_CONTINUE;
1885 }
1886
1887 static gpointer
1888 ptp_helper_main (gpointer data)
1889 {
1890   GSource *cleanup_source;
1891
1892   GST_DEBUG ("Starting PTP helper loop");
1893
1894   /* Check all 5 seconds, if we have to cleanup ANNOUNCE or pending syncs message */
1895   cleanup_source = g_timeout_source_new_seconds (5);
1896   g_source_set_priority (cleanup_source, G_PRIORITY_DEFAULT);
1897   g_source_set_callback (cleanup_source, (GSourceFunc) cleanup_cb, NULL, NULL);
1898   g_source_attach (cleanup_source, main_context);
1899   g_source_unref (cleanup_source);
1900
1901   g_main_loop_run (main_loop);
1902   GST_DEBUG ("Stopped PTP helper loop");
1903
1904   g_mutex_lock (&ptp_lock);
1905   ptp_clock_id.clock_identity = GST_PTP_CLOCK_ID_NONE;
1906   ptp_clock_id.port_number = 0;
1907   initted = FALSE;
1908   g_cond_signal (&ptp_cond);
1909   g_mutex_unlock (&ptp_lock);
1910
1911   return NULL;
1912 }
1913
1914 /**
1915  * gst_ptp_is_supported:
1916  *
1917  * Check if PTP clocks are generally supported on this system, and if previous
1918  * initializations did not fail.
1919  *
1920  * Returns: %TRUE if PTP clocks are generally supported on this system, and
1921  * previous initializations did not fail.
1922  *
1923  * Since: 1.6
1924  */
1925 gboolean
1926 gst_ptp_is_supported (void)
1927 {
1928   return supported;
1929 }
1930
1931 /**
1932  * gst_ptp_is_initialized:
1933  *
1934  * Check if the GStreamer PTP clock subsystem is initialized.
1935  *
1936  * Returns: %TRUE if the GStreamer PTP clock subsystem is intialized.
1937  *
1938  * Since: 1.6
1939  */
1940 gboolean
1941 gst_ptp_is_initialized (void)
1942 {
1943   return initted;
1944 }
1945
1946 /**
1947  * gst_ptp_init:
1948  * @clock_id: PTP clock id of this process' clock or %GST_PTP_CLOCK_ID_NONE
1949  * @interfaces: (transfer none) (array zero-terminated=1): network interfaces to run the clock on
1950  *
1951  * Initialize the GStreamer PTP subsystem and create a PTP ordinary clock in
1952  * slave-only mode for all domains on the given @interfaces with the
1953  * given @clock_id.
1954  *
1955  * If @clock_id is %GST_PTP_CLOCK_ID_NONE, a clock id is automatically
1956  * generated from the MAC address of the first network interface.
1957  *
1958  *
1959  * This function is automatically called by gst_ptp_clock_new() with default
1960  * parameters if it wasn't called before.
1961  *
1962  * Returns: %TRUE if the GStreamer PTP clock subsystem could be initialized.
1963  *
1964  * Since: 1.6
1965  */
1966 gboolean
1967 gst_ptp_init (guint64 clock_id, gchar ** interfaces)
1968 {
1969   gboolean ret;
1970   const gchar *env;
1971   gchar **argv = NULL;
1972   gint argc, argc_c;
1973   gint fd_r, fd_w;
1974   GError *err = NULL;
1975   GSource *stdin_source;
1976
1977   GST_DEBUG_CATEGORY_INIT (ptp_debug, "ptp", 0, "PTP clock");
1978
1979   g_mutex_lock (&ptp_lock);
1980   if (!supported) {
1981     GST_ERROR ("PTP not supported");
1982     ret = FALSE;
1983     goto done;
1984   }
1985
1986   if (initted) {
1987     GST_DEBUG ("PTP already initialized");
1988     ret = TRUE;
1989     goto done;
1990   }
1991
1992   if (ptp_helper_pid) {
1993     GST_DEBUG ("PTP currently initializing");
1994     goto wait;
1995   }
1996
1997   if (!domain_stats_hooks_initted) {
1998     g_hook_list_init (&domain_stats_hooks, sizeof (GHook));
1999     domain_stats_hooks_initted = TRUE;
2000   }
2001
2002   argc = 1;
2003   if (clock_id != GST_PTP_CLOCK_ID_NONE)
2004     argc += 2;
2005   if (interfaces != NULL)
2006     argc += 2 * g_strv_length (interfaces);
2007
2008   argv = g_new0 (gchar *, argc + 2);
2009   argc_c = 0;
2010
2011   env = g_getenv ("GST_PTP_HELPER_1_0");
2012   if (env == NULL)
2013     env = g_getenv ("GST_PTP_HELPER");
2014   if (env != NULL && *env != '\0') {
2015     GST_LOG ("Trying GST_PTP_HELPER env var: %s", env);
2016     argv[argc_c++] = g_strdup (env);
2017   } else {
2018     argv[argc_c++] = g_strdup (GST_PTP_HELPER_INSTALLED);
2019   }
2020
2021   if (clock_id != GST_PTP_CLOCK_ID_NONE) {
2022     argv[argc_c++] = g_strdup ("-c");
2023     argv[argc_c++] = g_strdup_printf ("0x%016" G_GINT64_MODIFIER "x", clock_id);
2024   }
2025
2026   if (interfaces != NULL) {
2027     gchar **ptr = interfaces;
2028
2029     while (*ptr) {
2030       argv[argc_c++] = g_strdup ("-i");
2031       argv[argc_c++] = g_strdup (*ptr);
2032       ptr++;
2033     }
2034   }
2035
2036   main_context = g_main_context_new ();
2037   main_loop = g_main_loop_new (main_context, FALSE);
2038
2039   ptp_helper_thread =
2040       g_thread_try_new ("ptp-helper-thread", ptp_helper_main, NULL, &err);
2041   if (!ptp_helper_thread) {
2042     GST_ERROR ("Failed to start PTP helper thread: %s", err->message);
2043     g_clear_error (&err);
2044     ret = FALSE;
2045     goto done;
2046   }
2047
2048   if (!g_spawn_async_with_pipes (NULL, argv, NULL, 0, NULL, NULL,
2049           &ptp_helper_pid, &fd_w, &fd_r, NULL, &err)) {
2050     GST_ERROR ("Failed to start ptp helper process: %s", err->message);
2051     g_clear_error (&err);
2052     ret = FALSE;
2053     supported = FALSE;
2054     goto done;
2055   }
2056
2057   stdin_channel = g_io_channel_unix_new (fd_r);
2058   g_io_channel_set_encoding (stdin_channel, NULL, NULL);
2059   g_io_channel_set_buffered (stdin_channel, FALSE);
2060   g_io_channel_set_close_on_unref (stdin_channel, TRUE);
2061   stdin_source =
2062       g_io_create_watch (stdin_channel, G_IO_IN | G_IO_PRI | G_IO_HUP);
2063   g_source_set_priority (stdin_source, G_PRIORITY_DEFAULT);
2064   g_source_set_callback (stdin_source, (GSourceFunc) have_stdin_data_cb, NULL,
2065       NULL);
2066   g_source_attach (stdin_source, main_context);
2067   g_source_unref (stdin_source);
2068
2069   /* Create stdout channel */
2070   stdout_channel = g_io_channel_unix_new (fd_w);
2071   g_io_channel_set_encoding (stdout_channel, NULL, NULL);
2072   g_io_channel_set_close_on_unref (stdout_channel, TRUE);
2073   g_io_channel_set_buffered (stdout_channel, FALSE);
2074
2075   delay_req_rand = g_rand_new ();
2076
2077   initted = TRUE;
2078
2079 wait:
2080   GST_DEBUG ("Waiting for PTP to be initialized");
2081
2082   while (ptp_clock_id.clock_identity == GST_PTP_CLOCK_ID_NONE && initted)
2083     g_cond_wait (&ptp_cond, &ptp_lock);
2084
2085   ret = initted;
2086   if (ret) {
2087     GST_DEBUG ("Initialized and got clock id 0x%016" G_GINT64_MODIFIER "x %u",
2088         ptp_clock_id.clock_identity, ptp_clock_id.port_number);
2089   } else {
2090     GST_ERROR ("Failed to initialize");
2091     supported = FALSE;
2092   }
2093
2094 done:
2095   g_strfreev (argv);
2096
2097   if (!ret) {
2098     if (ptp_helper_pid) {
2099       kill (ptp_helper_pid, SIGKILL);
2100       waitpid (ptp_helper_pid, NULL, 0);
2101       g_spawn_close_pid (ptp_helper_pid);
2102     }
2103     ptp_helper_pid = 0;
2104
2105     if (stdin_channel)
2106       g_io_channel_unref (stdin_channel);
2107     stdin_channel = NULL;
2108     if (stdout_channel)
2109       g_io_channel_unref (stdout_channel);
2110     stdout_channel = NULL;
2111
2112     if (main_loop && ptp_helper_thread) {
2113       g_main_loop_quit (main_loop);
2114       g_thread_join (ptp_helper_thread);
2115     }
2116     ptp_helper_thread = NULL;
2117     if (main_loop)
2118       g_main_loop_unref (main_loop);
2119     main_loop = NULL;
2120     if (main_context)
2121       g_main_context_unref (main_context);
2122     main_context = NULL;
2123
2124     if (delay_req_rand)
2125       g_rand_free (delay_req_rand);
2126     delay_req_rand = NULL;
2127   }
2128
2129   g_mutex_unlock (&ptp_lock);
2130
2131   return ret;
2132 }
2133
2134 /**
2135  * gst_ptp_deinit:
2136  *
2137  * Deinitialize the GStreamer PTP subsystem and stop the PTP clock. If there
2138  * are any remaining GstPtpClock instances, they won't be further synchronized
2139  * to the PTP network clock.
2140  *
2141  * Since: 1.6
2142  */
2143 void
2144 gst_ptp_deinit (void)
2145 {
2146   GList *l, *m;
2147
2148   g_mutex_lock (&ptp_lock);
2149
2150   if (ptp_helper_pid) {
2151     kill (ptp_helper_pid, SIGKILL);
2152     waitpid (ptp_helper_pid, NULL, 0);
2153     g_spawn_close_pid (ptp_helper_pid);
2154   }
2155   ptp_helper_pid = 0;
2156
2157   if (stdin_channel)
2158     g_io_channel_unref (stdin_channel);
2159   stdin_channel = NULL;
2160   if (stdout_channel)
2161     g_io_channel_unref (stdout_channel);
2162   stdout_channel = NULL;
2163
2164   if (main_loop && ptp_helper_thread) {
2165     GThread *tmp = ptp_helper_thread;
2166     ptp_helper_thread = NULL;
2167     g_mutex_unlock (&ptp_lock);
2168     g_main_loop_quit (main_loop);
2169     g_thread_join (tmp);
2170     g_mutex_lock (&ptp_lock);
2171   }
2172   if (main_loop)
2173     g_main_loop_unref (main_loop);
2174   main_loop = NULL;
2175   if (main_context)
2176     g_main_context_unref (main_context);
2177   main_context = NULL;
2178
2179   if (delay_req_rand)
2180     g_rand_free (delay_req_rand);
2181   delay_req_rand = NULL;
2182
2183   for (l = domain_data; l; l = l->next) {
2184     PtpDomainData *domain = l->data;
2185
2186     for (m = domain->announce_senders; m; m = m->next) {
2187       PtpAnnounceSender *sender = m->data;
2188
2189       g_queue_foreach (&sender->announce_messages, (GFunc) g_free, NULL);
2190       g_queue_clear (&sender->announce_messages);
2191       g_free (sender);
2192     }
2193     g_list_free (domain->announce_senders);
2194
2195     g_queue_foreach (&domain->pending_syncs, (GFunc) ptp_pending_sync_free,
2196         NULL);
2197     g_queue_clear (&domain->pending_syncs);
2198     gst_object_unref (domain->domain_clock);
2199     g_free (domain);
2200   }
2201   g_list_free (domain_data);
2202   domain_data = NULL;
2203   g_list_foreach (domain_clocks, (GFunc) g_free, NULL);
2204   g_list_free (domain_clocks);
2205   domain_clocks = NULL;
2206
2207   ptp_clock_id.clock_identity = GST_PTP_CLOCK_ID_NONE;
2208   ptp_clock_id.port_number = 0;
2209
2210   initted = FALSE;
2211
2212   g_mutex_unlock (&ptp_lock);
2213 }
2214
2215 #define DEFAULT_DOMAIN 0
2216
2217 enum
2218 {
2219   PROP_0,
2220   PROP_DOMAIN,
2221   PROP_INTERNAL_CLOCK
2222 };
2223
2224 #define GST_PTP_CLOCK_GET_PRIVATE(obj)  \
2225   (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GST_TYPE_PTP_CLOCK, GstPtpClockPrivate))
2226
2227 struct _GstPtpClockPrivate
2228 {
2229   guint domain;
2230   GstClock *domain_clock;
2231   gulong domain_stats_id;
2232 };
2233
2234 #define gst_ptp_clock_parent_class parent_class
2235 G_DEFINE_TYPE (GstPtpClock, gst_ptp_clock, GST_TYPE_SYSTEM_CLOCK);
2236
2237 static void gst_ptp_clock_set_property (GObject * object, guint prop_id,
2238     const GValue * value, GParamSpec * pspec);
2239 static void gst_ptp_clock_get_property (GObject * object, guint prop_id,
2240     GValue * value, GParamSpec * pspec);
2241 static void gst_ptp_clock_finalize (GObject * object);
2242
2243 static GstClockTime gst_ptp_clock_get_internal_time (GstClock * clock);
2244
2245 static void
2246 gst_ptp_clock_class_init (GstPtpClockClass * klass)
2247 {
2248   GObjectClass *gobject_class;
2249   GstClockClass *clock_class;
2250
2251   gobject_class = G_OBJECT_CLASS (klass);
2252   clock_class = GST_CLOCK_CLASS (klass);
2253
2254   g_type_class_add_private (klass, sizeof (GstPtpClockPrivate));
2255
2256   gobject_class->finalize = gst_ptp_clock_finalize;
2257   gobject_class->get_property = gst_ptp_clock_get_property;
2258   gobject_class->set_property = gst_ptp_clock_set_property;
2259
2260   g_object_class_install_property (gobject_class, PROP_DOMAIN,
2261       g_param_spec_uint ("domain", "Domain",
2262           "The PTP domain", 0, G_MAXUINT8,
2263           DEFAULT_DOMAIN,
2264           G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
2265
2266   g_object_class_install_property (gobject_class, PROP_INTERNAL_CLOCK,
2267       g_param_spec_object ("internal-clock", "Internal Clock",
2268           "Internal clock", GST_TYPE_CLOCK,
2269           G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
2270
2271   clock_class->get_internal_time = gst_ptp_clock_get_internal_time;
2272 }
2273
2274 static void
2275 gst_ptp_clock_init (GstPtpClock * self)
2276 {
2277   GstPtpClockPrivate *priv;
2278
2279   self->priv = priv = GST_PTP_CLOCK_GET_PRIVATE (self);
2280
2281   GST_OBJECT_FLAG_SET (self, GST_CLOCK_FLAG_CAN_SET_MASTER);
2282   GST_OBJECT_FLAG_SET (self, GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC);
2283
2284   priv->domain = DEFAULT_DOMAIN;
2285 }
2286
2287 static gboolean
2288 gst_ptp_clock_ensure_domain_clock (GstPtpClock * self)
2289 {
2290   gboolean got_clock = TRUE;
2291
2292   if (G_UNLIKELY (!self->priv->domain_clock)) {
2293     g_mutex_lock (&domain_clocks_lock);
2294     if (!self->priv->domain_clock) {
2295       GList *l;
2296
2297       got_clock = FALSE;
2298
2299       for (l = domain_clocks; l; l = l->next) {
2300         PtpDomainData *clock_data = l->data;
2301
2302         if (clock_data->domain == self->priv->domain
2303             && clock_data->last_ptp_time != 0) {
2304           self->priv->domain_clock = clock_data->domain_clock;
2305           got_clock = TRUE;
2306           break;
2307         }
2308       }
2309     }
2310     g_mutex_unlock (&domain_clocks_lock);
2311     if (got_clock) {
2312       g_object_notify (G_OBJECT (self), "internal-clock");
2313       gst_clock_set_synced (GST_CLOCK (self), TRUE);
2314     }
2315   }
2316
2317   return got_clock;
2318 }
2319
2320 static gboolean
2321 gst_ptp_clock_stats_callback (guint8 domain, const GstStructure * stats,
2322     gpointer user_data)
2323 {
2324   GstPtpClock *self = user_data;
2325
2326   if (domain != self->priv->domain
2327       || !gst_structure_has_name (stats, GST_PTP_STATISTICS_TIME_UPDATED))
2328     return TRUE;
2329
2330   /* Let's set our internal clock */
2331   if (!gst_ptp_clock_ensure_domain_clock (self))
2332     return TRUE;
2333
2334   self->priv->domain_stats_id = 0;
2335
2336   return FALSE;
2337 }
2338
2339 static void
2340 gst_ptp_clock_set_property (GObject * object, guint prop_id,
2341     const GValue * value, GParamSpec * pspec)
2342 {
2343   GstPtpClock *self = GST_PTP_CLOCK (object);
2344
2345   switch (prop_id) {
2346     case PROP_DOMAIN:
2347       self->priv->domain = g_value_get_uint (value);
2348       gst_ptp_clock_ensure_domain_clock (self);
2349       if (!self->priv->domain_clock)
2350         self->priv->domain_stats_id =
2351             gst_ptp_statistics_callback_add (gst_ptp_clock_stats_callback, self,
2352             NULL);
2353       break;
2354     default:
2355       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2356       break;
2357   }
2358 }
2359
2360 static void
2361 gst_ptp_clock_get_property (GObject * object, guint prop_id,
2362     GValue * value, GParamSpec * pspec)
2363 {
2364   GstPtpClock *self = GST_PTP_CLOCK (object);
2365
2366   switch (prop_id) {
2367     case PROP_DOMAIN:
2368       g_value_set_uint (value, self->priv->domain);
2369       break;
2370     case PROP_INTERNAL_CLOCK:
2371       gst_ptp_clock_ensure_domain_clock (self);
2372       g_value_set_object (value, self->priv->domain_clock);
2373       break;
2374     default:
2375       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
2376       break;
2377   }
2378 }
2379
2380 static void
2381 gst_ptp_clock_finalize (GObject * object)
2382 {
2383   GstPtpClock *self = GST_PTP_CLOCK (object);
2384
2385   if (self->priv->domain_stats_id)
2386     gst_ptp_statistics_callback_remove (self->priv->domain_stats_id);
2387
2388   G_OBJECT_CLASS (gst_ptp_clock_parent_class)->finalize (object);
2389 }
2390
2391 static GstClockTime
2392 gst_ptp_clock_get_internal_time (GstClock * clock)
2393 {
2394   GstPtpClock *self = GST_PTP_CLOCK (clock);
2395
2396   gst_ptp_clock_ensure_domain_clock (self);
2397
2398   if (!self->priv->domain_clock) {
2399     GST_ERROR_OBJECT (self, "Domain %u has no clock yet and is not synced",
2400         self->priv->domain);
2401     return GST_CLOCK_TIME_NONE;
2402   }
2403
2404   return gst_clock_get_time (self->priv->domain_clock);
2405 }
2406
2407 /**
2408  * gst_ptp_clock_new:
2409  * @name: Name of the clock
2410  * @domain: PTP domain
2411  *
2412  * Creates a new PTP clock instance that exports the PTP time of the master
2413  * clock in @domain. This clock can be slaved to other clocks as needed.
2414  *
2415  * If gst_ptp_init() was not called before, this will call gst_ptp_init() with
2416  * default parameters.
2417  *
2418  *
2419  * This clock only returns valid timestamps after it received the first
2420  * times from the PTP master clock on the network. Once this happens the
2421  * GstPtpClock::internal-clock property will become non-NULL. You can connect
2422  * to the notify::internal-clock signal to get notified about this, or
2423  * alternatively use gst_ptp_clock_wait_ready() to wait for this to happen.
2424  *
2425  * Since: 1.6
2426  */
2427 GstClock *
2428 gst_ptp_clock_new (const gchar * name, guint domain)
2429 {
2430   g_return_val_if_fail (name != NULL, NULL);
2431   g_return_val_if_fail (domain <= G_MAXUINT8, NULL);
2432
2433   if (!initted && !gst_ptp_init (GST_PTP_CLOCK_ID_NONE, NULL)) {
2434     GST_ERROR ("Failed to initialize PTP");
2435     return NULL;
2436   }
2437
2438   return g_object_new (GST_TYPE_PTP_CLOCK, "name", name, "domain", domain,
2439       NULL);
2440 }
2441
2442 typedef struct
2443 {
2444   guint8 domain;
2445   const GstStructure *stats;
2446 } DomainStatsMarshalData;
2447
2448 static void
2449 domain_stats_marshaller (GHook * hook, DomainStatsMarshalData * data)
2450 {
2451   GstPtpStatisticsCallback callback = (GstPtpStatisticsCallback) hook->func;
2452
2453   if (!callback (data->domain, data->stats, hook->data))
2454     g_hook_destroy (&domain_stats_hooks, hook->hook_id);
2455 }
2456
2457 static void
2458 emit_ptp_statistics (guint8 domain, const GstStructure * stats)
2459 {
2460   DomainStatsMarshalData data = { domain, stats };
2461
2462   g_mutex_lock (&ptp_lock);
2463   g_hook_list_marshal (&domain_stats_hooks, TRUE,
2464       (GHookMarshaller) domain_stats_marshaller, &data);
2465   g_mutex_unlock (&ptp_lock);
2466 }
2467
2468 /**
2469  * gst_ptp_statistics_callback_add:
2470  * @callback: GstPtpStatisticsCallback to call
2471  * @user_data: Data to pass to the callback
2472  * @destroy_data: GDestroyNotify to destroy the data
2473  *
2474  * Installs a new statistics callback for gathering PTP statistics. See
2475  * GstPtpStatisticsCallback for a list of statistics that are provided.
2476  *
2477  * Returns: Id for the callback that can be passed to
2478  * gst_ptp_statistics_callback_remove()
2479  *
2480  * Since: 1.6
2481  */
2482 gulong
2483 gst_ptp_statistics_callback_add (GstPtpStatisticsCallback callback,
2484     gpointer user_data, GDestroyNotify destroy_data)
2485 {
2486   GHook *hook;
2487
2488   g_mutex_lock (&ptp_lock);
2489
2490   if (!domain_stats_hooks_initted) {
2491     g_hook_list_init (&domain_stats_hooks, sizeof (GHook));
2492     domain_stats_hooks_initted = TRUE;
2493   }
2494
2495   hook = g_hook_alloc (&domain_stats_hooks);
2496   hook->func = callback;
2497   hook->data = user_data;
2498   hook->destroy = destroy_data;
2499   g_hook_prepend (&domain_stats_hooks, hook);
2500   g_atomic_int_add (&domain_stats_n_hooks, 1);
2501
2502   g_mutex_unlock (&ptp_lock);
2503
2504   return hook->hook_id;
2505 }
2506
2507 /**
2508  * gst_ptp_statistics_callback_remove:
2509  * @id: Callback id to remove
2510  *
2511  * Removes a PTP statistics callback that was previously added with
2512  * gst_ptp_statistics_callback_add().
2513  *
2514  * Since: 1.6
2515  */
2516 void
2517 gst_ptp_statistics_callback_remove (gulong id)
2518 {
2519   g_mutex_lock (&ptp_lock);
2520   if (g_hook_destroy (&domain_stats_hooks, id))
2521     g_atomic_int_add (&domain_stats_n_hooks, -1);
2522   g_mutex_unlock (&ptp_lock);
2523 }
2524
2525 #else /* HAVE_PTP */
2526
2527 GType
2528 gst_ptp_clock_get_type (void)
2529 {
2530   return G_TYPE_INVALID;
2531 }
2532
2533 gboolean
2534 gst_ptp_is_supported (void)
2535 {
2536   return FALSE;
2537 }
2538
2539 gboolean
2540 gst_ptp_is_initialized (void)
2541 {
2542   return FALSE;
2543 }
2544
2545 gboolean
2546 gst_ptp_init (guint64 clock_id, gchar ** interfaces)
2547 {
2548   return FALSE;
2549 }
2550
2551 void
2552 gst_ptp_deinit (void)
2553 {
2554 }
2555
2556 GstClock *
2557 gst_ptp_clock_new (const gchar * name, guint domain)
2558 {
2559   return NULL;
2560 }
2561
2562 gboolean
2563 gst_ptp_clock_wait_ready (GstPtpClock * self, GstClockTime timeout)
2564 {
2565   return FALSE;
2566 }
2567
2568 gulong
2569 gst_ptp_statistics_callback_add (GstPtpStatisticsCallback callback,
2570     gpointer user_data, GDestroyNotify destroy_data)
2571 {
2572   return 0;
2573 }
2574
2575 void
2576 gst_ptp_statistics_callback_remove (gulong id)
2577 {
2578   return;
2579 }
2580
2581 #endif