blob: 3d5da3909925aae686ffcff1a2f5e5bb7f70ce08 (
plain)
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
48
49
50
51
52
53
54
55
56
57
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* xattr.h
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
#ifndef SQFS_XATTR_H
#define SQFS_XATTR_H
#include "config.h"
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h>
typedef enum {
SQUASHFS_XATTR_USER = 0,
SQUASHFS_XATTR_TRUSTED = 1,
SQUASHFS_XATTR_SECURITY = 2,
SQUASHFS_XATTR_FLAG_OOL = 0x100,
SQUASHFS_XATTR_PREFIX_MASK = 0xFF,
} E_SQFS_XATTR_TYPE;
typedef struct {
uint16_t type;
uint16_t size;
uint8_t key[];
} sqfs_xattr_entry_t;
typedef struct {
uint32_t size;
uint8_t value[];
} sqfs_xattr_value_t;
typedef struct {
uint64_t xattr;
uint32_t count;
uint32_t size;
} sqfs_xattr_id_t;
typedef struct {
uint64_t xattr_table_start;
uint32_t xattr_ids;
uint32_t unused;
} sqfs_xattr_id_table_t;
/* Get a prefix string from the ID or NULL if unknown */
const char *sqfs_get_xattr_prefix(E_SQFS_XATTR_TYPE id);
/* Get id from xattr key prefix or -1 if not supported */
int sqfs_get_xattr_prefix_id(const char *key);
/* Check if a given xattr key can be encoded in squashfs at all. */
bool sqfs_has_xattr(const char *key);
#endif /* SQFS_XATTR_H */
|