1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <asm/ds.h>
25
26#include <linux/errno.h>
27#include <linux/string.h>
28#include <linux/slab.h>
29#include <linux/sched.h>
30#include <linux/mm.h>
31
32
33
34
35
36struct ds_configuration {
37
38 unsigned char sizeof_ds;
39
40
41 unsigned char sizeof_field;
42
43 unsigned char sizeof_rec[2];
44};
45static struct ds_configuration ds_cfg;
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
84enum ds_field {
85 ds_buffer_base = 0,
86 ds_index,
87 ds_absolute_maximum,
88 ds_interrupt_threshold,
89};
90
91enum ds_qualifier {
92 ds_bts = 0,
93 ds_pebs
94};
95
96static inline unsigned long ds_get(const unsigned char *base,
97 enum ds_qualifier qual, enum ds_field field)
98{
99 base += (ds_cfg.sizeof_field * (field + (4 * qual)));
100 return *(unsigned long *)base;
101}
102
103static inline void ds_set(unsigned char *base, enum ds_qualifier qual,
104 enum ds_field field, unsigned long value)
105{
106 base += (ds_cfg.sizeof_field * (field + (4 * qual)));
107 (*(unsigned long *)base) = value;
108}
109
110
111
112
113
114
115
116
117
118
119static spinlock_t ds_lock = __SPIN_LOCK_UNLOCKED(ds_lock);
120
121
122
123
124
125
126
127static inline int ds_validate_access(struct ds_context *context,
128 enum ds_qualifier qual)
129{
130 if (!context)
131 return -EPERM;
132
133 if (context->owner[qual] == current)
134 return 0;
135
136 return -EPERM;
137}
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159static long tracers;
160
161static inline void get_tracer(struct task_struct *task)
162{
163 tracers += (task ? 1 : -1);
164}
165
166static inline void put_tracer(struct task_struct *task)
167{
168 tracers -= (task ? 1 : -1);
169}
170
171static inline int check_tracer(struct task_struct *task)
172{
173 return (task ? (tracers >= 0) : (tracers <= 0));
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
199static DEFINE_PER_CPU(struct ds_context *, system_context);
200
201#define this_system_context per_cpu(system_context, smp_processor_id())
202
203
204
205
206
207
208
209static inline struct ds_context *ds_get_context(struct task_struct *task)
210{
211 struct ds_context *context;
212 unsigned long irq;
213
214 spin_lock_irqsave(&ds_lock, irq);
215
216 context = (task ? task->thread.ds_ctx : this_system_context);
217 if (context)
218 context->count++;
219
220 spin_unlock_irqrestore(&ds_lock, irq);
221
222 return context;
223}
224
225
226
227
228
229static inline struct ds_context *ds_alloc_context(struct task_struct *task)
230{
231 struct ds_context **p_context =
232 (task ? &task->thread.ds_ctx : &this_system_context);
233 struct ds_context *context = *p_context;
234 unsigned long irq;
235
236 if (!context) {
237 context = kzalloc(sizeof(*context), GFP_KERNEL);
238 if (!context)
239 return NULL;
240
241 context->ds = kzalloc(ds_cfg.sizeof_ds, GFP_KERNEL);
242 if (!context->ds) {
243 kfree(context);
244 return NULL;
245 }
246
247 spin_lock_irqsave(&ds_lock, irq);
248
249 if (*p_context) {
250 kfree(context->ds);
251 kfree(context);
252
253 context = *p_context;
254 } else {
255 *p_context = context;
256
257 context->this = p_context;
258 context->task = task;
259
260 if (task)
261 set_tsk_thread_flag(task, TIF_DS_AREA_MSR);
262
263 if (!task || (task == current))
264 wrmsrl(MSR_IA32_DS_AREA,
265 (unsigned long)context->ds);
266 }
267 spin_unlock_irqrestore(&ds_lock, irq);
268 }
269
270 context->count++;
271
272 return context;
273}
274
275
276
277
278
279static inline void ds_put_context(struct ds_context *context)
280{
281 unsigned long irq;
282
283 if (!context)
284 return;
285
286 spin_lock_irqsave(&ds_lock, irq);
287
288 if (--context->count)
289 goto out;
290
291 *(context->this) = NULL;
292
293 if (context->task)
294 clear_tsk_thread_flag(context->task, TIF_DS_AREA_MSR);
295
296 if (!context->task || (context->task == current))
297 wrmsrl(MSR_IA32_DS_AREA, 0);
298
299 put_tracer(context->task);
300
301
302
303 kfree(context->buffer[ds_bts]);
304 kfree(context->buffer[ds_pebs]);
305 kfree(context->ds);
306 kfree(context);
307 out:
308 spin_unlock_irqrestore(&ds_lock, irq);
309}
310
311
312
313
314
315
316
317
318
319
320static void ds_overflow(struct task_struct *task, struct ds_context *context,
321 enum ds_qualifier qual)
322{
323 if (!context)
324 return;
325
326 if (context->callback[qual])
327 (*context->callback[qual])(task);
328
329
330}
331
332
333
334
335
336
337
338
339
340
341
342
343static inline void *ds_allocate_buffer(size_t size, unsigned int *pages)
344{
345 unsigned long rlim, vm, pgsz;
346 void *buffer;
347
348 pgsz = PAGE_ALIGN(size) >> PAGE_SHIFT;
349
350 rlim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT;
351 vm = current->mm->total_vm + pgsz;
352 if (rlim < vm)
353 return NULL;
354
355 rlim = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT;
356 vm = current->mm->locked_vm + pgsz;
357 if (rlim < vm)
358 return NULL;
359
360 buffer = kzalloc(size, GFP_KERNEL);
361 if (!buffer)
362 return NULL;
363
364 current->mm->total_vm += pgsz;
365 current->mm->locked_vm += pgsz;
366
367 if (pages)
368 *pages = pgsz;
369
370 return buffer;
371}
372
373static int ds_request(struct task_struct *task, void *base, size_t size,
374 ds_ovfl_callback_t ovfl, enum ds_qualifier qual)
375{
376 struct ds_context *context;
377 unsigned long buffer, adj;
378 const unsigned long alignment = (1 << 3);
379 unsigned long irq;
380 int error = 0;
381
382 if (!ds_cfg.sizeof_ds)
383 return -EOPNOTSUPP;
384
385
386 if (size < (alignment + ds_cfg.sizeof_rec[qual]))
387 return -EINVAL;
388
389
390 if (ovfl)
391 return -EOPNOTSUPP;
392
393
394 context = ds_alloc_context(task);
395 if (!context)
396 return -ENOMEM;
397
398 spin_lock_irqsave(&ds_lock, irq);
399
400 error = -EPERM;
401 if (!check_tracer(task))
402 goto out_unlock;
403
404 get_tracer(task);
405
406 error = -EALREADY;
407 if (context->owner[qual] == current)
408 goto out_put_tracer;
409 error = -EPERM;
410 if (context->owner[qual] != NULL)
411 goto out_put_tracer;
412 context->owner[qual] = current;
413
414 spin_unlock_irqrestore(&ds_lock, irq);
415
416
417 error = -ENOMEM;
418 if (!base) {
419 base = ds_allocate_buffer(size, &context->pages[qual]);
420 if (!base)
421 goto out_release;
422
423 context->buffer[qual] = base;
424 }
425 error = 0;
426
427 context->callback[qual] = ovfl;
428
429
430
431
432
433
434
435
436
437 buffer = (unsigned long)base;
438
439 adj = ALIGN(buffer, alignment) - buffer;
440 buffer += adj;
441 size -= adj;
442
443 size /= ds_cfg.sizeof_rec[qual];
444 size *= ds_cfg.sizeof_rec[qual];
445
446 ds_set(context->ds, qual, ds_buffer_base, buffer);
447 ds_set(context->ds, qual, ds_index, buffer);
448 ds_set(context->ds, qual, ds_absolute_maximum, buffer + size);
449
450 if (ovfl) {
451
452 } else
453 ds_set(context->ds, qual,
454 ds_interrupt_threshold, buffer + size + 1);
455
456
457 return error;
458
459 out_release:
460 context->owner[qual] = NULL;
461 ds_put_context(context);
462 put_tracer(task);
463 return error;
464
465 out_put_tracer:
466 spin_unlock_irqrestore(&ds_lock, irq);
467 ds_put_context(context);
468 put_tracer(task);
469 return error;
470
471 out_unlock:
472 spin_unlock_irqrestore(&ds_lock, irq);
473 ds_put_context(context);
474 return error;
475}
476
477int ds_request_bts(struct task_struct *task, void *base, size_t size,
478 ds_ovfl_callback_t ovfl)
479{
480 return ds_request(task, base, size, ovfl, ds_bts);
481}
482
483int ds_request_pebs(struct task_struct *task, void *base, size_t size,
484 ds_ovfl_callback_t ovfl)
485{
486 return ds_request(task, base, size, ovfl, ds_pebs);
487}
488
489static int ds_release(struct task_struct *task, enum ds_qualifier qual)
490{
491 struct ds_context *context;
492 int error;
493
494 context = ds_get_context(task);
495 error = ds_validate_access(context, qual);
496 if (error < 0)
497 goto out;
498
499 kfree(context->buffer[qual]);
500 context->buffer[qual] = NULL;
501
502 current->mm->total_vm -= context->pages[qual];
503 current->mm->locked_vm -= context->pages[qual];
504 context->pages[qual] = 0;
505 context->owner[qual] = NULL;
506
507
508
509
510
511
512 ds_put_context(context);
513 out:
514 ds_put_context(context);
515 return error;
516}
517
518int ds_release_bts(struct task_struct *task)
519{
520 return ds_release(task, ds_bts);
521}
522
523int ds_release_pebs(struct task_struct *task)
524{
525 return ds_release(task, ds_pebs);
526}
527
528static int ds_get_index(struct task_struct *task, size_t *pos,
529 enum ds_qualifier qual)
530{
531 struct ds_context *context;
532 unsigned long base, index;
533 int error;
534
535 context = ds_get_context(task);
536 error = ds_validate_access(context, qual);
537 if (error < 0)
538 goto out;
539
540 base = ds_get(context->ds, qual, ds_buffer_base);
541 index = ds_get(context->ds, qual, ds_index);
542
543 error = ((index - base) / ds_cfg.sizeof_rec[qual]);
544 if (pos)
545 *pos = error;
546 out:
547 ds_put_context(context);
548 return error;
549}
550
551int ds_get_bts_index(struct task_struct *task, size_t *pos)
552{
553 return ds_get_index(task, pos, ds_bts);
554}
555
556int ds_get_pebs_index(struct task_struct *task, size_t *pos)
557{
558 return ds_get_index(task, pos, ds_pebs);
559}
560
561static int ds_get_end(struct task_struct *task, size_t *pos,
562 enum ds_qualifier qual)
563{
564 struct ds_context *context;
565 unsigned long base, end;
566 int error;
567
568 context = ds_get_context(task);
569 error = ds_validate_access(context, qual);
570 if (error < 0)
571 goto out;
572
573 base = ds_get(context->ds, qual, ds_buffer_base);
574 end = ds_get(context->ds, qual, ds_absolute_maximum);
575
576 error = ((end - base) / ds_cfg.sizeof_rec[qual]);
577 if (pos)
578 *pos = error;
579 out:
580 ds_put_context(context);
581 return error;
582}
583
584int ds_get_bts_end(struct task_struct *task, size_t *pos)
585{
586 return ds_get_end(task, pos, ds_bts);
587}
588
589int ds_get_pebs_end(struct task_struct *task, size_t *pos)
590{
591 return ds_get_end(task, pos, ds_pebs);
592}
593
594static int ds_access(struct task_struct *task, size_t index,
595 const void **record, enum ds_qualifier qual)
596{
597 struct ds_context *context;
598 unsigned long base, idx;
599 int error;
600
601 if (!record)
602 return -EINVAL;
603
604 context = ds_get_context(task);
605 error = ds_validate_access(context, qual);
606 if (error < 0)
607 goto out;
608
609 base = ds_get(context->ds, qual, ds_buffer_base);
610 idx = base + (index * ds_cfg.sizeof_rec[qual]);
611
612 error = -EINVAL;
613 if (idx > ds_get(context->ds, qual, ds_absolute_maximum))
614 goto out;
615
616 *record = (const void *)idx;
617 error = ds_cfg.sizeof_rec[qual];
618 out:
619 ds_put_context(context);
620 return error;
621}
622
623int ds_access_bts(struct task_struct *task, size_t index, const void **record)
624{
625 return ds_access(task, index, record, ds_bts);
626}
627
628int ds_access_pebs(struct task_struct *task, size_t index, const void **record)
629{
630 return ds_access(task, index, record, ds_pebs);
631}
632
633static int ds_write(struct task_struct *task, const void *record, size_t size,
634 enum ds_qualifier qual, int force)
635{
636 struct ds_context *context;
637 int error;
638
639 if (!record)
640 return -EINVAL;
641
642 error = -EPERM;
643 context = ds_get_context(task);
644 if (!context)
645 goto out;
646
647 if (!force) {
648 error = ds_validate_access(context, qual);
649 if (error < 0)
650 goto out;
651 }
652
653 error = 0;
654 while (size) {
655 unsigned long base, index, end, write_end, int_th;
656 unsigned long write_size, adj_write_size;
657
658
659
660
661
662
663
664
665
666
667
668 base = ds_get(context->ds, qual, ds_buffer_base);
669 index = ds_get(context->ds, qual, ds_index);
670 end = ds_get(context->ds, qual, ds_absolute_maximum);
671 int_th = ds_get(context->ds, qual, ds_interrupt_threshold);
672
673 write_end = min(end, int_th);
674
675
676
677 if (write_end <= index)
678 write_end = end;
679
680 if (write_end <= index)
681 goto out;
682
683 write_size = min((unsigned long) size, write_end - index);
684 memcpy((void *)index, record, write_size);
685
686 record = (const char *)record + write_size;
687 size -= write_size;
688 error += write_size;
689
690 adj_write_size = write_size / ds_cfg.sizeof_rec[qual];
691 adj_write_size *= ds_cfg.sizeof_rec[qual];
692
693
694 memset((char *)index + write_size, 0,
695 adj_write_size - write_size);
696 index += adj_write_size;
697
698 if (index >= end)
699 index = base;
700 ds_set(context->ds, qual, ds_index, index);
701
702 if (index >= int_th)
703 ds_overflow(task, context, qual);
704 }
705
706 out:
707 ds_put_context(context);
708 return error;
709}
710
711int ds_write_bts(struct task_struct *task, const void *record, size_t size)
712{
713 return ds_write(task, record, size, ds_bts, 0);
714}
715
716int ds_write_pebs(struct task_struct *task, const void *record, size_t size)
717{
718 return ds_write(task, record, size, ds_pebs, 0);
719}
720
721int ds_unchecked_write_bts(struct task_struct *task,
722 const void *record, size_t size)
723{
724 return ds_write(task, record, size, ds_bts, 1);
725}
726
727int ds_unchecked_write_pebs(struct task_struct *task,
728 const void *record, size_t size)
729{
730 return ds_write(task, record, size, ds_pebs, 1);
731}
732
733static int ds_reset_or_clear(struct task_struct *task,
734 enum ds_qualifier qual, int clear)
735{
736 struct ds_context *context;
737 unsigned long base, end;
738 int error;
739
740 context = ds_get_context(task);
741 error = ds_validate_access(context, qual);
742 if (error < 0)
743 goto out;
744
745 base = ds_get(context->ds, qual, ds_buffer_base);
746 end = ds_get(context->ds, qual, ds_absolute_maximum);
747
748 if (clear)
749 memset((void *)base, 0, end - base);
750
751 ds_set(context->ds, qual, ds_index, base);
752
753 error = 0;
754 out:
755 ds_put_context(context);
756 return error;
757}
758
759int ds_reset_bts(struct task_struct *task)
760{
761 return ds_reset_or_clear(task, ds_bts, 0);
762}
763
764int ds_reset_pebs(struct task_struct *task)
765{
766 return ds_reset_or_clear(task, ds_pebs, 0);
767}
768
769int ds_clear_bts(struct task_struct *task)
770{
771 return ds_reset_or_clear(task, ds_bts, 1);
772}
773
774int ds_clear_pebs(struct task_struct *task)
775{
776 return ds_reset_or_clear(task, ds_pebs, 1);
777}
778
779int ds_get_pebs_reset(struct task_struct *task, u64 *value)
780{
781 struct ds_context *context;
782 int error;
783
784 if (!value)
785 return -EINVAL;
786
787 context = ds_get_context(task);
788 error = ds_validate_access(context, ds_pebs);
789 if (error < 0)
790 goto out;
791
792 *value = *(u64 *)(context->ds + (ds_cfg.sizeof_field * 8));
793
794 error = 0;
795 out:
796 ds_put_context(context);
797 return error;
798}
799
800int ds_set_pebs_reset(struct task_struct *task, u64 value)
801{
802 struct ds_context *context;
803 int error;
804
805 context = ds_get_context(task);
806 error = ds_validate_access(context, ds_pebs);
807 if (error < 0)
808 goto out;
809
810 *(u64 *)(context->ds + (ds_cfg.sizeof_field * 8)) = value;
811
812 error = 0;
813 out:
814 ds_put_context(context);
815 return error;
816}
817
818static const struct ds_configuration ds_cfg_var = {
819 .sizeof_ds = sizeof(long) * 12,
820 .sizeof_field = sizeof(long),
821 .sizeof_rec[ds_bts] = sizeof(long) * 3,
822#ifdef __i386__
823 .sizeof_rec[ds_pebs] = sizeof(long) * 10
824#else
825 .sizeof_rec[ds_pebs] = sizeof(long) * 18
826#endif
827};
828static const struct ds_configuration ds_cfg_64 = {
829 .sizeof_ds = 8 * 12,
830 .sizeof_field = 8,
831 .sizeof_rec[ds_bts] = 8 * 3,
832#ifdef __i386__
833 .sizeof_rec[ds_pebs] = 8 * 10
834#else
835 .sizeof_rec[ds_pebs] = 8 * 18
836#endif
837};
838
839static inline void
840ds_configure(const struct ds_configuration *cfg)
841{
842 ds_cfg = *cfg;
843}
844
845void __cpuinit ds_init_intel(struct cpuinfo_x86 *c)
846{
847 switch (c->x86) {
848 case 0x6:
849 switch (c->x86_model) {
850 case 0xD:
851 case 0xE:
852 ds_configure(&ds_cfg_var);
853 break;
854 case 0xF:
855 case 0x1C:
856 ds_configure(&ds_cfg_64);
857 break;
858 default:
859
860 break;
861 }
862 break;
863 case 0xF:
864 switch (c->x86_model) {
865 case 0x0:
866 case 0x1:
867 case 0x2:
868 ds_configure(&ds_cfg_var);
869 break;
870 default:
871
872 break;
873 }
874 break;
875 default:
876
877 break;
878 }
879}
880
881void ds_free(struct ds_context *context)
882{
883
884
885
886 unsigned long leftovers = context->count;
887 while (leftovers--)
888 ds_put_context(context);
889}
890