summaryrefslogtreecommitdiff
path: root/src/shared/efivars.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2013-02-13 22:02:40 +0100
committerLennart Poettering <lennart@poettering.net>2013-02-13 22:02:40 +0100
commit9db11a99beaf25f6eb948348202a4c783e1d31a6 (patch)
tree85096e1a6a0a99320b9557217348b51b13f9669c /src/shared/efivars.c
parent61cc634bc208b264bd2fbe6af241b345a2002509 (diff)
efi: efi_get_boot_options() should already sort the entries, the random order in the efivars fs is probably not useful
This also introduces a new FOREACH_DIRENT macro and makes use of it.
Diffstat (limited to 'src/shared/efivars.c')
-rw-r--r--src/shared/efivars.c26
1 files changed, 21 insertions, 5 deletions
diff --git a/src/shared/efivars.c b/src/shared/efivars.c
index 064746a9a8..840e4e0c35 100644
--- a/src/shared/efivars.c
+++ b/src/shared/efivars.c
@@ -303,11 +303,22 @@ static int boot_id_hex(const char s[4]) {
return id;
}
+static int cmp_uint16(const void *_a, const void *_b) {
+ const uint16_t *a = _a, *b = _b;
+
+ if (*a < *b)
+ return -1;
+ if (*a > *b)
+ return 1;
+
+ return 0;
+}
+
int efi_get_boot_options(uint16_t **options) {
_cleanup_closedir_ DIR *dir = NULL;
struct dirent *de;
uint16_t *list = NULL;
- int count = 0;
+ int count = 0, r;
assert(options);
@@ -315,7 +326,7 @@ int efi_get_boot_options(uint16_t **options) {
if (!dir)
return -errno;
- while ((de = readdir(dir))) {
+ FOREACH_DIRENT(de, dir, r = -errno; goto fail) {
int id;
uint16_t *t;
@@ -334,17 +345,22 @@ int efi_get_boot_options(uint16_t **options) {
t = realloc(list, (count + 1) * sizeof(uint16_t));
if (!t) {
- free(list);
- return -ENOMEM;
+ r = -ENOMEM;
+ goto fail;
}
list = t;
list[count ++] = id;
-
}
+ qsort(list, count, sizeof(uint16_t), cmp_uint16);
+
*options = list;
return count;
+
+fail:
+ free(list);
+ return r;
}
static int read_usec(sd_id128_t vendor, const char *name, usec_t *u) {