1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 * Author: Joerg Roedel <joerg.roedel@amd.com>
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 * @size: length of the mapping
57 * @type: single, page, sg, coherent
58 * @direction: enum dma_data_direction
59 * @sg_call_ents: 'nents' from dma_map_sg
60 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
61 * @pfn: page frame of the start address
62 * @offset: offset of mapping relative to pfn
63 * @map_err_type: track whether dma_mapping_error() was checked
64 * @stacktrace: support backtraces when a violation is detected
66 struct dma_debug_entry {
67 struct list_head list;
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];
82 } ____cacheline_aligned_in_smp;
84 typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
87 struct list_head list;
91 /* Hash list to save the allocated dma addresses */
92 static struct hash_bucket dma_entry_hash[HASH_SIZE];
93 /* List of pre-allocated dma_debug_entry's */
94 static LIST_HEAD(free_entries);
95 /* Lock for the list above */
96 static DEFINE_SPINLOCK(free_entries_lock);
98 /* Global disable flag - will be set in case of an error */
99 static bool global_disable __read_mostly;
101 /* Early initialization disable flag, set at the end of dma_debug_init */
102 static bool dma_debug_initialized __read_mostly;
104 static inline bool dma_debug_disabled(void)
106 return global_disable || !dma_debug_initialized;
109 /* Global error count */
110 static u32 error_count;
112 /* Global error show enable*/
113 static u32 show_all_errors __read_mostly;
114 /* Number of errors to show */
115 static u32 show_num_errors = 1;
117 static u32 num_free_entries;
118 static u32 min_free_entries;
119 static u32 nr_total_entries;
121 /* number of preallocated entries requested by kernel cmdline */
122 static u32 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
124 /* per-driver filter related state */
126 #define NAME_MAX_LEN 64
128 static char current_driver_name[NAME_MAX_LEN] __read_mostly;
129 static struct device_driver *current_driver __read_mostly;
131 static DEFINE_RWLOCK(driver_name_lock);
133 static 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",
139 static const char *type2name[] = {
140 [dma_debug_single] = "single",
141 [dma_debug_sg] = "scather-gather",
142 [dma_debug_coherent] = "coherent",
143 [dma_debug_resource] = "resource",
146 static 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",
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:
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.
166 static inline void dump_entry_trace(struct dma_debug_entry *entry)
168 #ifdef CONFIG_STACKTRACE
170 pr_warn("Mapped at:\n");
171 stack_trace_print(entry->stack_entries, entry->stack_len, 0);
176 static bool driver_filter(struct device *dev)
178 struct device_driver *drv;
182 /* driver filter off */
183 if (likely(!current_driver_name[0]))
186 /* driver filter on and initialized */
187 if (current_driver && dev && dev->driver == current_driver)
190 /* driver filter on, but we can't filter on a NULL device... */
194 if (current_driver || !current_driver_name[0])
197 /* driver filter on but not yet initialized */
202 /* lock to protect against change of current_driver_name */
203 read_lock_irqsave(&driver_name_lock, flags);
207 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
208 current_driver = drv;
212 read_unlock_irqrestore(&driver_name_lock, flags);
217 #define err_printk(dev, entry, format, arg...) do { \
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); \
226 if (!show_all_errors && show_num_errors > 0) \
227 show_num_errors -= 1; \
231 * Hash related functions
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.
236 static int hash_fn(struct dma_debug_entry *entry)
239 * Hash function is based on the dma address.
240 * We use bits 20-27 here as the index into the hash
242 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
246 * Request exclusive access to a hash bucket for a given dma_debug_entry.
248 static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
249 unsigned long *flags)
250 __acquires(&dma_entry_hash[idx].lock)
252 int idx = hash_fn(entry);
253 unsigned long __flags;
255 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
257 return &dma_entry_hash[idx];
261 * Give up exclusive access to the hash bucket
263 static void put_hash_bucket(struct hash_bucket *bucket,
265 __releases(&bucket->lock)
267 spin_unlock_irqrestore(&bucket->lock, flags);
270 static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
272 return ((a->dev_addr == b->dev_addr) &&
273 (a->dev == b->dev)) ? true : false;
276 static bool containing_match(struct dma_debug_entry *a,
277 struct dma_debug_entry *b)
279 if (a->dev != b->dev)
282 if ((b->dev_addr <= a->dev_addr) &&
283 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
290 * Search a given entry in the hash bucket list
292 static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
293 struct dma_debug_entry *ref,
296 struct dma_debug_entry *entry, *ret = NULL;
297 int matches = 0, match_lvl, last_lvl = -1;
299 list_for_each_entry(entry, &bucket->list, list) {
300 if (!match(ref, entry))
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.
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;
320 if (match_lvl == 4) {
321 /* perfect-fit - return the result */
323 } else if (match_lvl > last_lvl) {
325 * We found an entry that fits better then the
326 * previous one or it is the 1st match.
328 last_lvl = match_lvl;
334 * If we have multiple matches but no perfect-fit, just return
337 ret = (matches == 1) ? ret : NULL;
342 static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
343 struct dma_debug_entry *ref)
345 return __hash_bucket_find(bucket, ref, exact_match);
348 static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
349 struct dma_debug_entry *ref,
350 unsigned long *flags)
353 struct dma_debug_entry *entry, index = *ref;
354 int limit = min(HASH_SIZE, (index.dev_addr >> HASH_FN_SHIFT) + 1);
356 for (int i = 0; i < limit; i++) {
357 entry = __hash_bucket_find(*bucket, ref, containing_match);
363 * Nothing found, go back a hash bucket
365 put_hash_bucket(*bucket, *flags);
366 index.dev_addr -= (1 << HASH_FN_SHIFT);
367 *bucket = get_hash_bucket(&index, flags);
374 * Add an entry to a hash bucket
376 static void hash_bucket_add(struct hash_bucket *bucket,
377 struct dma_debug_entry *entry)
379 list_add_tail(&entry->list, &bucket->list);
383 * Remove entry from a hash bucket list
385 static void hash_bucket_del(struct dma_debug_entry *entry)
387 list_del(&entry->list);
390 static unsigned long long phys_addr(struct dma_debug_entry *entry)
392 if (entry->type == dma_debug_resource)
393 return __pfn_to_phys(entry->pfn) + entry->offset;
395 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
399 * Dump mapping entries for debugging purposes
401 void debug_dma_dump_mappings(struct device *dev)
405 for (idx = 0; idx < HASH_SIZE; idx++) {
406 struct hash_bucket *bucket = &dma_entry_hash[idx];
407 struct dma_debug_entry *entry;
410 spin_lock_irqsave(&bucket->lock, flags);
412 list_for_each_entry(entry, &bucket->list, list) {
413 if (!dev || dev == entry->dev) {
415 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
416 type2name[entry->type], idx,
417 phys_addr(entry), entry->pfn,
418 entry->dev_addr, entry->size,
419 dir2name[entry->direction],
420 maperr2str[entry->map_err_type]);
424 spin_unlock_irqrestore(&bucket->lock, flags);
430 * For each mapping (initial cacheline in the case of
431 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
432 * scatterlist, or the cacheline specified in dma_map_single) insert
433 * into this tree using the cacheline as the key. At
434 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
435 * the entry already exists at insertion time add a tag as a reference
436 * count for the overlapping mappings. For now, the overlap tracking
437 * just ensures that 'unmaps' balance 'maps' before marking the
438 * cacheline idle, but we should also be flagging overlaps as an API
441 * Memory usage is mostly constrained by the maximum number of available
442 * dma-debug entries in that we need a free dma_debug_entry before
443 * inserting into the tree. In the case of dma_map_page and
444 * dma_alloc_coherent there is only one dma_debug_entry and one
445 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
446 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
447 * entries into the tree.
449 static RADIX_TREE(dma_active_cacheline, GFP_ATOMIC);
450 static DEFINE_SPINLOCK(radix_lock);
451 #define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
452 #define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
453 #define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
455 static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
457 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
458 (entry->offset >> L1_CACHE_SHIFT);
461 static int active_cacheline_read_overlap(phys_addr_t cln)
465 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
466 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
471 static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
475 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
478 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
479 if (overlap & 1 << i)
480 radix_tree_tag_set(&dma_active_cacheline, cln, i);
482 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
487 static void active_cacheline_inc_overlap(phys_addr_t cln)
489 int overlap = active_cacheline_read_overlap(cln);
491 overlap = active_cacheline_set_overlap(cln, ++overlap);
493 /* If we overflowed the overlap counter then we're potentially
494 * leaking dma-mappings.
496 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
497 pr_fmt("exceeded %d overlapping mappings of cacheline %pa\n"),
498 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
501 static int active_cacheline_dec_overlap(phys_addr_t cln)
503 int overlap = active_cacheline_read_overlap(cln);
505 return active_cacheline_set_overlap(cln, --overlap);
508 static int active_cacheline_insert(struct dma_debug_entry *entry)
510 phys_addr_t cln = to_cacheline_number(entry);
514 /* If the device is not writing memory then we don't have any
515 * concerns about the cpu consuming stale data. This mitigates
516 * legitimate usages of overlapping mappings.
518 if (entry->direction == DMA_TO_DEVICE)
521 spin_lock_irqsave(&radix_lock, flags);
522 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
524 active_cacheline_inc_overlap(cln);
525 spin_unlock_irqrestore(&radix_lock, flags);
530 static void active_cacheline_remove(struct dma_debug_entry *entry)
532 phys_addr_t cln = to_cacheline_number(entry);
535 /* ...mirror the insert case */
536 if (entry->direction == DMA_TO_DEVICE)
539 spin_lock_irqsave(&radix_lock, flags);
540 /* since we are counting overlaps the final put of the
541 * cacheline will occur when the overlap count is 0.
542 * active_cacheline_dec_overlap() returns -1 in that case
544 if (active_cacheline_dec_overlap(cln) < 0)
545 radix_tree_delete(&dma_active_cacheline, cln);
546 spin_unlock_irqrestore(&radix_lock, flags);
550 * Wrapper function for adding an entry to the hash.
551 * This function takes care of locking itself.
553 static void add_dma_entry(struct dma_debug_entry *entry, unsigned long attrs)
555 struct hash_bucket *bucket;
559 bucket = get_hash_bucket(entry, &flags);
560 hash_bucket_add(bucket, entry);
561 put_hash_bucket(bucket, flags);
563 rc = active_cacheline_insert(entry);
565 pr_err_once("cacheline tracking ENOMEM, dma-debug disabled\n");
566 global_disable = true;
567 } else if (rc == -EEXIST && !(attrs & DMA_ATTR_SKIP_CPU_SYNC)) {
568 err_printk(entry->dev, entry,
569 "cacheline tracking EEXIST, overlapping mappings aren't supported\n");
573 static int dma_debug_create_entries(gfp_t gfp)
575 struct dma_debug_entry *entry;
578 entry = (void *)get_zeroed_page(gfp);
582 for (i = 0; i < DMA_DEBUG_DYNAMIC_ENTRIES; i++)
583 list_add_tail(&entry[i].list, &free_entries);
585 num_free_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
586 nr_total_entries += DMA_DEBUG_DYNAMIC_ENTRIES;
591 static struct dma_debug_entry *__dma_entry_alloc(void)
593 struct dma_debug_entry *entry;
595 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
596 list_del(&entry->list);
597 memset(entry, 0, sizeof(*entry));
599 num_free_entries -= 1;
600 if (num_free_entries < min_free_entries)
601 min_free_entries = num_free_entries;
606 static void __dma_entry_alloc_check_leak(void)
608 u32 tmp = nr_total_entries % nr_prealloc_entries;
610 /* Shout each time we tick over some multiple of the initial pool */
611 if (tmp < DMA_DEBUG_DYNAMIC_ENTRIES) {
612 pr_info("dma_debug_entry pool grown to %u (%u00%%)\n",
614 (nr_total_entries / nr_prealloc_entries));
618 /* struct dma_entry allocator
620 * The next two functions implement the allocator for
621 * struct dma_debug_entries.
623 static struct dma_debug_entry *dma_entry_alloc(void)
625 struct dma_debug_entry *entry;
628 spin_lock_irqsave(&free_entries_lock, flags);
629 if (num_free_entries == 0) {
630 if (dma_debug_create_entries(GFP_ATOMIC)) {
631 global_disable = true;
632 spin_unlock_irqrestore(&free_entries_lock, flags);
633 pr_err("debugging out of memory - disabling\n");
636 __dma_entry_alloc_check_leak();
639 entry = __dma_entry_alloc();
641 spin_unlock_irqrestore(&free_entries_lock, flags);
643 #ifdef CONFIG_STACKTRACE
644 entry->stack_len = stack_trace_save(entry->stack_entries,
645 ARRAY_SIZE(entry->stack_entries),
651 static void dma_entry_free(struct dma_debug_entry *entry)
655 active_cacheline_remove(entry);
658 * add to beginning of the list - this way the entries are
659 * more likely cache hot when they are reallocated.
661 spin_lock_irqsave(&free_entries_lock, flags);
662 list_add(&entry->list, &free_entries);
663 num_free_entries += 1;
664 spin_unlock_irqrestore(&free_entries_lock, flags);
668 * DMA-API debugging init code
670 * The init code does two things:
671 * 1. Initialize core data structures
672 * 2. Preallocate a given number of dma_debug_entry structs
675 static ssize_t filter_read(struct file *file, char __user *user_buf,
676 size_t count, loff_t *ppos)
678 char buf[NAME_MAX_LEN + 1];
682 if (!current_driver_name[0])
686 * We can't copy to userspace directly because current_driver_name can
687 * only be read under the driver_name_lock with irqs disabled. So
688 * create a temporary copy first.
690 read_lock_irqsave(&driver_name_lock, flags);
691 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
692 read_unlock_irqrestore(&driver_name_lock, flags);
694 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
697 static ssize_t filter_write(struct file *file, const char __user *userbuf,
698 size_t count, loff_t *ppos)
700 char buf[NAME_MAX_LEN];
706 * We can't copy from userspace directly. Access to
707 * current_driver_name is protected with a write_lock with irqs
708 * disabled. Since copy_from_user can fault and may sleep we
709 * need to copy to temporary buffer first
711 len = min(count, (size_t)(NAME_MAX_LEN - 1));
712 if (copy_from_user(buf, userbuf, len))
717 write_lock_irqsave(&driver_name_lock, flags);
720 * Now handle the string we got from userspace very carefully.
722 * - only use the first token we got
723 * - token delimiter is everything looking like a space
724 * character (' ', '\n', '\t' ...)
727 if (!isalnum(buf[0])) {
729 * If the first character userspace gave us is not
730 * alphanumerical then assume the filter should be
733 if (current_driver_name[0])
734 pr_info("switching off dma-debug driver filter\n");
735 current_driver_name[0] = 0;
736 current_driver = NULL;
741 * Now parse out the first token and use it as the name for the
742 * driver to filter for.
744 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
745 current_driver_name[i] = buf[i];
746 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
749 current_driver_name[i] = 0;
750 current_driver = NULL;
752 pr_info("enable driver filter for driver [%s]\n",
753 current_driver_name);
756 write_unlock_irqrestore(&driver_name_lock, flags);
761 static const struct file_operations filter_fops = {
763 .write = filter_write,
764 .llseek = default_llseek,
767 static int dump_show(struct seq_file *seq, void *v)
771 for (idx = 0; idx < HASH_SIZE; idx++) {
772 struct hash_bucket *bucket = &dma_entry_hash[idx];
773 struct dma_debug_entry *entry;
776 spin_lock_irqsave(&bucket->lock, flags);
777 list_for_each_entry(entry, &bucket->list, list) {
779 "%s %s %s idx %d P=%llx N=%lx D=%llx L=%llx %s %s\n",
780 dev_name(entry->dev),
781 dev_driver_string(entry->dev),
782 type2name[entry->type], idx,
783 phys_addr(entry), entry->pfn,
784 entry->dev_addr, entry->size,
785 dir2name[entry->direction],
786 maperr2str[entry->map_err_type]);
788 spin_unlock_irqrestore(&bucket->lock, flags);
792 DEFINE_SHOW_ATTRIBUTE(dump);
794 static int __init dma_debug_fs_init(void)
796 struct dentry *dentry = debugfs_create_dir("dma-api", NULL);
798 debugfs_create_bool("disabled", 0444, dentry, &global_disable);
799 debugfs_create_u32("error_count", 0444, dentry, &error_count);
800 debugfs_create_u32("all_errors", 0644, dentry, &show_all_errors);
801 debugfs_create_u32("num_errors", 0644, dentry, &show_num_errors);
802 debugfs_create_u32("num_free_entries", 0444, dentry, &num_free_entries);
803 debugfs_create_u32("min_free_entries", 0444, dentry, &min_free_entries);
804 debugfs_create_u32("nr_total_entries", 0444, dentry, &nr_total_entries);
805 debugfs_create_file("driver_filter", 0644, dentry, NULL, &filter_fops);
806 debugfs_create_file("dump", 0444, dentry, NULL, &dump_fops);
810 core_initcall_sync(dma_debug_fs_init);
812 static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
814 struct dma_debug_entry *entry;
818 for (i = 0; i < HASH_SIZE; ++i) {
819 spin_lock_irqsave(&dma_entry_hash[i].lock, flags);
820 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
821 if (entry->dev == dev) {
826 spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
832 static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
834 struct device *dev = data;
835 struct dma_debug_entry *entry;
838 if (dma_debug_disabled())
842 case BUS_NOTIFY_UNBOUND_DRIVER:
843 count = device_dma_allocations(dev, &entry);
846 err_printk(dev, entry, "device driver has pending "
847 "DMA allocations while released from device "
849 "One of leaked entries details: "
850 "[device address=0x%016llx] [size=%llu bytes] "
851 "[mapped with %s] [mapped as %s]\n",
852 count, entry->dev_addr, entry->size,
853 dir2name[entry->direction], type2name[entry->type]);
862 void dma_debug_add_bus(struct bus_type *bus)
864 struct notifier_block *nb;
866 if (dma_debug_disabled())
869 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
871 pr_err("dma_debug_add_bus: out of memory\n");
875 nb->notifier_call = dma_debug_device_change;
877 bus_register_notifier(bus, nb);
880 static int dma_debug_init(void)
884 /* Do not use dma_debug_initialized here, since we really want to be
885 * called to set dma_debug_initialized
890 for (i = 0; i < HASH_SIZE; ++i) {
891 INIT_LIST_HEAD(&dma_entry_hash[i].list);
892 spin_lock_init(&dma_entry_hash[i].lock);
895 nr_pages = DIV_ROUND_UP(nr_prealloc_entries, DMA_DEBUG_DYNAMIC_ENTRIES);
896 for (i = 0; i < nr_pages; ++i)
897 dma_debug_create_entries(GFP_KERNEL);
898 if (num_free_entries >= nr_prealloc_entries) {
899 pr_info("preallocated %d debug entries\n", nr_total_entries);
900 } else if (num_free_entries > 0) {
901 pr_warn("%d debug entries requested but only %d allocated\n",
902 nr_prealloc_entries, nr_total_entries);
904 pr_err("debugging out of memory error - disabled\n");
905 global_disable = true;
909 min_free_entries = num_free_entries;
911 dma_debug_initialized = true;
913 pr_info("debugging enabled by kernel config\n");
916 core_initcall(dma_debug_init);
918 static __init int dma_debug_cmdline(char *str)
923 if (strncmp(str, "off", 3) == 0) {
924 pr_info("debugging disabled on kernel command line\n");
925 global_disable = true;
931 static __init int dma_debug_entries_cmdline(char *str)
935 if (!get_option(&str, &nr_prealloc_entries))
936 nr_prealloc_entries = PREALLOC_DMA_DEBUG_ENTRIES;
940 __setup("dma_debug=", dma_debug_cmdline);
941 __setup("dma_debug_entries=", dma_debug_entries_cmdline);
943 static void check_unmap(struct dma_debug_entry *ref)
945 struct dma_debug_entry *entry;
946 struct hash_bucket *bucket;
949 bucket = get_hash_bucket(ref, &flags);
950 entry = bucket_find_exact(bucket, ref);
953 /* must drop lock before calling dma_mapping_error */
954 put_hash_bucket(bucket, flags);
956 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
957 err_printk(ref->dev, NULL,
958 "device driver tries to free an "
959 "invalid DMA memory address\n");
961 err_printk(ref->dev, NULL,
962 "device driver tries to free DMA "
963 "memory it has not allocated [device "
964 "address=0x%016llx] [size=%llu bytes]\n",
965 ref->dev_addr, ref->size);
970 if (ref->size != entry->size) {
971 err_printk(ref->dev, entry, "device driver frees "
972 "DMA memory with different size "
973 "[device address=0x%016llx] [map size=%llu bytes] "
974 "[unmap size=%llu bytes]\n",
975 ref->dev_addr, entry->size, ref->size);
978 if (ref->type != entry->type) {
979 err_printk(ref->dev, entry, "device driver frees "
980 "DMA memory with wrong function "
981 "[device address=0x%016llx] [size=%llu bytes] "
982 "[mapped as %s] [unmapped as %s]\n",
983 ref->dev_addr, ref->size,
984 type2name[entry->type], type2name[ref->type]);
985 } else if ((entry->type == dma_debug_coherent) &&
986 (phys_addr(ref) != phys_addr(entry))) {
987 err_printk(ref->dev, entry, "device driver frees "
988 "DMA memory with different CPU address "
989 "[device address=0x%016llx] [size=%llu bytes] "
990 "[cpu alloc address=0x%016llx] "
991 "[cpu free address=0x%016llx]",
992 ref->dev_addr, ref->size,
997 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
998 ref->sg_call_ents != entry->sg_call_ents) {
999 err_printk(ref->dev, entry, "device driver frees "
1000 "DMA sg list with different entry count "
1001 "[map count=%d] [unmap count=%d]\n",
1002 entry->sg_call_ents, ref->sg_call_ents);
1006 * This may be no bug in reality - but most implementations of the
1007 * DMA API don't handle this properly, so check for it here
1009 if (ref->direction != entry->direction) {
1010 err_printk(ref->dev, entry, "device driver frees "
1011 "DMA memory with different direction "
1012 "[device address=0x%016llx] [size=%llu bytes] "
1013 "[mapped with %s] [unmapped with %s]\n",
1014 ref->dev_addr, ref->size,
1015 dir2name[entry->direction],
1016 dir2name[ref->direction]);
1020 * Drivers should use dma_mapping_error() to check the returned
1021 * addresses of dma_map_single() and dma_map_page().
1022 * If not, print this warning message. See Documentation/core-api/dma-api.rst.
1024 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1025 err_printk(ref->dev, entry,
1026 "device driver failed to check map error"
1027 "[device address=0x%016llx] [size=%llu bytes] "
1029 ref->dev_addr, ref->size,
1030 type2name[entry->type]);
1033 hash_bucket_del(entry);
1034 dma_entry_free(entry);
1036 put_hash_bucket(bucket, flags);
1039 static void check_for_stack(struct device *dev,
1040 struct page *page, size_t offset)
1043 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1045 if (!stack_vm_area) {
1046 /* Stack is direct-mapped. */
1047 if (PageHighMem(page))
1049 addr = page_address(page) + offset;
1050 if (object_is_on_stack(addr))
1051 err_printk(dev, NULL, "device driver maps memory from stack [addr=%p]\n", addr);
1053 /* Stack is vmalloced. */
1056 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1057 if (page != stack_vm_area->pages[i])
1060 addr = (u8 *)current->stack + i * PAGE_SIZE + offset;
1061 err_printk(dev, NULL, "device driver maps memory from stack [probable addr=%p]\n", addr);
1067 static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
1069 if (memory_intersects(_stext, _etext, addr, len) ||
1070 memory_intersects(__start_rodata, __end_rodata, addr, len))
1071 err_printk(dev, NULL, "device driver maps memory from kernel text or rodata [addr=%p] [len=%lu]\n", addr, len);
1074 static void check_sync(struct device *dev,
1075 struct dma_debug_entry *ref,
1078 struct dma_debug_entry *entry;
1079 struct hash_bucket *bucket;
1080 unsigned long flags;
1082 bucket = get_hash_bucket(ref, &flags);
1084 entry = bucket_find_contain(&bucket, ref, &flags);
1087 err_printk(dev, NULL, "device driver tries "
1088 "to sync DMA memory it has not allocated "
1089 "[device address=0x%016llx] [size=%llu bytes]\n",
1090 (unsigned long long)ref->dev_addr, ref->size);
1094 if (ref->size > entry->size) {
1095 err_printk(dev, entry, "device driver syncs"
1096 " DMA memory outside allocated range "
1097 "[device address=0x%016llx] "
1098 "[allocation size=%llu bytes] "
1099 "[sync offset+size=%llu]\n",
1100 entry->dev_addr, entry->size,
1104 if (entry->direction == DMA_BIDIRECTIONAL)
1107 if (ref->direction != entry->direction) {
1108 err_printk(dev, entry, "device driver syncs "
1109 "DMA memory with different direction "
1110 "[device address=0x%016llx] [size=%llu bytes] "
1111 "[mapped with %s] [synced with %s]\n",
1112 (unsigned long long)ref->dev_addr, entry->size,
1113 dir2name[entry->direction],
1114 dir2name[ref->direction]);
1117 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
1118 !(ref->direction == DMA_TO_DEVICE))
1119 err_printk(dev, entry, "device driver syncs "
1120 "device read-only DMA memory for cpu "
1121 "[device address=0x%016llx] [size=%llu bytes] "
1122 "[mapped with %s] [synced with %s]\n",
1123 (unsigned long long)ref->dev_addr, entry->size,
1124 dir2name[entry->direction],
1125 dir2name[ref->direction]);
1127 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
1128 !(ref->direction == DMA_FROM_DEVICE))
1129 err_printk(dev, entry, "device driver syncs "
1130 "device write-only DMA memory to device "
1131 "[device address=0x%016llx] [size=%llu bytes] "
1132 "[mapped with %s] [synced with %s]\n",
1133 (unsigned long long)ref->dev_addr, entry->size,
1134 dir2name[entry->direction],
1135 dir2name[ref->direction]);
1137 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1138 ref->sg_call_ents != entry->sg_call_ents) {
1139 err_printk(ref->dev, entry, "device driver syncs "
1140 "DMA sg list with different entry count "
1141 "[map count=%d] [sync count=%d]\n",
1142 entry->sg_call_ents, ref->sg_call_ents);
1146 put_hash_bucket(bucket, flags);
1149 static void check_sg_segment(struct device *dev, struct scatterlist *sg)
1151 #ifdef CONFIG_DMA_API_DEBUG_SG
1152 unsigned int max_seg = dma_get_max_seg_size(dev);
1153 u64 start, end, boundary = dma_get_seg_boundary(dev);
1156 * Either the driver forgot to set dma_parms appropriately, or
1157 * whoever generated the list forgot to check them.
1159 if (sg->length > max_seg)
1160 err_printk(dev, NULL, "mapping sg segment longer than device claims to support [len=%u] [max=%u]\n",
1161 sg->length, max_seg);
1163 * In some cases this could potentially be the DMA API
1164 * implementation's fault, but it would usually imply that
1165 * the scatterlist was built inappropriately to begin with.
1167 start = sg_dma_address(sg);
1168 end = start + sg_dma_len(sg) - 1;
1169 if ((start ^ end) & ~boundary)
1170 err_printk(dev, NULL, "mapping sg segment across boundary [start=0x%016llx] [end=0x%016llx] [boundary=0x%016llx]\n",
1171 start, end, boundary);
1175 void debug_dma_map_single(struct device *dev, const void *addr,
1178 if (unlikely(dma_debug_disabled()))
1181 if (!virt_addr_valid(addr))
1182 err_printk(dev, NULL, "device driver maps memory from invalid area [addr=%p] [len=%lu]\n",
1185 if (is_vmalloc_addr(addr))
1186 err_printk(dev, NULL, "device driver maps memory from vmalloc area [addr=%p] [len=%lu]\n",
1189 EXPORT_SYMBOL(debug_dma_map_single);
1191 void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1192 size_t size, int direction, dma_addr_t dma_addr,
1193 unsigned long attrs)
1195 struct dma_debug_entry *entry;
1197 if (unlikely(dma_debug_disabled()))
1200 if (dma_mapping_error(dev, dma_addr))
1203 entry = dma_entry_alloc();
1208 entry->type = dma_debug_single;
1209 entry->pfn = page_to_pfn(page);
1210 entry->offset = offset;
1211 entry->dev_addr = dma_addr;
1213 entry->direction = direction;
1214 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1216 check_for_stack(dev, page, offset);
1218 if (!PageHighMem(page)) {
1219 void *addr = page_address(page) + offset;
1221 check_for_illegal_area(dev, addr, size);
1224 add_dma_entry(entry, attrs);
1227 void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1229 struct dma_debug_entry ref;
1230 struct dma_debug_entry *entry;
1231 struct hash_bucket *bucket;
1232 unsigned long flags;
1234 if (unlikely(dma_debug_disabled()))
1238 ref.dev_addr = dma_addr;
1239 bucket = get_hash_bucket(&ref, &flags);
1241 list_for_each_entry(entry, &bucket->list, list) {
1242 if (!exact_match(&ref, entry))
1246 * The same physical address can be mapped multiple
1247 * times. Without a hardware IOMMU this results in the
1248 * same device addresses being put into the dma-debug
1249 * hash multiple times too. This can result in false
1250 * positives being reported. Therefore we implement a
1251 * best-fit algorithm here which updates the first entry
1252 * from the hash which fits the reference value and is
1253 * not currently listed as being checked.
1255 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1256 entry->map_err_type = MAP_ERR_CHECKED;
1261 put_hash_bucket(bucket, flags);
1263 EXPORT_SYMBOL(debug_dma_mapping_error);
1265 void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
1266 size_t size, int direction)
1268 struct dma_debug_entry ref = {
1269 .type = dma_debug_single,
1273 .direction = direction,
1276 if (unlikely(dma_debug_disabled()))
1281 void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1282 int nents, int mapped_ents, int direction,
1283 unsigned long attrs)
1285 struct dma_debug_entry *entry;
1286 struct scatterlist *s;
1289 if (unlikely(dma_debug_disabled()))
1292 for_each_sg(sg, s, nents, i) {
1293 check_for_stack(dev, sg_page(s), s->offset);
1294 if (!PageHighMem(sg_page(s)))
1295 check_for_illegal_area(dev, sg_virt(s), s->length);
1298 for_each_sg(sg, s, mapped_ents, i) {
1299 entry = dma_entry_alloc();
1303 entry->type = dma_debug_sg;
1305 entry->pfn = page_to_pfn(sg_page(s));
1306 entry->offset = s->offset;
1307 entry->size = sg_dma_len(s);
1308 entry->dev_addr = sg_dma_address(s);
1309 entry->direction = direction;
1310 entry->sg_call_ents = nents;
1311 entry->sg_mapped_ents = mapped_ents;
1313 check_sg_segment(dev, s);
1315 add_dma_entry(entry, attrs);
1319 static int get_nr_mapped_entries(struct device *dev,
1320 struct dma_debug_entry *ref)
1322 struct dma_debug_entry *entry;
1323 struct hash_bucket *bucket;
1324 unsigned long flags;
1327 bucket = get_hash_bucket(ref, &flags);
1328 entry = bucket_find_exact(bucket, ref);
1332 mapped_ents = entry->sg_mapped_ents;
1333 put_hash_bucket(bucket, flags);
1338 void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1339 int nelems, int dir)
1341 struct scatterlist *s;
1342 int mapped_ents = 0, i;
1344 if (unlikely(dma_debug_disabled()))
1347 for_each_sg(sglist, s, nelems, i) {
1349 struct dma_debug_entry ref = {
1350 .type = dma_debug_sg,
1352 .pfn = page_to_pfn(sg_page(s)),
1353 .offset = s->offset,
1354 .dev_addr = sg_dma_address(s),
1355 .size = sg_dma_len(s),
1357 .sg_call_ents = nelems,
1360 if (mapped_ents && i >= mapped_ents)
1364 mapped_ents = get_nr_mapped_entries(dev, &ref);
1370 void debug_dma_alloc_coherent(struct device *dev, size_t size,
1371 dma_addr_t dma_addr, void *virt,
1372 unsigned long attrs)
1374 struct dma_debug_entry *entry;
1376 if (unlikely(dma_debug_disabled()))
1379 if (unlikely(virt == NULL))
1382 /* handle vmalloc and linear addresses */
1383 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1386 entry = dma_entry_alloc();
1390 entry->type = dma_debug_coherent;
1392 entry->offset = offset_in_page(virt);
1394 entry->dev_addr = dma_addr;
1395 entry->direction = DMA_BIDIRECTIONAL;
1397 if (is_vmalloc_addr(virt))
1398 entry->pfn = vmalloc_to_pfn(virt);
1400 entry->pfn = page_to_pfn(virt_to_page(virt));
1402 add_dma_entry(entry, attrs);
1405 void debug_dma_free_coherent(struct device *dev, size_t size,
1406 void *virt, dma_addr_t addr)
1408 struct dma_debug_entry ref = {
1409 .type = dma_debug_coherent,
1411 .offset = offset_in_page(virt),
1414 .direction = DMA_BIDIRECTIONAL,
1417 /* handle vmalloc and linear addresses */
1418 if (!is_vmalloc_addr(virt) && !virt_addr_valid(virt))
1421 if (is_vmalloc_addr(virt))
1422 ref.pfn = vmalloc_to_pfn(virt);
1424 ref.pfn = page_to_pfn(virt_to_page(virt));
1426 if (unlikely(dma_debug_disabled()))
1432 void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1433 int direction, dma_addr_t dma_addr,
1434 unsigned long attrs)
1436 struct dma_debug_entry *entry;
1438 if (unlikely(dma_debug_disabled()))
1441 entry = dma_entry_alloc();
1445 entry->type = dma_debug_resource;
1447 entry->pfn = PHYS_PFN(addr);
1448 entry->offset = offset_in_page(addr);
1450 entry->dev_addr = dma_addr;
1451 entry->direction = direction;
1452 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1454 add_dma_entry(entry, attrs);
1457 void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1458 size_t size, int direction)
1460 struct dma_debug_entry ref = {
1461 .type = dma_debug_resource,
1463 .dev_addr = dma_addr,
1465 .direction = direction,
1468 if (unlikely(dma_debug_disabled()))
1474 void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1475 size_t size, int direction)
1477 struct dma_debug_entry ref;
1479 if (unlikely(dma_debug_disabled()))
1482 ref.type = dma_debug_single;
1484 ref.dev_addr = dma_handle;
1486 ref.direction = direction;
1487 ref.sg_call_ents = 0;
1489 check_sync(dev, &ref, true);
1492 void debug_dma_sync_single_for_device(struct device *dev,
1493 dma_addr_t dma_handle, size_t size,
1496 struct dma_debug_entry ref;
1498 if (unlikely(dma_debug_disabled()))
1501 ref.type = dma_debug_single;
1503 ref.dev_addr = dma_handle;
1505 ref.direction = direction;
1506 ref.sg_call_ents = 0;
1508 check_sync(dev, &ref, false);
1511 void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1512 int nelems, int direction)
1514 struct scatterlist *s;
1515 int mapped_ents = 0, i;
1517 if (unlikely(dma_debug_disabled()))
1520 for_each_sg(sg, s, nelems, i) {
1522 struct dma_debug_entry ref = {
1523 .type = dma_debug_sg,
1525 .pfn = page_to_pfn(sg_page(s)),
1526 .offset = s->offset,
1527 .dev_addr = sg_dma_address(s),
1528 .size = sg_dma_len(s),
1529 .direction = direction,
1530 .sg_call_ents = nelems,
1534 mapped_ents = get_nr_mapped_entries(dev, &ref);
1536 if (i >= mapped_ents)
1539 check_sync(dev, &ref, true);
1543 void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1544 int nelems, int direction)
1546 struct scatterlist *s;
1547 int mapped_ents = 0, i;
1549 if (unlikely(dma_debug_disabled()))
1552 for_each_sg(sg, s, nelems, i) {
1554 struct dma_debug_entry ref = {
1555 .type = dma_debug_sg,
1557 .pfn = page_to_pfn(sg_page(s)),
1558 .offset = s->offset,
1559 .dev_addr = sg_dma_address(s),
1560 .size = sg_dma_len(s),
1561 .direction = direction,
1562 .sg_call_ents = nelems,
1565 mapped_ents = get_nr_mapped_entries(dev, &ref);
1567 if (i >= mapped_ents)
1570 check_sync(dev, &ref, false);
1574 static int __init dma_debug_driver_setup(char *str)
1578 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1579 current_driver_name[i] = *str;
1584 if (current_driver_name[0])
1585 pr_info("enable driver filter for driver [%s]\n",
1586 current_driver_name);
1591 __setup("dma_debug_driver=", dma_debug_driver_setup);