Set the correction factors in the sync_chain
[lttv.git] / lttv / lttv / sync / sync_chain_lttv.c
CommitLineData
70407e86 1/* This file is part of the Linux Trace Toolkit viewer
277e5b53 2 * Copyright (C) 2009, 2010 Benjamin Poirier <benjamin.poirier@polymtl.ca>
70407e86 3 *
277e5b53
BP
4 * This program is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation, either version 2.1 of the License, or (at
7 * your option) any later version.
70407e86 8 *
277e5b53
BP
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
12 * License for more details.
70407e86 13 *
277e5b53
BP
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
70407e86
BP
16 */
17
9c7696b8
BP
18#define _ISOC99_SOURCE
19
70407e86
BP
20#ifdef HAVE_CONFIG_H
21#include <config.h>
22#endif
23
08365995
BP
24#include <errno.h>
25#include <fcntl.h>
9c7696b8 26#include <math.h>
08365995 27#include <stdio.h>
70407e86 28#include <stdlib.h>
70407e86 29#include <sys/resource.h>
08365995 30#include <sys/stat.h>
08365995
BP
31#include <sys/types.h>
32#include <sys/stat.h>
33#include <unistd.h>
70407e86
BP
34
35#include <lttv/module.h>
36#include <lttv/option.h>
37
2f961b65
BP
38
39#include "event_processing_lttng_standard.h"
40#include "event_processing_lttng_null.h"
41#include "event_matching_tcp.h"
42#include "event_matching_broadcast.h"
43#include "event_matching_distributor.h"
44#include "event_analysis_chull.h"
45#include "event_analysis_linreg.h"
46#include "event_analysis_eval.h"
2bd4b3e4 47#include "sync_chain.h"
2f076594 48#include "sync_chain_lttv.h"
70407e86
BP
49
50
70407e86
BP
51static void init();
52static void destroy();
53
2bd4b3e4
BP
54static void gfAddModuleOption(gpointer data, gpointer user_data);
55static void gfRemoveModuleOption(gpointer data, gpointer user_data);
70407e86 56
2bd4b3e4
BP
57static ModuleOption optionSync= {
58 .longName= "sync",
59 .hasArg= NO_ARG,
2bd4b3e4
BP
60 .optionHelp= "synchronize the time between the traces",
61};
2bd4b3e4
BP
62static ModuleOption optionSyncStats= {
63 .longName= "sync-stats",
64 .hasArg= NO_ARG,
2bd4b3e4
BP
65 .optionHelp= "print statistics about the time synchronization",
66};
67static ModuleOption optionSyncNull= {
68 .longName= "sync-null",
69 .hasArg= NO_ARG,
2bd4b3e4
BP
70 .optionHelp= "read the events but do not perform any processing",
71};
72static GString* analysisModulesNames;
73static ModuleOption optionSyncAnalysis= {
74 .longName= "sync-analysis",
75 .hasArg= REQUIRED_ARG,
76 .optionHelp= "specify the algorithm to use for event analysis",
77};
78static ModuleOption optionSyncGraphs= {
79 .longName= "sync-graphs",
80 .hasArg= NO_ARG,
2bd4b3e4
BP
81 .optionHelp= "output gnuplot graph showing synchronization points",
82};
49c335f1 83static char graphsDir[20];
2bd4b3e4
BP
84static ModuleOption optionSyncGraphsDir= {
85 .longName= "sync-graphs-dir",
86 .hasArg= REQUIRED_ARG,
87 .optionHelp= "specify the directory where to store the graphs",
88};
70407e86 89
49c335f1 90
70407e86
BP
91/*
92 * Module init function
93 *
2f961b65 94 * This function is declared to be the module initialization function.
70407e86
BP
95 */
96static void init()
97{
08365995 98 int retval;
70407e86 99
d5b038ec 100 g_debug("Sync init");
70407e86 101
2f961b65
BP
102 /*
103 * Initialize event modules
104 * Call the "constructor" or initialization function of each event module
105 * so it can register itself. This must be done before elements in
106 * processingModules, matchingModules, analysisModules or moduleOptions
107 * are accessed.
108 */
109 registerProcessingLTTVStandard();
110 registerProcessingLTTVNull();
111
112 registerMatchingTCP();
113 registerMatchingBroadcast();
114 registerMatchingDistributor();
115
116 registerAnalysisCHull();
117 registerAnalysisLinReg();
118 registerAnalysisEval();
119
70407e86 120 g_assert(g_queue_get_length(&analysisModules) > 0);
49c335f1 121 optionSyncAnalysis.arg= ((AnalysisModule*)
70407e86
BP
122 g_queue_peek_head(&analysisModules))->name;
123 analysisModulesNames= g_string_new("");
124 g_queue_foreach(&analysisModules, &gfAppendAnalysisName,
125 analysisModulesNames);
126 // remove the last ", "
127 g_string_truncate(analysisModulesNames, analysisModulesNames->len - 2);
2bd4b3e4 128 optionSyncAnalysis.argHelp= analysisModulesNames->str;
08365995
BP
129
130 retval= snprintf(graphsDir, sizeof(graphsDir), "graphs-%d", getpid());
131 if (retval > sizeof(graphsDir) - 1)
132 {
133 graphsDir[sizeof(graphsDir) - 1]= '\0';
134 }
2bd4b3e4
BP
135 optionSyncGraphsDir.arg= graphsDir;
136 optionSyncGraphsDir.argHelp= graphsDir;
137
138 g_queue_push_head(&moduleOptions, &optionSyncGraphsDir);
139 g_queue_push_head(&moduleOptions, &optionSyncGraphs);
140 g_queue_push_head(&moduleOptions, &optionSyncAnalysis);
141 g_queue_push_head(&moduleOptions, &optionSyncNull);
142 g_queue_push_head(&moduleOptions, &optionSyncStats);
143 g_queue_push_head(&moduleOptions, &optionSync);
144
145 g_queue_foreach(&moduleOptions, &gfAddModuleOption, NULL);
70407e86
BP
146}
147
148
149/*
150 * Module unload function
151 */
152static void destroy()
153{
d5b038ec 154 g_debug("Sync destroy");
70407e86 155
2bd4b3e4
BP
156 g_queue_foreach(&moduleOptions, &gfRemoveModuleOption, NULL);
157 g_string_free(analysisModulesNames, TRUE);
158
159 g_queue_clear(&processingModules);
160 g_queue_clear(&matchingModules);
161 g_queue_clear(&analysisModules);
162 g_queue_clear(&moduleOptions);
70407e86
BP
163}
164
165
166/*
167 * Calculate a traceset's drift and offset values based on network events
168 *
169 * The individual correction factors are written out to each trace.
170 *
171 * Args:
172 * traceSetContext: traceset
482fe481
BP
173 *
174 * Returns:
175 * false if synchronization was not performed, true otherwise
70407e86 176 */
482fe481 177bool syncTraceset(LttvTracesetContext* const traceSetContext)
70407e86
BP
178{
179 SyncState* syncState;
180 struct timeval startTime, endTime;
181 struct rusage startUsage, endUsage;
182 GList* result;
467066ee 183 unsigned int i;
9c7696b8
BP
184 GArray* factors;
185 double minOffset, minDrift;
186 unsigned int refFreqTrace;
70407e86
BP
187 int retval;
188
2bd4b3e4 189 if (!optionSync.present)
70407e86
BP
190 {
191 g_debug("Not synchronizing traceset because option is disabled");
482fe481 192 return false;
70407e86
BP
193 }
194
2bd4b3e4 195 if (optionSyncStats.present)
70407e86
BP
196 {
197 gettimeofday(&startTime, 0);
198 getrusage(RUSAGE_SELF, &startUsage);
199 }
200
201 // Initialize data structures
202 syncState= malloc(sizeof(SyncState));
70407e86 203
2bd4b3e4 204 if (optionSyncStats.present)
70407e86
BP
205 {
206 syncState->stats= true;
207 }
208 else
209 {
210 syncState->stats= false;
211 }
212
1ed11971 213 if (!optionSyncNull.present && optionSyncGraphs.present)
08365995
BP
214 {
215 // Create the graph directory right away in case the module initialization
216 // functions have something to write in it.
8d7d16dd 217 syncState->graphsDir= optionSyncGraphsDir.arg;
1d597550 218 syncState->graphsStream= createGraphsDir(syncState->graphsDir);
08365995 219 }
8d7d16dd
BP
220 else
221 {
222 syncState->graphsStream= NULL;
223 syncState->graphsDir= NULL;
224 }
08365995 225
d4721e1a
BP
226 // Identify and initialize modules
227 syncState->processingData= NULL;
228 if (optionSyncNull.present)
229 {
230 result= g_queue_find_custom(&processingModules, "LTTV-null",
231 &gcfCompareProcessing);
232 }
233 else
234 {
235 result= g_queue_find_custom(&processingModules, "LTTV-standard",
236 &gcfCompareProcessing);
237 }
238 g_assert(result != NULL);
239 syncState->processingModule= (ProcessingModule*) result->data;
240
241 syncState->matchingData= NULL;
f10c27a8
BP
242 result= g_queue_find_custom(&matchingModules, "TCP", &gcfCompareMatching);
243 g_assert(result != NULL);
244 syncState->matchingModule= (MatchingModule*) result->data;
70407e86 245
d4721e1a 246 syncState->analysisData= NULL;
2bd4b3e4 247 result= g_queue_find_custom(&analysisModules, optionSyncAnalysis.arg,
f6691532
BP
248 &gcfCompareAnalysis);
249 if (result != NULL)
70407e86 250 {
f6691532 251 syncState->analysisModule= (AnalysisModule*) result->data;
70407e86
BP
252 }
253 else
254 {
2bd4b3e4 255 g_error("Analysis module '%s' not found", optionSyncAnalysis.arg);
f6691532 256 }
70407e86 257
09857093 258 syncState->processingModule->initProcessing(syncState, traceSetContext);
2bd4b3e4 259 if (!optionSyncNull.present)
f6691532 260 {
d4721e1a 261 syncState->matchingModule->initMatching(syncState);
09857093 262 syncState->analysisModule->initAnalysis(syncState);
70407e86
BP
263 }
264
265 // Process traceset
266 lttv_process_traceset_seek_time(traceSetContext, ltt_time_zero);
267 lttv_process_traceset_middle(traceSetContext, ltt_time_infinite,
268 G_MAXULONG, NULL);
269 lttv_process_traceset_seek_time(traceSetContext, ltt_time_zero);
270
9c7696b8
BP
271 // Obtain, adjust and set correction factors
272 factors= syncState->processingModule->finalizeProcessing(syncState);
273
274 /* The offsets are adjusted so the lowest one is 0. This is done because
275 * of a Lttv specific limitation: events cannot have negative times. By
276 * having non-negative offsets, events cannot be moved backwards to
277 * negative times.
278 */
279 minOffset= 0;
280 for (i= 0; i < syncState->traceNb; i++)
281 {
282 minOffset= MIN(g_array_index(factors, Factors, i).offset, minOffset);
283 }
284
285 for (i= 0; i < syncState->traceNb; i++)
286 {
287 g_array_index(factors, Factors, i).offset-= minOffset;
288 }
289
290 /* Because the timestamps are corrected at the TSC level (not at the
291 * LttTime level) all trace frequencies must be made equal. We use the
292 * frequency of the system with the lowest drift
293 */
294 minDrift= INFINITY;
295 refFreqTrace= 0;
296 for (i= 0; i < syncState->traceNb; i++)
297 {
298 if (g_array_index(factors, Factors, i).drift < minDrift)
299 {
300 minDrift= g_array_index(factors, Factors, i).drift;
301 refFreqTrace= i;
302 }
303 }
304 g_assert(syncState->traceNb == 0 || minDrift != INFINITY);
305
306 // Write the factors to the LttTrace structures
307 for (i= 0; i < syncState->traceNb; i++)
308 {
309 LttTrace* t;
310 Factors* traceFactors;
311
312 t= traceSetContext->traces[i]->t;
313 traceFactors= &g_array_index(factors, Factors, i);
314
315 t->drift= traceFactors->drift;
316 t->offset= traceFactors->offset;
317 t->start_freq= traceSetContext->traces[refFreqTrace]->t->start_freq;
318 t->freq_scale= traceSetContext->traces[refFreqTrace]->t->freq_scale;
319 t->start_time_from_tsc =
320 ltt_time_from_uint64(tsc_to_uint64(t->freq_scale, t->start_freq,
321 t->drift * t->start_tsc + t->offset));
322 }
323
324 g_array_free(factors, TRUE);
325
326 lttv_traceset_context_compute_time_span(traceSetContext,
327 &traceSetContext->time_span);
328
329 g_debug("traceset start %ld.%09ld end %ld.%09ld",
330 traceSetContext->time_span.start_time.tv_sec,
331 traceSetContext->time_span.start_time.tv_nsec,
332 traceSetContext->time_span.end_time.tv_sec,
333 traceSetContext->time_span.end_time.tv_nsec);
70407e86 334
08365995 335 // Write graphs file
1ed11971 336 if (!optionSyncNull.present && optionSyncGraphs.present)
08365995 337 {
467066ee 338 writeGraphsScript(syncState);
08365995 339
8d7d16dd 340 if (fclose(syncState->graphsStream) != 0)
08365995
BP
341 {
342 g_error(strerror(errno));
343 }
344 }
345
1ed11971 346 if (!optionSyncNull.present && optionSyncStats.present)
70407e86 347 {
1ed11971 348 printStats(syncState);
d6ee5003 349
d6ee5003
BP
350 printf("Resulting synchronization factors:\n");
351 for (i= 0; i < syncState->traceNb; i++)
352 {
353 LttTrace* t;
354
355 t= traceSetContext->traces[i]->t;
356
357 printf("\ttrace %u drift= %g offset= %g (%f) start time= %ld.%09ld\n",
358 i, t->drift, t->offset, (double) tsc_to_uint64(t->freq_scale,
359 t->start_freq, t->offset) / NANOSECONDS_PER_SECOND,
360 t->start_time_from_tsc.tv_sec,
361 t->start_time_from_tsc.tv_nsec);
362 }
363 }
70407e86
BP
364
365 syncState->processingModule->destroyProcessing(syncState);
366 if (syncState->matchingModule != NULL)
367 {
368 syncState->matchingModule->destroyMatching(syncState);
369 }
370 if (syncState->analysisModule != NULL)
371 {
372 syncState->analysisModule->destroyAnalysis(syncState);
373 }
374
375 free(syncState);
376
2bd4b3e4 377 if (optionSyncStats.present)
70407e86
BP
378 {
379 gettimeofday(&endTime, 0);
380 retval= getrusage(RUSAGE_SELF, &endUsage);
381
382 timeDiff(&endTime, &startTime);
383 timeDiff(&endUsage.ru_utime, &startUsage.ru_utime);
384 timeDiff(&endUsage.ru_stime, &startUsage.ru_stime);
385
386 printf("Synchronization time:\n");
387 printf("\treal time: %ld.%06ld\n", endTime.tv_sec, endTime.tv_usec);
388 printf("\tuser time: %ld.%06ld\n", endUsage.ru_utime.tv_sec,
389 endUsage.ru_utime.tv_usec);
390 printf("\tsystem time: %ld.%06ld\n", endUsage.ru_stime.tv_sec,
391 endUsage.ru_stime.tv_usec);
392 }
482fe481
BP
393
394 return true;
70407e86
BP
395}
396
397
2bd4b3e4
BP
398/*
399 * A GFunc for g_queue_foreach()
400 *
401 * Args:
402 * data: ModuleOption*
403 * user_data: NULL
404 */
405static void gfAddModuleOption(gpointer data, gpointer user_data)
406{
49c335f1 407 ModuleOption* option= data;
2bd4b3e4
BP
408 LttvOptionType conversion[]= {
409 [NO_ARG]= LTTV_OPT_NONE,
49c335f1 410 [OPTIONAL_ARG]= LTTV_OPT_NONE,
2bd4b3e4
BP
411 [REQUIRED_ARG]= LTTV_OPT_STRING,
412 };
49c335f1
BP
413 size_t fieldOffset[]= {
414 [NO_ARG]= offsetof(ModuleOption, present),
415 [REQUIRED_ARG]= offsetof(ModuleOption, arg),
416 };
417 static const char* argHelpNone= "none";
2bd4b3e4
BP
418
419 g_assert_cmpuint(sizeof(conversion) / sizeof(*conversion), ==,
420 HAS_ARG_COUNT);
49c335f1
BP
421 if (option->hasArg == OPTIONAL_ARG)
422 {
423 g_warning("Parameters with optional arguments not supported by the "
424 "lttv option scheme, parameter '%s' will not be available",
425 option->longName);
426 }
427 else
428 {
429 lttv_option_add(option->longName, '\0', option->optionHelp,
430 option->argHelp ? option->argHelp : argHelpNone,
431 conversion[option->hasArg], (void*) option + fieldOffset[option->hasArg],
432 NULL, NULL);
433 }
2bd4b3e4
BP
434}
435
436
437/*
438 * A GFunc for g_queue_foreach()
439 *
440 * Args:
441 * data: ModuleOption*
442 * user_data: NULL
443 */
444static void gfRemoveModuleOption(gpointer data, gpointer user_data)
445{
446 lttv_option_remove(((ModuleOption*) data)->longName);
447}
448
449
70407e86
BP
450LTTV_MODULE("sync", "Synchronize traces", \
451 "Synchronizes a traceset based on the correspondance of network events", \
452 init, destroy, "option")
This page took 0.044625 seconds and 4 git commands to generate.