VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/posix/fileio-posix.cpp@ 35080

Last change on this file since 35080 was 34579, checked in by vboxsync, 14 years ago

Completed the extension pack renaming. Some bugfixes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 18.5 KB
Line 
1/* $Id: fileio-posix.cpp 34579 2010-12-01 15:45:02Z vboxsync $ */
2/** @file
3 * IPRT - File I/O, POSIX, Part 1.
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*******************************************************************************
29* Header Files *
30*******************************************************************************/
31#define LOG_GROUP RTLOGGROUP_FILE
32
33#include <errno.h>
34#include <sys/stat.h>
35#include <sys/types.h>
36#include <sys/ioctl.h>
37#include <sys/fcntl.h>
38#include <fcntl.h>
39#ifdef _MSC_VER
40# include <io.h>
41# include <stdio.h>
42#else
43# include <unistd.h>
44# include <sys/time.h>
45#endif
46#ifdef RT_OS_LINUX
47# include <sys/file.h>
48#endif
49#if defined(RT_OS_OS2) && (!defined(__INNOTEK_LIBC__) || __INNOTEK_LIBC__ < 0x006)
50# include <io.h>
51#endif
52
53#include <iprt/file.h>
54#include <iprt/path.h>
55#include <iprt/assert.h>
56#include <iprt/string.h>
57#include <iprt/err.h>
58#include <iprt/log.h>
59#include "internal/file.h"
60#include "internal/fs.h"
61#include "internal/path.h"
62
63
64
65/*******************************************************************************
66* Defined Constants And Macros *
67*******************************************************************************/
68/** Default file permissions for newly created files. */
69#if defined(S_IRUSR) && defined(S_IWUSR)
70# define RT_FILE_PERMISSION (S_IRUSR | S_IWUSR)
71#else
72# define RT_FILE_PERMISSION (00600)
73#endif
74
75
76RTDECL(bool) RTFileExists(const char *pszPath)
77{
78 bool fRc = false;
79 char const *pszNativePath;
80 int rc = rtPathToNative(&pszNativePath, pszPath, NULL);
81 if (RT_SUCCESS(rc))
82 {
83 struct stat s;
84 fRc = !stat(pszNativePath, &s)
85 && S_ISREG(s.st_mode);
86
87 rtPathFreeNative(pszNativePath, pszPath);
88 }
89
90 LogFlow(("RTFileExists(%p={%s}): returns %RTbool\n", pszPath, pszPath, fRc));
91 return fRc;
92}
93
94
95RTR3DECL(int) RTFileOpen(PRTFILE pFile, const char *pszFilename, uint32_t fOpen)
96{
97 /*
98 * Validate input.
99 */
100 AssertPtrReturn(pFile, VERR_INVALID_POINTER);
101 *pFile = NIL_RTFILE;
102 AssertPtrReturn(pszFilename, VERR_INVALID_POINTER);
103
104 /*
105 * Merge forced open flags and validate them.
106 */
107 int rc = rtFileRecalcAndValidateFlags(&fOpen);
108 if (RT_FAILURE(rc))
109 return rc;
110#ifndef O_NONBLOCK
111 if (fOpen & RTFILE_O_NON_BLOCK)
112 {
113 AssertMsgFailed(("Invalid parameters! fOpen=%#x\n", fOpen));
114 return VERR_INVALID_PARAMETER;
115 }
116#endif
117
118 /*
119 * Calculate open mode flags.
120 */
121 int fOpenMode = 0;
122#ifdef O_BINARY
123 fOpenMode |= O_BINARY; /* (pc) */
124#endif
125#ifdef O_LARGEFILE
126 fOpenMode |= O_LARGEFILE; /* (linux, solaris) */
127#endif
128#ifdef O_NOINHERIT
129 if (!(fOpen & RTFILE_O_INHERIT))
130 fOpenMode |= O_NOINHERIT;
131#endif
132#ifdef O_CLOEXEC
133 static int s_fHave_O_CLOEXEC = 0; /* {-1,0,1}; since Linux 2.6.23 */
134 if (!(fOpen & RTFILE_O_INHERIT) && s_fHave_O_CLOEXEC >= 0)
135 fOpenMode |= O_CLOEXEC;
136#endif
137#ifdef O_NONBLOCK
138 if (fOpen & RTFILE_O_NON_BLOCK)
139 fOpenMode |= O_NONBLOCK;
140#endif
141#ifdef O_SYNC
142 if (fOpen & RTFILE_O_WRITE_THROUGH)
143 fOpenMode |= O_SYNC;
144#endif
145#if defined(O_DIRECT) && defined(RT_OS_LINUX)
146 /* O_DIRECT is mandatory to get async I/O working on Linux. */
147 if (fOpen & RTFILE_O_ASYNC_IO)
148 fOpenMode |= O_DIRECT;
149#endif
150#if defined(O_DIRECT) && (defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD))
151 /* Disable the kernel cache. */
152 if (fOpen & RTFILE_O_NO_CACHE)
153 fOpenMode |= O_DIRECT;
154#endif
155
156 /* create/truncate file */
157 switch (fOpen & RTFILE_O_ACTION_MASK)
158 {
159 case RTFILE_O_OPEN: break;
160 case RTFILE_O_OPEN_CREATE: fOpenMode |= O_CREAT; break;
161 case RTFILE_O_CREATE: fOpenMode |= O_CREAT | O_EXCL; break;
162 case RTFILE_O_CREATE_REPLACE: fOpenMode |= O_CREAT | O_TRUNC; break; /** @todo replacing needs fixing, this is *not* a 1:1 mapping! */
163 }
164 if (fOpen & RTFILE_O_TRUNCATE)
165 fOpenMode |= O_TRUNC;
166
167 switch (fOpen & RTFILE_O_ACCESS_MASK)
168 {
169 case RTFILE_O_READ:
170 fOpenMode |= O_RDONLY; /* RTFILE_O_APPEND is ignored. */
171 break;
172 case RTFILE_O_WRITE:
173 fOpenMode |= fOpen & RTFILE_O_APPEND ? O_APPEND | O_WRONLY : O_WRONLY;
174 break;
175 case RTFILE_O_READWRITE:
176 fOpenMode |= fOpen & RTFILE_O_APPEND ? O_APPEND | O_RDWR : O_RDWR;
177 break;
178 default:
179 AssertMsgFailed(("RTFileOpen received an invalid RW value, fOpen=%#x\n", fOpen));
180 return VERR_INVALID_PARAMETER;
181 }
182
183 /* File mode. */
184 int fMode = (fOpen & RTFILE_O_CREATE_MODE_MASK)
185 ? (fOpen & RTFILE_O_CREATE_MODE_MASK) >> RTFILE_O_CREATE_MODE_SHIFT
186 : RT_FILE_PERMISSION;
187
188 /** @todo sharing! */
189
190 /*
191 * Open/create the file.
192 */
193 char const *pszNativeFilename;
194 rc = rtPathToNative(&pszNativeFilename, pszFilename, NULL);
195 if (RT_FAILURE(rc))
196 return (rc);
197
198 int fh = open(pszNativeFilename, fOpenMode, fMode);
199 int iErr = errno;
200
201#ifdef O_CLOEXEC
202 if ( (fOpenMode & O_CLOEXEC)
203 && s_fHave_O_CLOEXEC == 0)
204 {
205 if (fh < 0 && iErr == EINVAL)
206 {
207 s_fHave_O_CLOEXEC = -1;
208 fh = open(pszNativeFilename, fOpenMode, fMode);
209 iErr = errno;
210 }
211 else if (fh >= 0)
212 s_fHave_O_CLOEXEC = fcntl(fh, F_GETFD, 0) > 0 ? 1 : -1;
213 }
214#endif
215
216 rtPathFreeNative(pszNativeFilename, pszFilename);
217 if (fh >= 0)
218 {
219 iErr = 0;
220
221 /*
222 * Mark the file handle close on exec, unless inherit is specified.
223 */
224 if ( !(fOpen & RTFILE_O_INHERIT)
225#ifdef O_NOINHERIT
226 && !(fOpenMode & O_NOINHERIT) /* Take care since it might be a zero value dummy. */
227#endif
228#ifdef O_CLOEXEC
229 && s_fHave_O_CLOEXEC <= 0
230#endif
231 )
232 iErr = fcntl(fh, F_SETFD, FD_CLOEXEC) >= 0 ? 0 : errno;
233
234 /*
235 * Switch direct I/O on now if requested and required.
236 */
237#if defined(RT_OS_DARWIN) \
238 || (defined(RT_OS_SOLARIS) && !defined(IN_GUEST))
239 if (iErr == 0 && (fOpen & RTFILE_O_NO_CACHE))
240 {
241# if defined(RT_OS_DARWIN)
242 iErr = fcntl(fh, F_NOCACHE, 1) >= 0 ? 0 : errno;
243# else
244 iErr = directio(fh, DIRECTIO_ON) >= 0 ? 0 : errno;
245# endif
246 }
247#endif
248
249 /*
250 * Implement / emulate file sharing.
251 *
252 * We need another mode which allows skipping this stuff completely
253 * and do things the UNIX way. So for the present this is just a debug
254 * aid that can be enabled by developers too lazy to test on Windows.
255 */
256#if 0 && defined(RT_OS_LINUX)
257 if (iErr == 0)
258 {
259 /* This approach doesn't work because only knfsd checks for these
260 buggers. :-( */
261 int iLockOp;
262 switch (fOpen & RTFILE_O_DENY_MASK)
263 {
264 default:
265 AssertFailed();
266 case RTFILE_O_DENY_NONE:
267 case RTFILE_O_DENY_NOT_DELETE:
268 iLockOp = LOCK_MAND | LOCK_READ | LOCK_WRITE;
269 break;
270 case RTFILE_O_DENY_READ:
271 case RTFILE_O_DENY_READ | RTFILE_O_DENY_NOT_DELETE:
272 iLockOp = LOCK_MAND | LOCK_WRITE;
273 break;
274 case RTFILE_O_DENY_WRITE:
275 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_NOT_DELETE:
276 iLockOp = LOCK_MAND | LOCK_READ;
277 break;
278 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_READ:
279 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_READ | RTFILE_O_DENY_NOT_DELETE:
280 iLockOp = LOCK_MAND;
281 break;
282 }
283 iErr = flock(fh, iLockOp | LOCK_NB);
284 if (iErr != 0)
285 iErr = errno == EAGAIN ? ETXTBSY : 0;
286 }
287#endif /* 0 && RT_OS_LINUX */
288#if defined(DEBUG_bird) && !defined(RT_OS_SOLARIS)
289 if (iErr == 0)
290 {
291 /* This emulation is incomplete but useful. */
292 switch (fOpen & RTFILE_O_DENY_MASK)
293 {
294 default:
295 AssertFailed();
296 case RTFILE_O_DENY_NONE:
297 case RTFILE_O_DENY_NOT_DELETE:
298 case RTFILE_O_DENY_READ:
299 case RTFILE_O_DENY_READ | RTFILE_O_DENY_NOT_DELETE:
300 break;
301 case RTFILE_O_DENY_WRITE:
302 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_NOT_DELETE:
303 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_READ:
304 case RTFILE_O_DENY_WRITE | RTFILE_O_DENY_READ | RTFILE_O_DENY_NOT_DELETE:
305 if (fOpen & RTFILE_O_WRITE)
306 {
307 iErr = flock(fh, LOCK_EX | LOCK_NB);
308 if (iErr != 0)
309 iErr = errno == EAGAIN ? ETXTBSY : 0;
310 }
311 break;
312 }
313 }
314#endif
315#ifdef RT_OS_SOLARIS
316 /** @todo Use fshare_t and associates, it's a perfect match. see sys/fcntl.h */
317#endif
318
319 /*
320 * We're done.
321 */
322 if (iErr == 0)
323 {
324 *pFile = (RTFILE)fh;
325 Assert((int)*pFile == fh);
326 LogFlow(("RTFileOpen(%p:{%RTfile}, %p:{%s}, %#x): returns %Rrc\n",
327 pFile, *pFile, pszFilename, pszFilename, fOpen, rc));
328 return VINF_SUCCESS;
329 }
330
331 close(fh);
332 }
333 return RTErrConvertFromErrno(iErr);
334}
335
336
337RTR3DECL(int) RTFileOpenBitBucket(PRTFILE phFile, uint32_t fAccess)
338{
339 AssertReturn( fAccess == RTFILE_O_READ
340 || fAccess == RTFILE_O_WRITE
341 || fAccess == RTFILE_O_READWRITE,
342 VERR_INVALID_PARAMETER);
343 return RTFileOpen(phFile, "/dev/null", fAccess | RTFILE_O_DENY_NONE | RTFILE_O_OPEN);
344}
345
346
347RTR3DECL(int) RTFileClose(RTFILE File)
348{
349 if (File == NIL_RTFILE)
350 return VINF_SUCCESS;
351 if (close((int)File) == 0)
352 return VINF_SUCCESS;
353 return RTErrConvertFromErrno(errno);
354}
355
356
357RTR3DECL(int) RTFileFromNative(PRTFILE pFile, RTHCINTPTR uNative)
358{
359 if ( uNative < 0
360 || (RTFILE)uNative != (RTUINTPTR)uNative)
361 {
362 AssertMsgFailed(("%p\n", uNative));
363 *pFile = NIL_RTFILE;
364 return VERR_INVALID_HANDLE;
365 }
366 *pFile = (RTFILE)uNative;
367 return VINF_SUCCESS;
368}
369
370
371RTR3DECL(RTHCINTPTR) RTFileToNative(RTFILE File)
372{
373 AssertReturn(File != NIL_RTFILE, -1);
374 return (RTHCINTPTR)File;
375}
376
377
378RTR3DECL(int) RTFileDelete(const char *pszFilename)
379{
380 char const *pszNativeFilename;
381 int rc = rtPathToNative(&pszNativeFilename, pszFilename, NULL);
382 if (RT_SUCCESS(rc))
383 {
384 if (unlink(pszNativeFilename) != 0)
385 rc = RTErrConvertFromErrno(errno);
386 rtPathFreeNative(pszNativeFilename, pszFilename);
387 }
388 return rc;
389}
390
391
392RTR3DECL(int) RTFileSeek(RTFILE File, int64_t offSeek, unsigned uMethod, uint64_t *poffActual)
393{
394 static const unsigned aSeekRecode[] =
395 {
396 SEEK_SET,
397 SEEK_CUR,
398 SEEK_END,
399 };
400
401 /*
402 * Validate input.
403 */
404 if (uMethod > RTFILE_SEEK_END)
405 {
406 AssertMsgFailed(("Invalid uMethod=%d\n", uMethod));
407 return VERR_INVALID_PARAMETER;
408 }
409
410 /* check that within off_t range. */
411 if ( sizeof(off_t) < sizeof(offSeek)
412 && ( (offSeek > 0 && (unsigned)(offSeek >> 32) != 0)
413 || (offSeek < 0 && (unsigned)(-offSeek >> 32) != 0)))
414 {
415 AssertMsgFailed(("64-bit search not supported\n"));
416 return VERR_NOT_SUPPORTED;
417 }
418
419 off_t offCurrent = lseek((int)File, (off_t)offSeek, aSeekRecode[uMethod]);
420 if (offCurrent != ~0)
421 {
422 if (poffActual)
423 *poffActual = (uint64_t)offCurrent;
424 return VINF_SUCCESS;
425 }
426 return RTErrConvertFromErrno(errno);
427}
428
429
430RTR3DECL(int) RTFileRead(RTFILE File, void *pvBuf, size_t cbToRead, size_t *pcbRead)
431{
432 if (cbToRead <= 0)
433 return VINF_SUCCESS;
434
435 /*
436 * Attempt read.
437 */
438 ssize_t cbRead = read((int)File, pvBuf, cbToRead);
439 if (cbRead >= 0)
440 {
441 if (pcbRead)
442 /* caller can handle partial read. */
443 *pcbRead = cbRead;
444 else
445 {
446 /* Caller expects all to be read. */
447 while ((ssize_t)cbToRead > cbRead)
448 {
449 ssize_t cbReadPart = read((int)File, (char*)pvBuf + cbRead, cbToRead - cbRead);
450 if (cbReadPart <= 0)
451 {
452 if (cbReadPart == 0)
453 return VERR_EOF;
454 return RTErrConvertFromErrno(errno);
455 }
456 cbRead += cbReadPart;
457 }
458 }
459 return VINF_SUCCESS;
460 }
461
462 return RTErrConvertFromErrno(errno);
463}
464
465
466RTR3DECL(int) RTFileWrite(RTFILE File, const void *pvBuf, size_t cbToWrite, size_t *pcbWritten)
467{
468 if (cbToWrite <= 0)
469 return VINF_SUCCESS;
470
471 /*
472 * Attempt write.
473 */
474 ssize_t cbWritten = write((int)File, pvBuf, cbToWrite);
475 if (cbWritten >= 0)
476 {
477 if (pcbWritten)
478 /* caller can handle partial write. */
479 *pcbWritten = cbWritten;
480 else
481 {
482 /* Caller expects all to be write. */
483 while ((ssize_t)cbToWrite > cbWritten)
484 {
485 ssize_t cbWrittenPart = write((int)File, (const char *)pvBuf + cbWritten, cbToWrite - cbWritten);
486 if (cbWrittenPart <= 0)
487 return RTErrConvertFromErrno(errno);
488 cbWritten += cbWrittenPart;
489 }
490 }
491 return VINF_SUCCESS;
492 }
493 return RTErrConvertFromErrno(errno);
494}
495
496
497RTR3DECL(int) RTFileSetSize(RTFILE File, uint64_t cbSize)
498{
499 /*
500 * Validate offset.
501 */
502 if ( sizeof(off_t) < sizeof(cbSize)
503 && (cbSize >> 32) != 0)
504 {
505 AssertMsgFailed(("64-bit filesize not supported! cbSize=%lld\n", cbSize));
506 return VERR_NOT_SUPPORTED;
507 }
508
509#if defined(_MSC_VER) || (defined(RT_OS_OS2) && (!defined(__INNOTEK_LIBC__) || __INNOTEK_LIBC__ < 0x006))
510 if (chsize((int)File, (off_t)cbSize) == 0)
511#else
512 /* This relies on a non-standard feature of FreeBSD, Linux, and OS/2
513 * LIBC v0.6 and higher. (SuS doesn't define ftruncate() and size bigger
514 * than the file.)
515 */
516 if (ftruncate((int)File, (off_t)cbSize) == 0)
517#endif
518 return VINF_SUCCESS;
519 return RTErrConvertFromErrno(errno);
520}
521
522
523RTR3DECL(int) RTFileGetSize(RTFILE File, uint64_t *pcbSize)
524{
525 struct stat st;
526 if (!fstat((int)File, &st))
527 {
528 *pcbSize = st.st_size;
529 return VINF_SUCCESS;
530 }
531 return RTErrConvertFromErrno(errno);
532}
533
534
535/**
536 * Determine the maximum file size.
537 *
538 * @returns IPRT status code.
539 * @param File Handle to the file.
540 * @param pcbMax Where to store the max file size.
541 * @see RTFileGetMaxSize.
542 */
543RTR3DECL(int) RTFileGetMaxSizeEx(RTFILE File, PRTFOFF pcbMax)
544{
545 /*
546 * Save the current location
547 */
548 uint64_t offOld;
549 int rc = RTFileSeek(File, 0, RTFILE_SEEK_CURRENT, &offOld);
550 if (RT_FAILURE(rc))
551 return rc;
552
553 /*
554 * Perform a binary search for the max file size.
555 */
556 uint64_t offLow = 0;
557 uint64_t offHigh = 8 * _1T; /* we don't need bigger files */
558 /** @todo Unfortunately this does not work for certain file system types,
559 * for instance cifs mounts. Even worse, statvfs.f_fsid returns 0 for such
560 * file systems. */
561 //uint64_t offHigh = INT64_MAX;
562 for (;;)
563 {
564 uint64_t cbInterval = (offHigh - offLow) >> 1;
565 if (cbInterval == 0)
566 {
567 if (pcbMax)
568 *pcbMax = offLow;
569 return RTFileSeek(File, offOld, RTFILE_SEEK_BEGIN, NULL);
570 }
571
572 rc = RTFileSeek(File, offLow + cbInterval, RTFILE_SEEK_BEGIN, NULL);
573 if (RT_FAILURE(rc))
574 offHigh = offLow + cbInterval;
575 else
576 offLow = offLow + cbInterval;
577 }
578}
579
580
581RTR3DECL(bool) RTFileIsValid(RTFILE File)
582{
583 if (File != NIL_RTFILE)
584 {
585 int fFlags = fcntl(File, F_GETFD);
586 if (fFlags >= 0)
587 return true;
588 }
589 return false;
590}
591
592
593RTR3DECL(int) RTFileFlush(RTFILE File)
594{
595 if (fsync((int)File))
596 return RTErrConvertFromErrno(errno);
597 return VINF_SUCCESS;
598}
599
600
601RTR3DECL(int) RTFileIoCtl(RTFILE File, unsigned long ulRequest, void *pvData, unsigned cbData, int *piRet)
602{
603 int rc = ioctl((int)File, ulRequest, pvData);
604 if (piRet)
605 *piRet = rc;
606 return rc >= 0 ? VINF_SUCCESS : RTErrConvertFromErrno(errno);
607}
608
609
610RTR3DECL(int) RTFileSetMode(RTFILE File, RTFMODE fMode)
611{
612 /*
613 * Normalize the mode and call the API.
614 */
615 fMode = rtFsModeNormalize(fMode, NULL, 0);
616 if (!rtFsModeIsValid(fMode))
617 return VERR_INVALID_PARAMETER;
618
619 if (fchmod((int)File, fMode & RTFS_UNIX_MASK))
620 {
621 int rc = RTErrConvertFromErrno(errno);
622 Log(("RTFileSetMode(%RTfile,%RTfmode): returns %Rrc\n", File, fMode, rc));
623 return rc;
624 }
625 return VINF_SUCCESS;
626}
627
628
629RTR3DECL(int) RTFileRename(const char *pszSrc, const char *pszDst, unsigned fRename)
630{
631 /*
632 * Validate input.
633 */
634 AssertMsgReturn(VALID_PTR(pszSrc), ("%p\n", pszSrc), VERR_INVALID_POINTER);
635 AssertMsgReturn(VALID_PTR(pszDst), ("%p\n", pszDst), VERR_INVALID_POINTER);
636 AssertMsgReturn(*pszSrc, ("%p\n", pszSrc), VERR_INVALID_PARAMETER);
637 AssertMsgReturn(*pszDst, ("%p\n", pszDst), VERR_INVALID_PARAMETER);
638 AssertMsgReturn(!(fRename & ~RTPATHRENAME_FLAGS_REPLACE), ("%#x\n", fRename), VERR_INVALID_PARAMETER);
639
640 /*
641 * Take common cause with RTPathRename.
642 */
643 int rc = rtPathPosixRename(pszSrc, pszDst, fRename, RTFS_TYPE_FILE);
644
645 LogFlow(("RTDirRename(%p:{%s}, %p:{%s}, %#x): returns %Rrc\n",
646 pszSrc, pszSrc, pszDst, pszDst, fRename, rc));
647 return rc;
648}
649
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette