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 cpio.h |
| 33 | * @brief Constants for reading/writing cpio 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 | /** Readable by user mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 39 | #define C_IRUSR 0000400 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 40 | /** Writable by user mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 41 | #define C_IWUSR 0000200 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 42 | /** Executable by user mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 43 | #define C_IXUSR 0000100 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 44 | /** Readable by group mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 45 | #define C_IRGRP 0000040 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 46 | /** Writable by group mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 47 | #define C_IWGRP 0000020 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 48 | /** Executable by group mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 49 | #define C_IXGRP 0000010 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 50 | /** Readable by other mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 51 | #define C_IROTH 0000004 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 52 | /** Writable by other mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 53 | #define C_IWOTH 0000002 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 54 | /** Executable by other mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 55 | #define C_IXOTH 0000001 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 56 | /** Set-UID mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 57 | #define C_ISUID 0004000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 58 | /** Set-GID mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 59 | #define C_ISGID 0002000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 60 | /** Directory restricted deletion mode field bit. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 61 | #define C_ISVTX 0001000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 62 | /** Directory mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 63 | #define C_ISDIR 0040000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 64 | /** FIFO mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 65 | #define C_ISFIFO 0010000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 66 | /** Regular file mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 67 | #define C_ISREG 0100000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 68 | /** Block special file mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 69 | #define C_ISBLK 0060000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 70 | /** Character special file mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 71 | #define C_ISCHR 0020000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 72 | /** Reserved. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 73 | #define C_ISCTG 0110000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 74 | /** Symbolic link mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 75 | #define C_ISLNK 0120000 |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 76 | /** Socket mode field type. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 77 | #define C_ISSOCK 0140000 |
| 78 | |
Elliott Hughes | 462e90c | 2018-08-21 16:10:48 -0700 | [diff] [blame] | 79 | /** cpio file magic. */ |
Elliott Hughes | 48bfc6e | 2016-08-12 09:28:17 -0700 | [diff] [blame] | 80 | #define MAGIC "070707" |