tools/lib/bpf/zip.h

Source file repositories/reference/linux-study-clean/tools/lib/bpf/zip.h

File Facts

System
Linux kernel
Corpus path
tools/lib/bpf/zip.h
Extension
.h
Size
1272 bytes
Lines
48
Domain
Support Tooling And Documentation
Bucket
tools
Inferred role
Support Tooling And Documentation: implementation source
Status
source implementation candidate

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

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

Annotation

Implementation Notes