Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 *
5 * Author: Joerg Roedel <joerg.roedel@amd.com>
6 */
7
8#define pr_fmt(fmt) "DMA-API: " fmt
9
10#include <linux/sched/task_stack.h>
11#include <linux/scatterlist.h>
12#include <linux/dma-map-ops.h>
13#include <linux/sched/task.h>
14#include <linux/stacktrace.h>
15#include <linux/spinlock.h>
16#include <linux/vmalloc.h>
17#include <linux/debugfs.h>
18#include <linux/uaccess.h>
19#include <linux/export.h>
20#include <linux/device.h>
21#include <linux/types.h>
22#include <linux/sched.h>
23#include <linux/ctype.h>
24#include <linux/list.h>
25#include <linux/slab.h>
26#include <asm/sections.h>
27#include "debug.h"
28
29#define HASH_SIZE 16384ULL
30#define HASH_FN_SHIFT 13
31#define HASH_FN_MASK (HASH_SIZE - 1)
32
33#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
34/* If the pool runs out, add this many new entries at once */
35#define DMA_DEBUG_DYNAMIC_ENTRIES (PAGE_SIZE / sizeof(struct dma_debug_entry))
36
37enum {
38 dma_debug_single,
39 dma_debug_sg,
40 dma_debug_coherent,
41 dma_debug_resource,
42};
43
44enum map_err_types {
45 MAP_ERR_CHECK_NOT_APPLICABLE,
46 MAP_ERR_NOT_CHECKED,
47 MAP_ERR_CHECKED,
48};
49
50#define DMA_DEBUG_STACKTRACE_ENTRIES 5
51
52/**
53 * struct dma_debug_entry - track a dma_map* or dma_alloc_coherent mapping
54 * @list: node on pre-allocated free_entries list
55 * @dev: 'dev' argument to dma_map_{page|single|sg} or dma_alloc_coherent
56 * @dev_addr: dma address
57 * @size: length of the mapping
58 * @type: single, page, sg, coherent
59 * @direction: enum dma_data_direction
60 * @sg_call_ents: 'nents' from dma_map_sg
61 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
62 * @paddr: physical start address of the mapping
63 * @map_err_type: track whether dma_mapping_error() was checked
64 * @stack_len: number of backtrace entries in @stack_entries
65 * @stack_entries: stack of backtrace history
66 */
67struct dma_debug_entry {
68 struct list_head list;
69 struct device *dev;
70 u64 dev_addr;
71 u64 size;
72 int type;
73 int direction;
74 int sg_call_ents;
75 int sg_mapped_ents;
76 phys_addr_t paddr;
77 enum map_err_types map_err_type;
78#ifdef CONFIG_STACKTRACE
79 unsigned int stack_len;
80 unsigned long stack_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
81#endif
82} ____cacheline_aligned_in_smp;
83
84typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
85
86struct hash_bucket {
87 struct list_head list;
88 spinlock_t lock;
89};
90
91/* Hash list to save the allocated dma addresses */
92static struct hash_bucket dma_entry_hash[HASH_SIZE];
93/* List of pre-allocated dma_debug_entry's */
94static LIST_HEAD(free_entries);
95/* Lock for the list above */
96static DEFINE_SPINLOCK(free_entries_lock);
97
98/* Global disable flag - will be set in case of an error */
99static bool global_disable __read_mostly;
100
101/* Early initialization disable flag, set at the end of dma_debug_init */
102static bool dma_debug_initialized __read_mostly;
103
104static inline bool dma_debug_disabled(void)
105{
106 return global_disable || !dma_debug_initialized;
107}
108
109/* Global error count */
110static u32 error_count;
111
112/* Global error show enable*/
113static u32 show_all_errors __read_mostly;
114/* Number of errors to show */
115static u32 show_num_errors = 1;
116
117static u32 num_free_entries;
118static u32 min_free_entries;
119static u32 nr_total_entries;
120
121/* number of preallocated entries requested by kernel cmdline */
122static u32 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
123
124/* per-driver filter related state */
125
126#define NAME_MAX_LEN 64
127
128static char current_driver_name[NAME_MAX_LEN] __read_mostly;
129static struct device_driver *current_driver __read_mostly;
130
131static DEFINE_RWLOCK(driver_name_lock);
132
133static const char *const maperr2str[] = {
134 [MAP_ERR_CHECK_NOT_APPLICABLE] = "dma map error check not applicable",
135 [MAP_ERR_NOT_CHECKED] = "dma map error not checked",
136 [MAP_ERR_CHECKED] = "dma map error checked",
137};
138
139static const char *type2name[] = {
140 [dma_debug_single] = "single",
141 [dma_debug_sg] = "scatter-gather",
142 [dma_debug_coherent] = "coherent",
143 [dma_debug_resource] = "resource",
144};
145
146static const char *dir2name[] = {
147 [DMA_BIDIRECTIONAL] = "DMA_BIDIRECTIONAL",
148 [DMA_TO_DEVICE] = "DMA_TO_DEVICE",
149 [DMA_FROM_DEVICE] = "DMA_FROM_DEVICE",
150 [DMA_NONE] = "DMA_NONE",
151};
152
153/*
154 * The access to some variables in this macro is racy. We can't use atomic_t
155 * here because all these variables are exported to debugfs. Some of them even
156 * writeable. This is also the reason why a lock won't help much. But anyway,
157 * the races are no big deal. Here is why:
158 *
159 * error_count: the addition is racy, but the worst thing that can happen is
160 * that we don't count some errors
161 * show_num_errors: the subtraction is racy. Also no big deal because in
162 * worst case this will result in one warning more in the
163 * system log than the user configured. This variable is
164 * writeable via debugfs.
165 */
166static inline void dump_entry_trace(struct dma_debug_entry *entry)
167{
168#ifdef CONFIG_STACKTRACE
169 if (entry) {
170 pr_warn("Mapped at:\n");
171 stack_trace_print(entry->stack_entries, entry->stack_len, 0);
172 }
173#endif
174}
175
176static bool driver_filter(struct device *dev)
177{
178 struct device_driver *drv;
179 unsigned long flags;
180 bool ret;
181
182 /* driver filter off */
183 if (likely(!current_driver_name[0]))
184 return true;
185
186 /* driver filter on and initialized */
187 if (current_driver && dev && dev->driver == current_driver)
188 return true;
189
190 /* driver filter on, but we can't filter on a NULL device... */
191 if (!dev)
192 return false;
193
194 if (current_driver || !current_driver_name[0])
195 return false;
196
197 /* driver filter on but not yet initialized */
198 drv = dev->driver;
199 if (!drv)
200 return false;
201
202 /* lock to protect against change of current_driver_name */
203 read_lock_irqsave(&driver_name_lock, flags);
204
205 ret = false;
206 if (drv->name &&
207 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
208 current_driver = drv;
209 ret = true;
210 }
211
212 read_unlock_irqrestore(&driver_name_lock, flags);
213
214 return ret;
215}
216
217#define err_printk(dev, entry, format, arg...) do { \
218 error_count += 1; \
219 if (driver_filter(dev) && \
220 (show_all_errors || show_num_errors > 0)) { \
221 WARN(1, pr_fmt("%s %s: ") format, \
222 dev ? dev_driver_string(dev) : "NULL", \
223 dev ? dev_name(dev) : "NULL", ## arg); \
224 dump_entry_trace(entry); \
225 } \
226 if (!show_all_errors && show_num_errors > 0) \
227 show_num_errors -= 1; \
228 } while (0);
229
230/*
231 * Hash related functions
232 *
233 * Every DMA-API request is saved into a struct dma_debug_entry. To
234 * have quick access to these structs they are stored into a hash.
235 */
236static int hash_fn(struct dma_debug_entry *entry)
237{
238 /*
239 * Hash function is based on the dma address.
240 * We use bits 20-27 here as the index into the hash
241 */
242 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
243}
244
245/*
246 * Request exclusive access to a hash bucket for a given dma_debug_entry.
247 */
248static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
249 unsigned long *flags)
250 __acquires(&dma_entry_hash[idx].lock)
251{
252 int idx = hash_fn(entry);
253 unsigned long __flags;
254
255 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
256 *flags = __flags;
257 return &dma_entry_hash[idx];
258}
259
260/*
261 * Give up exclusive access to the hash bucket
262 */
263static void put_hash_bucket(struct hash_bucket *bucket,
264 unsigned long flags)
265 __releases(&bucket->lock)
266{
267 spin_unlock_irqrestore(&bucket->lock, flags);
268}
269
270static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
271{
272 return ((a->dev_addr == b->dev_addr) &&
273 (a->dev == b->dev)) ? true : false;
274}
275
276static bool containing_match(struct dma_debug_entry *a,
277 struct dma_debug_entry *b)
278{
279 if (a->dev != b->dev)
280 return false;
281
282 if ((b->dev_addr <= a->dev_addr) &&
283 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
284 return true;
285
286 return false;
287}
288
289/*
290 * Search a given entry in the hash bucket list
291 */
292static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
293 struct dma_debug_entry *ref,
294 match_fn match)
295{
296 struct dma_debug_entry *entry, *ret = NULL;
297 int matches = 0, match_lvl, last_lvl = -1;
298
299 list_for_each_entry(entry, &bucket->list, list) {
300 if (!match(ref, entry))
301 continue;
302
303 /*
304 * Some drivers map the same physical address multiple
305 * times. Without a hardware IOMMU this results in the
306 * same device addresses being put into the dma-debug
307 * hash multiple times too. This can result in false
308 * positives being reported. Therefore we implement a
309 * best-fit algorithm here which returns the entry from
310 * the hash which fits best to the reference value
311 * instead of the first-fit.
312 */
313 matches += 1;
314 match_lvl = 0;
315 entry->size == ref->size ? ++match_lvl : 0;
316 entry->type == ref->type ? ++match_lvl : 0;
317 entry->direction == ref->direction ? ++match_lvl : 0;
318 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
319
320 if (match_lvl == 4) {
321 /* perfect-fit - return the result */
322 return entry;
323 } else if (match_lvl > last_lvl) {
324 /*
325 * We found an entry that fits better then the
326 * previous one or it is the 1st match.
327 */
328 last_lvl = match_lvl;
329 ret = entry;
330 }
331 }
332
333 /*
334 * If we have multiple matches but no perfect-fit, just return
335 * NULL.
336 */
337 ret = (matches == 1) ? ret : NULL;
338
339 return ret;
340}
341
342static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
343 struct dma_debug_entry *ref)
344{
345 return __hash_bucket_find(bucket, ref, exact_match);
346}
347
348static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
349 struct dma_debug_entry *ref,
350 unsigned long *flags)
351{
352
353 struct dma_debug_entry *entry, index = *ref;
354 int limit = min(HASH_SIZE, (index.dev_addr >> HASH_FN_SHIFT) + 1);
355
356 for (int i = 0; i < limit; i++) {
357 entry = __hash_bucket_find(*bucket, ref, containing_match);
358
359 if (entry)
360 return entry;
361
362 /*
363 * Nothing found, go back a hash bucket
364 */
365 put_hash_bucket(*bucket, *flags);
366 index.dev_addr -= (1 << HASH_FN_SHIFT);
367 *bucket = get_hash_bucket(&index, flags);
368 }
369
370 return NULL;
371}
372
373/*
374 * Add an entry to a hash bucket
375 */
376static void hash_bucket_add(struct hash_bucket *bucket,
377 struct dma_debug_entry *entry)
378{
379 list_add_tail(&entry->list, &bucket->list);
380}
381
382/*
383 * Remove entry from a hash bucket list
384 */
385static void hash_bucket_del(struct dma_debug_entry *entry)
386{
387 list_del(&entry->list);
388}
389
390/*
391 * For each mapping (initial cacheline in the case of
392 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
393 * scatterlist, or the cacheline specified in dma_map_single) insert
394 * into this tree using the cacheline as the key. At
395 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
396 * the entry already exists at insertion time add a tag as a reference
397 * count for the overlapping mappings. For now, the overlap tracking
398 * just ensures that 'unmaps' balance 'maps' before marking the
399 * cacheline idle, but we should also be flagging overlaps as an API
400 * violation.
401 *
402 * Memory usage is mostly constrained by the maximum number of available
403 * dma-debug entries in that we need a free dma_debug_entry before
404 * inserting into the tree. In the case of dma_map_page and
405 * dma_alloc_coherent there is only one dma_debug_entry and one
406 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
407 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
408 * entries into the tree.
409 *
410 * Use __GFP_NOWARN because the printk from an OOM, to netconsole, could end
411 * up right back in the DMA debugging code, leading to a deadlock.
412 */
413static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC | __GFP_NOWARN);
414static DEFINE_SPINLOCK(radix_lock);
415#define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
416#define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
417#define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
418
419static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
420{
421 return ((entry->paddr >> PAGE_SHIFT) << CACHELINE_PER_PAGE_SHIFT) +
422 (offset_in_page(entry->paddr) >> L1_CACHE_SHIFT);
423}
424
425static int active_cacheline_read_overlap(phys_addr_t cln)
426{
427 int overlap = 0, i;
428
429 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
430 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
431 overlap |= 1 << i;
432 return overlap;
433}
434
435static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
436{
437 int i;
438
439 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
440 return overlap;
441
442 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
443 if (overlap & 1 << i)
444 radix_tree_tag_set(&dma_active_cacheline, cln, i);
445 else
446 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
447
448 return overlap;
449}
450
451static void active_cacheline_inc_overlap(phys_addr_t cln)
452{
453 int overlap = active_cacheline_read_overlap(cln);
454
455 overlap = active_cacheline_set_overlap(cln, ++overlap);
456
457 /* If we overflowed the overlap counter then we're potentially
458 * leaking dma-mappings.
459 */
460 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
461 pr_fmt("exceeded %d overlapping mappings of cacheline %pa\n"),
462 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
463}
464
465static int active_cacheline_dec_overlap(phys_addr_t cln)
466{
467 int overlap = active_cacheline_read_overlap(cln);
468
469 return active_cacheline_set_overlap(cln, --overlap);
470}
471
472static int active_cacheline_insert(struct dma_debug_entry *entry)
473{
474 phys_addr_t cln = to_cacheline_number(entry);
475 unsigned long flags;
476 int rc;
477
478 /* If the device is not writing memory then we don't have any
479 * concerns about the cpu consuming stale data. This mitigates
480 * legitimate usages of overlapping mappings.
481 */
482 if (entry->direction == DMA_TO_DEVICE)
483 return 0;
484
485 spin_lock_irqsave(&radix_lock, flags);
486 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
487 if (rc == -EEXIST)
488 active_cacheline_inc_overlap(cln);
489 spin_unlock_irqrestore(&radix_lock, flags);
490
491 return rc;
492}
493
494static void active_cacheline_remove(struct dma_debug_entry *entry)
495{
496 phys_addr_t cln = to_cacheline_number(entry);
497 unsigned long flags;
498
499 /* ...mirror the insert case */
500 if (entry->direction == DMA_TO_DEVICE)
501 return;
502
503 spin_lock_irqsave(&radix_lock, flags);
504 /* since we are counting overlaps the final put of the
505 * cacheline will occur when the overlap count is 0.
506 * active_cacheline_dec_overlap() returns -1 in that case
507 */
508 if (active_cacheline_dec_overlap(cln) < 0)
509 radix_tree_delete(&dma_active_cacheline, cln);
510 spin_unlock_irqrestore(&radix_lock, flags);
511}
512
513/*
514 * Dump mappings entries on kernel space for debugging purposes
515 */
516void debug_dma_dump_mappings(struct device *dev)
517{
518 int idx;
519 phys_addr_t cln;
520
521 for (idx = 0; idx < HASH_SIZE; idx++) {
522 struct hash_bucket *bucket = &dma_entry_hash[idx];
523 struct dma_debug_entry *entry;
524 unsigned long flags;
525
526 spin_lock_irqsave(&bucket->lock, flags);
527 list_for_each_entry(entry, &bucket->list, list) {
528 if (!dev || dev == entry->dev) {
529 cln = to_cacheline_number(entry);
530 dev_info(entry->dev,
531 "%s idx %d P=%pa D=%llx L=%llx cln=%pa %s %s\n",
532 type2name[entry->type], idx,
533 &entry->paddr, entry->dev_addr,
534 entry->size, &cln,
535 dir2name[entry->direction],
536 maperr2str[entry->map_err_type]);
537 }
538 }
539 spin_unlock_irqrestore(&bucket->lock, flags);
540
541 cond_resched();
542 }
543}
544
545/*
546 * Dump mappings entries on user space via debugfs
547 */
548static int dump_show(struct seq_file *seq, void *v)
549{
550 int idx;
551 phys_addr_t cln;
552
553 for (idx = 0; idx < HASH_SIZE; idx++) {
554 struct hash_bucket *bucket = &dma_entry_hash[idx];
555 struct dma_debug_entry *entry;
556 unsigned long flags;
557
558 spin_lock_irqsave(&bucket->lock, flags);
559 list_for_each_entry(entry, &bucket->list, list) {
560 cln = to_cacheline_number(entry);
561 seq_printf(seq,
562 "%s %s %s idx %d P=%pa D=%llx L=%llx cln=%pa %s %s\n",
563 dev_driver_string(entry->dev),
564 dev_name(entry->dev),
565 type2name[entry->type], idx,
566 &entry->paddr, entry->dev_addr,
567 entry->size, &cln,
568 dir2name[entry->direction],
569 maperr2str[entry->map_err_type]);
570 }
571 spin_unlock_irqrestore(&bucket->lock, flags);
572 }
573 return 0;
574}
575DEFINE_SHOW_ATTRIBUTE(dump);
576
577/*
578 * Wrapper function for adding an entry to the hash.
579 * This function takes care of locking itself.
580 */
581static void add_dma_entry(struct dma_debug_entry *entry, unsigned long attrs)
582{
583 struct hash_bucket *bucket;
584 unsigned long flags;
585 int rc;
586
587 bucket = get_hash_bucket(entry, &flags);
588 hash_bucket_add(bucket, entry);
589 put_hash_bucket(bucket, flags);
590
591 rc = active_cacheline_insert(entry);
592 if (rc == -ENOMEM) {
593 pr_err_once("cacheline tracking ENOMEM, dma-debug disabled\n");
594 global_disable = true;
595 } else if (rc == -EEXIST && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
596 err_printk(entry->dev, entry,
597 "cacheline tracking EEXIST, overlapping mappings aren't supported\n");
598 }
599}
600
601static int dma_debug_create_entries(gfp_t gfp)
602{
603 struct dma_debug_entry *entry;
604 int i;
605
606 entry = (void *)get_zeroed_page(gfp);
607 if (!entry)
608 return -ENOMEM;
609
610 for (i = 0; i < DMA_DEBUG_DYNAMIC_ENTRIES; i++)
611 list_add_tail(&entry[i].list, &free_entries);
612
613 num_free_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
614 nr_total_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
615
616 return 0;
617}
618
619static struct dma_debug_entry *__dma_entry_alloc(void)
620{
621 struct dma_debug_entry *entry;
622
623 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
624 list_del(&entry->list);
625 memset(entry, 0, sizeof(*entry));
626
627 num_free_entries -= 1;
628 if (num_free_entries < min_free_entries)
629 min_free_entries = num_free_entries;
630
631 return entry;
632}
633
634/*
635 * This should be called outside of free_entries_lock scope to avoid potential
636 * deadlocks with serial consoles that use DMA.
637 */
638static void __dma_entry_alloc_check_leak(u32 nr_entries)
639{
640 u32 tmp = nr_entries % nr_prealloc_entries;
641
642 /* Shout each time we tick over some multiple of the initial pool */
643 if (tmp < DMA_DEBUG_DYNAMIC_ENTRIES) {
644 pr_info("dma_debug_entry pool grown to %u (%u00%%)\n",
645 nr_entries,
646 (nr_entries / nr_prealloc_entries));
647 }
648}
649
650/* struct dma_entry allocator
651 *
652 * The next two functions implement the allocator for
653 * struct dma_debug_entries.
654 */
655static struct dma_debug_entry *dma_entry_alloc(void)
656{
657 bool alloc_check_leak = false;
658 struct dma_debug_entry *entry;
659 unsigned long flags;
660 u32 nr_entries;
661
662 spin_lock_irqsave(&free_entries_lock, flags);
663 if (num_free_entries == 0) {
664 if (dma_debug_create_entries(GFP_ATOMIC)) {
665 global_disable = true;
666 spin_unlock_irqrestore(&free_entries_lock, flags);
667 pr_err("debugging out of memory - disabling\n");
668 return NULL;
669 }
670 alloc_check_leak = true;
671 nr_entries = nr_total_entries;
672 }
673
674 entry = __dma_entry_alloc();
675
676 spin_unlock_irqrestore(&free_entries_lock, flags);
677
678 if (alloc_check_leak)
679 __dma_entry_alloc_check_leak(nr_entries);
680
681#ifdef CONFIG_STACKTRACE
682 entry->stack_len = stack_trace_save(entry->stack_entries,
683 ARRAY_SIZE(entry->stack_entries),
684 1);
685#endif
686 return entry;
687}
688
689static void dma_entry_free(struct dma_debug_entry *entry)
690{
691 unsigned long flags;
692
693 active_cacheline_remove(entry);
694
695 /*
696 * add to beginning of the list - this way the entries are
697 * more likely cache hot when they are reallocated.
698 */
699 spin_lock_irqsave(&free_entries_lock, flags);
700 list_add(&entry->list, &free_entries);
701 num_free_entries += 1;
702 spin_unlock_irqrestore(&free_entries_lock, flags);
703}
704
705/*
706 * DMA-API debugging init code
707 *
708 * The init code does two things:
709 * 1. Initialize core data structures
710 * 2. Preallocate a given number of dma_debug_entry structs
711 */
712
713static ssize_t filter_read(struct file *file, char __user *user_buf,
714 size_t count, loff_t *ppos)
715{
716 char buf[NAME_MAX_LEN + 1];
717 unsigned long flags;
718 int len;
719
720 if (!current_driver_name[0])
721 return 0;
722
723 /*
724 * We can't copy to userspace directly because current_driver_name can
725 * only be read under the driver_name_lock with irqs disabled. So
726 * create a temporary copy first.
727 */
728 read_lock_irqsave(&driver_name_lock, flags);
729 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
730 read_unlock_irqrestore(&driver_name_lock, flags);
731
732 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
733}
734
735static ssize_t filter_write(struct file *file, const char __user *userbuf,
736 size_t count, loff_t *ppos)
737{
738 char buf[NAME_MAX_LEN];
739 unsigned long flags;
740 size_t len;
741 int i;
742
743 /*
744 * We can't copy from userspace directly. Access to
745 * current_driver_name is protected with a write_lock with irqs
746 * disabled. Since copy_from_user can fault and may sleep we
747 * need to copy to temporary buffer first
748 */
749 len = min(count, (size_t)(NAME_MAX_LEN - 1));
750 if (copy_from_user(buf, userbuf, len))
751 return -EFAULT;
752
753 buf[len] = 0;
754
755 write_lock_irqsave(&driver_name_lock, flags);
756
757 /*
758 * Now handle the string we got from userspace very carefully.
759 * The rules are:
760 * - only use the first token we got
761 * - token delimiter is everything looking like a space
762 * character (' ', '\n', '\t' ...)
763 *
764 */
765 if (!isalnum(buf[0])) {
766 /*
767 * If the first character userspace gave us is not
768 * alphanumerical then assume the filter should be
769 * switched off.
770 */
771 if (current_driver_name[0])
772 pr_info("switching off dma-debug driver filter\n");
773 current_driver_name[0] = 0;
774 current_driver = NULL;
775 goto out_unlock;
776 }
777
778 /*
779 * Now parse out the first token and use it as the name for the
780 * driver to filter for.
781 */
782 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
783 current_driver_name[i] = buf[i];
784 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
785 break;
786 }
787 current_driver_name[i] = 0;
788 current_driver = NULL;
789
790 pr_info("enable driver filter for driver [%s]\n",
791 current_driver_name);
792
793out_unlock:
794 write_unlock_irqrestore(&driver_name_lock, flags);
795
796 return count;
797}
798
799static const struct file_operations filter_fops = {
800 .read = filter_read,
801 .write = filter_write,
802 .llseek = default_llseek,
803};
804
805static int __init dma_debug_fs_init(void)
806{
807 struct dentry *dentry = debugfs_create_dir("dma-api", NULL);
808
809 debugfs_create_bool("disabled", 0444, dentry, &global_disable);
810 debugfs_create_u32("error_count", 0444, dentry, &error_count);
811 debugfs_create_u32("all_errors", 0644, dentry, &show_all_errors);
812 debugfs_create_u32("num_errors", 0644, dentry, &show_num_errors);
813 debugfs_create_u32("num_free_entries", 0444, dentry, &num_free_entries);
814 debugfs_create_u32("min_free_entries", 0444, dentry, &min_free_entries);
815 debugfs_create_u32("nr_total_entries", 0444, dentry, &nr_total_entries);
816 debugfs_create_file("driver_filter", 0644, dentry, NULL, &filter_fops);
817 debugfs_create_file("dump", 0444, dentry, NULL, &dump_fops);
818
819 return 0;
820}
821core_initcall_sync(dma_debug_fs_init);
822
823static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
824{
825 struct dma_debug_entry *entry;
826 unsigned long flags;
827 int count = 0, i;
828
829 for (i = 0; i < HASH_SIZE; ++i) {
830 spin_lock_irqsave(&dma_entry_hash[i].lock, flags);
831 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
832 if (entry->dev == dev) {
833 count += 1;
834 *out_entry = entry;
835 }
836 }
837 spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
838 }
839
840 return count;
841}
842
843static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
844{
845 struct device *dev = data;
846 struct dma_debug_entry *entry;
847 int count;
848
849 if (dma_debug_disabled())
850 return 0;
851
852 switch (action) {
853 case BUS_NOTIFY_UNBOUND_DRIVER:
854 count = device_dma_allocations(dev, &entry);
855 if (count == 0)
856 break;
857 err_printk(dev, entry, "device driver has pending "
858 "DMA allocations while released from device "
859 "[count=%d]\n"
860 "One of leaked entries details: "
861 "[device address=0x%016llx] [size=%llu bytes] "
862 "[mapped with %s] [mapped as %s]\n",
863 count, entry->dev_addr, entry->size,
864 dir2name[entry->direction], type2name[entry->type]);
865 break;
866 default:
867 break;
868 }
869
870 return 0;
871}
872
873void dma_debug_add_bus(const struct bus_type *bus)
874{
875 struct notifier_block *nb;
876
877 if (dma_debug_disabled())
878 return;
879
880 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
881 if (nb == NULL) {
882 pr_err("dma_debug_add_bus: out of memory\n");
883 return;
884 }
885
886 nb->notifier_call = dma_debug_device_change;
887
888 bus_register_notifier(bus, nb);
889}
890
891static int dma_debug_init(void)
892{
893 int i, nr_pages;
894
895 /* Do not use dma_debug_initialized here, since we really want to be
896 * called to set dma_debug_initialized
897 */
898 if (global_disable)
899 return 0;
900
901 for (i = 0; i < HASH_SIZE; ++i) {
902 INIT_LIST_HEAD(&dma_entry_hash[i].list);
903 spin_lock_init(&dma_entry_hash[i].lock);
904 }
905
906 nr_pages = DIV_ROUND_UP(nr_prealloc_entries, DMA_DEBUG_DYNAMIC_ENTRIES);
907 for (i = 0; i < nr_pages; ++i)
908 dma_debug_create_entries(GFP_KERNEL);
909 if (num_free_entries >= nr_prealloc_entries) {
910 pr_info("preallocated %d debug entries\n", nr_total_entries);
911 } else if (num_free_entries > 0) {
912 pr_warn("%d debug entries requested but only %d allocated\n",
913 nr_prealloc_entries, nr_total_entries);
914 } else {
915 pr_err("debugging out of memory error - disabled\n");
916 global_disable = true;
917
918 return 0;
919 }
920 min_free_entries = num_free_entries;
921
922 dma_debug_initialized = true;
923
924 pr_info("debugging enabled by kernel config\n");
925 return 0;
926}
927core_initcall(dma_debug_init);
928
929static __init int dma_debug_cmdline(char *str)
930{
931 if (!str)
932 return -EINVAL;
933
934 if (strncmp(str, "off", 3) == 0) {
935 pr_info("debugging disabled on kernel command line\n");
936 global_disable = true;
937 }
938
939 return 1;
940}
941
942static __init int dma_debug_entries_cmdline(char *str)
943{
944 if (!str)
945 return -EINVAL;
946 if (!get_option(&str, &nr_prealloc_entries))
947 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
948 return 1;
949}
950
951__setup("dma_debug=", dma_debug_cmdline);
952__setup("dma_debug_entries=", dma_debug_entries_cmdline);
953
954static void check_unmap(struct dma_debug_entry *ref)
955{
956 struct dma_debug_entry *entry;
957 struct hash_bucket *bucket;
958 unsigned long flags;
959
960 bucket = get_hash_bucket(ref, &flags);
961 entry = bucket_find_exact(bucket, ref);
962
963 if (!entry) {
964 /* must drop lock before calling dma_mapping_error */
965 put_hash_bucket(bucket, flags);
966
967 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
968 err_printk(ref->dev, NULL,
969 "device driver tries to free an "
970 "invalid DMA memory address\n");
971 } else {
972 err_printk(ref->dev, NULL,
973 "device driver tries to free DMA "
974 "memory it has not allocated [device "
975 "address=0x%016llx] [size=%llu bytes]\n",
976 ref->dev_addr, ref->size);
977 }
978 return;
979 }
980
981 if (ref->size != entry->size) {
982 err_printk(ref->dev, entry, "device driver frees "
983 "DMA memory with different size "
984 "[device address=0x%016llx] [map size=%llu bytes] "
985 "[unmap size=%llu bytes]\n",
986 ref->dev_addr, entry->size, ref->size);
987 }
988
989 if (ref->type != entry->type) {
990 err_printk(ref->dev, entry, "device driver frees "
991 "DMA memory with wrong function "
992 "[device address=0x%016llx] [size=%llu bytes] "
993 "[mapped as %s] [unmapped as %s]\n",
994 ref->dev_addr, ref->size,
995 type2name[entry->type], type2name[ref->type]);
996 } else if (entry->type == dma_debug_coherent &&
997 ref->paddr != entry->paddr) {
998 err_printk(ref->dev, entry, "device driver frees "
999 "DMA memory with different CPU address "
1000 "[device address=0x%016llx] [size=%llu bytes] "
1001 "[cpu alloc address=0x%pa] "
1002 "[cpu free address=0x%pa]",
1003 ref->dev_addr, ref->size,
1004 &entry->paddr,
1005 &ref->paddr);
1006 }
1007
1008 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1009 ref->sg_call_ents != entry->sg_call_ents) {
1010 err_printk(ref->dev, entry, "device driver frees "
1011 "DMA sg list with different entry count "
1012 "[map count=%d] [unmap count=%d]\n",
1013 entry->sg_call_ents, ref->sg_call_ents);
1014 }
1015
1016 /*
1017 * This may be no bug in reality - but most implementations of the
1018 * DMA API don't handle this properly, so check for it here
1019 */
1020 if (ref->direction != entry->direction) {
1021 err_printk(ref->dev, entry, "device driver frees "
1022 "DMA memory with different direction "
1023 "[device address=0x%016llx] [size=%llu bytes] "
1024 "[mapped with %s] [unmapped with %s]\n",
1025 ref->dev_addr, ref->size,
1026 dir2name[entry->direction],
1027 dir2name[ref->direction]);
1028 }
1029
1030 /*
1031 * Drivers should use dma_mapping_error() to check the returned
1032 * addresses of dma_map_single() and dma_map_page().
1033 * If not, print this warning message. See Documentation/core-api/dma-api.rst.
1034 */
1035 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1036 err_printk(ref->dev, entry,
1037 "device driver failed to check map error"
1038 "[device address=0x%016llx] [size=%llu bytes] "
1039 "[mapped as %s]",
1040 ref->dev_addr, ref->size,
1041 type2name[entry->type]);
1042 }
1043
1044 hash_bucket_del(entry);
1045 put_hash_bucket(bucket, flags);
1046
1047 /*
1048 * Free the entry outside of bucket_lock to avoid ABBA deadlocks
1049 * between that and radix_lock.
1050 */
1051 dma_entry_free(entry);
1052}
1053
1054static void check_for_stack(struct device *dev,
1055 struct page *page, size_t offset)
1056{
1057 void *addr;
1058 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1059
1060 if (!stack_vm_area) {
1061 /* Stack is direct-mapped. */
1062 if (PageHighMem(page))
1063 return;
1064 addr = page_address(page) + offset;
1065 if (object_is_on_stack(addr))
1066 err_printk(dev, NULL, "device driver maps memory from stack [addr=%p]\n", addr);
1067 } else {
1068 /* Stack is vmalloced. */
1069 int i;
1070
1071 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1072 if (page != stack_vm_area->pages[i])
1073 continue;
1074
1075 addr = (u8 *)current->stack + i * PAGE_SIZE + offset;
1076 err_printk(dev, NULL, "device driver maps memory from stack [probable addr=%p]\n", addr);
1077 break;
1078 }
1079 }
1080}
1081
1082static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
1083{
1084 if (memory_intersects(_stext, _etext, addr, len) ||
1085 memory_intersects(__start_rodata, __end_rodata, addr, len))
1086 err_printk(dev, NULL, "device driver maps memory from kernel text or rodata [addr=%p] [len=%lu]\n", addr, len);
1087}
1088
1089static void check_sync(struct device *dev,
1090 struct dma_debug_entry *ref,
1091 bool to_cpu)
1092{
1093 struct dma_debug_entry *entry;
1094 struct hash_bucket *bucket;
1095 unsigned long flags;
1096
1097 bucket = get_hash_bucket(ref, &flags);
1098
1099 entry = bucket_find_contain(&bucket, ref, &flags);
1100
1101 if (!entry) {
1102 err_printk(dev, NULL, "device driver tries "
1103 "to sync DMA memory it has not allocated "
1104 "[device address=0x%016llx] [size=%llu bytes]\n",
1105 (unsigned long long)ref->dev_addr, ref->size);
1106 goto out;
1107 }
1108
1109 if (ref->size > entry->size) {
1110 err_printk(dev, entry, "device driver syncs"
1111 " DMA memory outside allocated range "
1112 "[device address=0x%016llx] "
1113 "[allocation size=%llu bytes] "
1114 "[sync offset+size=%llu]\n",
1115 entry->dev_addr, entry->size,
1116 ref->size);
1117 }
1118
1119 if (entry->direction == DMA_BIDIRECTIONAL)
1120 goto out;
1121
1122 if (ref->direction != entry->direction) {
1123 err_printk(dev, entry, "device driver syncs "
1124 "DMA memory with different direction "
1125 "[device address=0x%016llx] [size=%llu bytes] "
1126 "[mapped with %s] [synced with %s]\n",
1127 (unsigned long long)ref->dev_addr, entry->size,
1128 dir2name[entry->direction],
1129 dir2name[ref->direction]);
1130 }
1131
1132 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
1133 !(ref->direction == DMA_TO_DEVICE))
1134 err_printk(dev, entry, "device driver syncs "
1135 "device read-only DMA memory for cpu "
1136 "[device address=0x%016llx] [size=%llu bytes] "
1137 "[mapped with %s] [synced with %s]\n",
1138 (unsigned long long)ref->dev_addr, entry->size,
1139 dir2name[entry->direction],
1140 dir2name[ref->direction]);
1141
1142 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
1143 !(ref->direction == DMA_FROM_DEVICE))
1144 err_printk(dev, entry, "device driver syncs "
1145 "device write-only DMA memory to device "
1146 "[device address=0x%016llx] [size=%llu bytes] "
1147 "[mapped with %s] [synced with %s]\n",
1148 (unsigned long long)ref->dev_addr, entry->size,
1149 dir2name[entry->direction],
1150 dir2name[ref->direction]);
1151
1152 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1153 ref->sg_call_ents != entry->sg_call_ents) {
1154 err_printk(ref->dev, entry, "device driver syncs "
1155 "DMA sg list with different entry count "
1156 "[map count=%d] [sync count=%d]\n",
1157 entry->sg_call_ents, ref->sg_call_ents);
1158 }
1159
1160out:
1161 put_hash_bucket(bucket, flags);
1162}
1163
1164static void check_sg_segment(struct device *dev, struct scatterlist *sg)
1165{
1166 unsigned int max_seg = dma_get_max_seg_size(dev);
1167 u64 start, end, boundary = dma_get_seg_boundary(dev);
1168
1169 /*
1170 * Either the driver forgot to set dma_parms appropriately, or
1171 * whoever generated the list forgot to check them.
1172 */
1173 if (sg->length > max_seg)
1174 err_printk(dev, NULL, "mapping sg segment longer than device claims to support [len=%u] [max=%u]\n",
1175 sg->length, max_seg);
1176 /*
1177 * In some cases this could potentially be the DMA API
1178 * implementation's fault, but it would usually imply that
1179 * the scatterlist was built inappropriately to begin with.
1180 */
1181 start = sg_dma_address(sg);
1182 end = start + sg_dma_len(sg) - 1;
1183 if ((start ^ end) & ~boundary)
1184 err_printk(dev, NULL, "mapping sg segment across boundary [start=0x%016llx] [end=0x%016llx] [boundary=0x%016llx]\n",
1185 start, end, boundary);
1186}
1187
1188void debug_dma_map_single(struct device *dev, const void *addr,
1189 unsigned long len)
1190{
1191 if (unlikely(dma_debug_disabled()))
1192 return;
1193
1194 if (!virt_addr_valid(addr))
1195 err_printk(dev, NULL, "device driver maps memory from invalid area [addr=%p] [len=%lu]\n",
1196 addr, len);
1197
1198 if (is_vmalloc_addr(addr))
1199 err_printk(dev, NULL, "device driver maps memory from vmalloc area [addr=%p] [len=%lu]\n",
1200 addr, len);
1201}
1202EXPORT_SYMBOL(debug_dma_map_single);
1203
1204void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1205 size_t size, int direction, dma_addr_t dma_addr,
1206 unsigned long attrs)
1207{
1208 struct dma_debug_entry *entry;
1209
1210 if (unlikely(dma_debug_disabled()))
1211 return;
1212
1213 if (dma_mapping_error(dev, dma_addr))
1214 return;
1215
1216 entry = dma_entry_alloc();
1217 if (!entry)
1218 return;
1219
1220 entry->dev = dev;
1221 entry->type = dma_debug_single;
1222 entry->paddr = page_to_phys(page) + offset;
1223 entry->dev_addr = dma_addr;
1224 entry->size = size;
1225 entry->direction = direction;
1226 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1227
1228 check_for_stack(dev, page, offset);
1229
1230 if (!PageHighMem(page)) {
1231 void *addr = page_address(page) + offset;
1232
1233 check_for_illegal_area(dev, addr, size);
1234 }
1235
1236 add_dma_entry(entry, attrs);
1237}
1238
1239void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1240{
1241 struct dma_debug_entry ref;
1242 struct dma_debug_entry *entry;
1243 struct hash_bucket *bucket;
1244 unsigned long flags;
1245
1246 if (unlikely(dma_debug_disabled()))
1247 return;
1248
1249 ref.dev = dev;
1250 ref.dev_addr = dma_addr;
1251 bucket = get_hash_bucket(&ref, &flags);
1252
1253 list_for_each_entry(entry, &bucket->list, list) {
1254 if (!exact_match(&ref, entry))
1255 continue;
1256
1257 /*
1258 * The same physical address can be mapped multiple
1259 * times. Without a hardware IOMMU this results in the
1260 * same device addresses being put into the dma-debug
1261 * hash multiple times too. This can result in false
1262 * positives being reported. Therefore we implement a
1263 * best-fit algorithm here which updates the first entry
1264 * from the hash which fits the reference value and is
1265 * not currently listed as being checked.
1266 */
1267 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1268 entry->map_err_type = MAP_ERR_CHECKED;
1269 break;
1270 }
1271 }
1272
1273 put_hash_bucket(bucket, flags);
1274}
1275EXPORT_SYMBOL(debug_dma_mapping_error);
1276
1277void debug_dma_unmap_page(struct device *dev, dma_addr_t dma_addr,
1278 size_t size, int direction)
1279{
1280 struct dma_debug_entry ref = {
1281 .type = dma_debug_single,
1282 .dev = dev,
1283 .dev_addr = dma_addr,
1284 .size = size,
1285 .direction = direction,
1286 };
1287
1288 if (unlikely(dma_debug_disabled()))
1289 return;
1290 check_unmap(&ref);
1291}
1292
1293void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1294 int nents, int mapped_ents, int direction,
1295 unsigned long attrs)
1296{
1297 struct dma_debug_entry *entry;
1298 struct scatterlist *s;
1299 int i;
1300
1301 if (unlikely(dma_debug_disabled()))
1302 return;
1303
1304 for_each_sg(sg, s, nents, i) {
1305 check_for_stack(dev, sg_page(s), s->offset);
1306 if (!PageHighMem(sg_page(s)))
1307 check_for_illegal_area(dev, sg_virt(s), s->length);
1308 }
1309
1310 for_each_sg(sg, s, mapped_ents, i) {
1311 entry = dma_entry_alloc();
1312 if (!entry)
1313 return;
1314
1315 entry->type = dma_debug_sg;
1316 entry->dev = dev;
1317 entry->paddr = sg_phys(s);
1318 entry->size = sg_dma_len(s);
1319 entry->dev_addr = sg_dma_address(s);
1320 entry->direction = direction;
1321 entry->sg_call_ents = nents;
1322 entry->sg_mapped_ents = mapped_ents;
1323
1324 check_sg_segment(dev, s);
1325
1326 add_dma_entry(entry, attrs);
1327 }
1328}
1329
1330static int get_nr_mapped_entries(struct device *dev,
1331 struct dma_debug_entry *ref)
1332{
1333 struct dma_debug_entry *entry;
1334 struct hash_bucket *bucket;
1335 unsigned long flags;
1336 int mapped_ents;
1337
1338 bucket = get_hash_bucket(ref, &flags);
1339 entry = bucket_find_exact(bucket, ref);
1340 mapped_ents = 0;
1341
1342 if (entry)
1343 mapped_ents = entry->sg_mapped_ents;
1344 put_hash_bucket(bucket, flags);
1345
1346 return mapped_ents;
1347}
1348
1349void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1350 int nelems, int dir)
1351{
1352 struct scatterlist *s;
1353 int mapped_ents = 0, i;
1354
1355 if (unlikely(dma_debug_disabled()))
1356 return;
1357
1358 for_each_sg(sglist, s, nelems, i) {
1359
1360 struct dma_debug_entry ref = {
1361 .type = dma_debug_sg,
1362 .dev = dev,
1363 .paddr = sg_phys(s),
1364 .dev_addr = sg_dma_address(s),
1365 .size = sg_dma_len(s),
1366 .direction = dir,
1367 .sg_call_ents = nelems,
1368 };
1369
1370 if (mapped_ents && i >= mapped_ents)
1371 break;
1372
1373 if (!i)
1374 mapped_ents = get_nr_mapped_entries(dev, &ref);
1375
1376 check_unmap(&ref);
1377 }
1378}
1379
1380static phys_addr_t virt_to_paddr(void *virt)
1381{
1382 struct page *page;
1383
1384 if (is_vmalloc_addr(virt))
1385 page = vmalloc_to_page(virt);
1386 else
1387 page = virt_to_page(virt);
1388
1389 return page_to_phys(page) + offset_in_page(virt);
1390}
1391
1392void debug_dma_alloc_coherent(struct device *dev, size_t size,
1393 dma_addr_t dma_addr, void *virt,
1394 unsigned long attrs)
1395{
1396 struct dma_debug_entry *entry;
1397
1398 if (unlikely(dma_debug_disabled()))
1399 return;
1400
1401 if (unlikely(virt == NULL))
1402 return;
1403
1404 /* handle vmalloc and linear addresses */
1405 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1406 return;
1407
1408 entry = dma_entry_alloc();
1409 if (!entry)
1410 return;
1411
1412 entry->type = dma_debug_coherent;
1413 entry->dev = dev;
1414 entry->paddr = virt_to_paddr(virt);
1415 entry->size = size;
1416 entry->dev_addr = dma_addr;
1417 entry->direction = DMA_BIDIRECTIONAL;
1418
1419 add_dma_entry(entry, attrs);
1420}
1421
1422void debug_dma_free_coherent(struct device *dev, size_t size,
1423 void *virt, dma_addr_t dma_addr)
1424{
1425 struct dma_debug_entry ref = {
1426 .type = dma_debug_coherent,
1427 .dev = dev,
1428 .dev_addr = dma_addr,
1429 .size = size,
1430 .direction = DMA_BIDIRECTIONAL,
1431 };
1432
1433 /* handle vmalloc and linear addresses */
1434 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1435 return;
1436
1437 ref.paddr = virt_to_paddr(virt);
1438
1439 if (unlikely(dma_debug_disabled()))
1440 return;
1441
1442 check_unmap(&ref);
1443}
1444
1445void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1446 int direction, dma_addr_t dma_addr,
1447 unsigned long attrs)
1448{
1449 struct dma_debug_entry *entry;
1450
1451 if (unlikely(dma_debug_disabled()))
1452 return;
1453
1454 entry = dma_entry_alloc();
1455 if (!entry)
1456 return;
1457
1458 entry->type = dma_debug_resource;
1459 entry->dev = dev;
1460 entry->paddr = addr;
1461 entry->size = size;
1462 entry->dev_addr = dma_addr;
1463 entry->direction = direction;
1464 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1465
1466 add_dma_entry(entry, attrs);
1467}
1468
1469void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1470 size_t size, int direction)
1471{
1472 struct dma_debug_entry ref = {
1473 .type = dma_debug_resource,
1474 .dev = dev,
1475 .dev_addr = dma_addr,
1476 .size = size,
1477 .direction = direction,
1478 };
1479
1480 if (unlikely(dma_debug_disabled()))
1481 return;
1482
1483 check_unmap(&ref);
1484}
1485
1486void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1487 size_t size, int direction)
1488{
1489 struct dma_debug_entry ref;
1490
1491 if (unlikely(dma_debug_disabled()))
1492 return;
1493
1494 ref.type = dma_debug_single;
1495 ref.dev = dev;
1496 ref.dev_addr = dma_handle;
1497 ref.size = size;
1498 ref.direction = direction;
1499 ref.sg_call_ents = 0;
1500
1501 check_sync(dev, &ref, true);
1502}
1503
1504void debug_dma_sync_single_for_device(struct device *dev,
1505 dma_addr_t dma_handle, size_t size,
1506 int direction)
1507{
1508 struct dma_debug_entry ref;
1509
1510 if (unlikely(dma_debug_disabled()))
1511 return;
1512
1513 ref.type = dma_debug_single;
1514 ref.dev = dev;
1515 ref.dev_addr = dma_handle;
1516 ref.size = size;
1517 ref.direction = direction;
1518 ref.sg_call_ents = 0;
1519
1520 check_sync(dev, &ref, false);
1521}
1522
1523void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1524 int nelems, int direction)
1525{
1526 struct scatterlist *s;
1527 int mapped_ents = 0, i;
1528
1529 if (unlikely(dma_debug_disabled()))
1530 return;
1531
1532 for_each_sg(sg, s, nelems, i) {
1533
1534 struct dma_debug_entry ref = {
1535 .type = dma_debug_sg,
1536 .dev = dev,
1537 .paddr = sg_phys(s),
1538 .dev_addr = sg_dma_address(s),
1539 .size = sg_dma_len(s),
1540 .direction = direction,
1541 .sg_call_ents = nelems,
1542 };
1543
1544 if (!i)
1545 mapped_ents = get_nr_mapped_entries(dev, &ref);
1546
1547 if (i >= mapped_ents)
1548 break;
1549
1550 check_sync(dev, &ref, true);
1551 }
1552}
1553
1554void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1555 int nelems, int direction)
1556{
1557 struct scatterlist *s;
1558 int mapped_ents = 0, i;
1559
1560 if (unlikely(dma_debug_disabled()))
1561 return;
1562
1563 for_each_sg(sg, s, nelems, i) {
1564
1565 struct dma_debug_entry ref = {
1566 .type = dma_debug_sg,
1567 .dev = dev,
1568 .paddr = sg_phys(sg),
1569 .dev_addr = sg_dma_address(s),
1570 .size = sg_dma_len(s),
1571 .direction = direction,
1572 .sg_call_ents = nelems,
1573 };
1574 if (!i)
1575 mapped_ents = get_nr_mapped_entries(dev, &ref);
1576
1577 if (i >= mapped_ents)
1578 break;
1579
1580 check_sync(dev, &ref, false);
1581 }
1582}
1583
1584static int __init dma_debug_driver_setup(char *str)
1585{
1586 int i;
1587
1588 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1589 current_driver_name[i] = *str;
1590 if (*str == 0)
1591 break;
1592 }
1593
1594 if (current_driver_name[0])
1595 pr_info("enable driver filter for driver [%s]\n",
1596 current_driver_name);
1597
1598
1599 return 1;
1600}
1601__setup("dma_debug_driver=", dma_debug_driver_setup);
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 *
5 * Author: Joerg Roedel <joerg.roedel@amd.com>
6 */
7
8#define pr_fmt(fmt) "DMA-API: " fmt
9
10#include <linux/sched/task_stack.h>
11#include <linux/scatterlist.h>
12#include <linux/dma-map-ops.h>
13#include <linux/sched/task.h>
14#include <linux/stacktrace.h>
15#include <linux/spinlock.h>
16#include <linux/vmalloc.h>
17#include <linux/debugfs.h>
18#include <linux/uaccess.h>
19#include <linux/export.h>
20#include <linux/device.h>
21#include <linux/types.h>
22#include <linux/sched.h>
23#include <linux/ctype.h>
24#include <linux/list.h>
25#include <linux/slab.h>
26#include <asm/sections.h>
27#include "debug.h"
28
29#define HASH_SIZE 16384ULL
30#define HASH_FN_SHIFT 13
31#define HASH_FN_MASK (HASH_SIZE - 1)
32
33#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
34/* If the pool runs out, add this many new entries at once */
35#define DMA_DEBUG_DYNAMIC_ENTRIES (PAGE_SIZE / sizeof(struct dma_debug_entry))
36
37enum {
38 dma_debug_single,
39 dma_debug_sg,
40 dma_debug_coherent,
41 dma_debug_resource,
42};
43
44enum map_err_types {
45 MAP_ERR_CHECK_NOT_APPLICABLE,
46 MAP_ERR_NOT_CHECKED,
47 MAP_ERR_CHECKED,
48};
49
50#define DMA_DEBUG_STACKTRACE_ENTRIES 5
51
52/**
53 * struct dma_debug_entry - track a dma_map* or dma_alloc_coherent mapping
54 * @list: node on pre-allocated free_entries list
55 * @dev: 'dev' argument to dma_map_{page|single|sg} or dma_alloc_coherent
56 * @dev_addr: dma address
57 * @size: length of the mapping
58 * @type: single, page, sg, coherent
59 * @direction: enum dma_data_direction
60 * @sg_call_ents: 'nents' from dma_map_sg
61 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
62 * @pfn: page frame of the start address
63 * @offset: offset of mapping relative to pfn
64 * @map_err_type: track whether dma_mapping_error() was checked
65 * @stack_len: number of backtrace entries in @stack_entries
66 * @stack_entries: stack of backtrace history
67 */
68struct dma_debug_entry {
69 struct list_head list;
70 struct device *dev;
71 u64 dev_addr;
72 u64 size;
73 int type;
74 int direction;
75 int sg_call_ents;
76 int sg_mapped_ents;
77 unsigned long pfn;
78 size_t offset;
79 enum map_err_types map_err_type;
80#ifdef CONFIG_STACKTRACE
81 unsigned int stack_len;
82 unsigned long stack_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
83#endif
84} ____cacheline_aligned_in_smp;
85
86typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
87
88struct hash_bucket {
89 struct list_head list;
90 spinlock_t lock;
91};
92
93/* Hash list to save the allocated dma addresses */
94static struct hash_bucket dma_entry_hash[HASH_SIZE];
95/* List of pre-allocated dma_debug_entry's */
96static LIST_HEAD(free_entries);
97/* Lock for the list above */
98static DEFINE_SPINLOCK(free_entries_lock);
99
100/* Global disable flag - will be set in case of an error */
101static bool global_disable __read_mostly;
102
103/* Early initialization disable flag, set at the end of dma_debug_init */
104static bool dma_debug_initialized __read_mostly;
105
106static inline bool dma_debug_disabled(void)
107{
108 return global_disable || !dma_debug_initialized;
109}
110
111/* Global error count */
112static u32 error_count;
113
114/* Global error show enable*/
115static u32 show_all_errors __read_mostly;
116/* Number of errors to show */
117static u32 show_num_errors = 1;
118
119static u32 num_free_entries;
120static u32 min_free_entries;
121static u32 nr_total_entries;
122
123/* number of preallocated entries requested by kernel cmdline */
124static u32 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
125
126/* per-driver filter related state */
127
128#define NAME_MAX_LEN 64
129
130static char current_driver_name[NAME_MAX_LEN] __read_mostly;
131static struct device_driver *current_driver __read_mostly;
132
133static DEFINE_RWLOCK(driver_name_lock);
134
135static const char *const maperr2str[] = {
136 [MAP_ERR_CHECK_NOT_APPLICABLE] = "dma map error check not applicable",
137 [MAP_ERR_NOT_CHECKED] = "dma map error not checked",
138 [MAP_ERR_CHECKED] = "dma map error checked",
139};
140
141static const char *type2name[] = {
142 [dma_debug_single] = "single",
143 [dma_debug_sg] = "scatter-gather",
144 [dma_debug_coherent] = "coherent",
145 [dma_debug_resource] = "resource",
146};
147
148static const char *dir2name[] = {
149 [DMA_BIDIRECTIONAL] = "DMA_BIDIRECTIONAL",
150 [DMA_TO_DEVICE] = "DMA_TO_DEVICE",
151 [DMA_FROM_DEVICE] = "DMA_FROM_DEVICE",
152 [DMA_NONE] = "DMA_NONE",
153};
154
155/*
156 * The access to some variables in this macro is racy. We can't use atomic_t
157 * here because all these variables are exported to debugfs. Some of them even
158 * writeable. This is also the reason why a lock won't help much. But anyway,
159 * the races are no big deal. Here is why:
160 *
161 * error_count: the addition is racy, but the worst thing that can happen is
162 * that we don't count some errors
163 * show_num_errors: the subtraction is racy. Also no big deal because in
164 * worst case this will result in one warning more in the
165 * system log than the user configured. This variable is
166 * writeable via debugfs.
167 */
168static inline void dump_entry_trace(struct dma_debug_entry *entry)
169{
170#ifdef CONFIG_STACKTRACE
171 if (entry) {
172 pr_warn("Mapped at:\n");
173 stack_trace_print(entry->stack_entries, entry->stack_len, 0);
174 }
175#endif
176}
177
178static bool driver_filter(struct device *dev)
179{
180 struct device_driver *drv;
181 unsigned long flags;
182 bool ret;
183
184 /* driver filter off */
185 if (likely(!current_driver_name[0]))
186 return true;
187
188 /* driver filter on and initialized */
189 if (current_driver && dev && dev->driver == current_driver)
190 return true;
191
192 /* driver filter on, but we can't filter on a NULL device... */
193 if (!dev)
194 return false;
195
196 if (current_driver || !current_driver_name[0])
197 return false;
198
199 /* driver filter on but not yet initialized */
200 drv = dev->driver;
201 if (!drv)
202 return false;
203
204 /* lock to protect against change of current_driver_name */
205 read_lock_irqsave(&driver_name_lock, flags);
206
207 ret = false;
208 if (drv->name &&
209 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
210 current_driver = drv;
211 ret = true;
212 }
213
214 read_unlock_irqrestore(&driver_name_lock, flags);
215
216 return ret;
217}
218
219#define err_printk(dev, entry, format, arg...) do { \
220 error_count += 1; \
221 if (driver_filter(dev) && \
222 (show_all_errors || show_num_errors > 0)) { \
223 WARN(1, pr_fmt("%s %s: ") format, \
224 dev ? dev_driver_string(dev) : "NULL", \
225 dev ? dev_name(dev) : "NULL", ## arg); \
226 dump_entry_trace(entry); \
227 } \
228 if (!show_all_errors && show_num_errors > 0) \
229 show_num_errors -= 1; \
230 } while (0);
231
232/*
233 * Hash related functions
234 *
235 * Every DMA-API request is saved into a struct dma_debug_entry. To
236 * have quick access to these structs they are stored into a hash.
237 */
238static int hash_fn(struct dma_debug_entry *entry)
239{
240 /*
241 * Hash function is based on the dma address.
242 * We use bits 20-27 here as the index into the hash
243 */
244 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
245}
246
247/*
248 * Request exclusive access to a hash bucket for a given dma_debug_entry.
249 */
250static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
251 unsigned long *flags)
252 __acquires(&dma_entry_hash[idx].lock)
253{
254 int idx = hash_fn(entry);
255 unsigned long __flags;
256
257 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
258 *flags = __flags;
259 return &dma_entry_hash[idx];
260}
261
262/*
263 * Give up exclusive access to the hash bucket
264 */
265static void put_hash_bucket(struct hash_bucket *bucket,
266 unsigned long flags)
267 __releases(&bucket->lock)
268{
269 spin_unlock_irqrestore(&bucket->lock, flags);
270}
271
272static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
273{
274 return ((a->dev_addr == b->dev_addr) &&
275 (a->dev == b->dev)) ? true : false;
276}
277
278static bool containing_match(struct dma_debug_entry *a,
279 struct dma_debug_entry *b)
280{
281 if (a->dev != b->dev)
282 return false;
283
284 if ((b->dev_addr <= a->dev_addr) &&
285 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
286 return true;
287
288 return false;
289}
290
291/*
292 * Search a given entry in the hash bucket list
293 */
294static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
295 struct dma_debug_entry *ref,
296 match_fn match)
297{
298 struct dma_debug_entry *entry, *ret = NULL;
299 int matches = 0, match_lvl, last_lvl = -1;
300
301 list_for_each_entry(entry, &bucket->list, list) {
302 if (!match(ref, entry))
303 continue;
304
305 /*
306 * Some drivers map the same physical address multiple
307 * times. Without a hardware IOMMU this results in the
308 * same device addresses being put into the dma-debug
309 * hash multiple times too. This can result in false
310 * positives being reported. Therefore we implement a
311 * best-fit algorithm here which returns the entry from
312 * the hash which fits best to the reference value
313 * instead of the first-fit.
314 */
315 matches += 1;
316 match_lvl = 0;
317 entry->size == ref->size ? ++match_lvl : 0;
318 entry->type == ref->type ? ++match_lvl : 0;
319 entry->direction == ref->direction ? ++match_lvl : 0;
320 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
321
322 if (match_lvl == 4) {
323 /* perfect-fit - return the result */
324 return entry;
325 } else if (match_lvl > last_lvl) {
326 /*
327 * We found an entry that fits better then the
328 * previous one or it is the 1st match.
329 */
330 last_lvl = match_lvl;
331 ret = entry;
332 }
333 }
334
335 /*
336 * If we have multiple matches but no perfect-fit, just return
337 * NULL.
338 */
339 ret = (matches == 1) ? ret : NULL;
340
341 return ret;
342}
343
344static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
345 struct dma_debug_entry *ref)
346{
347 return __hash_bucket_find(bucket, ref, exact_match);
348}
349
350static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
351 struct dma_debug_entry *ref,
352 unsigned long *flags)
353{
354
355 struct dma_debug_entry *entry, index = *ref;
356 int limit = min(HASH_SIZE, (index.dev_addr >> HASH_FN_SHIFT) + 1);
357
358 for (int i = 0; i < limit; i++) {
359 entry = __hash_bucket_find(*bucket, ref, containing_match);
360
361 if (entry)
362 return entry;
363
364 /*
365 * Nothing found, go back a hash bucket
366 */
367 put_hash_bucket(*bucket, *flags);
368 index.dev_addr -= (1 << HASH_FN_SHIFT);
369 *bucket = get_hash_bucket(&index, flags);
370 }
371
372 return NULL;
373}
374
375/*
376 * Add an entry to a hash bucket
377 */
378static void hash_bucket_add(struct hash_bucket *bucket,
379 struct dma_debug_entry *entry)
380{
381 list_add_tail(&entry->list, &bucket->list);
382}
383
384/*
385 * Remove entry from a hash bucket list
386 */
387static void hash_bucket_del(struct dma_debug_entry *entry)
388{
389 list_del(&entry->list);
390}
391
392static unsigned long long phys_addr(struct dma_debug_entry *entry)
393{
394 if (entry->type == dma_debug_resource)
395 return __pfn_to_phys(entry->pfn) + entry->offset;
396
397 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
398}
399
400/*
401 * For each mapping (initial cacheline in the case of
402 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
403 * scatterlist, or the cacheline specified in dma_map_single) insert
404 * into this tree using the cacheline as the key. At
405 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
406 * the entry already exists at insertion time add a tag as a reference
407 * count for the overlapping mappings. For now, the overlap tracking
408 * just ensures that 'unmaps' balance 'maps' before marking the
409 * cacheline idle, but we should also be flagging overlaps as an API
410 * violation.
411 *
412 * Memory usage is mostly constrained by the maximum number of available
413 * dma-debug entries in that we need a free dma_debug_entry before
414 * inserting into the tree. In the case of dma_map_page and
415 * dma_alloc_coherent there is only one dma_debug_entry and one
416 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
417 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
418 * entries into the tree.
419 */
420static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC);
421static DEFINE_SPINLOCK(radix_lock);
422#define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
423#define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
424#define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
425
426static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
427{
428 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
429 (entry->offset >> L1_CACHE_SHIFT);
430}
431
432static int active_cacheline_read_overlap(phys_addr_t cln)
433{
434 int overlap = 0, i;
435
436 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
437 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
438 overlap |= 1 << i;
439 return overlap;
440}
441
442static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
443{
444 int i;
445
446 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
447 return overlap;
448
449 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
450 if (overlap & 1 << i)
451 radix_tree_tag_set(&dma_active_cacheline, cln, i);
452 else
453 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
454
455 return overlap;
456}
457
458static void active_cacheline_inc_overlap(phys_addr_t cln)
459{
460 int overlap = active_cacheline_read_overlap(cln);
461
462 overlap = active_cacheline_set_overlap(cln, ++overlap);
463
464 /* If we overflowed the overlap counter then we're potentially
465 * leaking dma-mappings.
466 */
467 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
468 pr_fmt("exceeded %d overlapping mappings of cacheline %pa\n"),
469 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
470}
471
472static int active_cacheline_dec_overlap(phys_addr_t cln)
473{
474 int overlap = active_cacheline_read_overlap(cln);
475
476 return active_cacheline_set_overlap(cln, --overlap);
477}
478
479static int active_cacheline_insert(struct dma_debug_entry *entry)
480{
481 phys_addr_t cln = to_cacheline_number(entry);
482 unsigned long flags;
483 int rc;
484
485 /* If the device is not writing memory then we don't have any
486 * concerns about the cpu consuming stale data. This mitigates
487 * legitimate usages of overlapping mappings.
488 */
489 if (entry->direction == DMA_TO_DEVICE)
490 return 0;
491
492 spin_lock_irqsave(&radix_lock, flags);
493 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
494 if (rc == -EEXIST)
495 active_cacheline_inc_overlap(cln);
496 spin_unlock_irqrestore(&radix_lock, flags);
497
498 return rc;
499}
500
501static void active_cacheline_remove(struct dma_debug_entry *entry)
502{
503 phys_addr_t cln = to_cacheline_number(entry);
504 unsigned long flags;
505
506 /* ...mirror the insert case */
507 if (entry->direction == DMA_TO_DEVICE)
508 return;
509
510 spin_lock_irqsave(&radix_lock, flags);
511 /* since we are counting overlaps the final put of the
512 * cacheline will occur when the overlap count is 0.
513 * active_cacheline_dec_overlap() returns -1 in that case
514 */
515 if (active_cacheline_dec_overlap(cln) < 0)
516 radix_tree_delete(&dma_active_cacheline, cln);
517 spin_unlock_irqrestore(&radix_lock, flags);
518}
519
520/*
521 * Dump mappings entries on kernel space for debugging purposes
522 */
523void debug_dma_dump_mappings(struct device *dev)
524{
525 int idx;
526 phys_addr_t cln;
527
528 for (idx = 0; idx < HASH_SIZE; idx++) {
529 struct hash_bucket *bucket = &dma_entry_hash[idx];
530 struct dma_debug_entry *entry;
531 unsigned long flags;
532
533 spin_lock_irqsave(&bucket->lock, flags);
534 list_for_each_entry(entry, &bucket->list, list) {
535 if (!dev || dev == entry->dev) {
536 cln = to_cacheline_number(entry);
537 dev_info(entry->dev,
538 "%s idx %d P=%llx N=%lx D=%llx L=%llx cln=%pa %s %s\n",
539 type2name[entry->type], idx,
540 phys_addr(entry), entry->pfn,
541 entry->dev_addr, entry->size,
542 &cln, dir2name[entry->direction],
543 maperr2str[entry->map_err_type]);
544 }
545 }
546 spin_unlock_irqrestore(&bucket->lock, flags);
547
548 cond_resched();
549 }
550}
551
552/*
553 * Dump mappings entries on user space via debugfs
554 */
555static int dump_show(struct seq_file *seq, void *v)
556{
557 int idx;
558 phys_addr_t cln;
559
560 for (idx = 0; idx < HASH_SIZE; idx++) {
561 struct hash_bucket *bucket = &dma_entry_hash[idx];
562 struct dma_debug_entry *entry;
563 unsigned long flags;
564
565 spin_lock_irqsave(&bucket->lock, flags);
566 list_for_each_entry(entry, &bucket->list, list) {
567 cln = to_cacheline_number(entry);
568 seq_printf(seq,
569 "%s %s %s idx %d P=%llx N=%lx D=%llx L=%llx cln=%pa %s %s\n",
570 dev_driver_string(entry->dev),
571 dev_name(entry->dev),
572 type2name[entry->type], idx,
573 phys_addr(entry), entry->pfn,
574 entry->dev_addr, entry->size,
575 &cln, dir2name[entry->direction],
576 maperr2str[entry->map_err_type]);
577 }
578 spin_unlock_irqrestore(&bucket->lock, flags);
579 }
580 return 0;
581}
582DEFINE_SHOW_ATTRIBUTE(dump);
583
584/*
585 * Wrapper function for adding an entry to the hash.
586 * This function takes care of locking itself.
587 */
588static void add_dma_entry(struct dma_debug_entry *entry, unsigned long attrs)
589{
590 struct hash_bucket *bucket;
591 unsigned long flags;
592 int rc;
593
594 bucket = get_hash_bucket(entry, &flags);
595 hash_bucket_add(bucket, entry);
596 put_hash_bucket(bucket, flags);
597
598 rc = active_cacheline_insert(entry);
599 if (rc == -ENOMEM) {
600 pr_err_once("cacheline tracking ENOMEM, dma-debug disabled\n");
601 global_disable = true;
602 } else if (rc == -EEXIST && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
603 err_printk(entry->dev, entry,
604 "cacheline tracking EEXIST, overlapping mappings aren't supported\n");
605 }
606}
607
608static int dma_debug_create_entries(gfp_t gfp)
609{
610 struct dma_debug_entry *entry;
611 int i;
612
613 entry = (void *)get_zeroed_page(gfp);
614 if (!entry)
615 return -ENOMEM;
616
617 for (i = 0; i < DMA_DEBUG_DYNAMIC_ENTRIES; i++)
618 list_add_tail(&entry[i].list, &free_entries);
619
620 num_free_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
621 nr_total_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
622
623 return 0;
624}
625
626static struct dma_debug_entry *__dma_entry_alloc(void)
627{
628 struct dma_debug_entry *entry;
629
630 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
631 list_del(&entry->list);
632 memset(entry, 0, sizeof(*entry));
633
634 num_free_entries -= 1;
635 if (num_free_entries < min_free_entries)
636 min_free_entries = num_free_entries;
637
638 return entry;
639}
640
641/*
642 * This should be called outside of free_entries_lock scope to avoid potential
643 * deadlocks with serial consoles that use DMA.
644 */
645static void __dma_entry_alloc_check_leak(u32 nr_entries)
646{
647 u32 tmp = nr_entries % nr_prealloc_entries;
648
649 /* Shout each time we tick over some multiple of the initial pool */
650 if (tmp < DMA_DEBUG_DYNAMIC_ENTRIES) {
651 pr_info("dma_debug_entry pool grown to %u (%u00%%)\n",
652 nr_entries,
653 (nr_entries / nr_prealloc_entries));
654 }
655}
656
657/* struct dma_entry allocator
658 *
659 * The next two functions implement the allocator for
660 * struct dma_debug_entries.
661 */
662static struct dma_debug_entry *dma_entry_alloc(void)
663{
664 bool alloc_check_leak = false;
665 struct dma_debug_entry *entry;
666 unsigned long flags;
667 u32 nr_entries;
668
669 spin_lock_irqsave(&free_entries_lock, flags);
670 if (num_free_entries == 0) {
671 if (dma_debug_create_entries(GFP_ATOMIC)) {
672 global_disable = true;
673 spin_unlock_irqrestore(&free_entries_lock, flags);
674 pr_err("debugging out of memory - disabling\n");
675 return NULL;
676 }
677 alloc_check_leak = true;
678 nr_entries = nr_total_entries;
679 }
680
681 entry = __dma_entry_alloc();
682
683 spin_unlock_irqrestore(&free_entries_lock, flags);
684
685 if (alloc_check_leak)
686 __dma_entry_alloc_check_leak(nr_entries);
687
688#ifdef CONFIG_STACKTRACE
689 entry->stack_len = stack_trace_save(entry->stack_entries,
690 ARRAY_SIZE(entry->stack_entries),
691 1);
692#endif
693 return entry;
694}
695
696static void dma_entry_free(struct dma_debug_entry *entry)
697{
698 unsigned long flags;
699
700 active_cacheline_remove(entry);
701
702 /*
703 * add to beginning of the list - this way the entries are
704 * more likely cache hot when they are reallocated.
705 */
706 spin_lock_irqsave(&free_entries_lock, flags);
707 list_add(&entry->list, &free_entries);
708 num_free_entries += 1;
709 spin_unlock_irqrestore(&free_entries_lock, flags);
710}
711
712/*
713 * DMA-API debugging init code
714 *
715 * The init code does two things:
716 * 1. Initialize core data structures
717 * 2. Preallocate a given number of dma_debug_entry structs
718 */
719
720static ssize_t filter_read(struct file *file, char __user *user_buf,
721 size_t count, loff_t *ppos)
722{
723 char buf[NAME_MAX_LEN + 1];
724 unsigned long flags;
725 int len;
726
727 if (!current_driver_name[0])
728 return 0;
729
730 /*
731 * We can't copy to userspace directly because current_driver_name can
732 * only be read under the driver_name_lock with irqs disabled. So
733 * create a temporary copy first.
734 */
735 read_lock_irqsave(&driver_name_lock, flags);
736 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
737 read_unlock_irqrestore(&driver_name_lock, flags);
738
739 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
740}
741
742static ssize_t filter_write(struct file *file, const char __user *userbuf,
743 size_t count, loff_t *ppos)
744{
745 char buf[NAME_MAX_LEN];
746 unsigned long flags;
747 size_t len;
748 int i;
749
750 /*
751 * We can't copy from userspace directly. Access to
752 * current_driver_name is protected with a write_lock with irqs
753 * disabled. Since copy_from_user can fault and may sleep we
754 * need to copy to temporary buffer first
755 */
756 len = min(count, (size_t)(NAME_MAX_LEN - 1));
757 if (copy_from_user(buf, userbuf, len))
758 return -EFAULT;
759
760 buf[len] = 0;
761
762 write_lock_irqsave(&driver_name_lock, flags);
763
764 /*
765 * Now handle the string we got from userspace very carefully.
766 * The rules are:
767 * - only use the first token we got
768 * - token delimiter is everything looking like a space
769 * character (' ', '\n', '\t' ...)
770 *
771 */
772 if (!isalnum(buf[0])) {
773 /*
774 * If the first character userspace gave us is not
775 * alphanumerical then assume the filter should be
776 * switched off.
777 */
778 if (current_driver_name[0])
779 pr_info("switching off dma-debug driver filter\n");
780 current_driver_name[0] = 0;
781 current_driver = NULL;
782 goto out_unlock;
783 }
784
785 /*
786 * Now parse out the first token and use it as the name for the
787 * driver to filter for.
788 */
789 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
790 current_driver_name[i] = buf[i];
791 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
792 break;
793 }
794 current_driver_name[i] = 0;
795 current_driver = NULL;
796
797 pr_info("enable driver filter for driver [%s]\n",
798 current_driver_name);
799
800out_unlock:
801 write_unlock_irqrestore(&driver_name_lock, flags);
802
803 return count;
804}
805
806static const struct file_operations filter_fops = {
807 .read = filter_read,
808 .write = filter_write,
809 .llseek = default_llseek,
810};
811
812static int __init dma_debug_fs_init(void)
813{
814 struct dentry *dentry = debugfs_create_dir("dma-api", NULL);
815
816 debugfs_create_bool("disabled", 0444, dentry, &global_disable);
817 debugfs_create_u32("error_count", 0444, dentry, &error_count);
818 debugfs_create_u32("all_errors", 0644, dentry, &show_all_errors);
819 debugfs_create_u32("num_errors", 0644, dentry, &show_num_errors);
820 debugfs_create_u32("num_free_entries", 0444, dentry, &num_free_entries);
821 debugfs_create_u32("min_free_entries", 0444, dentry, &min_free_entries);
822 debugfs_create_u32("nr_total_entries", 0444, dentry, &nr_total_entries);
823 debugfs_create_file("driver_filter", 0644, dentry, NULL, &filter_fops);
824 debugfs_create_file("dump", 0444, dentry, NULL, &dump_fops);
825
826 return 0;
827}
828core_initcall_sync(dma_debug_fs_init);
829
830static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
831{
832 struct dma_debug_entry *entry;
833 unsigned long flags;
834 int count = 0, i;
835
836 for (i = 0; i < HASH_SIZE; ++i) {
837 spin_lock_irqsave(&dma_entry_hash[i].lock, flags);
838 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
839 if (entry->dev == dev) {
840 count += 1;
841 *out_entry = entry;
842 }
843 }
844 spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
845 }
846
847 return count;
848}
849
850static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
851{
852 struct device *dev = data;
853 struct dma_debug_entry *entry;
854 int count;
855
856 if (dma_debug_disabled())
857 return 0;
858
859 switch (action) {
860 case BUS_NOTIFY_UNBOUND_DRIVER:
861 count = device_dma_allocations(dev, &entry);
862 if (count == 0)
863 break;
864 err_printk(dev, entry, "device driver has pending "
865 "DMA allocations while released from device "
866 "[count=%d]\n"
867 "One of leaked entries details: "
868 "[device address=0x%016llx] [size=%llu bytes] "
869 "[mapped with %s] [mapped as %s]\n",
870 count, entry->dev_addr, entry->size,
871 dir2name[entry->direction], type2name[entry->type]);
872 break;
873 default:
874 break;
875 }
876
877 return 0;
878}
879
880void dma_debug_add_bus(const struct bus_type *bus)
881{
882 struct notifier_block *nb;
883
884 if (dma_debug_disabled())
885 return;
886
887 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
888 if (nb == NULL) {
889 pr_err("dma_debug_add_bus: out of memory\n");
890 return;
891 }
892
893 nb->notifier_call = dma_debug_device_change;
894
895 bus_register_notifier(bus, nb);
896}
897
898static int dma_debug_init(void)
899{
900 int i, nr_pages;
901
902 /* Do not use dma_debug_initialized here, since we really want to be
903 * called to set dma_debug_initialized
904 */
905 if (global_disable)
906 return 0;
907
908 for (i = 0; i < HASH_SIZE; ++i) {
909 INIT_LIST_HEAD(&dma_entry_hash[i].list);
910 spin_lock_init(&dma_entry_hash[i].lock);
911 }
912
913 nr_pages = DIV_ROUND_UP(nr_prealloc_entries, DMA_DEBUG_DYNAMIC_ENTRIES);
914 for (i = 0; i < nr_pages; ++i)
915 dma_debug_create_entries(GFP_KERNEL);
916 if (num_free_entries >= nr_prealloc_entries) {
917 pr_info("preallocated %d debug entries\n", nr_total_entries);
918 } else if (num_free_entries > 0) {
919 pr_warn("%d debug entries requested but only %d allocated\n",
920 nr_prealloc_entries, nr_total_entries);
921 } else {
922 pr_err("debugging out of memory error - disabled\n");
923 global_disable = true;
924
925 return 0;
926 }
927 min_free_entries = num_free_entries;
928
929 dma_debug_initialized = true;
930
931 pr_info("debugging enabled by kernel config\n");
932 return 0;
933}
934core_initcall(dma_debug_init);
935
936static __init int dma_debug_cmdline(char *str)
937{
938 if (!str)
939 return -EINVAL;
940
941 if (strncmp(str, "off", 3) == 0) {
942 pr_info("debugging disabled on kernel command line\n");
943 global_disable = true;
944 }
945
946 return 1;
947}
948
949static __init int dma_debug_entries_cmdline(char *str)
950{
951 if (!str)
952 return -EINVAL;
953 if (!get_option(&str, &nr_prealloc_entries))
954 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
955 return 1;
956}
957
958__setup("dma_debug=", dma_debug_cmdline);
959__setup("dma_debug_entries=", dma_debug_entries_cmdline);
960
961static void check_unmap(struct dma_debug_entry *ref)
962{
963 struct dma_debug_entry *entry;
964 struct hash_bucket *bucket;
965 unsigned long flags;
966
967 bucket = get_hash_bucket(ref, &flags);
968 entry = bucket_find_exact(bucket, ref);
969
970 if (!entry) {
971 /* must drop lock before calling dma_mapping_error */
972 put_hash_bucket(bucket, flags);
973
974 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
975 err_printk(ref->dev, NULL,
976 "device driver tries to free an "
977 "invalid DMA memory address\n");
978 } else {
979 err_printk(ref->dev, NULL,
980 "device driver tries to free DMA "
981 "memory it has not allocated [device "
982 "address=0x%016llx] [size=%llu bytes]\n",
983 ref->dev_addr, ref->size);
984 }
985 return;
986 }
987
988 if (ref->size != entry->size) {
989 err_printk(ref->dev, entry, "device driver frees "
990 "DMA memory with different size "
991 "[device address=0x%016llx] [map size=%llu bytes] "
992 "[unmap size=%llu bytes]\n",
993 ref->dev_addr, entry->size, ref->size);
994 }
995
996 if (ref->type != entry->type) {
997 err_printk(ref->dev, entry, "device driver frees "
998 "DMA memory with wrong function "
999 "[device address=0x%016llx] [size=%llu bytes] "
1000 "[mapped as %s] [unmapped as %s]\n",
1001 ref->dev_addr, ref->size,
1002 type2name[entry->type], type2name[ref->type]);
1003 } else if ((entry->type == dma_debug_coherent) &&
1004 (phys_addr(ref) != phys_addr(entry))) {
1005 err_printk(ref->dev, entry, "device driver frees "
1006 "DMA memory with different CPU address "
1007 "[device address=0x%016llx] [size=%llu bytes] "
1008 "[cpu alloc address=0x%016llx] "
1009 "[cpu free address=0x%016llx]",
1010 ref->dev_addr, ref->size,
1011 phys_addr(entry),
1012 phys_addr(ref));
1013 }
1014
1015 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1016 ref->sg_call_ents != entry->sg_call_ents) {
1017 err_printk(ref->dev, entry, "device driver frees "
1018 "DMA sg list with different entry count "
1019 "[map count=%d] [unmap count=%d]\n",
1020 entry->sg_call_ents, ref->sg_call_ents);
1021 }
1022
1023 /*
1024 * This may be no bug in reality - but most implementations of the
1025 * DMA API don't handle this properly, so check for it here
1026 */
1027 if (ref->direction != entry->direction) {
1028 err_printk(ref->dev, entry, "device driver frees "
1029 "DMA memory with different direction "
1030 "[device address=0x%016llx] [size=%llu bytes] "
1031 "[mapped with %s] [unmapped with %s]\n",
1032 ref->dev_addr, ref->size,
1033 dir2name[entry->direction],
1034 dir2name[ref->direction]);
1035 }
1036
1037 /*
1038 * Drivers should use dma_mapping_error() to check the returned
1039 * addresses of dma_map_single() and dma_map_page().
1040 * If not, print this warning message. See Documentation/core-api/dma-api.rst.
1041 */
1042 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1043 err_printk(ref->dev, entry,
1044 "device driver failed to check map error"
1045 "[device address=0x%016llx] [size=%llu bytes] "
1046 "[mapped as %s]",
1047 ref->dev_addr, ref->size,
1048 type2name[entry->type]);
1049 }
1050
1051 hash_bucket_del(entry);
1052 dma_entry_free(entry);
1053
1054 put_hash_bucket(bucket, flags);
1055}
1056
1057static void check_for_stack(struct device *dev,
1058 struct page *page, size_t offset)
1059{
1060 void *addr;
1061 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1062
1063 if (!stack_vm_area) {
1064 /* Stack is direct-mapped. */
1065 if (PageHighMem(page))
1066 return;
1067 addr = page_address(page) + offset;
1068 if (object_is_on_stack(addr))
1069 err_printk(dev, NULL, "device driver maps memory from stack [addr=%p]\n", addr);
1070 } else {
1071 /* Stack is vmalloced. */
1072 int i;
1073
1074 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1075 if (page != stack_vm_area->pages[i])
1076 continue;
1077
1078 addr = (u8 *)current->stack + i * PAGE_SIZE + offset;
1079 err_printk(dev, NULL, "device driver maps memory from stack [probable addr=%p]\n", addr);
1080 break;
1081 }
1082 }
1083}
1084
1085static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
1086{
1087 if (memory_intersects(_stext, _etext, addr, len) ||
1088 memory_intersects(__start_rodata, __end_rodata, addr, len))
1089 err_printk(dev, NULL, "device driver maps memory from kernel text or rodata [addr=%p] [len=%lu]\n", addr, len);
1090}
1091
1092static void check_sync(struct device *dev,
1093 struct dma_debug_entry *ref,
1094 bool to_cpu)
1095{
1096 struct dma_debug_entry *entry;
1097 struct hash_bucket *bucket;
1098 unsigned long flags;
1099
1100 bucket = get_hash_bucket(ref, &flags);
1101
1102 entry = bucket_find_contain(&bucket, ref, &flags);
1103
1104 if (!entry) {
1105 err_printk(dev, NULL, "device driver tries "
1106 "to sync DMA memory it has not allocated "
1107 "[device address=0x%016llx] [size=%llu bytes]\n",
1108 (unsigned long long)ref->dev_addr, ref->size);
1109 goto out;
1110 }
1111
1112 if (ref->size > entry->size) {
1113 err_printk(dev, entry, "device driver syncs"
1114 " DMA memory outside allocated range "
1115 "[device address=0x%016llx] "
1116 "[allocation size=%llu bytes] "
1117 "[sync offset+size=%llu]\n",
1118 entry->dev_addr, entry->size,
1119 ref->size);
1120 }
1121
1122 if (entry->direction == DMA_BIDIRECTIONAL)
1123 goto out;
1124
1125 if (ref->direction != entry->direction) {
1126 err_printk(dev, entry, "device driver syncs "
1127 "DMA memory with different direction "
1128 "[device address=0x%016llx] [size=%llu bytes] "
1129 "[mapped with %s] [synced with %s]\n",
1130 (unsigned long long)ref->dev_addr, entry->size,
1131 dir2name[entry->direction],
1132 dir2name[ref->direction]);
1133 }
1134
1135 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
1136 !(ref->direction == DMA_TO_DEVICE))
1137 err_printk(dev, entry, "device driver syncs "
1138 "device read-only DMA memory for cpu "
1139 "[device address=0x%016llx] [size=%llu bytes] "
1140 "[mapped with %s] [synced with %s]\n",
1141 (unsigned long long)ref->dev_addr, entry->size,
1142 dir2name[entry->direction],
1143 dir2name[ref->direction]);
1144
1145 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
1146 !(ref->direction == DMA_FROM_DEVICE))
1147 err_printk(dev, entry, "device driver syncs "
1148 "device write-only DMA memory to device "
1149 "[device address=0x%016llx] [size=%llu bytes] "
1150 "[mapped with %s] [synced with %s]\n",
1151 (unsigned long long)ref->dev_addr, entry->size,
1152 dir2name[entry->direction],
1153 dir2name[ref->direction]);
1154
1155 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1156 ref->sg_call_ents != entry->sg_call_ents) {
1157 err_printk(ref->dev, entry, "device driver syncs "
1158 "DMA sg list with different entry count "
1159 "[map count=%d] [sync count=%d]\n",
1160 entry->sg_call_ents, ref->sg_call_ents);
1161 }
1162
1163out:
1164 put_hash_bucket(bucket, flags);
1165}
1166
1167static void check_sg_segment(struct device *dev, struct scatterlist *sg)
1168{
1169#ifdef CONFIG_DMA_API_DEBUG_SG
1170 unsigned int max_seg = dma_get_max_seg_size(dev);
1171 u64 start, end, boundary = dma_get_seg_boundary(dev);
1172
1173 /*
1174 * Either the driver forgot to set dma_parms appropriately, or
1175 * whoever generated the list forgot to check them.
1176 */
1177 if (sg->length > max_seg)
1178 err_printk(dev, NULL, "mapping sg segment longer than device claims to support [len=%u] [max=%u]\n",
1179 sg->length, max_seg);
1180 /*
1181 * In some cases this could potentially be the DMA API
1182 * implementation's fault, but it would usually imply that
1183 * the scatterlist was built inappropriately to begin with.
1184 */
1185 start = sg_dma_address(sg);
1186 end = start + sg_dma_len(sg) - 1;
1187 if ((start ^ end) & ~boundary)
1188 err_printk(dev, NULL, "mapping sg segment across boundary [start=0x%016llx] [end=0x%016llx] [boundary=0x%016llx]\n",
1189 start, end, boundary);
1190#endif
1191}
1192
1193void debug_dma_map_single(struct device *dev, const void *addr,
1194 unsigned long len)
1195{
1196 if (unlikely(dma_debug_disabled()))
1197 return;
1198
1199 if (!virt_addr_valid(addr))
1200 err_printk(dev, NULL, "device driver maps memory from invalid area [addr=%p] [len=%lu]\n",
1201 addr, len);
1202
1203 if (is_vmalloc_addr(addr))
1204 err_printk(dev, NULL, "device driver maps memory from vmalloc area [addr=%p] [len=%lu]\n",
1205 addr, len);
1206}
1207EXPORT_SYMBOL(debug_dma_map_single);
1208
1209void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1210 size_t size, int direction, dma_addr_t dma_addr,
1211 unsigned long attrs)
1212{
1213 struct dma_debug_entry *entry;
1214
1215 if (unlikely(dma_debug_disabled()))
1216 return;
1217
1218 if (dma_mapping_error(dev, dma_addr))
1219 return;
1220
1221 entry = dma_entry_alloc();
1222 if (!entry)
1223 return;
1224
1225 entry->dev = dev;
1226 entry->type = dma_debug_single;
1227 entry->pfn = page_to_pfn(page);
1228 entry->offset = offset;
1229 entry->dev_addr = dma_addr;
1230 entry->size = size;
1231 entry->direction = direction;
1232 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1233
1234 check_for_stack(dev, page, offset);
1235
1236 if (!PageHighMem(page)) {
1237 void *addr = page_address(page) + offset;
1238
1239 check_for_illegal_area(dev, addr, size);
1240 }
1241
1242 add_dma_entry(entry, attrs);
1243}
1244
1245void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1246{
1247 struct dma_debug_entry ref;
1248 struct dma_debug_entry *entry;
1249 struct hash_bucket *bucket;
1250 unsigned long flags;
1251
1252 if (unlikely(dma_debug_disabled()))
1253 return;
1254
1255 ref.dev = dev;
1256 ref.dev_addr = dma_addr;
1257 bucket = get_hash_bucket(&ref, &flags);
1258
1259 list_for_each_entry(entry, &bucket->list, list) {
1260 if (!exact_match(&ref, entry))
1261 continue;
1262
1263 /*
1264 * The same physical address can be mapped multiple
1265 * times. Without a hardware IOMMU this results in the
1266 * same device addresses being put into the dma-debug
1267 * hash multiple times too. This can result in false
1268 * positives being reported. Therefore we implement a
1269 * best-fit algorithm here which updates the first entry
1270 * from the hash which fits the reference value and is
1271 * not currently listed as being checked.
1272 */
1273 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1274 entry->map_err_type = MAP_ERR_CHECKED;
1275 break;
1276 }
1277 }
1278
1279 put_hash_bucket(bucket, flags);
1280}
1281EXPORT_SYMBOL(debug_dma_mapping_error);
1282
1283void debug_dma_unmap_page(struct device *dev, dma_addr_t dma_addr,
1284 size_t size, int direction)
1285{
1286 struct dma_debug_entry ref = {
1287 .type = dma_debug_single,
1288 .dev = dev,
1289 .dev_addr = dma_addr,
1290 .size = size,
1291 .direction = direction,
1292 };
1293
1294 if (unlikely(dma_debug_disabled()))
1295 return;
1296 check_unmap(&ref);
1297}
1298
1299void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1300 int nents, int mapped_ents, int direction,
1301 unsigned long attrs)
1302{
1303 struct dma_debug_entry *entry;
1304 struct scatterlist *s;
1305 int i;
1306
1307 if (unlikely(dma_debug_disabled()))
1308 return;
1309
1310 for_each_sg(sg, s, nents, i) {
1311 check_for_stack(dev, sg_page(s), s->offset);
1312 if (!PageHighMem(sg_page(s)))
1313 check_for_illegal_area(dev, sg_virt(s), s->length);
1314 }
1315
1316 for_each_sg(sg, s, mapped_ents, i) {
1317 entry = dma_entry_alloc();
1318 if (!entry)
1319 return;
1320
1321 entry->type = dma_debug_sg;
1322 entry->dev = dev;
1323 entry->pfn = page_to_pfn(sg_page(s));
1324 entry->offset = s->offset;
1325 entry->size = sg_dma_len(s);
1326 entry->dev_addr = sg_dma_address(s);
1327 entry->direction = direction;
1328 entry->sg_call_ents = nents;
1329 entry->sg_mapped_ents = mapped_ents;
1330
1331 check_sg_segment(dev, s);
1332
1333 add_dma_entry(entry, attrs);
1334 }
1335}
1336
1337static int get_nr_mapped_entries(struct device *dev,
1338 struct dma_debug_entry *ref)
1339{
1340 struct dma_debug_entry *entry;
1341 struct hash_bucket *bucket;
1342 unsigned long flags;
1343 int mapped_ents;
1344
1345 bucket = get_hash_bucket(ref, &flags);
1346 entry = bucket_find_exact(bucket, ref);
1347 mapped_ents = 0;
1348
1349 if (entry)
1350 mapped_ents = entry->sg_mapped_ents;
1351 put_hash_bucket(bucket, flags);
1352
1353 return mapped_ents;
1354}
1355
1356void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1357 int nelems, int dir)
1358{
1359 struct scatterlist *s;
1360 int mapped_ents = 0, i;
1361
1362 if (unlikely(dma_debug_disabled()))
1363 return;
1364
1365 for_each_sg(sglist, s, nelems, i) {
1366
1367 struct dma_debug_entry ref = {
1368 .type = dma_debug_sg,
1369 .dev = dev,
1370 .pfn = page_to_pfn(sg_page(s)),
1371 .offset = s->offset,
1372 .dev_addr = sg_dma_address(s),
1373 .size = sg_dma_len(s),
1374 .direction = dir,
1375 .sg_call_ents = nelems,
1376 };
1377
1378 if (mapped_ents && i >= mapped_ents)
1379 break;
1380
1381 if (!i)
1382 mapped_ents = get_nr_mapped_entries(dev, &ref);
1383
1384 check_unmap(&ref);
1385 }
1386}
1387
1388void debug_dma_alloc_coherent(struct device *dev, size_t size,
1389 dma_addr_t dma_addr, void *virt,
1390 unsigned long attrs)
1391{
1392 struct dma_debug_entry *entry;
1393
1394 if (unlikely(dma_debug_disabled()))
1395 return;
1396
1397 if (unlikely(virt == NULL))
1398 return;
1399
1400 /* handle vmalloc and linear addresses */
1401 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1402 return;
1403
1404 entry = dma_entry_alloc();
1405 if (!entry)
1406 return;
1407
1408 entry->type = dma_debug_coherent;
1409 entry->dev = dev;
1410 entry->offset = offset_in_page(virt);
1411 entry->size = size;
1412 entry->dev_addr = dma_addr;
1413 entry->direction = DMA_BIDIRECTIONAL;
1414
1415 if (is_vmalloc_addr(virt))
1416 entry->pfn = vmalloc_to_pfn(virt);
1417 else
1418 entry->pfn = page_to_pfn(virt_to_page(virt));
1419
1420 add_dma_entry(entry, attrs);
1421}
1422
1423void debug_dma_free_coherent(struct device *dev, size_t size,
1424 void *virt, dma_addr_t dma_addr)
1425{
1426 struct dma_debug_entry ref = {
1427 .type = dma_debug_coherent,
1428 .dev = dev,
1429 .offset = offset_in_page(virt),
1430 .dev_addr = dma_addr,
1431 .size = size,
1432 .direction = DMA_BIDIRECTIONAL,
1433 };
1434
1435 /* handle vmalloc and linear addresses */
1436 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1437 return;
1438
1439 if (is_vmalloc_addr(virt))
1440 ref.pfn = vmalloc_to_pfn(virt);
1441 else
1442 ref.pfn = page_to_pfn(virt_to_page(virt));
1443
1444 if (unlikely(dma_debug_disabled()))
1445 return;
1446
1447 check_unmap(&ref);
1448}
1449
1450void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1451 int direction, dma_addr_t dma_addr,
1452 unsigned long attrs)
1453{
1454 struct dma_debug_entry *entry;
1455
1456 if (unlikely(dma_debug_disabled()))
1457 return;
1458
1459 entry = dma_entry_alloc();
1460 if (!entry)
1461 return;
1462
1463 entry->type = dma_debug_resource;
1464 entry->dev = dev;
1465 entry->pfn = PHYS_PFN(addr);
1466 entry->offset = offset_in_page(addr);
1467 entry->size = size;
1468 entry->dev_addr = dma_addr;
1469 entry->direction = direction;
1470 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1471
1472 add_dma_entry(entry, attrs);
1473}
1474
1475void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1476 size_t size, int direction)
1477{
1478 struct dma_debug_entry ref = {
1479 .type = dma_debug_resource,
1480 .dev = dev,
1481 .dev_addr = dma_addr,
1482 .size = size,
1483 .direction = direction,
1484 };
1485
1486 if (unlikely(dma_debug_disabled()))
1487 return;
1488
1489 check_unmap(&ref);
1490}
1491
1492void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1493 size_t size, int direction)
1494{
1495 struct dma_debug_entry ref;
1496
1497 if (unlikely(dma_debug_disabled()))
1498 return;
1499
1500 ref.type = dma_debug_single;
1501 ref.dev = dev;
1502 ref.dev_addr = dma_handle;
1503 ref.size = size;
1504 ref.direction = direction;
1505 ref.sg_call_ents = 0;
1506
1507 check_sync(dev, &ref, true);
1508}
1509
1510void debug_dma_sync_single_for_device(struct device *dev,
1511 dma_addr_t dma_handle, size_t size,
1512 int direction)
1513{
1514 struct dma_debug_entry ref;
1515
1516 if (unlikely(dma_debug_disabled()))
1517 return;
1518
1519 ref.type = dma_debug_single;
1520 ref.dev = dev;
1521 ref.dev_addr = dma_handle;
1522 ref.size = size;
1523 ref.direction = direction;
1524 ref.sg_call_ents = 0;
1525
1526 check_sync(dev, &ref, false);
1527}
1528
1529void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1530 int nelems, int direction)
1531{
1532 struct scatterlist *s;
1533 int mapped_ents = 0, i;
1534
1535 if (unlikely(dma_debug_disabled()))
1536 return;
1537
1538 for_each_sg(sg, s, nelems, i) {
1539
1540 struct dma_debug_entry ref = {
1541 .type = dma_debug_sg,
1542 .dev = dev,
1543 .pfn = page_to_pfn(sg_page(s)),
1544 .offset = s->offset,
1545 .dev_addr = sg_dma_address(s),
1546 .size = sg_dma_len(s),
1547 .direction = direction,
1548 .sg_call_ents = nelems,
1549 };
1550
1551 if (!i)
1552 mapped_ents = get_nr_mapped_entries(dev, &ref);
1553
1554 if (i >= mapped_ents)
1555 break;
1556
1557 check_sync(dev, &ref, true);
1558 }
1559}
1560
1561void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1562 int nelems, int direction)
1563{
1564 struct scatterlist *s;
1565 int mapped_ents = 0, i;
1566
1567 if (unlikely(dma_debug_disabled()))
1568 return;
1569
1570 for_each_sg(sg, s, nelems, i) {
1571
1572 struct dma_debug_entry ref = {
1573 .type = dma_debug_sg,
1574 .dev = dev,
1575 .pfn = page_to_pfn(sg_page(s)),
1576 .offset = s->offset,
1577 .dev_addr = sg_dma_address(s),
1578 .size = sg_dma_len(s),
1579 .direction = direction,
1580 .sg_call_ents = nelems,
1581 };
1582 if (!i)
1583 mapped_ents = get_nr_mapped_entries(dev, &ref);
1584
1585 if (i >= mapped_ents)
1586 break;
1587
1588 check_sync(dev, &ref, false);
1589 }
1590}
1591
1592static int __init dma_debug_driver_setup(char *str)
1593{
1594 int i;
1595
1596 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1597 current_driver_name[i] = *str;
1598 if (*str == 0)
1599 break;
1600 }
1601
1602 if (current_driver_name[0])
1603 pr_info("enable driver filter for driver [%s]\n",
1604 current_driver_name);
1605
1606
1607 return 1;
1608}
1609__setup("dma_debug_driver=", dma_debug_driver_setup);