blob: a5d7a36cd2b17c0d7e3cd8d0f3f5ec79f48430cf [file] [log] [blame]
Elliott Hughes48bfc6e2016-08-12 09:28:17 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#ifndef _TAR_H_
30#define _TAR_H_
31
32#include <sys/cdefs.h>
33
34#define TMAGIC "ustar"
35#define TMAGLEN 6
36#define TVERSION "00"
37#define TVERSLEN 2
38
39#define REGTYPE '0'
40#define AREGTYPE '\0'
41#define LNKTYPE '1'
42#define SYMTYPE '2'
43#define CHRTYPE '3'
44#define BLKTYPE '4'
45#define DIRTYPE '5'
46#define FIFOTYPE '6'
47#define CONTTYPE '7'
48
49#define TSUID 04000
50#define TSGID 02000
51#define TSVTX 01000
52#define TUREAD 00400
53#define TUWRITE 00200
54#define TUEXEC 00100
55#define TGREAD 00040
56#define TGWRITE 00020
57#define TGEXEC 00010
58#define TOREAD 00004
59#define TOWRITE 00002
60#define TOEXEC 00001
61
62#endif /* _TAR_H_ */