s3: messaging_ctdbd_connection() was only called with procid_self()
[samba.git] / source3 / lib / g_lock.c
1 /*
2    Unix SMB/CIFS implementation.
3    global locks based on dbwrap and messaging
4    Copyright (C) 2009 by Volker Lendecke
5
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.
10
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.
15
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/>.
18 */
19
20 #include "includes.h"
21 #include "g_lock.h"
22 #include "librpc/gen_ndr/messaging.h"
23
24 static NTSTATUS g_lock_force_unlock(struct g_lock_ctx *ctx, const char *name,
25                                     struct server_id pid);
26
27 struct g_lock_ctx {
28         struct db_context *db;
29         struct messaging_context *msg;
30 };
31
32 /*
33  * The "g_lock.tdb" file contains records, indexed by the 0-terminated
34  * lockname. The record contains an array of "struct g_lock_rec"
35  * structures. Waiters have the lock_type with G_LOCK_PENDING or'ed.
36  */
37
38 struct g_lock_rec {
39         enum g_lock_type lock_type;
40         struct server_id pid;
41 };
42
43 struct g_lock_ctx *g_lock_ctx_init(TALLOC_CTX *mem_ctx,
44                                    struct messaging_context *msg)
45 {
46         struct g_lock_ctx *result;
47
48         result = talloc(mem_ctx, struct g_lock_ctx);
49         if (result == NULL) {
50                 return NULL;
51         }
52         result->msg = msg;
53
54         result->db = db_open(result, lock_path("g_lock.tdb"), 0,
55                              TDB_CLEAR_IF_FIRST, O_RDWR|O_CREAT, 0700);
56         if (result->db == NULL) {
57                 DEBUG(1, ("g_lock_init: Could not open g_lock.tdb"));
58                 TALLOC_FREE(result);
59                 return NULL;
60         }
61         return result;
62 }
63
64 static bool g_lock_conflicts(enum g_lock_type lock_type,
65                              const struct g_lock_rec *rec)
66 {
67         enum g_lock_type rec_lock = rec->lock_type;
68
69         if ((rec_lock & G_LOCK_PENDING) != 0) {
70                 return false;
71         }
72
73         /*
74          * Only tested write locks so far. Very likely this routine
75          * needs to be fixed for read locks....
76          */
77         if ((lock_type == G_LOCK_READ) && (rec_lock == G_LOCK_READ)) {
78                 return false;
79         }
80         return true;
81 }
82
83 static bool g_lock_parse(TALLOC_CTX *mem_ctx, TDB_DATA data,
84                          int *pnum_locks, struct g_lock_rec **plocks)
85 {
86         int i, num_locks;
87         struct g_lock_rec *locks;
88
89         if ((data.dsize % sizeof(struct g_lock_rec)) != 0) {
90                 DEBUG(1, ("invalid lock record length %d\n", (int)data.dsize));
91                 return false;
92         }
93
94         num_locks = data.dsize / sizeof(struct g_lock_rec);
95         locks = talloc_array(mem_ctx, struct g_lock_rec, num_locks);
96         if (locks == NULL) {
97                 DEBUG(1, ("talloc failed\n"));
98                 return false;
99         }
100
101         memcpy(locks, data.dptr, data.dsize);
102
103         DEBUG(10, ("locks:\n"));
104         for (i=0; i<num_locks; i++) {
105                 DEBUGADD(10, ("%s: %s %s\n",
106                               procid_str(talloc_tos(), &locks[i].pid),
107                               ((locks[i].lock_type & 1) == G_LOCK_READ) ?
108                               "read" : "write",
109                               (locks[i].lock_type & G_LOCK_PENDING) ?
110                               "(pending)" : "(owner)"));
111
112                 if (((locks[i].lock_type & G_LOCK_PENDING) == 0)
113                     && !process_exists(locks[i].pid)) {
114
115                         DEBUGADD(10, ("lock owner %s died -- discarding\n",
116                                       procid_str(talloc_tos(),
117                                                  &locks[i].pid)));
118
119                         if (i < (num_locks-1)) {
120                                 locks[i] = locks[num_locks-1];
121                         }
122                         num_locks -= 1;
123                 }
124         }
125
126         *plocks = locks;
127         *pnum_locks = num_locks;
128         return true;
129 }
130
131 static void g_lock_cleanup(int *pnum_locks, struct g_lock_rec *locks)
132 {
133         int i, num_locks;
134
135         num_locks = *pnum_locks;
136
137         DEBUG(10, ("g_lock_cleanup: %d locks\n", num_locks));
138
139         for (i=0; i<num_locks; i++) {
140                 if (process_exists(locks[i].pid)) {
141                         continue;
142                 }
143                 DEBUGADD(10, ("%s does not exist -- discarding\n",
144                               procid_str(talloc_tos(), &locks[i].pid)));
145
146                 if (i < (num_locks-1)) {
147                         locks[i] = locks[num_locks-1];
148                 }
149                 num_locks -= 1;
150         }
151         *pnum_locks = num_locks;
152         return;
153 }
154
155 static struct g_lock_rec *g_lock_addrec(TALLOC_CTX *mem_ctx,
156                                         struct g_lock_rec *locks,
157                                         int *pnum_locks,
158                                         const struct server_id pid,
159                                         enum g_lock_type lock_type)
160 {
161         struct g_lock_rec *result;
162         int num_locks = *pnum_locks;
163
164         result = talloc_realloc(mem_ctx, locks, struct g_lock_rec,
165                                 num_locks+1);
166         if (result == NULL) {
167                 return NULL;
168         }
169
170         result[num_locks].pid = pid;
171         result[num_locks].lock_type = lock_type;
172         *pnum_locks += 1;
173         return result;
174 }
175
176 static void g_lock_got_retry(struct messaging_context *msg,
177                              void *private_data,
178                              uint32_t msg_type,
179                              struct server_id server_id,
180                              DATA_BLOB *data);
181
182 static NTSTATUS g_lock_trylock(struct g_lock_ctx *ctx, const char *name,
183                                enum g_lock_type lock_type)
184 {
185         struct db_record *rec = NULL;
186         struct g_lock_rec *locks = NULL;
187         int i, num_locks;
188         struct server_id self;
189         int our_index;
190         TDB_DATA data;
191         NTSTATUS status = NT_STATUS_OK;
192         NTSTATUS store_status;
193
194 again:
195         rec = ctx->db->fetch_locked(ctx->db, talloc_tos(),
196                                     string_term_tdb_data(name));
197         if (rec == NULL) {
198                 DEBUG(10, ("fetch_locked(\"%s\") failed\n", name));
199                 status = NT_STATUS_LOCK_NOT_GRANTED;
200                 goto done;
201         }
202
203         if (!g_lock_parse(talloc_tos(), rec->value, &num_locks, &locks)) {
204                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
205                 status = NT_STATUS_INTERNAL_ERROR;
206                 goto done;
207         }
208
209         self = messaging_server_id(ctx->msg);
210         our_index = -1;
211
212         for (i=0; i<num_locks; i++) {
213                 if (procid_equal(&self, &locks[i].pid)) {
214                         if (our_index != -1) {
215                                 DEBUG(1, ("g_lock_trylock: Added ourself "
216                                           "twice!\n"));
217                                 status = NT_STATUS_INTERNAL_ERROR;
218                                 goto done;
219                         }
220                         if ((locks[i].lock_type & G_LOCK_PENDING) == 0) {
221                                 DEBUG(1, ("g_lock_trylock: Found ourself not "
222                                           "pending!\n"));
223                                 status = NT_STATUS_INTERNAL_ERROR;
224                                 goto done;
225                         }
226
227                         our_index = i;
228
229                         /* never conflict with ourself */
230                         continue;
231                 }
232                 if (g_lock_conflicts(lock_type, &locks[i])) {
233                         struct server_id pid = locks[i].pid;
234
235                         if (!process_exists(pid)) {
236                                 TALLOC_FREE(locks);
237                                 TALLOC_FREE(rec);
238                                 status = g_lock_force_unlock(ctx, name, pid);
239                                 if (!NT_STATUS_IS_OK(status)) {
240                                         DEBUG(1, ("Could not unlock dead lock "
241                                                   "holder!\n"));
242                                         goto done;
243                                 }
244                                 goto again;
245                         }
246                         lock_type |= G_LOCK_PENDING;
247                 }
248         }
249
250         if (our_index == -1) {
251                 /* First round, add ourself */
252
253                 locks = g_lock_addrec(talloc_tos(), locks, &num_locks,
254                                       self, lock_type);
255                 if (locks == NULL) {
256                         DEBUG(10, ("g_lock_addrec failed\n"));
257                         status = NT_STATUS_NO_MEMORY;
258                         goto done;
259                 }
260         } else {
261                 /*
262                  * Retry. We were pending last time. Overwrite the
263                  * stored lock_type with what we calculated, we might
264                  * have acquired the lock this time.
265                  */
266                 locks[our_index].lock_type = lock_type;
267         }
268
269         if (NT_STATUS_IS_OK(status) && ((lock_type & G_LOCK_PENDING) == 0)) {
270                 /*
271                  * Walk through the list of locks, search for dead entries
272                  */
273                 g_lock_cleanup(&num_locks, locks);
274         }
275
276         data = make_tdb_data((uint8_t *)locks, num_locks * sizeof(*locks));
277         store_status = rec->store(rec, data, 0);
278         if (!NT_STATUS_IS_OK(store_status)) {
279                 DEBUG(1, ("rec->store failed: %s\n",
280                           nt_errstr(store_status)));
281                 status = store_status;
282         }
283
284 done:
285         TALLOC_FREE(locks);
286         TALLOC_FREE(rec);
287
288         if (NT_STATUS_IS_OK(status) && (lock_type & G_LOCK_PENDING) != 0) {
289                 return STATUS_PENDING;
290         }
291
292         return NT_STATUS_OK;
293 }
294
295 NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name,
296                      enum g_lock_type lock_type, struct timeval timeout)
297 {
298         struct tevent_timer *te = NULL;
299         NTSTATUS status;
300         bool retry = false;
301         struct timeval timeout_end;
302         struct timeval time_now;
303
304         DEBUG(10, ("Trying to acquire lock %d for %s\n", (int)lock_type,
305                    name));
306
307         if (lock_type & ~1) {
308                 DEBUG(1, ("Got invalid lock type %d for %s\n",
309                           (int)lock_type, name));
310                 return NT_STATUS_INVALID_PARAMETER;
311         }
312
313 #ifdef CLUSTER_SUPPORT
314         if (lp_clustering()) {
315                 status = ctdb_watch_us(messaging_ctdbd_connection());
316                 if (!NT_STATUS_IS_OK(status)) {
317                         DEBUG(10, ("could not register retry with ctdb: %s\n",
318                                    nt_errstr(status)));
319                         goto done;
320                 }
321         }
322 #endif
323
324         status = messaging_register(ctx->msg, &retry, MSG_DBWRAP_G_LOCK_RETRY,
325                                     g_lock_got_retry);
326         if (!NT_STATUS_IS_OK(status)) {
327                 DEBUG(10, ("messaging_register failed: %s\n",
328                            nt_errstr(status)));
329                 return status;
330         }
331
332         time_now = timeval_current();
333         timeout_end = timeval_sum(&time_now, &timeout);
334
335         while (true) {
336 #ifdef CLUSTER_SUPPORT
337                 fd_set _r_fds;
338 #endif
339                 fd_set *r_fds = NULL;
340                 int max_fd = 0;
341                 int ret;
342                 struct timeval timeout_remaining, select_timeout;
343
344                 status = g_lock_trylock(ctx, name, lock_type);
345                 if (NT_STATUS_IS_OK(status)) {
346                         DEBUG(10, ("Got lock %s\n", name));
347                         break;
348                 }
349                 if (!NT_STATUS_EQUAL(status, STATUS_PENDING)) {
350                         DEBUG(10, ("g_lock_trylock failed: %s\n",
351                                    nt_errstr(status)));
352                         break;
353                 }
354
355                 DEBUG(10, ("g_lock_trylock: Did not get lock, waiting...\n"));
356
357                 /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
358                  *             !!! HACK ALERT --- FIX ME !!!
359                  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
360                  * What we really want to do here is to react to
361                  * MSG_DBWRAP_G_LOCK_RETRY messages that are either sent
362                  * by a client doing g_lock_unlock or by ourselves when
363                  * we receive a CTDB_SRVID_SAMBA_NOTIFY or
364                  * CTDB_SRVID_RECONFIGURE message from ctdbd, i.e. when
365                  * either a client holding a lock or a complete node
366                  * has died.
367                  *
368                  * Doing this properly involves calling tevent_loop_once(),
369                  * but doing this here with the main ctdbd messaging context
370                  * creates a nested event loop when g_lock_lock() is called
371                  * from the main event loop, e.g. in a tcon_and_X where the
372                  * share_info.tdb needs to be initialized and is locked by
373                  * another process, or when the remore registry is accessed
374                  * for writing and some other process already holds a lock
375                  * on the registry.tdb.
376                  *
377                  * So as a quick fix, we act a little coarsely here: we do
378                  * a select on the ctdb connection fd and when it is readable
379                  * or we get EINTR, then we retry without actually parsing
380                  * any ctdb packages or dispatching messages. This means that
381                  * we retry more often than intended by design, but this does
382                  * not harm and it is unobtrusive. When we have finished,
383                  * the main loop will pick up all the messages and ctdb
384                  * packets. The only extra twist is that we cannot use timed
385                  * events here but have to handcode a timeout.
386                  */
387
388 #ifdef CLUSTER_SUPPORT
389                 if (lp_clustering()) {
390                         struct ctdbd_connection *conn;
391                         conn = messaging_ctdbd_connection();
392
393                         r_fds = &_r_fds;
394                         FD_ZERO(r_fds);
395                         max_fd = ctdbd_conn_get_fd(conn);
396                         FD_SET(max_fd, r_fds);
397                 }
398 #endif
399
400                 time_now = timeval_current();
401                 timeout_remaining = timeval_until(&time_now, &timeout_end);
402                 select_timeout = timeval_set(60, 0);
403
404                 select_timeout = timeval_min(&select_timeout,
405                                              &timeout_remaining);
406
407                 ret = sys_select(max_fd + 1, r_fds, NULL, NULL,
408                                  &select_timeout);
409                 if (ret == -1) {
410                         if (errno != EINTR) {
411                                 DEBUG(1, ("error calling select: %s\n",
412                                           strerror(errno)));
413                                 status = NT_STATUS_INTERNAL_ERROR;
414                                 break;
415                         }
416                         /*
417                          * errno == EINTR:
418                          * This means a signal was received.
419                          * It might have been a MSG_DBWRAP_G_LOCK_RETRY message.
420                          * ==> retry
421                          */
422                 } else if (ret == 0) {
423                         if (timeval_expired(&timeout_end)) {
424                                 DEBUG(10, ("g_lock_lock timed out\n"));
425                                 status = NT_STATUS_LOCK_NOT_GRANTED;
426                                 break;
427                         } else {
428                                 DEBUG(10, ("select returned 0 but timeout not "
429                                            "not expired, retrying\n"));
430                         }
431                 } else if (ret != 1) {
432                         DEBUG(1, ("invalid return code of select: %d\n", ret));
433                         status = NT_STATUS_INTERNAL_ERROR;
434                         break;
435                 }
436                 /*
437                  * ret == 1:
438                  * This means ctdbd has sent us some data.
439                  * Might be a CTDB_SRVID_RECONFIGURE or a
440                  * CTDB_SRVID_SAMBA_NOTIFY message.
441                  * ==> retry
442                  */
443         }
444
445 #ifdef CLUSTER_SUPPORT
446 done:
447 #endif
448
449         if (!NT_STATUS_IS_OK(status)) {
450                 NTSTATUS unlock_status;
451
452                 unlock_status = g_lock_unlock(ctx, name);
453
454                 if (!NT_STATUS_IS_OK(unlock_status)) {
455                         DEBUG(1, ("Could not remove ourself from the locking "
456                                   "db: %s\n", nt_errstr(status)));
457                 }
458         }
459
460         messaging_deregister(ctx->msg, MSG_DBWRAP_G_LOCK_RETRY, &retry);
461         TALLOC_FREE(te);
462
463         return status;
464 }
465
466 static void g_lock_got_retry(struct messaging_context *msg,
467                              void *private_data,
468                              uint32_t msg_type,
469                              struct server_id server_id,
470                              DATA_BLOB *data)
471 {
472         bool *pretry = (bool *)private_data;
473
474         DEBUG(10, ("Got retry message from pid %s\n",
475                    procid_str(talloc_tos(), &server_id)));
476
477         *pretry = true;
478 }
479
480 static NTSTATUS g_lock_force_unlock(struct g_lock_ctx *ctx, const char *name,
481                                     struct server_id pid)
482 {
483         struct db_record *rec = NULL;
484         struct g_lock_rec *locks = NULL;
485         int i, num_locks;
486         enum g_lock_type lock_type;
487         NTSTATUS status;
488
489         rec = ctx->db->fetch_locked(ctx->db, talloc_tos(),
490                                     string_term_tdb_data(name));
491         if (rec == NULL) {
492                 DEBUG(10, ("fetch_locked(\"%s\") failed\n", name));
493                 status = NT_STATUS_INTERNAL_ERROR;
494                 goto done;
495         }
496
497         if (!g_lock_parse(talloc_tos(), rec->value, &num_locks, &locks)) {
498                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
499                 status = NT_STATUS_INTERNAL_ERROR;
500                 goto done;
501         }
502
503         for (i=0; i<num_locks; i++) {
504                 if (procid_equal(&pid, &locks[i].pid)) {
505                         break;
506                 }
507         }
508
509         if (i == num_locks) {
510                 DEBUG(10, ("g_lock_force_unlock: Lock not found\n"));
511                 status = NT_STATUS_INTERNAL_ERROR;
512                 goto done;
513         }
514
515         lock_type = locks[i].lock_type;
516
517         if (i < (num_locks-1)) {
518                 locks[i] = locks[num_locks-1];
519         }
520         num_locks -= 1;
521
522         if (num_locks == 0) {
523                 status = rec->delete_rec(rec);
524         } else {
525                 TDB_DATA data;
526                 data = make_tdb_data((uint8_t *)locks,
527                                      sizeof(struct g_lock_rec) * num_locks);
528                 status = rec->store(rec, data, 0);
529         }
530
531         if (!NT_STATUS_IS_OK(status)) {
532                 DEBUG(1, ("g_lock_force_unlock: Could not store record: %s\n",
533                           nt_errstr(status)));
534                 goto done;
535         }
536
537         TALLOC_FREE(rec);
538
539         if ((lock_type & G_LOCK_PENDING) == 0) {
540                 int num_wakeups = 0;
541
542                 /*
543                  * We've been the lock holder. Others to retry. Don't
544                  * tell all others to avoid a thundering herd. In case
545                  * this leads to a complete stall because we miss some
546                  * processes, the loop in g_lock_lock tries at least
547                  * once a minute.
548                  */
549
550                 for (i=0; i<num_locks; i++) {
551                         if ((locks[i].lock_type & G_LOCK_PENDING) == 0) {
552                                 continue;
553                         }
554                         if (!process_exists(locks[i].pid)) {
555                                 continue;
556                         }
557
558                         /*
559                          * Ping all waiters to retry
560                          */
561                         status = messaging_send(ctx->msg, locks[i].pid,
562                                                 MSG_DBWRAP_G_LOCK_RETRY,
563                                                 &data_blob_null);
564                         if (!NT_STATUS_IS_OK(status)) {
565                                 DEBUG(1, ("sending retry to %s failed: %s\n",
566                                           procid_str(talloc_tos(),
567                                                      &locks[i].pid),
568                                           nt_errstr(status)));
569                         } else {
570                                 num_wakeups += 1;
571                         }
572                         if (num_wakeups > 5) {
573                                 break;
574                         }
575                 }
576         }
577 done:
578         /*
579          * For the error path, TALLOC_FREE(rec) as well. In the good
580          * path we have already freed it.
581          */
582         TALLOC_FREE(rec);
583
584         TALLOC_FREE(locks);
585         return status;
586 }
587
588 NTSTATUS g_lock_unlock(struct g_lock_ctx *ctx, const char *name)
589 {
590         NTSTATUS status;
591
592         status = g_lock_force_unlock(ctx, name, messaging_server_id(ctx->msg));
593
594 #ifdef CLUSTER_SUPPORT
595         if (lp_clustering()) {
596                 ctdb_unwatch(messaging_ctdbd_connection());
597         }
598 #endif
599         return status;
600 }
601
602 struct g_lock_locks_state {
603         int (*fn)(const char *name, void *private_data);
604         void *private_data;
605 };
606
607 static int g_lock_locks_fn(struct db_record *rec, void *priv)
608 {
609         struct g_lock_locks_state *state = (struct g_lock_locks_state *)priv;
610
611         if ((rec->key.dsize == 0) || (rec->key.dptr[rec->key.dsize-1] != 0)) {
612                 DEBUG(1, ("invalid key in g_lock.tdb, ignoring\n"));
613                 return 0;
614         }
615         return state->fn((char *)rec->key.dptr, state->private_data);
616 }
617
618 int g_lock_locks(struct g_lock_ctx *ctx,
619                  int (*fn)(const char *name, void *private_data),
620                  void *private_data)
621 {
622         struct g_lock_locks_state state;
623
624         state.fn = fn;
625         state.private_data = private_data;
626
627         return ctx->db->traverse_read(ctx->db, g_lock_locks_fn, &state);
628 }
629
630 NTSTATUS g_lock_dump(struct g_lock_ctx *ctx, const char *name,
631                      int (*fn)(struct server_id pid,
632                                enum g_lock_type lock_type,
633                                void *private_data),
634                      void *private_data)
635 {
636         TDB_DATA data;
637         int i, num_locks;
638         struct g_lock_rec *locks = NULL;
639         bool ret;
640
641         if (ctx->db->fetch(ctx->db, talloc_tos(), string_term_tdb_data(name),
642                            &data) != 0) {
643                 return NT_STATUS_NOT_FOUND;
644         }
645
646         if ((data.dsize == 0) || (data.dptr == NULL)) {
647                 return NT_STATUS_OK;
648         }
649
650         ret = g_lock_parse(talloc_tos(), data, &num_locks, &locks);
651
652         TALLOC_FREE(data.dptr);
653
654         if (!ret) {
655                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
656                 return NT_STATUS_INTERNAL_ERROR;
657         }
658
659         for (i=0; i<num_locks; i++) {
660                 if (fn(locks[i].pid, locks[i].lock_type, private_data) != 0) {
661                         break;
662                 }
663         }
664         TALLOC_FREE(locks);
665         return NT_STATUS_OK;
666 }
667
668 struct g_lock_get_state {
669         bool found;
670         struct server_id *pid;
671 };
672
673 static int g_lock_get_fn(struct server_id pid, enum g_lock_type lock_type,
674                          void *priv)
675 {
676         struct g_lock_get_state *state = (struct g_lock_get_state *)priv;
677
678         if ((lock_type & G_LOCK_PENDING) != 0) {
679                 return 0;
680         }
681
682         state->found = true;
683         *state->pid = pid;
684         return 1;
685 }
686
687 NTSTATUS g_lock_get(struct g_lock_ctx *ctx, const char *name,
688                     struct server_id *pid)
689 {
690         struct g_lock_get_state state;
691         NTSTATUS status;
692
693         state.found = false;
694         state.pid = pid;
695
696         status = g_lock_dump(ctx, name, g_lock_get_fn, &state);
697         if (!NT_STATUS_IS_OK(status)) {
698                 return status;
699         }
700         if (!state.found) {
701                 return NT_STATUS_NOT_FOUND;
702         }
703         return NT_STATUS_OK;
704 }
705
706 static bool g_lock_init_all(TALLOC_CTX *mem_ctx,
707                             struct tevent_context **pev,
708                             struct messaging_context **pmsg,
709                             const struct server_id self,
710                             struct g_lock_ctx **pg_ctx)
711 {
712         struct tevent_context *ev = NULL;
713         struct messaging_context *msg = NULL;
714         struct g_lock_ctx *g_ctx = NULL;
715
716         ev = tevent_context_init(mem_ctx);
717         if (ev == NULL) {
718                 d_fprintf(stderr, "ERROR: could not init event context\n");
719                 goto fail;
720         }
721         msg = messaging_init(mem_ctx, self, ev);
722         if (msg == NULL) {
723                 d_fprintf(stderr, "ERROR: could not init messaging context\n");
724                 goto fail;
725         }
726         g_ctx = g_lock_ctx_init(mem_ctx, msg);
727         if (g_ctx == NULL) {
728                 d_fprintf(stderr, "ERROR: could not init g_lock context\n");
729                 goto fail;
730         }
731
732         *pev = ev;
733         *pmsg = msg;
734         *pg_ctx = g_ctx;
735         return true;
736 fail:
737         TALLOC_FREE(g_ctx);
738         TALLOC_FREE(msg);
739         TALLOC_FREE(ev);
740         return false;
741 }
742
743 NTSTATUS g_lock_do(const char *name, enum g_lock_type lock_type,
744                    struct timeval timeout, const struct server_id self,
745                    void (*fn)(void *private_data), void *private_data)
746 {
747         struct tevent_context *ev = NULL;
748         struct messaging_context *msg = NULL;
749         struct g_lock_ctx *g_ctx = NULL;
750         NTSTATUS status;
751
752         if (!g_lock_init_all(talloc_tos(), &ev, &msg, self, &g_ctx)) {
753                 status = NT_STATUS_ACCESS_DENIED;
754                 goto done;
755         }
756
757         status = g_lock_lock(g_ctx, name, lock_type, timeout);
758         if (!NT_STATUS_IS_OK(status)) {
759                 goto done;
760         }
761         fn(private_data);
762         g_lock_unlock(g_ctx, name);
763
764 done:
765         TALLOC_FREE(g_ctx);
766         TALLOC_FREE(msg);
767         TALLOC_FREE(ev);
768         return status;
769 }