x86/vdso: Move VDSO image init to vdso2c generated code
authorBrian Gerst <brgerst@gmail.com>
Tue, 24 Jan 2023 18:40:19 +0000 (13:40 -0500)
committerIngo Molnar <mingo@kernel.org>
Wed, 25 Jan 2023 11:33:40 +0000 (12:33 +0100)
Generate an init function for each VDSO image, replacing init_vdso() and
sysenter_setup().

Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20230124184019.26850-1-brgerst@gmail.com
arch/x86/entry/vdso/vdso2c.h
arch/x86/entry/vdso/vdso32-setup.c
arch/x86/entry/vdso/vma.c
arch/x86/include/asm/processor.h
arch/x86/include/asm/vdso.h
arch/x86/kernel/cpu/common.c

index 5264daa8859f5be103a8ad61d4f675631c9ae791..67b3e37576a64a29ecbdc6fd75e410fc52a82e58 100644 (file)
@@ -179,6 +179,7 @@ static void BITSFUNC(go)(void *raw_addr, size_t raw_len,
 
        fprintf(outfile, "/* AUTOMATICALLY GENERATED -- DO NOT EDIT */\n\n");
        fprintf(outfile, "#include <linux/linkage.h>\n");
+       fprintf(outfile, "#include <linux/init.h>\n");
        fprintf(outfile, "#include <asm/page_types.h>\n");
        fprintf(outfile, "#include <asm/vdso.h>\n");
        fprintf(outfile, "\n");
@@ -218,5 +219,10 @@ static void BITSFUNC(go)(void *raw_addr, size_t raw_len,
                        fprintf(outfile, "\t.sym_%s = %" PRIi64 ",\n",
                                required_syms[i].name, (int64_t)syms[i]);
        }
+       fprintf(outfile, "};\n\n");
+       fprintf(outfile, "static __init int init_%s(void) {\n", image_name);
+       fprintf(outfile, "\treturn init_vdso_image(&%s);\n", image_name);
        fprintf(outfile, "};\n");
+       fprintf(outfile, "subsys_initcall(init_%s);\n", image_name);
+
 }
index 43842fade8fa1f5c61591f4c40a0a9c4effb3380..3b300a773c7ee2ee2c23bb9a911eac54b973c56f 100644 (file)
@@ -51,17 +51,8 @@ __setup("vdso32=", vdso32_setup);
 __setup_param("vdso=", vdso_setup, vdso32_setup, 0);
 #endif
 
-int __init sysenter_setup(void)
-{
-       init_vdso_image(&vdso_image_32);
-
-       return 0;
-}
-
 #ifdef CONFIG_X86_64
 
-subsys_initcall(sysenter_setup);
-
 #ifdef CONFIG_SYSCTL
 /* Register vsyscall32 into the ABI table */
 #include <linux/sysctl.h>
index b8f3f9b9e53c32197b519b7f7c2b6492431028f3..2738eb28cb2ece7e51ed4ae35d633febb83ae590 100644 (file)
@@ -44,13 +44,16 @@ unsigned int vclocks_used __read_mostly;
 unsigned int __read_mostly vdso64_enabled = 1;
 #endif
 
-void __init init_vdso_image(const struct vdso_image *image)
+int __init init_vdso_image(const struct vdso_image *image)
 {
+       BUILD_BUG_ON(VDSO_CLOCKMODE_MAX >= 32);
        BUG_ON(image->size % PAGE_SIZE != 0);
 
        apply_alternatives((struct alt_instr *)(image->data + image->alt),
                           (struct alt_instr *)(image->data + image->alt +
                                                image->alt_len));
+
+       return 0;
 }
 
 static const struct vm_special_mapping vvar_mapping;
@@ -418,18 +421,4 @@ static __init int vdso_setup(char *s)
        return 1;
 }
 __setup("vdso=", vdso_setup);
-
-static int __init init_vdso(void)
-{
-       BUILD_BUG_ON(VDSO_CLOCKMODE_MAX >= 32);
-
-       init_vdso_image(&vdso_image_64);
-
-#ifdef CONFIG_X86_X32_ABI
-       init_vdso_image(&vdso_image_x32);
-#endif
-
-       return 0;
-}
-subsys_initcall(init_vdso);
 #endif /* CONFIG_X86_64 */
index 4e35c66edeb7dc028cccb9737769704d18fb2096..2dd0c8a85e62cc2a57e44d04a2a4a5a1ff8a5583 100644 (file)
@@ -542,7 +542,6 @@ enum idle_boot_override {IDLE_NO_OVERRIDE=0, IDLE_HALT, IDLE_NOMWAIT,
                         IDLE_POLL};
 
 extern void enable_sep_cpu(void);
-extern int sysenter_setup(void);
 
 
 /* Defined in head.S */
index 2963a2f5dbc4082d37572c54b6afaca55fbb3663..d7f6592b74a94f6fecba59ce8f23eb3990843db4 100644 (file)
@@ -45,7 +45,7 @@ extern const struct vdso_image vdso_image_x32;
 extern const struct vdso_image vdso_image_32;
 #endif
 
-extern void __init init_vdso_image(const struct vdso_image *image);
+extern int __init init_vdso_image(const struct vdso_image *image);
 
 extern int map_vdso_once(const struct vdso_image *image, unsigned long addr);
 
index 9cfca3d7d0e207c518b7cadf192a0f1337f790d6..3a9043ef3d6b108761be71c0a52fe9f58cc92de2 100644 (file)
@@ -1953,7 +1953,6 @@ void __init identify_boot_cpu(void)
        if (HAS_KERNEL_IBT && cpu_feature_enabled(X86_FEATURE_IBT))
                pr_info("CET detected: Indirect Branch Tracking enabled\n");
 #ifdef CONFIG_X86_32
-       sysenter_setup();
        enable_sep_cpu();
 #endif
        cpu_detect_tlb(&boot_cpu_data);