summaryrefslogtreecommitdiffstats
path: root/server/db/sysdb_req.c
blob: a768fefb247ffb029bff7d65c53bf5278a938a9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
   SSSD

   System Database

   Copyright (C) Simo Sorce <ssorce@redhat.com>	2009

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include <time.h>
#include "util/util.h"
#include "util/dlinklist.h"
#include "db/sysdb_private.h"
#include "ldb.h"

struct sysdb_handle {
    struct sysdb_handle *next, *prev;
    struct sysdb_ctx *ctx;
    sysdb_fn_t fn;
    void *pvt;
    int status;
    bool transaction_active;
};

bool sysdb_handle_check_running(struct sysdb_handle *handle)
{
    if (handle->ctx->queue == handle) return true;
    return false;
}

struct sysdb_ctx *sysdb_handle_get_ctx(struct sysdb_handle *handle)
{
    return handle->ctx;
}

static void sysdb_queue_run(struct tevent_context *ev,
                          struct tevent_timer *te,
                          struct timeval tv, void *ptr)
{
    struct sysdb_handle *handle = talloc_get_type(ptr, struct sysdb_handle);

    if (handle != handle->ctx->queue) abort();

    handle->fn(handle, handle->pvt);
}

static int sysdb_queue_schedule(struct sysdb_handle *handle)
{
    struct tevent_timer *te = NULL;
    struct timeval tv;

    /* call it asap */
    tv.tv_sec = 0;
    tv.tv_usec = 0;

    te = tevent_add_timer(handle->ctx->ev, handle, tv, sysdb_queue_run, handle);
    if (te == NULL) {
        return EIO;
    }

    return EOK;
}

static int sysdb_enqueue(struct sysdb_handle *handle)
{
    int ret = EOK;

    DLIST_ADD_END(handle->ctx->queue, handle, struct sysdb_handle *);

    if (handle->ctx->queue == handle) {
        ret = sysdb_queue_schedule(handle);
    }

    return ret;
}

static void sysdb_transaction_end(struct sysdb_handle *handle);

static int sysdb_handle_destructor(void *ptr)
{
    struct sysdb_handle *handle;
    int ret;

    handle = talloc_get_type(ptr, struct sysdb_handle);

    if (handle->ctx->queue != handle) {
        DLIST_REMOVE(handle->ctx->queue, handle);
        return 0;
    }

    /* handle is the currently running operation or
     * scheduled to run operation */

    if (handle->transaction_active) {
        /* freeing before the transaction is complete */
        handle->status = ETIMEDOUT;
        sysdb_transaction_end(handle);
    }

    DLIST_REMOVE(handle->ctx->queue, handle);

    /* make sure we schedule the next in line if any */
    if (handle->ctx->queue) {
        ret = sysdb_queue_schedule(handle->ctx->queue);
        if (ret != EOK) abort();
    }

    return 0;
}

static struct sysdb_handle *sysdb_new_req(TALLOC_CTX *memctx,
                                       struct sysdb_ctx *ctx,
                                       sysdb_fn_t fn, void *pvt)
{
    struct sysdb_handle *handle;

    handle = talloc_zero(memctx, struct sysdb_handle);
    if (!handle) return NULL;

    handle->ctx = ctx;
    handle->fn = fn;
    handle->pvt = pvt;

    talloc_set_destructor((TALLOC_CTX *)handle, sysdb_handle_destructor);

    return handle;
}

static void sysdb_transaction_int(struct sysdb_handle *ihandle, void *pvt)
{
    struct sysdb_handle *handle = talloc_get_type(pvt, struct sysdb_handle);
    int ret;

    /* first of all swap this internal handle with the real one on the queue
     * otherwise request_done() will later abort */
    DLIST_REMOVE(handle->ctx->queue, ihandle);
    DLIST_ADD(handle->ctx->queue, handle);

    if (ihandle->status != EOK) {
        handle->status = ihandle->status;
        handle->fn(handle, handle->pvt);
        return;
    }

    ret = ldb_transaction_start(handle->ctx->ldb);
    if (ret != LDB_SUCCESS) {
        DEBUG(1, ("Failed to start ldb transaction! (%d)\n", ret));
        handle->status = sysdb_error_to_errno(ret);
    }
    handle->transaction_active = true;

    handle->fn(handle, handle->pvt);
}

static void sysdb_transaction_end(struct sysdb_handle *handle)
{
    int ret;

    if (handle->status == EOK) {
        ret = ldb_transaction_commit(handle->ctx->ldb);
        if (ret != LDB_SUCCESS) {
            DEBUG(1, ("Failed to commit ldb transaction! (%d)\n", ret));
        }
    } else {
        DEBUG(4, ("Canceling transaction (%d[%s])\n",
                  handle->status, strerror(handle->status)));
        ret = ldb_transaction_cancel(handle->ctx->ldb);
        if (ret != LDB_SUCCESS) {
            DEBUG(1, ("Failed to cancel ldb transaction! (%d)\n", ret));
            /* FIXME: abort() ? */
        }
    }
    handle->transaction_active = false;
}

int sysdb_transaction(TALLOC_CTX *memctx, struct sysdb_ctx *ctx,
                      sysdb_fn_t fn, void *pvt)
{
    struct sysdb_handle *handle, *ihandle;

    handle = sysdb_new_req(memctx, ctx, fn, pvt);
    if (!handle) return ENOMEM;

    ihandle = sysdb_new_req(handle, ctx, sysdb_transaction_int, handle);
    if (!ihandle) {
        talloc_free(ihandle);
        return ENOMEM;
    }

    return sysdb_enqueue(ihandle);
}

void sysdb_transaction_done(struct sysdb_handle *handle, int status)
{
    int ret;

    if (handle->ctx->queue != handle) abort();
    if (!handle->transaction_active) abort();

    handle->status = status;

    sysdb_transaction_end(handle);

    DLIST_REMOVE(handle->ctx->queue, handle);

    if (handle->ctx->queue) {
        ret = sysdb_queue_schedule(handle->ctx->queue);
        if (ret != EOK) abort();
    }

    talloc_free(handle);
}

int sysdb_operation(TALLOC_CTX *memctx, struct sysdb_ctx *ctx,
                    sysdb_fn_t fn, void *pvt)
{
    struct sysdb_handle *handle;

    handle = sysdb_new_req(memctx, ctx, fn, pvt);
    if (!handle) return ENOMEM;

    return sysdb_enqueue(handle);
}

void sysdb_operation_done(struct sysdb_handle *handle)
{
    int ret;

    if (handle->ctx->queue != handle) abort();

    DLIST_REMOVE(handle->ctx->queue, handle);

    if (handle->ctx->queue) {
        ret = sysdb_queue_schedule(handle->ctx->queue);
        if (ret != EOK) abort();
    }

    talloc_free(handle);
}