s3:net_idmap_delete do not lock two records at the same time
[Samba/gebeck_regimport.git] / lib / util / fsusage.c
blobbf07baf029615731864b8275b9618b6c1324569c
1 /*
2 Unix SMB/CIFS implementation.
3 functions to calculate the free disk space
4 Copyright (C) Andrew Tridgell 1998-2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "system/filesys.h"
23 /**
24 * @file
25 * @brief Utility functions for getting the amount of free disk space
28 /* Return the number of TOSIZE-byte blocks used by
29 BLOCKS FROMSIZE-byte blocks, rounding away from zero.
31 static uint64_t adjust_blocks(uint64_t blocks, uint64_t fromsize, uint64_t tosize)
33 if (fromsize == tosize) { /* e.g., from 512 to 512 */
34 return blocks;
35 } else if (fromsize > tosize) { /* e.g., from 2048 to 512 */
36 return blocks * (fromsize / tosize);
37 } else { /* e.g., from 256 to 512 */
38 /* Protect against broken filesystems... */
39 if (fromsize == 0) {
40 fromsize = tosize;
42 return (blocks + 1) / (tosize / fromsize);
46 /**
47 * Retrieve amount of free disk space.
48 * this does all of the system specific guff to get the free disk space.
49 * It is derived from code in the GNU fileutils package, but has been
50 * considerably mangled for use here
52 * results are returned in *dfree and *dsize, in 512 byte units
54 _PUBLIC_ int sys_fsusage(const char *path, uint64_t *dfree, uint64_t *dsize)
56 #ifdef STAT_STATFS3_OSF1
57 #define CONVERT_BLOCKS(B) adjust_blocks ((uint64_t)(B), (uint64_t)fsd.f_fsize, (uint64_t)512)
58 struct statfs fsd;
60 if (statfs (path, &fsd, sizeof (struct statfs)) != 0)
61 return -1;
62 #endif /* STAT_STATFS3_OSF1 */
64 #ifdef STAT_STATFS2_FS_DATA /* Ultrix */
65 #define CONVERT_BLOCKS(B) adjust_blocks ((uint64_t)(B), (uint64_t)1024, (uint64_t)512)
66 struct fs_data fsd;
68 if (statfs (path, &fsd) != 1)
69 return -1;
71 (*dsize) = CONVERT_BLOCKS (fsd.fd_req.btot);
72 (*dfree) = CONVERT_BLOCKS (fsd.fd_req.bfreen);
73 #endif /* STAT_STATFS2_FS_DATA */
75 #ifdef STAT_STATFS2_BSIZE /* 4.3BSD, SunOS 4, HP-UX, AIX */
76 #define CONVERT_BLOCKS(B) adjust_blocks ((uint64_t)(B), (uint64_t)fsd.f_bsize, (uint64_t)512)
77 struct statfs fsd;
79 if (statfs (path, &fsd) < 0)
80 return -1;
82 #ifdef STATFS_TRUNCATES_BLOCK_COUNTS
83 /* In SunOS 4.1.2, 4.1.3, and 4.1.3_U1, the block counts in the
84 struct statfs are truncated to 2GB. These conditions detect that
85 truncation, presumably without botching the 4.1.1 case, in which
86 the values are not truncated. The correct counts are stored in
87 undocumented spare fields. */
88 if (fsd.f_blocks == 0x1fffff && fsd.f_spare[0] > 0) {
89 fsd.f_blocks = fsd.f_spare[0];
90 fsd.f_bfree = fsd.f_spare[1];
91 fsd.f_bavail = fsd.f_spare[2];
93 #endif /* STATFS_TRUNCATES_BLOCK_COUNTS */
94 #endif /* STAT_STATFS2_BSIZE */
97 #ifdef STAT_STATFS2_FSIZE /* 4.4BSD */
98 #define CONVERT_BLOCKS(B) adjust_blocks ((uint64_t)(B), (uint64_t)fsd.f_fsize, (uint64_t)512)
100 struct statfs fsd;
102 if (statfs (path, &fsd) < 0)
103 return -1;
104 #endif /* STAT_STATFS2_FSIZE */
106 #ifdef STAT_STATFS4 /* SVR3, Dynix, Irix, AIX */
107 # if _AIX || defined(_CRAY)
108 # define CONVERT_BLOCKS(B) adjust_blocks ((uint64_t)(B), (uint64_t)fsd.f_bsize, (uint64_t)512)
109 # ifdef _CRAY
110 # define f_bavail f_bfree
111 # endif
112 # else
113 # define CONVERT_BLOCKS(B) ((uint64_t)B)
114 # ifndef _SEQUENT_ /* _SEQUENT_ is DYNIX/ptx */
115 # ifndef DOLPHIN /* DOLPHIN 3.8.alfa/7.18 has f_bavail */
116 # define f_bavail f_bfree
117 # endif
118 # endif
119 # endif
121 struct statfs fsd;
123 if (statfs (path, &fsd, sizeof fsd, 0) < 0)
124 return -1;
125 /* Empirically, the block counts on most SVR3 and SVR3-derived
126 systems seem to always be in terms of 512-byte blocks,
127 no matter what value f_bsize has. */
129 #endif /* STAT_STATFS4 */
131 #if defined(STAT_STATVFS) /* SVR4 */
132 #ifdef HAVE_FRSIZE
133 # define CONVERT_BLOCKS(B) \
134 adjust_blocks ((uint64_t)(B), fsd.f_frsize ? (uint64_t)fsd.f_frsize : (uint64_t)fsd.f_bsize, (uint64_t)512)
135 #else
136 # define CONVERT_BLOCKS(B) \
137 adjust_blocks ((uint64_t)(B), (uint64_t)fsd.f_bsize, (uint64_t)512)
138 #endif
140 struct statvfs fsd;
141 if (statvfs(path, &fsd) < 0) return -1;
143 /* f_frsize isn't guaranteed to be supported. */
145 #endif /* STAT_STATVFS */
147 #ifndef CONVERT_BLOCKS
148 /* we don't have any dfree code! */
149 return -1;
150 #else
151 #if !defined(STAT_STATFS2_FS_DATA)
152 /* !Ultrix */
153 (*dsize) = CONVERT_BLOCKS (fsd.f_blocks);
154 (*dfree) = CONVERT_BLOCKS (fsd.f_bavail);
155 #endif /* not STAT_STATFS2_FS_DATA */
156 #endif
158 return 0;