]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libefivar/efivar.3
Merge branch 'releng/11.3' into releng-CDN/11.3
[FreeBSD/FreeBSD.git] / lib / libefivar / efivar.3
1 .\" Copyright 2016 Netflix, Inc.
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd September 14, 2016
28 .Dt LIBEFIVAR 3
29 .Os
30 .Sh NAME
31 .Nm libefivar
32 .Nd EFI Non Volatile Variable Suppoert
33 .Sh SYNOPSIS
34 .In efivar.h
35 .Ft int
36 .Fn efi_append_variable "efi_guid_t guid" "const char *name" "void *data" "size_t data_size" "uint32_t attributes"
37 .Ft int
38 .Fn efi_del_variable "efi_guid_t guid" "const char *name"
39 .Ft int
40 .Fn efi_get_variable "efi_guid_t guid" "const char *name" "void **data" "ssize_t *data_size" "uint32_t *attributes"
41 .Ft int
42 .Fn efi_get_variable_attributes "efi_guid_t guid" "const char *name" "uint32_t *attributes"
43 .Ft int
44 .Fn efi_get_variable_size "efi_guid_t guid" "const char *name" "size_t *size"
45 .Ft int
46 .Fn efi_get_next_variable_name "efi_guid_t **guid" "char **name"
47 .Ft int
48 .Fn efi_guid_to_name "efi_guid_t *guid" "char **name"
49 .Ft int
50 .Fn efi_guid_to_symbol "efi_guid_t *guid" "char **symbol"
51 .Ft int
52 .Fn efi_guid_to_str "const efi_guid_t *guid" "char **sp"
53 .Ft int
54 .Fn efi_name_to_guid "const char *name" "efi_guid_t *guid"
55 .Ft int
56 .Fn efi_set_variable "efi_guid_t guid" "const char *name" "void *data" "size_t data_size" "uint32_t attributes"
57 .Ft int
58 .Fn efi_str_to_guid "const char *s" "efi_guid_t *guid";
59 .Ft int
60 .Fn efi_variables_supported "void";
61 .Sh DESCRIPTION
62 The
63 .Nm
64 library implements access to EFI Variables via the EFI Runtime
65 Serivces.
66 All char * strings are converted to 16-bit UTF strings before passing
67 them to EFI.
68 .Pp
69 .Fn efi_variables_supported
70 returns non-zero if the current machine supports setting of EFI firmware
71 variables and the kernel support for doing so is present.
72 Otherwise zero is returned.
73 .Pp
74 .Fn efi_del_variable
75 deletes the EFI variable selected by
76 .Dv guid
77 and
78 .Dv name .
79 .Pp
80 .Fn efi_get_variable
81 .Fn efi_get_variable_attributes
82 .Fn efi_get_variable_size
83 .Fn efi_append_variable
84 .Fn efi_set_variable
85 .Fn efi_get_next_variable_name
86 .Fn efi_str_to_guid
87 .Fn efi_guid_to_str
88 .Fn efi_name_to_guid
89 .Fn efi_guid_to_name
90 .Fn efi_guid_to_symbol
91 This function is not actually implemented.
92 .Sh BUGS
93 No facilities exist to process the strings as native UTF.
94 This is a limitation in the Linux libefivar library interface.
95 .Sh AUTHORS
96 .An -nosplit
97 This software was originally written by
98 .An Warner Losh .