VirtualBox

source: vbox/trunk/include/iprt/fs.h@ 64622

Last change on this file since 64622 was 64622, checked in by vboxsync, 8 years ago

direnum-r3-nt.cpp: Fill in inode info when we can.

  • 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 - Filesystem.
3 */
4
5/*
6 * Copyright (C) 2006-2016 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_fs_h
27#define ___iprt_fs_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#include <iprt/time.h>
32
33
34RT_C_DECLS_BEGIN
35
36/** @defgroup grp_rt_fs RTFs - Filesystem and Volume
37 * @ingroup grp_rt
38 * @{
39 */
40
41
42/** @name Filesystem Object Mode Flags.
43 *
44 * There are two sets of flags: the unix mode flags and the dos attributes.
45 *
46 * APIs returning mode flags will provide both sets.
47 *
48 * When specifying mode flags to any API at least one of them must be given. If
49 * one set is missing the API will synthesize it from the one given if it
50 * requires it.
51 *
52 * Both sets match their x86 ABIs, the DOS/NT one is simply shifted up 16 bits.
53 * The DOS/NT range is bits 16 to 31 inclusively. The Unix range is bits 0 to 15
54 * (inclusively).
55 *
56 * @remarks These constants have been comitted to a binary format and must not
57 * be changed in any incompatible ways.
58 *
59 * @{
60 */
61
62/** Set user id on execution (S_ISUID). */
63#define RTFS_UNIX_ISUID 0004000U
64/** Set group id on execution (S_ISGID). */
65#define RTFS_UNIX_ISGID 0002000U
66/** Sticky bit (S_ISVTX / S_ISTXT). */
67#define RTFS_UNIX_ISTXT 0001000U
68
69/** Owner RWX mask (S_IRWXU). */
70#define RTFS_UNIX_IRWXU 0000700U
71/** Owner readable (S_IRUSR). */
72#define RTFS_UNIX_IRUSR 0000400U
73/** Owner writable (S_IWUSR). */
74#define RTFS_UNIX_IWUSR 0000200U
75/** Owner executable (S_IXUSR). */
76#define RTFS_UNIX_IXUSR 0000100U
77
78/** Group RWX mask (S_IRWXG). */
79#define RTFS_UNIX_IRWXG 0000070U
80/** Group readable (S_IRGRP). */
81#define RTFS_UNIX_IRGRP 0000040U
82/** Group writable (S_IWGRP). */
83#define RTFS_UNIX_IWGRP 0000020U
84/** Group executable (S_IXGRP). */
85#define RTFS_UNIX_IXGRP 0000010U
86
87/** Other RWX mask (S_IRWXO). */
88#define RTFS_UNIX_IRWXO 0000007U
89/** Other readable (S_IROTH). */
90#define RTFS_UNIX_IROTH 0000004U
91/** Other writable (S_IWOTH). */
92#define RTFS_UNIX_IWOTH 0000002U
93/** Other executable (S_IXOTH). */
94#define RTFS_UNIX_IXOTH 0000001U
95
96/** All UNIX access permission bits (0777). */
97#define RTFS_UNIX_ALL_ACCESS_PERMS 0000777U
98/** All UNIX permission bits, including set id and sticky bits. */
99#define RTFS_UNIX_ALL_PERMS 0007777U
100
101/** Named pipe (fifo) (S_IFIFO). */
102#define RTFS_TYPE_FIFO 0010000U
103/** Character device (S_IFCHR). */
104#define RTFS_TYPE_DEV_CHAR 0020000U
105/** Directory (S_IFDIR). */
106#define RTFS_TYPE_DIRECTORY 0040000U
107/** Block device (S_IFBLK). */
108#define RTFS_TYPE_DEV_BLOCK 0060000U
109/** Regular file (S_IFREG). */
110#define RTFS_TYPE_FILE 0100000U
111/** Symbolic link (S_IFLNK). */
112#define RTFS_TYPE_SYMLINK 0120000U
113/** Socket (S_IFSOCK). */
114#define RTFS_TYPE_SOCKET 0140000U
115/** Whiteout (S_IFWHT). */
116#define RTFS_TYPE_WHITEOUT 0160000U
117/** Type mask (S_IFMT). */
118#define RTFS_TYPE_MASK 0170000U
119/** The shift count to convert between RTFS_TYPE_MASK and DIRENTRYTYPE. */
120#define RTFS_TYPE_DIRENTRYTYPE_SHIFT 12
121
122/** Unix attribute mask. */
123#define RTFS_UNIX_MASK 0xffffU
124/** The mask of all the NT, OS/2 and DOS attributes. */
125#define RTFS_DOS_MASK (0x7fffU << RTFS_DOS_SHIFT)
126
127/** The shift value. */
128#define RTFS_DOS_SHIFT 16
129/** The mask of the OS/2 and DOS attributes. */
130#define RTFS_DOS_MASK_OS2 (0x003fU << RTFS_DOS_SHIFT)
131/** The mask of the NT attributes. */
132#define RTFS_DOS_MASK_NT (0x7fffU << RTFS_DOS_SHIFT)
133
134/** Readonly object. */
135#define RTFS_DOS_READONLY (0x0001U << RTFS_DOS_SHIFT)
136/** Hidden object. */
137#define RTFS_DOS_HIDDEN (0x0002U << RTFS_DOS_SHIFT)
138/** System object. */
139#define RTFS_DOS_SYSTEM (0x0004U << RTFS_DOS_SHIFT)
140/** Directory. */
141#define RTFS_DOS_DIRECTORY (0x0010U << RTFS_DOS_SHIFT)
142/** Archived object.
143 * This bit is set by the filesystem after each modification of a file. */
144#define RTFS_DOS_ARCHIVED (0x0020U << RTFS_DOS_SHIFT)
145/** Undocumented / Reserved, used to be the FAT volume label. */
146#define RTFS_DOS_NT_DEVICE (0x0040U << RTFS_DOS_SHIFT)
147/** Normal object, no other attribute set (NT). */
148#define RTFS_DOS_NT_NORMAL (0x0080U << RTFS_DOS_SHIFT)
149/** Temporary object (NT). */
150#define RTFS_DOS_NT_TEMPORARY (0x0100U << RTFS_DOS_SHIFT)
151/** Sparse file (NT). */
152#define RTFS_DOS_NT_SPARSE_FILE (0x0200U << RTFS_DOS_SHIFT)
153/** Reparse point (NT). */
154#define RTFS_DOS_NT_REPARSE_POINT (0x0400U << RTFS_DOS_SHIFT)
155/** Compressed object (NT).
156 * For a directory, compression is the default for new files. */
157#define RTFS_DOS_NT_COMPRESSED (0x0800U << RTFS_DOS_SHIFT)
158/** Physically offline data (NT).
159 * MSDN say, don't mess with this one. */
160#define RTFS_DOS_NT_OFFLINE (0x1000U << RTFS_DOS_SHIFT)
161/** Not content indexed by the content indexing service (NT). */
162#define RTFS_DOS_NT_NOT_CONTENT_INDEXED (0x2000U << RTFS_DOS_SHIFT)
163/** Encryped object (NT).
164 * For a directory, encrypted is the default for new files. */
165#define RTFS_DOS_NT_ENCRYPTED (0x4000U << RTFS_DOS_SHIFT)
166
167/** @} */
168
169
170/** @name Filesystem Object Type Predicates.
171 * @{ */
172/** Checks the mode flags indicate a named pipe (fifo) (S_ISFIFO). */
173#define RTFS_IS_FIFO(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_FIFO )
174/** Checks the mode flags indicate a character device (S_ISCHR). */
175#define RTFS_IS_DEV_CHAR(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_DEV_CHAR )
176/** Checks the mode flags indicate a directory (S_ISDIR). */
177#define RTFS_IS_DIRECTORY(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_DIRECTORY )
178/** Checks the mode flags indicate a block device (S_ISBLK). */
179#define RTFS_IS_DEV_BLOCK(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_DEV_BLOCK )
180/** Checks the mode flags indicate a regular file (S_ISREG). */
181#define RTFS_IS_FILE(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_FILE )
182/** Checks the mode flags indicate a symbolic link (S_ISLNK). */
183#define RTFS_IS_SYMLINK(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_SYMLINK )
184/** Checks the mode flags indicate a socket (S_ISSOCK). */
185#define RTFS_IS_SOCKET(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_SOCKET )
186/** Checks the mode flags indicate a whiteout (S_ISWHT). */
187#define RTFS_IS_WHITEOUT(fMode) ( ((fMode) & RTFS_TYPE_MASK) == RTFS_TYPE_WHITEOUT )
188/** @} */
189
190
191/**
192 * Filesystem type IDs returned by RTFsQueryType.
193 *
194 * This enum is subject to changes and must not be used as part of any ABI or
195 * binary format (file, network, etc).
196 *
197 * @remarks When adding new entries, please update RTFsTypeName(). Also, try
198 * add them to the most natural group.
199 */
200typedef enum RTFSTYPE
201{
202 /** Unknown file system. */
203 RTFSTYPE_UNKNOWN = 0,
204
205 /** Universal Disk Format. */
206 RTFSTYPE_UDF,
207 /** ISO 9660, aka Compact Disc File System (CDFS). */
208 RTFSTYPE_ISO9660,
209 /** Filesystem in Userspace. */
210 RTFSTYPE_FUSE,
211 /** VirtualBox shared folders. */
212 RTFSTYPE_VBOXSHF,
213
214 /* Linux: */
215 RTFSTYPE_EXT,
216 RTFSTYPE_EXT2,
217 RTFSTYPE_EXT3,
218 RTFSTYPE_EXT4,
219 RTFSTYPE_XFS,
220 RTFSTYPE_CIFS,
221 RTFSTYPE_SMBFS,
222 RTFSTYPE_TMPFS,
223 RTFSTYPE_SYSFS,
224 RTFSTYPE_PROC,
225 RTFSTYPE_OCFS2,
226 RTFSTYPE_BTRFS,
227
228 /* Windows: */
229 /** New Technology File System. */
230 RTFSTYPE_NTFS,
231 /** FAT12, FAT16 and FAT32 lumped into one basket.
232 * The partition size limit of FAT12 and FAT16 will be the factor
233 * limiting the file size (except, perhaps for the 64KB cluster case on
234 * non-Windows hosts). */
235 RTFSTYPE_FAT,
236
237 /* Solaris: */
238 /** Zettabyte File System. */
239 RTFSTYPE_ZFS,
240 /** Unix File System. */
241 RTFSTYPE_UFS,
242 /** Network File System. */
243 RTFSTYPE_NFS,
244
245 /* Mac OS X: */
246 /** Hierarchical File System. */
247 RTFSTYPE_HFS,
248 /** @todo RTFSTYPE_HFS_PLUS? */
249 RTFSTYPE_AUTOFS,
250 RTFSTYPE_DEVFS,
251
252 /* *BSD: */
253
254 /* OS/2: */
255 /** High Performance File System. */
256 RTFSTYPE_HPFS,
257 /** Journaled File System (v2). */
258 RTFSTYPE_JFS,
259
260 /** The end of valid Filesystem types IDs. */
261 RTFSTYPE_END,
262 /** The usual 32-bit type blow up. */
263 RTFSTYPE_32BIT_HACK = 0x7fffffff
264} RTFSTYPE;
265/** Pointer to a Filesystem type ID. */
266typedef RTFSTYPE *PRTFSTYPE;
267
268
269/**
270 * The available additional information in a RTFSOBJATTR object.
271 */
272typedef enum RTFSOBJATTRADD
273{
274 /** No additional information is available / requested. */
275 RTFSOBJATTRADD_NOTHING = 1,
276 /** The additional unix attributes (RTFSOBJATTR::u::Unix) are available /
277 * requested. */
278 RTFSOBJATTRADD_UNIX,
279 /** The additional unix attributes (RTFSOBJATTR::u::UnixOwner) are
280 * available / requested. */
281 RTFSOBJATTRADD_UNIX_OWNER,
282 /** The additional unix attributes (RTFSOBJATTR::u::UnixGroup) are
283 * available / requested. */
284 RTFSOBJATTRADD_UNIX_GROUP,
285 /** The additional extended attribute size (RTFSOBJATTR::u::EASize) is available / requested. */
286 RTFSOBJATTRADD_EASIZE,
287 /** The last valid item (inclusive).
288 * The valid range is RTFSOBJATTRADD_NOTHING thru RTFSOBJATTRADD_LAST. */
289 RTFSOBJATTRADD_LAST = RTFSOBJATTRADD_EASIZE,
290
291 /** The usual 32-bit hack. */
292 RTFSOBJATTRADD_32BIT_SIZE_HACK = 0x7fffffff
293} RTFSOBJATTRADD;
294
295/** The number of bytes reserved for the additional attribute union. */
296#define RTFSOBJATTRUNION_MAX_SIZE 128
297
298/**
299 * Additional Unix Attributes (RTFSOBJATTRADD_UNIX).
300 */
301typedef struct RTFSOBJATTRUNIX
302{
303 /** The user owning the filesystem object (st_uid).
304 * This field is NIL_UID if not supported. */
305 RTUID uid;
306
307 /** The group the filesystem object is assigned (st_gid).
308 * This field is NIL_GID if not supported. */
309 RTGID gid;
310
311 /** Number of hard links to this filesystem object (st_nlink).
312 * This field is 1 if the filesystem doesn't support hardlinking or
313 * the information isn't available.
314 */
315 uint32_t cHardlinks;
316
317 /** The device number of the device which this filesystem object resides on (st_dev).
318 * This field is 0 if this information is not available. */
319 RTDEV INodeIdDevice;
320
321 /** The unique identifier (within the filesystem) of this filesystem object (st_ino).
322 * Together with INodeIdDevice, this field can be used as a OS wide unique id
323 * when both their values are not 0.
324 * This field is 0 if the information is not available.
325 *
326 * @remarks The special '..' dir always shows up with 0 on NTFS/Windows. */
327 RTINODE INodeId;
328
329 /** User flags (st_flags).
330 * This field is 0 if this information is not available. */
331 uint32_t fFlags;
332
333 /** The current generation number (st_gen).
334 * This field is 0 if this information is not available. */
335 uint32_t GenerationId;
336
337 /** The device number of a character or block device type object (st_rdev).
338 * This field is 0 if the file isn't of a character or block device type and
339 * when the OS doesn't subscribe to the major+minor device idenfication scheme. */
340 RTDEV Device;
341} RTFSOBJATTRUNIX;
342
343
344/**
345 * Additional Unix Attributes (RTFSOBJATTRADD_UNIX_OWNER).
346 *
347 * @remarks This interface is mainly for TAR.
348 */
349typedef struct RTFSOBJATTRUNIXOWNER
350{
351 /** The user owning the filesystem object (st_uid).
352 * This field is NIL_UID if not supported. */
353 RTUID uid;
354 /** The user name.
355 * Empty if not available or not supported, truncated if too long. */
356 char szName[RTFSOBJATTRUNION_MAX_SIZE - sizeof(RTUID)];
357} RTFSOBJATTRUNIXOWNER;
358
359
360/**
361 * Additional Unix Attributes (RTFSOBJATTRADD_UNIX_GROUP).
362 *
363 * @remarks This interface is mainly for TAR.
364 */
365typedef struct RTFSOBJATTRUNIXGROUP
366{
367 /** The user owning the filesystem object (st_uid).
368 * This field is NIL_GID if not supported. */
369 RTGID gid;
370 /** The group name.
371 * Empty if not available or not supported, truncated if too long. */
372 char szName[RTFSOBJATTRUNION_MAX_SIZE - sizeof(RTGID)];
373} RTFSOBJATTRUNIXGROUP;
374
375
376/**
377 * Filesystem object attributes.
378 */
379typedef struct RTFSOBJATTR
380{
381 /** Mode flags (st_mode). RTFS_UNIX_*, RTFS_TYPE_*, and RTFS_DOS_*. */
382 RTFMODE fMode;
383
384 /** The additional attributes available. */
385 RTFSOBJATTRADD enmAdditional;
386
387 /**
388 * Additional attributes.
389 *
390 * Unless explicitly specified to an API, the API can provide additional
391 * data as it is provided by the underlying OS.
392 */
393 union RTFSOBJATTRUNION
394 {
395 /** Additional Unix Attributes - RTFSOBJATTRADD_UNIX. */
396 RTFSOBJATTRUNIX Unix;
397 /** Additional Unix Owner Attributes - RTFSOBJATTRADD_UNIX_OWNER. */
398 RTFSOBJATTRUNIXOWNER UnixOwner;
399 /** Additional Unix Group Attributes - RTFSOBJATTRADD_UNIX_GROUP. */
400 RTFSOBJATTRUNIXGROUP UnixGroup;
401
402 /**
403 * Extended attribute size is available when RTFS_DOS_HAVE_EA_SIZE is set.
404 */
405 struct RTFSOBJATTREASIZE
406 {
407 /** Size of EAs. */
408 RTFOFF cb;
409 } EASize;
410 /** Reserved space. */
411 uint8_t abReserveSpace[128];
412 } u;
413} RTFSOBJATTR;
414/** Pointer to a filesystem object attributes structure. */
415typedef RTFSOBJATTR *PRTFSOBJATTR;
416/** Pointer to a const filesystem object attributes structure. */
417typedef const RTFSOBJATTR *PCRTFSOBJATTR;
418
419
420/**
421 * Filesystem object information structure.
422 *
423 * This is returned by the RTPathQueryInfo(), RTFileQueryInfo() and RTDirRead() APIs.
424 */
425typedef struct RTFSOBJINFO
426{
427 /** Logical size (st_size).
428 * For normal files this is the size of the file.
429 * For symbolic links, this is the length of the path name contained
430 * in the symbolic link.
431 * For other objects this fields needs to be specified.
432 */
433 RTFOFF cbObject;
434
435 /** Disk allocation size (st_blocks * DEV_BSIZE). */
436 RTFOFF cbAllocated;
437
438 /** Time of last access (st_atime). */
439 RTTIMESPEC AccessTime;
440
441 /** Time of last data modification (st_mtime). */
442 RTTIMESPEC ModificationTime;
443
444 /** Time of last status change (st_ctime).
445 * If not available this is set to ModificationTime.
446 */
447 RTTIMESPEC ChangeTime;
448
449 /** Time of file birth (st_birthtime).
450 * If not available this is set to ChangeTime.
451 */
452 RTTIMESPEC BirthTime;
453
454 /** Attributes. */
455 RTFSOBJATTR Attr;
456
457} RTFSOBJINFO;
458/** Pointer to a filesystem object information structure. */
459typedef RTFSOBJINFO *PRTFSOBJINFO;
460/** Pointer to a const filesystem object information structure. */
461typedef const RTFSOBJINFO *PCRTFSOBJINFO;
462
463
464#ifdef IN_RING3
465
466/**
467 * Query the sizes of a filesystem.
468 *
469 * @returns iprt status code.
470 * @param pszFsPath Path within the mounted filesystem.
471 * @param pcbTotal Where to store the total filesystem space. (Optional)
472 * @param pcbFree Where to store the remaining free space in the filesystem. (Optional)
473 * @param pcbBlock Where to store the block size. (Optional)
474 * @param pcbSector Where to store the sector size. (Optional)
475 *
476 * @sa RTFileQueryFsSizes
477 */
478RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, PRTFOFF pcbTotal, RTFOFF *pcbFree,
479 uint32_t *pcbBlock, uint32_t *pcbSector);
480
481/**
482 * Query the mountpoint of a filesystem.
483 *
484 * @returns iprt status code.
485 * @returns VERR_BUFFER_OVERFLOW if cbMountpoint isn't enough.
486 * @param pszFsPath Path within the mounted filesystem.
487 * @param pszMountpoint Where to store the mountpoint path.
488 * @param cbMountpoint Size of the buffer pointed to by pszMountpoint.
489 */
490RTR3DECL(int) RTFsQueryMountpoint(const char *pszFsPath, char *pszMountpoint, size_t cbMountpoint);
491
492/**
493 * Query the label of a filesystem.
494 *
495 * @returns iprt status code.
496 * @returns VERR_BUFFER_OVERFLOW if cbLabel isn't enough.
497 * @param pszFsPath Path within the mounted filesystem.
498 * @param pszLabel Where to store the label.
499 * @param cbLabel Size of the buffer pointed to by pszLabel.
500 */
501RTR3DECL(int) RTFsQueryLabel(const char *pszFsPath, char *pszLabel, size_t cbLabel);
502
503/**
504 * Query the serial number of a filesystem.
505 *
506 * @returns iprt status code.
507 * @param pszFsPath Path within the mounted filesystem.
508 * @param pu32Serial Where to store the serial number.
509 */
510RTR3DECL(int) RTFsQuerySerial(const char *pszFsPath, uint32_t *pu32Serial);
511
512/**
513 * Query the name of the filesystem driver.
514 *
515 * @returns iprt status code.
516 * @returns VERR_BUFFER_OVERFLOW if cbFsDriver isn't enough.
517 * @param pszFsPath Path within the mounted filesystem.
518 * @param pszFsDriver Where to store the filesystem driver name.
519 * @param cbFsDriver Size of the buffer pointed to by pszFsDriver.
520 */
521RTR3DECL(int) RTFsQueryDriver(const char *pszFsPath, char *pszFsDriver, size_t cbFsDriver);
522
523/**
524 * Query the name of the filesystem the file is located on.
525 *
526 * @returns iprt status code.
527 * @param pszFsPath Path within the mounted filesystem. It must exist.
528 * In case this is a symlink, the file it refers to is
529 * evaluated.
530 * @param penmType Where to store the filesystem type, this is always
531 * set. See RTFSTYPE for the values.
532 */
533RTR3DECL(int) RTFsQueryType(const char *pszFsPath, PRTFSTYPE penmType);
534
535#endif /* IN_RING3 */
536
537/**
538 * Gets the name of a filesystem type.
539 *
540 * @returns Pointer to a read-only string containing the name.
541 * @param enmType A valid filesystem ID. If outside the valid range,
542 * the returned string will be pointing to a static
543 * memory buffer which will be changed on subsequent
544 * calls to this function by any thread.
545 */
546RTDECL(const char *) RTFsTypeName(RTFSTYPE enmType);
547
548/**
549 * Filesystem properties.
550 */
551typedef struct RTFSPROPERTIES
552{
553 /** The maximum size of a filesystem object name.
554 * This does not include the '\\0'. */
555 uint32_t cbMaxComponent;
556
557 /** True if the filesystem is remote.
558 * False if the filesystem is local. */
559 bool fRemote;
560
561 /** True if the filesystem is case sensitive.
562 * False if the filesystem is case insensitive. */
563 bool fCaseSensitive;
564
565 /** True if the filesystem is mounted read only.
566 * False if the filesystem is mounted read write. */
567 bool fReadOnly;
568
569 /** True if the filesystem can encode unicode object names.
570 * False if it can't. */
571 bool fSupportsUnicode;
572
573 /** True if the filesystem is compresses.
574 * False if it isn't or we don't know. */
575 bool fCompressed;
576
577 /** True if the filesystem compresses of individual files.
578 * False if it doesn't or we don't know. */
579 bool fFileCompression;
580
581 /** @todo more? */
582} RTFSPROPERTIES;
583/** Pointer to a filesystem properties structure. */
584typedef RTFSPROPERTIES *PRTFSPROPERTIES;
585/** Pointer to a const filesystem properties structure. */
586typedef RTFSPROPERTIES const *PCRTFSPROPERTIES;
587
588#ifdef IN_RING3
589
590/**
591 * Query the properties of a mounted filesystem.
592 *
593 * @returns iprt status code.
594 * @param pszFsPath Path within the mounted filesystem.
595 * @param pProperties Where to store the properties.
596 */
597RTR3DECL(int) RTFsQueryProperties(const char *pszFsPath, PRTFSPROPERTIES pProperties);
598
599/**
600 * Checks if the given volume is case sensitive or not.
601 *
602 * This may be misleading in some cases as we lack the necessary APIs to query
603 * the information on some system (or choose not to use them) and are instead
604 * returning the general position on case sensitive file name of the system.
605 *
606 * @returns @c true if case sensitive, @c false if not.
607 * @param pszFsPath Path within the mounted file system.
608 */
609RTR3DECL(bool) RTFsIsCaseSensitive(const char *pszFsPath);
610
611/**
612 * Mountpoint enumerator callback.
613 *
614 * @returns iprt status code. Failure terminates the enumeration.
615 * @param pszMountpoint The mountpoint name.
616 * @param pvUser The user argument.
617 */
618typedef DECLCALLBACK(int) FNRTFSMOUNTPOINTENUM(const char *pszMountpoint, void *pvUser);
619/** Pointer to a FNRTFSMOUNTPOINTENUM(). */
620typedef FNRTFSMOUNTPOINTENUM *PFNRTFSMOUNTPOINTENUM;
621
622/**
623 * Enumerate mount points.
624 *
625 * @returns iprt status code.
626 * @param pfnCallback The callback function.
627 * @param pvUser The user argument to the callback.
628 */
629RTR3DECL(int) RTFsMountpointsEnum(PFNRTFSMOUNTPOINTENUM pfnCallback, void *pvUser);
630
631
632#endif /* IN_RING3 */
633
634/** @} */
635
636RT_C_DECLS_END
637
638#endif /* !___iprt_fs_h */
639
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