2 Unix SMB/CIFS implementation.
3 kernel oplock processing for Linux
4 Copyright (C) Andrew Tridgell 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 #define DBGC_CLASS DBGC_LOCKING
22 #include "smbd/globals.h"
24 #if HAVE_KERNEL_OPLOCKS_LINUX
27 #define F_SETLEASE 1024
31 #define F_GETLEASE 1025
38 #ifndef RT_SIGNAL_LEASE
39 #define RT_SIGNAL_LEASE (SIGRTMIN+1)
47 * public function to get linux lease capability. Needed by some VFS modules (eg. gpfs.c)
49 void linux_set_lease_capability(void)
51 set_effective_capability(LEASE_CAPABILITY
);
55 * Call to set the kernel lease signal handler
57 int linux_set_lease_sighandler(int fd
)
59 if (fcntl(fd
, F_SETSIG
, RT_SIGNAL_LEASE
) == -1) {
60 DEBUG(3,("Failed to set signal handler for kernel lease\n"));
67 /****************************************************************************
68 Call SETLEASE. If we get EACCES then we try setting up the right capability and
70 Use the SMB_VFS_LINUX_SETLEASE instead of this call directly.
71 ****************************************************************************/
73 int linux_setlease(int fd
, int leasetype
)
77 ret
= fcntl(fd
, F_SETLEASE
, leasetype
);
78 if (ret
== -1 && errno
== EACCES
) {
79 set_effective_capability(LEASE_CAPABILITY
);
80 ret
= fcntl(fd
, F_SETLEASE
, leasetype
);
86 /****************************************************************************
87 * Deal with the Linux kernel <--> smbd
88 * oplock break protocol.
89 ****************************************************************************/
91 static void linux_oplock_signal_handler(struct tevent_context
*ev_ctx
,
92 struct tevent_signal
*se
,
93 int signum
, int count
,
94 void *_info
, void *private_data
)
96 siginfo_t
*info
= (siginfo_t
*)_info
;
100 fsp
= file_find_fd(fd
);
101 break_kernel_oplock(smbd_messaging_context(), fsp
);
104 /****************************************************************************
105 Attempt to set an kernel oplock on a file.
106 ****************************************************************************/
108 static bool linux_set_kernel_oplock(struct kernel_oplocks
*ctx
,
109 files_struct
*fsp
, int oplock_type
)
111 if ( SMB_VFS_LINUX_SETLEASE(fsp
, F_WRLCK
) == -1) {
112 DEBUG(3,("linux_set_kernel_oplock: Refused oplock on file %s, "
113 "fd = %d, file_id = %s. (%s)\n",
114 fsp
->fsp_name
, fsp
->fh
->fd
,
115 file_id_string_tos(&fsp
->file_id
),
120 DEBUG(3,("linux_set_kernel_oplock: got kernel oplock on file %s, "
121 "file_id = %s gen_id = %lu\n",
122 fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
128 /****************************************************************************
129 Release a kernel oplock on a file.
130 ****************************************************************************/
132 static void linux_release_kernel_oplock(struct kernel_oplocks
*ctx
,
133 files_struct
*fsp
, int oplock_type
)
137 * Check and print out the current kernel
138 * oplock state of this file.
140 int state
= fcntl(fsp
->fh
->fd
, F_GETLEASE
, 0);
141 dbgtext("linux_release_kernel_oplock: file %s, file_id = %s "
142 "gen_id = %lu has kernel oplock state "
143 "of %x.\n", fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
144 fsp
->fh
->gen_id
, state
);
148 * Remove the kernel oplock on this file.
150 if ( SMB_VFS_LINUX_SETLEASE(fsp
, F_UNLCK
) == -1) {
152 dbgtext("linux_release_kernel_oplock: Error when "
153 "removing kernel oplock on file " );
154 dbgtext("%s, file_id = %s, gen_id = %lu. "
155 "Error was %s\n", fsp
->fsp_name
,
156 file_id_string_tos(&fsp
->file_id
),
157 fsp
->fh
->gen_id
, strerror(errno
) );
162 /****************************************************************************
163 See if the kernel supports oplocks.
164 ****************************************************************************/
166 static bool linux_oplocks_available(void)
169 fd
= open("/dev/null", O_RDONLY
);
171 return False
; /* uggh! */
172 ret
= fcntl(fd
, F_GETLEASE
, 0);
174 return ret
== F_UNLCK
;
177 /****************************************************************************
178 Setup kernel oplocks.
179 ****************************************************************************/
181 static const struct kernel_oplocks_ops linux_koplocks
= {
182 .set_oplock
= linux_set_kernel_oplock
,
183 .release_oplock
= linux_release_kernel_oplock
,
184 .contend_level2_oplocks_begin
= NULL
,
185 .contend_level2_oplocks_end
= NULL
,
188 struct kernel_oplocks
*linux_init_kernel_oplocks(TALLOC_CTX
*mem_ctx
)
190 struct kernel_oplocks
*ctx
;
191 struct tevent_signal
*se
;
193 if (!linux_oplocks_available()) {
194 DEBUG(3,("Linux kernel oplocks not available\n"));
198 ctx
= talloc_zero(mem_ctx
, struct kernel_oplocks
);
200 DEBUG(0,("Linux Kernel oplocks talloc_Zero failed\n"));
204 ctx
->ops
= &linux_koplocks
;
206 se
= tevent_add_signal(smbd_event_context(),
208 RT_SIGNAL_LEASE
, SA_SIGINFO
,
209 linux_oplock_signal_handler
,
212 DEBUG(0,("Failed to setup RT_SIGNAL_LEASE handler"));
217 ctx
->private_data
= se
;
219 DEBUG(3,("Linux kernel oplocks enabled\n"));
224 void oplock_linux_dummy(void);
226 void oplock_linux_dummy(void) {}
227 #endif /* HAVE_KERNEL_OPLOCKS_LINUX */