blob: cddd11d52b0e3e18042392406614d1be4294b28f [file] [log] [blame]
Heinrich Schuchardt630d1342017-09-15 10:06:19 +02001/*
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +02002 * efi_selftest_exitbootservices
Heinrich Schuchardt630d1342017-09-15 10:06:19 +02003 *
4 * Copyright (c) 2017 Heinrich Schuchardt <xypron.glpk@gmx.de>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * This unit test checks that the notification function of an
9 * EVT_SIGNAL_EXIT_BOOT_SERVICES event is called exactly once.
10 */
11
12#include <efi_selftest.h>
13
14static struct efi_boot_services *boottime;
15static struct efi_event *event_notify;
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020016static unsigned int notification_count;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020017
18/*
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020019 * Notification function, increments the notification count.
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020020 *
21 * @event notified event
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020022 * @context pointer to the notification count
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020023 */
24static void EFIAPI notify(struct efi_event *event, void *context)
25{
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020026 unsigned int *count = context;
27
28 ++*count;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020029}
30
31/*
32 * Setup unit test.
33 *
34 * Create an EVT_SIGNAL_EXIT_BOOT_SERVICES event.
35 *
36 * @handle: handle of the loaded image
37 * @systable: system table
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020038 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020039 */
40static int setup(const efi_handle_t handle,
41 const struct efi_system_table *systable)
42{
43 efi_status_t ret;
44
45 boottime = systable->boottime;
46
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020047 notification_count = 0;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020048 ret = boottime->create_event(EVT_SIGNAL_EXIT_BOOT_SERVICES,
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020049 TPL_CALLBACK, notify,
50 (void *)&notification_count,
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020051 &event_notify);
52 if (ret != EFI_SUCCESS) {
53 efi_st_error("could not create event\n");
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020054 return EFI_ST_FAILURE;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020055 }
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020056 return EFI_ST_SUCCESS;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020057}
58
59/*
60 * Tear down unit test.
61 *
62 * Close the event created in setup.
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020063 *
64 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020065 */
66static int teardown(void)
67{
68 efi_status_t ret;
69
70 if (event_notify) {
71 ret = boottime->close_event(event_notify);
72 event_notify = NULL;
73 if (ret != EFI_SUCCESS) {
74 efi_st_error("could not close event\n");
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020075 return EFI_ST_FAILURE;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020076 }
77 }
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020078 return EFI_ST_SUCCESS;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020079}
80
81/*
82 * Execute unit test.
83 *
84 * Check that the notification function of the EVT_SIGNAL_EXIT_BOOT_SERVICES
85 * event has been called.
86 *
87 * Call ExitBootServices again and check that the notification function is
88 * not called again.
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020089 *
90 * @return: EFI_ST_SUCCESS for success
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020091 */
92static int execute(void)
93{
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020094 if (notification_count != 1) {
95 efi_st_error("ExitBootServices was not notified\n");
96 return EFI_ST_FAILURE;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +020097 }
98 efi_st_exit_boot_services();
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +020099 if (notification_count != 1) {
100 efi_st_error("ExitBootServices was notified twice\n");
101 return EFI_ST_FAILURE;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +0200102 }
Heinrich Schuchardt1afe5f72017-10-04 15:31:26 +0200103 return EFI_ST_SUCCESS;
Heinrich Schuchardt630d1342017-09-15 10:06:19 +0200104}
105
106EFI_UNIT_TEST(exitbootservices) = {
107 .name = "ExitBootServices",
108 .phase = EFI_SETUP_BEFORE_BOOTTIME_EXIT,
109 .setup = setup,
110 .execute = execute,
111 .teardown = teardown,
112};