forked from lttng/lttng-modules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lttng-abi.c
1651 lines (1494 loc) · 41.6 KB
/
lttng-abi.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* lttng-abi.c
*
* LTTng ABI
*
* Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; only
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*
* Mimic system calls for:
* - session creation, returns a file descriptor or failure.
* - channel creation, returns a file descriptor or failure.
* - Operates on a session file descriptor
* - Takes all channel options as parameters.
* - stream get, returns a file descriptor or failure.
* - Operates on a channel file descriptor.
* - stream notifier get, returns a file descriptor or failure.
* - Operates on a channel file descriptor.
* - event creation, returns a file descriptor or failure.
* - Operates on a channel file descriptor
* - Takes an event name as parameter
* - Takes an instrumentation source as parameter
* - e.g. tracepoints, dynamic_probes...
* - Takes instrumentation source specific arguments.
*/
#include <linux/module.h>
#include <linux/proc_fs.h>
#include <linux/anon_inodes.h>
#include <linux/file.h>
#include <linux/uaccess.h>
#include <linux/slab.h>
#include <linux/err.h>
#include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
#include "wrapper/ringbuffer/vfs.h"
#include "wrapper/ringbuffer/backend.h"
#include "wrapper/ringbuffer/frontend.h"
#include "wrapper/poll.h"
#include "wrapper/file.h"
#include "lttng-abi.h"
#include "lttng-abi-old.h"
#include "lttng-events.h"
#include "lttng-tracer.h"
#include "lib/ringbuffer/frontend_types.h"
/*
* This is LTTng's own personal way to create a system call as an external
* module. We use ioctl() on /proc/lttng.
*/
static struct proc_dir_entry *lttng_proc_dentry;
static const struct file_operations lttng_fops;
static const struct file_operations lttng_session_fops;
static const struct file_operations lttng_channel_fops;
static const struct file_operations lttng_metadata_fops;
static const struct file_operations lttng_event_fops;
static struct file_operations lttng_stream_ring_buffer_file_operations;
/*
* Teardown management: opened file descriptors keep a refcount on the module,
* so it can only exit when all file descriptors are closed.
*/
static
int lttng_abi_create_session(void)
{
struct lttng_session *session;
struct file *session_file;
int session_fd, ret;
session = lttng_session_create();
if (!session)
return -ENOMEM;
session_fd = lttng_get_unused_fd();
if (session_fd < 0) {
ret = session_fd;
goto fd_error;
}
session_file = anon_inode_getfile("[lttng_session]",
<tng_session_fops,
session, O_RDWR);
if (IS_ERR(session_file)) {
ret = PTR_ERR(session_file);
goto file_error;
}
session->file = session_file;
fd_install(session_fd, session_file);
return session_fd;
file_error:
put_unused_fd(session_fd);
fd_error:
lttng_session_destroy(session);
return ret;
}
static
int lttng_abi_tracepoint_list(void)
{
struct file *tracepoint_list_file;
int file_fd, ret;
file_fd = lttng_get_unused_fd();
if (file_fd < 0) {
ret = file_fd;
goto fd_error;
}
tracepoint_list_file = anon_inode_getfile("[lttng_tracepoint_list]",
<tng_tracepoint_list_fops,
NULL, O_RDWR);
if (IS_ERR(tracepoint_list_file)) {
ret = PTR_ERR(tracepoint_list_file);
goto file_error;
}
ret = lttng_tracepoint_list_fops.open(NULL, tracepoint_list_file);
if (ret < 0)
goto open_error;
fd_install(file_fd, tracepoint_list_file);
if (file_fd < 0) {
ret = file_fd;
goto fd_error;
}
return file_fd;
open_error:
fput(tracepoint_list_file);
file_error:
put_unused_fd(file_fd);
fd_error:
return ret;
}
#ifndef CONFIG_HAVE_SYSCALL_TRACEPOINTS
static inline
int lttng_abi_syscall_list(void)
{
return -ENOSYS;
}
#else
static
int lttng_abi_syscall_list(void)
{
struct file *syscall_list_file;
int file_fd, ret;
file_fd = lttng_get_unused_fd();
if (file_fd < 0) {
ret = file_fd;
goto fd_error;
}
syscall_list_file = anon_inode_getfile("[lttng_syscall_list]",
<tng_syscall_list_fops,
NULL, O_RDWR);
if (IS_ERR(syscall_list_file)) {
ret = PTR_ERR(syscall_list_file);
goto file_error;
}
ret = lttng_syscall_list_fops.open(NULL, syscall_list_file);
if (ret < 0)
goto open_error;
fd_install(file_fd, syscall_list_file);
if (file_fd < 0) {
ret = file_fd;
goto fd_error;
}
return file_fd;
open_error:
fput(syscall_list_file);
file_error:
put_unused_fd(file_fd);
fd_error:
return ret;
}
#endif
static
void lttng_abi_tracer_version(struct lttng_kernel_tracer_version *v)
{
v->major = LTTNG_MODULES_MAJOR_VERSION;
v->minor = LTTNG_MODULES_MINOR_VERSION;
v->patchlevel = LTTNG_MODULES_PATCHLEVEL_VERSION;
}
static
void lttng_abi_tracer_abi_version(struct lttng_kernel_tracer_abi_version *v)
{
v->major = LTTNG_MODULES_ABI_MAJOR_VERSION;
v->minor = LTTNG_MODULES_ABI_MINOR_VERSION;
}
static
long lttng_abi_add_context(struct file *file,
struct lttng_kernel_context *context_param,
struct lttng_ctx **ctx, struct lttng_session *session)
{
if (session->been_active)
return -EPERM;
switch (context_param->ctx) {
case LTTNG_KERNEL_CONTEXT_PID:
return lttng_add_pid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_PRIO:
return lttng_add_prio_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_NICE:
return lttng_add_nice_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_VPID:
return lttng_add_vpid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_TID:
return lttng_add_tid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_VTID:
return lttng_add_vtid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_PPID:
return lttng_add_ppid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_VPPID:
return lttng_add_vppid_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_PERF_COUNTER:
context_param->u.perf_counter.name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
return lttng_add_perf_counter_to_ctx(context_param->u.perf_counter.type,
context_param->u.perf_counter.config,
context_param->u.perf_counter.name,
ctx);
case LTTNG_KERNEL_CONTEXT_PROCNAME:
return lttng_add_procname_to_ctx(ctx);
case LTTNG_KERNEL_CONTEXT_HOSTNAME:
return lttng_add_hostname_to_ctx(ctx);
default:
return -EINVAL;
}
}
/**
* lttng_ioctl - lttng syscall through ioctl
*
* @file: the file
* @cmd: the command
* @arg: command arg
*
* This ioctl implements lttng commands:
* LTTNG_KERNEL_SESSION
* Returns a LTTng trace session file descriptor
* LTTNG_KERNEL_TRACER_VERSION
* Returns the LTTng kernel tracer version
* LTTNG_KERNEL_TRACEPOINT_LIST
* Returns a file descriptor listing available tracepoints
* LTTNG_KERNEL_WAIT_QUIESCENT
* Returns after all previously running probes have completed
* LTTNG_KERNEL_TRACER_ABI_VERSION
* Returns the LTTng kernel tracer ABI version
*
* The returned session will be deleted when its file descriptor is closed.
*/
static
long lttng_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
switch (cmd) {
case LTTNG_KERNEL_OLD_SESSION:
case LTTNG_KERNEL_SESSION:
return lttng_abi_create_session();
case LTTNG_KERNEL_OLD_TRACER_VERSION:
{
struct lttng_kernel_tracer_version v;
struct lttng_kernel_old_tracer_version oldv;
struct lttng_kernel_old_tracer_version *uversion =
(struct lttng_kernel_old_tracer_version __user *) arg;
lttng_abi_tracer_version(&v);
oldv.major = v.major;
oldv.minor = v.minor;
oldv.patchlevel = v.patchlevel;
if (copy_to_user(uversion, &oldv, sizeof(oldv)))
return -EFAULT;
return 0;
}
case LTTNG_KERNEL_TRACER_VERSION:
{
struct lttng_kernel_tracer_version version;
struct lttng_kernel_tracer_version *uversion =
(struct lttng_kernel_tracer_version __user *) arg;
lttng_abi_tracer_version(&version);
if (copy_to_user(uversion, &version, sizeof(version)))
return -EFAULT;
return 0;
}
case LTTNG_KERNEL_TRACER_ABI_VERSION:
{
struct lttng_kernel_tracer_abi_version version;
struct lttng_kernel_tracer_abi_version *uversion =
(struct lttng_kernel_tracer_abi_version __user *) arg;
lttng_abi_tracer_abi_version(&version);
if (copy_to_user(uversion, &version, sizeof(version)))
return -EFAULT;
return 0;
}
case LTTNG_KERNEL_OLD_TRACEPOINT_LIST:
case LTTNG_KERNEL_TRACEPOINT_LIST:
return lttng_abi_tracepoint_list();
case LTTNG_KERNEL_SYSCALL_LIST:
return lttng_abi_syscall_list();
case LTTNG_KERNEL_OLD_WAIT_QUIESCENT:
case LTTNG_KERNEL_WAIT_QUIESCENT:
synchronize_trace();
return 0;
case LTTNG_KERNEL_OLD_CALIBRATE:
{
struct lttng_kernel_old_calibrate __user *ucalibrate =
(struct lttng_kernel_old_calibrate __user *) arg;
struct lttng_kernel_old_calibrate old_calibrate;
struct lttng_kernel_calibrate calibrate;
int ret;
if (copy_from_user(&old_calibrate, ucalibrate, sizeof(old_calibrate)))
return -EFAULT;
calibrate.type = old_calibrate.type;
ret = lttng_calibrate(&calibrate);
if (copy_to_user(ucalibrate, &old_calibrate, sizeof(old_calibrate)))
return -EFAULT;
return ret;
}
case LTTNG_KERNEL_CALIBRATE:
{
struct lttng_kernel_calibrate __user *ucalibrate =
(struct lttng_kernel_calibrate __user *) arg;
struct lttng_kernel_calibrate calibrate;
int ret;
if (copy_from_user(&calibrate, ucalibrate, sizeof(calibrate)))
return -EFAULT;
ret = lttng_calibrate(&calibrate);
if (copy_to_user(ucalibrate, &calibrate, sizeof(calibrate)))
return -EFAULT;
return ret;
}
default:
return -ENOIOCTLCMD;
}
}
static const struct file_operations lttng_fops = {
.owner = THIS_MODULE,
.unlocked_ioctl = lttng_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = lttng_ioctl,
#endif
};
static
int lttng_abi_create_channel(struct file *session_file,
struct lttng_kernel_channel *chan_param,
enum channel_type channel_type)
{
struct lttng_session *session = session_file->private_data;
const struct file_operations *fops = NULL;
const char *transport_name;
struct lttng_channel *chan;
struct file *chan_file;
int chan_fd;
int ret = 0;
chan_fd = lttng_get_unused_fd();
if (chan_fd < 0) {
ret = chan_fd;
goto fd_error;
}
switch (channel_type) {
case PER_CPU_CHANNEL:
fops = <tng_channel_fops;
break;
case METADATA_CHANNEL:
fops = <tng_metadata_fops;
break;
}
chan_file = anon_inode_getfile("[lttng_channel]",
fops,
NULL, O_RDWR);
if (IS_ERR(chan_file)) {
ret = PTR_ERR(chan_file);
goto file_error;
}
switch (channel_type) {
case PER_CPU_CHANNEL:
if (chan_param->output == LTTNG_KERNEL_SPLICE) {
transport_name = chan_param->overwrite ?
"relay-overwrite" : "relay-discard";
} else if (chan_param->output == LTTNG_KERNEL_MMAP) {
transport_name = chan_param->overwrite ?
"relay-overwrite-mmap" : "relay-discard-mmap";
} else {
return -EINVAL;
}
break;
case METADATA_CHANNEL:
if (chan_param->output == LTTNG_KERNEL_SPLICE)
transport_name = "relay-metadata";
else if (chan_param->output == LTTNG_KERNEL_MMAP)
transport_name = "relay-metadata-mmap";
else
return -EINVAL;
break;
default:
transport_name = "<unknown>";
break;
}
/*
* We tolerate no failure path after channel creation. It will stay
* invariant for the rest of the session.
*/
chan = lttng_channel_create(session, transport_name, NULL,
chan_param->subbuf_size,
chan_param->num_subbuf,
chan_param->switch_timer_interval,
chan_param->read_timer_interval,
channel_type);
if (!chan) {
ret = -EINVAL;
goto chan_error;
}
chan->file = chan_file;
chan_file->private_data = chan;
fd_install(chan_fd, chan_file);
atomic_long_inc(&session_file->f_count);
return chan_fd;
chan_error:
fput(chan_file);
file_error:
put_unused_fd(chan_fd);
fd_error:
return ret;
}
/**
* lttng_session_ioctl - lttng session fd ioctl
*
* @file: the file
* @cmd: the command
* @arg: command arg
*
* This ioctl implements lttng commands:
* LTTNG_KERNEL_CHANNEL
* Returns a LTTng channel file descriptor
* LTTNG_KERNEL_ENABLE
* Enables tracing for a session (weak enable)
* LTTNG_KERNEL_DISABLE
* Disables tracing for a session (strong disable)
* LTTNG_KERNEL_METADATA
* Returns a LTTng metadata file descriptor
* LTTNG_KERNEL_SESSION_TRACK_PID
* Add PID to session tracker
* LTTNG_KERNEL_SESSION_UNTRACK_PID
* Remove PID from session tracker
*
* The returned channel will be deleted when its file descriptor is closed.
*/
static
long lttng_session_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
struct lttng_session *session = file->private_data;
switch (cmd) {
case LTTNG_KERNEL_OLD_CHANNEL:
{
struct lttng_kernel_channel chan_param;
struct lttng_kernel_old_channel old_chan_param;
if (copy_from_user(&old_chan_param,
(struct lttng_kernel_old_channel __user *) arg,
sizeof(struct lttng_kernel_old_channel)))
return -EFAULT;
chan_param.overwrite = old_chan_param.overwrite;
chan_param.subbuf_size = old_chan_param.subbuf_size;
chan_param.num_subbuf = old_chan_param.num_subbuf;
chan_param.switch_timer_interval = old_chan_param.switch_timer_interval;
chan_param.read_timer_interval = old_chan_param.read_timer_interval;
chan_param.output = old_chan_param.output;
return lttng_abi_create_channel(file, &chan_param,
PER_CPU_CHANNEL);
}
case LTTNG_KERNEL_CHANNEL:
{
struct lttng_kernel_channel chan_param;
if (copy_from_user(&chan_param,
(struct lttng_kernel_channel __user *) arg,
sizeof(struct lttng_kernel_channel)))
return -EFAULT;
return lttng_abi_create_channel(file, &chan_param,
PER_CPU_CHANNEL);
}
case LTTNG_KERNEL_OLD_SESSION_START:
case LTTNG_KERNEL_OLD_ENABLE:
case LTTNG_KERNEL_SESSION_START:
case LTTNG_KERNEL_ENABLE:
return lttng_session_enable(session);
case LTTNG_KERNEL_OLD_SESSION_STOP:
case LTTNG_KERNEL_OLD_DISABLE:
case LTTNG_KERNEL_SESSION_STOP:
case LTTNG_KERNEL_DISABLE:
return lttng_session_disable(session);
case LTTNG_KERNEL_OLD_METADATA:
{
struct lttng_kernel_channel chan_param;
struct lttng_kernel_old_channel old_chan_param;
if (copy_from_user(&old_chan_param,
(struct lttng_kernel_old_channel __user *) arg,
sizeof(struct lttng_kernel_old_channel)))
return -EFAULT;
chan_param.overwrite = old_chan_param.overwrite;
chan_param.subbuf_size = old_chan_param.subbuf_size;
chan_param.num_subbuf = old_chan_param.num_subbuf;
chan_param.switch_timer_interval = old_chan_param.switch_timer_interval;
chan_param.read_timer_interval = old_chan_param.read_timer_interval;
chan_param.output = old_chan_param.output;
return lttng_abi_create_channel(file, &chan_param,
METADATA_CHANNEL);
}
case LTTNG_KERNEL_METADATA:
{
struct lttng_kernel_channel chan_param;
if (copy_from_user(&chan_param,
(struct lttng_kernel_channel __user *) arg,
sizeof(struct lttng_kernel_channel)))
return -EFAULT;
return lttng_abi_create_channel(file, &chan_param,
METADATA_CHANNEL);
}
case LTTNG_KERNEL_SESSION_TRACK_PID:
return lttng_session_track_pid(session, (int) arg);
case LTTNG_KERNEL_SESSION_UNTRACK_PID:
return lttng_session_untrack_pid(session, (int) arg);
case LTTNG_KERNEL_SESSION_LIST_TRACKER_PIDS:
return lttng_session_list_tracker_pids(session);
default:
return -ENOIOCTLCMD;
}
}
/*
* Called when the last file reference is dropped.
*
* Big fat note: channels and events are invariant for the whole session after
* their creation. So this session destruction also destroys all channel and
* event structures specific to this session (they are not destroyed when their
* individual file is released).
*/
static
int lttng_session_release(struct inode *inode, struct file *file)
{
struct lttng_session *session = file->private_data;
if (session)
lttng_session_destroy(session);
return 0;
}
static const struct file_operations lttng_session_fops = {
.owner = THIS_MODULE,
.release = lttng_session_release,
.unlocked_ioctl = lttng_session_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = lttng_session_ioctl,
#endif
};
/**
* lttng_metadata_ring_buffer_poll - LTTng ring buffer poll file operation
* @filp: the file
* @wait: poll table
*
* Handles the poll operations for the metadata channels.
*/
static
unsigned int lttng_metadata_ring_buffer_poll(struct file *filp,
poll_table *wait)
{
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
int finalized;
unsigned int mask = 0;
if (filp->f_mode & FMODE_READ) {
poll_wait_set_exclusive(wait);
poll_wait(filp, &stream->read_wait, wait);
finalized = stream->finalized;
/*
* lib_ring_buffer_is_finalized() contains a smp_rmb()
* ordering finalized load before offsets loads.
*/
WARN_ON(atomic_long_read(&buf->active_readers) != 1);
if (finalized)
mask |= POLLHUP;
if (stream->metadata_cache->metadata_written >
stream->metadata_out)
mask |= POLLIN;
}
return mask;
}
static
void lttng_metadata_ring_buffer_ioctl_put_next_subbuf(struct file *filp,
unsigned int cmd, unsigned long arg)
{
struct lttng_metadata_stream *stream = filp->private_data;
stream->metadata_out = stream->metadata_in;
}
static
long lttng_metadata_ring_buffer_ioctl(struct file *filp,
unsigned int cmd, unsigned long arg)
{
int ret;
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
switch (cmd) {
case RING_BUFFER_GET_NEXT_SUBBUF:
{
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
struct channel *chan = buf->backend.chan;
ret = lttng_metadata_output_channel(stream, chan);
if (ret > 0) {
lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
ret = 0;
} else if (ret < 0)
goto err;
break;
}
case RING_BUFFER_GET_SUBBUF:
{
/*
* Random access is not allowed for metadata channel.
*/
return -ENOSYS;
}
case RING_BUFFER_FLUSH:
{
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
struct channel *chan = buf->backend.chan;
/*
* Before doing the actual ring buffer flush, write up to one
* packet of metadata in the ring buffer.
*/
ret = lttng_metadata_output_channel(stream, chan);
if (ret < 0)
goto err;
break;
}
default:
break;
}
/* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
/* Performing lib ring buffer ioctl after our own. */
ret = lib_ring_buffer_ioctl(filp, cmd, arg, buf);
if (ret < 0)
goto err;
switch (cmd) {
case RING_BUFFER_PUT_NEXT_SUBBUF:
{
lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp,
cmd, arg);
break;
}
default:
break;
}
err:
return ret;
}
#ifdef CONFIG_COMPAT
static
long lttng_metadata_ring_buffer_compat_ioctl(struct file *filp,
unsigned int cmd, unsigned long arg)
{
int ret;
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
switch (cmd) {
case RING_BUFFER_GET_NEXT_SUBBUF:
{
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
struct channel *chan = buf->backend.chan;
ret = lttng_metadata_output_channel(stream, chan);
if (ret > 0) {
lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
ret = 0;
} else if (ret < 0)
goto err;
break;
}
case RING_BUFFER_GET_SUBBUF:
{
/*
* Random access is not allowed for metadata channel.
*/
return -ENOSYS;
}
default:
break;
}
/* PUT_SUBBUF is the one from lib ring buffer, unmodified. */
/* Performing lib ring buffer ioctl after our own. */
ret = lib_ring_buffer_compat_ioctl(filp, cmd, arg, buf);
if (ret < 0)
goto err;
switch (cmd) {
case RING_BUFFER_PUT_NEXT_SUBBUF:
{
lttng_metadata_ring_buffer_ioctl_put_next_subbuf(filp,
cmd, arg);
break;
}
default:
break;
}
err:
return ret;
}
#endif
/*
* This is not used by anonymous file descriptors. This code is left
* there if we ever want to implement an inode with open() operation.
*/
static
int lttng_metadata_ring_buffer_open(struct inode *inode, struct file *file)
{
struct lttng_metadata_stream *stream = inode->i_private;
struct lib_ring_buffer *buf = stream->priv;
file->private_data = buf;
/*
* Since life-time of metadata cache differs from that of
* session, we need to keep our own reference on the transport.
*/
if (!try_module_get(stream->transport->owner)) {
printk(KERN_WARNING "LTT : Can't lock transport module.\n");
return -EBUSY;
}
return lib_ring_buffer_open(inode, file, buf);
}
static
int lttng_metadata_ring_buffer_release(struct inode *inode, struct file *file)
{
struct lttng_metadata_stream *stream = file->private_data;
struct lib_ring_buffer *buf = stream->priv;
kref_put(&stream->metadata_cache->refcount, metadata_cache_destroy);
module_put(stream->transport->owner);
return lib_ring_buffer_release(inode, file, buf);
}
static
ssize_t lttng_metadata_ring_buffer_splice_read(struct file *in, loff_t *ppos,
struct pipe_inode_info *pipe, size_t len,
unsigned int flags)
{
struct lttng_metadata_stream *stream = in->private_data;
struct lib_ring_buffer *buf = stream->priv;
return lib_ring_buffer_splice_read(in, ppos, pipe, len,
flags, buf);
}
static
int lttng_metadata_ring_buffer_mmap(struct file *filp,
struct vm_area_struct *vma)
{
struct lttng_metadata_stream *stream = filp->private_data;
struct lib_ring_buffer *buf = stream->priv;
return lib_ring_buffer_mmap(filp, vma, buf);
}
static
const struct file_operations lttng_metadata_ring_buffer_file_operations = {
.owner = THIS_MODULE,
.open = lttng_metadata_ring_buffer_open,
.release = lttng_metadata_ring_buffer_release,
.poll = lttng_metadata_ring_buffer_poll,
.splice_read = lttng_metadata_ring_buffer_splice_read,
.mmap = lttng_metadata_ring_buffer_mmap,
.unlocked_ioctl = lttng_metadata_ring_buffer_ioctl,
.llseek = vfs_lib_ring_buffer_no_llseek,
#ifdef CONFIG_COMPAT
.compat_ioctl = lttng_metadata_ring_buffer_compat_ioctl,
#endif
};
static
int lttng_abi_create_stream_fd(struct file *channel_file, void *stream_priv,
const struct file_operations *fops)
{
int stream_fd, ret;
struct file *stream_file;
stream_fd = lttng_get_unused_fd();
if (stream_fd < 0) {
ret = stream_fd;
goto fd_error;
}
stream_file = anon_inode_getfile("[lttng_stream]", fops,
stream_priv, O_RDWR);
if (IS_ERR(stream_file)) {
ret = PTR_ERR(stream_file);
goto file_error;
}
/*
* OPEN_FMODE, called within anon_inode_getfile/alloc_file, don't honor
* FMODE_LSEEK, FMODE_PREAD nor FMODE_PWRITE. We need to read from this
* file descriptor, so we set FMODE_PREAD here.
*/
stream_file->f_mode |= FMODE_PREAD;
fd_install(stream_fd, stream_file);
/*
* The stream holds a reference to the channel within the generic ring
* buffer library, so no need to hold a refcount on the channel and
* session files here.
*/
return stream_fd;
file_error:
put_unused_fd(stream_fd);
fd_error:
return ret;
}
static
int lttng_abi_open_stream(struct file *channel_file)
{
struct lttng_channel *channel = channel_file->private_data;
struct lib_ring_buffer *buf;
int ret;
void *stream_priv;
buf = channel->ops->buffer_read_open(channel->chan);
if (!buf)
return -ENOENT;
stream_priv = buf;
ret = lttng_abi_create_stream_fd(channel_file, stream_priv,
<tng_stream_ring_buffer_file_operations);
if (ret < 0)
goto fd_error;
return ret;
fd_error:
channel->ops->buffer_read_close(buf);
return ret;
}
static
int lttng_abi_open_metadata_stream(struct file *channel_file)
{
struct lttng_channel *channel = channel_file->private_data;
struct lttng_session *session = channel->session;
struct lib_ring_buffer *buf;
int ret;
struct lttng_metadata_stream *metadata_stream;
void *stream_priv;
buf = channel->ops->buffer_read_open(channel->chan);
if (!buf)
return -ENOENT;
metadata_stream = kzalloc(sizeof(struct lttng_metadata_stream),
GFP_KERNEL);
if (!metadata_stream) {
ret = -ENOMEM;
goto nomem;
}
metadata_stream->metadata_cache = session->metadata_cache;
init_waitqueue_head(&metadata_stream->read_wait);
metadata_stream->priv = buf;
stream_priv = metadata_stream;
metadata_stream->transport = channel->transport;
mutex_init(&metadata_stream->lock);
/*
* Since life-time of metadata cache differs from that of
* session, we need to keep our own reference on the transport.
*/
if (!try_module_get(metadata_stream->transport->owner)) {
printk(KERN_WARNING "LTT : Can't lock transport module.\n");
ret = -EINVAL;
goto notransport;
}
ret = lttng_abi_create_stream_fd(channel_file, stream_priv,
<tng_metadata_ring_buffer_file_operations);
if (ret < 0)
goto fd_error;
kref_get(&session->metadata_cache->refcount);
list_add(&metadata_stream->list,
&session->metadata_cache->metadata_stream);
return ret;
fd_error:
module_put(metadata_stream->transport->owner);
notransport:
kfree(metadata_stream);
nomem:
channel->ops->buffer_read_close(buf);
return ret;
}
static
int lttng_abi_create_event(struct file *channel_file,
struct lttng_kernel_event *event_param)
{
struct lttng_channel *channel = channel_file->private_data;
int event_fd, ret;
struct file *event_file;
void *priv;
event_param->name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
switch (event_param->instrumentation) {
case LTTNG_KERNEL_KRETPROBE:
event_param->u.kretprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
break;
case LTTNG_KERNEL_KPROBE:
event_param->u.kprobe.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
break;
case LTTNG_KERNEL_FUNCTION:
event_param->u.ftrace.symbol_name[LTTNG_KERNEL_SYM_NAME_LEN - 1] = '\0';
break;
default:
break;
}
event_fd = lttng_get_unused_fd();
if (event_fd < 0) {
ret = event_fd;
goto fd_error;
}
event_file = anon_inode_getfile("[lttng_event]",
<tng_event_fops,
NULL, O_RDWR);
if (IS_ERR(event_file)) {
ret = PTR_ERR(event_file);
goto file_error;
}
if (event_param->instrumentation == LTTNG_KERNEL_TRACEPOINT
|| event_param->instrumentation == LTTNG_KERNEL_SYSCALL) {
struct lttng_enabler *enabler;
if (event_param->name[strlen(event_param->name) - 1] == '*') {
enabler = lttng_enabler_create(LTTNG_ENABLER_WILDCARD,
event_param, channel);
} else {
enabler = lttng_enabler_create(LTTNG_ENABLER_NAME,
event_param, channel);
}
priv = enabler;