1228753Smm/*-
2228753Smm * Copyright (c) 2003-2007 Tim Kientzle
3228753Smm * All rights reserved.
4228753Smm *
5228753Smm * Redistribution and use in source and binary forms, with or without
6228753Smm * modification, are permitted provided that the following conditions
7228753Smm * are met:
8228753Smm * 1. Redistributions of source code must retain the above copyright
9228753Smm *    notice, this list of conditions and the following disclaimer.
10228753Smm * 2. Redistributions in binary form must reproduce the above copyright
11228753Smm *    notice, this list of conditions and the following disclaimer in the
12228753Smm *    documentation and/or other materials provided with the distribution.
13228753Smm *
14228753Smm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15228753Smm * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16228753Smm * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17228753Smm * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18228753Smm * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19228753Smm * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20228753Smm * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21228753Smm * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22228753Smm * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23228753Smm * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24228753Smm */
25228753Smm#include "test.h"
26228763Smm__FBSDID("$FreeBSD: stable/11/contrib/libarchive/cpio/test/test_basic.c 370535 2021-09-10 08:34:36Z git2svn $");
27228753Smm
28228753Smmstatic void
29228753Smmverify_files(const char *msg)
30228753Smm{
31228753Smm	/*
32228753Smm	 * Verify unpacked files.
33228753Smm	 */
34228753Smm
35228753Smm	/* Regular file with 2 links. */
36358088Smm	failure("%s", msg);
37228753Smm	assertIsReg("file", 0644);
38358088Smm	failure("%s", msg);
39228753Smm	assertFileSize("file", 10);
40358088Smm	failure("%s", msg);
41228753Smm	assertFileNLinks("file", 2);
42228753Smm
43228753Smm	/* Another name for the same file. */
44358088Smm	failure("%s", msg);
45228753Smm	assertIsHardlink("linkfile", "file");
46228753Smm
47228753Smm	/* Symlink */
48228753Smm	if (canSymlink())
49348607Smm		assertIsSymlink("symlink", "file", 0);
50228753Smm
51228753Smm	/* Another file with 1 link and different permissions. */
52358088Smm	failure("%s", msg);
53228753Smm	assertIsReg("file2", 0777);
54358088Smm	failure("%s", msg);
55228753Smm	assertFileSize("file2", 10);
56358088Smm	failure("%s", msg);
57228753Smm	assertFileNLinks("file2", 1);
58228753Smm
59228753Smm	/* dir */
60228753Smm	assertIsDir("dir", 0775);
61228753Smm}
62228753Smm
63228753Smmstatic void
64228753Smmbasic_cpio(const char *target,
65228753Smm    const char *pack_options,
66228753Smm    const char *unpack_options,
67232153Smm    const char *se, const char *se2)
68228753Smm{
69228753Smm	int r;
70228753Smm
71228753Smm	if (!assertMakeDir(target, 0775))
72228753Smm	    return;
73228753Smm
74228753Smm	/* Use the cpio program to create an archive. */
75299529Smm	r = systemf("%s -R 1000:1000 -o %s < filelist >%s/archive 2>%s/pack.err",
76228753Smm	    testprog, pack_options, target, target);
77228753Smm	failure("Error invoking %s -o %s", testprog, pack_options);
78228753Smm	assertEqualInt(r, 0);
79228753Smm
80228753Smm	assertChdir(target);
81228753Smm
82228753Smm	/* Verify stderr. */
83228753Smm	failure("Expected: %s, options=%s", se, pack_options);
84228753Smm	assertTextFileContents(se, "pack.err");
85228753Smm
86228753Smm	/*
87228753Smm	 * Use cpio to unpack the archive into another directory.
88228753Smm	 */
89228753Smm	r = systemf("%s -i %s< archive >unpack.out 2>unpack.err",
90228753Smm	    testprog, unpack_options);
91228753Smm	failure("Error invoking %s -i %s", testprog, unpack_options);
92228753Smm	assertEqualInt(r, 0);
93228753Smm
94228753Smm	/* Verify stderr. */
95228753Smm	failure("Error invoking %s -i %s in dir %s", testprog, unpack_options, target);
96232153Smm	assertTextFileContents(se2, "unpack.err");
97228753Smm
98228753Smm	verify_files(pack_options);
99228753Smm
100228753Smm	assertChdir("..");
101228753Smm}
102228753Smm
103228753Smmstatic void
104228753Smmpassthrough(const char *target)
105228753Smm{
106228753Smm	int r;
107228753Smm
108228753Smm	if (!assertMakeDir(target, 0775))
109228753Smm		return;
110228753Smm
111228753Smm	/*
112228753Smm	 * Use cpio passthrough mode to copy files to another directory.
113228753Smm	 */
114228753Smm	r = systemf("%s -p %s <filelist >%s/stdout 2>%s/stderr",
115228753Smm	    testprog, target, target, target);
116228753Smm	failure("Error invoking %s -p", testprog);
117228753Smm	assertEqualInt(r, 0);
118228753Smm
119228753Smm	assertChdir(target);
120228753Smm
121228753Smm	/* Verify stderr. */
122228753Smm	failure("Error invoking %s -p in dir %s",
123228753Smm	    testprog, target);
124228753Smm	assertTextFileContents("1 block\n", "stderr");
125228753Smm
126228753Smm	verify_files("passthrough");
127228753Smm	assertChdir("..");
128228753Smm}
129228753Smm
130228753SmmDEFINE_TEST(test_basic)
131228753Smm{
132228753Smm	FILE *filelist;
133228753Smm	const char *msg;
134232153Smm	char result[1024];
135228753Smm
136228753Smm	assertUmask(0);
137228753Smm
138228753Smm	/*
139228753Smm	 * Create an assortment of files on disk.
140228753Smm	 */
141228753Smm	filelist = fopen("filelist", "w");
142232153Smm	memset(result, 0, sizeof(result));
143228753Smm
144228753Smm	/* File with 10 bytes content. */
145228753Smm	assertMakeFile("file", 0644, "1234567890");
146228753Smm	fprintf(filelist, "file\n");
147338795Smm	if (is_LargeInode("file")) {
148232153Smm		strncat(result,
149338795Smm		    "bsdcpio: file: large inode number truncated: ",
150248616Smm		    sizeof(result) - strlen(result) -1);
151338795Smm		strncat(result,
152338795Smm		    strerror(ERANGE),
153338795Smm		    sizeof(result) - strlen(result) -1);
154338795Smm		strncat(result,
155338795Smm		    "\n",
156338795Smm		    sizeof(result) - strlen(result) -1);
157338795Smm	}
158228753Smm
159228753Smm	/* hardlink to above file. */
160228753Smm	assertMakeHardlink("linkfile", "file");
161228753Smm	fprintf(filelist, "linkfile\n");
162338795Smm	if (is_LargeInode("linkfile")) {
163232153Smm		strncat(result,
164338795Smm		    "bsdcpio: linkfile: large inode number truncated: ",
165248616Smm		    sizeof(result) - strlen(result) -1);
166338795Smm		strncat(result,
167338795Smm		    strerror(ERANGE),
168338795Smm		    sizeof(result) - strlen(result) -1);
169338795Smm		strncat(result,
170338795Smm		    "\n",
171338795Smm		    sizeof(result) - strlen(result) -1);
172338795Smm	}
173228753Smm
174228753Smm	/* Symlink to above file. */
175228753Smm	if (canSymlink()) {
176348607Smm		assertMakeSymlink("symlink", "file", 0);
177228753Smm		fprintf(filelist, "symlink\n");
178338795Smm		if (is_LargeInode("symlink")) {
179232153Smm			strncat(result,
180338795Smm			    "bsdcpio: symlink: large inode number truncated: ",
181248616Smm			    sizeof(result) - strlen(result) -1);
182338795Smm			strncat(result,
183338795Smm			    strerror(ERANGE),
184338795Smm			    sizeof(result) - strlen(result) -1);
185338795Smm			strncat(result,
186338795Smm			    "\n",
187338795Smm			    sizeof(result) - strlen(result) -1);
188338795Smm		}
189228753Smm	}
190228753Smm
191228753Smm	/* Another file with different permissions. */
192228753Smm	assertMakeFile("file2", 0777, "1234567890");
193228753Smm	fprintf(filelist, "file2\n");
194338795Smm	if (is_LargeInode("file2")) {
195232153Smm		strncat(result,
196338795Smm		    "bsdcpio: file2: large inode number truncated: ",
197248616Smm		    sizeof(result) - strlen(result) -1);
198338795Smm		strncat(result,
199338795Smm		    strerror(ERANGE),
200338795Smm		    sizeof(result) - strlen(result) -1);
201338795Smm		strncat(result,
202338795Smm		    "\n",
203338795Smm		    sizeof(result) - strlen(result) -1);
204338795Smm	}
205228753Smm
206228753Smm	/* Directory. */
207228753Smm	assertMakeDir("dir", 0775);
208228753Smm	fprintf(filelist, "dir\n");
209338795Smm	if (is_LargeInode("dir")) {
210232153Smm		strncat(result,
211338795Smm		    "bsdcpio: dir: large inode number truncated: ",
212248616Smm		    sizeof(result) - strlen(result) -1);
213338795Smm		strncat(result,
214338795Smm		    strerror(ERANGE),
215338795Smm		    sizeof(result) - strlen(result) -1);
216338795Smm		strncat(result,
217338795Smm		    "\n",
218338795Smm		    sizeof(result) - strlen(result) -1);
219338795Smm	}
220248616Smm	strncat(result, "2 blocks\n", sizeof(result) - strlen(result) -1);
221232153Smm
222228753Smm	/* All done. */
223228753Smm	fclose(filelist);
224228753Smm
225228753Smm	assertUmask(022);
226228753Smm
227228753Smm	/* Archive/dearchive with a variety of options. */
228228753Smm	msg = canSymlink() ? "2 blocks\n" : "1 block\n";
229232153Smm	basic_cpio("copy", "", "", msg, msg);
230232153Smm	basic_cpio("copy_odc", "--format=odc", "", msg, msg);
231232153Smm	basic_cpio("copy_newc", "-H newc", "", result, "2 blocks\n");
232232153Smm	basic_cpio("copy_cpio", "-H odc", "", msg, msg);
233370535Sgit2svn	msg = "1 block\n";
234370535Sgit2svn	basic_cpio("copy_bin", "-H bin", "", msg, msg);
235228753Smm	msg = canSymlink() ? "9 blocks\n" : "8 blocks\n";
236232153Smm	basic_cpio("copy_ustar", "-H ustar", "", msg, msg);
237228753Smm
238228753Smm	/* Copy in one step using -p */
239228753Smm	passthrough("passthrough");
240228753Smm}
241