2 * Copyright (c) Jeremy Allison 2007.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 struct readahead_data
{
27 * This module copes with Vista AIO read requests on Linux
28 * by detecting the initial 0x80000 boundary reads and causing
29 * the buffer cache to be filled in advance.
32 /*******************************************************************
33 sendfile wrapper that does readahead/posix_fadvise.
34 *******************************************************************/
36 static ssize_t
readahead_sendfile(struct vfs_handle_struct
*handle
,
38 files_struct
*fromfsp
,
39 const DATA_BLOB
*header
,
43 struct readahead_data
*rhd
= (struct readahead_data
*)handle
->data
;
45 if ( offset
% rhd
->off_bound
== 0) {
46 #if defined(HAVE_LINUX_READAHEAD)
47 int err
= readahead(fromfsp
->fh
->fd
, offset
, (size_t)rhd
->len
);
48 DEBUG(10,("readahead_sendfile: readahead on fd %u, offset %llu, len %u returned %d\n",
49 (unsigned int)fromfsp
->fh
->fd
,
50 (unsigned long long)offset
,
51 (unsigned int)rhd
->len
,
53 #elif defined(HAVE_POSIX_FADVISE)
54 int err
= posix_fadvise(fromfsp
->fh
->fd
, offset
, (off_t
)rhd
->len
, POSIX_FADV_WILLNEED
);
55 DEBUG(10,("readahead_sendfile: posix_fadvise on fd %u, offset %llu, len %u returned %d\n",
56 (unsigned int)fromfsp
->fh
->fd
,
57 (unsigned long long)offset
,
58 (unsigned int)rhd
->len
,
62 DEBUG(0,("readahead_sendfile: no readahead on this platform\n"));
67 return SMB_VFS_NEXT_SENDFILE(handle
,
75 /*******************************************************************
76 pread wrapper that does readahead/posix_fadvise.
77 *******************************************************************/
79 static ssize_t
readahead_pread(vfs_handle_struct
*handle
,
85 struct readahead_data
*rhd
= (struct readahead_data
*)handle
->data
;
87 if ( offset
% rhd
->off_bound
== 0) {
88 #if defined(HAVE_LINUX_READAHEAD)
89 int err
= readahead(fsp
->fh
->fd
, offset
, (size_t)rhd
->len
);
90 DEBUG(10,("readahead_pread: readahead on fd %u, offset %llu, len %u returned %d\n",
91 (unsigned int)fsp
->fh
->fd
,
92 (unsigned long long)offset
,
93 (unsigned int)rhd
->len
,
95 #elif defined(HAVE_POSIX_FADVISE)
96 int err
= posix_fadvise(fsp
->fh
->fd
, offset
, (off_t
)rhd
->len
, POSIX_FADV_WILLNEED
);
97 DEBUG(10,("readahead_pread: posix_fadvise on fd %u, offset %llu, len %u returned %d\n",
98 (unsigned int)fsp
->fh
->fd
,
99 (unsigned long long)offset
,
100 (unsigned int)rhd
->len
,
104 DEBUG(0,("readahead_pread: no readahead on this platform\n"));
109 return SMB_VFS_NEXT_PREAD(handle
, fsp
, data
, count
, offset
);
112 /*******************************************************************
113 Directly called from main smbd when freeing handle.
114 *******************************************************************/
116 static void free_readahead_data(void **pptr
)
121 /*******************************************************************
122 Allocate the handle specific data so we don't call the expensive
123 conv_str_size function for each sendfile/pread.
124 *******************************************************************/
126 static int readahead_connect(struct vfs_handle_struct
*handle
,
130 struct readahead_data
*rhd
= SMB_MALLOC_P(struct readahead_data
);
132 DEBUG(0,("readahead_connect: out of memory\n"));
138 rhd
->off_bound
= conv_str_size(lp_parm_const_string(SNUM(handle
->conn
),
142 if (rhd
->off_bound
== 0) {
143 rhd
->off_bound
= 0x80000;
145 rhd
->len
= conv_str_size(lp_parm_const_string(SNUM(handle
->conn
),
150 rhd
->len
= rhd
->off_bound
;
153 handle
->data
= (void *)rhd
;
154 handle
->free_data
= free_readahead_data
;
155 return SMB_VFS_NEXT_CONNECT(handle
, service
, user
);
158 /*******************************************************************
159 Functions we're replacing.
160 We don't replace read as it isn't used from smbd to read file
162 *******************************************************************/
164 static vfs_op_tuple readahead_ops
[] =
166 {SMB_VFS_OP(readahead_sendfile
), SMB_VFS_OP_SENDFILE
, SMB_VFS_LAYER_TRANSPARENT
},
167 {SMB_VFS_OP(readahead_pread
), SMB_VFS_OP_PREAD
, SMB_VFS_LAYER_TRANSPARENT
},
168 {SMB_VFS_OP(readahead_connect
), SMB_VFS_OP_CONNECT
, SMB_VFS_LAYER_TRANSPARENT
},
169 {SMB_VFS_OP(NULL
), SMB_VFS_OP_NOOP
, SMB_VFS_LAYER_NOOP
}
172 /*******************************************************************
173 Module initialization boilerplate.
174 *******************************************************************/
176 NTSTATUS
vfs_readahead_init(void);
177 NTSTATUS
vfs_readahead_init(void)
179 return smb_register_vfs(SMB_VFS_INTERFACE_VERSION
, "readahead", readahead_ops
);