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