Privatize part of marker.h, and type-serializer.h
[ust.git] / libust / marker.c
1 /*
2 * Copyright (C) 2007-2011 Mathieu Desnoyers
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation;
7 * version 2.1 of the License.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #define _LGPL_SOURCE
20 #include <stdlib.h>
21 #include <errno.h>
22 #include <urcu-bp.h>
23 #include <urcu/rculist.h>
24 #include <urcu/hlist.h>
25
26 #include <ust/core.h>
27 #include <ust/marker.h>
28 #include <ust/marker-internal.h>
29 #include <ust/tracepoint.h>
30 #include <ust/tracepoint-internal.h>
31
32 #include "usterr_signal_safe.h"
33 #include "channels.h"
34 #include "tracercore.h"
35 #include "tracer.h"
36
37 __thread long ust_reg_stack[500];
38 volatile __thread long *ust_reg_stack_ptr = (long *) 0;
39
40 extern struct ust_marker * const __start___ust_marker_ptrs[] __attribute__((visibility("hidden")));
41 extern struct ust_marker * const __stop___ust_marker_ptrs[] __attribute__((visibility("hidden")));
42
43 /* Set to 1 to enable ust_marker debug output */
44 static const int ust_marker_debug;
45
46 /*
47 * ust_marker_mutex nests inside module_mutex. ust_marker mutex protects
48 * the builtin and module ust_marker and the hash table.
49 */
50 static DEFINE_MUTEX(ust_marker_mutex);
51
52 static CDS_LIST_HEAD(ust_marker_libs);
53
54
55 void lock_ust_marker(void)
56 {
57 pthread_mutex_lock(&ust_marker_mutex);
58 }
59
60 void unlock_ust_marker(void)
61 {
62 pthread_mutex_unlock(&ust_marker_mutex);
63 }
64
65 /*
66 * ust_marker hash table, containing the active ust_marker.
67 * Protected by module_mutex.
68 */
69 #define UST_MARKER_HASH_BITS 6
70 #define UST_MARKER_TABLE_SIZE (1 << UST_MARKER_HASH_BITS)
71 static struct cds_hlist_head ust_marker_table[UST_MARKER_TABLE_SIZE];
72
73 /*
74 * Note about RCU :
75 * It is used to make sure every handler has finished using its private
76 * data between two consecutive operation (add or remove) on a given
77 * ust_marker. It is also used to delay the free of multiple probes
78 * array until a quiescent state is reached. ust_marker entries
79 * modifications are protected by the ust_marker_mutex.
80 */
81 struct ust_marker_entry {
82 struct cds_hlist_node hlist;
83 char *format;
84 char *name;
85 /* Probe wrapper */
86 void (*call)(const struct ust_marker *mdata, void *call_private, ...);
87 struct ust_marker_probe_closure single;
88 struct ust_marker_probe_closure *multi;
89 int refcount; /* Number of times armed. 0 if disarmed. */
90 struct rcu_head rcu;
91 void *oldptr;
92 int rcu_pending;
93 u16 channel_id;
94 u16 event_id;
95 unsigned char ptype:1;
96 unsigned char format_allocated:1;
97 char channel[0]; /* Contains channel'\0'name'\0'format'\0' */
98 };
99
100 #ifdef CONFIG_UST_MARKER_USERSPACE
101 static void ust_marker_update_processes(void);
102 #else
103 static void ust_marker_update_processes(void)
104 {
105 }
106 #endif
107
108 /**
109 * __ust_marker_empty_function - Empty probe callback
110 * @mdata: ust_marker data
111 * @probe_private: probe private data
112 * @call_private: call site private data
113 * @fmt: format string
114 * @...: variable argument list
115 *
116 * Empty callback provided as a probe to the ust_marker. By providing
117 * this to a disabled ust_marker, we make sure the execution flow is
118 * always valid even though the function pointer change and the
119 * ust_marker enabling are two distinct operations that modifies the
120 * execution flow of preemptible code.
121 */
122 notrace void __ust_marker_empty_function(const struct ust_marker *mdata,
123 void *probe_private, void *call_private, const char *fmt, va_list *args)
124 {
125 }
126 //ust// EXPORT_SYMBOL_GPL(__ust_marker_empty_function);
127
128 /*
129 * ust_marker_probe_cb Callback that prepares the variable argument list for probes.
130 * @mdata: pointer of type struct ust_marker
131 * @call_private: caller site private data
132 * @...: Variable argument list.
133 *
134 * Since we do not use "typical" pointer based RCU in the 1 argument case, we
135 * need to put a full cmm_smp_rmb() in this branch. This is why we do not use
136 * rcu_dereference() for the pointer read.
137 */
138 notrace void ust_marker_probe_cb(const struct ust_marker *mdata,
139 void *call_private, ...)
140 {
141 va_list args;
142 char ptype;
143
144 /*
145 * rcu_read_lock_sched does two things : disabling preemption to make
146 * sure the teardown of the callbacks can be done correctly when they
147 * are in modules and they insure RCU read coherency.
148 */
149 //ust// rcu_read_lock_sched_notrace();
150 ptype = mdata->ptype;
151 if (likely(!ptype)) {
152 ust_marker_probe_func *func;
153 /* Must read the ptype before ptr. They are not data dependant,
154 * so we put an explicit cmm_smp_rmb() here. */
155 cmm_smp_rmb();
156 func = mdata->single.func;
157 /* Must read the ptr before private data. They are not data
158 * dependant, so we put an explicit cmm_smp_rmb() here. */
159 cmm_smp_rmb();
160 va_start(args, call_private);
161 func(mdata, mdata->single.probe_private, call_private,
162 mdata->format, &args);
163 va_end(args);
164 } else {
165 struct ust_marker_probe_closure *multi;
166 int i;
167 /*
168 * Read mdata->ptype before mdata->multi.
169 */
170 cmm_smp_rmb();
171 multi = mdata->multi;
172 /*
173 * multi points to an array, therefore accessing the array
174 * depends on reading multi. However, even in this case,
175 * we must insure that the pointer is read _before_ the array
176 * data. Same as rcu_dereference, but we need a full cmm_smp_rmb()
177 * in the fast path, so put the explicit cmm_barrier here.
178 */
179 cmm_smp_read_barrier_depends();
180 for (i = 0; multi[i].func; i++) {
181 va_start(args, call_private);
182 multi[i].func(mdata, multi[i].probe_private,
183 call_private, mdata->format, &args);
184 va_end(args);
185 }
186 }
187 //ust// rcu_read_unlock_sched_notrace();
188 }
189 //ust// EXPORT_SYMBOL_GPL(ust_marker_probe_cb);
190
191 /*
192 * ust_marker_probe_cb Callback that does not prepare the variable argument list.
193 * @mdata: pointer of type struct ust_marker
194 * @call_private: caller site private data
195 * @...: Variable argument list.
196 *
197 * Should be connected to ust_marker "UST_MARKER_NOARGS".
198 */
199 static notrace void ust_marker_probe_cb_noarg(const struct ust_marker *mdata,
200 void *call_private, ...)
201 {
202 va_list args; /* not initialized */
203 char ptype;
204
205 //ust// rcu_read_lock_sched_notrace();
206 ptype = mdata->ptype;
207 if (likely(!ptype)) {
208 ust_marker_probe_func *func;
209 /* Must read the ptype before ptr. They are not data dependant,
210 * so we put an explicit cmm_smp_rmb() here. */
211 cmm_smp_rmb();
212 func = mdata->single.func;
213 /* Must read the ptr before private data. They are not data
214 * dependant, so we put an explicit cmm_smp_rmb() here. */
215 cmm_smp_rmb();
216 func(mdata, mdata->single.probe_private, call_private,
217 mdata->format, &args);
218 } else {
219 struct ust_marker_probe_closure *multi;
220 int i;
221 /*
222 * Read mdata->ptype before mdata->multi.
223 */
224 cmm_smp_rmb();
225 multi = mdata->multi;
226 /*
227 * multi points to an array, therefore accessing the array
228 * depends on reading multi. However, even in this case,
229 * we must insure that the pointer is read _before_ the array
230 * data. Same as rcu_dereference, but we need a full cmm_smp_rmb()
231 * in the fast path, so put the explicit cmm_barrier here.
232 */
233 cmm_smp_read_barrier_depends();
234 for (i = 0; multi[i].func; i++)
235 multi[i].func(mdata, multi[i].probe_private,
236 call_private, mdata->format, &args);
237 }
238 //ust// rcu_read_unlock_sched_notrace();
239 }
240
241 static void free_old_closure(struct rcu_head *head)
242 {
243 struct ust_marker_entry *entry = _ust_container_of(head,
244 struct ust_marker_entry, rcu);
245 free(entry->oldptr);
246 /* Make sure we free the data before setting the pending flag to 0 */
247 cmm_smp_wmb();
248 entry->rcu_pending = 0;
249 }
250
251 static void debug_print_probes(struct ust_marker_entry *entry)
252 {
253 int i;
254
255 if (!ust_marker_debug)
256 return;
257
258 if (!entry->ptype) {
259 DBG("Single probe : %p %p",
260 entry->single.func,
261 entry->single.probe_private);
262 } else {
263 for (i = 0; entry->multi[i].func; i++)
264 DBG("Multi probe %d : %p %p", i,
265 entry->multi[i].func,
266 entry->multi[i].probe_private);
267 }
268 }
269
270 static struct ust_marker_probe_closure *
271 ust_marker_entry_add_probe(struct ust_marker_entry *entry,
272 ust_marker_probe_func *probe, void *probe_private)
273 {
274 int nr_probes = 0;
275 struct ust_marker_probe_closure *old, *new;
276
277 WARN_ON(!probe);
278
279 debug_print_probes(entry);
280 old = entry->multi;
281 if (!entry->ptype) {
282 if (entry->single.func == probe &&
283 entry->single.probe_private == probe_private)
284 return ERR_PTR(-EBUSY);
285 if (entry->single.func == __ust_marker_empty_function) {
286 /* 0 -> 1 probes */
287 entry->single.func = probe;
288 entry->single.probe_private = probe_private;
289 entry->refcount = 1;
290 entry->ptype = 0;
291 debug_print_probes(entry);
292 return NULL;
293 } else {
294 /* 1 -> 2 probes */
295 nr_probes = 1;
296 old = NULL;
297 }
298 } else {
299 /* (N -> N+1), (N != 0, 1) probes */
300 for (nr_probes = 0; old[nr_probes].func; nr_probes++)
301 if (old[nr_probes].func == probe
302 && old[nr_probes].probe_private
303 == probe_private)
304 return ERR_PTR(-EBUSY);
305 }
306 /* + 2 : one for new probe, one for NULL func */
307 new = zmalloc((nr_probes + 2) * sizeof(struct ust_marker_probe_closure));
308 if (new == NULL)
309 return ERR_PTR(-ENOMEM);
310 if (!old)
311 new[0] = entry->single;
312 else
313 memcpy(new, old,
314 nr_probes * sizeof(struct ust_marker_probe_closure));
315 new[nr_probes].func = probe;
316 new[nr_probes].probe_private = probe_private;
317 entry->refcount = nr_probes + 1;
318 entry->multi = new;
319 entry->ptype = 1;
320 debug_print_probes(entry);
321 return old;
322 }
323
324 static struct ust_marker_probe_closure *
325 ust_marker_entry_remove_probe(struct ust_marker_entry *entry,
326 ust_marker_probe_func *probe, void *probe_private)
327 {
328 int nr_probes = 0, nr_del = 0, i;
329 struct ust_marker_probe_closure *old, *new;
330
331 old = entry->multi;
332
333 debug_print_probes(entry);
334 if (!entry->ptype) {
335 /* 0 -> N is an error */
336 WARN_ON(entry->single.func == __ust_marker_empty_function);
337 /* 1 -> 0 probes */
338 WARN_ON(probe && entry->single.func != probe);
339 WARN_ON(entry->single.probe_private != probe_private);
340 entry->single.func = __ust_marker_empty_function;
341 entry->refcount = 0;
342 entry->ptype = 0;
343 debug_print_probes(entry);
344 return NULL;
345 } else {
346 /* (N -> M), (N > 1, M >= 0) probes */
347 for (nr_probes = 0; old[nr_probes].func; nr_probes++) {
348 if ((!probe || old[nr_probes].func == probe)
349 && old[nr_probes].probe_private
350 == probe_private)
351 nr_del++;
352 }
353 }
354
355 if (nr_probes - nr_del == 0) {
356 /* N -> 0, (N > 1) */
357 entry->single.func = __ust_marker_empty_function;
358 entry->refcount = 0;
359 entry->ptype = 0;
360 } else if (nr_probes - nr_del == 1) {
361 /* N -> 1, (N > 1) */
362 for (i = 0; old[i].func; i++)
363 if ((probe && old[i].func != probe) ||
364 old[i].probe_private != probe_private)
365 entry->single = old[i];
366 entry->refcount = 1;
367 entry->ptype = 0;
368 } else {
369 int j = 0;
370 /* N -> M, (N > 1, M > 1) */
371 /* + 1 for NULL */
372 new = zmalloc((nr_probes - nr_del + 1) * sizeof(struct ust_marker_probe_closure));
373 if (new == NULL)
374 return ERR_PTR(-ENOMEM);
375 for (i = 0; old[i].func; i++)
376 if ((probe && old[i].func != probe) ||
377 old[i].probe_private != probe_private)
378 new[j++] = old[i];
379 entry->refcount = nr_probes - nr_del;
380 entry->ptype = 1;
381 entry->multi = new;
382 }
383 debug_print_probes(entry);
384 return old;
385 }
386
387 /*
388 * Get ust_marker if the ust_marker is present in the ust_marker hash table.
389 * Must be called with ust_marker_mutex held.
390 * Returns NULL if not present.
391 */
392 static struct ust_marker_entry *get_ust_marker(const char *channel, const char *name)
393 {
394 struct cds_hlist_head *head;
395 struct cds_hlist_node *node;
396 struct ust_marker_entry *e;
397 size_t channel_len = strlen(channel) + 1;
398 size_t name_len = strlen(name) + 1;
399 u32 hash;
400
401 hash = jhash(channel, channel_len-1, 0) ^ jhash(name, name_len-1, 0);
402 head = &ust_marker_table[hash & ((1 << UST_MARKER_HASH_BITS)-1)];
403 cds_hlist_for_each_entry(e, node, head, hlist) {
404 if (!strcmp(channel, e->channel) && !strcmp(name, e->name))
405 return e;
406 }
407 return NULL;
408 }
409
410 /*
411 * Add the ust_marker to the ust_marker hash table. Must be called with
412 * ust_marker_mutex held.
413 */
414 static struct ust_marker_entry *add_ust_marker(const char *channel, const char *name,
415 const char *format)
416 {
417 struct cds_hlist_head *head;
418 struct cds_hlist_node *node;
419 struct ust_marker_entry *e;
420 size_t channel_len = strlen(channel) + 1;
421 size_t name_len = strlen(name) + 1;
422 size_t format_len = 0;
423 u32 hash;
424
425 hash = jhash(channel, channel_len-1, 0) ^ jhash(name, name_len-1, 0);
426 if (format)
427 format_len = strlen(format) + 1;
428 head = &ust_marker_table[hash & ((1 << UST_MARKER_HASH_BITS)-1)];
429 cds_hlist_for_each_entry(e, node, head, hlist) {
430 if (!strcmp(channel, e->channel) && !strcmp(name, e->name)) {
431 DBG("ust_marker %s.%s busy", channel, name);
432 return ERR_PTR(-EBUSY); /* Already there */
433 }
434 }
435 /*
436 * Using zmalloc here to allocate a variable length element. Could
437 * cause some memory fragmentation if overused.
438 */
439 e = zmalloc(sizeof(struct ust_marker_entry)
440 + channel_len + name_len + format_len);
441 if (!e)
442 return ERR_PTR(-ENOMEM);
443 memcpy(e->channel, channel, channel_len);
444 e->name = &e->channel[channel_len];
445 memcpy(e->name, name, name_len);
446 if (format) {
447 e->format = &e->name[name_len];
448 memcpy(e->format, format, format_len);
449 if (strcmp(e->format, UST_MARKER_NOARGS) == 0)
450 e->call = ust_marker_probe_cb_noarg;
451 else
452 e->call = ust_marker_probe_cb;
453 __ust_marker(metadata, core_marker_format, NULL,
454 "channel %s name %s format %s",
455 e->channel, e->name, e->format);
456 } else {
457 e->format = NULL;
458 e->call = ust_marker_probe_cb;
459 }
460 e->single.func = __ust_marker_empty_function;
461 e->single.probe_private = NULL;
462 e->multi = NULL;
463 e->ptype = 0;
464 e->format_allocated = 0;
465 e->refcount = 0;
466 e->rcu_pending = 0;
467 cds_hlist_add_head(&e->hlist, head);
468 return e;
469 }
470
471 /*
472 * Remove the ust_marker from the ust_marker hash table. Must be called with mutex_lock
473 * held.
474 */
475 static int remove_ust_marker(const char *channel, const char *name)
476 {
477 struct cds_hlist_head *head;
478 struct cds_hlist_node *node;
479 struct ust_marker_entry *e;
480 int found = 0;
481 size_t channel_len = strlen(channel) + 1;
482 size_t name_len = strlen(name) + 1;
483 u32 hash;
484 int ret;
485
486 hash = jhash(channel, channel_len-1, 0) ^ jhash(name, name_len-1, 0);
487 head = &ust_marker_table[hash & ((1 << UST_MARKER_HASH_BITS)-1)];
488 cds_hlist_for_each_entry(e, node, head, hlist) {
489 if (!strcmp(channel, e->channel) && !strcmp(name, e->name)) {
490 found = 1;
491 break;
492 }
493 }
494 if (!found)
495 return -ENOENT;
496 if (e->single.func != __ust_marker_empty_function)
497 return -EBUSY;
498 cds_hlist_del(&e->hlist);
499 if (e->format_allocated)
500 free(e->format);
501 ret = ltt_channels_unregister(e->channel);
502 WARN_ON(ret);
503 /* Make sure the call_rcu has been executed */
504 //ust// if (e->rcu_pending)
505 //ust// rcu_cmm_barrier_sched();
506 free(e);
507 return 0;
508 }
509
510 /*
511 * Set the mark_entry format to the format found in the element.
512 */
513 static int ust_marker_set_format(struct ust_marker_entry *entry, const char *format)
514 {
515 entry->format = strdup(format);
516 if (!entry->format)
517 return -ENOMEM;
518 entry->format_allocated = 1;
519
520 __ust_marker(metadata, core_marker_format, NULL,
521 "channel %s name %s format %s",
522 entry->channel, entry->name, entry->format);
523 return 0;
524 }
525
526 /*
527 * Sets the probe callback corresponding to one ust_marker.
528 */
529 static int set_ust_marker(struct ust_marker_entry *entry, struct ust_marker *elem,
530 int active)
531 {
532 int ret = 0;
533 WARN_ON(strcmp(entry->name, elem->name) != 0);
534
535 if (entry->format) {
536 if (strcmp(entry->format, elem->format) != 0) {
537 ERR("Format mismatch for probe %s (%s), ust_marker (%s)",
538 entry->name,
539 entry->format,
540 elem->format);
541 return -EPERM;
542 }
543 } else {
544 ret = ust_marker_set_format(entry, elem->format);
545 if (ret)
546 return ret;
547 }
548
549 /*
550 * probe_cb setup (statically known) is done here. It is
551 * asynchronous with the rest of execution, therefore we only
552 * pass from a "safe" callback (with argument) to an "unsafe"
553 * callback (does not set arguments).
554 */
555 elem->call = entry->call;
556 elem->channel_id = entry->channel_id;
557 elem->event_id = entry->event_id;
558 /*
559 * Sanity check :
560 * We only update the single probe private data when the ptr is
561 * set to a _non_ single probe! (0 -> 1 and N -> 1, N != 1)
562 */
563 WARN_ON(elem->single.func != __ust_marker_empty_function
564 && elem->single.probe_private != entry->single.probe_private
565 && !elem->ptype);
566 elem->single.probe_private = entry->single.probe_private;
567 /*
568 * Make sure the private data is valid when we update the
569 * single probe ptr.
570 */
571 cmm_smp_wmb();
572 elem->single.func = entry->single.func;
573 /*
574 * We also make sure that the new probe callbacks array is consistent
575 * before setting a pointer to it.
576 */
577 rcu_assign_pointer(elem->multi, entry->multi);
578 /*
579 * Update the function or multi probe array pointer before setting the
580 * ptype.
581 */
582 cmm_smp_wmb();
583 elem->ptype = entry->ptype;
584
585 if (elem->tp_name && (active ^ elem->state)) {
586 WARN_ON(!elem->tp_cb);
587 /*
588 * It is ok to directly call the probe registration because type
589 * checking has been done in the __ust_marker_tp() macro.
590 */
591
592 if (active) {
593 /*
594 * try_module_get should always succeed because we hold
595 * ust_marker_mutex to get the tp_cb address.
596 */
597 //ust// ret = try_module_get(__module_text_address(
598 //ust// (unsigned long)elem->tp_cb));
599 //ust// BUG_ON(!ret);
600 ret = tracepoint_probe_register_noupdate(
601 elem->tp_name,
602 elem->tp_cb, NULL);
603 } else {
604 ret = tracepoint_probe_unregister_noupdate(
605 elem->tp_name,
606 elem->tp_cb, NULL);
607 /*
608 * tracepoint_probe_update_all() must be called
609 * before the module containing tp_cb is unloaded.
610 */
611 //ust// module_put(__module_text_address(
612 //ust// (unsigned long)elem->tp_cb));
613 }
614 }
615 elem->state = active;
616
617 return ret;
618 }
619
620 /*
621 * Disable a ust_marker and its probe callback.
622 * Note: only waiting an RCU period after setting elem->call to the empty
623 * function insures that the original callback is not used anymore. This insured
624 * by rcu_read_lock_sched around the call site.
625 */
626 static void disable_ust_marker(struct ust_marker *elem)
627 {
628 int ret;
629
630 /* leave "call" as is. It is known statically. */
631 if (elem->tp_name && elem->state) {
632 WARN_ON(!elem->tp_cb);
633 /*
634 * It is ok to directly call the probe registration because type
635 * checking has been done in the __ust_marker_tp() macro.
636 */
637 ret = tracepoint_probe_unregister_noupdate(elem->tp_name,
638 elem->tp_cb, NULL);
639 WARN_ON(ret);
640 /*
641 * tracepoint_probe_update_all() must be called
642 * before the module containing tp_cb is unloaded.
643 */
644 //ust// module_put(__module_text_address((unsigned long)elem->tp_cb));
645 }
646 elem->state = 0;
647 elem->single.func = __ust_marker_empty_function;
648 /* Update the function before setting the ptype */
649 cmm_smp_wmb();
650 elem->ptype = 0; /* single probe */
651 /*
652 * Leave the private data and channel_id/event_id there, because removal
653 * is racy and should be done only after an RCU period. These are never
654 * used until the next initialization anyway.
655 */
656 }
657
658 /*
659 * is_ust_marker_enabled - Check if a ust_marker is enabled
660 * @channel: channel name
661 * @name: ust_marker name
662 *
663 * Returns 1 if the ust_marker is enabled, 0 if disabled.
664 */
665 int is_ust_marker_enabled(const char *channel, const char *name)
666 {
667 struct ust_marker_entry *entry;
668
669 pthread_mutex_lock(&ust_marker_mutex);
670 entry = get_ust_marker(channel, name);
671 pthread_mutex_unlock(&ust_marker_mutex);
672
673 return entry && !!entry->refcount;
674 }
675
676 /**
677 * ust_marker_update_probe_range - Update a probe range
678 * @begin: beginning of the range
679 * @end: end of the range
680 *
681 * Updates the probe callback corresponding to a range of ust_marker.
682 */
683 void ust_marker_update_probe_range(struct ust_marker * const *begin,
684 struct ust_marker * const *end)
685 {
686 struct ust_marker * const *iter;
687 struct ust_marker_entry *mark_entry;
688
689 pthread_mutex_lock(&ust_marker_mutex);
690 for (iter = begin; iter < end; iter++) {
691 if (!*iter)
692 continue; /* skip dummy */
693 mark_entry = get_ust_marker((*iter)->channel, (*iter)->name);
694 if (mark_entry) {
695 set_ust_marker(mark_entry, *iter, !!mark_entry->refcount);
696 /*
697 * ignore error, continue
698 */
699 } else {
700 disable_ust_marker(*iter);
701 }
702 }
703 pthread_mutex_unlock(&ust_marker_mutex);
704 }
705
706 static void lib_update_ust_marker(void)
707 {
708 struct ust_marker_lib *lib;
709
710 /* FIXME: we should probably take a mutex here on libs */
711 //ust// pthread_mutex_lock(&module_mutex);
712 cds_list_for_each_entry(lib, &ust_marker_libs, list)
713 ust_marker_update_probe_range(lib->ust_marker_start,
714 lib->ust_marker_start + lib->ust_marker_count);
715 //ust// pthread_mutex_unlock(&module_mutex);
716 }
717
718 /*
719 * Update probes, removing the faulty probes.
720 *
721 * Internal callback only changed before the first probe is connected to it.
722 * Single probe private data can only be changed on 0 -> 1 and 2 -> 1
723 * transitions. All other transitions will leave the old private data valid.
724 * This makes the non-atomicity of the callback/private data updates valid.
725 *
726 * "special case" updates :
727 * 0 -> 1 callback
728 * 1 -> 0 callback
729 * 1 -> 2 callbacks
730 * 2 -> 1 callbacks
731 * Other updates all behave the same, just like the 2 -> 3 or 3 -> 2 updates.
732 * Site effect : ust_marker_set_format may delete the ust_marker entry (creating a
733 * replacement).
734 */
735 static void ust_marker_update_probes(void)
736 {
737 lib_update_ust_marker();
738 tracepoint_probe_update_all();
739 ust_marker_update_processes();
740 }
741
742 /**
743 * ust_marker_probe_register - Connect a probe to a ust_marker
744 * @channel: ust_marker channel
745 * @name: ust_marker name
746 * @format: format string
747 * @probe: probe handler
748 * @probe_private: probe private data
749 *
750 * private data must be a valid allocated memory address, or NULL.
751 * Returns 0 if ok, error value on error.
752 * The probe address must at least be aligned on the architecture pointer size.
753 */
754 int ust_marker_probe_register(const char *channel, const char *name,
755 const char *format, ust_marker_probe_func *probe,
756 void *probe_private)
757 {
758 struct ust_marker_entry *entry;
759 int ret = 0, ret_err;
760 struct ust_marker_probe_closure *old;
761 int first_probe = 0;
762
763 pthread_mutex_lock(&ust_marker_mutex);
764 entry = get_ust_marker(channel, name);
765 if (!entry) {
766 first_probe = 1;
767 entry = add_ust_marker(channel, name, format);
768 if (IS_ERR(entry))
769 ret = PTR_ERR(entry);
770 if (ret)
771 goto end;
772 ret = ltt_channels_register(channel);
773 if (ret)
774 goto error_remove_ust_marker;
775 ret = ltt_channels_get_index_from_name(channel);
776 if (ret < 0)
777 goto error_unregister_channel;
778 entry->channel_id = ret;
779 ret = ltt_channels_get_event_id(channel, name);
780 if (ret < 0)
781 goto error_unregister_channel;
782 entry->event_id = ret;
783 ret = 0;
784 __ust_marker(metadata, core_marker_id, NULL,
785 "channel %s name %s event_id %hu "
786 "int #1u%zu long #1u%zu pointer #1u%zu "
787 "size_t #1u%zu alignment #1u%u",
788 channel, name, entry->event_id,
789 sizeof(int), sizeof(long), sizeof(void *),
790 sizeof(size_t), ltt_get_alignment());
791 } else if (format) {
792 if (!entry->format)
793 ret = ust_marker_set_format(entry, format);
794 else if (strcmp(entry->format, format))
795 ret = -EPERM;
796 if (ret)
797 goto end;
798 }
799
800 /*
801 * If we detect that a call_rcu is pending for this ust_marker,
802 * make sure it's executed now.
803 */
804 //ust// if (entry->rcu_pending)
805 //ust// rcu_cmm_barrier_sched();
806 old = ust_marker_entry_add_probe(entry, probe, probe_private);
807 if (IS_ERR(old)) {
808 ret = PTR_ERR(old);
809 if (first_probe)
810 goto error_unregister_channel;
811 else
812 goto end;
813 }
814 pthread_mutex_unlock(&ust_marker_mutex);
815
816 /* Activate ust_marker if necessary */
817 ust_marker_update_probes();
818
819 pthread_mutex_lock(&ust_marker_mutex);
820 entry = get_ust_marker(channel, name);
821 if (!entry)
822 goto end;
823 //ust// if (entry->rcu_pending)
824 //ust// rcu_cmm_barrier_sched();
825 entry->oldptr = old;
826 entry->rcu_pending = 1;
827 /* write rcu_pending before calling the RCU callback */
828 cmm_smp_wmb();
829 //ust// call_rcu_sched(&entry->rcu, free_old_closure);
830 synchronize_rcu(); free_old_closure(&entry->rcu);
831 goto end;
832
833 error_unregister_channel:
834 ret_err = ltt_channels_unregister(channel);
835 WARN_ON(ret_err);
836 error_remove_ust_marker:
837 ret_err = remove_ust_marker(channel, name);
838 WARN_ON(ret_err);
839 end:
840 pthread_mutex_unlock(&ust_marker_mutex);
841 return ret;
842 }
843 //ust// EXPORT_SYMBOL_GPL(ust_marker_probe_register);
844
845 /**
846 * ust_marker_probe_unregister - Disconnect a probe from a ust_marker
847 * @channel: ust_marker channel
848 * @name: ust_marker name
849 * @probe: probe function pointer
850 * @probe_private: probe private data
851 *
852 * Returns the private data given to ust_marker_probe_register, or an ERR_PTR().
853 * We do not need to call a synchronize_sched to make sure the probes have
854 * finished running before doing a module unload, because the module unload
855 * itself uses stop_machine(), which insures that every preempt disabled section
856 * have finished.
857 */
858 int ust_marker_probe_unregister(const char *channel, const char *name,
859 ust_marker_probe_func *probe, void *probe_private)
860 {
861 struct ust_marker_entry *entry;
862 struct ust_marker_probe_closure *old;
863 int ret = -ENOENT;
864
865 pthread_mutex_lock(&ust_marker_mutex);
866 entry = get_ust_marker(channel, name);
867 if (!entry)
868 goto end;
869 //ust// if (entry->rcu_pending)
870 //ust// rcu_cmm_barrier_sched();
871 old = ust_marker_entry_remove_probe(entry, probe, probe_private);
872 pthread_mutex_unlock(&ust_marker_mutex);
873
874 ust_marker_update_probes();
875
876 pthread_mutex_lock(&ust_marker_mutex);
877 entry = get_ust_marker(channel, name);
878 if (!entry)
879 goto end;
880 //ust// if (entry->rcu_pending)
881 //ust// rcu_cmm_barrier_sched();
882 entry->oldptr = old;
883 entry->rcu_pending = 1;
884 /* write rcu_pending before calling the RCU callback */
885 cmm_smp_wmb();
886 //ust// call_rcu_sched(&entry->rcu, free_old_closure);
887 synchronize_rcu(); free_old_closure(&entry->rcu);
888 remove_ust_marker(channel, name); /* Ignore busy error message */
889 ret = 0;
890 end:
891 pthread_mutex_unlock(&ust_marker_mutex);
892 return ret;
893 }
894 //ust// EXPORT_SYMBOL_GPL(ust_marker_probe_unregister);
895
896 static struct ust_marker_entry *
897 get_ust_marker_from_private_data(ust_marker_probe_func *probe, void *probe_private)
898 {
899 struct ust_marker_entry *entry;
900 unsigned int i;
901 struct cds_hlist_head *head;
902 struct cds_hlist_node *node;
903
904 for (i = 0; i < UST_MARKER_TABLE_SIZE; i++) {
905 head = &ust_marker_table[i];
906 cds_hlist_for_each_entry(entry, node, head, hlist) {
907 if (!entry->ptype) {
908 if (entry->single.func == probe
909 && entry->single.probe_private
910 == probe_private)
911 return entry;
912 } else {
913 struct ust_marker_probe_closure *closure;
914 closure = entry->multi;
915 for (i = 0; closure[i].func; i++) {
916 if (closure[i].func == probe &&
917 closure[i].probe_private
918 == probe_private)
919 return entry;
920 }
921 }
922 }
923 }
924 return NULL;
925 }
926
927 /**
928 * ust_marker_probe_unregister_private_data - Disconnect a probe from a ust_marker
929 * @probe: probe function
930 * @probe_private: probe private data
931 *
932 * Unregister a probe by providing the registered private data.
933 * Only removes the first ust_marker found in hash table.
934 * Return 0 on success or error value.
935 * We do not need to call a synchronize_sched to make sure the probes have
936 * finished running before doing a module unload, because the module unload
937 * itself uses stop_machine(), which insures that every preempt disabled section
938 * have finished.
939 */
940 int ust_marker_probe_unregister_private_data(ust_marker_probe_func *probe,
941 void *probe_private)
942 {
943 struct ust_marker_entry *entry;
944 int ret = 0;
945 struct ust_marker_probe_closure *old;
946 char *channel = NULL, *name = NULL;
947
948 pthread_mutex_lock(&ust_marker_mutex);
949 entry = get_ust_marker_from_private_data(probe, probe_private);
950 if (!entry) {
951 ret = -ENOENT;
952 goto end;
953 }
954 //ust// if (entry->rcu_pending)
955 //ust// rcu_cmm_barrier_sched();
956 old = ust_marker_entry_remove_probe(entry, NULL, probe_private);
957 channel = strdup(entry->channel);
958 name = strdup(entry->name);
959 pthread_mutex_unlock(&ust_marker_mutex);
960
961 ust_marker_update_probes();
962
963 pthread_mutex_lock(&ust_marker_mutex);
964 entry = get_ust_marker(channel, name);
965 if (!entry)
966 goto end;
967 //ust// if (entry->rcu_pending)
968 //ust// rcu_cmm_barrier_sched();
969 entry->oldptr = old;
970 entry->rcu_pending = 1;
971 /* write rcu_pending before calling the RCU callback */
972 cmm_smp_wmb();
973 //ust// call_rcu_sched(&entry->rcu, free_old_closure);
974 synchronize_rcu(); free_old_closure(&entry->rcu);
975 /* Ignore busy error message */
976 remove_ust_marker(channel, name);
977 end:
978 pthread_mutex_unlock(&ust_marker_mutex);
979 free(channel);
980 free(name);
981 return ret;
982 }
983 //ust// EXPORT_SYMBOL_GPL(ust_marker_probe_unregister_private_data);
984
985 /**
986 * ust_marker_get_private_data - Get a ust_marker's probe private data
987 * @channel: ust_marker channel
988 * @name: ust_marker name
989 * @probe: probe to match
990 * @num: get the nth matching probe's private data
991 *
992 * Returns the nth private data pointer (starting from 0) matching, or an
993 * ERR_PTR.
994 * Returns the private data pointer, or an ERR_PTR.
995 * The private data pointer should _only_ be dereferenced if the caller is the
996 * owner of the data, or its content could vanish. This is mostly used to
997 * confirm that a caller is the owner of a registered probe.
998 */
999 void *ust_marker_get_private_data(const char *channel, const char *name,
1000 ust_marker_probe_func *probe, int num)
1001 {
1002 struct cds_hlist_head *head;
1003 struct cds_hlist_node *node;
1004 struct ust_marker_entry *e;
1005 size_t channel_len = strlen(channel) + 1;
1006 size_t name_len = strlen(name) + 1;
1007 int i;
1008 u32 hash;
1009
1010 hash = jhash(channel, channel_len-1, 0) ^ jhash(name, name_len-1, 0);
1011 head = &ust_marker_table[hash & ((1 << UST_MARKER_HASH_BITS)-1)];
1012 cds_hlist_for_each_entry(e, node, head, hlist) {
1013 if (!strcmp(channel, e->channel) && !strcmp(name, e->name)) {
1014 if (!e->ptype) {
1015 if (num == 0 && e->single.func == probe)
1016 return e->single.probe_private;
1017 } else {
1018 struct ust_marker_probe_closure *closure;
1019 int match = 0;
1020 closure = e->multi;
1021 for (i = 0; closure[i].func; i++) {
1022 if (closure[i].func != probe)
1023 continue;
1024 if (match++ == num)
1025 return closure[i].probe_private;
1026 }
1027 }
1028 break;
1029 }
1030 }
1031 return ERR_PTR(-ENOENT);
1032 }
1033 //ust// EXPORT_SYMBOL_GPL(ust_marker_get_private_data);
1034
1035 /**
1036 * ust_marker_compact_event_ids - Compact ust_marker event IDs and reassign channels
1037 *
1038 * Called when no channel users are active by the channel infrastructure.
1039 * Called with lock_ust_marker() and channel mutex held.
1040 */
1041 //ust// void ust_marker_compact_event_ids(void)
1042 //ust// {
1043 //ust// struct ust_marker_entry *entry;
1044 //ust// unsigned int i;
1045 //ust// struct hlist_head *head;
1046 //ust// struct hlist_node *node;
1047 //ust// int ret;
1048 //ust//
1049 //ust// for (i = 0; i < UST_MARKER_TABLE_SIZE; i++) {
1050 //ust// head = &ust_marker_table[i];
1051 //ust// hlist_for_each_entry(entry, node, head, hlist) {
1052 //ust// ret = ltt_channels_get_index_from_name(entry->channel);
1053 //ust// WARN_ON(ret < 0);
1054 //ust// entry->channel_id = ret;
1055 //ust// ret = _ltt_channels_get_event_id(entry->channel,
1056 //ust// entry->name);
1057 //ust// WARN_ON(ret < 0);
1058 //ust// entry->event_id = ret;
1059 //ust// }
1060 //ust// }
1061 //ust// }
1062
1063 //ust//#ifdef CONFIG_MODULES
1064
1065 /*
1066 * Returns 0 if current not found.
1067 * Returns 1 if current found.
1068 */
1069 int lib_get_iter_ust_marker(struct ust_marker_iter *iter)
1070 {
1071 struct ust_marker_lib *iter_lib;
1072 int found = 0;
1073
1074 //ust// pthread_mutex_lock(&module_mutex);
1075 cds_list_for_each_entry(iter_lib, &ust_marker_libs, list) {
1076 if (iter_lib < iter->lib)
1077 continue;
1078 else if (iter_lib > iter->lib)
1079 iter->ust_marker = NULL;
1080 found = ust_marker_get_iter_range(&iter->ust_marker,
1081 iter_lib->ust_marker_start,
1082 iter_lib->ust_marker_start + iter_lib->ust_marker_count);
1083 if (found) {
1084 iter->lib = iter_lib;
1085 break;
1086 }
1087 }
1088 //ust// pthread_mutex_unlock(&module_mutex);
1089 return found;
1090 }
1091
1092 /**
1093 * ust_marker_get_iter_range - Get a next ust_marker iterator given a range.
1094 * @ust_marker: current ust_marker (in), next ust_marker (out)
1095 * @begin: beginning of the range
1096 * @end: end of the range
1097 *
1098 * Returns whether a next ust_marker has been found (1) or not (0).
1099 * Will return the first ust_marker in the range if the input ust_marker is NULL.
1100 */
1101 int ust_marker_get_iter_range(struct ust_marker * const **ust_marker,
1102 struct ust_marker * const *begin,
1103 struct ust_marker * const *end)
1104 {
1105 if (!*ust_marker && begin != end)
1106 *ust_marker = begin;
1107 while (*ust_marker >= begin && *ust_marker < end) {
1108 if (!**ust_marker)
1109 (*ust_marker)++; /* skip dummy */
1110 else
1111 return 1;
1112 }
1113 return 0;
1114 }
1115 //ust// EXPORT_SYMBOL_GPL(ust_marker_get_iter_range);
1116
1117 static void ust_marker_get_iter(struct ust_marker_iter *iter)
1118 {
1119 int found = 0;
1120
1121 found = lib_get_iter_ust_marker(iter);
1122 if (!found)
1123 ust_marker_iter_reset(iter);
1124 }
1125
1126 void ust_marker_iter_start(struct ust_marker_iter *iter)
1127 {
1128 ust_marker_get_iter(iter);
1129 }
1130 //ust// EXPORT_SYMBOL_GPL(ust_marker_iter_start);
1131
1132 void ust_marker_iter_next(struct ust_marker_iter *iter)
1133 {
1134 iter->ust_marker++;
1135 /*
1136 * iter->ust_marker may be invalid because we blindly incremented it.
1137 * Make sure it is valid by marshalling on the ust_marker, getting the
1138 * ust_marker from following modules if necessary.
1139 */
1140 ust_marker_get_iter(iter);
1141 }
1142 //ust// EXPORT_SYMBOL_GPL(ust_marker_iter_next);
1143
1144 void ust_marker_iter_stop(struct ust_marker_iter *iter)
1145 {
1146 }
1147 //ust// EXPORT_SYMBOL_GPL(ust_marker_iter_stop);
1148
1149 void ust_marker_iter_reset(struct ust_marker_iter *iter)
1150 {
1151 iter->lib = NULL;
1152 iter->ust_marker = NULL;
1153 }
1154 //ust// EXPORT_SYMBOL_GPL(ust_marker_iter_reset);
1155
1156 #ifdef CONFIG_UST_MARKER_USERSPACE
1157 /*
1158 * must be called with current->user_ust_marker_mutex held
1159 */
1160 static void free_user_ust_marker(char __user *state, struct cds_hlist_head *head)
1161 {
1162 struct user_ust_marker *umark;
1163 struct cds_hlist_node *pos, *n;
1164
1165 cds_hlist_for_each_entry_safe(umark, pos, n, head, hlist) {
1166 if (umark->state == state) {
1167 cds_hlist_del(&umark->hlist);
1168 free(umark);
1169 }
1170 }
1171 }
1172
1173 /*
1174 * Update current process.
1175 * Note that we have to wait a whole scheduler period before we are sure that
1176 * every running userspace threads have their ust_marker updated.
1177 * (synchronize_sched() can be used to insure this).
1178 */
1179 //ust// void ust_marker_update_process(void)
1180 //ust// {
1181 //ust// struct user_ust_marker *umark;
1182 //ust// struct hlist_node *pos;
1183 //ust// struct ust_marker_entry *entry;
1184 //ust//
1185 //ust// pthread_mutex_lock(&ust_marker_mutex);
1186 //ust// pthread_mutex_lock(&current->group_leader->user_ust_marker_mutex);
1187 //ust// if (strcmp(current->comm, "testprog") == 0)
1188 //ust// DBG("do update pending for testprog");
1189 //ust// hlist_for_each_entry(umark, pos,
1190 //ust// &current->group_leader->user_ust_marker, hlist) {
1191 //ust// DBG("Updating ust_marker %s in %s", umark->name, current->comm);
1192 //ust// entry = get_ust_marker("userspace", umark->name);
1193 //ust// if (entry) {
1194 //ust// if (entry->format &&
1195 //ust// strcmp(entry->format, umark->format) != 0) {
1196 //ust// WARN("error, wrong format in process %s",
1197 //ust// current->comm);
1198 //ust// break;
1199 //ust// }
1200 //ust// if (put_user(!!entry->refcount, umark->state)) {
1201 //ust// WARN("ust_marker in %s caused a fault",
1202 //ust// current->comm);
1203 //ust// break;
1204 //ust// }
1205 //ust// } else {
1206 //ust// if (put_user(0, umark->state)) {
1207 //ust// WARN("ust_marker in %s caused a fault", current->comm);
1208 //ust// break;
1209 //ust// }
1210 //ust// }
1211 //ust// }
1212 //ust// clear_thread_flag(TIF_UST_MARKER_PENDING);
1213 //ust// pthread_mutex_unlock(&current->group_leader->user_ust_marker_mutex);
1214 //ust// pthread_mutex_unlock(&ust_marker_mutex);
1215 //ust// }
1216
1217 /*
1218 * Called at process exit and upon do_execve().
1219 * We assume that when the leader exits, no more references can be done to the
1220 * leader structure by the other threads.
1221 */
1222 void exit_user_ust_marker(struct task_struct *p)
1223 {
1224 struct user_ust_marker *umark;
1225 struct cds_hlist_node *pos, *n;
1226
1227 if (thread_group_leader(p)) {
1228 pthread_mutex_lock(&ust_marker_mutex);
1229 pthread_mutex_lock(&p->user_ust_marker_mutex);
1230 cds_hlist_for_each_entry_safe(umark, pos, n, &p->user_ust_marker,
1231 hlist)
1232 free(umark);
1233 INIT_HLIST_HEAD(&p->user_ust_marker);
1234 p->user_ust_marker_sequence++;
1235 pthread_mutex_unlock(&p->user_ust_marker_mutex);
1236 pthread_mutex_unlock(&ust_marker_mutex);
1237 }
1238 }
1239
1240 int is_ust_marker_enabled(const char *channel, const char *name)
1241 {
1242 struct ust_marker_entry *entry;
1243
1244 pthread_mutex_lock(&ust_marker_mutex);
1245 entry = get_ust_marker(channel, name);
1246 pthread_mutex_unlock(&ust_marker_mutex);
1247
1248 return entry && !!entry->refcount;
1249 }
1250 //ust// #endif
1251
1252 int ust_marker_module_notify(struct notifier_block *self,
1253 unsigned long val, void *data)
1254 {
1255 struct module *mod = data;
1256
1257 switch (val) {
1258 case MODULE_STATE_COMING:
1259 ust_marker_update_probe_range(mod->ust_marker,
1260 mod->ust_marker + mod->num_ust_marker);
1261 break;
1262 case MODULE_STATE_GOING:
1263 ust_marker_update_probe_range(mod->ust_marker,
1264 mod->ust_marker + mod->num_ust_marker);
1265 break;
1266 }
1267 return 0;
1268 }
1269
1270 struct notifier_block ust_marker_module_nb = {
1271 .notifier_call = ust_marker_module_notify,
1272 .priority = 0,
1273 };
1274
1275 //ust// static int init_ust_marker(void)
1276 //ust// {
1277 //ust// return register_module_notifier(&ust_marker_module_nb);
1278 //ust// }
1279 //ust// __initcall(init_ust_marker);
1280 /* TODO: call ust_marker_module_nb() when a library is linked at runtime (dlopen)? */
1281
1282 #endif /* CONFIG_MODULES */
1283
1284 void ltt_dump_ust_marker_state(struct ust_trace *trace)
1285 {
1286 struct ust_marker_entry *entry;
1287 struct ltt_probe_private_data call_data;
1288 struct cds_hlist_head *head;
1289 struct cds_hlist_node *node;
1290 unsigned int i;
1291
1292 pthread_mutex_lock(&ust_marker_mutex);
1293 call_data.trace = trace;
1294 call_data.serializer = NULL;
1295
1296 for (i = 0; i < UST_MARKER_TABLE_SIZE; i++) {
1297 head = &ust_marker_table[i];
1298 cds_hlist_for_each_entry(entry, node, head, hlist) {
1299 __ust_marker(metadata, core_marker_id,
1300 &call_data,
1301 "channel %s name %s event_id %hu "
1302 "int #1u%zu long #1u%zu pointer #1u%zu "
1303 "size_t #1u%zu alignment #1u%u",
1304 entry->channel,
1305 entry->name,
1306 entry->event_id,
1307 sizeof(int), sizeof(long),
1308 sizeof(void *), sizeof(size_t),
1309 ltt_get_alignment());
1310 if (entry->format)
1311 __ust_marker(metadata,
1312 core_marker_format,
1313 &call_data,
1314 "channel %s name %s format %s",
1315 entry->channel,
1316 entry->name,
1317 entry->format);
1318 }
1319 }
1320 pthread_mutex_unlock(&ust_marker_mutex);
1321 }
1322 //ust// EXPORT_SYMBOL_GPL(ltt_dump_ust_marker_state);
1323
1324 static void (*new_ust_marker_cb)(struct ust_marker *) = NULL;
1325
1326 void ust_marker_set_new_ust_marker_cb(void (*cb)(struct ust_marker *))
1327 {
1328 new_ust_marker_cb = cb;
1329 }
1330
1331 static void new_ust_marker(struct ust_marker * const *start, struct ust_marker * const *end)
1332 {
1333 if (new_ust_marker_cb) {
1334 struct ust_marker * const *m;
1335
1336 for(m = start; m < end; m++) {
1337 if (*m)
1338 new_ust_marker_cb(*m);
1339 }
1340 }
1341 }
1342
1343 int ust_marker_register_lib(struct ust_marker * const *ust_marker_start, int ust_marker_count)
1344 {
1345 struct ust_marker_lib *pl, *iter;
1346
1347 pl = (struct ust_marker_lib *) zmalloc(sizeof(struct ust_marker_lib));
1348
1349 pl->ust_marker_start = ust_marker_start;
1350 pl->ust_marker_count = ust_marker_count;
1351
1352 /* FIXME: maybe protect this with its own mutex? */
1353 lock_ust_marker();
1354
1355 /*
1356 * We sort the libs by struct lib pointer address.
1357 */
1358 cds_list_for_each_entry_reverse(iter, &ust_marker_libs, list) {
1359 BUG_ON(iter == pl); /* Should never be in the list twice */
1360 if (iter < pl) {
1361 /* We belong to the location right after iter. */
1362 cds_list_add(&pl->list, &iter->list);
1363 goto lib_added;
1364 }
1365 }
1366 /* We should be added at the head of the list */
1367 cds_list_add(&pl->list, &ust_marker_libs);
1368 lib_added:
1369 unlock_ust_marker();
1370
1371 new_ust_marker(ust_marker_start, ust_marker_start + ust_marker_count);
1372
1373 /* FIXME: update just the loaded lib */
1374 lib_update_ust_marker();
1375
1376 DBG("just registered a ust_marker section from %p and having %d ust_marker (minus dummy ust_marker)", ust_marker_start, ust_marker_count);
1377
1378 return 0;
1379 }
1380
1381 int ust_marker_unregister_lib(struct ust_marker * const *ust_marker_start)
1382 {
1383 struct ust_marker_lib *lib;
1384
1385 /*FIXME: implement; but before implementing, ust_marker_register_lib must
1386 have appropriate locking. */
1387
1388 lock_ust_marker();
1389
1390 /* FIXME: we should probably take a mutex here on libs */
1391 //ust// pthread_mutex_lock(&module_mutex);
1392 cds_list_for_each_entry(lib, &ust_marker_libs, list) {
1393 if(lib->ust_marker_start == ust_marker_start) {
1394 struct ust_marker_lib *lib2free = lib;
1395 cds_list_del(&lib->list);
1396 free(lib2free);
1397 break;
1398 }
1399 }
1400
1401 unlock_ust_marker();
1402
1403 return 0;
1404 }
1405
1406 static int initialized = 0;
1407
1408 void __attribute__((constructor)) init_ust_marker(void)
1409 {
1410 if (!initialized) {
1411 ust_marker_register_lib(__start___ust_marker_ptrs,
1412 __stop___ust_marker_ptrs
1413 - __start___ust_marker_ptrs);
1414 initialized = 1;
1415 }
1416 }
1417
1418 void __attribute__((destructor)) destroy_ust_marker(void)
1419 {
1420 ust_marker_unregister_lib(__start___ust_marker_ptrs);
1421 }
This page took 0.057677 seconds and 4 git commands to generate.