VirtualBox

source: vbox/trunk/include/iprt/file.h@ 7371

Last change on this file since 7371 was 7371, checked in by vboxsync, 17 years ago

A little adjustment of the RTFILECOPY flags.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 23.3 KB
Line 
1/** @file
2 * innotek Portable Runtime - File I/O.
3 */
4
5/*
6 * Copyright (C) 2006-2007 innotek GmbH
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_file_h
27#define ___iprt_file_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31#ifdef IN_RING3
32# include <iprt/fs.h>
33#endif
34
35/** @todo rename this file to iprt/file.h */
36
37__BEGIN_DECLS
38
39/** @defgroup grp_rt_fileio RTFile - File I/O
40 * @ingroup grp_rt
41 * @{
42 */
43
44/** Platform specific text line break.
45 * @deprecated Use text I/O streams and '\\n'. See iprt/stream.h. */
46#if defined(RT_OS_OS2) || defined(RT_OS_WINDOWS)
47# define RTFILE_LINEFEED "\r\n"
48#else
49# define RTFILE_LINEFEED "\n"
50#endif
51
52
53#ifdef IN_RING3
54
55/** @name Open flags
56 * @{ */
57/** Open the file with read access. */
58#define RTFILE_O_READ 0x00000001
59/** Open the file with write access. */
60#define RTFILE_O_WRITE 0x00000002
61/** Open the file with read & write access. */
62#define RTFILE_O_READWRITE 0x00000003
63/** The file access mask.
64 * @remark The value 0 is invalid. */
65#define RTFILE_O_ACCESS_MASK 0x00000003
66
67/** Sharing mode: deny none (the default mode). */
68#define RTFILE_O_DENY_NONE 0x00000000
69/** Sharing mode: deny read. */
70#define RTFILE_O_DENY_READ 0x00000010
71/** Sharing mode: deny write. */
72#define RTFILE_O_DENY_WRITE 0x00000020
73/** Sharing mode: deny read and write. */
74#define RTFILE_O_DENY_READWRITE 0x00000030
75/** Sharing mode: deny all. */
76#define RTFILE_O_DENY_ALL RTFILE_O_DENY_READWRITE
77/** Sharing mode: do NOT deny delete (NT).
78 * @remark This might not be implemented on all platforms,
79 * and will be defaulted & ignored on those.
80 */
81#define RTFILE_O_DENY_NOT_DELETE 0x00000040
82/** Sharing mode mask. */
83#define RTFILE_O_DENY_MASK 0x00000070
84
85/** Action: Open an existing file (the default action). */
86#define RTFILE_O_OPEN 0x00000000
87/** Action: Create a new file or open an existing one. */
88#define RTFILE_O_OPEN_CREATE 0x00000100
89/** Action: Create a new a file. */
90#define RTFILE_O_CREATE 0x00000200
91/** Action: Create a new file or replace an existing one. */
92#define RTFILE_O_CREATE_REPLACE 0x00000300
93/** Action mask. */
94#define RTFILE_O_ACTION_MASK 0x00000300
95
96/** Turns off indexing of files on Windows hosts, *CREATE* only.
97 * @remark This might not be implemented on all platforms,
98 * and will be ignored on those.
99 */
100#define RTFILE_O_NOT_CONTENT_INDEXED 0x00000800
101/** Truncate the file.
102 * @remark This will not truncate files opened for read-only.
103 * @remark The trunction doesn't have to be atomically, so anyone
104 * else opening the file may be racing us. The caller is
105 * responsible for not causing this race. */
106#define RTFILE_O_TRUNCATE 0x00001000
107/** Make the handle inheritable on RTProcessCreate(/exec). */
108#define RTFILE_O_INHERIT 0x00002000
109/** Open file in non-blocking mode - non-portable.
110 * @remark This flag may not be supported on all platforms, in which
111 * case it's considered an invalid parameter.
112 */
113#define RTFILE_O_NON_BLOCK 0x00004000
114/** Write through directly to disk. Workaround to avoid iSCSI
115 * initiator deadlocks on Windows hosts.
116 * @remark This might not be implemented on all platforms,
117 * and will be ignored on those.
118 */
119#define RTFILE_O_WRITE_THROUGH 0x00008000
120/** Mask of all valid flags.
121 * @remark This doesn't validate the access mode properly.
122 */
123#define RTFILE_O_VALID_MASK 0x0000FB73
124
125/** @} */
126
127
128/**
129 * Force the use of open flags for all files opened after the setting is
130 * changed. The caller is responsible for not causing races with RTFileOpen().
131 *
132 * @returns iprt status code.
133 * @param fOpenForAccess Access mode to which the set/mask settings apply.
134 * @param fSet Open flags to be forced set.
135 * @param fMask Open flags to be masked out.
136 */
137RTR3DECL(int) RTFileSetForceFlags(unsigned fOpenForAccess, unsigned fSet, unsigned fMask);
138
139/**
140 * Open a file.
141 *
142 * @returns iprt status code.
143 * @param pFile Where to store the handle to the opened file.
144 * @param pszFilename Path to the file which is to be opened. (UTF-8)
145 * @param fOpen Open flags, i.e a combination of the RTFILE_O_* defines.
146 */
147RTR3DECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, unsigned fOpen);
148
149/**
150 * Close a file opened by RTFileOpen().
151 *
152 * @returns iprt status code.
153 * @param File The file handle to close.
154 */
155RTR3DECL(int) RTFileClose(RTFILE File);
156
157/**
158 * Delete a file.
159 *
160 * @returns iprt status code.
161 * @param pszFilename Path to the file which is to be deleted. (UTF-8)
162 * @todo This is a RTPath api!
163 */
164RTR3DECL(int) RTFileDelete(const char *pszFilename);
165
166/** @name Seek flags.
167 * @{ */
168/** Seek from the start of the file. */
169#define RTFILE_SEEK_BEGIN 0x00
170/** Seek from the current file position. */
171#define RTFILE_SEEK_CURRENT 0x01
172/** Seek from the end of the file. */
173#define RTFILE_SEEK_END 0x02
174/** @internal */
175#define RTFILE_SEEK_FIRST RTFILE_SEEK_BEGIN
176/** @internal */
177#define RTFILE_SEEK_LAST RTFILE_SEEK_END
178/** @} */
179
180
181/**
182 * Changes the read & write position in a file.
183 *
184 * @returns iprt status code.
185 * @param File Handle to the file.
186 * @param offSeek Offset to seek.
187 * @param uMethod Seek method, i.e. one of the RTFILE_SEEK_* defines.
188 * @param poffActual Where to store the new file position.
189 * NULL is allowed.
190 */
191RTR3DECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual);
192
193/**
194 * Read bytes from a file.
195 *
196 * @returns iprt status code.
197 * @param File Handle to the file.
198 * @param pvBuf Where to put the bytes we read.
199 * @param cbToRead How much to read.
200 * @param *pcbRead How much we actually read .
201 * If NULL an error will be returned for a partial read.
202 */
203RTR3DECL(int) RTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, size_t *pcbRead);
204
205/**
206 * Read bytes from a file at a given offset.
207 * This function may modify the file position.
208 *
209 * @returns iprt status code.
210 * @param File Handle to the file.
211 * @param off Where to read.
212 * @param pvBuf Where to put the bytes we read.
213 * @param cbToRead How much to read.
214 * @param *pcbRead How much we actually read .
215 * If NULL an error will be returned for a partial read.
216 */
217RTR3DECL(int) RTFileReadAt(RTFILE File, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
218
219/**
220 * Write bytes to a file.
221 *
222 * @returns iprt status code.
223 * @param File Handle to the file.
224 * @param pvBuf What to write.
225 * @param cbToWrite How much to write.
226 * @param *pcbWritten How much we actually wrote.
227 * If NULL an error will be returned for a partial write.
228 */
229RTR3DECL(int) RTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
230
231/**
232 * Write bytes to a file at a given offset.
233 * This function may modify the file position.
234 *
235 * @returns iprt status code.
236 * @param File Handle to the file.
237 * @param off Where to write.
238 * @param pvBuf What to write.
239 * @param cbToWrite How much to write.
240 * @param *pcbWritten How much we actually wrote.
241 * If NULL an error will be returned for a partial write.
242 */
243RTR3DECL(int) RTFileWriteAt(RTFILE File, RTFOFF off, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten);
244
245/**
246 * Flushes the buffers for the specified file.
247 *
248 * @returns iprt status code.
249 * @param File Handle to the file.
250 */
251RTR3DECL(int) RTFileFlush(RTFILE File);
252
253/**
254 * Set the size of the file.
255 *
256 * @returns iprt status code.
257 * @param File Handle to the file.
258 * @param cbSize The new file size.
259 */
260RTR3DECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize);
261
262/**
263 * Query the size of the file.
264 *
265 * @returns iprt status code.
266 * @param File Handle to the file.
267 * @param pcbSize Where to store the filesize.
268 */
269RTR3DECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize);
270
271/**
272 * Determine the maximum file size.
273 *
274 * @returns The max size of the file.
275 * -1 on failure, the file position is undefined.
276 * @param File Handle to the file.
277 * @see RTFileGetMaxSizeEx.
278 */
279RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
280
281/**
282 * Determine the maximum file size.
283 *
284 * @returns IPRT status code.
285 * @param File Handle to the file.
286 * @param pcbMax Where to store the max file size.
287 * @see RTFileGetMaxSize.
288 */
289RTR3DECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax);
290
291/**
292 * Determine the maximum file size depending on the file system the file is stored on.
293 *
294 * @returns The max size of the file.
295 * -1 on failure.
296 * @param File Handle to the file.
297 */
298RTR3DECL(RTFOFF) RTFileGetMaxSize(RTFILE File);
299
300/**
301 * Gets the current file position.
302 *
303 * @returns File offset.
304 * @returns ~0UUL on failure.
305 * @param File Handle to the file.
306 */
307RTDECL(uint64_t) RTFileTell(RTFILE File);
308
309/**
310 * Checks if the supplied handle is valid.
311 *
312 * @returns true if valid.
313 * @returns false if invalid.
314 * @param File The file handle
315 */
316RTR3DECL(bool) RTFileIsValid(RTFILE File);
317
318/**
319 * Copies a file.
320 *
321 * @returns VERR_ALREADY_EXISTS if the destination file exists.
322 * @returns VBox Status code.
323 *
324 * @param pszSrc The path to the source file.
325 * @param pszDst The path to the destination file.
326 * This file will be created.
327 */
328RTDECL(int) RTFileCopy(const char *pszSrc, const char *pszDst);
329
330/**
331 * Copies a file given the handles to both files.
332 *
333 * @returns VBox Status code.
334 *
335 * @param FileSrc The source file. The file position is unaltered.
336 * @param FileDst The destination file.
337 * On successful returns the file position is at the end of the file.
338 * On failures the file position and size is undefined.
339 */
340RTDECL(int) RTFileCopyByHandles(RTFILE FileSrc, RTFILE FileDst);
341
342/** Flags for RTFileCopyEx().
343 * @{ */
344/** Do not use RTFILE_O_DENY_WRITE on the source file to allow for copying files opened for writing. */
345#define RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE RT_BIT(0)
346/** Do not use RTFILE_O_DENY_WRITE on the target file. */
347#define RTFILECOPY_FLAGS_NO_DST_DENY_WRITE RT_BIT(1)
348/** Do not use RTFILE_O_DENY_WRITE on either of the two files. */
349#define RTFILECOPY_FLAGS_NO_DENY_WRITE ( RTFILECOPY_FLAGS_NO_SRC_DENY_WRITE | RTFILECOPY_FLAGS_NO_DST_DENY_WRITE )
350/** */
351#define RTFILECOPY_FLAGS_MASK UINT32_C(0x00000003)
352/** @} */
353
354/**
355 * Copies a file.
356 *
357 * @returns VERR_ALREADY_EXISTS if the destination file exists.
358 * @returns VBox Status code.
359 *
360 * @param pszSrc The path to the source file.
361 * @param pszDst The path to the destination file.
362 * This file will be created.
363 * @param fFlags Flags (RTFILECOPY_*).
364 * @param pfnProgress Pointer to callback function for reporting progress.
365 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
366 */
367RTDECL(int) RTFileCopyEx(const char *pszSrc, const char *pszDst, uint32_t fFlags, PFNRTPROGRESS pfnProgress, void *pvUser);
368
369/**
370 * Copies a file given the handles to both files and
371 * provide progress callbacks.
372 *
373 * @returns IPRT status code.
374 *
375 * @param FileSrc The source file. The file position is unaltered.
376 * @param FileDst The destination file.
377 * On successful returns the file position is at the end of the file.
378 * On failures the file position and size is undefined.
379 * @param pfnProgress Pointer to callback function for reporting progress.
380 * @param pvUser User argument to pass to pfnProgress along with the completion precentage.
381 */
382RTDECL(int) RTFileCopyByHandlesEx(RTFILE FileSrc, RTFILE FileDst, PFNRTPROGRESS pfnProgress, void *pvUser);
383
384/**
385 * Renames a file.
386 *
387 * Identical to RTPathRename except that it will ensure that the source is not a directory.
388 *
389 * @returns IPRT status code.
390 * @returns VERR_ALREADY_EXISTS if the destination file exists.
391 *
392 * @param pszSrc The path to the source file.
393 * @param pszDst The path to the destination file.
394 * This file will be created.
395 * @param fRename See RTPathRename.
396 */
397RTDECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename);
398
399
400/** @name RTFileMove flags (bit masks).
401 * @{ */
402/** Replace destination file if present. */
403#define RTFILEMOVE_FLAGS_REPLACE 0x1
404/** @} */
405
406/**
407 * Moves a file.
408 *
409 * RTFileMove differs from RTFileRename in that it works across volumes.
410 *
411 * @returns IPRT status code.
412 * @returns VERR_ALREADY_EXISTS if the destination file exists.
413 *
414 * @param pszSrc The path to the source file.
415 * @param pszDst The path to the destination file.
416 * This file will be created.
417 * @param fMove A combination of the RTFILEMOVE_* flags.
418 */
419RTDECL(int) RTFileMove(const char *pszSrc, const char *pszDst, unsigned fMove);
420
421
422/** @page pg_rt_filelock RT File locking API description
423 *
424 * File locking general rules:
425 *
426 * Region to lock or unlock can be located beyond the end of file, this can be used for
427 * growing files.
428 * Read (or Shared) locks can be acquired held by an unlimited number of processes at the
429 * same time, but a Write (or Exclusive) lock can only be acquired by one process, and
430 * cannot coexist with a Shared lock. To acquire a Read lock, a process must wait until
431 * there are no processes holding any Write locks. To acquire a Write lock, a process must
432 * wait until there are no processes holding either kind of lock.
433 * By default, RTFileLock and RTFileChangeLock calls returns error immediately if the lock
434 * can't be acquired due to conflict with other locks, however they can be called in wait mode.
435 *
436 * Differences in implementation:
437 *
438 * Win32, OS/2: Locking is mandatory, since locks are enforced by the operating system.
439 * I.e. when file region is locked in Read mode, any write in it will fail; in case of Write
440 * lock - region can be readed and writed only by lock's owner.
441 *
442 * Win32: File size change (RTFileSetSize) is not controlled by locking at all (!) in the
443 * operation system. Also see comments to RTFileChangeLock API call.
444 *
445 * Linux/Posix: By default locks in Unixes are advisory. This means that cooperating processes
446 * may use locks to coordonate access to a file between themselves, but programs are also free
447 * to ignore locks and access the file in any way they choose to.
448 *
449 * Additional reading:
450 * http://en.wikipedia.org/wiki/File_locking
451 * http://unixhelp.ed.ac.uk/CGI/man-cgi?fcntl+2
452 * http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/lockfileex.asp
453 */
454
455/** @name Lock flags (bit masks).
456 * @{ */
457/** Read access, can be shared with others. */
458#define RTFILE_LOCK_READ 0x00
459/** Write access, one at a time. */
460#define RTFILE_LOCK_WRITE 0x01
461/** Don't wait for other locks to be released. */
462#define RTFILE_LOCK_IMMEDIATELY 0x00
463/** Wait till conflicting locks have been released. */
464#define RTFILE_LOCK_WAIT 0x02
465/** Valid flags mask */
466#define RTFILE_LOCK_MASK 0x03
467/** @} */
468
469
470/**
471 * Locks a region of file for read (shared) or write (exclusive) access.
472 *
473 * @returns iprt status code.
474 * @returns VERR_FILE_LOCK_VIOLATION if lock can't be acquired.
475 * @param File Handle to the file.
476 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
477 * @param offLock Offset of lock start.
478 * @param cbLock Length of region to lock, may overlap the end of file.
479 */
480RTR3DECL(int) RTFileLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
481
482/**
483 * Changes a lock type from read to write or from write to read.
484 * The region to type change must correspond exactly to an existing locked region.
485 * If change can't be done due to locking conflict and non-blocking mode is used, error is
486 * returned and lock keeps its state (see next warning).
487 *
488 * WARNING: win32 implementation of this call is not atomic, it transforms to a pair of
489 * calls RTFileUnlock and RTFileLock. Potentially the previously acquired lock can be
490 * lost, i.e. function is called in non-blocking mode, previous lock is freed, new lock can't
491 * be acquired, and old lock (previous state) can't be acquired back too. This situation
492 * may occurs _only_ if the other process is acquiring a _write_ lock in blocking mode or
493 * in race condition with the current call.
494 * In this very bad case special error code VERR_FILE_LOCK_LOST will be returned.
495 *
496 * @returns iprt status code.
497 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
498 * @returns VERR_FILE_LOCK_VIOLATION if lock type can't be changed, lock remains its type.
499 * @returns VERR_FILE_LOCK_LOST if lock was lost, we haven't this lock anymore :(
500 * @param File Handle to the file.
501 * @param fLock Lock method and flags, see RTFILE_LOCK_* defines.
502 * @param offLock Offset of lock start.
503 * @param cbLock Length of region to lock, may overlap the end of file.
504 */
505RTR3DECL(int) RTFileChangeLock(RTFILE File, unsigned fLock, int64_t offLock, uint64_t cbLock);
506
507/**
508 * Unlocks previously locked region of file.
509 * The region to unlock must correspond exactly to an existing locked region.
510 *
511 * @returns iprt status code.
512 * @returns VERR_FILE_NOT_LOCKED if region was not locked.
513 * @param File Handle to the file.
514 * @param offLock Offset of lock start.
515 * @param cbLock Length of region to unlock, may overlap the end of file.
516 */
517RTR3DECL(int) RTFileUnlock(RTFILE File, int64_t offLock, uint64_t cbLock);
518
519
520/**
521 * Query information about an open file.
522 *
523 * @returns iprt status code.
524 *
525 * @param File Handle to the file.
526 * @param pObjInfo Object information structure to be filled on successful return.
527 * @param enmAdditionalAttribs Which set of additional attributes to request.
528 * Use RTFSOBJATTRADD_NOTHING if this doesn't matter.
529 */
530RTR3DECL(int) RTFileQueryInfo(RTFILE File, PRTFSOBJINFO pObjInfo, RTFSOBJATTRADD enmAdditionalAttribs);
531
532/**
533 * Changes one or more of the timestamps associated of file system object.
534 *
535 * @returns iprt status code.
536 * @returns VERR_NOT_SUPPORTED is returned if the operation isn't supported by the OS.
537 *
538 * @param File Handle to the file.
539 * @param pAccessTime Pointer to the new access time. NULL if not to be changed.
540 * @param pModificationTime Pointer to the new modifcation time. NULL if not to be changed.
541 * @param pChangeTime Pointer to the new change time. NULL if not to be changed.
542 * @param pBirthTime Pointer to the new time of birth. NULL if not to be changed.
543 *
544 * @remark The file system might not implement all these time attributes,
545 * the API will ignore the ones which aren't supported.
546 *
547 * @remark The file system might not implement the time resolution
548 * employed by this interface, the time will be chopped to fit.
549 *
550 * @remark The file system may update the change time even if it's
551 * not specified.
552 *
553 * @remark POSIX can only set Access & Modification and will always set both.
554 */
555RTR3DECL(int) RTFileSetTimes(RTFILE File, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime,
556 PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime);
557
558/**
559 * Gets one or more of the timestamps associated of file system object.
560 *
561 * @returns iprt status code.
562 * @param File Handle to the file.
563 * @param pAccessTime Where to store the access time. NULL is ok.
564 * @param pModificationTime Where to store the modifcation time. NULL is ok.
565 * @param pChangeTime Where to store the change time. NULL is ok.
566 * @param pBirthTime Where to store the time of birth. NULL is ok.
567 *
568 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileSetTimes().
569 */
570RTR3DECL(int) RTFileGetTimes(RTFILE File, PRTTIMESPEC pAccessTime, PRTTIMESPEC pModificationTime,
571 PRTTIMESPEC pChangeTime, PRTTIMESPEC pBirthTime);
572
573/**
574 * Changes the mode flags of an open file.
575 *
576 * The API requires at least one of the mode flag sets (Unix/Dos) to
577 * be set. The type is ignored.
578 *
579 * @returns iprt status code.
580 * @param File Handle to the file.
581 * @param fMode The new file mode, see @ref grp_rt_fs for details.
582 */
583RTR3DECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode);
584
585/**
586 * Gets the mode flags of an open file.
587 *
588 * @returns iprt status code.
589 * @param File Handle to the file.
590 * @param pfMode Where to store the file mode, see @ref grp_rt_fs for details.
591 *
592 * @remark This is wrapper around RTFileQueryInfo()
593 * and exists to complement RTFileSetMode().
594 */
595RTR3DECL(int) RTFileGetMode(RTFILE File, uint32_t *pfMode);
596
597/**
598 * Changes the owner and/or group of an open file.
599 *
600 * @returns iprt status code.
601 * @param File Handle to the file.
602 * @param uid The new file owner user id. Use -1 (or ~0) to leave this unchanged.
603 * @param gid The new group id. Use -1 (or ~0) to leave this unchanged.
604 */
605RTR3DECL(int) RTFileSetOwner(RTFILE File, uint32_t uid, uint32_t gid);
606
607/**
608 * Gets the owner and/or group of an open file.
609 *
610 * @returns iprt status code.
611 * @param File Handle to the file.
612 * @param pUid Where to store the owner user id. NULL is ok.
613 * @param pGid Where to store the group id. NULL is ok.
614 *
615 * @remark This is wrapper around RTFileQueryInfo() and exists to complement RTFileGetOwner().
616 */
617RTR3DECL(int) RTFileGetOwner(RTFILE File, uint32_t *pUid, uint32_t *pGid);
618
619/**
620 * Executes an IOCTL on a file descriptor.
621 *
622 * This function is currently only available in L4 and posix environments.
623 * Attemps at calling it from code shared with any other platforms will break things!
624 *
625 * The rational for defining this API is to simplify L4 porting of audio drivers,
626 * and to remove some of the assumptions on RTFILE being a file descriptor on
627 * platforms using the posix file implementation.
628 *
629 * @returns iprt status code.
630 * @param File Handle to the file.
631 * @param iRequest IOCTL request to carry out.
632 * @param pvData IOCTL data.
633 * @param cbData Size of the IOCTL data.
634 * @param piRet Return value of the IOCTL request.
635 */
636RTR3DECL(int) RTFileIoCtl(RTFILE File, int iRequest, void *pvData, unsigned cbData, int *piRet);
637
638#endif /* IN_RING3 */
639
640/** @} */
641
642__END_DECLS
643
644#endif
645
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