cpio applet, and changes to associated code
[platform/upstream/busybox.git] / archival / cpio.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini cpio implementation for busybox
4  *
5  * Copyright (C) 2001 by Glenn McGrath 
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20  *
21  * Limitations:
22  *              Doesn't check CRC's
23  *              Only supports new ASCII and CRC formats
24  *              Doesnt support hard links
25  *
26  */
27 #include <fcntl.h>
28 #include <getopt.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <unistd.h>
32 #include "busybox.h"
33
34 extern int cpio_main(int argc, char **argv)
35 {
36         FILE *src_stream = stdin;
37         char **extract_names = NULL;
38         int extract_function = 0;
39         int num_of_entries = 0;
40         int opt = 0;
41         mode_t oldmask = 0;
42
43         while ((opt = getopt(argc, argv, "idmuvtF:")) != -1) {
44                 switch (opt) {
45                 case 'i': // extract
46                         extract_function |= extract_all_to_fs;
47                         break;
48                 case 'd': // create directories
49                         extract_function |= extract_create_dirs;
50                         oldmask = umask(077); /* Make create_path act like GNU cpio */
51                         break;
52                 case 'm': // preserve modification time
53                         extract_function |= extract_preserve_date;
54                         break;
55                 case 'v': // verbosly list files
56                         extract_function |= extract_verbose_list;
57                         break;
58                 case 'u': // unconditional
59                         extract_function |= extract_unconditional;
60                         break;
61                 case 't': // list files
62                         extract_function |= extract_list;
63                         break;
64                 case 'F':
65                         src_stream = xfopen(optarg, "r");
66                         break;
67                 default:
68                         show_usage();
69                 }
70         }
71
72         if (extract_function & extract_all_to_fs && extract_function & extract_list) {
73                 extract_function ^= extract_all_to_fs; /* If specify t, don't extract*/
74         }
75
76         if (extract_function & extract_all_to_fs && extract_function & extract_verbose_list) { /* The meaning of v changes on extract */
77                 extract_function ^= extract_verbose_list;
78                 extract_function |= extract_list;
79         }
80
81         extract_names = malloc(4);
82         while (optind < argc) {
83                 num_of_entries++;
84                 *extract_names = realloc(*extract_names, num_of_entries);
85                 extract_names[num_of_entries - 1] = xstrdup(argv[optind]);
86                 optind++;
87         }
88
89         unarchive(src_stream, &get_header_cpio, extract_function, "./", extract_names);
90         if (oldmask) umask(oldmask); /* Restore umask if we changed it */
91         return EXIT_SUCCESS;
92 }
93