2006-07-11 22:01:26 +04:00
/*
* Copyright ( c ) James Peach 2005 - 2006
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
* the Free Software Foundation ; either version 3 of the License , or
2006-07-11 22:01:26 +04:00
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
2007-07-10 09:23:25 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2006-07-11 22:01:26 +04:00
*/
# include "includes.h"
2011-03-23 00:34:22 +03:00
# include "smbd/smbd.h"
2015-10-12 16:57:34 +03:00
# include "lib/util/sys_rw.h"
2006-07-11 22:01:26 +04:00
/* Cache priming module.
*
* The purpose of this module is to do RAID stripe width reads to prime the
* buffer cache to do zero - copy I / O for subsequent sendfile calls . The idea is
* to do a single large read at the start of the file to make sure that most or
* all of the file is pulled into the buffer cache . Subsequent I / Os have
* reduced latency .
*
* Tunables .
*
* cacheprime : rsize Amount of readahead in bytes . This should be a
* multiple of the RAID stripe width .
* cacheprime : debug Debug level at which to emit messages .
*/
# define READAHEAD_MIN (128 * 1024) /* min is 128 KiB */
# define READAHEAD_MAX (100 * 1024 * 1024) /* max is 100 MiB */
# define MODULE "cacheprime"
static int module_debug ;
static ssize_t g_readsz = 0 ;
static void * g_readbuf = NULL ;
/* Prime the kernel buffer cache with data from the specified file. We use
* per - fsp data to make sure we only ever do this once . If pread is being
* emulated by seek / read / seek , when this will suck quite a lot .
*/
2007-10-19 04:40:25 +04:00
static bool prime_cache (
2006-07-11 22:01:26 +04:00
struct vfs_handle_struct * handle ,
files_struct * fsp ,
2012-04-05 08:53:08 +04:00
off_t offset ,
2006-07-11 22:01:26 +04:00
size_t count )
{
2012-04-05 08:53:08 +04:00
off_t * last ;
2006-07-11 22:01:26 +04:00
ssize_t nread ;
2017-12-05 15:21:04 +03:00
last = VFS_ADD_FSP_EXTENSION ( handle , fsp , off_t , NULL ) ;
2006-07-11 22:01:26 +04:00
if ( ! last ) {
return False ;
}
if ( * last = = - 1 ) {
/* Readahead disabled. */
return False ;
}
if ( ( * last + g_readsz ) > ( offset + count ) ) {
/* Skip readahead ... we've already been here. */
return False ;
}
DEBUG ( module_debug ,
( " %s: doing readahead of %lld bytes at %lld for %s \n " ,
MODULE , ( long long ) g_readsz , ( long long ) * last ,
2009-07-11 05:11:32 +04:00
fsp_str_dbg ( fsp ) ) ) ;
2006-07-11 22:01:26 +04:00
2020-09-26 22:52:52 +03:00
nread = sys_pread ( fsp_get_io_fd ( fsp ) , g_readbuf , g_readsz , * last ) ;
2006-07-11 22:01:26 +04:00
if ( nread < 0 ) {
* last = - 1 ;
return False ;
}
* last + = nread ;
return True ;
}
static int cprime_connect (
struct vfs_handle_struct * handle ,
const char * service ,
const char * user )
{
2009-12-01 02:53:04 +03:00
int ret ;
2006-07-11 22:01:26 +04:00
module_debug = lp_parm_int ( SNUM ( handle - > conn ) , MODULE , " debug " , 100 ) ;
if ( g_readbuf ) {
/* Only allocate g_readbuf once. If the config changes and
* another client multiplexes onto this smbd , we don ' t want
* to risk memory corruption .
*/
return SMB_VFS_NEXT_CONNECT ( handle , service , user ) ;
}
2009-12-01 02:53:04 +03:00
ret = SMB_VFS_NEXT_CONNECT ( handle , service , user ) ;
if ( ret < 0 ) {
return ret ;
}
2006-07-11 22:01:26 +04:00
g_readsz = conv_str_size ( lp_parm_const_string ( SNUM ( handle - > conn ) ,
MODULE , " rsize " , NULL ) ) ;
if ( g_readsz < READAHEAD_MIN ) {
DEBUG ( module_debug , ( " %s: %ld bytes of readahead "
" requested, using minimum of %u \n " ,
MODULE , ( long ) g_readsz , READAHEAD_MIN ) ) ;
g_readsz = READAHEAD_MIN ;
} else if ( g_readsz > READAHEAD_MAX ) {
DEBUG ( module_debug , ( " %s: %ld bytes of readahead "
" requested, using maximum of %u \n " ,
MODULE , ( long ) g_readsz , READAHEAD_MAX ) ) ;
g_readsz = READAHEAD_MAX ;
}
if ( ( g_readbuf = SMB_MALLOC ( g_readsz ) ) = = NULL ) {
/* Turn off readahead if we can't get a buffer. */
g_readsz = 0 ;
}
2009-12-01 02:53:04 +03:00
return 0 ;
2006-07-11 22:01:26 +04:00
}
static ssize_t cprime_sendfile (
struct vfs_handle_struct * handle ,
int tofd ,
2008-01-11 02:51:19 +03:00
files_struct * fromfsp ,
2006-07-11 22:01:26 +04:00
const DATA_BLOB * header ,
2012-04-05 08:53:08 +04:00
off_t offset ,
2006-07-11 22:01:26 +04:00
size_t count )
{
if ( g_readbuf & & offset = = 0 ) {
2008-01-11 02:56:06 +03:00
prime_cache ( handle , fromfsp , offset , count ) ;
2006-07-11 22:01:26 +04:00
}
2008-01-11 02:51:19 +03:00
return SMB_VFS_NEXT_SENDFILE ( handle , tofd , fromfsp ,
2006-07-11 22:01:26 +04:00
header , offset , count ) ;
}
static ssize_t cprime_pread (
vfs_handle_struct * handle ,
files_struct * fsp ,
void * data ,
size_t count ,
2012-04-05 08:53:08 +04:00
off_t offset )
2006-07-11 22:01:26 +04:00
{
if ( g_readbuf ) {
2008-01-11 02:56:06 +03:00
prime_cache ( handle , fsp , offset , count ) ;
2006-07-11 22:01:26 +04:00
}
2008-01-07 02:14:19 +03:00
return SMB_VFS_NEXT_PREAD ( handle , fsp , data , count , offset ) ;
2006-07-11 22:01:26 +04:00
}
2009-07-24 04:28:58 +04:00
static struct vfs_fn_pointers vfs_cacheprime_fns = {
2011-12-04 08:45:04 +04:00
. sendfile_fn = cprime_sendfile ,
. pread_fn = cprime_pread ,
. connect_fn = cprime_connect ,
2006-07-11 22:01:26 +04:00
} ;
/* -------------------------------------------------------------------------
* Samba module initialisation entry point .
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
*/
2017-12-16 01:32:12 +03:00
static_decl_vfs ;
2017-04-20 22:24:43 +03:00
NTSTATUS vfs_cacheprime_init ( TALLOC_CTX * ctx )
2006-07-11 22:01:26 +04:00
{
2009-07-24 04:28:58 +04:00
return smb_register_vfs ( SMB_VFS_INTERFACE_VERSION , MODULE ,
& vfs_cacheprime_fns ) ;
2006-07-11 22:01:26 +04:00
}
/* vim: set sw=4 ts=4 tw=79 et: */