s3:dbwrap: move db_open() to a file dbwrap_open.c of its own.
[ira/wip.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.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"));
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
202 again:
203         rec = ctx->db->fetch_locked(ctx->db, talloc_tos(),
204                                     string_term_tdb_data(name));
205         if (rec == NULL) {
206                 DEBUG(10, ("fetch_locked(\"%s\") failed\n", name));
207                 status = NT_STATUS_LOCK_NOT_GRANTED;
208                 goto done;
209         }
210
211         if (!g_lock_parse(talloc_tos(), rec->value, &num_locks, &locks)) {
212                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
213                 status = NT_STATUS_INTERNAL_ERROR;
214                 goto done;
215         }
216
217         self = messaging_server_id(ctx->msg);
218         our_index = -1;
219
220         for (i=0; i<num_locks; i++) {
221                 if (procid_equal(&self, &locks[i].pid)) {
222                         if (our_index != -1) {
223                                 DEBUG(1, ("g_lock_trylock: Added ourself "
224                                           "twice!\n"));
225                                 status = NT_STATUS_INTERNAL_ERROR;
226                                 goto done;
227                         }
228                         if ((locks[i].lock_type & G_LOCK_PENDING) == 0) {
229                                 DEBUG(1, ("g_lock_trylock: Found ourself not "
230                                           "pending!\n"));
231                                 status = NT_STATUS_INTERNAL_ERROR;
232                                 goto done;
233                         }
234
235                         our_index = i;
236
237                         /* never conflict with ourself */
238                         continue;
239                 }
240                 if (g_lock_conflicts(lock_type, &locks[i])) {
241                         struct server_id pid = locks[i].pid;
242
243                         if (!process_exists(pid)) {
244                                 TALLOC_FREE(locks);
245                                 TALLOC_FREE(rec);
246                                 status = g_lock_force_unlock(ctx, name, pid);
247                                 if (!NT_STATUS_IS_OK(status)) {
248                                         DEBUG(1, ("Could not unlock dead lock "
249                                                   "holder!\n"));
250                                         goto done;
251                                 }
252                                 goto again;
253                         }
254                         lock_type |= G_LOCK_PENDING;
255                 }
256         }
257
258         if (our_index == -1) {
259                 /* First round, add ourself */
260
261                 locks = g_lock_addrec(talloc_tos(), locks, &num_locks,
262                                       self, lock_type);
263                 if (locks == NULL) {
264                         DEBUG(10, ("g_lock_addrec failed\n"));
265                         status = NT_STATUS_NO_MEMORY;
266                         goto done;
267                 }
268         } else {
269                 /*
270                  * Retry. We were pending last time. Overwrite the
271                  * stored lock_type with what we calculated, we might
272                  * have acquired the lock this time.
273                  */
274                 locks[our_index].lock_type = lock_type;
275         }
276
277         if (NT_STATUS_IS_OK(status) && ((lock_type & G_LOCK_PENDING) == 0)) {
278                 /*
279                  * Walk through the list of locks, search for dead entries
280                  */
281                 g_lock_cleanup(&num_locks, locks);
282         }
283
284         data = make_tdb_data((uint8_t *)locks, num_locks * sizeof(*locks));
285         store_status = rec->store(rec, data, 0);
286         if (!NT_STATUS_IS_OK(store_status)) {
287                 DEBUG(1, ("rec->store failed: %s\n",
288                           nt_errstr(store_status)));
289                 status = store_status;
290         }
291
292 done:
293         TALLOC_FREE(locks);
294         TALLOC_FREE(rec);
295
296         if (NT_STATUS_IS_OK(status) && (lock_type & G_LOCK_PENDING) != 0) {
297                 return STATUS_PENDING;
298         }
299
300         return NT_STATUS_OK;
301 }
302
303 NTSTATUS g_lock_lock(struct g_lock_ctx *ctx, const char *name,
304                      enum g_lock_type lock_type, struct timeval timeout)
305 {
306         struct tevent_timer *te = NULL;
307         NTSTATUS status;
308         bool retry = false;
309         struct timeval timeout_end;
310         struct timeval time_now;
311
312         DEBUG(10, ("Trying to acquire lock %d for %s\n", (int)lock_type,
313                    name));
314
315         if (lock_type & ~1) {
316                 DEBUG(1, ("Got invalid lock type %d for %s\n",
317                           (int)lock_type, name));
318                 return NT_STATUS_INVALID_PARAMETER;
319         }
320
321 #ifdef CLUSTER_SUPPORT
322         if (lp_clustering()) {
323                 status = ctdb_watch_us(messaging_ctdbd_connection());
324                 if (!NT_STATUS_IS_OK(status)) {
325                         DEBUG(10, ("could not register retry with ctdb: %s\n",
326                                    nt_errstr(status)));
327                         goto done;
328                 }
329         }
330 #endif
331
332         status = messaging_register(ctx->msg, &retry, MSG_DBWRAP_G_LOCK_RETRY,
333                                     g_lock_got_retry);
334         if (!NT_STATUS_IS_OK(status)) {
335                 DEBUG(10, ("messaging_register failed: %s\n",
336                            nt_errstr(status)));
337                 return status;
338         }
339
340         time_now = timeval_current();
341         timeout_end = timeval_sum(&time_now, &timeout);
342
343         while (true) {
344                 struct pollfd *pollfds;
345                 int num_pollfds;
346                 int saved_errno;
347                 int ret;
348                 struct timeval timeout_remaining, select_timeout;
349
350                 status = g_lock_trylock(ctx, name, lock_type);
351                 if (NT_STATUS_IS_OK(status)) {
352                         DEBUG(10, ("Got lock %s\n", name));
353                         break;
354                 }
355                 if (!NT_STATUS_EQUAL(status, STATUS_PENDING)) {
356                         DEBUG(10, ("g_lock_trylock failed: %s\n",
357                                    nt_errstr(status)));
358                         break;
359                 }
360
361                 DEBUG(10, ("g_lock_trylock: Did not get lock, waiting...\n"));
362
363                 /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
364                  *             !!! HACK ALERT --- FIX ME !!!
365                  * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
366                  * What we really want to do here is to react to
367                  * MSG_DBWRAP_G_LOCK_RETRY messages that are either sent
368                  * by a client doing g_lock_unlock or by ourselves when
369                  * we receive a CTDB_SRVID_SAMBA_NOTIFY or
370                  * CTDB_SRVID_RECONFIGURE message from ctdbd, i.e. when
371                  * either a client holding a lock or a complete node
372                  * has died.
373                  *
374                  * Doing this properly involves calling tevent_loop_once(),
375                  * but doing this here with the main ctdbd messaging context
376                  * creates a nested event loop when g_lock_lock() is called
377                  * from the main event loop, e.g. in a tcon_and_X where the
378                  * share_info.tdb needs to be initialized and is locked by
379                  * another process, or when the remore registry is accessed
380                  * for writing and some other process already holds a lock
381                  * on the registry.tdb.
382                  *
383                  * So as a quick fix, we act a little coarsely here: we do
384                  * a select on the ctdb connection fd and when it is readable
385                  * or we get EINTR, then we retry without actually parsing
386                  * any ctdb packages or dispatching messages. This means that
387                  * we retry more often than intended by design, but this does
388                  * not harm and it is unobtrusive. When we have finished,
389                  * the main loop will pick up all the messages and ctdb
390                  * packets. The only extra twist is that we cannot use timed
391                  * events here but have to handcode a timeout.
392                  */
393
394                 /*
395                  * We allocate 2 entries here. One is needed anyway for
396                  * sys_poll and in the clustering case we might have to add
397                  * the ctdb fd. This avoids the realloc then.
398                  */
399                 pollfds = talloc_array(talloc_tos(), struct pollfd, 2);
400                 if (pollfds == NULL) {
401                         status = NT_STATUS_NO_MEMORY;
402                         break;
403                 }
404                 num_pollfds = 0;
405
406 #ifdef CLUSTER_SUPPORT
407                 if (lp_clustering()) {
408                         struct ctdbd_connection *conn;
409                         conn = messaging_ctdbd_connection();
410
411                         pollfds[0].fd = ctdbd_conn_get_fd(conn);
412                         pollfds[0].events = POLLIN|POLLHUP;
413
414                         num_pollfds += 1;
415                 }
416 #endif
417
418                 time_now = timeval_current();
419                 timeout_remaining = timeval_until(&time_now, &timeout_end);
420                 select_timeout = timeval_set(60, 0);
421
422                 select_timeout = timeval_min(&select_timeout,
423                                              &timeout_remaining);
424
425                 ret = sys_poll(pollfds, num_pollfds,
426                                timeval_to_msec(select_timeout));
427
428                 /*
429                  * We're not *really interested in the actual flags. We just
430                  * need to retry this whole thing.
431                  */
432                 saved_errno = errno;
433                 TALLOC_FREE(pollfds);
434                 errno = saved_errno;
435
436                 if (ret == -1) {
437                         if (errno != EINTR) {
438                                 DEBUG(1, ("error calling select: %s\n",
439                                           strerror(errno)));
440                                 status = NT_STATUS_INTERNAL_ERROR;
441                                 break;
442                         }
443                         /*
444                          * errno == EINTR:
445                          * This means a signal was received.
446                          * It might have been a MSG_DBWRAP_G_LOCK_RETRY message.
447                          * ==> retry
448                          */
449                 } else if (ret == 0) {
450                         if (timeval_expired(&timeout_end)) {
451                                 DEBUG(10, ("g_lock_lock timed out\n"));
452                                 status = NT_STATUS_LOCK_NOT_GRANTED;
453                                 break;
454                         } else {
455                                 DEBUG(10, ("select returned 0 but timeout not "
456                                            "not expired, retrying\n"));
457                         }
458                 } else if (ret != 1) {
459                         DEBUG(1, ("invalid return code of select: %d\n", ret));
460                         status = NT_STATUS_INTERNAL_ERROR;
461                         break;
462                 }
463                 /*
464                  * ret == 1:
465                  * This means ctdbd has sent us some data.
466                  * Might be a CTDB_SRVID_RECONFIGURE or a
467                  * CTDB_SRVID_SAMBA_NOTIFY message.
468                  * ==> retry
469                  */
470         }
471
472 #ifdef CLUSTER_SUPPORT
473 done:
474 #endif
475
476         if (!NT_STATUS_IS_OK(status)) {
477                 NTSTATUS unlock_status;
478
479                 unlock_status = g_lock_unlock(ctx, name);
480
481                 if (!NT_STATUS_IS_OK(unlock_status)) {
482                         DEBUG(1, ("Could not remove ourself from the locking "
483                                   "db: %s\n", nt_errstr(status)));
484                 }
485         }
486
487         messaging_deregister(ctx->msg, MSG_DBWRAP_G_LOCK_RETRY, &retry);
488         TALLOC_FREE(te);
489
490         return status;
491 }
492
493 static void g_lock_got_retry(struct messaging_context *msg,
494                              void *private_data,
495                              uint32_t msg_type,
496                              struct server_id server_id,
497                              DATA_BLOB *data)
498 {
499         bool *pretry = (bool *)private_data;
500
501         DEBUG(10, ("Got retry message from pid %s\n",
502                    server_id_str(talloc_tos(), &server_id)));
503
504         *pretry = true;
505 }
506
507 static NTSTATUS g_lock_force_unlock(struct g_lock_ctx *ctx, const char *name,
508                                     struct server_id pid)
509 {
510         struct db_record *rec = NULL;
511         struct g_lock_rec *locks = NULL;
512         int i, num_locks;
513         enum g_lock_type lock_type;
514         NTSTATUS status;
515
516         rec = ctx->db->fetch_locked(ctx->db, talloc_tos(),
517                                     string_term_tdb_data(name));
518         if (rec == NULL) {
519                 DEBUG(10, ("fetch_locked(\"%s\") failed\n", name));
520                 status = NT_STATUS_INTERNAL_ERROR;
521                 goto done;
522         }
523
524         if (!g_lock_parse(talloc_tos(), rec->value, &num_locks, &locks)) {
525                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
526                 status = NT_STATUS_INTERNAL_ERROR;
527                 goto done;
528         }
529
530         for (i=0; i<num_locks; i++) {
531                 if (procid_equal(&pid, &locks[i].pid)) {
532                         break;
533                 }
534         }
535
536         if (i == num_locks) {
537                 DEBUG(10, ("g_lock_force_unlock: Lock not found\n"));
538                 status = NT_STATUS_INTERNAL_ERROR;
539                 goto done;
540         }
541
542         lock_type = locks[i].lock_type;
543
544         if (i < (num_locks-1)) {
545                 locks[i] = locks[num_locks-1];
546         }
547         num_locks -= 1;
548
549         if (num_locks == 0) {
550                 status = rec->delete_rec(rec);
551         } else {
552                 TDB_DATA data;
553                 data = make_tdb_data((uint8_t *)locks,
554                                      sizeof(struct g_lock_rec) * num_locks);
555                 status = rec->store(rec, data, 0);
556         }
557
558         if (!NT_STATUS_IS_OK(status)) {
559                 DEBUG(1, ("g_lock_force_unlock: Could not store record: %s\n",
560                           nt_errstr(status)));
561                 goto done;
562         }
563
564         TALLOC_FREE(rec);
565
566         if ((lock_type & G_LOCK_PENDING) == 0) {
567                 int num_wakeups = 0;
568
569                 /*
570                  * We've been the lock holder. Others to retry. Don't
571                  * tell all others to avoid a thundering herd. In case
572                  * this leads to a complete stall because we miss some
573                  * processes, the loop in g_lock_lock tries at least
574                  * once a minute.
575                  */
576
577                 for (i=0; i<num_locks; i++) {
578                         if ((locks[i].lock_type & G_LOCK_PENDING) == 0) {
579                                 continue;
580                         }
581                         if (!process_exists(locks[i].pid)) {
582                                 continue;
583                         }
584
585                         /*
586                          * Ping all waiters to retry
587                          */
588                         status = messaging_send(ctx->msg, locks[i].pid,
589                                                 MSG_DBWRAP_G_LOCK_RETRY,
590                                                 &data_blob_null);
591                         if (!NT_STATUS_IS_OK(status)) {
592                                 DEBUG(1, ("sending retry to %s failed: %s\n",
593                                           server_id_str(talloc_tos(),
594                                                      &locks[i].pid),
595                                           nt_errstr(status)));
596                         } else {
597                                 num_wakeups += 1;
598                         }
599                         if (num_wakeups > 5) {
600                                 break;
601                         }
602                 }
603         }
604 done:
605         /*
606          * For the error path, TALLOC_FREE(rec) as well. In the good
607          * path we have already freed it.
608          */
609         TALLOC_FREE(rec);
610
611         TALLOC_FREE(locks);
612         return status;
613 }
614
615 NTSTATUS g_lock_unlock(struct g_lock_ctx *ctx, const char *name)
616 {
617         NTSTATUS status;
618
619         status = g_lock_force_unlock(ctx, name, messaging_server_id(ctx->msg));
620
621 #ifdef CLUSTER_SUPPORT
622         if (lp_clustering()) {
623                 ctdb_unwatch(messaging_ctdbd_connection());
624         }
625 #endif
626         return status;
627 }
628
629 struct g_lock_locks_state {
630         int (*fn)(const char *name, void *private_data);
631         void *private_data;
632 };
633
634 static int g_lock_locks_fn(struct db_record *rec, void *priv)
635 {
636         struct g_lock_locks_state *state = (struct g_lock_locks_state *)priv;
637
638         if ((rec->key.dsize == 0) || (rec->key.dptr[rec->key.dsize-1] != 0)) {
639                 DEBUG(1, ("invalid key in g_lock.tdb, ignoring\n"));
640                 return 0;
641         }
642         return state->fn((char *)rec->key.dptr, state->private_data);
643 }
644
645 int g_lock_locks(struct g_lock_ctx *ctx,
646                  int (*fn)(const char *name, void *private_data),
647                  void *private_data)
648 {
649         struct g_lock_locks_state state;
650
651         state.fn = fn;
652         state.private_data = private_data;
653
654         return ctx->db->traverse_read(ctx->db, g_lock_locks_fn, &state);
655 }
656
657 NTSTATUS g_lock_dump(struct g_lock_ctx *ctx, const char *name,
658                      int (*fn)(struct server_id pid,
659                                enum g_lock_type lock_type,
660                                void *private_data),
661                      void *private_data)
662 {
663         TDB_DATA data;
664         int i, num_locks;
665         struct g_lock_rec *locks = NULL;
666         bool ret;
667
668         if (ctx->db->fetch(ctx->db, talloc_tos(), string_term_tdb_data(name),
669                            &data) != 0) {
670                 return NT_STATUS_NOT_FOUND;
671         }
672
673         if ((data.dsize == 0) || (data.dptr == NULL)) {
674                 return NT_STATUS_OK;
675         }
676
677         ret = g_lock_parse(talloc_tos(), data, &num_locks, &locks);
678
679         TALLOC_FREE(data.dptr);
680
681         if (!ret) {
682                 DEBUG(10, ("g_lock_parse for %s failed\n", name));
683                 return NT_STATUS_INTERNAL_ERROR;
684         }
685
686         for (i=0; i<num_locks; i++) {
687                 if (fn(locks[i].pid, locks[i].lock_type, private_data) != 0) {
688                         break;
689                 }
690         }
691         TALLOC_FREE(locks);
692         return NT_STATUS_OK;
693 }
694
695 struct g_lock_get_state {
696         bool found;
697         struct server_id *pid;
698 };
699
700 static int g_lock_get_fn(struct server_id pid, enum g_lock_type lock_type,
701                          void *priv)
702 {
703         struct g_lock_get_state *state = (struct g_lock_get_state *)priv;
704
705         if ((lock_type & G_LOCK_PENDING) != 0) {
706                 return 0;
707         }
708
709         state->found = true;
710         *state->pid = pid;
711         return 1;
712 }
713
714 NTSTATUS g_lock_get(struct g_lock_ctx *ctx, const char *name,
715                     struct server_id *pid)
716 {
717         struct g_lock_get_state state;
718         NTSTATUS status;
719
720         state.found = false;
721         state.pid = pid;
722
723         status = g_lock_dump(ctx, name, g_lock_get_fn, &state);
724         if (!NT_STATUS_IS_OK(status)) {
725                 return status;
726         }
727         if (!state.found) {
728                 return NT_STATUS_NOT_FOUND;
729         }
730         return NT_STATUS_OK;
731 }
732
733 static bool g_lock_init_all(TALLOC_CTX *mem_ctx,
734                             struct tevent_context **pev,
735                             struct messaging_context **pmsg,
736                             const struct server_id self,
737                             struct g_lock_ctx **pg_ctx)
738 {
739         struct tevent_context *ev = NULL;
740         struct messaging_context *msg = NULL;
741         struct g_lock_ctx *g_ctx = NULL;
742
743         ev = tevent_context_init(mem_ctx);
744         if (ev == NULL) {
745                 d_fprintf(stderr, "ERROR: could not init event context\n");
746                 goto fail;
747         }
748         msg = messaging_init(mem_ctx, self, ev);
749         if (msg == NULL) {
750                 d_fprintf(stderr, "ERROR: could not init messaging context\n");
751                 goto fail;
752         }
753         g_ctx = g_lock_ctx_init(mem_ctx, msg);
754         if (g_ctx == NULL) {
755                 d_fprintf(stderr, "ERROR: could not init g_lock context\n");
756                 goto fail;
757         }
758
759         *pev = ev;
760         *pmsg = msg;
761         *pg_ctx = g_ctx;
762         return true;
763 fail:
764         TALLOC_FREE(g_ctx);
765         TALLOC_FREE(msg);
766         TALLOC_FREE(ev);
767         return false;
768 }
769
770 NTSTATUS g_lock_do(const char *name, enum g_lock_type lock_type,
771                    struct timeval timeout, const struct server_id self,
772                    void (*fn)(void *private_data), void *private_data)
773 {
774         struct tevent_context *ev = NULL;
775         struct messaging_context *msg = NULL;
776         struct g_lock_ctx *g_ctx = NULL;
777         NTSTATUS status;
778
779         if (!g_lock_init_all(talloc_tos(), &ev, &msg, self, &g_ctx)) {
780                 status = NT_STATUS_ACCESS_DENIED;
781                 goto done;
782         }
783
784         status = g_lock_lock(g_ctx, name, lock_type, timeout);
785         if (!NT_STATUS_IS_OK(status)) {
786                 goto done;
787         }
788         fn(private_data);
789         g_lock_unlock(g_ctx, name);
790
791 done:
792         TALLOC_FREE(g_ctx);
793         TALLOC_FREE(msg);
794         TALLOC_FREE(ev);
795         return status;
796 }