]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/x86/power/hibernate_64.c
Merge branch 'x86/process' into x86/mm, to create new base for further patches
[karo-tx-linux.git] / arch / x86 / power / hibernate_64.c
1 /*
2  * Hibernation support for x86-64
3  *
4  * Distribute under GPLv2
5  *
6  * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
7  * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
8  * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
9  */
10
11 #include <linux/gfp.h>
12 #include <linux/smp.h>
13 #include <linux/suspend.h>
14 #include <linux/scatterlist.h>
15 #include <linux/kdebug.h>
16
17 #include <crypto/hash.h>
18
19 #include <asm/init.h>
20 #include <asm/proto.h>
21 #include <asm/page.h>
22 #include <asm/pgtable.h>
23 #include <asm/mtrr.h>
24 #include <asm/sections.h>
25 #include <asm/suspend.h>
26 #include <asm/tlbflush.h>
27
28 /* Defined in hibernate_asm_64.S */
29 extern asmlinkage __visible int restore_image(void);
30
31 /*
32  * Address to jump to in the last phase of restore in order to get to the image
33  * kernel's text (this value is passed in the image header).
34  */
35 unsigned long restore_jump_address __visible;
36 unsigned long jump_address_phys;
37
38 /*
39  * Value of the cr3 register from before the hibernation (this value is passed
40  * in the image header).
41  */
42 unsigned long restore_cr3 __visible;
43
44 unsigned long temp_level4_pgt __visible;
45
46 unsigned long relocated_restore_code __visible;
47
48 static int set_up_temporary_text_mapping(pgd_t *pgd)
49 {
50         pmd_t *pmd;
51         pud_t *pud;
52         p4d_t *p4d;
53
54         /*
55          * The new mapping only has to cover the page containing the image
56          * kernel's entry point (jump_address_phys), because the switch over to
57          * it is carried out by relocated code running from a page allocated
58          * specifically for this purpose and covered by the identity mapping, so
59          * the temporary kernel text mapping is only needed for the final jump.
60          * Moreover, in that mapping the virtual address of the image kernel's
61          * entry point must be the same as its virtual address in the image
62          * kernel (restore_jump_address), so the image kernel's
63          * restore_registers() code doesn't find itself in a different area of
64          * the virtual address space after switching over to the original page
65          * tables used by the image kernel.
66          */
67
68         if (IS_ENABLED(CONFIG_X86_5LEVEL)) {
69                 p4d = (p4d_t *)get_safe_page(GFP_ATOMIC);
70                 if (!p4d)
71                         return -ENOMEM;
72         }
73
74         pud = (pud_t *)get_safe_page(GFP_ATOMIC);
75         if (!pud)
76                 return -ENOMEM;
77
78         pmd = (pmd_t *)get_safe_page(GFP_ATOMIC);
79         if (!pmd)
80                 return -ENOMEM;
81
82         set_pmd(pmd + pmd_index(restore_jump_address),
83                 __pmd((jump_address_phys & PMD_MASK) | __PAGE_KERNEL_LARGE_EXEC));
84         set_pud(pud + pud_index(restore_jump_address),
85                 __pud(__pa(pmd) | _KERNPG_TABLE));
86         if (IS_ENABLED(CONFIG_X86_5LEVEL)) {
87                 set_p4d(p4d + p4d_index(restore_jump_address), __p4d(__pa(pud) | _KERNPG_TABLE));
88                 set_pgd(pgd + pgd_index(restore_jump_address), __pgd(__pa(p4d) | _KERNPG_TABLE));
89         } else {
90                 /* No p4d for 4-level paging: point the pgd to the pud page table */
91                 set_pgd(pgd + pgd_index(restore_jump_address), __pgd(__pa(pud) | _KERNPG_TABLE));
92         }
93
94         return 0;
95 }
96
97 static void *alloc_pgt_page(void *context)
98 {
99         return (void *)get_safe_page(GFP_ATOMIC);
100 }
101
102 static int set_up_temporary_mappings(void)
103 {
104         struct x86_mapping_info info = {
105                 .alloc_pgt_page = alloc_pgt_page,
106                 .pmd_flag       = __PAGE_KERNEL_LARGE_EXEC,
107                 .offset         = __PAGE_OFFSET,
108         };
109         unsigned long mstart, mend;
110         pgd_t *pgd;
111         int result;
112         int i;
113
114         pgd = (pgd_t *)get_safe_page(GFP_ATOMIC);
115         if (!pgd)
116                 return -ENOMEM;
117
118         /* Prepare a temporary mapping for the kernel text */
119         result = set_up_temporary_text_mapping(pgd);
120         if (result)
121                 return result;
122
123         /* Set up the direct mapping from scratch */
124         for (i = 0; i < nr_pfn_mapped; i++) {
125                 mstart = pfn_mapped[i].start << PAGE_SHIFT;
126                 mend   = pfn_mapped[i].end << PAGE_SHIFT;
127
128                 result = kernel_ident_mapping_init(&info, pgd, mstart, mend);
129                 if (result)
130                         return result;
131         }
132
133         temp_level4_pgt = __pa(pgd);
134         return 0;
135 }
136
137 static int relocate_restore_code(void)
138 {
139         pgd_t *pgd;
140         p4d_t *p4d;
141         pud_t *pud;
142         pmd_t *pmd;
143         pte_t *pte;
144
145         relocated_restore_code = get_safe_page(GFP_ATOMIC);
146         if (!relocated_restore_code)
147                 return -ENOMEM;
148
149         memcpy((void *)relocated_restore_code, &core_restore_code, PAGE_SIZE);
150
151         /* Make the page containing the relocated code executable */
152         pgd = (pgd_t *)__va(read_cr3()) + pgd_index(relocated_restore_code);
153         p4d = p4d_offset(pgd, relocated_restore_code);
154         if (p4d_large(*p4d)) {
155                 set_p4d(p4d, __p4d(p4d_val(*p4d) & ~_PAGE_NX));
156                 goto out;
157         }
158         pud = pud_offset(p4d, relocated_restore_code);
159         if (pud_large(*pud)) {
160                 set_pud(pud, __pud(pud_val(*pud) & ~_PAGE_NX));
161                 goto out;
162         }
163         pmd = pmd_offset(pud, relocated_restore_code);
164         if (pmd_large(*pmd)) {
165                 set_pmd(pmd, __pmd(pmd_val(*pmd) & ~_PAGE_NX));
166                 goto out;
167         }
168         pte = pte_offset_kernel(pmd, relocated_restore_code);
169         set_pte(pte, __pte(pte_val(*pte) & ~_PAGE_NX));
170 out:
171         __flush_tlb_all();
172         return 0;
173 }
174
175 int swsusp_arch_resume(void)
176 {
177         int error;
178
179         /* We have got enough memory and from now on we cannot recover */
180         error = set_up_temporary_mappings();
181         if (error)
182                 return error;
183
184         error = relocate_restore_code();
185         if (error)
186                 return error;
187
188         restore_image();
189         return 0;
190 }
191
192 /*
193  *      pfn_is_nosave - check if given pfn is in the 'nosave' section
194  */
195
196 int pfn_is_nosave(unsigned long pfn)
197 {
198         unsigned long nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
199         unsigned long nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
200         return (pfn >= nosave_begin_pfn) && (pfn < nosave_end_pfn);
201 }
202
203 #define MD5_DIGEST_SIZE 16
204
205 struct restore_data_record {
206         unsigned long jump_address;
207         unsigned long jump_address_phys;
208         unsigned long cr3;
209         unsigned long magic;
210         u8 e820_digest[MD5_DIGEST_SIZE];
211 };
212
213 #define RESTORE_MAGIC   0x23456789ABCDEF01UL
214
215 #if IS_BUILTIN(CONFIG_CRYPTO_MD5)
216 /**
217  * get_e820_md5 - calculate md5 according to given e820 map
218  *
219  * @map: the e820 map to be calculated
220  * @buf: the md5 result to be stored to
221  */
222 static int get_e820_md5(struct e820map *map, void *buf)
223 {
224         struct scatterlist sg;
225         struct crypto_ahash *tfm;
226         int size;
227         int ret = 0;
228
229         tfm = crypto_alloc_ahash("md5", 0, CRYPTO_ALG_ASYNC);
230         if (IS_ERR(tfm))
231                 return -ENOMEM;
232
233         {
234                 AHASH_REQUEST_ON_STACK(req, tfm);
235                 size = offsetof(struct e820map, map)
236                         + sizeof(struct e820entry) * map->nr_map;
237                 ahash_request_set_tfm(req, tfm);
238                 sg_init_one(&sg, (u8 *)map, size);
239                 ahash_request_set_callback(req, 0, NULL, NULL);
240                 ahash_request_set_crypt(req, &sg, buf, size);
241
242                 if (crypto_ahash_digest(req))
243                         ret = -EINVAL;
244                 ahash_request_zero(req);
245         }
246         crypto_free_ahash(tfm);
247
248         return ret;
249 }
250
251 static void hibernation_e820_save(void *buf)
252 {
253         get_e820_md5(e820_saved, buf);
254 }
255
256 static bool hibernation_e820_mismatch(void *buf)
257 {
258         int ret;
259         u8 result[MD5_DIGEST_SIZE];
260
261         memset(result, 0, MD5_DIGEST_SIZE);
262         /* If there is no digest in suspend kernel, let it go. */
263         if (!memcmp(result, buf, MD5_DIGEST_SIZE))
264                 return false;
265
266         ret = get_e820_md5(e820_saved, result);
267         if (ret)
268                 return true;
269
270         return memcmp(result, buf, MD5_DIGEST_SIZE) ? true : false;
271 }
272 #else
273 static void hibernation_e820_save(void *buf)
274 {
275 }
276
277 static bool hibernation_e820_mismatch(void *buf)
278 {
279         /* If md5 is not builtin for restore kernel, let it go. */
280         return false;
281 }
282 #endif
283
284 /**
285  *      arch_hibernation_header_save - populate the architecture specific part
286  *              of a hibernation image header
287  *      @addr: address to save the data at
288  */
289 int arch_hibernation_header_save(void *addr, unsigned int max_size)
290 {
291         struct restore_data_record *rdr = addr;
292
293         if (max_size < sizeof(struct restore_data_record))
294                 return -EOVERFLOW;
295         rdr->jump_address = (unsigned long)&restore_registers;
296         rdr->jump_address_phys = __pa_symbol(&restore_registers);
297         rdr->cr3 = restore_cr3;
298         rdr->magic = RESTORE_MAGIC;
299
300         hibernation_e820_save(rdr->e820_digest);
301
302         return 0;
303 }
304
305 /**
306  *      arch_hibernation_header_restore - read the architecture specific data
307  *              from the hibernation image header
308  *      @addr: address to read the data from
309  */
310 int arch_hibernation_header_restore(void *addr)
311 {
312         struct restore_data_record *rdr = addr;
313
314         restore_jump_address = rdr->jump_address;
315         jump_address_phys = rdr->jump_address_phys;
316         restore_cr3 = rdr->cr3;
317
318         if (rdr->magic != RESTORE_MAGIC) {
319                 pr_crit("Unrecognized hibernate image header format!\n");
320                 return -EINVAL;
321         }
322
323         if (hibernation_e820_mismatch(rdr->e820_digest)) {
324                 pr_crit("Hibernate inconsistent memory map detected!\n");
325                 return -ENODEV;
326         }
327
328         return 0;
329 }