s4:samba_kcc: Use 'dburl' passed from command line rather than lp.samdb_url()
[Samba.git] / source3 / smbd / oplock.c
blob02cd0bbc45b655369c56e14d53acf9a57fa2a9fe
1 /*
2 Unix SMB/CIFS implementation.
3 oplock processing
4 Copyright (C) Andrew Tridgell 1992-1998
5 Copyright (C) Jeremy Allison 1998 - 2001
6 Copyright (C) Volker Lendecke 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #define DBGC_CLASS DBGC_LOCKING
23 #include "includes.h"
24 #include "smbd/smbd.h"
25 #include "smbd/globals.h"
26 #include "messages.h"
27 #include "../librpc/gen_ndr/open_files.h"
30 * helper function used by the kernel oplock backends to post the break message
32 void break_kernel_oplock(struct messaging_context *msg_ctx, files_struct *fsp)
34 uint8_t msg[MSG_SMB_KERNEL_BREAK_SIZE];
36 /* Put the kernel break info into the message. */
37 push_file_id_24((char *)msg, &fsp->file_id);
38 SIVAL(msg,24,fsp->fh->gen_id);
40 /* Don't need to be root here as we're only ever
41 sending to ourselves. */
43 messaging_send_buf(msg_ctx, messaging_server_id(msg_ctx),
44 MSG_SMB_KERNEL_BREAK,
45 msg, MSG_SMB_KERNEL_BREAK_SIZE);
48 /****************************************************************************
49 Attempt to set an oplock on a file. Succeeds if kernel oplocks are
50 disabled (just sets flags).
51 ****************************************************************************/
53 NTSTATUS set_file_oplock(files_struct *fsp)
55 struct smbd_server_connection *sconn = fsp->conn->sconn;
56 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
57 bool use_kernel = lp_kernel_oplocks(SNUM(fsp->conn)) && koplocks;
59 if (fsp->oplock_type == LEVEL_II_OPLOCK) {
60 if (use_kernel &&
61 !(koplocks->flags & KOPLOCKS_LEVEL2_SUPPORTED)) {
62 DEBUG(10, ("Refusing level2 oplock, kernel oplocks "
63 "don't support them\n"));
64 return NT_STATUS_NOT_SUPPORTED;
68 if ((fsp->oplock_type != NO_OPLOCK) &&
69 use_kernel &&
70 !koplocks->ops->set_oplock(koplocks, fsp, fsp->oplock_type))
72 return map_nt_error_from_unix(errno);
75 fsp->sent_oplock_break = NO_BREAK_SENT;
76 if (fsp->oplock_type == LEVEL_II_OPLOCK) {
77 sconn->oplocks.level_II_open++;
78 } else if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
79 sconn->oplocks.exclusive_open++;
82 DEBUG(5,("set_file_oplock: granted oplock on file %s, %s/%lu, "
83 "tv_sec = %x, tv_usec = %x\n",
84 fsp_str_dbg(fsp), file_id_string_tos(&fsp->file_id),
85 fsp->fh->gen_id, (int)fsp->open_time.tv_sec,
86 (int)fsp->open_time.tv_usec ));
88 return NT_STATUS_OK;
91 /****************************************************************************
92 Attempt to release an oplock on a file. Decrements oplock count.
93 ****************************************************************************/
95 static void release_file_oplock(files_struct *fsp)
97 struct smbd_server_connection *sconn = fsp->conn->sconn;
98 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
100 if ((fsp->oplock_type != NO_OPLOCK) &&
101 koplocks) {
102 koplocks->ops->release_oplock(koplocks, fsp, NO_OPLOCK);
105 if (fsp->oplock_type == LEVEL_II_OPLOCK) {
106 sconn->oplocks.level_II_open--;
107 } else if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
108 sconn->oplocks.exclusive_open--;
111 SMB_ASSERT(sconn->oplocks.exclusive_open>=0);
112 SMB_ASSERT(sconn->oplocks.level_II_open>=0);
114 fsp->oplock_type = NO_OPLOCK;
115 fsp->sent_oplock_break = NO_BREAK_SENT;
117 flush_write_cache(fsp, SAMBA_OPLOCK_RELEASE_FLUSH);
118 delete_write_cache(fsp);
120 TALLOC_FREE(fsp->oplock_timeout);
123 /****************************************************************************
124 Attempt to downgrade an oplock on a file. Doesn't decrement oplock count.
125 ****************************************************************************/
127 static void downgrade_file_oplock(files_struct *fsp)
129 struct smbd_server_connection *sconn = fsp->conn->sconn;
130 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
132 if (!EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
133 DEBUG(0, ("trying to downgrade an already-downgraded oplock!\n"));
134 return;
137 if (koplocks) {
138 koplocks->ops->release_oplock(koplocks, fsp, LEVEL_II_OPLOCK);
140 fsp->oplock_type = LEVEL_II_OPLOCK;
141 sconn->oplocks.exclusive_open--;
142 sconn->oplocks.level_II_open++;
143 fsp->sent_oplock_break = NO_BREAK_SENT;
145 TALLOC_FREE(fsp->oplock_timeout);
148 /****************************************************************************
149 Remove a file oplock. Copes with level II and exclusive.
150 Locks then unlocks the share mode lock. Client can decide to go directly
151 to none even if a "break-to-level II" was sent.
152 ****************************************************************************/
154 bool remove_oplock(files_struct *fsp)
156 bool ret;
157 struct share_mode_lock *lck;
159 DEBUG(10, ("remove_oplock called for %s\n",
160 fsp_str_dbg(fsp)));
162 /* Remove the oplock flag from the sharemode. */
163 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
164 if (lck == NULL) {
165 DEBUG(0,("remove_oplock: failed to lock share entry for "
166 "file %s\n", fsp_str_dbg(fsp)));
167 return False;
170 if (fsp->oplock_type == LEVEL_II_OPLOCK) {
173 * If we're the only LEVEL_II holder, we have to remove the
174 * have_read_oplocks from the brlock entry
177 struct share_mode_data *data = lck->data;
178 uint32_t i, num_level2;
180 num_level2 = 0;
181 for (i=0; i<data->num_share_modes; i++) {
182 if (data->share_modes[i].op_type == LEVEL_II_OPLOCK) {
183 num_level2 += 1;
185 if (num_level2 > 1) {
187 * No need to count them all...
189 break;
193 if (num_level2 == 1) {
195 * That's only us. We are dropping that level2 oplock,
196 * so remove the brlock flag.
198 struct byte_range_lock *brl;
200 brl = brl_get_locks(talloc_tos(), fsp);
201 if (brl) {
202 brl_set_have_read_oplocks(brl, false);
203 TALLOC_FREE(brl);
208 ret = remove_share_oplock(lck, fsp);
209 if (!ret) {
210 DEBUG(0,("remove_oplock: failed to remove share oplock for "
211 "file %s, %s, %s\n",
212 fsp_str_dbg(fsp), fsp_fnum_dbg(fsp),
213 file_id_string_tos(&fsp->file_id)));
215 release_file_oplock(fsp);
216 TALLOC_FREE(lck);
217 return ret;
221 * Deal with a reply when a break-to-level II was sent.
223 bool downgrade_oplock(files_struct *fsp)
225 bool ret;
226 struct share_mode_lock *lck;
227 struct byte_range_lock *brl;
229 DEBUG(10, ("downgrade_oplock called for %s\n",
230 fsp_str_dbg(fsp)));
232 lck = get_existing_share_mode_lock(talloc_tos(), fsp->file_id);
233 if (lck == NULL) {
234 DEBUG(0,("downgrade_oplock: failed to lock share entry for "
235 "file %s\n", fsp_str_dbg(fsp)));
236 return False;
238 ret = downgrade_share_oplock(lck, fsp);
239 if (!ret) {
240 DEBUG(0,("downgrade_oplock: failed to downgrade share oplock "
241 "for file %s, %s, file_id %s\n",
242 fsp_str_dbg(fsp), fsp_fnum_dbg(fsp),
243 file_id_string_tos(&fsp->file_id)));
246 downgrade_file_oplock(fsp);
248 brl = brl_get_locks(talloc_tos(), fsp);
249 if (brl != NULL) {
250 brl_set_have_read_oplocks(brl, true);
251 TALLOC_FREE(brl);
254 TALLOC_FREE(lck);
255 return ret;
258 /****************************************************************************
259 Set up an oplock break message.
260 ****************************************************************************/
262 #define SMB1_BREAK_MESSAGE_LENGTH (smb_size + 8*2)
264 static void new_break_message_smb1(files_struct *fsp, int cmd,
265 char result[SMB1_BREAK_MESSAGE_LENGTH])
267 memset(result,'\0',smb_size);
268 srv_set_message(result,8,0,true);
269 SCVAL(result,smb_com,SMBlockingX);
270 SSVAL(result,smb_tid,fsp->conn->cnum);
271 SSVAL(result,smb_pid,0xFFFF);
272 SSVAL(result,smb_uid,0);
273 SSVAL(result,smb_mid,0xFFFF);
274 SCVAL(result,smb_vwv0,0xFF);
275 SSVAL(result,smb_vwv2,fsp->fnum);
276 SCVAL(result,smb_vwv3,LOCKING_ANDX_OPLOCK_RELEASE);
277 SCVAL(result,smb_vwv3+1,cmd);
280 /****************************************************************************
281 Function to do the waiting before sending a local break.
282 ****************************************************************************/
284 static void wait_before_sending_break(void)
286 long wait_time = (long)lp_oplock_break_wait_time();
288 if (wait_time) {
289 smb_msleep(wait_time);
293 /****************************************************************************
294 Ensure that we have a valid oplock.
295 ****************************************************************************/
297 static files_struct *initial_break_processing(
298 struct smbd_server_connection *sconn, struct file_id id,
299 unsigned long file_id)
301 files_struct *fsp = NULL;
303 DEBUG(3, ("initial_break_processing: called for %s/%u\n"
304 "Current oplocks_open (exclusive = %d, levelII = %d)\n",
305 file_id_string_tos(&id), (int)file_id,
306 sconn->oplocks.exclusive_open,
307 sconn->oplocks.level_II_open));
310 * We need to search the file open table for the
311 * entry containing this dev and inode, and ensure
312 * we have an oplock on it.
315 fsp = file_find_dif(sconn, id, file_id);
317 if(fsp == NULL) {
318 /* The file could have been closed in the meantime - return success. */
319 DEBUG(3, ("initial_break_processing: cannot find open file "
320 "with file_id %s gen_id = %lu, allowing break to "
321 "succeed.\n", file_id_string_tos(&id), file_id));
322 return NULL;
325 /* Ensure we have an oplock on the file */
328 * There is a potential race condition in that an oplock could
329 * have been broken due to another udp request, and yet there are
330 * still oplock break messages being sent in the udp message
331 * queue for this file. So return true if we don't have an oplock,
332 * as we may have just freed it.
335 if(fsp->oplock_type == NO_OPLOCK) {
336 DEBUG(3, ("initial_break_processing: file %s (file_id = %s "
337 "gen_id = %lu) has no oplock. Allowing break to "
338 "succeed regardless.\n", fsp_str_dbg(fsp),
339 file_id_string_tos(&id), fsp->fh->gen_id));
340 return NULL;
343 return fsp;
346 static void oplock_timeout_handler(struct tevent_context *ctx,
347 struct tevent_timer *te,
348 struct timeval now,
349 void *private_data)
351 files_struct *fsp = (files_struct *)private_data;
353 SMB_ASSERT(fsp->sent_oplock_break != NO_BREAK_SENT);
355 /* Remove the timed event handler. */
356 TALLOC_FREE(fsp->oplock_timeout);
357 DEBUG(0, ("Oplock break failed for file %s -- replying anyway\n",
358 fsp_str_dbg(fsp)));
359 remove_oplock(fsp);
362 /*******************************************************************
363 Add a timeout handler waiting for the client reply.
364 *******************************************************************/
366 static void add_oplock_timeout_handler(files_struct *fsp)
368 struct smbd_server_connection *sconn = fsp->conn->sconn;
369 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
372 * If kernel oplocks already notifies smbds when an oplock break times
373 * out, just return.
375 if (koplocks &&
376 (koplocks->flags & KOPLOCKS_TIMEOUT_NOTIFICATION)) {
377 return;
380 if (fsp->oplock_timeout != NULL) {
381 DEBUG(0, ("Logic problem -- have an oplock event hanging "
382 "around\n"));
385 fsp->oplock_timeout =
386 tevent_add_timer(fsp->conn->sconn->ev_ctx, fsp,
387 timeval_current_ofs(OPLOCK_BREAK_TIMEOUT, 0),
388 oplock_timeout_handler, fsp);
390 if (fsp->oplock_timeout == NULL) {
391 DEBUG(0, ("Could not add oplock timeout handler\n"));
395 static void send_break_message_smb1(files_struct *fsp, int level)
397 char break_msg[SMB1_BREAK_MESSAGE_LENGTH];
399 new_break_message_smb1(fsp, level, break_msg);
401 show_msg(break_msg);
402 if (!srv_send_smb(fsp->conn->sconn,
403 break_msg, false, 0,
404 IS_CONN_ENCRYPTED(fsp->conn),
405 NULL)) {
406 exit_server_cleanly("send_break_message_smb1: "
407 "srv_send_smb failed.");
411 /*******************************************************************
412 This handles the generic oplock break message from another smbd.
413 *******************************************************************/
415 static void process_oplock_break_message(struct messaging_context *msg_ctx,
416 void *private_data,
417 uint32_t msg_type,
418 struct server_id src,
419 DATA_BLOB *data)
421 struct share_mode_entry msg;
422 files_struct *fsp;
423 bool break_to_level2 = False;
424 bool use_kernel;
425 struct smbd_server_connection *sconn =
426 talloc_get_type_abort(private_data,
427 struct smbd_server_connection);
428 struct server_id self = messaging_server_id(sconn->msg_ctx);
429 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
430 uint16_t break_to;
432 if (data->data == NULL) {
433 DEBUG(0, ("Got NULL buffer\n"));
434 return;
437 if (data->length != MSG_SMB_SHARE_MODE_ENTRY_SIZE) {
438 DEBUG(0, ("Got invalid msg len %d\n", (int)data->length));
439 return;
442 /* De-linearize incoming message. */
443 message_to_share_mode_entry(&msg, (char *)data->data);
444 break_to = msg.op_type;
446 DEBUG(10, ("Got oplock break to %u message from pid %s: %s/%llu\n",
447 (unsigned)break_to, server_id_str(talloc_tos(), &src),
448 file_id_string_tos(&msg.id),
449 (unsigned long long)msg.share_file_id));
451 fsp = initial_break_processing(sconn, msg.id, msg.share_file_id);
453 if (fsp == NULL) {
454 /* We hit a race here. Break messages are sent, and before we
455 * get to process this message, we have closed the file. */
456 DEBUG(3, ("Did not find fsp\n"));
457 return;
460 if (fsp->sent_oplock_break != NO_BREAK_SENT) {
462 * Nothing to do anymore
464 return;
467 if (break_to == fsp->oplock_type) {
468 DEBUG(3, ("Already downgraded oplock on %s: %s\n",
469 file_id_string_tos(&fsp->file_id),
470 fsp_str_dbg(fsp)));
471 return;
474 use_kernel = lp_kernel_oplocks(SNUM(fsp->conn)) && koplocks;
476 if ((global_client_caps & CAP_LEVEL_II_OPLOCKS) &&
477 (break_to != NO_OPLOCK) &&
478 !(use_kernel && !(koplocks->flags & KOPLOCKS_LEVEL2_SUPPORTED)) &&
479 lp_level2_oplocks(SNUM(fsp->conn))) {
480 break_to_level2 = True;
483 /* Need to wait before sending a break
484 message if we sent ourselves this message. */
485 if (serverid_equal(&self, &src)) {
486 wait_before_sending_break();
489 if (sconn->using_smb2) {
490 send_break_message_smb2(fsp, break_to_level2 ?
491 OPLOCKLEVEL_II : OPLOCKLEVEL_NONE);
492 } else {
493 send_break_message_smb1(fsp, break_to_level2 ?
494 OPLOCKLEVEL_II : OPLOCKLEVEL_NONE);
497 if ((fsp->oplock_type == LEVEL_II_OPLOCK) && (break_to == NO_OPLOCK)) {
499 * This is an async break without a reply and thus no timeout
501 remove_oplock(fsp);
502 return;
504 fsp->sent_oplock_break = break_to_level2 ? LEVEL_II_BREAK_SENT:BREAK_TO_NONE_SENT;
505 add_oplock_timeout_handler(fsp);
508 /*******************************************************************
509 This handles the kernel oplock break message.
510 *******************************************************************/
512 static void process_kernel_oplock_break(struct messaging_context *msg_ctx,
513 void *private_data,
514 uint32_t msg_type,
515 struct server_id src,
516 DATA_BLOB *data)
518 struct file_id id;
519 unsigned long file_id;
520 files_struct *fsp;
521 struct smbd_server_connection *sconn =
522 talloc_get_type_abort(private_data,
523 struct smbd_server_connection);
525 if (data->data == NULL) {
526 DEBUG(0, ("Got NULL buffer\n"));
527 return;
530 if (data->length != MSG_SMB_KERNEL_BREAK_SIZE) {
531 DEBUG(0, ("Got invalid msg len %d\n", (int)data->length));
532 return;
535 /* Pull the data from the message. */
536 pull_file_id_24((char *)data->data, &id);
537 file_id = (unsigned long)IVAL(data->data, 24);
539 DEBUG(10, ("Got kernel oplock break message from pid %s: %s/%u\n",
540 server_id_str(talloc_tos(), &src), file_id_string_tos(&id),
541 (unsigned int)file_id));
543 fsp = initial_break_processing(sconn, id, file_id);
545 if (fsp == NULL) {
546 DEBUG(3, ("Got a kernel oplock break message for a file "
547 "I don't know about\n"));
548 return;
551 if (fsp->sent_oplock_break != NO_BREAK_SENT) {
552 /* This is ok, kernel oplocks come in completely async */
553 DEBUG(3, ("Got a kernel oplock request while waiting for a "
554 "break reply\n"));
555 return;
558 if (sconn->using_smb2) {
559 send_break_message_smb2(fsp, OPLOCKLEVEL_NONE);
560 } else {
561 send_break_message_smb1(fsp, OPLOCKLEVEL_NONE);
564 fsp->sent_oplock_break = BREAK_TO_NONE_SENT;
566 add_oplock_timeout_handler(fsp);
569 struct break_to_none_state {
570 struct smbd_server_connection *sconn;
571 struct file_id id;
573 static void do_break_to_none(struct tevent_context *ctx,
574 struct tevent_immediate *im,
575 void *private_data);
577 /****************************************************************************
578 This function is called on any file modification or lock request. If a file
579 is level 2 oplocked then it must tell all other level 2 holders to break to
580 none.
581 ****************************************************************************/
583 static void contend_level2_oplocks_begin_default(files_struct *fsp,
584 enum level2_contention_type type)
586 struct smbd_server_connection *sconn = fsp->conn->sconn;
587 struct tevent_immediate *im;
588 struct break_to_none_state *state;
589 struct byte_range_lock *brl;
592 * If this file is level II oplocked then we need
593 * to grab the shared memory lock and inform all
594 * other files with a level II lock that they need
595 * to flush their read caches. We keep the lock over
596 * the shared memory area whilst doing this.
599 if (EXCLUSIVE_OPLOCK_TYPE(fsp->oplock_type)) {
601 * There can't be any level2 oplocks, we're alone.
603 return;
606 brl = brl_get_locks_readonly(fsp);
607 if ((brl != NULL) && !brl_have_read_oplocks(brl)) {
608 DEBUG(10, ("No read oplocks around\n"));
609 return;
613 * When we get here we might have a brlock entry locked. Also
614 * locking the share mode entry would violate the locking
615 * order. Breaking level2 oplocks to none is asynchronous
616 * anyway, so we postpone this into an immediate event.
619 state = talloc(sconn, struct break_to_none_state);
620 if (state == NULL) {
621 DEBUG(1, ("talloc failed\n"));
622 return;
624 state->sconn = sconn;
625 state->id = fsp->file_id;
627 im = tevent_create_immediate(state);
628 if (im == NULL) {
629 DEBUG(1, ("tevent_create_immediate failed\n"));
630 TALLOC_FREE(state);
631 return;
633 tevent_schedule_immediate(im, sconn->ev_ctx, do_break_to_none, state);
636 static void do_break_to_none(struct tevent_context *ctx,
637 struct tevent_immediate *im,
638 void *private_data)
640 struct break_to_none_state *state = talloc_get_type_abort(
641 private_data, struct break_to_none_state);
642 int i;
643 struct share_mode_lock *lck;
645 lck = get_existing_share_mode_lock(talloc_tos(), state->id);
646 if (lck == NULL) {
647 DEBUG(1, ("%s: failed to lock share mode entry for file %s.\n",
648 __func__, file_id_string_tos(&state->id)));
649 goto done;
652 DEBUG(10,("%s: num_share_modes = %d\n", __func__,
653 lck->data->num_share_modes ));
655 for(i = 0; i < lck->data->num_share_modes; i++) {
656 struct share_mode_entry *share_entry = &lck->data->share_modes[i];
657 char msg[MSG_SMB_SHARE_MODE_ENTRY_SIZE];
659 if (!is_valid_share_mode_entry(share_entry)) {
660 continue;
664 * As there could have been multiple writes waiting at the
665 * lock_share_entry gate we may not be the first to
666 * enter. Hence the state of the op_types in the share mode
667 * entries may be partly NO_OPLOCK and partly LEVEL_II
668 * oplock. It will do no harm to re-send break messages to
669 * those smbd's that are still waiting their turn to remove
670 * their LEVEL_II state, and also no harm to ignore existing
671 * NO_OPLOCK states. JRA.
674 DEBUG(10,("%s: share_entry[%i]->op_type == %d\n", __func__,
675 i, share_entry->op_type ));
677 if (share_entry->op_type == NO_OPLOCK) {
678 continue;
681 /* Paranoia .... */
682 if (EXCLUSIVE_OPLOCK_TYPE(share_entry->op_type)) {
683 DEBUG(0,("%s: PANIC. "
684 "share mode entry %d is an exlusive "
685 "oplock !\n", __func__, i ));
686 TALLOC_FREE(lck);
687 abort();
690 share_mode_entry_to_message(msg, share_entry);
691 /* Overload entry->op_type */
692 SSVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET, NO_OPLOCK);
694 messaging_send_buf(state->sconn->msg_ctx, share_entry->pid,
695 MSG_SMB_BREAK_REQUEST,
696 (uint8 *)msg, sizeof(msg));
699 /* We let the message receivers handle removing the oplock state
700 in the share mode lock db. */
702 TALLOC_FREE(lck);
703 done:
704 TALLOC_FREE(state);
705 return;
708 void smbd_contend_level2_oplocks_begin(files_struct *fsp,
709 enum level2_contention_type type)
711 struct smbd_server_connection *sconn = fsp->conn->sconn;
712 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
714 if (koplocks && koplocks->ops->contend_level2_oplocks_begin) {
715 koplocks->ops->contend_level2_oplocks_begin(fsp, type);
716 return;
719 contend_level2_oplocks_begin_default(fsp, type);
722 void smbd_contend_level2_oplocks_end(files_struct *fsp,
723 enum level2_contention_type type)
725 struct smbd_server_connection *sconn = fsp->conn->sconn;
726 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
728 /* Only kernel oplocks implement this so far */
729 if (koplocks && koplocks->ops->contend_level2_oplocks_end) {
730 koplocks->ops->contend_level2_oplocks_end(fsp, type);
734 /****************************************************************************
735 Linearize a share mode entry struct to an internal oplock break message.
736 ****************************************************************************/
738 void share_mode_entry_to_message(char *msg, const struct share_mode_entry *e)
740 SIVAL(msg,OP_BREAK_MSG_PID_OFFSET,(uint32)e->pid.pid);
741 SBVAL(msg,OP_BREAK_MSG_MID_OFFSET,e->op_mid);
742 SSVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET,e->op_type);
743 SIVAL(msg,OP_BREAK_MSG_ACCESS_MASK_OFFSET,e->access_mask);
744 SIVAL(msg,OP_BREAK_MSG_SHARE_ACCESS_OFFSET,e->share_access);
745 SIVAL(msg,OP_BREAK_MSG_PRIV_OFFSET,e->private_options);
746 SIVAL(msg,OP_BREAK_MSG_TIME_SEC_OFFSET,(uint32_t)e->time.tv_sec);
747 SIVAL(msg,OP_BREAK_MSG_TIME_USEC_OFFSET,(uint32_t)e->time.tv_usec);
748 push_file_id_24(msg+OP_BREAK_MSG_DEV_OFFSET, &e->id);
749 SIVAL(msg,OP_BREAK_MSG_FILE_ID_OFFSET,e->share_file_id);
750 SIVAL(msg,OP_BREAK_MSG_UID_OFFSET,e->uid);
751 SSVAL(msg,OP_BREAK_MSG_FLAGS_OFFSET,e->flags);
752 SIVAL(msg,OP_BREAK_MSG_NAME_HASH_OFFSET,e->name_hash);
753 SIVAL(msg,OP_BREAK_MSG_VNN_OFFSET,e->pid.vnn);
756 /****************************************************************************
757 De-linearize an internal oplock break message to a share mode entry struct.
758 ****************************************************************************/
760 void message_to_share_mode_entry(struct share_mode_entry *e, const char *msg)
762 e->pid.pid = (pid_t)IVAL(msg,OP_BREAK_MSG_PID_OFFSET);
763 e->op_mid = BVAL(msg,OP_BREAK_MSG_MID_OFFSET);
764 e->op_type = SVAL(msg,OP_BREAK_MSG_OP_TYPE_OFFSET);
765 e->access_mask = IVAL(msg,OP_BREAK_MSG_ACCESS_MASK_OFFSET);
766 e->share_access = IVAL(msg,OP_BREAK_MSG_SHARE_ACCESS_OFFSET);
767 e->private_options = IVAL(msg,OP_BREAK_MSG_PRIV_OFFSET);
768 e->time.tv_sec = (time_t)IVAL(msg,OP_BREAK_MSG_TIME_SEC_OFFSET);
769 e->time.tv_usec = (int)IVAL(msg,OP_BREAK_MSG_TIME_USEC_OFFSET);
770 pull_file_id_24(msg+OP_BREAK_MSG_DEV_OFFSET, &e->id);
771 e->share_file_id = (unsigned long)IVAL(msg,OP_BREAK_MSG_FILE_ID_OFFSET);
772 e->uid = (uint32)IVAL(msg,OP_BREAK_MSG_UID_OFFSET);
773 e->flags = (uint16)SVAL(msg,OP_BREAK_MSG_FLAGS_OFFSET);
774 e->name_hash = IVAL(msg,OP_BREAK_MSG_NAME_HASH_OFFSET);
775 e->pid.vnn = IVAL(msg,OP_BREAK_MSG_VNN_OFFSET);
778 /****************************************************************************
779 Setup oplocks for this process.
780 ****************************************************************************/
782 bool init_oplocks(struct smbd_server_connection *sconn)
784 DEBUG(3,("init_oplocks: initializing messages.\n"));
786 messaging_register(sconn->msg_ctx, sconn, MSG_SMB_BREAK_REQUEST,
787 process_oplock_break_message);
788 messaging_register(sconn->msg_ctx, sconn, MSG_SMB_KERNEL_BREAK,
789 process_kernel_oplock_break);
790 return true;
793 void init_kernel_oplocks(struct smbd_server_connection *sconn)
795 struct kernel_oplocks *koplocks = sconn->oplocks.kernel_ops;
797 /* only initialize once */
798 if (koplocks == NULL) {
799 #if HAVE_KERNEL_OPLOCKS_IRIX
800 koplocks = irix_init_kernel_oplocks(sconn);
801 #elif HAVE_KERNEL_OPLOCKS_LINUX
802 koplocks = linux_init_kernel_oplocks(sconn);
803 #endif
804 sconn->oplocks.kernel_ops = koplocks;