blob: be5c4001014c4e7636c56f8dc99629703590489a (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
* dir_entry.h
*
* Copyright (C) 2023 David Oberhollenzer <goliath@infraroot.at>
*/
#ifndef IO_DIR_ENTRY_H
#define IO_DIR_ENTRY_H
#include "sqfs/predef.h"
typedef enum {
DIR_ENTRY_FLAG_MOUNT_POINT = 0x0001,
DIR_ENTRY_FLAG_HARD_LINK = 0x0002,
} DIR_ENTRY_FLAG;
/**
* @struct dir_entry_t
*
* @brief A directory entry returned by a @ref dir_iterator_t
*/
typedef struct {
/**
* @brief Total size of file entries
*/
sqfs_u64 size;
/**
* @brief Unix time stamp when the entry was last modified.
*
* If necessary, the OS native time stamp is converted to Unix time.
*/
sqfs_s64 mtime;
/**
* @brief Device number where the entry is stored on.
*
* On Windows and other non-Unix OSes, a dummy value is stored here.
*/
sqfs_u64 dev;
/**
* @brief Device number for device special files.
*
* On Windows and other non-Unix OSes, a dummy value is stored here.
*/
sqfs_u64 rdev;
/**
* @brief ID of the user that owns the entry.
*
* On Windows and other non-Unix OSes, this always reports user 0.
*/
sqfs_u64 uid;
/**
* @brief ID of the group that owns the entry.
*
* On Windows and other non-Unix OSes, this always reports group 0.
*/
sqfs_u64 gid;
/**
* @brief Unix style permissions and entry type.
*
* On Windows and other non-Unix OSes, this is synthesized from the
* Unix-like file type, default 0755 permissions for directories or
* 0644 for files.
*/
sqfs_u16 mode;
/**
* @brief Combination of DIR_ENTRY_FLAG values
*/
sqfs_u16 flags;
/**
* @brief Name of the entry
*
* On Unix-like OSes, the name is returned as-is. On systems like
* Windows with encoding-aware APIs, the name is converted to UTF-8.
*/
char name[];
} dir_entry_t;
#ifdef __cplusplus
extern "C" {
#endif
dir_entry_t *dir_entry_create(const char *name);
#ifdef __cplusplus
}
#endif
#endif /* IO_DIR_ENTRY_H */
|