hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * livepatch.c - x86-specific Kernel Live Patching Core
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */
 
#include <linux/module.h>
#include <linux/kallsyms.h>
#include <linux/livepatch.h>
#include <asm/text-patching.h>
 
/* Apply per-object alternatives. Based on x86 module_finalize() */
void arch_klp_init_object_loaded(struct klp_patch *patch,
                struct klp_object *obj)
{
   int cnt;
   struct klp_modinfo *info;
   Elf_Shdr *s, *alt = NULL, *para = NULL;
   void *aseg, *pseg;
   const char *objname;
   char sec_objname[MODULE_NAME_LEN];
   char secname[KSYM_NAME_LEN];
 
   info = patch->mod->klp_info;
   objname = obj->name ? obj->name : "vmlinux";
 
   /* See livepatch core code for BUILD_BUG_ON() explanation */
   BUILD_BUG_ON(MODULE_NAME_LEN < 56 || KSYM_NAME_LEN != 128);
 
   for (s = info->sechdrs; s < info->sechdrs + info->hdr.e_shnum; s++) {
       /* Apply per-object .klp.arch sections */
       cnt = sscanf(info->secstrings + s->sh_name,
                ".klp.arch.%55[^.].%127s",
                sec_objname, secname);
       if (cnt != 2)
           continue;
       if (strcmp(sec_objname, objname))
           continue;
       if (!strcmp(".altinstructions", secname))
           alt = s;
       if (!strcmp(".parainstructions", secname))
           para = s;
   }
 
   if (alt) {
       aseg = (void *) alt->sh_addr;
       apply_alternatives(aseg, aseg + alt->sh_size);
   }
 
   if (para) {
       pseg = (void *) para->sh_addr;
       apply_paravirt(pseg, pseg + para->sh_size);
   }
}