-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test ability to reproduce parsed images
For all the images we generate from json, try also to regenerated them and ensure we get the same bits. To do the dumping we add the internal composefs-dump tool. Signed-off-by: Alexander Larsson <[email protected]>
- Loading branch information
1 parent
b520387
commit b15de57
Showing
3 changed files
with
110 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/* lcfs | ||
Copyright (C) 2023 Alexander Larsson <[email protected]> | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 3 of the License, or | ||
(at your option) any later version. | ||
This program 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 General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#define _GNU_SOURCE | ||
|
||
#include "config.h" | ||
|
||
#include "libcomposefs/lcfs-writer.h" | ||
#include "libcomposefs/lcfs-utils.h" | ||
|
||
#include <stdio.h> | ||
#include <string.h> | ||
#include <err.h> | ||
#include <error.h> | ||
#include <errno.h> | ||
#include <fcntl.h> | ||
|
||
static void usage(const char *argv0) | ||
{ | ||
fprintf(stderr, "usage: %s SRC DEST\n", argv0); | ||
} | ||
|
||
static ssize_t write_cb(void *_file, void *buf, size_t count) | ||
{ | ||
FILE *file = _file; | ||
|
||
return fwrite(buf, 1, count, file); | ||
} | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
const char *bin = argv[0]; | ||
int fd; | ||
struct lcfs_node_s *root; | ||
const char *src_path = NULL; | ||
const char *dst_path = NULL; | ||
struct lcfs_write_options_s options = { 0 }; | ||
|
||
if (argc <= 1) { | ||
fprintf(stderr, "No source path specified\n"); | ||
usage(bin); | ||
exit(1); | ||
} | ||
src_path = argv[1]; | ||
|
||
if (argc <= 2) { | ||
fprintf(stderr, "No destination path specified\n"); | ||
usage(bin); | ||
exit(1); | ||
} | ||
dst_path = argv[2]; | ||
|
||
fd = open(src_path, O_RDONLY); | ||
if (fd < 0) { | ||
err(EXIT_FAILURE, "Failed to open '%s'", src_path); | ||
} | ||
|
||
root = lcfs_load_node_from_fd(fd); | ||
if (root == NULL) { | ||
err(EXIT_FAILURE, "Failed to load '%s'", src_path); | ||
} | ||
|
||
close(fd); | ||
|
||
options.format = LCFS_FORMAT_EROFS; | ||
|
||
FILE *out_file = fopen(dst_path, "we"); | ||
if (out_file == NULL) | ||
error(EXIT_FAILURE, errno, "failed to open '%s'", dst_path); | ||
|
||
options.file = out_file; | ||
options.file_write_cb = write_cb; | ||
|
||
if (lcfs_write_to(root, &options) < 0) | ||
error(EXIT_FAILURE, errno, "cannot write file"); | ||
|
||
lcfs_node_unref(root); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters