1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
8 #define pr_fmt(fmt) "DMA-API: " fmt
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>
29 #define HASH_SIZE 16384ULL
30 #define HASH_FN_SHIFT 13
31 #define HASH_FN_MASK (HASH_SIZE - 1)
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))
45 MAP_ERR_CHECK_NOT_APPLICABLE,
50 #define DMA_DEBUG_STACKTRACE_ENTRIES 5
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
68 struct dma_debug_entry {
69 struct list_head list;
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];
84 } ____cacheline_aligned_in_smp;
86 typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
89 struct list_head list;
93 /* Hash list to save the allocated dma addresses */
94 static struct hash_bucket dma_entry_hash[HASH_SIZE];
95 /* List of pre-allocated dma_debug_entry's */
96 static LIST_HEAD(free_entries);
97 /* Lock for the list above */
98 static DEFINE_SPINLOCK(free_entries_lock);
100 /* Global disable flag - will be set in case of an error */
101 static bool global_disable __read_mostly;
103 /* Early initialization disable flag, set at the end of dma_debug_init */
104 static bool dma_debug_initialized __read_mostly;
106 static inline bool dma_debug_disabled(void)
108 return global_disable || !dma_debug_initialized;
111 /* Global error count */
112 static u32 error_count;
114 /* Global error show enable*/
115 static u32 show_all_errors __read_mostly;
116 /* Number of errors to show */
117 static u32 show_num_errors = 1;
119 static u32 num_free_entries;
120 static u32 min_free_entries;
121 static u32 nr_total_entries;
123 /* number of preallocated entries requested by kernel cmdline */
124 static u32 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
126 /* per-driver filter related state */
128 #define NAME_MAX_LEN 64
130 static char current_driver_name[NAME_MAX_LEN] __read_mostly;
131 static struct device_driver *current_driver __read_mostly;
133 static DEFINE_RWLOCK(driver_name_lock);
135 static 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",
141 static const char *type2name[] = {
142 [dma_debug_single] = "single",
143 [dma_debug_sg] = "scatter-gather",
144 [dma_debug_coherent] = "coherent",
145 [dma_debug_resource] = "resource",
148 static 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",
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:
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.
168 static inline void dump_entry_trace(struct dma_debug_entry *entry)
170 #ifdef CONFIG_STACKTRACE
172 pr_warn("Mapped at:\n");
173 stack_trace_print(entry->stack_entries, entry->stack_len, 0);
178 static bool driver_filter(struct device *dev)
180 struct device_driver *drv;
184 /* driver filter off */
185 if (likely(!current_driver_name[0]))
188 /* driver filter on and initialized */
189 if (current_driver && dev && dev->driver == current_driver)
192 /* driver filter on, but we can't filter on a NULL device... */
196 if (current_driver || !current_driver_name[0])
199 /* driver filter on but not yet initialized */
204 /* lock to protect against change of current_driver_name */
205 read_lock_irqsave(&driver_name_lock, flags);
209 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
210 current_driver = drv;
214 read_unlock_irqrestore(&driver_name_lock, flags);
219 #define err_printk(dev, entry, format, arg...) do { \
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); \
228 if (!show_all_errors && show_num_errors > 0) \
229 show_num_errors -= 1; \
233 * Hash related functions
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.
238 static int hash_fn(struct dma_debug_entry *entry)
241 * Hash function is based on the dma address.
242 * We use bits 20-27 here as the index into the hash
244 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
248 * Request exclusive access to a hash bucket for a given dma_debug_entry.
250 static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
251 unsigned long *flags)
252 __acquires(&dma_entry_hash[idx].lock)
254 int idx = hash_fn(entry);
255 unsigned long __flags;
257 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
259 return &dma_entry_hash[idx];
263 * Give up exclusive access to the hash bucket
265 static void put_hash_bucket(struct hash_bucket *bucket,
267 __releases(&bucket->lock)
269 spin_unlock_irqrestore(&bucket->lock, flags);
272 static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
274 return ((a->dev_addr == b->dev_addr) &&
275 (a->dev == b->dev)) ? true : false;
278 static bool containing_match(struct dma_debug_entry *a,
279 struct dma_debug_entry *b)
281 if (a->dev != b->dev)
284 if ((b->dev_addr <= a->dev_addr) &&
285 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
292 * Search a given entry in the hash bucket list
294 static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
295 struct dma_debug_entry *ref,
298 struct dma_debug_entry *entry, *ret = NULL;
299 int matches = 0, match_lvl, last_lvl = -1;
301 list_for_each_entry(entry, &bucket->list, list) {
302 if (!match(ref, entry))
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.
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;
322 if (match_lvl == 4) {
323 /* perfect-fit - return the result */
325 } else if (match_lvl > last_lvl) {
327 * We found an entry that fits better then the
328 * previous one or it is the 1st match.
330 last_lvl = match_lvl;
336 * If we have multiple matches but no perfect-fit, just return
339 ret = (matches == 1) ? ret : NULL;
344 static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
345 struct dma_debug_entry *ref)
347 return __hash_bucket_find(bucket, ref, exact_match);
350 static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
351 struct dma_debug_entry *ref,
352 unsigned long *flags)
355 struct dma_debug_entry *entry, index = *ref;
356 int limit = min(HASH_SIZE, (index.dev_addr >> HASH_FN_SHIFT) + 1);
358 for (int i = 0; i < limit; i++) {
359 entry = __hash_bucket_find(*bucket, ref, containing_match);
365 * Nothing found, go back a hash bucket
367 put_hash_bucket(*bucket, *flags);
368 index.dev_addr -= (1 << HASH_FN_SHIFT);
369 *bucket = get_hash_bucket(&index, flags);
376 * Add an entry to a hash bucket
378 static void hash_bucket_add(struct hash_bucket *bucket,
379 struct dma_debug_entry *entry)
381 list_add_tail(&entry->list, &bucket->list);
385 * Remove entry from a hash bucket list
387 static void hash_bucket_del(struct dma_debug_entry *entry)
389 list_del(&entry->list);
392 static unsigned long long phys_addr(struct dma_debug_entry *entry)
394 if (entry->type == dma_debug_resource)
395 return __pfn_to_phys(entry->pfn) + entry->offset;
397 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
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
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.
420 static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC);
421 static 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)
426 static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
428 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
429 (entry->offset >> L1_CACHE_SHIFT);
432 static int active_cacheline_read_overlap(phys_addr_t cln)
436 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
437 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
442 static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
446 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
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);
453 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
458 static void active_cacheline_inc_overlap(phys_addr_t cln)
460 int overlap = active_cacheline_read_overlap(cln);
462 overlap = active_cacheline_set_overlap(cln, ++overlap);
464 /* If we overflowed the overlap counter then we're potentially
465 * leaking dma-mappings.
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);
472 static int active_cacheline_dec_overlap(phys_addr_t cln)
474 int overlap = active_cacheline_read_overlap(cln);
476 return active_cacheline_set_overlap(cln, --overlap);
479 static int active_cacheline_insert(struct dma_debug_entry *entry)
481 phys_addr_t cln = to_cacheline_number(entry);
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.
489 if (entry->direction == DMA_TO_DEVICE)
492 spin_lock_irqsave(&radix_lock, flags);
493 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
495 active_cacheline_inc_overlap(cln);
496 spin_unlock_irqrestore(&radix_lock, flags);
501 static void active_cacheline_remove(struct dma_debug_entry *entry)
503 phys_addr_t cln = to_cacheline_number(entry);
506 /* ...mirror the insert case */
507 if (entry->direction == DMA_TO_DEVICE)
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
515 if (active_cacheline_dec_overlap(cln) < 0)
516 radix_tree_delete(&dma_active_cacheline, cln);
517 spin_unlock_irqrestore(&radix_lock, flags);
521 * Dump mappings entries on kernel space for debugging purposes
523 void debug_dma_dump_mappings(struct device *dev)
528 for (idx = 0; idx < HASH_SIZE; idx++) {
529 struct hash_bucket *bucket = &dma_entry_hash[idx];
530 struct dma_debug_entry *entry;
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);
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]);
546 spin_unlock_irqrestore(&bucket->lock, flags);
553 * Dump mappings entries on user space via debugfs
555 static int dump_show(struct seq_file *seq, void *v)
560 for (idx = 0; idx < HASH_SIZE; idx++) {
561 struct hash_bucket *bucket = &dma_entry_hash[idx];
562 struct dma_debug_entry *entry;
565 spin_lock_irqsave(&bucket->lock, flags);
566 list_for_each_entry(entry, &bucket->list, list) {
567 cln = to_cacheline_number(entry);
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]);
578 spin_unlock_irqrestore(&bucket->lock, flags);
582 DEFINE_SHOW_ATTRIBUTE(dump);
585 * Wrapper function for adding an entry to the hash.
586 * This function takes care of locking itself.
588 static void add_dma_entry(struct dma_debug_entry *entry, unsigned long attrs)
590 struct hash_bucket *bucket;
594 bucket = get_hash_bucket(entry, &flags);
595 hash_bucket_add(bucket, entry);
596 put_hash_bucket(bucket, flags);
598 rc = active_cacheline_insert(entry);
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");
608 static int dma_debug_create_entries(gfp_t gfp)
610 struct dma_debug_entry *entry;
613 entry = (void *)get_zeroed_page(gfp);
617 for (i = 0; i < DMA_DEBUG_DYNAMIC_ENTRIES; i++)
618 list_add_tail(&entry[i].list, &free_entries);
620 num_free_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
621 nr_total_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
626 static struct dma_debug_entry *__dma_entry_alloc(void)
628 struct dma_debug_entry *entry;
630 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
631 list_del(&entry->list);
632 memset(entry, 0, sizeof(*entry));
634 num_free_entries -= 1;
635 if (num_free_entries < min_free_entries)
636 min_free_entries = num_free_entries;
642 * This should be called outside of free_entries_lock scope to avoid potential
643 * deadlocks with serial consoles that use DMA.
645 static void __dma_entry_alloc_check_leak(u32 nr_entries)
647 u32 tmp = nr_entries % nr_prealloc_entries;
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",
653 (nr_entries / nr_prealloc_entries));
657 /* struct dma_entry allocator
659 * The next two functions implement the allocator for
660 * struct dma_debug_entries.
662 static struct dma_debug_entry *dma_entry_alloc(void)
664 bool alloc_check_leak = false;
665 struct dma_debug_entry *entry;
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");
677 alloc_check_leak = true;
678 nr_entries = nr_total_entries;
681 entry = __dma_entry_alloc();
683 spin_unlock_irqrestore(&free_entries_lock, flags);
685 if (alloc_check_leak)
686 __dma_entry_alloc_check_leak(nr_entries);
688 #ifdef CONFIG_STACKTRACE
689 entry->stack_len = stack_trace_save(entry->stack_entries,
690 ARRAY_SIZE(entry->stack_entries),
696 static void dma_entry_free(struct dma_debug_entry *entry)
700 active_cacheline_remove(entry);
703 * add to beginning of the list - this way the entries are
704 * more likely cache hot when they are reallocated.
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);
713 * DMA-API debugging init code
715 * The init code does two things:
716 * 1. Initialize core data structures
717 * 2. Preallocate a given number of dma_debug_entry structs
720 static ssize_t filter_read(struct file *file, char __user *user_buf,
721 size_t count, loff_t *ppos)
723 char buf[NAME_MAX_LEN + 1];
727 if (!current_driver_name[0])
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.
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);
739 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
742 static ssize_t filter_write(struct file *file, const char __user *userbuf,
743 size_t count, loff_t *ppos)
745 char buf[NAME_MAX_LEN];
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
756 len = min(count, (size_t)(NAME_MAX_LEN - 1));
757 if (copy_from_user(buf, userbuf, len))
762 write_lock_irqsave(&driver_name_lock, flags);
765 * Now handle the string we got from userspace very carefully.
767 * - only use the first token we got
768 * - token delimiter is everything looking like a space
769 * character (' ', '\n', '\t' ...)
772 if (!isalnum(buf[0])) {
774 * If the first character userspace gave us is not
775 * alphanumerical then assume the filter should be
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;
786 * Now parse out the first token and use it as the name for the
787 * driver to filter for.
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)
794 current_driver_name[i] = 0;
795 current_driver = NULL;
797 pr_info("enable driver filter for driver [%s]\n",
798 current_driver_name);
801 write_unlock_irqrestore(&driver_name_lock, flags);
806 static const struct file_operations filter_fops = {
808 .write = filter_write,
809 .llseek = default_llseek,
812 static int __init dma_debug_fs_init(void)
814 struct dentry *dentry = debugfs_create_dir("dma-api", NULL);
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);
828 core_initcall_sync(dma_debug_fs_init);
830 static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
832 struct dma_debug_entry *entry;
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) {
844 spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
850 static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
852 struct device *dev = data;
853 struct dma_debug_entry *entry;
856 if (dma_debug_disabled())
860 case BUS_NOTIFY_UNBOUND_DRIVER:
861 count = device_dma_allocations(dev, &entry);
864 err_printk(dev, entry, "device driver has pending "
865 "DMA allocations while released from device "
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]);
880 void dma_debug_add_bus(const struct bus_type *bus)
882 struct notifier_block *nb;
884 if (dma_debug_disabled())
887 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
889 pr_err("dma_debug_add_bus: out of memory\n");
893 nb->notifier_call = dma_debug_device_change;
895 bus_register_notifier(bus, nb);
898 static int dma_debug_init(void)
902 /* Do not use dma_debug_initialized here, since we really want to be
903 * called to set dma_debug_initialized
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);
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);
922 pr_err("debugging out of memory error - disabled\n");
923 global_disable = true;
927 min_free_entries = num_free_entries;
929 dma_debug_initialized = true;
931 pr_info("debugging enabled by kernel config\n");
934 core_initcall(dma_debug_init);
936 static __init int dma_debug_cmdline(char *str)
941 if (strncmp(str, "off", 3) == 0) {
942 pr_info("debugging disabled on kernel command line\n");
943 global_disable = true;
949 static __init int dma_debug_entries_cmdline(char *str)
953 if (!get_option(&str, &nr_prealloc_entries))
954 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
958 __setup("dma_debug=", dma_debug_cmdline);
959 __setup("dma_debug_entries=", dma_debug_entries_cmdline);
961 static void check_unmap(struct dma_debug_entry *ref)
963 struct dma_debug_entry *entry;
964 struct hash_bucket *bucket;
967 bucket = get_hash_bucket(ref, &flags);
968 entry = bucket_find_exact(bucket, ref);
971 /* must drop lock before calling dma_mapping_error */
972 put_hash_bucket(bucket, flags);
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");
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);
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);
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,
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);
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
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]);
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.
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] "
1047 ref->dev_addr, ref->size,
1048 type2name[entry->type]);
1051 hash_bucket_del(entry);
1052 dma_entry_free(entry);
1054 put_hash_bucket(bucket, flags);
1057 static void check_for_stack(struct device *dev,
1058 struct page *page, size_t offset)
1061 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1063 if (!stack_vm_area) {
1064 /* Stack is direct-mapped. */
1065 if (PageHighMem(page))
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);
1071 /* Stack is vmalloced. */
1074 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1075 if (page != stack_vm_area->pages[i])
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);
1085 static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
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);
1092 static void check_sync(struct device *dev,
1093 struct dma_debug_entry *ref,
1096 struct dma_debug_entry *entry;
1097 struct hash_bucket *bucket;
1098 unsigned long flags;
1100 bucket = get_hash_bucket(ref, &flags);
1102 entry = bucket_find_contain(&bucket, ref, &flags);
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);
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,
1122 if (entry->direction == DMA_BIDIRECTIONAL)
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]);
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]);
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]);
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);
1164 put_hash_bucket(bucket, flags);
1167 static void check_sg_segment(struct device *dev, struct scatterlist *sg)
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);
1174 * Either the driver forgot to set dma_parms appropriately, or
1175 * whoever generated the list forgot to check them.
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);
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.
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);
1193 void debug_dma_map_single(struct device *dev, const void *addr,
1196 if (unlikely(dma_debug_disabled()))
1199 if (!virt_addr_valid(addr))
1200 err_printk(dev, NULL, "device driver maps memory from invalid area [addr=%p] [len=%lu]\n",
1203 if (is_vmalloc_addr(addr))
1204 err_printk(dev, NULL, "device driver maps memory from vmalloc area [addr=%p] [len=%lu]\n",
1207 EXPORT_SYMBOL(debug_dma_map_single);
1209 void 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)
1213 struct dma_debug_entry *entry;
1215 if (unlikely(dma_debug_disabled()))
1218 if (dma_mapping_error(dev, dma_addr))
1221 entry = dma_entry_alloc();
1226 entry->type = dma_debug_single;
1227 entry->pfn = page_to_pfn(page);
1228 entry->offset = offset;
1229 entry->dev_addr = dma_addr;
1231 entry->direction = direction;
1232 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1234 check_for_stack(dev, page, offset);
1236 if (!PageHighMem(page)) {
1237 void *addr = page_address(page) + offset;
1239 check_for_illegal_area(dev, addr, size);
1242 add_dma_entry(entry, attrs);
1245 void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1247 struct dma_debug_entry ref;
1248 struct dma_debug_entry *entry;
1249 struct hash_bucket *bucket;
1250 unsigned long flags;
1252 if (unlikely(dma_debug_disabled()))
1256 ref.dev_addr = dma_addr;
1257 bucket = get_hash_bucket(&ref, &flags);
1259 list_for_each_entry(entry, &bucket->list, list) {
1260 if (!exact_match(&ref, entry))
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.
1273 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1274 entry->map_err_type = MAP_ERR_CHECKED;
1279 put_hash_bucket(bucket, flags);
1281 EXPORT_SYMBOL(debug_dma_mapping_error);
1283 void debug_dma_unmap_page(struct device *dev, dma_addr_t dma_addr,
1284 size_t size, int direction)
1286 struct dma_debug_entry ref = {
1287 .type = dma_debug_single,
1289 .dev_addr = dma_addr,
1291 .direction = direction,
1294 if (unlikely(dma_debug_disabled()))
1299 void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1300 int nents, int mapped_ents, int direction,
1301 unsigned long attrs)
1303 struct dma_debug_entry *entry;
1304 struct scatterlist *s;
1307 if (unlikely(dma_debug_disabled()))
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);
1316 for_each_sg(sg, s, mapped_ents, i) {
1317 entry = dma_entry_alloc();
1321 entry->type = dma_debug_sg;
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;
1331 check_sg_segment(dev, s);
1333 add_dma_entry(entry, attrs);
1337 static int get_nr_mapped_entries(struct device *dev,
1338 struct dma_debug_entry *ref)
1340 struct dma_debug_entry *entry;
1341 struct hash_bucket *bucket;
1342 unsigned long flags;
1345 bucket = get_hash_bucket(ref, &flags);
1346 entry = bucket_find_exact(bucket, ref);
1350 mapped_ents = entry->sg_mapped_ents;
1351 put_hash_bucket(bucket, flags);
1356 void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1357 int nelems, int dir)
1359 struct scatterlist *s;
1360 int mapped_ents = 0, i;
1362 if (unlikely(dma_debug_disabled()))
1365 for_each_sg(sglist, s, nelems, i) {
1367 struct dma_debug_entry ref = {
1368 .type = dma_debug_sg,
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),
1375 .sg_call_ents = nelems,
1378 if (mapped_ents && i >= mapped_ents)
1382 mapped_ents = get_nr_mapped_entries(dev, &ref);
1388 void debug_dma_alloc_coherent(struct device *dev, size_t size,
1389 dma_addr_t dma_addr, void *virt,
1390 unsigned long attrs)
1392 struct dma_debug_entry *entry;
1394 if (unlikely(dma_debug_disabled()))
1397 if (unlikely(virt == NULL))
1400 /* handle vmalloc and linear addresses */
1401 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1404 entry = dma_entry_alloc();
1408 entry->type = dma_debug_coherent;
1410 entry->offset = offset_in_page(virt);
1412 entry->dev_addr = dma_addr;
1413 entry->direction = DMA_BIDIRECTIONAL;
1415 if (is_vmalloc_addr(virt))
1416 entry->pfn = vmalloc_to_pfn(virt);
1418 entry->pfn = page_to_pfn(virt_to_page(virt));
1420 add_dma_entry(entry, attrs);
1423 void debug_dma_free_coherent(struct device *dev, size_t size,
1424 void *virt, dma_addr_t dma_addr)
1426 struct dma_debug_entry ref = {
1427 .type = dma_debug_coherent,
1429 .offset = offset_in_page(virt),
1430 .dev_addr = dma_addr,
1432 .direction = DMA_BIDIRECTIONAL,
1435 /* handle vmalloc and linear addresses */
1436 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1439 if (is_vmalloc_addr(virt))
1440 ref.pfn = vmalloc_to_pfn(virt);
1442 ref.pfn = page_to_pfn(virt_to_page(virt));
1444 if (unlikely(dma_debug_disabled()))
1450 void 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)
1454 struct dma_debug_entry *entry;
1456 if (unlikely(dma_debug_disabled()))
1459 entry = dma_entry_alloc();
1463 entry->type = dma_debug_resource;
1465 entry->pfn = PHYS_PFN(addr);
1466 entry->offset = offset_in_page(addr);
1468 entry->dev_addr = dma_addr;
1469 entry->direction = direction;
1470 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1472 add_dma_entry(entry, attrs);
1475 void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1476 size_t size, int direction)
1478 struct dma_debug_entry ref = {
1479 .type = dma_debug_resource,
1481 .dev_addr = dma_addr,
1483 .direction = direction,
1486 if (unlikely(dma_debug_disabled()))
1492 void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1493 size_t size, int direction)
1495 struct dma_debug_entry ref;
1497 if (unlikely(dma_debug_disabled()))
1500 ref.type = dma_debug_single;
1502 ref.dev_addr = dma_handle;
1504 ref.direction = direction;
1505 ref.sg_call_ents = 0;
1507 check_sync(dev, &ref, true);
1510 void debug_dma_sync_single_for_device(struct device *dev,
1511 dma_addr_t dma_handle, size_t size,
1514 struct dma_debug_entry ref;
1516 if (unlikely(dma_debug_disabled()))
1519 ref.type = dma_debug_single;
1521 ref.dev_addr = dma_handle;
1523 ref.direction = direction;
1524 ref.sg_call_ents = 0;
1526 check_sync(dev, &ref, false);
1529 void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1530 int nelems, int direction)
1532 struct scatterlist *s;
1533 int mapped_ents = 0, i;
1535 if (unlikely(dma_debug_disabled()))
1538 for_each_sg(sg, s, nelems, i) {
1540 struct dma_debug_entry ref = {
1541 .type = dma_debug_sg,
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,
1552 mapped_ents = get_nr_mapped_entries(dev, &ref);
1554 if (i >= mapped_ents)
1557 check_sync(dev, &ref, true);
1561 void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1562 int nelems, int direction)
1564 struct scatterlist *s;
1565 int mapped_ents = 0, i;
1567 if (unlikely(dma_debug_disabled()))
1570 for_each_sg(sg, s, nelems, i) {
1572 struct dma_debug_entry ref = {
1573 .type = dma_debug_sg,
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,
1583 mapped_ents = get_nr_mapped_entries(dev, &ref);
1585 if (i >= mapped_ents)
1588 check_sync(dev, &ref, false);
1592 static int __init dma_debug_driver_setup(char *str)
1596 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1597 current_driver_name[i] = *str;
1602 if (current_driver_name[0])
1603 pr_info("enable driver filter for driver [%s]\n",
1604 current_driver_name);
1609 __setup("dma_debug_driver=", dma_debug_driver_setup);