blob: 0df7d4b34dfec96345d359bf08562309d8607f40 [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
Greg Edwards27ef63c2013-11-04 09:08:12 -0700106 /* Make sure hva is aligned to the page size we want to map */
107 while (__gfn_to_hva_memslot(slot, gfn) & (page_size - 1))
108 page_size >>= 1;
109
Joerg Roedelfcd95802010-01-11 16:38:18 +0100110 /*
111 * Pin all pages we are about to map in memory. This is
112 * important because we unmap and unpin in 4kb steps later.
113 */
Xiao Guangrongd5661042012-07-17 21:56:16 +0800114 pfn = kvm_pin_pages(slot, gfn, page_size);
Xiao Guangrong81c52c52012-10-16 20:10:59 +0800115 if (is_error_noslot_pfn(pfn)) {
Joerg Roedelfcd95802010-01-11 16:38:18 +0100116 gfn += 1;
117 continue;
118 }
119
120 /* Map into IO address space */
121 r = iommu_map(domain, gfn_to_gpa(gfn), pfn_to_hpa(pfn),
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200122 page_size, flags);
Weidong Hane5fcfc82008-09-25 23:32:02 +0800123 if (r) {
Weidong Han260782b2008-12-02 21:03:39 +0800124 printk(KERN_ERR "kvm_iommu_map_address:"
Joerg Roedel5689cc52010-07-01 16:00:12 +0200125 "iommu failed to map pfn=%llx\n", pfn);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300126 goto unmap_pages;
127 }
Joerg Roedelfcd95802010-01-11 16:38:18 +0100128
129 gfn += page_size >> PAGE_SHIFT;
130
131
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300132 }
Joerg Roedelfcd95802010-01-11 16:38:18 +0100133
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300134 return 0;
135
136unmap_pages:
Joerg Roedelfcd95802010-01-11 16:38:18 +0100137 kvm_iommu_put_pages(kvm, slot->base_gfn, gfn);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300138 return r;
139}
140
141static int kvm_iommu_map_memslots(struct kvm *kvm)
142{
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800143 int idx, r = 0;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200144 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800145 struct kvm_memory_slot *memslot;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300146
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600147 if (kvm->arch.iommu_noncoherent)
148 kvm_arch_register_noncoherent_dma(kvm);
149
Sheng Yang95c87e22010-07-01 15:00:50 +0800150 idx = srcu_read_lock(&kvm->srcu);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800151 slots = kvm_memslots(kvm);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200152
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800153 kvm_for_each_memslot(memslot, slots) {
154 r = kvm_iommu_map_pages(kvm, memslot);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300155 if (r)
156 break;
157 }
Sheng Yang95c87e22010-07-01 15:00:50 +0800158 srcu_read_unlock(&kvm->srcu, idx);
Mark McLoughlin682edb42009-02-05 18:23:46 +0000159
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300160 return r;
161}
162
Weidong Han260782b2008-12-02 21:03:39 +0800163int kvm_assign_device(struct kvm *kvm,
164 struct kvm_assigned_dev_kernel *assigned_dev)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300165{
166 struct pci_dev *pdev = NULL;
Joerg Roedel19de40a2008-12-03 14:43:34 +0100167 struct iommu_domain *domain = kvm->arch.iommu_domain;
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600168 int r;
169 bool noncoherent;
Weidong Han260782b2008-12-02 21:03:39 +0800170
171 /* check if iommu exists and in use */
172 if (!domain)
173 return 0;
174
175 pdev = assigned_dev->dev;
176 if (pdev == NULL)
177 return -ENODEV;
178
Joerg Roedel19de40a2008-12-03 14:43:34 +0100179 r = iommu_attach_device(domain, &pdev->dev);
Weidong Han260782b2008-12-02 21:03:39 +0800180 if (r) {
Shuah Khand151f632012-10-08 18:36:11 -0600181 dev_err(&pdev->dev, "kvm assign device failed ret %d", r);
Weidong Han260782b2008-12-02 21:03:39 +0800182 return r;
183 }
184
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600185 noncoherent = !iommu_domain_has_cap(kvm->arch.iommu_domain,
186 IOMMU_CAP_CACHE_COHERENCY);
Sheng Yang522c68c2009-04-27 20:35:43 +0800187
188 /* Check if need to update IOMMU page table for guest memory */
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600189 if (noncoherent != kvm->arch.iommu_noncoherent) {
Sheng Yang522c68c2009-04-27 20:35:43 +0800190 kvm_iommu_unmap_memslots(kvm);
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600191 kvm->arch.iommu_noncoherent = noncoherent;
Sheng Yang522c68c2009-04-27 20:35:43 +0800192 r = kvm_iommu_map_memslots(kvm);
193 if (r)
194 goto out_unmap;
195 }
196
Greg Rose67778292011-07-22 05:46:07 +0000197 pdev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
198
Andre Richter29242cb2013-10-02 12:23:26 +0200199 dev_info(&pdev->dev, "kvm assign device\n");
Weidong Han260782b2008-12-02 21:03:39 +0800200
201 return 0;
Sheng Yang522c68c2009-04-27 20:35:43 +0800202out_unmap:
203 kvm_iommu_unmap_memslots(kvm);
204 return r;
Weidong Han260782b2008-12-02 21:03:39 +0800205}
206
Weidong Han0a920352008-12-02 21:24:23 +0800207int kvm_deassign_device(struct kvm *kvm,
208 struct kvm_assigned_dev_kernel *assigned_dev)
209{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100210 struct iommu_domain *domain = kvm->arch.iommu_domain;
Weidong Han0a920352008-12-02 21:24:23 +0800211 struct pci_dev *pdev = NULL;
212
213 /* check if iommu exists and in use */
214 if (!domain)
215 return 0;
216
217 pdev = assigned_dev->dev;
218 if (pdev == NULL)
219 return -ENODEV;
220
Joerg Roedel19de40a2008-12-03 14:43:34 +0100221 iommu_detach_device(domain, &pdev->dev);
Weidong Han0a920352008-12-02 21:24:23 +0800222
Greg Rose67778292011-07-22 05:46:07 +0000223 pdev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
224
Andre Richter29242cb2013-10-02 12:23:26 +0200225 dev_info(&pdev->dev, "kvm deassign device\n");
Weidong Han0a920352008-12-02 21:24:23 +0800226
227 return 0;
228}
229
Weidong Han260782b2008-12-02 21:03:39 +0800230int kvm_iommu_map_guest(struct kvm *kvm)
231{
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300232 int r;
233
Joerg Roedela1b60c12011-09-06 18:46:34 +0200234 if (!iommu_present(&pci_bus_type)) {
Joerg Roedel19de40a2008-12-03 14:43:34 +0100235 printk(KERN_ERR "%s: iommu not found\n", __func__);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300236 return -ENODEV;
237 }
238
Alex Williamson21a14162012-04-17 21:46:44 -0600239 mutex_lock(&kvm->slots_lock);
240
Joerg Roedel905d66c2011-09-06 16:03:26 +0200241 kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type);
Alex Williamson21a14162012-04-17 21:46:44 -0600242 if (!kvm->arch.iommu_domain) {
243 r = -ENOMEM;
244 goto out_unlock;
245 }
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300246
Alex Williamson3f68b032011-07-14 13:27:03 -0600247 if (!allow_unsafe_assigned_interrupts &&
248 !iommu_domain_has_cap(kvm->arch.iommu_domain,
249 IOMMU_CAP_INTR_REMAP)) {
250 printk(KERN_WARNING "%s: No interrupt remapping support,"
251 " disallowing device assignment."
252 " Re-enble with \"allow_unsafe_assigned_interrupts=1\""
253 " module option.\n", __func__);
254 iommu_domain_free(kvm->arch.iommu_domain);
255 kvm->arch.iommu_domain = NULL;
Alex Williamson21a14162012-04-17 21:46:44 -0600256 r = -EPERM;
257 goto out_unlock;
Alex Williamson3f68b032011-07-14 13:27:03 -0600258 }
259
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300260 r = kvm_iommu_map_memslots(kvm);
261 if (r)
Alex Williamson21a14162012-04-17 21:46:44 -0600262 kvm_iommu_unmap_memslots(kvm);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300263
Alex Williamson21a14162012-04-17 21:46:44 -0600264out_unlock:
265 mutex_unlock(&kvm->slots_lock);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300266 return r;
267}
268
Joerg Roedelfcd95802010-01-11 16:38:18 +0100269static void kvm_unpin_pages(struct kvm *kvm, pfn_t pfn, unsigned long npages)
270{
271 unsigned long i;
272
273 for (i = 0; i < npages; ++i)
274 kvm_release_pfn_clean(pfn + i);
275}
276
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300277static void kvm_iommu_put_pages(struct kvm *kvm,
Weidong Han260782b2008-12-02 21:03:39 +0800278 gfn_t base_gfn, unsigned long npages)
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300279{
Joerg Roedelfcd95802010-01-11 16:38:18 +0100280 struct iommu_domain *domain;
281 gfn_t end_gfn, gfn;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300282 pfn_t pfn;
Weidong Han260782b2008-12-02 21:03:39 +0800283 u64 phys;
284
Joerg Roedelfcd95802010-01-11 16:38:18 +0100285 domain = kvm->arch.iommu_domain;
286 end_gfn = base_gfn + npages;
287 gfn = base_gfn;
288
Weidong Han260782b2008-12-02 21:03:39 +0800289 /* check if iommu exists and in use */
290 if (!domain)
291 return;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300292
Joerg Roedelfcd95802010-01-11 16:38:18 +0100293 while (gfn < end_gfn) {
294 unsigned long unmap_pages;
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200295 size_t size;
Weidong Han260782b2008-12-02 21:03:39 +0800296
Joerg Roedelfcd95802010-01-11 16:38:18 +0100297 /* Get physical address */
298 phys = iommu_iova_to_phys(domain, gfn_to_gpa(gfn));
Xiao Guangrong16b854c2012-08-03 15:36:52 +0800299
300 if (!phys) {
301 gfn++;
302 continue;
303 }
304
Joerg Roedelfcd95802010-01-11 16:38:18 +0100305 pfn = phys >> PAGE_SHIFT;
306
307 /* Unmap address from IO address space */
Ohad Ben-Cohen7d3002c2011-11-10 11:32:26 +0200308 size = iommu_unmap(domain, gfn_to_gpa(gfn), PAGE_SIZE);
309 unmap_pages = 1ULL << get_order(size);
Joerg Roedelfcd95802010-01-11 16:38:18 +0100310
311 /* Unpin all pages we just unmapped to not leak any memory */
312 kvm_unpin_pages(kvm, pfn, unmap_pages);
313
314 gfn += unmap_pages;
315 }
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300316}
317
Alex Williamson32f6daa2012-04-11 09:51:49 -0600318void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot)
319{
320 kvm_iommu_put_pages(kvm, slot->base_gfn, slot->npages);
321}
322
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300323static int kvm_iommu_unmap_memslots(struct kvm *kvm)
324{
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800325 int idx;
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200326 struct kvm_memslots *slots;
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800327 struct kvm_memory_slot *memslot;
Mark McLoughlin682edb42009-02-05 18:23:46 +0000328
Sheng Yang95c87e22010-07-01 15:00:50 +0800329 idx = srcu_read_lock(&kvm->srcu);
Lai Jiangshan90d83dc2010-04-19 17:41:23 +0800330 slots = kvm_memslots(kvm);
Marcelo Tosatti46a26bf2009-12-23 14:35:16 -0200331
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800332 kvm_for_each_memslot(memslot, slots)
Alex Williamson32f6daa2012-04-11 09:51:49 -0600333 kvm_iommu_unmap_pages(kvm, memslot);
Xiao Guangrongbe6ba0f2011-11-24 17:39:18 +0800334
Sheng Yang95c87e22010-07-01 15:00:50 +0800335 srcu_read_unlock(&kvm->srcu, idx);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300336
Alex Williamsone0f0bbc2013-10-30 11:02:30 -0600337 if (kvm->arch.iommu_noncoherent)
338 kvm_arch_unregister_noncoherent_dma(kvm);
339
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300340 return 0;
341}
342
343int kvm_iommu_unmap_guest(struct kvm *kvm)
344{
Joerg Roedel19de40a2008-12-03 14:43:34 +0100345 struct iommu_domain *domain = kvm->arch.iommu_domain;
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300346
347 /* check if iommu exists and in use */
348 if (!domain)
349 return 0;
350
Alex Williamson21a14162012-04-17 21:46:44 -0600351 mutex_lock(&kvm->slots_lock);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300352 kvm_iommu_unmap_memslots(kvm);
Alex Williamson21a14162012-04-17 21:46:44 -0600353 kvm->arch.iommu_domain = NULL;
Alex Williamsond96eb2c2013-10-30 11:02:23 -0600354 kvm->arch.iommu_noncoherent = false;
Alex Williamson21a14162012-04-17 21:46:44 -0600355 mutex_unlock(&kvm->slots_lock);
356
Joerg Roedel19de40a2008-12-03 14:43:34 +0100357 iommu_domain_free(domain);
Ben-Ami Yassour62c476c2008-09-14 03:48:28 +0300358 return 0;
359}