| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 |  | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 29 | #pragma once | 
|  | 30 |  | 
|  | 31 | /** | 
|  | 32 | * @file tar.h | 
|  | 33 | * @brief Constants for reading/writing `.tar` files. | 
|  | 34 | */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 35 |  | 
|  | 36 | #include <sys/cdefs.h> | 
|  | 37 |  | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 38 | /** `.tar` file magic. (Includes the NUL.) */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 39 | #define TMAGIC "ustar" | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 40 | /** `.tar` file magic length in bytes. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 41 | #define TMAGLEN 6 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 42 | /** `.tar` file version. (Does not include the NUL.) */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 43 | #define TVERSION "00" | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 44 | /** `.tar` file version length in bytes. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 45 | #define TVERSLEN 2 | 
|  | 46 |  | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 47 | /** Regular file type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 48 | #define REGTYPE '0' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 49 | /** Alternate regular file type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 50 | #define AREGTYPE '\0' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 51 | /** Link type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 52 | #define LNKTYPE '1' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 53 | /** Symbolic link type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 54 | #define SYMTYPE '2' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 55 | /** Character special file type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 56 | #define CHRTYPE '3' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 57 | /** Block special file type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 58 | #define BLKTYPE '4' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 59 | /** Directory type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 60 | #define DIRTYPE '5' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 61 | /** FIFO special file type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 62 | #define FIFOTYPE '6' | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 63 | /** Reserved type flag. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 64 | #define CONTTYPE '7' | 
|  | 65 |  | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 66 | /** Set-UID mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 67 | #define TSUID 04000 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 68 | /** Set-GID mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 69 | #define TSGID 02000 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 70 | /** Directory restricted deletion mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 71 | #define TSVTX 01000 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 72 | /** Readable by user mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 73 | #define TUREAD 00400 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 74 | /** Writable by user mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 75 | #define TUWRITE 00200 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 76 | /** Executable by user mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 77 | #define TUEXEC 00100 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 78 | /** Readable by group mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 79 | #define TGREAD 00040 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 80 | /** Writable by group mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 81 | #define TGWRITE 00020 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 82 | /** Executable by group mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 83 | #define TGEXEC 00010 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 84 | /** Readable by other mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 85 | #define TOREAD 00004 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 86 | /** Writable by other mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 87 | #define TOWRITE 00002 | 
| Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 88 | /** Executable by other mode field bit. */ | 
| Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 89 | #define TOEXEC 00001 |