VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/zip/cpiovfsreader.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
Line 
1/* $Id: cpiovfsreader.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT - CPIO Virtual Filesystem.
4 */
5
6/*
7 * Copyright (C) 2020-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37#ifndef IPRT_INCLUDED_SRC_common_zip_cpiovfsreader_h
38#define IPRT_INCLUDED_SRC_common_zip_cpiovfsreader_h
39#ifndef RT_WITHOUT_PRAGMA_ONCE
40# pragma once
41#endif
42
43#include <iprt/formats/cpio.h>
44
45
46/**
47 * CPIO archive type.
48 */
49typedef enum RTZIPCPIOTYPE
50{
51 /** Invalid type value. */
52 RTZIPCPIOTYPE_INVALID = 0,
53 /** Ancient binary archive. */
54 RTZIPCPIOTYPE_ANCIENT_BIN,
55 /** Portable ASCII format as defined by SuSV2. */
56 RTZIPCPIOTYPE_ASCII_SUSV2,
57 /** "New" ASCII format. */
58 RTZIPCPIOTYPE_ASCII_NEW,
59 /** "New" ASCII format with checksumming. */
60 RTZIPCPIOTYPE_ASCII_NEW_CHKSUM,
61 /** End of the valid type values (this is not valid). */
62 RTZIPCPIOTYPE_END,
63 /** The usual type blow up. */
64 RTZIPCPIOTYPE_32BIT_HACK = 0x7fffffff
65} RTZIPCPIOTYPE;
66typedef RTZIPCPIOTYPE *PRTZIPCPIOTYPE;
67
68
69/**
70 * CPIO reader instance data.
71 */
72typedef struct RTZIPCPIOREADER
73{
74 /** The object info with unix attributes. */
75 RTFSOBJINFO ObjInfo;
76 /** The path length. */
77 uint32_t cbPath;
78 /** The name of the current object. */
79 char szName[RTPATH_MAX];
80 /** The current link target if symlink. */
81 char szTarget[RTPATH_MAX];
82} RTZIPCPIOREADER;
83/** Pointer to the CPIO reader instance data. */
84typedef RTZIPCPIOREADER *PRTZIPCPIOREADER;
85
86/**
87 * CPIO directory, character device, block device, fifo socket or symbolic link.
88 */
89typedef struct RTZIPCPIOBASEOBJ
90{
91 /** The stream offset of the (first) header in the input stream/file. */
92 RTFOFF offHdr;
93 /** The stream offset of the first header of the next object (for truncating the
94 * tar file after this object (updating)). */
95 RTFOFF offNextHdr;
96 /** Pointer to the reader instance data (resides in the filesystem
97 * stream).
98 * @todo Fix this so it won't go stale... Back ref from this obj to fss? */
99 PRTZIPCPIOREADER pCpioReader;
100 /** The object info with unix attributes. */
101 RTFSOBJINFO ObjInfo;
102} RTZIPCPIOBASEOBJ;
103/** Pointer to a CPIO filesystem stream base object. */
104typedef RTZIPCPIOBASEOBJ *PRTZIPCPIOBASEOBJ;
105
106
107/**
108 * CPIO file represented as a VFS I/O stream.
109 */
110typedef struct RTZIPCPIOIOSTREAM
111{
112 /** The basic TAR object data. */
113 RTZIPCPIOBASEOBJ BaseObj;
114 /** The number of bytes in the file. */
115 RTFOFF cbFile;
116 /** The current file position. */
117 RTFOFF offFile;
118 /** The start position in the hVfsIos (for seekable hVfsIos). */
119 RTFOFF offStart;
120 /** The number of padding bytes following the file. */
121 uint32_t cbPadding;
122 /** Set if we've reached the end of this file. */
123 bool fEndOfStream;
124 /** The input I/O stream. */
125 RTVFSIOSTREAM hVfsIos;
126} RTZIPCPIOIOSTREAM;
127/** Pointer to a the private data of a CPIO file I/O stream. */
128typedef RTZIPCPIOIOSTREAM *PRTZIPCPIOIOSTREAM;
129
130
131/**
132 * CPIO filesystem stream private data.
133 */
134typedef struct RTZIPCPIOFSSTREAM
135{
136 /** The input I/O stream. */
137 RTVFSIOSTREAM hVfsIos;
138
139 /** The current object (referenced). */
140 RTVFSOBJ hVfsCurObj;
141 /** Pointer to the private data if hVfsCurObj is representing a file. */
142 PRTZIPCPIOIOSTREAM pCurIosData;
143
144 /** The start offset. */
145 RTFOFF offStart;
146 /** The offset of the next header. */
147 RTFOFF offNextHdr;
148 /** The offset of the first header for the current object.
149 * When reaching the end, this will be the same as offNextHdr which will be
150 * pointing to the first zero header */
151 RTFOFF offCurHdr;
152
153 /** Set if we've reached the end of the stream. */
154 bool fEndOfStream;
155 /** Set if we've encountered a fatal error. */
156 int rcFatal;
157
158 /** The CPIO reader instance data. */
159 RTZIPCPIOREADER CpioReader;
160} RTZIPCPIOFSSTREAM;
161/** Pointer to a the private data of a CPIO filesystem stream. */
162typedef RTZIPCPIOFSSTREAM *PRTZIPCPIOFSSTREAM;
163
164DECLHIDDEN(void) rtZipCpioReaderInit(PRTZIPCPIOFSSTREAM pThis, RTVFSIOSTREAM hVfsIos, uint64_t offStart);
165DECL_HIDDEN_CALLBACK(int) rtZipCpioFss_Next(void *pvThis, char **ppszName, RTVFSOBJTYPE *penmType, PRTVFSOBJ phVfsObj);
166DECLHIDDEN(PRTZIPCPIOBASEOBJ) rtZipCpioFsStreamBaseObjToPrivate(PRTZIPCPIOFSSTREAM pThis, RTVFSOBJ hVfsObj);
167
168#endif /* !IPRT_INCLUDED_SRC_common_zip_cpiovfsreader_h */
169
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use