This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / gnu / usr.bin / cpio / global.c
CommitLineData
78ed81a3 1/* global.c - global variables and initial values for cpio.
2 Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
17
18#include <sys/types.h>
19#include "cpiohdr.h"
20#include "dstring.h"
21#include "system.h"
22#include "extern.h"
23
24/* If TRUE, reset access times after reading files (-a). */
25int reset_time_flag = FALSE;
26
27/* Block size value, initially 512. -B sets to 5120. */
28int io_block_size = 512;
29
30/* The header format to recognize and produce. */
31enum archive_format archive_format = arf_unknown;
32
33/* If TRUE, create directories as needed. (-d with -i or -p) */
34int create_dir_flag = FALSE;
35
36/* If TRUE, interactively rename files. (-r) */
37int rename_flag = FALSE;
38
39/* If TRUE, print a table of contents of input. (-t) */
40int table_flag = FALSE;
41
42/* If TRUE, copy unconditionally (older replaces newer). (-u) */
43int unconditional_flag = FALSE;
44
45/* If TRUE, list the files processed, or ls -l style output with -t. (-v) */
46int verbose_flag = FALSE;
47
48/* If TRUE, print a . for each file processed. (-V) */
49int dot_flag = FALSE;
50
51/* If TRUE, link files whenever possible. Used with -p option. (-l) */
52int link_flag = FALSE;
53
54/* If TRUE, retain previous file modification time. (-m) */
55int retain_time_flag = FALSE;
56
57/* Set TRUE if crc_flag is TRUE and we are doing a cpio -i. Used
58 by copy_files so it knows whether to compute the crc. */
59int crc_i_flag = FALSE;
60
61/* If TRUE, append to end of archive. (-A) */
62int append_flag = FALSE;
63
64/* If TRUE, swap bytes of each file during cpio -i. */
65int swap_bytes_flag = FALSE;
66
67/* If TRUE, swap halfwords of each file during cpio -i. */
68int swap_halfwords_flag = FALSE;
69
70/* If TRUE, we are swapping halfwords on the current file. */
71int swapping_halfwords = FALSE;
72
73/* If TRUE, we are swapping bytes on the current file. */
74int swapping_bytes = FALSE;
75
76/* If TRUE, set ownership of all files to UID `set_owner'. */
77int set_owner_flag = FALSE;
78uid_t set_owner;
79
80/* If TRUE, set group ownership of all files to GID `set_group'. */
81int set_group_flag = FALSE;
82gid_t set_group;
83
84/* If TRUE, do not chown the files. */
85int no_chown_flag = FALSE;
86
87#ifdef DEBUG_CPIO
88/* If TRUE, print debugging information. */
89int debug_flag = FALSE;
90#endif
91
92/* File position of last header read. Only used during -A to determine
93 where the old TRAILER!!! record started. */
94int last_header_start = 0;
95
96/* With -i; if TRUE, copy only files that match any of the given patterns;
97 if FALSE, copy only files that do not match any of the patterns. (-f) */
98int copy_matching_files = TRUE;
99
100/* With -itv; if TRUE, list numeric uid and gid instead of translating them
101 into names. */
102int numeric_uid = FALSE;
103
104/* Name of file containing additional patterns (-E). */
105char *pattern_file_name = NULL;
106
107/* Message to print when end of medium is reached (-M). */
108char *new_media_message = NULL;
109
110/* With -M with %d, message to print when end of medium is reached. */
111char *new_media_message_with_number = NULL;
112char *new_media_message_after_number = NULL;
113
114/* File descriptor containing the archive. */
115int archive_des;
116
117/* Name of file containing the archive, if known; NULL if stdin/out. */
118char *archive_name = NULL;
119
120/* CRC checksum. */
121unsigned long crc;
122
123/* Input and output buffers. */
124char *input_buffer, *output_buffer;
125
126/* Current locations in `input_buffer' and `output_buffer'. */
127char *in_buff, *out_buff;
128
129/* Current number of bytes stored at `input_buff' and `output_buff'. */
130long input_size, output_size;
131
132/* Total number of bytes read and written for all files. */
133long input_bytes, output_bytes;
134
135/* 512 bytes of 0; used for various padding operations. */
136char zeros_512[512];
137
138/* Saving of argument values for later reference. */
139char *directory_name = NULL;
140char **save_patterns;
141int num_patterns;
142
143/* Character that terminates file names read from stdin. */
144char name_end = '\n';
145
146/* TRUE if input (cpio -i) or output (cpio -o) is a device node. */
147char input_is_special = FALSE;
148char output_is_special = FALSE;
149
150/* TRUE if lseek works on the input. */
151char input_is_seekable = FALSE;
152
153/* TRUE if lseek works on the output. */
154char output_is_seekable = FALSE;
155
156/* If nonzero, don't consider file names that contain a `:' to be
157 on remote hosts; all files are local. */
158int f_force_local = 0;
159
160/* The name this program was run with. */
161char *program_name;
162
163/* A pointer to either lstat or stat, depending on whether
164 dereferencing of symlinks is done for input files. */
165int (*xstat) ();
166
167/* Which copy operation to perform. (-i, -o, -p) */
168void (*copy_function) () = 0;