2007-12-22 16:09:49 +00:00
|
|
|
/*
|
|
|
|
* Little program to show how to create an iso image from a local
|
|
|
|
* directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libisofs.h"
|
|
|
|
#include "libburn/libburn.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2008-01-10 18:41:38 +00:00
|
|
|
#include <getopt.h>
|
2007-12-28 21:45:56 +00:00
|
|
|
#include <stdlib.h>
|
2007-12-22 16:09:49 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <err.h>
|
|
|
|
|
2008-01-10 18:41:38 +00:00
|
|
|
const char * const optstring = "JRL:b:hV:";
|
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
|
|
|
|
2007-12-22 16:09:49 +00:00
|
|
|
void usage(char **argv)
|
|
|
|
{
|
|
|
|
printf("%s [OPTIONS] DIRECTORY OUTPUT\n", argv[0]);
|
|
|
|
}
|
|
|
|
|
2008-01-10 18:41:38 +00:00
|
|
|
void help()
|
|
|
|
{
|
|
|
|
printf(
|
|
|
|
"Options:\n"
|
|
|
|
" -J Add Joliet support\n"
|
|
|
|
" -R Add Rock Ridge support\n"
|
|
|
|
" -V label Volume Label\n"
|
|
|
|
" -L <num> Set the ISO level (1 or 2)\n"
|
|
|
|
" -b file Specifies a boot image to add to image\n"
|
|
|
|
" -h Print this message\n"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2007-12-22 16:09:49 +00:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2007-12-27 09:43:06 +00:00
|
|
|
int result;
|
2008-01-10 18:41:38 +00:00
|
|
|
int c;
|
2007-12-22 16:09:49 +00:00
|
|
|
IsoImage *image;
|
|
|
|
struct burn_source *burn_src;
|
|
|
|
unsigned char buf[2048];
|
|
|
|
FILE *fd;
|
2008-01-10 18:41:38 +00:00
|
|
|
char *volid = "VOLID";
|
|
|
|
char *boot_img = NULL;
|
|
|
|
|
2007-12-22 16:09:49 +00:00
|
|
|
Ecma119WriteOpts opts = {
|
|
|
|
1, /* level */
|
2008-01-10 18:41:38 +00:00
|
|
|
0, /* rockridge */
|
|
|
|
0, /* joliet */
|
2007-12-27 09:43:06 +00:00
|
|
|
0, /* omit_version_numbers */
|
|
|
|
0, /* allow_deep_paths */
|
2008-01-08 15:10:25 +00:00
|
|
|
0, /* joliet_longer_paths */
|
2007-12-27 17:10:14 +00:00
|
|
|
0, /* sort files */
|
|
|
|
0, /* replace_dir_mode */
|
|
|
|
0, /* replace_file_mode */
|
|
|
|
0, /* replace_uid */
|
|
|
|
0, /* replace_gid */
|
|
|
|
0, /* dir_mode */
|
|
|
|
0, /* file_mode */
|
|
|
|
0, /* uid */
|
2007-12-27 23:20:02 +00:00
|
|
|
0, /* gid */
|
2008-01-04 22:54:31 +00:00
|
|
|
NULL, /* output charset */
|
|
|
|
0, /* appendable */
|
|
|
|
0, /* ms_block */
|
|
|
|
NULL /* overwrite */
|
2007-12-22 16:09:49 +00:00
|
|
|
};
|
2008-01-10 18:41:38 +00:00
|
|
|
|
|
|
|
while ((c = getopt(argc, argv, optstring)) != -1) {
|
|
|
|
switch(c) {
|
|
|
|
case 'h':
|
|
|
|
usage(argv);
|
|
|
|
help();
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
case 'J':
|
|
|
|
opts.joliet = 1;
|
|
|
|
break;
|
|
|
|
case 'R':
|
|
|
|
opts.rockridge = 1;
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
opts.level = atoi(optarg);
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
boot_img = optarg;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
volid = optarg;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
usage(argv);
|
|
|
|
exit(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-12-22 16:09:49 +00:00
|
|
|
|
2007-12-27 09:43:06 +00:00
|
|
|
if (argc < 2) {
|
2007-12-22 16:09:49 +00:00
|
|
|
printf ("Please pass directory from which to build ISO\n");
|
|
|
|
usage(argv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (argc < 3) {
|
|
|
|
printf ("Please supply output file\n");
|
|
|
|
usage(argv);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = fopen(argv[optind+1], "w");
|
|
|
|
if (!fd) {
|
|
|
|
err(1, "error opening output file");
|
|
|
|
}
|
|
|
|
|
2008-01-10 18:41:38 +00:00
|
|
|
result = iso_image_new(volid, &image);
|
2007-12-22 16:09:49 +00:00
|
|
|
if (result < 0) {
|
|
|
|
printf ("Error creating image\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2007-12-27 09:43:06 +00:00
|
|
|
iso_image_set_msgs_severities(image, "NEVER", "ALL", "");
|
2007-12-29 16:15:24 +00:00
|
|
|
iso_tree_set_follow_symlinks(image, 0);
|
|
|
|
iso_tree_set_ignore_hidden(image, 0);
|
|
|
|
iso_tree_set_stop_on_error(image, 0);
|
|
|
|
|
2008-01-10 18:41:38 +00:00
|
|
|
result = iso_tree_add_dir_rec(image, iso_image_get_root(image), argv[optind]);
|
2007-12-22 16:09:49 +00:00
|
|
|
if (result < 0) {
|
|
|
|
printf ("Error adding directory %d\n", result);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-01-10 18:41:38 +00:00
|
|
|
if (boot_img) {
|
|
|
|
/* adds El-Torito boot info. Tunned for isolinux */
|
|
|
|
ElToritoBootImage *bootimg;
|
|
|
|
result = iso_image_set_boot_image(image, boot_img, ELTORITO_NO_EMUL,
|
|
|
|
"/isolinux/boot.cat", &bootimg);
|
|
|
|
if (result < 0) {
|
|
|
|
printf ("Error adding boot image %d\n", result);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
el_torito_set_load_size(bootimg, 4);
|
|
|
|
el_torito_patch_isolinux_image(bootimg);
|
|
|
|
}
|
|
|
|
|
2008-01-04 23:42:32 +00:00
|
|
|
result = iso_image_create_burn_source(image, &opts, &burn_src);
|
2007-12-22 16:09:49 +00:00
|
|
|
if (result < 0) {
|
|
|
|
printf ("Cant create image, error %d\n", result);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (burn_src->read(burn_src, buf, 2048) == 2048) {
|
|
|
|
fwrite(buf, 1, 2048, fd);
|
|
|
|
}
|
|
|
|
fclose(fd);
|
|
|
|
burn_src->free_data(burn_src);
|
2007-12-28 21:45:56 +00:00
|
|
|
free(burn_src);
|
2007-12-22 16:09:49 +00:00
|
|
|
|
|
|
|
iso_image_unref(image);
|
|
|
|
return 0;
|
|
|
|
}
|