LCOV - code coverage report
Current view: top level - arch/x86/power - hibernate.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 95 0.0 %
Date: 2022-04-01 14:17:54 Functions: 0 7 0.0 %
Branches: 0 38 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : /*
       3                 :            :  * Hibernation support for x86
       4                 :            :  *
       5                 :            :  * Copyright (c) 2007 Rafael J. Wysocki <rjw@sisk.pl>
       6                 :            :  * Copyright (c) 2002 Pavel Machek <pavel@ucw.cz>
       7                 :            :  * Copyright (c) 2001 Patrick Mochel <mochel@osdl.org>
       8                 :            :  */
       9                 :            : #include <linux/gfp.h>
      10                 :            : #include <linux/smp.h>
      11                 :            : #include <linux/suspend.h>
      12                 :            : #include <linux/scatterlist.h>
      13                 :            : #include <linux/kdebug.h>
      14                 :            : #include <linux/cpu.h>
      15                 :            : 
      16                 :            : #include <crypto/hash.h>
      17                 :            : 
      18                 :            : #include <asm/e820/api.h>
      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                 :            : /*
      29                 :            :  * Address to jump to in the last phase of restore in order to get to the image
      30                 :            :  * kernel's text (this value is passed in the image header).
      31                 :            :  */
      32                 :            : unsigned long restore_jump_address __visible;
      33                 :            : unsigned long jump_address_phys;
      34                 :            : 
      35                 :            : /*
      36                 :            :  * Value of the cr3 register from before the hibernation (this value is passed
      37                 :            :  * in the image header).
      38                 :            :  */
      39                 :            : unsigned long restore_cr3 __visible;
      40                 :            : unsigned long temp_pgt __visible;
      41                 :            : unsigned long relocated_restore_code __visible;
      42                 :            : 
      43                 :            : /**
      44                 :            :  *      pfn_is_nosave - check if given pfn is in the 'nosave' section
      45                 :            :  */
      46                 :          0 : int pfn_is_nosave(unsigned long pfn)
      47                 :            : {
      48                 :          0 :         unsigned long nosave_begin_pfn;
      49                 :          0 :         unsigned long nosave_end_pfn;
      50                 :            : 
      51                 :          0 :         nosave_begin_pfn = __pa_symbol(&__nosave_begin) >> PAGE_SHIFT;
      52                 :          0 :         nosave_end_pfn = PAGE_ALIGN(__pa_symbol(&__nosave_end)) >> PAGE_SHIFT;
      53                 :            : 
      54                 :          0 :         return pfn >= nosave_begin_pfn && pfn < nosave_end_pfn;
      55                 :            : }
      56                 :            : 
      57                 :            : 
      58                 :            : #define MD5_DIGEST_SIZE 16
      59                 :            : 
      60                 :            : struct restore_data_record {
      61                 :            :         unsigned long jump_address;
      62                 :            :         unsigned long jump_address_phys;
      63                 :            :         unsigned long cr3;
      64                 :            :         unsigned long magic;
      65                 :            :         u8 e820_digest[MD5_DIGEST_SIZE];
      66                 :            : };
      67                 :            : 
      68                 :            : #if IS_BUILTIN(CONFIG_CRYPTO_MD5)
      69                 :            : /**
      70                 :            :  * get_e820_md5 - calculate md5 according to given e820 table
      71                 :            :  *
      72                 :            :  * @table: the e820 table to be calculated
      73                 :            :  * @buf: the md5 result to be stored to
      74                 :            :  */
      75                 :          0 : static int get_e820_md5(struct e820_table *table, void *buf)
      76                 :            : {
      77                 :          0 :         struct crypto_shash *tfm;
      78                 :          0 :         struct shash_desc *desc;
      79                 :          0 :         int size;
      80                 :          0 :         int ret = 0;
      81                 :            : 
      82                 :          0 :         tfm = crypto_alloc_shash("md5", 0, 0);
      83         [ #  # ]:          0 :         if (IS_ERR(tfm))
      84                 :            :                 return -ENOMEM;
      85                 :            : 
      86         [ #  # ]:          0 :         desc = kmalloc(sizeof(struct shash_desc) + crypto_shash_descsize(tfm),
      87                 :            :                        GFP_KERNEL);
      88         [ #  # ]:          0 :         if (!desc) {
      89                 :          0 :                 ret = -ENOMEM;
      90                 :          0 :                 goto free_tfm;
      91                 :            :         }
      92                 :            : 
      93                 :          0 :         desc->tfm = tfm;
      94                 :            : 
      95                 :          0 :         size = offsetof(struct e820_table, entries) +
      96                 :          0 :                 sizeof(struct e820_entry) * table->nr_entries;
      97                 :            : 
      98         [ #  # ]:          0 :         if (crypto_shash_digest(desc, (u8 *)table, size, buf))
      99                 :          0 :                 ret = -EINVAL;
     100                 :            : 
     101                 :          0 :         kzfree(desc);
     102                 :            : 
     103                 :          0 : free_tfm:
     104                 :          0 :         crypto_free_shash(tfm);
     105                 :          0 :         return ret;
     106                 :            : }
     107                 :            : 
     108                 :          0 : static int hibernation_e820_save(void *buf)
     109                 :            : {
     110                 :          0 :         return get_e820_md5(e820_table_firmware, buf);
     111                 :            : }
     112                 :            : 
     113                 :          0 : static bool hibernation_e820_mismatch(void *buf)
     114                 :            : {
     115                 :          0 :         int ret;
     116                 :          0 :         u8 result[MD5_DIGEST_SIZE];
     117                 :            : 
     118                 :          0 :         memset(result, 0, MD5_DIGEST_SIZE);
     119                 :            :         /* If there is no digest in suspend kernel, let it go. */
     120         [ #  # ]:          0 :         if (!memcmp(result, buf, MD5_DIGEST_SIZE))
     121                 :            :                 return false;
     122                 :            : 
     123                 :          0 :         ret = get_e820_md5(e820_table_firmware, result);
     124         [ #  # ]:          0 :         if (ret)
     125                 :            :                 return true;
     126                 :            : 
     127                 :          0 :         return memcmp(result, buf, MD5_DIGEST_SIZE) ? true : false;
     128                 :            : }
     129                 :            : #else
     130                 :            : static int hibernation_e820_save(void *buf)
     131                 :            : {
     132                 :            :         return 0;
     133                 :            : }
     134                 :            : 
     135                 :            : static bool hibernation_e820_mismatch(void *buf)
     136                 :            : {
     137                 :            :         /* If md5 is not builtin for restore kernel, let it go. */
     138                 :            :         return false;
     139                 :            : }
     140                 :            : #endif
     141                 :            : 
     142                 :            : #ifdef CONFIG_X86_64
     143                 :            : #define RESTORE_MAGIC   0x23456789ABCDEF01UL
     144                 :            : #else
     145                 :            : #define RESTORE_MAGIC   0x12345678UL
     146                 :            : #endif
     147                 :            : 
     148                 :            : /**
     149                 :            :  *      arch_hibernation_header_save - populate the architecture specific part
     150                 :            :  *              of a hibernation image header
     151                 :            :  *      @addr: address to save the data at
     152                 :            :  */
     153                 :          0 : int arch_hibernation_header_save(void *addr, unsigned int max_size)
     154                 :            : {
     155                 :          0 :         struct restore_data_record *rdr = addr;
     156                 :            : 
     157         [ #  # ]:          0 :         if (max_size < sizeof(struct restore_data_record))
     158                 :            :                 return -EOVERFLOW;
     159                 :          0 :         rdr->magic = RESTORE_MAGIC;
     160                 :          0 :         rdr->jump_address = (unsigned long)restore_registers;
     161                 :          0 :         rdr->jump_address_phys = __pa_symbol(restore_registers);
     162                 :            : 
     163                 :            :         /*
     164                 :            :          * The restore code fixes up CR3 and CR4 in the following sequence:
     165                 :            :          *
     166                 :            :          * [in hibernation asm]
     167                 :            :          * 1. CR3 <= temporary page tables
     168                 :            :          * 2. CR4 <= mmu_cr4_features (from the kernel that restores us)
     169                 :            :          * 3. CR3 <= rdr->cr3
     170                 :            :          * 4. CR4 <= mmu_cr4_features (from us, i.e. the image kernel)
     171                 :            :          * [in restore_processor_state()]
     172                 :            :          * 5. CR4 <= saved CR4
     173                 :            :          * 6. CR3 <= saved CR3
     174                 :            :          *
     175                 :            :          * Our mmu_cr4_features has CR4.PCIDE=0, and toggling
     176                 :            :          * CR4.PCIDE while CR3's PCID bits are nonzero is illegal, so
     177                 :            :          * rdr->cr3 needs to point to valid page tables but must not
     178                 :            :          * have any of the PCID bits set.
     179                 :            :          */
     180                 :          0 :         rdr->cr3 = restore_cr3 & ~CR3_PCID_MASK;
     181                 :            : 
     182                 :          0 :         return hibernation_e820_save(rdr->e820_digest);
     183                 :            : }
     184                 :            : 
     185                 :            : /**
     186                 :            :  *      arch_hibernation_header_restore - read the architecture specific data
     187                 :            :  *              from the hibernation image header
     188                 :            :  *      @addr: address to read the data from
     189                 :            :  */
     190                 :          0 : int arch_hibernation_header_restore(void *addr)
     191                 :            : {
     192                 :          0 :         struct restore_data_record *rdr = addr;
     193                 :            : 
     194         [ #  # ]:          0 :         if (rdr->magic != RESTORE_MAGIC) {
     195                 :          0 :                 pr_crit("Unrecognized hibernate image header format!\n");
     196                 :          0 :                 return -EINVAL;
     197                 :            :         }
     198                 :            : 
     199                 :          0 :         restore_jump_address = rdr->jump_address;
     200                 :          0 :         jump_address_phys = rdr->jump_address_phys;
     201                 :          0 :         restore_cr3 = rdr->cr3;
     202                 :            : 
     203         [ #  # ]:          0 :         if (hibernation_e820_mismatch(rdr->e820_digest)) {
     204                 :          0 :                 pr_crit("Hibernate inconsistent memory map detected!\n");
     205                 :          0 :                 return -ENODEV;
     206                 :            :         }
     207                 :            : 
     208                 :            :         return 0;
     209                 :            : }
     210                 :            : 
     211                 :          0 : int relocate_restore_code(void)
     212                 :            : {
     213                 :          0 :         pgd_t *pgd;
     214                 :          0 :         p4d_t *p4d;
     215                 :          0 :         pud_t *pud;
     216                 :          0 :         pmd_t *pmd;
     217                 :          0 :         pte_t *pte;
     218                 :            : 
     219                 :          0 :         relocated_restore_code = get_safe_page(GFP_ATOMIC);
     220         [ #  # ]:          0 :         if (!relocated_restore_code)
     221                 :            :                 return -ENOMEM;
     222                 :            : 
     223                 :          0 :         memcpy((void *)relocated_restore_code, core_restore_code, PAGE_SIZE);
     224                 :            : 
     225                 :            :         /* Make the page containing the relocated code executable */
     226                 :          0 :         pgd = (pgd_t *)__va(read_cr3_pa()) +
     227                 :          0 :                 pgd_index(relocated_restore_code);
     228                 :          0 :         p4d = p4d_offset(pgd, relocated_restore_code);
     229         [ #  # ]:          0 :         if (p4d_large(*p4d)) {
     230                 :            :                 set_p4d(p4d, __p4d(p4d_val(*p4d) & ~_PAGE_NX));
     231                 :            :                 goto out;
     232                 :            :         }
     233         [ #  # ]:          0 :         pud = pud_offset(p4d, relocated_restore_code);
     234         [ #  # ]:          0 :         if (pud_large(*pud)) {
     235                 :          0 :                 set_pud(pud, __pud(pud_val(*pud) & ~_PAGE_NX));
     236                 :          0 :                 goto out;
     237                 :            :         }
     238         [ #  # ]:          0 :         pmd = pmd_offset(pud, relocated_restore_code);
     239   [ #  #  #  # ]:          0 :         if (pmd_large(*pmd)) {
     240                 :          0 :                 set_pmd(pmd, __pmd(pmd_val(*pmd) & ~_PAGE_NX));
     241                 :          0 :                 goto out;
     242                 :            :         }
     243                 :          0 :         pte = pte_offset_kernel(pmd, relocated_restore_code);
     244                 :          0 :         set_pte(pte, __pte(pte_val(*pte) & ~_PAGE_NX));
     245                 :          0 : out:
     246                 :          0 :         __flush_tlb_all();
     247                 :          0 :         return 0;
     248                 :            : }
     249                 :            : 
     250                 :          0 : int arch_resume_nosmt(void)
     251                 :            : {
     252                 :          0 :         int ret = 0;
     253                 :            :         /*
     254                 :            :          * We reached this while coming out of hibernation. This means
     255                 :            :          * that SMT siblings are sleeping in hlt, as mwait is not safe
     256                 :            :          * against control transition during resume (see comment in
     257                 :            :          * hibernate_resume_nonboot_cpu_disable()).
     258                 :            :          *
     259                 :            :          * If the resumed kernel has SMT disabled, we have to take all the
     260                 :            :          * SMT siblings out of hlt, and offline them again so that they
     261                 :            :          * end up in mwait proper.
     262                 :            :          *
     263                 :            :          * Called with hotplug disabled.
     264                 :            :          */
     265                 :          0 :         cpu_hotplug_enable();
     266         [ #  # ]:          0 :         if (cpu_smt_control == CPU_SMT_DISABLED ||
     267                 :            :                         cpu_smt_control == CPU_SMT_FORCE_DISABLED) {
     268                 :          0 :                 enum cpuhp_smt_control old = cpu_smt_control;
     269                 :            : 
     270                 :          0 :                 ret = cpuhp_smt_enable();
     271         [ #  # ]:          0 :                 if (ret)
     272                 :          0 :                         goto out;
     273                 :          0 :                 ret = cpuhp_smt_disable(old);
     274         [ #  # ]:          0 :                 if (ret)
     275                 :          0 :                         goto out;
     276                 :            :         }
     277                 :          0 : out:
     278                 :          0 :         cpu_hotplug_disable();
     279                 :          0 :         return ret;
     280                 :            : }

Generated by: LCOV version 1.14