2004-05-11 21:12:26 +04:00
|
|
|
/* $NetBSD: options.h,v 1.10 2004/05/11 17:12:26 christos Exp $ */
|
1995-03-21 12:01:59 +03:00
|
|
|
|
1994-06-13 20:13:35 +04:00
|
|
|
/*-
|
2003-10-13 11:41:22 +04:00
|
|
|
* Copyright (c) 1992 Keith Muller.
|
1994-06-13 20:13:35 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Keith Muller of the University of California, San Diego.
|
2003-08-07 13:05:01 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
1994-06-13 20:13:35 +04:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1995-03-21 12:01:59 +03:00
|
|
|
* @(#)options.h 8.2 (Berkeley) 4/18/94
|
1994-06-13 20:13:35 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* argv[0] names. Used for tar and cpio emulation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NM_TAR "tar"
|
|
|
|
#define NM_CPIO "cpio"
|
|
|
|
#define NM_PAX "pax"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Constants used to specify the legal sets of flags in pax. For each major
|
|
|
|
* operation mode of pax, a set of illegal flags is defined. If any one of
|
|
|
|
* those illegal flags are found set, we scream and exit
|
|
|
|
*/
|
2004-05-11 21:12:26 +04:00
|
|
|
#define none "none"
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* flags (one for each option).
|
|
|
|
*/
|
|
|
|
#define AF 0x00000001
|
|
|
|
#define BF 0x00000002
|
|
|
|
#define CF 0x00000004
|
|
|
|
#define DF 0x00000008
|
|
|
|
#define FF 0x00000010
|
|
|
|
#define IF 0x00000020
|
|
|
|
#define KF 0x00000040
|
|
|
|
#define LF 0x00000080
|
|
|
|
#define NF 0x00000100
|
|
|
|
#define OF 0x00000200
|
|
|
|
#define PF 0x00000400
|
|
|
|
#define RF 0x00000800
|
|
|
|
#define SF 0x00001000
|
|
|
|
#define TF 0x00002000
|
|
|
|
#define UF 0x00004000
|
|
|
|
#define VF 0x00008000
|
|
|
|
#define WF 0x00010000
|
|
|
|
#define XF 0x00020000
|
1999-08-24 11:57:06 +04:00
|
|
|
#define CAF 0x00040000 /* nonstandard extension */
|
|
|
|
#define CBF 0x00080000 /* nonstandard extension */
|
|
|
|
#define CDF 0x00100000 /* nonstandard extension */
|
|
|
|
#define CEF 0x00200000 /* nonstandard extension */
|
|
|
|
#define CGF 0x00400000 /* nonstandard extension */
|
|
|
|
#define CHF 0x00800000 /* nonstandard extension */
|
|
|
|
#define CLF 0x01000000 /* nonstandard extension */
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
#define CMF 0x02000000 /* nonstandard extension */
|
|
|
|
#define CPF 0x04000000 /* nonstandard extension */
|
|
|
|
#define CTF 0x08000000 /* nonstandard extension */
|
|
|
|
#define CUF 0x10000000 /* nonstandard extension */
|
|
|
|
#define CXF 0x20000000
|
|
|
|
#define CYF 0x40000000 /* nonstandard extension */
|
|
|
|
#define CZF 0x80000000 /* nonstandard extension */
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ascii string indexed by bit position above (alter the above and you must
|
|
|
|
* alter this string) used to tell the user what flags caused us to complain
|
|
|
|
*/
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
#define FLGCH "abcdfiklnoprstuvwxABDEGHLMPTUXYZ"
|
1994-06-13 20:13:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* legal pax operation bit patterns
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ISLIST(x) (((x) & (RF|WF)) == 0)
|
|
|
|
#define ISEXTRACT(x) (((x) & (RF|WF)) == RF)
|
|
|
|
#define ISARCHIVE(x) (((x) & (AF|RF|WF)) == WF)
|
|
|
|
#define ISAPPND(x) (((x) & (AF|RF|WF)) == (AF|WF))
|
|
|
|
#define ISCOPY(x) (((x) & (RF|WF)) == (RF|WF))
|
|
|
|
#define ISWRITE(x) (((x) & (RF|WF)) == WF)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Illegal option flag subsets based on pax operation
|
|
|
|
*/
|
|
|
|
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
#define BDEXTR (AF|BF|LF|TF|WF|XF|CBF|CHF|CLF|CMF|CPF|CXF)
|
1999-11-01 20:13:27 +03:00
|
|
|
#define BDARCH (CF|KF|LF|NF|PF|RF|CDF|CEF|CYF|CZF)
|
|
|
|
#define BDCOPY (AF|BF|FF|OF|XF|CAF|CBF|CEF)
|
Implement -M flag: During a write or copy operation, treat the list of
files on standard input as an mtree(8) `specfile' specification, and
write or copy only those items in the specfile.
If the file exists in the underlying file system, its permissions and
modification time will be used unless specifically overridden by the
specfile. An error will be raised if the type of entry in the specfile
conflicts with that of an existing file.
Otherwise, it is necessary to specify at least the following parameters
in the specfile: type, mode, gname or gid, and uname or uid, device
(in the case of block or character devices), and link (in the case of
symbolic links). If time isn't provided, the current time will be used.
2001-10-25 12:51:50 +04:00
|
|
|
#define BDLIST (AF|BF|IF|KF|LF|OF|PF|RF|TF|UF|WF|XF|CBF|CDF|CHF|CLF|CMF|CPF|CXF|CYF|CZF)
|