1 Star 0 Fork 100

陈亚强/grub2

forked from src-openEuler/grub2 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0213-blscfg-Don-t-attempt-to-sort-by-version-if-not-prese.patch 2.82 KB
一键复制 编辑 原始数据 按行查看 历史
hexiaowen 提交于 2019-09-30 10:52 . Package init
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Javier Martinez Canillas <[email protected]>
Date: Wed, 18 Jul 2018 00:58:44 +0200
Subject: [PATCH] blscfg: Don't attempt to sort by version if not present in
all BLS files
Commit a16805341cc ("blscfg: sort BLS entries by 'version' field") made to
sort by the version field take precedence over the BLS fragment file name.
But it also uses the lack of the version field in one BLS fragment as sort
criterion, which means that entries could be wrongly sorted if one of them
doesn't have a version field and others do.
So only sort by version if all the BLS entries have this field defined,
otherwise just fallback to sorting by the BLS file name.
Reported-by: Hans de Goede <[email protected]>
Suggested-by: Will Thompson <[email protected]>
Signed-off-by: Javier Martinez Canillas <[email protected]>
---
grub-core/commands/blscfg.c | 27 ++++++++++++++++-----------
1 file changed, 16 insertions(+), 11 deletions(-)
diff --git a/grub-core/commands/blscfg.c b/grub-core/commands/blscfg.c
index 321c93069f2..69bfb5db295 100644
--- a/grub-core/commands/blscfg.c
+++ b/grub-core/commands/blscfg.c
@@ -324,23 +324,21 @@ finish:
/* return 1: p0 is newer than p1 */
/* 0: p0 and p1 are the same version */
/* -1: p1 is newer than p0 */
-static int bls_cmp(const void *p0, const void *p1, void *state UNUSED)
+static int bls_cmp(const void *p0, const void *p1, void *state)
{
struct bls_entry * e0 = *(struct bls_entry **)p0;
struct bls_entry * e1 = *(struct bls_entry **)p1;
+ bool use_version = *(bool *)state;
const char *v0, *v1;
int r;
- v0 = bls_get_val(e0, "version", NULL);
- v1 = bls_get_val(e1, "version", NULL);
+ if (use_version) {
+ v0 = bls_get_val(e0, "version", NULL);
+ v1 = bls_get_val(e1, "version", NULL);
- if (v0 && !v1)
- return -1;
- if (!v0 && v1)
- return 1;
-
- if ((r = vercmp(v0, v1)) != 0)
- return r;
+ if ((r = vercmp(v0, v1)) != 0)
+ return r;
+ }
return vercmp(e0->filename, e1->filename);
}
@@ -692,6 +690,7 @@ static int find_entry (const char *filename,
grub_device_t blsdir_dev = NULL;
const char *blsdir = NULL;
char *saved_env_buf = NULL;
+ bool use_version = true;
int fallback = 0;
int r = 0;
const char *devid = grub_env_get ("boot");
@@ -819,7 +818,13 @@ read_fallback:
}
grub_dprintf ("blscfg", "Sorting %d entries\n", nentries);
- grub_qsort(&entries[0], nentries, sizeof (struct bls_entry *), bls_cmp, NULL);
+
+ for (r = 0; r < nentries && use_version; r++) {
+ if (!bls_get_val(entries[r], "version", NULL))
+ use_version = false;
+ }
+
+ grub_qsort(&entries[0], nentries, sizeof (struct bls_entry *), bls_cmp, &use_version);
grub_dprintf ("blscfg", "%s Creating %d entries from bls\n", __func__, nentries);
for (r = nentries - 1; r >= 0; r--)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yaqiangchen/grub2.git
[email protected]:yaqiangchen/grub2.git
yaqiangchen
grub2
grub2
master

搜索帮助