blob: 9d0c3ba487fc0958cd2a4dee5351849df41cdc47 [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
Elliott Hughes462e90c2018-08-21 16:10:48 -070029#pragma once
30
31/**
32 * @file tar.h
33 * @brief Constants for reading/writing `.tar` files.
34 */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070035
36#include <sys/cdefs.h>
37
Elliott Hughes462e90c2018-08-21 16:10:48 -070038/** `.tar` file magic. (Includes the NUL.) */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070039#define TMAGIC "ustar"
Elliott Hughes462e90c2018-08-21 16:10:48 -070040/** `.tar` file magic length in bytes. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070041#define TMAGLEN 6
Elliott Hughes462e90c2018-08-21 16:10:48 -070042/** `.tar` file version. (Does not include the NUL.) */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070043#define TVERSION "00"
Elliott Hughes462e90c2018-08-21 16:10:48 -070044/** `.tar` file version length in bytes. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070045#define TVERSLEN 2
46
Elliott Hughes462e90c2018-08-21 16:10:48 -070047/** Regular file type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070048#define REGTYPE '0'
Elliott Hughes462e90c2018-08-21 16:10:48 -070049/** Alternate regular file type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070050#define AREGTYPE '\0'
Elliott Hughes462e90c2018-08-21 16:10:48 -070051/** Link type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070052#define LNKTYPE '1'
Elliott Hughes462e90c2018-08-21 16:10:48 -070053/** Symbolic link type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070054#define SYMTYPE '2'
Elliott Hughes462e90c2018-08-21 16:10:48 -070055/** Character special file type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070056#define CHRTYPE '3'
Elliott Hughes462e90c2018-08-21 16:10:48 -070057/** Block special file type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070058#define BLKTYPE '4'
Elliott Hughes462e90c2018-08-21 16:10:48 -070059/** Directory type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070060#define DIRTYPE '5'
Elliott Hughes462e90c2018-08-21 16:10:48 -070061/** FIFO special file type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070062#define FIFOTYPE '6'
Elliott Hughes462e90c2018-08-21 16:10:48 -070063/** Reserved type flag. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070064#define CONTTYPE '7'
65
Elliott Hughes462e90c2018-08-21 16:10:48 -070066/** Set-UID mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070067#define TSUID 04000
Elliott Hughes462e90c2018-08-21 16:10:48 -070068/** Set-GID mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070069#define TSGID 02000
Elliott Hughes462e90c2018-08-21 16:10:48 -070070/** Directory restricted deletion mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070071#define TSVTX 01000
Elliott Hughes462e90c2018-08-21 16:10:48 -070072/** Readable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070073#define TUREAD 00400
Elliott Hughes462e90c2018-08-21 16:10:48 -070074/** Writable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070075#define TUWRITE 00200
Elliott Hughes462e90c2018-08-21 16:10:48 -070076/** Executable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070077#define TUEXEC 00100
Elliott Hughes462e90c2018-08-21 16:10:48 -070078/** Readable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070079#define TGREAD 00040
Elliott Hughes462e90c2018-08-21 16:10:48 -070080/** Writable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070081#define TGWRITE 00020
Elliott Hughes462e90c2018-08-21 16:10:48 -070082/** Executable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070083#define TGEXEC 00010
Elliott Hughes462e90c2018-08-21 16:10:48 -070084/** Readable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070085#define TOREAD 00004
Elliott Hughes462e90c2018-08-21 16:10:48 -070086/** Writable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070087#define TOWRITE 00002
Elliott Hughes462e90c2018-08-21 16:10:48 -070088/** Executable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070089#define TOEXEC 00001