File: zip.h

package info (click to toggle)
linux 6.12.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,673,568 kB
  • sloc: ansic: 25,888,630; asm: 268,782; sh: 136,481; python: 64,809; makefile: 55,668; perl: 38,052; xml: 19,270; cpp: 5,893; yacc: 4,923; lex: 2,939; awk: 1,592; sed: 28; ruby: 25
file content (47 lines) | stat: -rw-r--r-- 1,272 bytes parent folder | download | duplicates (29)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */

#ifndef __LIBBPF_ZIP_H
#define __LIBBPF_ZIP_H

#include <linux/types.h>

/* Represents an open zip archive.
 * Only basic ZIP files are supported, in particular the following are not
 * supported:
 * - encryption
 * - streaming
 * - multi-part ZIP files
 * - ZIP64
 */
struct zip_archive;

/* Carries information on name, compression method, and data corresponding to a
 * file in a zip archive.
 */
struct zip_entry {
	/* Compression method as defined in pkzip spec. 0 means data is uncompressed. */
	__u16 compression;

	/* Non-null terminated name of the file. */
	const char *name;
	/* Length of the file name. */
	__u16 name_length;

	/* Pointer to the file data. */
	const void *data;
	/* Length of the file data. */
	__u32 data_length;
	/* Offset of the file data within the archive. */
	__u32 data_offset;
};

/* Open a zip archive. Returns NULL in case of an error. */
struct zip_archive *zip_archive_open(const char *path);

/* Close a zip archive and release resources. */
void zip_archive_close(struct zip_archive *archive);

/* Look up an entry corresponding to a file in given zip archive. */
int zip_archive_find_entry(struct zip_archive *archive, const char *name, struct zip_entry *out);

#endif