Skip to content

Commit f18a899

Browse files
WenhuaChangDaniel Kiper
authored and
Daniel Kiper
committed
util/grub-mkstandalone: Ensure deterministic tar file creation by sorting contents
The add_tar_files() function currently iterates through a directory's content using readdir(), which doesn't guarantee a specific order. This lack of deterministic behavior impacts reproducibility in the build process. This commit resolves the issue by introducing sorting functionality. The list retrieved by readdir() is now sorted alphabetically before incorporation into the tar archive, ensuring consistent and predictable file ordering within the archive. On the occasion fix tfp memory leak. Signed-off-by: Michael Chang <[email protected]> Signed-off-by: Bernhard Wiedemann <[email protected]> Reviewed-by: Daniel Kiper <[email protected]>
1 parent ed74bc3 commit f18a899

File tree

1 file changed

+24
-3
lines changed

1 file changed

+24
-3
lines changed

util/grub-mkstandalone.c

+24-3
Original file line numberDiff line numberDiff line change
@@ -205,22 +205,43 @@ add_tar_file (const char *from,
205205
{
206206
grub_util_fd_dir_t d;
207207
grub_util_fd_dirent_t de;
208+
char **from_files;
209+
grub_size_t alloc = 8, used = 0;
210+
grub_size_t i;
208211

209212
d = grub_util_fd_opendir (from);
210213

214+
from_files = xmalloc (alloc * sizeof (*from_files));
211215
while ((de = grub_util_fd_readdir (d)))
212216
{
213-
char *fp, *tfp;
214217
if (strcmp (de->d_name, ".") == 0)
215218
continue;
216219
if (strcmp (de->d_name, "..") == 0)
217220
continue;
218-
fp = grub_util_path_concat (2, from, de->d_name);
219-
tfp = xasprintf ("%s/%s", to, de->d_name);
221+
if (alloc <= used)
222+
{
223+
alloc <<= 1;
224+
from_files = xrealloc (from_files, alloc * sizeof (*from_files));
225+
}
226+
from_files[used++] = xstrdup (de->d_name);
227+
}
228+
229+
qsort (from_files, used, sizeof (*from_files), grub_qsort_strcmp);
230+
231+
for (i = 0; i < used; i++)
232+
{
233+
char *fp, *tfp;
234+
235+
fp = grub_util_path_concat (2, from, from_files[i]);
236+
tfp = xasprintf ("%s/%s", to, from_files[i]);
220237
add_tar_file (fp, tfp);
238+
free (tfp);
221239
free (fp);
240+
free (from_files[i]);
222241
}
242+
223243
grub_util_fd_closedir (d);
244+
free (from_files);
224245
free (tcn);
225246
return;
226247
}

0 commit comments

Comments
 (0)