/* Copyright (c) 2014-2018 Dovecot authors, see the included COPYING file */ #include "lib.h" #include "buffer.h" #include "istream.h" #include "iostream-temp.h" #include "ostream.h" #include "sha1.h" #include "randgen.h" #include "test-common.h" #include "compression.h" #include "iostream-lz4.h" #include "hex-binary.h" #include #include static void test_compression_handler_detect(const struct compression_handler *handler) { const unsigned char test_data[] = {'h','e','l','l','o',' ', 'w','o','r','l','d','\n'}; const unsigned char *data; size_t size; buffer_t *buffer; struct ostream *test_output; struct ostream *output; struct istream *test_input; struct istream *input; /* write some amount of data */ test_begin(t_strdup_printf("compression handler %s (detect)", handler->name)); buffer = buffer_create_dynamic(default_pool, 1024); test_output = test_ostream_create(buffer); output = handler->create_ostream(test_output, 1); o_stream_unref(&test_output); /* write data at once */ test_assert(o_stream_send(output, test_data, sizeof(test_data)) == sizeof(test_data)); test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); test_input = test_istream_create_data(buffer->data, buffer->used); handler = compression_detect_handler(test_input); i_stream_seek(test_input, 0); test_assert(handler != NULL); if (handler != NULL) { input = handler->create_istream(test_input); i_stream_unref(&test_input); test_assert(i_stream_read_more(input, &data, &size) > 0); test_assert(size == sizeof(test_data) && memcmp(data, test_data, size) == 0); i_stream_unref(&input); } else { i_stream_unref(&test_input); } buffer_free(&buffer); test_end(); } static void test_compression_handler_short(const struct compression_handler *handler, bool autodetect) { const unsigned char *data; size_t len, size; buffer_t *test_data; buffer_t *buffer; struct ostream *test_output; struct ostream *output; struct istream *test_input; struct istream *input; /* write some amount of data */ test_begin(t_strdup_printf("compression handler %s (small, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); len = i_rand_minmax(1, 1024); test_data = buffer_create_dynamic(default_pool, len); random_fill(buffer_append_space_unsafe(test_data, len), len); buffer_set_used_size(test_data, len); buffer_append(test_data, "hello. world.\n", 14); buffer = buffer_create_dynamic(default_pool, 1024); test_output = test_ostream_create(buffer); output = handler->create_ostream(test_output, 1); o_stream_unref(&test_output); /* write data at once */ test_assert(o_stream_send(output, test_data->data, test_data->used) == (ssize_t)test_data->used); test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); /* read data at once */ test_input = test_istream_create_data(buffer->data, buffer->used); input = !autodetect ? handler->create_istream(test_input) : i_stream_create_decompress(test_input, 0); i_stream_unref(&test_input); test_assert(i_stream_read_more(input, &data, &size) > 0); test_assert(size == test_data->used && memcmp(data, test_data->data, size) ==0); i_stream_unref(&input); buffer_free(&buffer); buffer_free(&test_data); test_end(); } static void test_compression_handler_empty(const struct compression_handler *handler, bool autodetect) { buffer_t *buffer; struct ostream *test_output; struct ostream *output; struct istream *test_input; struct istream *input; /* create stream and finish it without writing anything */ test_begin(t_strdup_printf("compression handler %s (empty, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); buffer = buffer_create_dynamic(default_pool, 128); test_output = test_ostream_create(buffer); output = handler->create_ostream(test_output, 1); o_stream_unref(&test_output); test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); /* read the input */ test_input = test_istream_create_data(buffer->data, buffer->used); input = !autodetect ? handler->create_istream(test_input) : i_stream_create_decompress(test_input, 0); i_stream_unref(&test_input); test_assert(i_stream_read(input) == -1); test_assert(i_stream_get_data_size(input) == 0); i_stream_unref(&input); buffer_free(&buffer); test_end(); } static void test_compression_handler_seek(const struct compression_handler *handler, bool autodetect) { const unsigned char *data,*ptr; size_t len, size, pos; buffer_t *test_data; buffer_t *buffer; struct ostream *test_output; struct ostream *output; struct istream *test_input; struct istream *input; /* write some amount of data */ test_begin(t_strdup_printf("compression handler %s (seek, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); len = i_rand_minmax(1024, 2048); test_data = buffer_create_dynamic(default_pool, len); random_fill(buffer_append_space_unsafe(test_data, len), len); buffer_set_used_size(test_data, len); buffer_append(test_data, "hello. world.\n", 14); buffer = buffer_create_dynamic(default_pool, 1024); test_output = test_ostream_create(buffer); output = handler->create_ostream(test_output, 1); o_stream_unref(&test_output); /* write data at once */ test_assert(o_stream_send(output, test_data->data, test_data->used) == (ssize_t)test_data->used); test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); test_input = test_istream_create_data(buffer->data, buffer->used); input = !autodetect ? handler->create_istream(test_input) : i_stream_create_decompress(test_input, 0); i_stream_unref(&test_input); /* seek forward */ i_stream_seek(input, test_data->used - 14); /* should read 'hello. world.\n' */ test_assert(i_stream_read_more(input, &data, &size) > 0); test_assert(size >= 14 && memcmp(data, "hello. world.\n", 14) == 0); i_stream_skip(input, size); ptr = test_data->data; /* seek to random positions and see that we get correct data */ for (unsigned int i = 0; i < 1000; i++) { pos = i_rand_limit(test_data->used); i_stream_seek(input, pos); size = 0; test_assert_idx(i_stream_read_more(input, &data, &size) > 0, i); test_assert_idx(size > 0 && memcmp(data,ptr+pos,size) == 0, i); } i_stream_unref(&input); buffer_free(&buffer); buffer_free(&test_data); test_end(); } static void test_compression_handler_reset(const struct compression_handler *handler, bool autodetect) { const unsigned char *data; size_t len, size; buffer_t *test_data; buffer_t *buffer; struct ostream *test_output; struct ostream *output; struct istream *test_input; struct istream *input; /* write some amount of data */ test_begin(t_strdup_printf("compression handler %s (reset, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); len = i_rand_minmax(1024, 2048); test_data = buffer_create_dynamic(default_pool, len); random_fill(buffer_append_space_unsafe(test_data, len), len); buffer_set_used_size(test_data, len); buffer_append(test_data, "hello. world.\n", 14); buffer = buffer_create_dynamic(default_pool, 1024); test_output = test_ostream_create(buffer); output = handler->create_ostream(test_output, 1); o_stream_unref(&test_output); /* write data at once */ test_assert(o_stream_send(output, test_data->data, test_data->used) == (ssize_t)test_data->used); test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); test_input = test_istream_create_data(buffer->data, buffer->used); input = !autodetect ? handler->create_istream(test_input) : i_stream_create_decompress(test_input, 0); i_stream_unref(&test_input); /* seek forward */ i_stream_seek(input, test_data->used - 14); /* should read 'hello. world.\n' */ test_assert(i_stream_read_more(input, &data, &size) > 0); test_assert(size >= 14 && memcmp(data, "hello. world.\n", 14) == 0); i_stream_skip(input, size); /* reset */ i_stream_sync(input); /* see that we still get data, at start */ size = 0; test_assert(i_stream_read_more(input, &data, &size) > 0); test_assert(size > 0 && memcmp(data, test_data->data, size) == 0); i_stream_unref(&input); buffer_free(&buffer); buffer_free(&test_data); test_end(); } static void test_compression_handler(const struct compression_handler *handler, bool autodetect) { const char *path = "test-compression.tmp"; struct istream *file_input, *input; struct ostream *file_output, *output; unsigned char buf[IO_BLOCK_SIZE]; const unsigned char *data; size_t size; uoff_t stream_size; struct sha1_ctxt sha1; unsigned char output_sha1[SHA1_RESULTLEN], input_sha1[SHA1_RESULTLEN]; unsigned int i; int fd; ssize_t ret; test_begin(t_strdup_printf("compression handler %s (autodetect=%s)", handler->name, autodetect ? "yes" : "no")); /* write compressed data */ fd = open(path, O_TRUNC | O_CREAT | O_RDWR, 0600); if (fd == -1) i_fatal("creat(%s) failed: %m", path); file_output = o_stream_create_fd_file(fd, 0, FALSE); output = handler->create_ostream(file_output, 1); sha1_init(&sha1); /* 1) write lots of easily compressible data */ memset(buf, 0, sizeof(buf)); for (i = 0; i < 1024*1024*4 / sizeof(buf); i++) { sha1_loop(&sha1, buf, sizeof(buf)); test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf)); } /* 2) write uncompressible data */ for (i = 0; i < 1024*128 / sizeof(buf); i++) { random_fill(buf, sizeof(buf)); sha1_loop(&sha1, buf, sizeof(buf)); test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf)); } /* make sure the input size isn't multiple of something simple */ random_fill(buf, sizeof(buf)); sha1_loop(&sha1, buf, sizeof(buf) - 5); test_assert(o_stream_send(output, buf, sizeof(buf) - 5) == sizeof(buf) - 5); /* 3) write semi-compressible data */ for (i = 0; i < sizeof(buf); i++) { if (i_rand_limit(3) == 0) buf[i] = i_rand_limit(4); else buf[i] = i & UCHAR_MAX; } for (i = 0; i < 1024*128 / sizeof(buf); i++) { sha1_loop(&sha1, buf, sizeof(buf)); test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf)); } test_assert(o_stream_finish(output) > 0); uoff_t uncompressed_size = output->offset; o_stream_destroy(&output); uoff_t compressed_size = file_output->offset; o_stream_destroy(&file_output); sha1_result(&sha1, output_sha1); /* read and uncompress the data */ file_input = i_stream_create_fd(fd, IO_BLOCK_SIZE); input = !autodetect ? handler->create_istream(file_input) : i_stream_create_decompress(file_input, 0); test_assert(i_stream_get_size(input, FALSE, &stream_size) == 1); test_assert(stream_size == compressed_size); test_assert(i_stream_get_size(input, TRUE, &stream_size) == 1); test_assert(stream_size == uncompressed_size); sha1_init(&sha1); for (bool seeked = FALSE;;) { sha1_init(&sha1); while ((ret = i_stream_read_more(input, &data, &size)) > 0) { sha1_loop(&sha1, data, size); i_stream_skip(input, size); } test_assert(ret == -1); test_assert(input->stream_errno == 0); sha1_result(&sha1, input_sha1); test_assert(memcmp(input_sha1, output_sha1, sizeof(input_sha1)) == 0); if (seeked) break; seeked = TRUE; i_stream_seek(input, 1); (void)i_stream_read(input); i_stream_seek(input, 0); } i_stream_destroy(&input); i_stream_destroy(&file_input); i_unlink(path); i_close_fd(&fd); test_end(); } static void test_compression_handler_partial_parent_write(const struct compression_handler *handler, bool autodetect) { test_begin(t_strdup_printf("compression handler %s (partial parent writes, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); int ret; buffer_t *buffer = t_buffer_create(64); buffer_t *compressed_data = t_buffer_create(256); struct ostream *os = test_ostream_create_nonblocking(buffer, 64); struct ostream *os_compressed = handler->create_ostream(os, 9); o_stream_unref(&os); unsigned char input_buffer[64]; /* create unlikely compressible data */ random_fill(input_buffer, sizeof(input_buffer)); for (unsigned int i = 0; i < 10; i++) { /* write it to stream */ test_assert_idx(o_stream_send(os_compressed, input_buffer, sizeof(input_buffer)) == sizeof(input_buffer), i); while ((ret = o_stream_flush(os_compressed)) == 0) { /* flush buffer */ if (buffer->used > 0) buffer_append(compressed_data, buffer->data, buffer->used); buffer_set_used_size(buffer, 0); } if (buffer->used > 0) buffer_append(compressed_data, buffer->data, buffer->used); buffer_set_used_size(buffer, 0); test_assert_idx(ret == 1, i); } test_assert(o_stream_finish(os_compressed) == 1); o_stream_unref(&os_compressed); if (buffer->used > 0) buffer_append(compressed_data, buffer->data, buffer->used); struct istream *is = test_istream_create_data(compressed_data->data, compressed_data->used); struct istream *is_decompressed = !autodetect ? handler->create_istream(is) : i_stream_create_decompress(is, 0); i_stream_unref(&is); const unsigned char *data; size_t siz; buffer_t *decompressed_data = t_buffer_create(sizeof(input_buffer)*10); while(i_stream_read_more(is_decompressed, &data, &siz) > 0) { buffer_append(decompressed_data, data, siz); i_stream_skip(is_decompressed, siz); } test_assert(decompressed_data->used == sizeof(input_buffer)*10); for(siz = 0; siz < decompressed_data->used; siz+=sizeof(input_buffer)) { test_assert(decompressed_data->used - siz >= sizeof(input_buffer) && memcmp(CONST_PTR_OFFSET(decompressed_data->data, siz), input_buffer, sizeof(input_buffer)) == 0); } i_stream_unref(&is_decompressed); test_end(); } static void test_compression_handler_random_io(const struct compression_handler *handler, bool autodetect) { unsigned char in_buf[8192]; size_t in_buf_size; buffer_t *enc_buf, *dec_buf; unsigned int i, j; int ret; enc_buf = buffer_create_dynamic(default_pool, sizeof(in_buf)); dec_buf = buffer_create_dynamic(default_pool, sizeof(in_buf)); test_begin(t_strdup_printf("compression handler %s (random I/O, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); for (i = 0; !test_has_failed() && i < 300; i++) { struct istream *input1, *input2; struct ostream *output1, *output2; struct istream *top_input; const unsigned char *data; size_t size, in_pos, out_pos; /* Initialize test data (semi-compressible) */ in_buf_size = i_rand_limit(sizeof(in_buf)); for (j = 0; j < in_buf_size; j++) { if (i_rand_limit(3) == 0) in_buf[j] = i_rand_limit(256); else in_buf[j] = (unsigned char)j; } /* Reset encode output buffer */ buffer_set_used_size(enc_buf, 0); /* Create input stream for test data */ input1 = test_istream_create_data(in_buf, in_buf_size); i_stream_set_name(input1, "[data]"); /* Create output stream for compressed data */ output1 = test_ostream_create_nonblocking(enc_buf, i_rand_minmax(1, 512)); /* Create compressor output stream */ output2 = handler->create_ostream(output1, i_rand_minmax(1, 6)); /* Compress the data incrementally */ in_pos = out_pos = 0; ret = 0; test_istream_set_size(input1, in_pos); while (ret == 0) { enum ostream_send_istream_result res; res = o_stream_send_istream(output2, input1); switch(res) { case OSTREAM_SEND_ISTREAM_RESULT_ERROR_INPUT: case OSTREAM_SEND_ISTREAM_RESULT_ERROR_OUTPUT: ret = -1; break; case OSTREAM_SEND_ISTREAM_RESULT_WAIT_OUTPUT: out_pos += i_rand_limit(512); test_ostream_set_max_output_size( output1, out_pos); break; case OSTREAM_SEND_ISTREAM_RESULT_WAIT_INPUT: in_pos += i_rand_limit(512); if (in_pos > in_buf_size) in_pos = in_buf_size; test_istream_set_size(input1, in_pos); break; case OSTREAM_SEND_ISTREAM_RESULT_FINISHED: /* finish it */ ret = o_stream_finish(output2); break; } } /* Clean up */ i_stream_unref(&input1); o_stream_unref(&output1); o_stream_unref(&output2); /* Reset decode output buffer */ buffer_set_used_size(dec_buf, 0); /* Create input stream for compressed data */ input1 = i_stream_create_from_buffer(enc_buf); i_stream_set_name(input1, "[compressed-data]"); /* Create decompressor stream */ input2 = !autodetect ? handler->create_istream(input1) : i_stream_create_decompress(input1, 0); i_stream_set_name(input2, "[decompressor]"); /* Assign random buffer sizes */ i_stream_set_max_buffer_size(input2, i_rand_minmax(1, 512)); /* Read the outer stream in full with random increments. */ top_input = input2; while ((ret = i_stream_read_more( top_input, &data, &size)) > 0) { size_t ch = i_rand_limit(512); size = I_MIN(size, ch); buffer_append(dec_buf, data, size); i_stream_skip(top_input, size); } if (ret < 0 && top_input->stream_errno == 0) { data = i_stream_get_data(top_input, &size); if (size > 0) { buffer_append(dec_buf, data, size); i_stream_skip(top_input, size); } } /* Assert stream status */ test_assert_idx(ret < 0 && top_input->stream_errno == 0, i); /* Assert input/output equality */ test_assert_idx(dec_buf->used == in_buf_size && memcmp(in_buf, dec_buf->data, in_buf_size) == 0, i); if (top_input->stream_errno != 0) { i_error("%s: %s", i_stream_get_name(input1), i_stream_get_error(input1)); i_error("%s: %s", i_stream_get_name(input2), i_stream_get_error(input2)); } if (test_has_failed()) { i_info("Test parameters: size=%zu", in_buf_size); } /* Clean up */ i_stream_unref(&input1); i_stream_unref(&input2); } test_end(); buffer_free(&enc_buf); buffer_free(&dec_buf); } static void test_compression_handler_large_random_io(const struct compression_handler *handler, bool autodetect) { #define RANDOMNESS_SIZE (1024*1024) unsigned char *randomness; struct istream *input, *dec_input; struct ostream *temp_output, *output; const unsigned char *data; size_t size; int ret; test_begin(t_strdup_printf("compression handler %s (large random io, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); randomness = i_malloc(RANDOMNESS_SIZE); random_fill(randomness, RANDOMNESS_SIZE); /* write 1 MB of randomness to buffer */ input = i_stream_create_from_data(randomness, RANDOMNESS_SIZE); temp_output = iostream_temp_create(".temp.", 0); output = handler->create_ostream(temp_output, i_rand_minmax(1, 6)); switch (o_stream_send_istream(output, input)) { case OSTREAM_SEND_ISTREAM_RESULT_ERROR_INPUT: case OSTREAM_SEND_ISTREAM_RESULT_ERROR_OUTPUT: test_assert(FALSE); break; case OSTREAM_SEND_ISTREAM_RESULT_WAIT_OUTPUT: case OSTREAM_SEND_ISTREAM_RESULT_WAIT_INPUT: i_unreached(); case OSTREAM_SEND_ISTREAM_RESULT_FINISHED: test_assert(o_stream_finish(output) == 1); break; } test_assert(output->offset == RANDOMNESS_SIZE); test_assert(output->stream_errno == 0); i_stream_unref(&input); input = iostream_temp_finish(&temp_output, SIZE_MAX); o_stream_unref(&output); /* verify that reading the input works */ dec_input = !autodetect ? handler->create_istream(input) : i_stream_create_decompress(input, 0); while ((ret = i_stream_read_more(dec_input, &data, &size)) > 0) { test_assert(memcmp(data, randomness + dec_input->v_offset, size) == 0); i_stream_skip(dec_input, size); } test_assert(ret == -1); test_assert(dec_input->v_offset == RANDOMNESS_SIZE); test_assert(dec_input->stream_errno == 0); i_stream_unref(&dec_input); i_stream_unref(&input); i_free(randomness); test_end(); } static void test_compression_handler_errors(const struct compression_handler *handler, bool autodetect) { test_begin(t_strdup_printf("compression handler %s (errors, autodetect=%s)", handler->name, autodetect ? "yes" : "no")); /* test that zero stream reading errors out */ struct istream *is = test_istream_create(""); struct istream *input = !autodetect ? handler->create_istream(is) : i_stream_create_decompress(is, 0); i_stream_unref(&is); test_assert(i_stream_read(input) == -1 && input->eof); i_stream_unref(&input); /* test that garbage isn't considered valid */ is = test_istream_create("dedededededededededededededede" "dedededeededdedededededededede" "dedededededededededededededede"); is->blocking = TRUE; input = !autodetect ? handler->create_istream(is) : i_stream_create_decompress(is, 0); i_stream_unref(&is); test_assert(i_stream_read(input) == -1 && input->eof); i_stream_unref(&input); /* test that truncated data is not considered valid */ buffer_t *odata = buffer_create_dynamic(pool_datastack_create(), 65535); unsigned char buf[IO_BLOCK_SIZE]; struct ostream *os = test_ostream_create(odata); struct ostream *output = handler->create_ostream(os, 1); o_stream_unref(&os); for (unsigned int i = 0; i < 10; i++) { random_fill(buf, sizeof(buf)); test_assert(o_stream_send(output, buf, sizeof(buf)) == sizeof(buf)); } test_assert(o_stream_finish(output) == 1); o_stream_unref(&output); /* truncate buffer */ is = test_istream_create_data(odata->data, odata->used - sizeof(buf)*2 - 1); input = !autodetect ? handler->create_istream(is) : i_stream_create_decompress(is, 0); i_stream_unref(&is); const unsigned char *data ATTR_UNUSED; size_t size; while (i_stream_read_more(input, &data, &size) > 0) i_stream_skip(input, size); test_assert(input->stream_errno == EPIPE); i_stream_unref(&input); /* Cannot do the next check if we don't know if it's compressed. */ if (handler->is_compressed != NULL) { /* test incrementally reading up to 32 bytes of plaintext data that should not match any handlers' header */ for (size_t i = 0; i < 32; i++) { is = test_istream_create_data("dededededededededededededededede", i); input = !autodetect ? handler->create_istream(is) : i_stream_create_decompress(is, 0); i_stream_unref(&is); while (i_stream_read_more(input, &data, &size) >= 0) { test_assert_idx(size == 0, i); i_stream_skip(input, size); } test_assert_idx(input->stream_errno == EINVAL, i); i_stream_unref(&input); } } test_end(); } static void test_compression_int(bool autodetect) { unsigned int i; for (i = 0; compression_handlers[i].name != NULL; i++) { if (compression_handlers[i].create_istream != NULL && compression_handlers[i].create_ostream != NULL && (!autodetect || compression_handlers[i].is_compressed != NULL)) T_BEGIN { if (compression_handlers[i].is_compressed != NULL && !autodetect) test_compression_handler_detect(&compression_handlers[i]); test_compression_handler_short(&compression_handlers[i], autodetect); test_compression_handler_empty(&compression_handlers[i], autodetect); test_compression_handler(&compression_handlers[i], autodetect); test_compression_handler_seek(&compression_handlers[i], autodetect); test_compression_handler_reset(&compression_handlers[i], autodetect); test_compression_handler_partial_parent_write(&compression_handlers[i], autodetect); test_compression_handler_random_io(&compression_handlers[i], autodetect); test_compression_handler_large_random_io(&compression_handlers[i], autodetect); test_compression_handler_errors(&compression_handlers[i], autodetect); } T_END; } } static void test_compression(void) { test_compression_int(FALSE); test_compression_int(TRUE); } static void test_istream_decompression_try(void) { const char *tests[] = { "", "1", "12", "12345678901234567890123456789012345678901234567890", }; struct istream *is, *input; const unsigned char *data; size_t size; test_begin("istream-decompression try"); for (unsigned int i = 0; i < N_ELEMENTS(tests); i++) { size_t test_len = strlen(tests[i]); is = i_stream_create_from_data(tests[i], test_len); input = i_stream_create_decompress(is, ISTREAM_DECOMPRESS_FLAG_TRY); i_stream_unref(&is); ssize_t ret = i_stream_read(input); test_assert_idx((test_len == 0 && ret == -1) || (test_len > 0 && ret == (ssize_t)test_len), i); data = i_stream_get_data(input, &size); test_assert_idx(size == test_len && memcmp(data, tests[i], size) == 0, i); i_stream_skip(input, size); test_assert_idx(i_stream_read(input) == -1, i); test_assert_idx(input->stream_errno == 0, i); i_stream_unref(&input); } test_end(); } static void test_gz(const char *str1, const char *str2, bool autodetect) { const struct compression_handler *gz; struct ostream *buf_output, *output; struct istream *test_input, *input; buffer_t *buf = t_buffer_create(512); if (compression_lookup_handler("gz", &gz) <= 0 ) return; /* not compiled in or unkown*/ /* write concated output */ buf_output = o_stream_create_buffer(buf); o_stream_set_finish_via_child(buf_output, FALSE); output = gz->create_ostream(buf_output, 6); o_stream_nsend_str(output, str1); test_assert(o_stream_finish(output) > 0); o_stream_destroy(&output); if (str2[0] != '\0') { output = gz->create_ostream(buf_output, 6); o_stream_nsend_str(output, "world"); test_assert(o_stream_finish(output) > 0); o_stream_destroy(&output); } o_stream_destroy(&buf_output); /* read concated input */ const unsigned char *data; size_t size; test_input = test_istream_create_data(buf->data, buf->used); test_istream_set_allow_eof(test_input, FALSE); input = !autodetect ? gz->create_istream(test_input) : i_stream_create_decompress(test_input, 0); for (size_t i = 0; i <= buf->used; i++) { test_istream_set_size(test_input, i); test_assert(i_stream_read(input) >= 0); } test_istream_set_allow_eof(test_input, TRUE); test_assert(i_stream_read(input) == -1); test_assert(input->stream_errno == 0); data = i_stream_get_data(input, &size); test_assert(size == strlen(str1)+strlen(str2) && memcmp(data, str1, strlen(str1)) == 0 && memcmp(data+strlen(str1), str2, strlen(str2)) == 0); i_stream_unref(&input); i_stream_unref(&test_input); } static void test_gz_concat(void) { test_begin("gz concat (autodetect=no)"); test_gz("hello", "world", FALSE); test_end(); test_begin("gz concat (autodetect=yes)"); test_gz("hello", "world", TRUE); test_end(); } static void test_gz_no_concat(void) { test_begin("gz no concat (autodetect=no)"); test_gz("hello", "", FALSE); test_end(); test_begin("gz no concat (autodetect=yes)"); test_gz("hello", "", TRUE); test_end(); } static void test_gz_header_int(bool autodetect) { const struct compression_handler *gz; const char *input_strings[] = { "\x1F\x8B", "\x1F\x8B\x01\x02"/* GZ_FLAG_FHCRC */"\xFF\xFF\x01\x01\x01\x01", "\x1F\x8B\x01\x04"/* GZ_FLAG_FEXTRA */"\xFF\xFF\x01\x01\x01\x01", "\x1F\x8B\x01\x08"/* GZ_FLAG_FNAME */"\x01\x01\x01\x01\x01\x01", "\x1F\x8B\x01\x10"/* GZ_FLAG_FCOMMENT */"\x01\x01\x01\x01\x01\x01", "\x1F\x8B\x01\x0C"/* GZ_FLAG_FEXTRA | GZ_FLAG_FNAME */"\xFF\xFF\x01\x01\x01\x01", }; struct istream *file_input, *input; if (compression_lookup_handler("gz", &gz) <= 0 ) return; /* not compiled in or unkown*/ test_begin(t_strdup_printf( "gz header (autodetect=%s)", autodetect ? "yes" : "no")); for (unsigned int i = 0; i < N_ELEMENTS(input_strings); i++) { file_input = test_istream_create_data(input_strings[i], strlen(input_strings[i])); file_input->blocking = TRUE; input = !autodetect ? gz->create_istream(file_input) : i_stream_create_decompress(file_input, 0); test_assert_idx(i_stream_read(input) == -1, i); test_assert_idx(input->stream_errno == EINVAL, i); i_stream_unref(&input); i_stream_unref(&file_input); } test_end(); } static void test_gz_header(void) { test_gz_header_int(FALSE); test_gz_header_int(TRUE); } static void test_gz_large_header_int(bool autodetect) { const struct compression_handler *gz; static const unsigned char gz_input[] = { 0x1f, 0x8b, 0x08, 0x08, 'a','a','a','a','a','a','a','a','a','a','a', 0 }; struct istream *file_input, *input; size_t i; if (compression_lookup_handler("gz", &gz) <= 0 ) return; /* not compiled in or unkown*/ test_begin(t_strdup_printf( "gz large header (autodetect=%s)", autodetect ? "yes" : "no")); /* max buffer size smaller than gz header */ for (i = 1; i < sizeof(gz_input); i++) { file_input = test_istream_create_data(gz_input, sizeof(gz_input)); test_istream_set_size(file_input, i); test_istream_set_max_buffer_size(file_input, i); input = !autodetect ? gz->create_istream(file_input) : i_stream_create_decompress(file_input, 0); test_assert_idx(i_stream_read(input) == 0, i); test_assert_idx(i_stream_read(input) == -1 && input->stream_errno == EINVAL, i); i_stream_unref(&input); i_stream_unref(&file_input); } /* max buffer size is exactly the gz header */ file_input = test_istream_create_data(gz_input, sizeof(gz_input)); input = !autodetect ? gz->create_istream(file_input) : i_stream_create_decompress(file_input, 0); test_istream_set_size(file_input, i); test_istream_set_allow_eof(file_input, FALSE); test_istream_set_max_buffer_size(file_input, i); test_assert(i_stream_read(input) == 0); i_stream_unref(&input); i_stream_unref(&file_input); test_end(); } static void test_gz_large_header(void) { test_gz_large_header_int(FALSE); test_gz_large_header_int(TRUE); } static void test_lz4_small_header(void) { const struct compression_handler *lz4; struct iostream_lz4_header lz4_input; struct istream *file_input, *input; if (compression_lookup_handler("lz4", &lz4) <= 0) return; /* not compiled in or unkown */ test_begin("lz4 small header"); memcpy(lz4_input.magic, IOSTREAM_LZ4_MAGIC, IOSTREAM_LZ4_MAGIC_LEN); lz4_input.max_uncompressed_chunk_size[0] = 0; lz4_input.max_uncompressed_chunk_size[1] = 1; lz4_input.max_uncompressed_chunk_size[2] = 0; lz4_input.max_uncompressed_chunk_size[3] = 0; /* truncated header */ file_input = i_stream_create_from_data(&lz4_input, sizeof(lz4_input)-1); input = lz4->create_istream(file_input); test_assert(i_stream_read(input) == -1 && input->stream_errno == EINVAL); i_stream_unref(&input); i_stream_unref(&file_input); /* partial initial header read */ file_input = test_istream_create_data(&lz4_input, sizeof(lz4_input)); file_input->blocking = TRUE; test_istream_set_max_buffer_size(file_input, sizeof(lz4_input)-1); (void)i_stream_read(file_input); test_istream_set_max_buffer_size(file_input, sizeof(lz4_input)); input = lz4->create_istream(file_input); test_assert(i_stream_read(input) == -1 && input->stream_errno == 0); i_stream_unref(&input); i_stream_unref(&file_input); test_end(); } static void test_uncompress_file(const char *path) { const struct compression_handler *handler; struct istream *input, *file_input; const unsigned char *data; size_t size; int ret; ret = compression_lookup_handler_from_ext(path, &handler); if (ret < 0) i_fatal("Can't detect compression algorithm from path %s", path); else if (ret == 0) i_fatal("Support not compiled in for %s", handler->name); file_input = i_stream_create_file(path, IO_BLOCK_SIZE); input = handler->create_istream(file_input); while (i_stream_read_more(input, &data, &size) > 0) { if (write(STDOUT_FILENO, data, size) < 0) break; i_stream_skip(input, size); } i_stream_destroy(&input); } static void test_compress_file(const char *in_path, const char *out_path) { const struct compression_handler *handler; struct istream *input, *file_input; struct ostream *output, *file_output; int fd_in, fd_out; struct sha1_ctxt sha1; unsigned char output_sha1[SHA1_RESULTLEN], input_sha1[SHA1_RESULTLEN]; const unsigned char *data; size_t size; int ret; ret = compression_lookup_handler_from_ext(out_path, &handler); if (ret < 0) i_fatal("Can't detect compression algorithm from path %s", out_path); if (ret == 0) i_fatal("Support not compiled in for %s", handler->name); /* write the compressed output file */ fd_in = open(in_path, O_RDONLY); if (fd_in == -1) i_fatal("open(%s) failed: %m", in_path); fd_out = open(out_path, O_TRUNC | O_CREAT | O_RDWR, 0600); if (fd_out == -1) i_fatal("creat(%s) failed: %m", out_path); sha1_init(&sha1); file_output = o_stream_create_fd_file(fd_out, 0, FALSE); output = handler->create_ostream(file_output, 1); input = i_stream_create_fd_autoclose(&fd_in, IO_BLOCK_SIZE); while (i_stream_read_more(input, &data, &size) > 0) { sha1_loop(&sha1, data, size); o_stream_nsend(output, data, size); i_stream_skip(input, size); } if (o_stream_finish(output) < 0) { i_fatal("write(%s) failed: %s", out_path, o_stream_get_error(output)); } i_stream_destroy(&input); o_stream_destroy(&output); o_stream_destroy(&file_output); sha1_result(&sha1, output_sha1); /* verify that we can read the compressed file */ sha1_init(&sha1); file_input = i_stream_create_fd(fd_out, IO_BLOCK_SIZE); input = handler->create_istream(file_input); while (i_stream_read_more(input, &data, &size) > 0) { sha1_loop(&sha1, data, size); i_stream_skip(input, size); } i_stream_destroy(&input); i_stream_destroy(&file_input); sha1_result(&sha1, input_sha1); if (memcmp(input_sha1, output_sha1, sizeof(input_sha1)) != 0) i_fatal("Decompression couldn't get the original input"); i_close_fd(&fd_out); } static void test_compression_ext(void) { const struct compression_handler *handler; test_begin("compression handler by extension"); for (unsigned int i = 0; compression_handlers[i].name != NULL; i++) { if (compression_handlers[i].ext != NULL) { const char *path = t_strconcat("file", compression_handlers[i].ext, NULL); int ret = compression_lookup_handler_from_ext(path, &handler); test_assert(ret == 0 || handler == &compression_handlers[i]); } } test_end(); } int main(int argc, char *argv[]) { static void (*const test_functions[])(void) = { test_compression, test_istream_decompression_try, test_gz_concat, test_gz_no_concat, test_gz_header, test_gz_large_header, test_lz4_small_header, test_compression_ext, NULL }; if (argc == 2) { test_uncompress_file(argv[1]); return 0; } if (argc == 3) { test_compress_file(argv[1], argv[2]); return 0; } return test_run(test_functions); }