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
;
61 (*dfree
) = (*dsize
) = 0;
65 * If external disk calculation specified, use it.
68 dfree_command
= lp_dfree_command(talloc_tos(), SNUM(conn
));
69 if (dfree_command
&& *dfree_command
) {
74 syscmd
= talloc_asprintf(talloc_tos(),
83 DEBUG (3, ("disk_free: Running command '%s'\n", syscmd
));
85 lines
= file_lines_pload(syscmd
, NULL
);
87 char *line
= lines
[0];
89 DEBUG (3, ("Read input from dfree, \"%s\"\n", line
));
91 *dsize
= STR_TO_SMB_BIG_UINT(line
, &p
);
92 while (p
&& *p
&& isspace(*p
))
95 *dfree
= STR_TO_SMB_BIG_UINT(p
, &p
);
96 while (p
&& *p
&& isspace(*p
))
99 *bsize
= STR_TO_SMB_BIG_UINT(p
, NULL
);
103 DEBUG (3, ("Parsed output of dfree, dsize=%u, dfree=%u, bsize=%u\n",
104 (unsigned int)*dsize
, (unsigned int)*dfree
, (unsigned int)*bsize
));
111 DEBUG (0, ("disk_free: file_lines_load() failed for "
112 "command '%s'. Error was : %s\n",
113 syscmd
, strerror(errno
) ));
114 if (sys_fsusage(path
, dfree
, dsize
) != 0) {
115 DEBUG (0, ("disk_free: sys_fsusage() failed. Error was : %s\n",
121 if (sys_fsusage(path
, dfree
, dsize
) != 0) {
122 DEBUG (0, ("disk_free: sys_fsusage() failed. Error was : %s\n",
128 if (disk_quotas(path
, &bsize_q
, &dfree_q
, &dsize_q
)) {
130 (*dfree
) = MIN(*dfree
,dfree_q
);
131 (*dsize
) = MIN(*dsize
,dsize_q
);
134 /* FIXME : Any reason for this assumption ? */
136 DEBUG(5,("disk_free:Warning: bsize == %d < 256 . Changing to assumed correct bsize = 512\n",(int)*bsize
));
142 DEBUG(0,("WARNING: dfree is broken on this system\n"));
145 *dsize
= 20*1024*1024/(*bsize
);
146 *dfree
= MAX(1,*dfree
);
149 disk_norm(bsize
, dfree
, dsize
);
151 if ((*bsize
) < 1024) {
152 dfree_retval
= (*dfree
)/(1024/(*bsize
));
154 dfree_retval
= ((*bsize
)/1024)*(*dfree
);
157 return(dfree_retval
);
160 /****************************************************************************
161 Potentially returned cached dfree info.
162 ****************************************************************************/
164 uint64_t get_dfree_info(connection_struct
*conn
,
170 int dfree_cache_time
= lp_dfree_cache_time(SNUM(conn
));
171 struct dfree_cached_info
*dfc
= conn
->dfree_info
;
174 if (!dfree_cache_time
) {
175 return SMB_VFS_DISK_FREE(conn
, path
, bsize
, dfree
, dsize
);
178 if (dfc
&& (conn
->lastused
- dfc
->last_dfree_time
< dfree_cache_time
)) {
179 /* Return cached info. */
183 return dfc
->dfree_ret
;
186 dfree_ret
= SMB_VFS_DISK_FREE(conn
, path
, bsize
, dfree
, dsize
);
188 if (dfree_ret
== (uint64_t)-1) {
189 /* Don't cache bad data. */
193 /* No cached info or time to refresh. */
195 dfc
= talloc(conn
, struct dfree_cached_info
);
199 conn
->dfree_info
= dfc
;
205 dfc
->dfree_ret
= dfree_ret
;
206 dfc
->last_dfree_time
= conn
->lastused
;