2 Unix SMB/CIFS implementation.
3 IRIX kernel oplock processing
4 Copyright (C) Andrew Tridgell 1992-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/>.
20 #define DBGC_CLASS DBGC_LOCKING
23 #if HAVE_KERNEL_OPLOCKS_IRIX
25 static int oplock_pipe_write
= -1;
26 static int oplock_pipe_read
= -1;
28 /****************************************************************************
29 Test to see if IRIX kernel oplocks work.
30 ****************************************************************************/
32 static bool irix_oplocks_available(void)
36 TALLOC_CTX
*ctx
= talloc_stackframe();
39 set_effective_capability(KERNEL_OPLOCK_CAPABILITY
);
41 tmpname
= talloc_asprintf(ctx
,
51 DEBUG(0,("check_kernel_oplocks: Unable to create pipe. Error "
58 if((fd
= sys_open(tmpname
, O_RDWR
|O_CREAT
|O_EXCL
|O_TRUNC
, 0600)) < 0) {
59 DEBUG(0,("check_kernel_oplocks: Unable to open temp test file "
61 tmpname
, strerror(errno
) ));
73 if(sys_fcntl_long(fd
, F_OPLKREG
, pfd
[1]) == -1) {
74 DEBUG(0,("check_kernel_oplocks: Kernel oplocks are not "
75 "available on this machine. Disabling kernel oplock "
83 if(sys_fcntl_long(fd
, F_OPLKACK
, OP_REVOKE
) < 0 ) {
84 DEBUG(0,("check_kernel_oplocks: Error when removing kernel "
85 "oplock. Error was %s. Disabling kernel oplock "
86 "support.\n", strerror(errno
) ));
100 /****************************************************************************
101 * Deal with the IRIX kernel <--> smbd
102 * oplock break protocol.
103 ****************************************************************************/
105 static files_struct
*irix_oplock_receive_message(fd_set
*fds
)
109 struct file_id fileid
;
112 /* Ensure we only get one call per select fd set. */
113 FD_CLR(oplock_pipe_read
, fds
);
116 * Read one byte of zero to clear the
117 * kernel break notify message.
120 if(read(oplock_pipe_read
, &dummy
, 1) != 1) {
121 DEBUG(0,("irix_oplock_receive_message: read of kernel "
122 "notification failed. Error was %s.\n",
128 * Do a query to get the
129 * device and inode of the file that has the break
130 * request outstanding.
133 if(sys_fcntl_ptr(oplock_pipe_read
, F_OPLKSTAT
, &os
) < 0) {
134 DEBUG(0,("irix_oplock_receive_message: fcntl of kernel "
135 "notification failed. Error was %s.\n",
137 if(errno
== EAGAIN
) {
139 * Duplicate kernel break message - ignore.
147 * We only have device and inode info here - we have to guess that this
148 * is the first fsp open with this dev,ino pair.
150 * NOTE: this doesn't work if any VFS modules overloads
151 * the file_id_create() hook!
154 fileid
= file_id_create_dev((SMB_DEV_T
)os
.os_dev
,
155 (SMB_INO_T
)os
.os_ino
);
156 if ((fsp
= file_find_di_first(fileid
)) == NULL
) {
157 DEBUG(0,("irix_oplock_receive_message: unable to find open "
158 "file with dev = %x, inode = %.0f\n",
159 (unsigned int)os
.os_dev
, (double)os
.os_ino
));
163 DEBUG(5,("irix_oplock_receive_message: kernel oplock break request "
164 "received for file_id %s gen_id = %ul",
165 file_id_string_tos(&fsp
->file_id
),
171 /****************************************************************************
172 Attempt to set an kernel oplock on a file.
173 ****************************************************************************/
175 static bool irix_set_kernel_oplock(files_struct
*fsp
, int oplock_type
)
177 if (sys_fcntl_long(fsp
->fh
->fd
, F_OPLKREG
, oplock_pipe_write
) == -1) {
178 if(errno
!= EAGAIN
) {
179 DEBUG(0,("irix_set_kernel_oplock: Unable to get "
180 "kernel oplock on file %s, file_id %s "
181 "gen_id = %ul. Error was %s\n",
182 fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
186 DEBUG(5,("irix_set_kernel_oplock: Refused oplock on "
187 "file %s, fd = %d, file_id = 5s, "
188 "gen_id = %ul. Another process had the file "
190 fsp
->fsp_name
, fsp
->fh
->fd
,
191 file_id_string_tos(&fsp
->file_id
),
197 DEBUG(10,("irix_set_kernel_oplock: got kernel oplock on file %s, file_id = %s "
199 fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
205 /****************************************************************************
206 Release a kernel oplock on a file.
207 ****************************************************************************/
209 static void irix_release_kernel_oplock(files_struct
*fsp
)
213 * Check and print out the current kernel
214 * oplock state of this file.
216 int state
= sys_fcntl_long(fsp
->fh
->fd
, F_OPLKACK
, -1);
217 dbgtext("irix_release_kernel_oplock: file %s, file_id = %s"
218 "gen_id = %ul, has kernel oplock state "
219 "of %x.\n", fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
220 fsp
->fh
->gen_id
, state
);
224 * Remove the kernel oplock on this file.
226 if(sys_fcntl_long(fsp
->fh
->fd
, F_OPLKACK
, OP_REVOKE
) < 0) {
228 dbgtext("irix_release_kernel_oplock: Error when "
229 "removing kernel oplock on file " );
230 dbgtext("%s, file_id = %s gen_id = %ul. "
232 fsp
->fsp_name
, file_id_string_tos(&fsp
->file_id
),
239 /****************************************************************************
240 See if there is a message waiting in this fd set.
241 Note that fds MAY BE NULL ! If so we must do our own select.
242 ****************************************************************************/
244 static bool irix_oplock_msg_waiting(fd_set
*fds
)
250 if (oplock_pipe_read
== -1)
254 return FD_ISSET(oplock_pipe_read
, fds
);
257 /* Do a zero-time select. We just need to find out if there
258 * are any outstanding messages. We use sys_select_intr as
259 * we need to ignore any signals. */
262 FD_SET(oplock_pipe_read
, &myfds
);
264 to
= timeval_set(0, 0);
265 selrtn
= sys_select_intr(oplock_pipe_read
+1,&myfds
,NULL
,NULL
,&to
);
266 return (selrtn
== 1) ? True
: False
;
269 /****************************************************************************
270 Setup kernel oplocks.
271 ****************************************************************************/
273 struct kernel_oplocks
*irix_init_kernel_oplocks(void)
276 static struct kernel_oplocks koplocks
;
278 if (!irix_oplocks_available())
282 DEBUG(0,("setup_kernel_oplock_pipe: Unable to create pipe. "
283 "Error was %s\n", strerror(errno
) ));
287 oplock_pipe_read
= pfd
[0];
288 oplock_pipe_write
= pfd
[1];
290 koplocks
.receive_message
= irix_oplock_receive_message
;
291 koplocks
.set_oplock
= irix_set_kernel_oplock
;
292 koplocks
.release_oplock
= irix_release_kernel_oplock
;
293 koplocks
.msg_waiting
= irix_oplock_msg_waiting
;
294 koplocks
.notification_fd
= oplock_pipe_read
;
299 void oplock_irix_dummy(void);
300 void oplock_irix_dummy(void) {}
301 #endif /* HAVE_KERNEL_OPLOCKS_IRIX */