blob: c7d9ce122529932718ea343c142a9ac3207b3e45 [file] [log] [blame]
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +03001/*
2 * Copyright (c) 2006, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
15 * Place - Suite 330, Boston, MA 02111-1307 USA.
16 *
17 * Copyright (C) 2006-2008 Intel Corporation
18 * Copyright IBM Corporation, 2008
Avi Kivity221d0592010-05-23 18:37:00 +030019 * Copyright 2010 Red Hat, Inc. and/or its affiliates.
20 *
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030021 * Author: Allen M. Kay <allen.m.kay@intel.com>
22 * Author: Weidong Han <weidong.han@intel.com>
23 * Author: Ben-Ami Yassour <benami@il.ibm.com>
24 */
25
26#include <linux/list.h>
27#include <linux/kvm_host.h>
Paul Gortmaker51441d42011-07-27 21:25:05 -040028#include <linux/module.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030029#include <linux/pci.h>
Paul Gortmaker799fd8b2011-07-27 21:17:59 -040030#include <linux/stat.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030031#include <linux/dmar.h>
Joerg Roedel19de40a2008-12-03 14:43:34 +010032#include <linux/iommu.h>
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030033#include <linux/intel-iommu.h>
34
Rusty Russell90ab5ee2012-01-13 09:32:20 +103035static bool allow_unsafe_assigned_interrupts;
Alex Williamson3f68b032011-07-14 13:27:03 -060036module_param_named(allow_unsafe_assigned_interrupts,
37 allow_unsafe_assigned_interrupts, bool, S_IRUGO | S_IWUSR);
38MODULE_PARM_DESC(allow_unsafe_assigned_interrupts,
39 "Enable device assignment on platforms without interrupt remapping support.");
40
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030041static int kvm_iommu_unmap_memslots(struct kvm *kvm);
42static void kvm_iommu_put_pages(struct kvm *kvm,
43 gfn_t base_gfn, unsigned long npages);
44
Xiao Guangrongd5661042012-07-17 21:56:16 +080045static pfn_t kvm_pin_pages(struct kvm_memory_slot *slot, gfn_t gfn,
46 unsigned long size)
Joerg Roedelfcd95802010-01-11 16:38:18 +010047{
48 gfn_t end_gfn;
49 pfn_t pfn;
50
Xiao Guangrongd5661042012-07-17 21:56:16 +080051 pfn = gfn_to_pfn_memslot(slot, gfn);
Joerg Roedelfcd95802010-01-11 16:38:18 +010052 end_gfn = gfn + (size >> PAGE_SHIFT);
53 gfn += 1;
54
Xiao Guangrong81c52c52012-10-16 20:10:59 +080055 if (is_error_noslot_pfn(pfn))
Joerg Roedelfcd95802010-01-11 16:38:18 +010056 return pfn;
57
58 while (gfn < end_gfn)
Xiao Guangrongd5661042012-07-17 21:56:16 +080059 gfn_to_pfn_memslot(slot, gfn++);
Joerg Roedelfcd95802010-01-11 16:38:18 +010060
61 return pfn;
62}
63
Marcelo Tosatti3ad26d82009-12-23 14:35:20 -020064int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030065{
Joerg Roedelfcd95802010-01-11 16:38:18 +010066 gfn_t gfn, end_gfn;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030067 pfn_t pfn;
Joerg Roedelfcd95802010-01-11 16:38:18 +010068 int r = 0;
Joerg Roedel19de40a2008-12-03 14:43:34 +010069 struct iommu_domain *domain = kvm->arch.iommu_domain;
Sheng Yang522c68c2009-04-27 20:35:43 +080070 int flags;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030071
72 /* check if iommu exists and in use */
73 if (!domain)
74 return 0;
75
Joerg Roedelfcd95802010-01-11 16:38:18 +010076 gfn = slot->base_gfn;
77 end_gfn = gfn + slot->npages;
78
Alex Williamsond47510e22013-01-24 15:04:09 -070079 flags = IOMMU_READ;
80 if (!(slot->flags & KVM_MEM_READONLY))
81 flags |= IOMMU_WRITE;
Alex Williamsond96eb2c2013-10-30 11:02:23 -060082 if (!kvm->arch.iommu_noncoherent)
Sheng Yang522c68c2009-04-27 20:35:43 +080083 flags |= IOMMU_CACHE;
84
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +030085
Joerg Roedelfcd95802010-01-11 16:38:18 +010086 while (gfn < end_gfn) {
87 unsigned long page_size;
88
89 /* Check if already mapped */
90 if (iommu_iova_to_phys(domain, gfn_to_gpa(gfn))) {
91 gfn += 1;
92 continue;
93 }
94
95 /* Get the page size we could use to map */
96 page_size = kvm_host_page_size(kvm, gfn);
97
98 /* Make sure the page_size does not exceed the memslot */
99 while ((gfn + (page_size >> PAGE_SHIFT)) > end_gfn)
100 page_size >>= 1;
101
102 /* Make sure gfn is aligned to the page size we want to map */
103 while ((gfn << PAGE_SHIFT) & (page_size - 1))
104 page_size >>= 1;
105
106 /*
107 * Pin all pages we are about to map in memory. This is
108 * important because we unmap and unpin in 4kb steps later.
109 */
Xiao Guangrongd5661042012-07-17 21:56:16 +0800110 pfn = kvm_pin_pages(slot, gfn, page_size);
Xiao Guangrong81c52c52012-10-16 20:10:59 +0800111 if (is_error_noslot_pfn(pfn)) {
Joerg Roedelfcd95802010-01-11 16:38:18 +0100112 gfn += 1;
113 continue;
114 }
115
116 /* Map into IO address space */
117 r = iommu_map(domain, gfn_to_gpa(gfn), pfn_to_hpa(pfn),
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200118 page_size, flags);
Weidong Hane5fcfc82008-09-25 23:32:02 +0800119 if (r) {
Weidong Han260782b2008-12-02 21:03:39 +0800120 printk(KERN_ERR "kvm_iommu_map_address:"
Joerg Roedel5689cc52010-07-01 16:00:12 +0200121 "iommu failed to map pfn=%llx\n", pfn);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300122 goto unmap_pages;
123 }
Joerg Roedelfcd95802010-01-11 16:38:18 +0100124
125 gfn += page_size >> PAGE_SHIFT;
126
127
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300128 }
Joerg Roedelfcd95802010-01-11 16:38:18 +0100129
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300130 return 0;
131
132unmap_pages:
Joerg Roedelfcd95802010-01-11 16:38:18 +0100133 kvm_iommu_put_pages(kvm, slot->base_gfn, gfn);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300134 return r;
135}
136
137static int kvm_iommu_map_memslots(struct kvm *kvm)
138{
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800139 int idx, r = 0;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200140 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800141 struct kvm_memory_slot *memslot;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300142
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600143 if (kvm->arch.iommu_noncoherent)
144 kvm_arch_register_noncoherent_dma(kvm);
145
Sheng Yang95c87e22010-07-01 15:00:50 +0800146 idx = srcu_read_lock(&kvm->srcu);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800147 slots = kvm_memslots(kvm);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200148
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800149 kvm_for_each_memslot(memslot, slots) {
150 r = kvm_iommu_map_pages(kvm, memslot);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300151 if (r)
152 break;
153 }
Sheng Yang95c87e22010-07-01 15:00:50 +0800154 srcu_read_unlock(&kvm->srcu, idx);
Mark McLoughlin682edb42009-02-05 18:23:46 +0000155
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300156 return r;
157}
158
Weidong Han260782b2008-12-02 21:03:39 +0800159int kvm_assign_device(struct kvm *kvm,
160 struct kvm_assigned_dev_kernel *assigned_dev)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300161{
162 struct pci_dev *pdev = NULL;
Joerg Roedel19de40a2008-12-03 14:43:34 +0100163 struct iommu_domain *domain = kvm->arch.iommu_domain;
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600164 int r;
165 bool noncoherent;
Weidong Han260782b2008-12-02 21:03:39 +0800166
167 /* check if iommu exists and in use */
168 if (!domain)
169 return 0;
170
171 pdev = assigned_dev->dev;
172 if (pdev == NULL)
173 return -ENODEV;
174
Joerg Roedel19de40a2008-12-03 14:43:34 +0100175 r = iommu_attach_device(domain, &pdev->dev);
Weidong Han260782b2008-12-02 21:03:39 +0800176 if (r) {
Shuah Khand151f632012-10-08 18:36:11 -0600177 dev_err(&pdev->dev, "kvm assign device failed ret %d", r);
Weidong Han260782b2008-12-02 21:03:39 +0800178 return r;
179 }
180
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600181 noncoherent = !iommu_domain_has_cap(kvm->arch.iommu_domain,
182 IOMMU_CAP_CACHE_COHERENCY);
Sheng Yang522c68c2009-04-27 20:35:43 +0800183
184 /* Check if need to update IOMMU page table for guest memory */
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600185 if (noncoherent != kvm->arch.iommu_noncoherent) {
Sheng Yang522c68c2009-04-27 20:35:43 +0800186 kvm_iommu_unmap_memslots(kvm);
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600187 kvm->arch.iommu_noncoherent = noncoherent;
Sheng Yang522c68c2009-04-27 20:35:43 +0800188 r = kvm_iommu_map_memslots(kvm);
189 if (r)
190 goto out_unmap;
191 }
192
Greg Rose67778292011-07-22 05:46:07 +0000193 pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
194
Andre Richter29242cb2013-10-02 12:23:26 +0200195 dev_info(&pdev->dev, "kvm assign device\n");
Weidong Han260782b2008-12-02 21:03:39 +0800196
197 return 0;
Sheng Yang522c68c2009-04-27 20:35:43 +0800198out_unmap:
199 kvm_iommu_unmap_memslots(kvm);
200 return r;
Weidong Han260782b2008-12-02 21:03:39 +0800201}
202
Weidong Han0a920352008-12-02 21:24:23 +0800203int kvm_deassign_device(struct kvm *kvm,
204 struct kvm_assigned_dev_kernel *assigned_dev)
205{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100206 struct iommu_domain *domain = kvm->arch.iommu_domain;
Weidong Han0a920352008-12-02 21:24:23 +0800207 struct pci_dev *pdev = NULL;
208
209 /* check if iommu exists and in use */
210 if (!domain)
211 return 0;
212
213 pdev = assigned_dev->dev;
214 if (pdev == NULL)
215 return -ENODEV;
216
Joerg Roedel19de40a2008-12-03 14:43:34 +0100217 iommu_detach_device(domain, &pdev->dev);
Weidong Han0a920352008-12-02 21:24:23 +0800218
Greg Rose67778292011-07-22 05:46:07 +0000219 pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
220
Andre Richter29242cb2013-10-02 12:23:26 +0200221 dev_info(&pdev->dev, "kvm deassign device\n");
Weidong Han0a920352008-12-02 21:24:23 +0800222
223 return 0;
224}
225
Weidong Han260782b2008-12-02 21:03:39 +0800226int kvm_iommu_map_guest(struct kvm *kvm)
227{
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300228 int r;
229
Joerg Roedela1b60c12011-09-06 18:46:34 +0200230 if (!iommu_present(&pci_bus_type)) {
Joerg Roedel19de40a2008-12-03 14:43:34 +0100231 printk(KERN_ERR "%s: iommu not found\n", __func__);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300232 return -ENODEV;
233 }
234
Alex Williamson21a14162012-04-17 21:46:44 -0600235 mutex_lock(&kvm->slots_lock);
236
Joerg Roedel905d66c2011-09-06 16:03:26 +0200237 kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type);
Alex Williamson21a14162012-04-17 21:46:44 -0600238 if (!kvm->arch.iommu_domain) {
239 r = -ENOMEM;
240 goto out_unlock;
241 }
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300242
Alex Williamson3f68b032011-07-14 13:27:03 -0600243 if (!allow_unsafe_assigned_interrupts &&
244 !iommu_domain_has_cap(kvm->arch.iommu_domain,
245 IOMMU_CAP_INTR_REMAP)) {
246 printk(KERN_WARNING "%s: No interrupt remapping support,"
247 " disallowing device assignment."
248 " Re-enble with \"allow_unsafe_assigned_interrupts=1\""
249 " module option.\n", __func__);
250 iommu_domain_free(kvm->arch.iommu_domain);
251 kvm->arch.iommu_domain = NULL;
Alex Williamson21a14162012-04-17 21:46:44 -0600252 r = -EPERM;
253 goto out_unlock;
Alex Williamson3f68b032011-07-14 13:27:03 -0600254 }
255
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300256 r = kvm_iommu_map_memslots(kvm);
257 if (r)
Alex Williamson21a14162012-04-17 21:46:44 -0600258 kvm_iommu_unmap_memslots(kvm);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300259
Alex Williamson21a14162012-04-17 21:46:44 -0600260out_unlock:
261 mutex_unlock(&kvm->slots_lock);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300262 return r;
263}
264
Joerg Roedelfcd95802010-01-11 16:38:18 +0100265static void kvm_unpin_pages(struct kvm *kvm, pfn_t pfn, unsigned long npages)
266{
267 unsigned long i;
268
269 for (i = 0; i < npages; ++i)
270 kvm_release_pfn_clean(pfn + i);
271}
272
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300273static void kvm_iommu_put_pages(struct kvm *kvm,
Weidong Han260782b2008-12-02 21:03:39 +0800274 gfn_t base_gfn, unsigned long npages)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300275{
Joerg Roedelfcd95802010-01-11 16:38:18 +0100276 struct iommu_domain *domain;
277 gfn_t end_gfn, gfn;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300278 pfn_t pfn;
Weidong Han260782b2008-12-02 21:03:39 +0800279 u64 phys;
280
Joerg Roedelfcd95802010-01-11 16:38:18 +0100281 domain = kvm->arch.iommu_domain;
282 end_gfn = base_gfn + npages;
283 gfn = base_gfn;
284
Weidong Han260782b2008-12-02 21:03:39 +0800285 /* check if iommu exists and in use */
286 if (!domain)
287 return;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300288
Joerg Roedelfcd95802010-01-11 16:38:18 +0100289 while (gfn < end_gfn) {
290 unsigned long unmap_pages;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200291 size_t size;
Weidong Han260782b2008-12-02 21:03:39 +0800292
Joerg Roedelfcd95802010-01-11 16:38:18 +0100293 /* Get physical address */
294 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
Xiao Guangrong16b854c2012-08-03 15:36:52 +0800295
296 if (!phys) {
297 gfn++;
298 continue;
299 }
300
Joerg Roedelfcd95802010-01-11 16:38:18 +0100301 pfn = phys >> PAGE_SHIFT;
302
303 /* Unmap address from IO address space */
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200304 size = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
305 unmap_pages = 1ULL << get_order(size);
Joerg Roedelfcd95802010-01-11 16:38:18 +0100306
307 /* Unpin all pages we just unmapped to not leak any memory */
308 kvm_unpin_pages(kvm, pfn, unmap_pages);
309
310 gfn += unmap_pages;
311 }
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300312}
313
Alex Williamson32f6daa2012-04-11 09:51:49 -0600314void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
315{
316 kvm_iommu_put_pages(kvm, slot->base_gfn, slot->npages);
317}
318
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300319static int kvm_iommu_unmap_memslots(struct kvm *kvm)
320{
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800321 int idx;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200322 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800323 struct kvm_memory_slot *memslot;
Mark McLoughlin682edb42009-02-05 18:23:46 +0000324
Sheng Yang95c87e22010-07-01 15:00:50 +0800325 idx = srcu_read_lock(&kvm->srcu);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800326 slots = kvm_memslots(kvm);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200327
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800328 kvm_for_each_memslot(memslot, slots)
Alex Williamson32f6daa2012-04-11 09:51:49 -0600329 kvm_iommu_unmap_pages(kvm, memslot);
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800330
Sheng Yang95c87e22010-07-01 15:00:50 +0800331 srcu_read_unlock(&kvm->srcu, idx);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300332
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600333 if (kvm->arch.iommu_noncoherent)
334 kvm_arch_unregister_noncoherent_dma(kvm);
335
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300336 return 0;
337}
338
339int kvm_iommu_unmap_guest(struct kvm *kvm)
340{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100341 struct iommu_domain *domain = kvm->arch.iommu_domain;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300342
343 /* check if iommu exists and in use */
344 if (!domain)
345 return 0;
346
Alex Williamson21a14162012-04-17 21:46:44 -0600347 mutex_lock(&kvm->slots_lock);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300348 kvm_iommu_unmap_memslots(kvm);
Alex Williamson21a14162012-04-17 21:46:44 -0600349 kvm->arch.iommu_domain = NULL;
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600350 kvm->arch.iommu_noncoherent = false;
Alex Williamson21a14162012-04-17 21:46:44 -0600351 mutex_unlock(&kvm->slots_lock);
352
Joerg Roedel19de40a2008-12-03 14:43:34 +0100353 iommu_domain_free(domain);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300354 return 0;
355}