Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/drivers/firmware/efi/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 2 kB image not shown  

Quelle  efibc.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
/*
 * efibc: control EFI bootloaders which obey LoaderEntryOneShot var
 * Copyright (c) 2013-2016, Intel Corporation.
 */


#define pr_fmt(fmt) "efibc: " fmt

#include <linux/efi.h>
#include <linux/module.h>
#include <linux/reboot.h>
#include <linux/slab.h>
#include <linux/ucs2_string.h>

#define MAX_DATA_LEN 512

static int efibc_set_variable(efi_char16_t *name, efi_char16_t *value,
         unsigned long len)
{
 efi_status_t status;

 status = efi.set_variable(name, &LINUX_EFI_LOADER_ENTRY_GUID,
      EFI_VARIABLE_NON_VOLATILE
      | EFI_VARIABLE_BOOTSERVICE_ACCESS
      | EFI_VARIABLE_RUNTIME_ACCESS,
      len * sizeof(efi_char16_t), value);

 if (status != EFI_SUCCESS) {
  pr_err("failed to set EFI variable: 0x%lx\n", status);
  return -EIO;
 }
 return 0;
}

static int efibc_reboot_notifier_call(struct notifier_block *notifier,
          unsigned long event, void *data)
{
 efi_char16_t *reason = event == SYS_RESTART ? L"reboot"
          : L"shutdown";
 const u8 *str = data;
 efi_char16_t *wdata;
 unsigned long l;
 int ret;

 ret = efibc_set_variable(L"LoaderEntryRebootReason", reason,
     ucs2_strlen(reason));
 if (ret || !data)
  return NOTIFY_DONE;

 wdata = kmalloc_array(MAX_DATA_LEN, sizeof(efi_char16_t), GFP_KERNEL);
 if (!wdata)
  return NOTIFY_DONE;

 for (l = 0; l < MAX_DATA_LEN - 1 && str[l] != '\0'; l++)
  wdata[l] = str[l];
 wdata[l] = L'\0';

 efibc_set_variable(L"LoaderEntryOneShot", wdata, l);

 kfree(wdata);
 return NOTIFY_DONE;
}

static struct notifier_block efibc_reboot_notifier = {
 .notifier_call = efibc_reboot_notifier_call,
};

static int __init efibc_init(void)
{
 int ret;

 if (!efi_rt_services_supported(EFI_RT_SUPPORTED_SET_VARIABLE))
  return -ENODEV;

 ret = register_reboot_notifier(&efibc_reboot_notifier);
 if (ret)
  pr_err("unable to register reboot notifier\n");

 return ret;
}
module_init(efibc_init);

static void __exit efibc_exit(void)
{
 unregister_reboot_notifier(&efibc_reboot_notifier);
}
module_exit(efibc_exit);

MODULE_AUTHOR("Jeremy Compostella ");
MODULE_AUTHOR("Matt Gumbel );
MODULE_DESCRIPTION("EFI Bootloader Control");
MODULE_LICENSE("GPL v2");

Messung V0.5
C=92 H=93 G=92

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.