/* SPDX-License-Identifier: GPL-3.0-or-later */ /* * comp_opt.c * * Copyright (C) 2019 David Oberhollenzer */ #include "common.h" #include #include #include #include typedef struct { const char *name; sqfs_u16 flag; } flag_t; static const flag_t gzip_flags[] = { { "default", SQFS_COMP_FLAG_GZIP_DEFAULT }, { "filtered", SQFS_COMP_FLAG_GZIP_FILTERED }, { "huffman", SQFS_COMP_FLAG_GZIP_HUFFMAN }, { "rle", SQFS_COMP_FLAG_GZIP_RLE }, { "fixed", SQFS_COMP_FLAG_GZIP_FIXED }, }; static const flag_t xz_flags[] = { { "x86", SQFS_COMP_FLAG_XZ_X86 }, { "powerpc", SQFS_COMP_FLAG_XZ_POWERPC }, { "ia64", SQFS_COMP_FLAG_XZ_IA64 }, { "arm", SQFS_COMP_FLAG_XZ_ARM }, { "armthumb", SQFS_COMP_FLAG_XZ_ARMTHUMB }, { "sparc", SQFS_COMP_FLAG_XZ_SPARC }, { "extreme", SQFS_COMP_FLAG_XZ_EXTREME }, }; static const flag_t lzma_flags[] = { { "extreme", SQFS_COMP_FLAG_LZMA_EXTREME }, }; static const flag_t lz4_flags[] = { { "hc", SQFS_COMP_FLAG_LZ4_HC }, }; static const char *lzo_algs[] = { [SQFS_LZO1X_1] = "lzo1x_1", [SQFS_LZO1X_1_11] = "lzo1x_1_11", [SQFS_LZO1X_1_12] = "lzo1x_1_12", [SQFS_LZO1X_1_15] = "lzo1x_1_15", [SQFS_LZO1X_999] = "lzo1x_999", }; static int set_flag(sqfs_compressor_config_t *cfg, const char *name, const flag_t *flags, size_t num_flags) { size_t i; for (i = 0; i < num_flags; ++i) { if (strcmp(flags[i].name, name) == 0) { cfg->flags |= flags[i].flag; return 0; } } return -1; } static int find_lzo_alg(sqfs_compressor_config_t *cfg, const char *name) { size_t i; for (i = 0; i < sizeof(lzo_algs) / sizeof(lzo_algs[0]); ++i) { if (strcmp(lzo_algs[i], name) == 0) { cfg->opt.lzo.algorithm = i; return 0; } } return -1; } enum { OPT_WINDOW = 0, OPT_LEVEL, OPT_ALG, OPT_DICT, OPT_LC, OPT_LP, OPT_PB, }; static char *const token[] = { [OPT_WINDOW] = (char *)"window", [OPT_LEVEL] = (char *)"level", [OPT_ALG] = (char *)"algorithm", [OPT_DICT] = (char *)"dictsize", [OPT_LC] = (char *)"lc", [OPT_LP] = (char *)"lp", [OPT_PB] = (char *)"pb", NULL }; int compressor_cfg_init_options(sqfs_compressor_config_t *cfg, SQFS_COMPRESSOR id, size_t block_size, char *options) { size_t num_flags = 0, min_level = 0, max_level = 0, level, dict_size; const flag_t *flags = NULL; char *subopts, *value; int i, opt; if (sqfs_compressor_config_init(cfg, id, block_size, 0)) return -1; if (options == NULL) return 0; switch (cfg->id) { case SQFS_COMP_GZIP: min_level = SQFS_GZIP_MIN_LEVEL; max_level = SQFS_GZIP_MAX_LEVEL; flags = gzip_flags; num_flags = sizeof(gzip_flags) / sizeof(gzip_flags[0]); break; case SQFS_COMP_LZO: min_level = SQFS_LZO_MIN_LEVEL; max_level = SQFS_LZO_MAX_LEVEL; break; case SQFS_COMP_ZSTD: min_level = SQFS_ZSTD_MIN_LEVEL; max_level = SQFS_ZSTD_MAX_LEVEL; break; case SQFS_COMP_XZ: min_level = SQFS_XZ_MIN_LEVEL; max_level = SQFS_XZ_MAX_LEVEL; flags = xz_flags; num_flags = sizeof(xz_flags) / sizeof(xz_flags[0]); break; case SQFS_COMP_LZMA: min_level = SQFS_LZMA_MIN_LEVEL; max_level = SQFS_LZMA_MAX_LEVEL; flags = lzma_flags; num_flags = sizeof(lzma_flags) / sizeof(lzma_flags[0]); break; case SQFS_COMP_LZ4: flags = lz4_flags; num_flags = sizeof(lz4_flags) / sizeof(lz4_flags[0]); break; default: break; } subopts = options; while (*subopts != '\0') { opt = getsubopt(&subopts, token, &value); switch (opt) { case OPT_WINDOW: if (cfg->id != SQFS_COMP_GZIP) goto fail_opt; if (value == NULL) goto fail_value; for (i = 0; isdigit(value[i]); ++i) ; if (i < 1 || i > 3 || value[i] != '\0') goto fail_window; cfg->opt.gzip.window_size = atoi(value); if (cfg->opt.gzip.window_size < SQFS_GZIP_MIN_WINDOW || cfg->opt.gzip.window_size > SQFS_GZIP_MAX_WINDOW) goto fail_window; break; case OPT_LEVEL: if (value == NULL) goto fail_value; for (i = 0; isdigit(value[i]) && i < 3; ++i) ; if (i < 1 || i > 3 || value[i] != '\0') goto fail_level; level = atoi(value); if (level < min_level || level > max_level) goto fail_level; cfg->level = level; break; case OPT_ALG: if (cfg->id != SQFS_COMP_LZO) goto fail_opt; if (value == NULL) goto fail_value; if (find_lzo_alg(cfg, value)) goto fail_lzo_alg; break; case OPT_DICT: if (cfg->id != SQFS_COMP_XZ && cfg->id != SQFS_COMP_LZMA) { goto fail_opt; } if (value == NULL) goto fail_value; if (parse_size("Parsing LZMA dictionary size", &dict_size, value, cfg->block_size)) { return -1; } cfg->opt.xz.dict_size = dict_size; break; case OPT_LC: if (cfg->id != SQFS_COMP_XZ && cfg->id != SQFS_COMP_LZMA) { goto fail_opt; } if (value == NULL) goto fail_value; cfg->opt.xz.lc = strtol(value, NULL, 10); if (cfg->opt.xz.lc > SQFS_XZ_MAX_LC) goto fail_lc; break; case OPT_LP: if (cfg->id != SQFS_COMP_XZ && cfg->id != SQFS_COMP_LZMA) { goto fail_opt; } if (value == NULL) goto fail_value; cfg->opt.xz.lp = strtol(value, NULL, 10); if (cfg->opt.xz.lp > SQFS_XZ_MAX_LP) goto fail_lp; break; case OPT_PB: if (cfg->id != SQFS_COMP_XZ && cfg->id != SQFS_COMP_LZMA) { goto fail_opt; } if (value == NULL) goto fail_value; cfg->opt.xz.pb = strtol(value, NULL, 10); if (cfg->opt.xz.lp > SQFS_XZ_MAX_PB) goto fail_pb; break; default: if (set_flag(cfg, value, flags, num_flags)) goto fail_opt; break; } } if (cfg->id == SQFS_COMP_XZ || cfg->id == SQFS_COMP_LZMA) { if ((cfg->opt.xz.lp + cfg->opt.xz.lc) > 4) goto fail_sum_lp_lc; } return 0; fail_sum_lp_lc: fputs("Sum of XZ lc + lp must not exceed 4.\n", stderr); return -1; fail_lp: fprintf(stderr, "XZ literal position bits (lp) must be between %d and %d.\n", SQFS_XZ_MIN_LP, SQFS_XZ_MAX_LP); return -1; fail_lc: fprintf(stderr, "XZ literal context (lc) must be between %d and %d.\n", SQFS_XZ_MIN_LC, SQFS_XZ_MAX_LC); return -1; fail_pb: fprintf(stderr, "XZ position bits (bp) must be between %d and %d.\n", SQFS_XZ_MIN_PB, SQFS_XZ_MAX_PB); return -1; fail_lzo_alg: fprintf(stderr, "Unknown lzo variant '%s'.\n", value); return -1; fail_window: fputs("Window size must be a number between 8 and 15.\n", stderr); return -1; fail_level: fprintf(stderr, "Compression level must be a number between " PRI_SZ " and " PRI_SZ ".\n", min_level, max_level); return -1; fail_opt: fprintf(stderr, "Unknown compressor option '%s'.\n", value); return -1; fail_value: fprintf(stderr, "Missing value for compressor option '%s'.\n", token[opt]); return -1; } typedef void (*compressor_help_fun_t)(void); static void gzip_print_help(void) { size_t i; printf( "Available options for gzip compressor:\n" "\n" " level= Compression level. Value from 1 to 9.\n" " Defaults to %d.\n" " window= Deflate compression window size. Value from 8 to 15.\n" " Defaults to %d.\n" "\n" "In additon to the options, one or more strategies can be specified.\n" "If multiple stratgies are provided, the one yielding the best compression\n" "ratio will be used.\n" "\n" "The following strategies are available:\n", SQFS_GZIP_DEFAULT_LEVEL, SQFS_GZIP_DEFAULT_WINDOW); for (i = 0; i < sizeof(gzip_flags) / sizeof(gzip_flags[0]); ++i) printf("\t%s\n", gzip_flags[i].name); } static void lz4_print_help(void) { fputs("Available options for lz4 compressor:\n" "\n" " hc If present, use slower but better compressing\n" " variant of lz4.\n" "\n", stdout); } static void lzo_print_help(void) { size_t i; fputs("Available options for lzo compressor:\n" "\n" " algorithm= Specify the variant of lzo to use.\n" " Defaults to 'lzo1x_999'.\n" " level= For lzo1x_999, the compression level.\n" " Value from 1 to 9. Defaults to 8.\n" " Ignored if algorithm is not lzo1x_999.\n" "\n" "Available algorithms:\n", stdout); for (i = 0; i < sizeof(lzo_algs) / sizeof(lzo_algs[0]); ++i) printf("\t%s\n", lzo_algs[i]); } static void xz_lzma_print_help(void) { size_t i; printf( "Available options for LZMA and XZ (LZMA v2) compressors:\n" "\n" " dictsize= Dictionary size. Either a value in bytes or a\n" " percentage of the block size. Defaults to 100%%.\n" " The suffix '%%' indicates a percentage. 'K' and 'M'\n" " can also be used for kibi and mebi bytes\n" " respecitively.\n" " level= Compression level. Value from %d to %d.\n" " For XZ, defaults to %d, for LZMA defaults to %d.\n" " lc= Number of literal context bits.\n" " How many of the highest bits of the previous\n" " uncompressed byte to take into account when\n" " predicting the bits of the next byte.\n" " Default is %d.\n" " lp= Number of literal position bits.\n" " Affects what kind of alignment in the uncompressed\n" " data is assumed when encoding bytes.\n" " Default is %d.\n" " pb= Number of position bits.\n" " This is the log2 of the assumed underlying alignment\n" " of the input data, i.e. pb=0 means single byte\n" " allignment, pb=1 means 16 bit, 2 means 32 bit.\n" " Default is %d.\n" " extreme If this flag is set, try to crunch the data extra hard\n" " without increasing the decompressors memory\n" " requirements." "\n" "If values are set, the sum of lc + lp must not exceed 4.\n" "The maximum for pb is %d.\n" "\n" "In additon to the options, for the XZ compressor, one or more bcj filters\n" "can be specified.\n" "If multiple filters are provided, the one yielding the best compression\n" "ratio will be used.\n" "\n" "The following filters are available:\n", SQFS_XZ_MIN_LEVEL, SQFS_XZ_MAX_LEVEL, SQFS_XZ_DEFAULT_LEVEL, SQFS_LZMA_DEFAULT_LEVEL, SQFS_XZ_DEFAULT_LC, SQFS_XZ_DEFAULT_LP, SQFS_XZ_DEFAULT_PB, SQFS_XZ_MAX_PB); for (i = 0; i < sizeof(xz_flags) / sizeof(xz_flags[0]); ++i) printf("\t%s\n", xz_flags[i].name); } static void zstd_print_help(void) { printf("Available options for zstd compressor:\n" "\n" " level= Set compression level. Defaults to %d.\n" " Maximum is %d.\n" "\n", SQFS_ZSTD_DEFAULT_LEVEL, SQFS_ZSTD_MAX_LEVEL); } static const compressor_help_fun_t helpfuns[SQFS_COMP_MAX + 1] = { [SQFS_COMP_GZIP] = gzip_print_help, [SQFS_COMP_XZ] = xz_lzma_print_help, [SQFS_COMP_LZMA] = xz_lzma_print_help, [SQFS_COMP_LZO] = lzo_print_help, [SQFS_COMP_LZ4] = lz4_print_help, [SQFS_COMP_ZSTD] = zstd_print_help, }; void compressor_print_help(SQFS_COMPRESSOR id) { if (id < SQFS_COMP_MIN || id > SQFS_COMP_MAX) return; if (helpfuns[id] == NULL) return; helpfuns[id](); }