VirtualBox

source: vbox/trunk/include/iprt/manifest.h@ 39667

Last change on this file since 39667 was 36555, checked in by vboxsync, 14 years ago

Use DECLHIDDEN, especially in IPRT.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 17.2 KB
Line 
1/** @file
2 * IPRT - Manifest file handling.
3 */
4
5/*
6 * Copyright (C) 2009 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_manifest_h
27#define ___iprt_manifest_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_manifest RTManifest - Manifest file creation and checking
35 * @ingroup grp_rt
36 * @{
37 */
38
39/** @name Manifest attribute types.
40 * The types can be ORed together to form a set.
41 * @{ */
42/** For use with other attributes. Representation unknown. */
43#define RTMANIFEST_ATTR_UNKNOWN 0
44/** The size of the content. Represented as a decimal number. */
45#define RTMANIFEST_ATTR_SIZE RT_BIT_32(0)
46/** The MD5 of the content. Represented as a hex string. */
47#define RTMANIFEST_ATTR_MD5 RT_BIT_32(1)
48/** The SHA-1 of the content. Represented as a hex string. */
49#define RTMANIFEST_ATTR_SHA1 RT_BIT_32(2)
50/** The SHA-256 of the content. Represented as a hex string. */
51#define RTMANIFEST_ATTR_SHA256 RT_BIT_32(3)
52/** The SHA-512 of the content. Represented as a hex string. */
53#define RTMANIFEST_ATTR_SHA512 RT_BIT_32(4)
54/** The end of the valid values. */
55#define RTMANIFEST_ATTR_END RT_BIT_32(5)
56/** @} */
57
58
59/**
60 * Creates an empty manifest.
61 *
62 * @returns IPRT status code.
63 * @param fFlags Flags, MBZ.
64 * @param phManifest Where to return the handle to the manifest.
65 */
66RTDECL(int) RTManifestCreate(uint32_t fFlags, PRTMANIFEST phManifest);
67
68/**
69 * Retains a reference to the manifest handle.
70 *
71 * @returns The new reference count, UINT32_MAX if the handle is invalid.
72 * @param hManifest The handle to retain.
73 */
74RTDECL(uint32_t) RTManifestRetain(RTMANIFEST hManifest);
75
76/**
77 * Releases a reference to the manifest handle.
78 *
79 * @returns The new reference count, 0 if free. UINT32_MAX is returned if the
80 * handle is invalid.
81 * @param hManifest The handle to release.
82 * NIL is quietly ignored (returns 0).
83 */
84RTDECL(uint32_t) RTManifestRelease(RTMANIFEST hManifest);
85
86/**
87 * Creates a duplicate of the specified manifest.
88 *
89 * @returns IPRT status code
90 * @param hManifestSrc The manifest to clone.
91 * @param phManifestDst Where to store the handle to the duplicate.
92 */
93RTDECL(int) RTManifestDup(RTMANIFEST hManifestSrc, PRTMANIFEST phManifestDst);
94
95/**
96 * Compares two manifests for equality.
97 *
98 * @returns IPRT status code.
99 * @retval VINF_SUCCESS if equal.
100 * @retval VERR_NOT_EQUAL if not equal.
101 *
102 * @param hManifest1 The first manifest.
103 * @param hManifest2 The second manifest.
104 * @param papszIgnoreEntries Entries to ignore. Ends with a NULL entry.
105 * @param papszIgnoreAttrs Attributes to ignore. Ends with a NULL entry.
106 * @param fFlags A combination of RTMANIFEST_EQUALS_XXX values.
107 * @param pszError Where to store the name of the mismatching
108 * entry, or as much of the name as there is room
109 * for. This is always set. Optional.
110 * @param cbError The size of the buffer pointed to by @a
111 * pszError.
112 */
113RTDECL(int) RTManifestEqualsEx(RTMANIFEST hManifest1, RTMANIFEST hManifest2, const char * const *papszIgnoreEntries,
114 const char * const *papszIgnoreAttr, uint32_t fFlags, char *pszError, size_t cbError);
115
116/** @defgroup RTMANIFEST_EQUALS_XXX RTManifestEqualsEx flags
117 * @{ */
118/** Ignore missing attributes if there is one or more to compare. */
119#define RTMANIFEST_EQUALS_IGN_MISSING_ATTRS RT_BIT_32(0)
120/** Ignore attributes missing in the 1st manifest.
121 * @todo implement this */
122#define RTMANIFEST_EQUALS_IGN_MISSING_ATTRS_1ST RT_BIT_32(1)
123/** Mask of valid flags. */
124#define RTMANIFEST_EQUALS_VALID_MASK UINT32_C(0x00000003)
125/** @} */
126
127/**
128 * Compares two manifests for equality.
129 *
130 * @returns IPRT status code.
131 * @retval VINF_SUCCESS if equal.
132 * @retval VERR_NOT_EQUAL if not equal.
133 *
134 * @param hManifest1 The first manifest.
135 * @param hManifest2 The second manifest.
136 */
137RTDECL(int) RTManifestEquals(RTMANIFEST hManifest1, RTMANIFEST hManifest2);
138
139/**
140 * Sets a manifest attribute.
141 *
142 * @returns IPRT status code.
143 * @param hManifest The manifest handle.
144 * @param pszAttr The attribute name. If this already exists,
145 * its value will be replaced.
146 * @param pszValue The value string.
147 * @param fType The attribute type, pass
148 * RTMANIFEST_ATTR_UNKNOWN if not known.
149 */
150RTDECL(int) RTManifestSetAttr(RTMANIFEST hManifest, const char *pszAttr, const char *pszValue, uint32_t fType);
151
152/**
153 * Unsets (removes) a manifest attribute if it exists.
154 *
155 * @returns IPRT status code.
156 * @retval VWRN_NOT_FOUND if not found.
157 *
158 * @param hManifest The manifest handle.
159 * @param pszAttr The attribute name.
160 */
161RTDECL(int) RTManifestUnsetAttr(RTMANIFEST hManifest, const char *pszAttr);
162
163/**
164 * Sets an attribute of a manifest entry.
165 *
166 * @returns IPRT status code.
167 * @param hManifest The manifest handle.
168 * @param pszEntry The entry name. This will automatically be
169 * added if there was no previous call to
170 * RTManifestEntryAdd for this name. See
171 * RTManifestEntryAdd for the entry name rules.
172 * @param pszAttr The attribute name. If this already exists,
173 * its value will be replaced.
174 * @param pszValue The value string.
175 * @param fType The attribute type, pass
176 * RTMANIFEST_ATTR_UNKNOWN if not known.
177 */
178RTDECL(int) RTManifestEntrySetAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr,
179 const char *pszValue, uint32_t fType);
180
181/**
182 * Unsets (removes) an attribute of a manifest entry if they both exist.
183 *
184 * @returns IPRT status code.
185 * @retval VWRN_NOT_FOUND if not found.
186 *
187 * @param hManifest The manifest handle.
188 * @param pszEntry The entry name.
189 * @param pszAttr The attribute name.
190 */
191RTDECL(int) RTManifestEntryUnsetAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr);
192
193/**
194 * Adds a new entry to a manifest.
195 *
196 * The entry name rules:
197 * - The entry name can contain any character defined by unicode, except
198 * control characters, ':', '(' and ')'. The exceptions are mainly there
199 * because of uncertainty around how various formats handles these.
200 * - It is considered case sensitive.
201 * - Forward (unix) and backward (dos) slashes are considered path
202 * separators and converted to forward slashes.
203 *
204 * @returns IPRT status code.
205 * @retval VWRN_ALREADY_EXISTS if the entry already exists.
206 *
207 * @param hManifest The manifest handle.
208 * @param pszEntry The entry name (UTF-8).
209 *
210 * @remarks Some manifest formats will not be able to store an entry without
211 * any attributes. So, this is just here in case it comes in handy
212 * when dealing with formats which can.
213 */
214RTDECL(int) RTManifestEntryAdd(RTMANIFEST hManifest, const char *pszEntry);
215
216/**
217 * Removes an entry.
218 *
219 * @returns IPRT status code.
220 * @param hManifest The manifest handle.
221 * @param pszEntry The entry name.
222 */
223RTDECL(int) RTManifestEntryRemove(RTMANIFEST hManifest, const char *pszEntry);
224
225/**
226 * Add an entry for an I/O stream using a passthru stream.
227 *
228 * The passthru I/O stream will hash all the data read from or written to the
229 * stream and automatically add an entry to the manifest with the desired
230 * attributes when it is released. Alternatively one can call
231 * RTManifestPtIosAddEntryNow() to have more control over exactly when this
232 * action is performed and which status it yields.
233 *
234 * @returns IPRT status code.
235 * @param hManifest The manifest to add the entry to.
236 * @param hVfsIos The I/O stream to pass thru to/from.
237 * @param pszEntry The entry name.
238 * @param fAttrs The attributes to create for this stream.
239 * @param fReadOrWrite Whether it's a read or write I/O stream.
240 * @param phVfsIosPassthru Where to return the new handle.
241 */
242RTDECL(int) RTManifestEntryAddPassthruIoStream(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, const char *pszEntry,
243 uint32_t fAttrs, bool fReadOrWrite, PRTVFSIOSTREAM phVfsIosPassthru);
244
245/**
246 * Adds the entry to the manifest right now.
247 *
248 * @returns IPRT status code.
249 * @param hVfsPtIos The manifest passthru I/O stream returned by
250 * RTManifestEntryAddPassthruIoStream().
251 */
252RTDECL(int) RTManifestPtIosAddEntryNow(RTVFSIOSTREAM hVfsPtIos);
253
254/**
255 * Adds an entry for a file with the specified set of attributes.
256 *
257 * @returns IPRT status code.
258 *
259 * @param hManifest The manifest handle.
260 * @param hVfsIos The I/O stream handle of the entry. This will
261 * be processed to its end on successful return.
262 * (Must be positioned at the start to get
263 * the expected results.)
264 * @param pszEntry The entry name.
265 * @param fAttrs The attributes to create for this stream. See
266 * RTMANIFEST_ATTR_XXX.
267 */
268RTDECL(int) RTManifestEntryAddIoStream(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, const char *pszEntry, uint32_t fAttrs);
269
270/**
271 * Checks if there is a manifest entry by the given name.
272 *
273 * @returns true if there is, false if not or if the handle is invalid.
274 * @param hManifest The manifest handle.
275 * @param pszEntry The entry name.
276 */
277RTDECL(bool) RTManifestEntryExists(RTMANIFEST hManifest, const char *pszEntry);
278
279/**
280 * Reads in a "standard" manifest.
281 *
282 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
283 * others.
284 *
285 * @returns IPRT status code.
286 * @param hManifest The handle to the manifest where to add the
287 * manifest that's read in.
288 * @param hVfsIos The I/O stream to read the manifest from.
289 */
290RTDECL(int) RTManifestReadStandard(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos);
291
292/**
293 * Reads in a "standard" manifest.
294 *
295 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
296 * others.
297 *
298 * @returns IPRT status code.
299 * @param hManifest The handle to the manifest where to add the
300 * manifest that's read in.
301 * @param hVfsIos The I/O stream to read the manifest from.
302 * @param pszErr Where to return extended error info on failure.
303 * Optional.
304 * @param cbErr The size of the buffer @a pszErr points to.
305 */
306RTDECL(int) RTManifestReadStandardEx(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, char *pszErr, size_t cbErr);
307
308/**
309 * Reads in a "standard" manifest from the specified file.
310 *
311 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
312 * others.
313 *
314 * @returns IPRT status code.
315 * @param hManifest The handle to the manifest where to add the
316 * manifest that's read in.
317 * @param pszFilename The name of the file to read in.
318 */
319RTDECL(int) RTManifestReadStandardFromFile(RTMANIFEST hManifest, const char *pszFilename);
320
321/**
322 * Writes a "standard" manifest.
323 *
324 * This writes the format used by OVF, the distinfo in FreeBSD ports, and
325 * others.
326 *
327 * @returns IPRT status code.
328 * @param hManifest The handle to the manifest to write.
329 * @param hVfsIos The I/O stream to read the manifest from.
330 */
331RTDECL(int) RTManifestWriteStandard(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos);
332
333/**
334 * Writes a "standard" manifest to the specified file.
335 *
336 * @returns IPRT status code.
337 * @param hManifest The handle to the manifest to write.
338 * @param pszFilename The name of the file.
339 */
340RTDECL(int) RTManifestWriteStandardToFile(RTMANIFEST hManifest, const char *pszFilename);
341
342
343
344
345
346/**
347 * Input structure for RTManifestVerify() which contains the filename & the
348 * SHA1 digest.
349 */
350typedef struct RTMANIFESTTEST
351{
352 /** The filename. */
353 const char *pszTestFile;
354 /** The SHA1 digest of the file. */
355 const char *pszTestDigest;
356} RTMANIFESTTEST;
357/** Pointer to the input structure. */
358typedef RTMANIFESTTEST* PRTMANIFESTTEST;
359
360
361/**
362 * Verify the given SHA1 digests against the entries in the manifest file.
363 *
364 * Please note that not only the various digest have to match, but the
365 * filenames as well. If there are more or even less files listed in the
366 * manifest file than provided by paTests, VERR_MANIFEST_FILE_MISMATCH will be
367 * returned.
368 *
369 * @returns iprt status code.
370 *
371 * @param pszManifestFile Filename of the manifest file to verify.
372 * @param paTests Array of files & SHA1 sums.
373 * @param cTests Number of entries in paTests.
374 * @param piFailed A index to paTests in the
375 * VERR_MANIFEST_DIGEST_MISMATCH error case
376 * (optional).
377 */
378RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST paTests, size_t cTests, size_t *piFailed);
379
380/**
381 * This is analogous to function RTManifestVerify(), but calculates the SHA1
382 * sums of the given files itself.
383 *
384 * @returns iprt status code.
385 *
386 * @param pszManifestFile Filename of the manifest file to verify.
387 * @param papszFiles Array of files to check SHA1 sums.
388 * @param cFiles Number of entries in papszFiles.
389 * @param piFailed A index to papszFiles in the
390 * VERR_MANIFEST_DIGEST_MISMATCH error case
391 * (optional).
392 * @param pfnProgressCallback optional callback for the progress indication
393 * @param pvUser user defined pointer for the callback
394 */
395RTR3DECL(int) RTManifestVerifyFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles, size_t *piFailed,
396 PFNRTPROGRESS pfnProgressCallback, void *pvUser);
397
398/**
399 * Creates a manifest file for a set of files. The manifest file contains SHA1
400 * sums of every provided file and could be used to verify the data integrity
401 * of them.
402 *
403 * @returns iprt status code.
404 *
405 * @param pszManifestFile Filename of the manifest file to create.
406 * @param papszFiles Array of files to create SHA1 sums for.
407 * @param cFiles Number of entries in papszFiles.
408 * @param pfnProgressCallback optional callback for the progress indication
409 * @param pvUser user defined pointer for the callback
410 */
411RTR3DECL(int) RTManifestWriteFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles,
412 PFNRTPROGRESS pfnProgressCallback, void *pvUser);
413
414/**
415 * Verify the given SHA1 digests against the entries in the manifest file in
416 * memory.
417 *
418 * @returns iprt status code.
419 *
420 * @param pvBuf Pointer to memory buffer of the manifest file.
421 * @param cbSize Size of the memory buffer.
422 * @param paTests Array of file names and digests.
423 * @param cTest Number of entries in paTests.
424 * @param piFailed A index to paTests in the
425 * VERR_MANIFEST_DIGEST_MISMATCH error case
426 * (optional).
427 */
428RTR3DECL(int) RTManifestVerifyFilesBuf(void *pvBuf, size_t cbSize, PRTMANIFESTTEST paTests, size_t cTests, size_t *piFailed);
429
430/**
431 * Creates a manifest file in memory for a set of files. The manifest file
432 * contains SHA1 sums of every provided file and could be used to verify the
433 * data integrity of them.
434 *
435 * @returns iprt status code.
436 *
437 * @param ppvBuf Pointer to resulting memory buffer.
438 * @param pcbSize Pointer for the size of the memory buffer.
439 * @param paFiles Array of file names and digests.
440 * @param cFiles Number of entries in paFiles.
441 */
442RTR3DECL(int) RTManifestWriteFilesBuf(void **ppvBuf, size_t *pcbSize, PRTMANIFESTTEST paFiles, size_t cFiles);
443
444/** @} */
445
446RT_C_DECLS_END
447
448#endif
449
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette