summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-locks.c
blob: 0737a731e1b09a8347e2c5098f9edb2f3d127f2c (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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
/*
   Copyright (c) 2013-2014 Red Hat, Inc. <http://www.redhat.com>
   This file is part of GlusterFS.

   This file is licensed to you under your choice of the GNU Lesser
   General Public License, version 3 or any later version (LGPLv3 or
   later), or the GNU General Public License, version 2 (GPLv2), in all
   cases as published by the Free Software Foundation.
*/
#ifndef _CONFIG_H
#define _CONFIG_H
#include "config.h"
#endif

#include "common-utils.h"
#include "cli1-xdr.h"
#include "xdr-generic.h"
#include "glusterd.h"
#include "glusterd-op-sm.h"
#include "glusterd-store.h"
#include "glusterd-utils.h"
#include "glusterd-volgen.h"
#include "glusterd-locks.h"
#include "run.h"
#include "syscall.h"

#include <signal.h>

static dict_t *vol_lock;

/* Initialize the global vol-lock list(dict) when
 * glusterd is spawned */
int32_t
glusterd_vol_lock_init ()
{
        int32_t ret = -1;

        vol_lock = dict_new ();
        if (!vol_lock) {
                ret = -1;
                goto out;
        }

        ret = 0;
out:
        return ret;
}

/* Destroy the global vol-lock list(dict) when
 * glusterd cleanup is performed */
void
glusterd_vol_lock_fini ()
{
        if (vol_lock)
                dict_destroy (vol_lock);
}

int32_t
glusterd_get_vol_lock_owner (char *volname, uuid_t *uuid)
{
        int32_t        ret      = -1;
        vol_lock_obj  *lock_obj = NULL;
        uuid_t         no_owner = {"\0"};

        if (!volname || !uuid) {
                gf_log ("", GF_LOG_ERROR, "volname or uuid is null.");
                ret = -1;
                goto out;
        }

        ret = dict_get_bin(vol_lock, volname, (void **) &lock_obj);
        if (!ret)
                uuid_copy (*uuid, lock_obj->lock_owner);
        else
                uuid_copy (*uuid, no_owner);

        ret = 0;
out:
        gf_log ("", GF_LOG_DEBUG, "Returning %d", ret);
        return ret;
}

int32_t
glusterd_multiple_volumes_unlock (dict_t *dict, uuid_t uuid)
{
        int32_t        ret                   = -1;
        int32_t        op_ret                =  0;
        int32_t        i                     = -1;
        int32_t        volcount              = -1;
        char           volname_buf[PATH_MAX] = "";
        char          *volname               = NULL;

        if (!dict) {
                gf_log ("", GF_LOG_ERROR, "dict is null.");
                ret = -1;
                goto out;
        }

        ret = dict_get_int32 (dict, "volcount", &volcount);
        if (ret) {
                gf_log ("", GF_LOG_DEBUG, "Failed to get volcount"
                        "name");
                goto out;
        }

        /* Unlocking one volume after other */
        for (i = 1; i <= volcount; i++) {
                ret = snprintf (volname_buf, sizeof(volname_buf) - 1,
                                "volname%d", i);
                volname_buf[ret] = '\0';

                ret = dict_get_str (dict, volname_buf, &volname);
                if (ret) {
                        gf_log ("", GF_LOG_ERROR, "Unable to get %s Volcount = %d",
                                volname_buf, volcount);
                        goto out;
                }

                ret = glusterd_volume_unlock (volname, uuid);
                if (ret) {
                        gf_log ("", GF_LOG_ERROR,
                                "Failed to release lock for %s. ", volname);
                        op_ret = ret;
                }
        }

        ret = op_ret;
out:
        gf_log ("", GF_LOG_DEBUG, "Returning %d", ret);
        return ret;
}

int32_t
glusterd_multiple_volumes_lock (dict_t *dict, uuid_t uuid)
{
        int32_t        ret                   = -1;
        int32_t        i                     = -1;
        int32_t        volcount              = -1;
        char           volname_buf[PATH_MAX] = "";
        char          *volname               = NULL;
        int32_t        locked_volcount       = 0;

        if (!dict) {
                gf_log ("", GF_LOG_ERROR, "dict is null.");
                ret = -1;
                goto out;
        }

        ret = dict_get_int32 (dict, "volcount", &volcount);
        if (ret) {
                gf_log ("", GF_LOG_DEBUG, "Failed to get volcount"
                        "name");
                goto out;
        }

        /* Locking one volume after other */
        for (i = 1; i <= volcount; i++) {
                ret = snprintf (volname_buf, sizeof(volname_buf) - 1,
                                "volname%d", i);
                volname_buf[ret] = '\0';

                ret = dict_get_str (dict, volname_buf, &volname);
                if (ret) {
                        gf_log ("", GF_LOG_ERROR, "Unable to get %s Volcount = %d",
                                volname_buf, volcount);
                        goto out;
                }

                ret = glusterd_volume_lock (volname, uuid);
                if (ret) {
                        gf_log ("", GF_LOG_ERROR,
                                "Failed to acquire lock for %s "
                                "on behalf of %s. Unlocking "
                                "other volumes locked by this "
                                "transaction", volname, uuid_utoa(uuid));
                        break;
                }
                locked_volcount ++;
        }

        /* If we failed to lock one volume, unlock others and return failure */
        if (volcount != locked_volcount) {
                for (i = 1; i <= locked_volcount; i++) {
                        ret = snprintf (volname_buf, sizeof(volname_buf) - 1,
                                        "volname%d", i);
                        volname_buf[ret] = '\0';

                        ret = dict_get_str (dict, volname_buf, &volname);
                        if (ret) {
                                gf_log ("", GF_LOG_ERROR,
                                        "Unable to get %s lockd_volcount = %d",
                                        volname_buf, volcount);
                                goto out;
                        }

                        ret = glusterd_volume_unlock (volname, uuid);
                        if (ret)
                                gf_log ("", GF_LOG_ERROR,
                                        "Failed to release lock for %s.",
                                        volname);
                }
                ret = -1;
        }

out:
        gf_log ("", GF_LOG_DEBUG, "Returning %d", ret);
        return ret;
}

int32_t
glusterd_volume_lock (char *volname, uuid_t uuid)
{
        int32_t        ret      = -1;
        vol_lock_obj  *lock_obj = NULL;
        uuid_t         owner    = {0};

        if (!volname) {
                gf_log (THIS->name, GF_LOG_ERROR, "volname is null.");
                ret = -1;
                goto out;
        }

        gf_log (THIS->name, GF_LOG_TRACE,
                "Trying to acquire lock of %s for %s",
                volname, uuid_utoa (uuid));

        ret = glusterd_get_vol_lock_owner (volname, &owner);
        if (ret) {
                gf_log (THIS->name, GF_LOG_DEBUG,
                        "Unable to get volume lock owner");
                goto out;
        }

        /* If the lock has already been held for the given volume
         * we fail */
        if (!uuid_is_null (owner)) {
                gf_log (THIS->name, GF_LOG_ERROR, "Lock for %s held by %s",
                        volname, uuid_utoa (owner));
                ret = -1;
                goto out;
        }

        lock_obj = GF_CALLOC (1, sizeof(vol_lock_obj),
                              gf_common_mt_vol_lock_obj_t);
        if (!lock_obj) {
                ret = -1;
                goto out;
        }

        uuid_copy (lock_obj->lock_owner, uuid);

        ret = dict_set_bin (vol_lock, volname, lock_obj,
                            sizeof(vol_lock_obj));
        if (ret) {
                gf_log (THIS->name, GF_LOG_ERROR,
                        "Unable to set lock owner in volume lock");
                if (lock_obj)
                        GF_FREE (lock_obj);
                goto out;
        }

        gf_log (THIS->name, GF_LOG_DEBUG, "Lock for %s successfully held by %s",
                volname, uuid_utoa (uuid));

        ret = 0;
out:
        gf_log (THIS->name, GF_LOG_TRACE, "Returning %d", ret);
        return ret;
}

int32_t
glusterd_volume_unlock (char *volname, uuid_t uuid)
{
        int32_t        ret      = -1;
        uuid_t         owner    = {0};

        if (!volname) {
                gf_log (THIS->name, GF_LOG_ERROR, "volname is null.");
                ret = -1;
                goto out;
        }

        gf_log (THIS->name, GF_LOG_TRACE, "Trying to release lock of %s for %s",
                volname, uuid_utoa (uuid));

        ret = glusterd_get_vol_lock_owner (volname, &owner);
        if (ret) {
                gf_log (THIS->name, GF_LOG_DEBUG,
                        "Unable to get volume lock owner");
                goto out;
        }

        if (uuid_is_null (owner)) {
                gf_log (THIS->name, GF_LOG_ERROR,
                        "Lock for %s not held", volname);
                ret = -1;
                goto out;
        }

        ret = uuid_compare (uuid, owner);
        if (ret) {

                gf_log (THIS->name, GF_LOG_ERROR, "Lock owner mismatch. "
                        "Lock for %s held by %s",
                        volname, uuid_utoa (owner));
                goto out;
        }

        /* Removing the volume lock from the global list */
        dict_del (vol_lock, volname);

        gf_log (THIS->name, GF_LOG_DEBUG, "Lock for %s successfully released",
                volname);

        ret = 0;
out:
        gf_log (THIS->name, GF_LOG_TRACE, "Returning %d", ret);
        return ret;
}