VirtualBox

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

Last change on this file since 59575 was 59575, checked in by vboxsync, 9 years ago

iprt: Added RTManifestQueryAllAttrTypes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 21.3 KB
Line 
1/** @file
2 * IPRT - Manifest file handling.
3 */
4
5/*
6 * Copyright (C) 2009-2015 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/** Wildcard for use in queries. */
57#define RTMANIFEST_ATTR_ANY UINT32_C(0xffffffff)
58/** @} */
59
60
61/**
62 * Creates an empty manifest.
63 *
64 * @returns IPRT status code.
65 * @param fFlags Flags, MBZ.
66 * @param phManifest Where to return the handle to the manifest.
67 */
68RTDECL(int) RTManifestCreate(uint32_t fFlags, PRTMANIFEST phManifest);
69
70/**
71 * Retains a reference to the manifest handle.
72 *
73 * @returns The new reference count, UINT32_MAX if the handle is invalid.
74 * @param hManifest The handle to retain.
75 */
76RTDECL(uint32_t) RTManifestRetain(RTMANIFEST hManifest);
77
78/**
79 * Releases a reference to the manifest handle.
80 *
81 * @returns The new reference count, 0 if free. UINT32_MAX is returned if the
82 * handle is invalid.
83 * @param hManifest The handle to release.
84 * NIL is quietly ignored (returns 0).
85 */
86RTDECL(uint32_t) RTManifestRelease(RTMANIFEST hManifest);
87
88/**
89 * Creates a duplicate of the specified manifest.
90 *
91 * @returns IPRT status code
92 * @param hManifestSrc The manifest to clone.
93 * @param phManifestDst Where to store the handle to the duplicate.
94 */
95RTDECL(int) RTManifestDup(RTMANIFEST hManifestSrc, PRTMANIFEST phManifestDst);
96
97/**
98 * Compares two manifests for equality.
99 *
100 * @returns IPRT status code.
101 * @retval VINF_SUCCESS if equal.
102 * @retval VERR_NOT_EQUAL if not equal.
103 *
104 * @param hManifest1 The first manifest.
105 * @param hManifest2 The second manifest.
106 * @param papszIgnoreEntries Entries to ignore. Ends with a NULL entry.
107 * @param papszIgnoreAttrs Attributes to ignore. Ends with a NULL entry.
108 * @param fFlags A combination of RTMANIFEST_EQUALS_XXX values.
109 * @param pszError Where to store the name of the mismatching
110 * entry, or as much of the name as there is room
111 * for. This is always set. Optional.
112 * @param cbError The size of the buffer pointed to by @a
113 * pszError.
114 */
115RTDECL(int) RTManifestEqualsEx(RTMANIFEST hManifest1, RTMANIFEST hManifest2, const char * const *papszIgnoreEntries,
116 const char * const *papszIgnoreAttrs, uint32_t fFlags, char *pszError, size_t cbError);
117
118/** @defgroup RTMANIFEST_EQUALS_XXX RTManifestEqualsEx flags
119 * @{ */
120/** Ignore missing attributes if there is one or more to compare. */
121#define RTMANIFEST_EQUALS_IGN_MISSING_ATTRS RT_BIT_32(0)
122/** Ignore attributes missing in the 1st manifest.
123 * @todo implement this */
124#define RTMANIFEST_EQUALS_IGN_MISSING_ATTRS_1ST RT_BIT_32(1)
125/** Mask of valid flags. */
126#define RTMANIFEST_EQUALS_VALID_MASK UINT32_C(0x00000003)
127/** @} */
128
129/**
130 * Compares two manifests for equality.
131 *
132 * @returns IPRT status code.
133 * @retval VINF_SUCCESS if equal.
134 * @retval VERR_NOT_EQUAL if not equal.
135 *
136 * @param hManifest1 The first manifest.
137 * @param hManifest2 The second manifest.
138 */
139RTDECL(int) RTManifestEquals(RTMANIFEST hManifest1, RTMANIFEST hManifest2);
140
141/**
142 *
143 * @returns IPRT status code.
144 * @param hManifest Handle to the manifest.
145 * @param fEntriesOnly Whether to only gather attribute types from the
146 * entries (@c true), or also include the manifest
147 * attributes (@c false).
148 * @param pfTypes Where to return the attributes.
149 */
150RTDECL(int) RTManifestQueryAllAttrTypes(RTMANIFEST hManifest, bool fEntriesOnly, uint32_t *pfTypes);
151
152/**
153 * Sets a manifest attribute.
154 *
155 * @returns IPRT status code.
156 * @param hManifest The manifest handle.
157 * @param pszAttr The attribute name, if NULL it will be termined from @a
158 * fType gives it. If this already exists, its value will
159 * be replaced.
160 * @param pszValue The value string.
161 * @param fType The attribute type. If not know, pass
162 * RTMANIFEST_ATTR_UNKNOWN with a valid attribute
163 * name string (@a pszAttr).
164 */
165RTDECL(int) RTManifestSetAttr(RTMANIFEST hManifest, const char *pszAttr, const char *pszValue, uint32_t fType);
166
167/**
168 * Unsets (removes) a manifest attribute if it exists.
169 *
170 * @returns IPRT status code.
171 * @retval VWRN_NOT_FOUND if not found.
172 *
173 * @param hManifest The manifest handle.
174 * @param pszAttr The attribute name.
175 */
176RTDECL(int) RTManifestUnsetAttr(RTMANIFEST hManifest, const char *pszAttr);
177
178/**
179 * Query a manifest attribute.
180 *
181 * @returns IPRT status code.
182 * @retval VERR_BUFFER_OVERFLOW if the value buffer is too small. The @a
183 * pszValue buffer will not be modified.
184 * @retval VERR_MANIFEST_ATTR_NOT_FOUND
185 * @retval VERR_MANIFEST_ATTR_TYPE_NOT_FOUND
186 * @retval VERR_MANIFEST_ATTR_TYPE_MISMATCH
187 *
188 * @param hManifest The manifest handle.
189 * @param pszAttr The attribute name. If NULL, it will be
190 * selected by @a fType alone.
191 * @param fType The attribute types the entry should match. Pass
192 * Pass RTMANIFEST_ATTR_ANY match any. If more
193 * than one is given, the first matching one is
194 * returned.
195 * @param pszValue Where to return value.
196 * @param cbValue The size of the buffer @a pszValue points to.
197 * @param pfType Where to return the attribute type value.
198 */
199RTDECL(int) RTManifestQueryAttr(RTMANIFEST hManifest, const char *pszAttr, uint32_t fType,
200 char *pszValue, size_t cbValue, uint32_t *pfType);
201
202/**
203 * Sets an attribute of a manifest entry.
204 *
205 * @returns IPRT status code.
206 * @param hManifest The manifest handle.
207 * @param pszEntry The entry name. This will automatically be
208 * added if there was no previous call to
209 * RTManifestEntryAdd for this name. See
210 * RTManifestEntryAdd for the entry name rules.
211 * @param pszAttr The attribute name, if NULL it will be termined from @a
212 * fType gives it. If this already exists, its value will
213 * be replaced.
214 * @param pszValue The value string.
215 * @param fType The attribute type. If not know, pass
216 * RTMANIFEST_ATTR_UNKNOWN with a valid attribute
217 * name string (@a pszAttr).
218 */
219RTDECL(int) RTManifestEntrySetAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr,
220 const char *pszValue, uint32_t fType);
221
222/**
223 * Unsets (removes) an attribute of a manifest entry if they both exist.
224 *
225 * @returns IPRT status code.
226 * @retval VWRN_NOT_FOUND if not found.
227 *
228 * @param hManifest The manifest handle.
229 * @param pszEntry The entry name.
230 * @param pszAttr The attribute name.
231 */
232RTDECL(int) RTManifestEntryUnsetAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr);
233
234/**
235 * Query a manifest entry attribute.
236 *
237 * @returns IPRT status code.
238 * @retval VERR_BUFFER_OVERFLOW if the value buffer is too small. The @a
239 * pszValue buffer will not be modified.
240 * @retval VERR_NOT_FOUND if the entry was not found.
241 * @retval VERR_MANIFEST_ATTR_NOT_FOUND
242 * @retval VERR_MANIFEST_ATTR_TYPE_NOT_FOUND
243 * @retval VERR_MANIFEST_ATTR_TYPE_MISMATCH
244 *
245 * @param hManifest The manifest handle.
246 * @param pszEntry The entry name.
247 * @param pszAttr The attribute name. If NULL, it will be
248 * selected by @a fType alone.
249 * @param fType The attribute types the entry should match. Pass
250 * Pass RTMANIFEST_ATTR_ANY match any. If more
251 * than one is given, the first matching one is
252 * returned.
253 * @param pszValue Where to return value.
254 * @param cbValue The size of the buffer @a pszValue points to.
255 * @param pfType Where to return the attribute type value.
256 */
257RTDECL(int) RTManifestEntryQueryAttr(RTMANIFEST hManifest, const char *pszEntry, const char *pszAttr, uint32_t fType,
258 char *pszValue, size_t cbValue, uint32_t *pfType);
259
260/**
261 * Adds a new entry to a manifest.
262 *
263 * The entry name rules:
264 * - The entry name can contain any character defined by unicode, except
265 * control characters, ':', '(' and ')'. The exceptions are mainly there
266 * because of uncertainty around how various formats handles these.
267 * - It is considered case sensitive.
268 * - Forward (unix) and backward (dos) slashes are considered path
269 * separators and converted to forward slashes.
270 *
271 * @returns IPRT status code.
272 * @retval VWRN_ALREADY_EXISTS if the entry already exists.
273 *
274 * @param hManifest The manifest handle.
275 * @param pszEntry The entry name (UTF-8).
276 *
277 * @remarks Some manifest formats will not be able to store an entry without
278 * any attributes. So, this is just here in case it comes in handy
279 * when dealing with formats which can.
280 */
281RTDECL(int) RTManifestEntryAdd(RTMANIFEST hManifest, const char *pszEntry);
282
283/**
284 * Removes an entry.
285 *
286 * @returns IPRT status code.
287 * @param hManifest The manifest handle.
288 * @param pszEntry The entry name.
289 */
290RTDECL(int) RTManifestEntryRemove(RTMANIFEST hManifest, const char *pszEntry);
291
292/**
293 * Add an entry for an I/O stream using a passthru stream.
294 *
295 * The passthru I/O stream will hash all the data read from or written to the
296 * stream and automatically add an entry to the manifest with the desired
297 * attributes when it is released. Alternatively one can call
298 * RTManifestPtIosAddEntryNow() to have more control over exactly when this
299 * action is performed and which status it yields.
300 *
301 * @returns IPRT status code.
302 * @param hManifest The manifest to add the entry to.
303 * @param hVfsIos The I/O stream to pass thru to/from.
304 * @param pszEntry The entry name.
305 * @param fAttrs The attributes to create for this stream.
306 * @param fReadOrWrite Whether it's a read or write I/O stream.
307 * @param phVfsIosPassthru Where to return the new handle.
308 */
309RTDECL(int) RTManifestEntryAddPassthruIoStream(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, const char *pszEntry,
310 uint32_t fAttrs, bool fReadOrWrite, PRTVFSIOSTREAM phVfsIosPassthru);
311
312/**
313 * Adds the entry to the manifest right now.
314 *
315 * @returns IPRT status code.
316 * @param hVfsPtIos The manifest passthru I/O stream returned by
317 * RTManifestEntryAddPassthruIoStream().
318 */
319RTDECL(int) RTManifestPtIosAddEntryNow(RTVFSIOSTREAM hVfsPtIos);
320
321/**
322 * Adds an entry for a file with the specified set of attributes.
323 *
324 * @returns IPRT status code.
325 *
326 * @param hManifest The manifest handle.
327 * @param hVfsIos The I/O stream handle of the entry. This will
328 * be processed to its end on successful return.
329 * (Must be positioned at the start to get
330 * the expected results.)
331 * @param pszEntry The entry name.
332 * @param fAttrs The attributes to create for this stream. See
333 * RTMANIFEST_ATTR_XXX.
334 */
335RTDECL(int) RTManifestEntryAddIoStream(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, const char *pszEntry, uint32_t fAttrs);
336
337/**
338 * Checks if there is a manifest entry by the given name.
339 *
340 * @returns true if there is, false if not or if the handle is invalid.
341 * @param hManifest The manifest handle.
342 * @param pszEntry The entry name.
343 */
344RTDECL(bool) RTManifestEntryExists(RTMANIFEST hManifest, const char *pszEntry);
345
346/**
347 * Reads in a "standard" manifest.
348 *
349 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
350 * others.
351 *
352 * @returns IPRT status code.
353 * @param hManifest The handle to the manifest where to add the
354 * manifest that's read in.
355 * @param hVfsIos The I/O stream to read the manifest from.
356 */
357RTDECL(int) RTManifestReadStandard(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos);
358
359/**
360 * Reads in a "standard" manifest.
361 *
362 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
363 * others.
364 *
365 * @returns IPRT status code.
366 * @param hManifest The handle to the manifest where to add the
367 * manifest that's read in.
368 * @param hVfsIos The I/O stream to read the manifest from.
369 * @param pszErr Where to return extended error info on failure.
370 * Optional.
371 * @param cbErr The size of the buffer @a pszErr points to.
372 */
373RTDECL(int) RTManifestReadStandardEx(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos, char *pszErr, size_t cbErr);
374
375/**
376 * Reads in a "standard" manifest from the specified file.
377 *
378 * This reads the format used by OVF, the distinfo in FreeBSD ports, and
379 * others.
380 *
381 * @returns IPRT status code.
382 * @param hManifest The handle to the manifest where to add the
383 * manifest that's read in.
384 * @param pszFilename The name of the file to read in.
385 */
386RTDECL(int) RTManifestReadStandardFromFile(RTMANIFEST hManifest, const char *pszFilename);
387
388/**
389 * Writes a "standard" manifest.
390 *
391 * This writes the format used by OVF, the distinfo in FreeBSD ports, and
392 * others.
393 *
394 * @returns IPRT status code.
395 * @param hManifest The handle to the manifest to write.
396 * @param hVfsIos The I/O stream to read the manifest from.
397 */
398RTDECL(int) RTManifestWriteStandard(RTMANIFEST hManifest, RTVFSIOSTREAM hVfsIos);
399
400/**
401 * Writes a "standard" manifest to the specified file.
402 *
403 * @returns IPRT status code.
404 * @param hManifest The handle to the manifest to write.
405 * @param pszFilename The name of the file.
406 */
407RTDECL(int) RTManifestWriteStandardToFile(RTMANIFEST hManifest, const char *pszFilename);
408
409
410
411
412
413/**
414 * Input structure for RTManifestVerify() which contains the filename & the
415 * SHA1/SHA256 digest.
416 */
417typedef struct RTMANIFESTTEST
418{
419 /** The filename. */
420 const char *pszTestFile;
421 /** The SHA1/SHA256 digest of the file. */
422 const char *pszTestDigest;
423} RTMANIFESTTEST;
424/** Pointer to the input structure. */
425typedef RTMANIFESTTEST* PRTMANIFESTTEST;
426
427
428/**
429 * Verify the given SHA1 digests against the entries in the manifest file.
430 *
431 * Please note that not only the various digest have to match, but the
432 * filenames as well. If there are more or even less files listed in the
433 * manifest file than provided by paTests, VERR_MANIFEST_FILE_MISMATCH will be
434 * returned.
435 *
436 * @returns iprt status code.
437 *
438 * @param pszManifestFile Filename of the manifest file to verify.
439 * @param paTests Array of files & SHA1 sums.
440 * @param cTests Number of entries in paTests.
441 * @param piFailed A index to paTests in the
442 * VERR_MANIFEST_DIGEST_MISMATCH error case
443 * (optional).
444 * @deprecated Use the RTMANIFEST based API instead.
445 */
446RTR3DECL(int) RTManifestVerify(const char *pszManifestFile, PRTMANIFESTTEST paTests, size_t cTests, size_t *piFailed);
447
448/**
449 * This is analogous to function RTManifestVerify(), but calculates the SHA1
450 * sums of the given files itself.
451 *
452 * @returns iprt status code.
453 *
454 * @param pszManifestFile Filename of the manifest file to verify.
455 * @param papszFiles Array of files to check SHA1 sums.
456 * @param cFiles Number of entries in papszFiles.
457 * @param piFailed A index to papszFiles in the
458 * VERR_MANIFEST_DIGEST_MISMATCH error case
459 * (optional).
460 * @param pfnProgressCallback optional callback for the progress indication
461 * @param pvUser user defined pointer for the callback
462 * @deprecated Use the RTMANIFEST based API instead.
463 */
464RTR3DECL(int) RTManifestVerifyFiles(const char *pszManifestFile, const char * const *papszFiles, size_t cFiles, size_t *piFailed,
465 PFNRTPROGRESS pfnProgressCallback, void *pvUser);
466
467/**
468 * Creates a manifest file for a set of files. The manifest file contains SHA1
469 * sums of every provided file and could be used to verify the data integrity
470 * of them.
471 *
472 * @returns iprt status code.
473 *
474 * @param pszManifestFile Filename of the manifest file to create.
475 * @param enmDigestType The digest type (RTDIGESTTYPE_*)
476 * @param papszFiles Array of files to create SHA1 sums for.
477 * @param cFiles Number of entries in papszFiles.
478 * @param pfnProgressCallback optional callback for the progress indication
479 * @param pvUser user defined pointer for the callback
480 * @deprecated Use the RTMANIFEST based API instead.
481 */
482RTR3DECL(int) RTManifestWriteFiles(const char *pszManifestFile, RTDIGESTTYPE enmDigestType,
483 const char * const *papszFiles, size_t cFiles,
484 PFNRTPROGRESS pfnProgressCallback, void *pvUser);
485
486/**
487 * Queries the first digest type found in the given manifest.
488 *
489 * @returns iprt status code.
490 *
491 * @param pvBuf Pointer to memory buffer of the manifest file.
492 * @param cbSize Size of the memory buffer.
493 * @param penmDigestType Where to return the first digest type found in
494 * the manifest.
495 * @deprecated Use the RTMANIFEST based API instead.
496 */
497RTR3DECL(int) RTManifestVerifyDigestType(void const *pvBuf, size_t cbSize, RTDIGESTTYPE *penmDigestType);
498
499/**
500 * Verify the given SHA1 digests against the entries in the manifest file in
501 * memory.
502 *
503 * @returns iprt status code.
504 *
505 * @param pvBuf Pointer to memory buffer of the manifest file.
506 * @param cbSize Size of the memory buffer.
507 * @param paTests Array of file names and digests.
508 * @param cTests Number of entries in paTests.
509 * @param piFailed A index to paTests in the
510 * VERR_MANIFEST_DIGEST_MISMATCH error case
511 * (optional).
512 * @deprecated Use the RTMANIFEST based API instead.
513 */
514RTR3DECL(int) RTManifestVerifyFilesBuf(void *pvBuf, size_t cbSize, PRTMANIFESTTEST paTests, size_t cTests, size_t *piFailed);
515
516/**
517 * Creates a manifest file in memory for a set of files. The manifest file
518 * contains SHA1 sums of every provided file and could be used to verify the
519 * data integrity of them.
520 *
521 * @returns iprt status code.
522 *
523 * @param ppvBuf Pointer to resulting memory buffer.
524 * @param pcbSize Pointer for the size of the memory buffer.
525 * @param enmDigestType Which type of digest ("SHA1", "SHA256", ...)
526 * @param paFiles Array of file names and digests.
527 * @param cFiles Number of entries in paFiles.
528 * @deprecated Use the RTMANIFEST based API instead.
529 */
530RTR3DECL(int) RTManifestWriteFilesBuf(void **ppvBuf, size_t *pcbSize, RTDIGESTTYPE enmDigestType, PRTMANIFESTTEST paFiles, size_t cFiles);
531
532/** @} */
533
534RT_C_DECLS_END
535
536#endif
537
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