/
githubmirror
/
efivar
Обзор
Документация
Войти
/
githubmirror
/
efivar
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
34
src/lib.c
275 строк
7 KB
Peter Jones
Make our -I path not include efivar/
21 июл 2017, 17:02
21 июл 2017, 17:02
29e93b1
Код
Авторство
О чём код?
/* * libefivar - library for the manipulation of EFI variables * Copyright 2012-2013 Red Hat, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of the * License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, see * <http://www.gnu.org/licenses/>. * */ #include <errno.h> #include <fcntl.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <efivar/efivar.h> #include "lib.h" #include "generics.h" static int default_probe(void) { return 1; } struct efi_var_operations default_ops = { .name = "default", .probe = default_probe, }; struct efi_var_operations *ops = NULL; int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) _efi_set_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes) { int rc; rc = ops->set_variable(guid, name, data, data_size, attributes, 0600); if (rc < 0) efi_error("ops->set_variable() failed"); return rc; } __asm__(".symver _efi_set_variable,_efi_set_variable@libefivar.so.0"); int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) _efi_set_variable_variadic(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes, ...) { int rc; rc = ops->set_variable(guid, name, data, data_size, attributes, 0600); if (rc < 0) efi_error("ops->set_variable() failed"); return rc; } __asm__(".symver _efi_set_variable_variadic,efi_set_variable@libefivar.so.0"); int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) _efi_set_variable_mode(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes, mode_t mode) { int rc; rc = ops->set_variable(guid, name, data, data_size, attributes, mode); if (rc < 0) efi_error("ops->set_variable() failed"); else efi_error_clear(); return rc; } __asm__(".symver _efi_set_variable_mode,efi_set_variable@@LIBEFIVAR_0.24"); int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) efi_set_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes, mode_t mode) __attribute((weak, alias ("_efi_set_variable_mode"))); int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) efi_append_variable(efi_guid_t guid, const char *name, uint8_t *data, size_t data_size, uint32_t attributes) { int rc; if (!ops->append_variable) { rc = generic_append_variable(guid, name, data, data_size, attributes); if (rc < 0) efi_error("generic_append_variable() failed"); else efi_error_clear(); return rc; } rc = ops->append_variable(guid, name, data, data_size, attributes); if (rc < 0) efi_error("ops->append_variable() failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (2))) __attribute__((__visibility__ ("default"))) efi_del_variable(efi_guid_t guid, const char *name) { int rc; if (!ops->del_variable) { efi_error("del_variable() is not implemented"); errno = ENOSYS; return -1; } rc = ops->del_variable(guid, name); if (rc < 0) efi_error("ops->del_variable() failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (2, 3, 4, 5))) __attribute__((__visibility__ ("default"))) efi_get_variable(efi_guid_t guid, const char *name, uint8_t **data, size_t *data_size, uint32_t *attributes) { int rc; if (!ops->get_variable) { efi_error("get_variable() is not implemented"); errno = ENOSYS; return -1; } rc = ops->get_variable(guid, name, data, data_size, attributes); if (rc < 0) efi_error("ops->get_variable failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) efi_get_variable_attributes(efi_guid_t guid, const char *name, uint32_t *attributes) { int rc; if (!ops->get_variable_attributes) { efi_error("get_variable_attributes() is not implemented"); errno = ENOSYS; return -1; } rc = ops->get_variable_attributes(guid, name, attributes); if (rc < 0) efi_error("ops->get_variable_attributes() failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (2, 3))) __attribute__((__visibility__ ("default"))) efi_get_variable_size(efi_guid_t guid, const char *name, size_t *size) { int rc; if (!ops->get_variable_size) { efi_error("get_variable_size() is not implemented"); errno = ENOSYS; return -1; } rc = ops->get_variable_size(guid, name, size); if (rc < 0) efi_error("ops->get_variable_size() failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (1, 2))) __attribute__((__visibility__ ("default"))) efi_get_next_variable_name(efi_guid_t **guid, char **name) { int rc; if (!ops->get_next_variable_name) { efi_error("get_next_variable_name() is not implemented"); errno = ENOSYS; return -1; } rc = ops->get_next_variable_name(guid, name); if (rc < 0) efi_error("ops->get_next_variable_name() failed"); else efi_error_clear(); return rc; } int __attribute__((__nonnull__ (2))) __attribute__((__visibility__ ("default"))) efi_chmod_variable(efi_guid_t guid, const char *name, mode_t mode) { int rc; if (!ops->chmod_variable) { efi_error("chmod_variable() is not implemented"); errno = ENOSYS; return -1; } rc = ops->chmod_variable(guid, name, mode); if (rc < 0) efi_error("ops->chmod_variable() failed"); else efi_error_clear(); return rc; } int __attribute__((__visibility__ ("default"))) efi_variables_supported(void) { if (ops == &default_ops) return 0; return 1; } static void libefivar_init(void) __attribute__((constructor)); static void libefivar_init(void) { struct efi_var_operations *ops_list[] = { &efivarfs_ops, &vars_ops, &default_ops, NULL }; char *ops_name = getenv("LIBEFIVAR_OPS"); for (int i = 0; ops_list[i] != NULL; i++) { if (ops_name != NULL) { if (!strcmp(ops_list[i]->name, ops_name) || !strcmp(ops_list[i]->name, "default")) { ops = ops_list[i]; break; } } else { int rc = ops_list[i]->probe(); if (rc <= 0) { efi_error("ops_list[%d]->probe() failed", i); } else { efi_error_clear(); ops = ops_list[i]; break; } } } }