blob: c2c20c243066d3dba41fde46c86e146dc38df7da [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 cpio.h
33 * @brief Constants for reading/writing cpio files.
34 */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070035
36#include <sys/cdefs.h>
37
Elliott Hughes462e90c2018-08-21 16:10:48 -070038/** Readable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070039#define C_IRUSR 0000400
Elliott Hughes462e90c2018-08-21 16:10:48 -070040/** Writable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070041#define C_IWUSR 0000200
Elliott Hughes462e90c2018-08-21 16:10:48 -070042/** Executable by user mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070043#define C_IXUSR 0000100
Elliott Hughes462e90c2018-08-21 16:10:48 -070044/** Readable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070045#define C_IRGRP 0000040
Elliott Hughes462e90c2018-08-21 16:10:48 -070046/** Writable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070047#define C_IWGRP 0000020
Elliott Hughes462e90c2018-08-21 16:10:48 -070048/** Executable by group mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070049#define C_IXGRP 0000010
Elliott Hughes462e90c2018-08-21 16:10:48 -070050/** Readable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070051#define C_IROTH 0000004
Elliott Hughes462e90c2018-08-21 16:10:48 -070052/** Writable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070053#define C_IWOTH 0000002
Elliott Hughes462e90c2018-08-21 16:10:48 -070054/** Executable by other mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070055#define C_IXOTH 0000001
Elliott Hughes462e90c2018-08-21 16:10:48 -070056/** Set-UID mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070057#define C_ISUID 0004000
Elliott Hughes462e90c2018-08-21 16:10:48 -070058/** Set-GID mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070059#define C_ISGID 0002000
Elliott Hughes462e90c2018-08-21 16:10:48 -070060/** Directory restricted deletion mode field bit. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070061#define C_ISVTX 0001000
Elliott Hughes462e90c2018-08-21 16:10:48 -070062/** Directory mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070063#define C_ISDIR 0040000
Elliott Hughes462e90c2018-08-21 16:10:48 -070064/** FIFO mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070065#define C_ISFIFO 0010000
Elliott Hughes462e90c2018-08-21 16:10:48 -070066/** Regular file mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070067#define C_ISREG 0100000
Elliott Hughes462e90c2018-08-21 16:10:48 -070068/** Block special file mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070069#define C_ISBLK 0060000
Elliott Hughes462e90c2018-08-21 16:10:48 -070070/** Character special file mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070071#define C_ISCHR 0020000
Elliott Hughes462e90c2018-08-21 16:10:48 -070072/** Reserved. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070073#define C_ISCTG 0110000
Elliott Hughes462e90c2018-08-21 16:10:48 -070074/** Symbolic link mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070075#define C_ISLNK 0120000
Elliott Hughes462e90c2018-08-21 16:10:48 -070076/** Socket mode field type. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070077#define C_ISSOCK 0140000
78
Elliott Hughes462e90c2018-08-21 16:10:48 -070079/** cpio file magic. */
Elliott Hughes48bfc6e2016-08-12 09:28:17 -070080#define MAGIC "070707"