2 Unix SMB/CIFS implementation.
3 functions to calculate the free disk space
4 Copyright (C) Andrew Tridgell 1998
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/>.
21 #include "smbd/smbd.h"
22 #include "smbd/globals.h"
24 /****************************************************************************
25 Normalise for DOS usage.
26 ****************************************************************************/
28 void disk_norm(uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
)
30 /* check if the disk is beyond the max disk size */
31 uint64_t maxdisksize
= lp_max_disk_size();
33 /* convert to blocks - and don't overflow */
34 maxdisksize
= ((maxdisksize
*1024)/(*bsize
))*1024;
35 if (*dsize
> maxdisksize
) {
38 if (*dfree
> maxdisksize
) {
39 *dfree
= maxdisksize
- 1;
41 /* the -1 should stop applications getting div by 0
48 /****************************************************************************
49 Return number of 1K blocks available on a path and total number.
50 ****************************************************************************/
52 uint64_t sys_disk_free(connection_struct
*conn
, const char *path
,
53 uint64_t *bsize
, uint64_t *dfree
, uint64_t *dsize
)
55 uint64_t dfree_retval
;
59 const char *dfree_command
;
60 static bool dfree_broken
= false;
62 (*dfree
) = (*dsize
) = 0;
66 * If external disk calculation specified, use it.
69 dfree_command
= lp_dfree_command(talloc_tos(), SNUM(conn
));
70 if (dfree_command
&& *dfree_command
) {
75 syscmd
= talloc_asprintf(talloc_tos(),
84 DEBUG (3, ("disk_free: Running command '%s'\n", syscmd
));
86 lines
= file_lines_pload(syscmd
, NULL
);
88 char *line
= lines
[0];
90 DEBUG (3, ("Read input from dfree, \"%s\"\n", line
));
92 *dsize
= STR_TO_SMB_BIG_UINT(line
, &p
);
93 while (p
&& *p
&& isspace(*p
))
96 *dfree
= STR_TO_SMB_BIG_UINT(p
, &p
);
97 while (p
&& *p
&& isspace(*p
))
100 *bsize
= STR_TO_SMB_BIG_UINT(p
, NULL
);
104 DEBUG (3, ("Parsed output of dfree, dsize=%u, dfree=%u, bsize=%u\n",
105 (unsigned int)*dsize
, (unsigned int)*dfree
, (unsigned int)*bsize
));
114 DEBUG (0, ("disk_free: file_lines_load() failed for "
115 "command '%s'. Error was : %s\n",
116 syscmd
, strerror(errno
) ));
119 if (sys_fsusage(path
, dfree
, dsize
) != 0) {
120 DEBUG (0, ("disk_free: sys_fsusage() failed. Error was : %s\n",
125 if (disk_quotas(path
, &bsize_q
, &dfree_q
, &dsize_q
)) {
127 (*dfree
) = MIN(*dfree
,dfree_q
);
128 (*dsize
) = MIN(*dsize
,dsize_q
);
131 /* FIXME : Any reason for this assumption ? */
133 DEBUG(5,("disk_free:Warning: bsize == %d < 256 . Changing to assumed correct bsize = 512\n",(int)*bsize
));
139 DEBUG(0,("WARNING: dfree is broken on this system\n"));
142 *dsize
= 20*1024*1024/(*bsize
);
143 *dfree
= MAX(1,*dfree
);
147 disk_norm(bsize
, dfree
, dsize
);
149 if ((*bsize
) < 1024) {
150 dfree_retval
= (*dfree
)/(1024/(*bsize
));
152 dfree_retval
= ((*bsize
)/1024)*(*dfree
);
155 return(dfree_retval
);
158 /****************************************************************************
159 Potentially returned cached dfree info.
160 ****************************************************************************/
162 uint64_t get_dfree_info(connection_struct
*conn
,
168 int dfree_cache_time
= lp_dfree_cache_time(SNUM(conn
));
169 struct dfree_cached_info
*dfc
= conn
->dfree_info
;
172 if (!dfree_cache_time
) {
173 return SMB_VFS_DISK_FREE(conn
, path
, bsize
, dfree
, dsize
);
176 if (dfc
&& (conn
->lastused
- dfc
->last_dfree_time
< dfree_cache_time
)) {
177 /* Return cached info. */
181 return dfc
->dfree_ret
;
184 dfree_ret
= SMB_VFS_DISK_FREE(conn
, path
, bsize
, dfree
, dsize
);
186 if (dfree_ret
== (uint64_t)-1) {
187 /* Don't cache bad data. */
191 /* No cached info or time to refresh. */
193 dfc
= talloc(conn
, struct dfree_cached_info
);
197 conn
->dfree_info
= dfc
;
203 dfc
->dfree_ret
= dfree_ret
;
204 dfc
->last_dfree_time
= conn
->lastused
;