VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/darwin/RTFileQuerySectorSize-darwin.cpp@ 86672

Last change on this file since 86672 was 85875, checked in by vboxsync, 4 years ago

Main: bugref:9224: Added RTFileQuerySectorSize into IPRT

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/* $Id: RTFileQuerySectorSize-darwin.cpp 85875 2020-08-24 16:22:01Z vboxsync $ */
2/** @file
3 * IPRT - RTFileQuerySectorSize, Darwin.
4 */
5
6/*
7 * Copyright (C) 2017-2020 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#include "internal/iprt.h"
32#include <iprt/file.h>
33
34#include <iprt/assert.h>
35#include <iprt/errcore.h>
36
37#include <sys/stat.h>
38#include <sys/disk.h>
39#include <sys/ioctl.h>
40#include <fcntl.h>
41#include <errno.h>
42
43
44RTDECL(int) RTFileQuerySectorSize(RTFILE hFile, uint32_t *pcbSector)
45{
46 AssertPtrReturn(pcbSector, VERR_INVALID_PARAMETER);
47
48 int rc;
49 int const fd = (int)RTFileToNative(hFile);
50 struct stat DevStat = { 0 };
51 if (!fstat(fd, &DevStat))
52 {
53 if (S_ISBLK(DevStat.st_mode) || S_ISCHR(DevStat.st_mode))
54 {
55 uint32_t cbLogicalBlock = 0;
56 if (!ioctl(fd, DKIOCGETBLOCKSIZE, &cbLogicalBlock))
57 {
58 AssertReturn(cbLogicalBlock > 0, VERR_INVALID_FUNCTION);
59 *pcbSector = cbLogicalBlock;
60 return VINF_SUCCESS;
61 }
62
63 rc = RTErrConvertFromErrno(errno);
64 AssertMsgFailed(("ioctl failed: errno=%d / %Rrc\n", errno, rc));
65 }
66 else
67 {
68 AssertMsgFailed(("not a block or character device.\n"));
69 rc = VERR_INVALID_FUNCTION;
70 }
71 }
72 else
73 {
74 rc = RTErrConvertFromErrno(errno);
75 AssertMsgFailed(("fstat failed: errno=%d / %Rrc\n", errno, rc));
76 }
77 return rc;
78}
79
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