Blame libarchive/test/test_write_format_iso9660_empty.c

Packit Service 1d0348
/*-
Packit Service 1d0348
 * Copyright (c) 2009-2011 Michihiro NAKAJIMA
Packit Service 1d0348
 * All rights reserved.
Packit Service 1d0348
 *
Packit Service 1d0348
 * Redistribution and use in source and binary forms, with or without
Packit Service 1d0348
 * modification, are permitted provided that the following conditions
Packit Service 1d0348
 * are met:
Packit Service 1d0348
 * 1. Redistributions of source code must retain the above copyright
Packit Service 1d0348
 *    notice, this list of conditions and the following disclaimer.
Packit Service 1d0348
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service 1d0348
 *    notice, this list of conditions and the following disclaimer in the
Packit Service 1d0348
 *    documentation and/or other materials provided with the distribution.
Packit Service 1d0348
 *
Packit Service 1d0348
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
Packit Service 1d0348
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
Packit Service 1d0348
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
Packit Service 1d0348
 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
Packit Service 1d0348
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
Packit Service 1d0348
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit Service 1d0348
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit Service 1d0348
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit Service 1d0348
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
Packit Service 1d0348
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit Service 1d0348
 */
Packit Service 1d0348
#include "test.h"
Packit Service 1d0348
Packit Service 1d0348
/*
Packit Service 1d0348
 * Check that an "empty" ISO 9660 image is correctly created.
Packit Service 1d0348
 */
Packit Service 1d0348
Packit Service 1d0348
static const unsigned char primary_id[] = {
Packit Service 1d0348
    0x01, 0x43, 0x44, 0x30, 0x30, 0x31, 0x01, 0x00
Packit Service 1d0348
};
Packit Service 1d0348
static const unsigned char volumesize[] = {
Packit Service 1d0348
    0xb5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xb5
Packit Service 1d0348
};
Packit Service 1d0348
static const unsigned char volumeidu16[] = {
Packit Service 1d0348
    0x00, 0x43, 0x00, 0x44, 0x00, 0x52, 0x00, 0x4f,
Packit Service 1d0348
    0x00, 0x4d, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20,
Packit Service 1d0348
    0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20,
Packit Service 1d0348
    0x00, 0x20, 0x00, 0x20, 0x00, 0x20, 0x00, 0x20
Packit Service 1d0348
};
Packit Service 1d0348
static const unsigned char supplementary_id[] = {
Packit Service 1d0348
    0x02, 0x43, 0x44, 0x30, 0x30, 0x31, 0x01, 0x00
Packit Service 1d0348
};
Packit Service 1d0348
static const unsigned char terminator_id[] = {
Packit Service 1d0348
    0xff, 0x43, 0x44, 0x30, 0x30, 0x31, 0x01, 0x00
Packit Service 1d0348
};
Packit Service 1d0348
Packit Service 1d0348
DEFINE_TEST(test_write_format_iso9660_empty)
Packit Service 1d0348
{
Packit Service 1d0348
	struct archive *a;
Packit Service 1d0348
	struct archive_entry *ae;
Packit Service 1d0348
	unsigned char *buff;
Packit Service 1d0348
	size_t buffsize = 190 * 2048;
Packit Service 1d0348
	size_t used;
Packit Service 1d0348
	unsigned int i;
Packit Service 1d0348
Packit Service 1d0348
	buff = malloc(buffsize);
Packit Service 1d0348
	assert(buff != NULL);
Packit Service 1d0348
	if (buff == NULL)
Packit Service 1d0348
		return;
Packit Service 1d0348
Packit Service 1d0348
	/* ISO9660 format: Create a new archive in memory. */
Packit Service 1d0348
	assert((a = archive_write_new()) != NULL);
Packit Service 1d0348
	assertA(0 == archive_write_set_format_iso9660(a));
Packit Service 1d0348
	assertA(0 == archive_write_add_filter_none(a));
Packit Service 1d0348
	assertA(0 == archive_write_set_bytes_per_block(a, 1));
Packit Service 1d0348
	assertA(0 == archive_write_set_bytes_in_last_block(a, 1));
Packit Service 1d0348
	assertA(0 == archive_write_open_memory(a, buff, buffsize, &used));
Packit Service 1d0348
Packit Service 1d0348
	/* Add "." entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, ".");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Add ".." entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, "..");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Add "/" entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, "/");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Add "../" entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, "../");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Add "../../." entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, "../../.");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Add "..//.././" entry which must be ignored. */ 
Packit Service 1d0348
	assert((ae = archive_entry_new()) != NULL);
Packit Service 1d0348
	archive_entry_set_atime(ae, 2, 0);
Packit Service 1d0348
	archive_entry_set_ctime(ae, 4, 0);
Packit Service 1d0348
	archive_entry_set_mtime(ae, 5, 0);
Packit Service 1d0348
	archive_entry_copy_pathname(ae, "..//.././");
Packit Service 1d0348
	archive_entry_set_mode(ae, S_IFDIR | 0755);
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
Packit Service 1d0348
	archive_entry_free(ae);
Packit Service 1d0348
Packit Service 1d0348
	/* Close out the archive. */
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_write_free(a));
Packit Service 1d0348
Packit Service 1d0348
	assert(used == 2048 * 181);
Packit Service 1d0348
	/* Check System Area. */
Packit Service 1d0348
	for (i = 0; i < 2048 * 16; i++) {
Packit Service 1d0348
		failure("System Area should be all nulls.");
Packit Service 1d0348
		assert(buff[i] == 0);
Packit Service 1d0348
	}
Packit Service 1d0348
Packit Service 1d0348
	/* Primary Volume. */
Packit Service 1d0348
	failure("Primary Volume Descriptor should be in 16 Logical Sector.");
Packit Service 1d0348
	assertEqualMem(buff+2048*16, primary_id, 8);
Packit Service 1d0348
	assertEqualMem(buff+2048*16+0x28,
Packit Service 1d0348
	    "CDROM                           ", 32);
Packit Service 1d0348
	assertEqualMem(buff+2048*16+0x50, volumesize, 8);
Packit Service 1d0348
Packit Service 1d0348
	/* Supplementary Volume. */
Packit Service 1d0348
	failure("Supplementary Volume(Joliet) Descriptor "
Packit Service 1d0348
	    "should be in 17 Logical Sector.");
Packit Service 1d0348
	assertEqualMem(buff+2048*17, supplementary_id, 8);
Packit Service 1d0348
	assertEqualMem(buff+2048*17+0x28, volumeidu16, 32);
Packit Service 1d0348
	assertEqualMem(buff+2048*17+0x50, volumesize, 8);
Packit Service 1d0348
	failure("Date and Time of Primary Volume and "
Packit Service 1d0348
	    "Date and Time of Supplementary Volume "
Packit Service 1d0348
	    "must be the same.");
Packit Service 1d0348
	assertEqualMem(buff+2048*16+0x32d, buff+2048*17+0x32d, 0x44);
Packit Service 1d0348
Packit Service 1d0348
	/* Terminator. */
Packit Service 1d0348
	failure("Volume Descriptor Set Terminator "
Packit Service 1d0348
	    "should be in 18 Logical Sector.");
Packit Service 1d0348
	assertEqualMem(buff+2048*18, terminator_id, 8);
Packit Service 1d0348
	for (i = 8; i < 2048; i++) {
Packit Service 1d0348
		failure("Body of Volume Descriptor Set Terminator "
Packit Service 1d0348
		    "should be all nulls.");
Packit Service 1d0348
		assert(buff[2048*18+i] == 0);
Packit Service 1d0348
	}
Packit Service 1d0348
Packit Service 1d0348
	/* Padding data. */
Packit Service 1d0348
	for (i = 0; i < 2048*150; i++) {
Packit Service 1d0348
		failure("Padding data should be all nulls.");
Packit Service 1d0348
		assert(buff[2048*31+i] == 0);
Packit Service 1d0348
	}
Packit Service 1d0348
Packit Service 1d0348
	/*
Packit Service 1d0348
	 * Read ISO image.
Packit Service 1d0348
	 */
Packit Service 1d0348
	assert((a = archive_read_new()) != NULL);
Packit Service 1d0348
	assertEqualIntA(a, 0, archive_read_support_format_all(a));
Packit Service 1d0348
	assertEqualIntA(a, 0, archive_read_support_filter_all(a));
Packit Service 1d0348
	assertEqualIntA(a, 0, archive_read_open_memory(a, buff, used));
Packit Service 1d0348
Packit Service 1d0348
	/*
Packit Service 1d0348
	 * Read Root Directory
Packit Service 1d0348
	 * Root Directory entry must be in ISO image.
Packit Service 1d0348
	 */
Packit Service 1d0348
	assertEqualIntA(a, 0, archive_read_next_header(a, &ae);;
Packit Service 1d0348
	assertEqualInt(archive_entry_atime(ae), archive_entry_ctime(ae));
Packit Service 1d0348
	assertEqualInt(archive_entry_atime(ae), archive_entry_mtime(ae));
Packit Service 1d0348
	assertEqualString(".", archive_entry_pathname(ae));
Packit Service 1d0348
	assert((S_IFDIR | 0555) == archive_entry_mode(ae));
Packit Service 1d0348
	assertEqualInt(2048, archive_entry_size(ae));
Packit Service 1d0348
Packit Service 1d0348
	/*
Packit Service 1d0348
	 * Verify the end of the archive.
Packit Service 1d0348
	 */
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae);;
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
Packit Service 1d0348
	assertEqualIntA(a, ARCHIVE_OK, archive_read_free(a));
Packit Service 1d0348
Packit Service 1d0348
	free(buff);
Packit Service 1d0348
}