summaryrefslogtreecommitdiffstats
path: root/xlators/features/changetimerecorder/src/ctr-xlator-ctx.c
blob: b8f6f0301d96d11e8dc62f19813c9ace64db71e9 (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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
/*
   Copyright (c) 2015 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.
*/

#include "ctr-xlator-ctx.h"
#include "ctr-messages.h"
#include <time.h>
#include <sys/time.h>

#define IS_THE_ONLY_HARDLINK(ctr_hard_link)\
        (ctr_hard_link->list.next == ctr_hard_link->list.prev)


static inline void
fini_ctr_hard_link (ctr_hard_link_t **ctr_hard_link) {

        GF_ASSERT (ctr_hard_link);

        if (*ctr_hard_link)
                return;
        GF_FREE ((*ctr_hard_link)->base_name);
        GF_FREE (*ctr_hard_link);
        *ctr_hard_link = NULL;
}


/* Please lock the ctr_xlator_ctx before using this function */
ctr_hard_link_t *
ctr_search_hard_link_ctx (xlator_t                  *this,
                            ctr_xlator_ctx_t        *ctr_xlator_ctx,
                            uuid_t                  pgfid,
                            const char              *base_name)
{
        ctr_hard_link_t *_hard_link             = NULL;
        ctr_hard_link_t *searched_hardlink      = NULL;

        GF_ASSERT (this);
        GF_ASSERT (ctr_xlator_ctx);

        if (pgfid == NULL || base_name == NULL)
                goto out;

        /*linear search*/
        list_for_each_entry (_hard_link, &ctr_xlator_ctx->hardlink_list, list) {
                if (gf_uuid_compare (_hard_link->pgfid, pgfid) == 0
                        && _hard_link->base_name
                        && strcmp(_hard_link->base_name, base_name) == 0) {
                        searched_hardlink = _hard_link;
                        break;
                }
        }

out:
        return searched_hardlink;
}




/* Please lock the ctr_xlator_ctx before using this function */
int
ctr_add_hard_link (xlator_t             *this,
               ctr_xlator_ctx_t         *ctr_xlator_ctx,
               uuid_t                   pgfid,
               const char               *base_name)
{
        int ret                                 = -1;
        ctr_hard_link_t *ctr_hard_link          = NULL;
        struct timeval  current_time                   = {0};

        GF_ASSERT (this);
        GF_ASSERT (ctr_xlator_ctx);

        if (pgfid == NULL || base_name == NULL)
                goto out;

        ctr_hard_link = GF_CALLOC (1, sizeof (*ctr_hard_link),
                                        gf_ctr_mt_hard_link_t);
        if (!ctr_hard_link) {
                gf_msg (this->name, GF_LOG_ERROR, ENOMEM,
                        CTR_MSG_CALLOC_FAILED, "Failed allocating "
                        "ctr_hard_link");
                goto out;
        }

        /*Initialize the ctr_hard_link object and
         * Assign the values : parent GFID and basename*/
        INIT_LIST_HEAD (&ctr_hard_link->list);
        gf_uuid_copy (ctr_hard_link->pgfid, pgfid);
        ret = gf_asprintf(&ctr_hard_link->base_name, "%s", base_name);
        if (ret < 0) {
                gf_msg (this->name, GF_LOG_ERROR, 0,
                        CTR_MSG_COPY_FAILED, "Failed copying basename"
                        "to ctr_hard_link");
                goto error;
        }

        ret = gettimeofday (&current_time, NULL);
        if (ret == -1) {
                gf_log (this->name, GF_LOG_ERROR,
                        "Failed to get current time");
                goto error;
        }

        /*Add the hard link to the list*/
        list_add_tail (&ctr_hard_link->list,
                        &ctr_xlator_ctx->hardlink_list);

        ctr_hard_link->hardlink_heal_period = current_time.tv_sec;

        /*aal izz well!*/
        ret = 0;
        goto out;
error:
        GF_FREE (ctr_hard_link);
out:
        return ret;
}

static void
__delete_hard_link_from_list (ctr_hard_link_t  **ctr_hard_link)
{
        GF_ASSERT (ctr_hard_link);
        GF_ASSERT (*ctr_hard_link);

        /*Remove hard link from list*/
        list_del(&(*ctr_hard_link)->list);
        fini_ctr_hard_link (ctr_hard_link);
}


int
ctr_delete_hard_link (xlator_t                *this,
                  ctr_xlator_ctx_t      *ctr_xlator_ctx,
                  uuid_t                pgfid,
                  const char            *base_name)
{
        int ret                         = -1;
        ctr_hard_link_t *ctr_hard_link     = NULL;

        GF_ASSERT (this);
        GF_ASSERT (ctr_xlator_ctx);


        LOCK (&ctr_xlator_ctx->lock);

        /*Check if the hard link is present */
        ctr_hard_link = ctr_search_hard_link_ctx (this, ctr_xlator_ctx,
                                                        pgfid, base_name);
        if (!ctr_hard_link) {
                gf_msg (this->name, GF_LOG_ERROR, 0,
                        CTR_MSG_HARDLINK_MISSING_IN_LIST,
                        "Hard link doesnt exist in the list");
                goto out;
        }

        __delete_hard_link_from_list (&ctr_hard_link);
        ctr_hard_link = NULL;

        ret = 0;
out:
        UNLOCK (&ctr_xlator_ctx->lock);

        return ret;
}




int
ctr_update_hard_link (xlator_t                *this,
                  ctr_xlator_ctx_t      *ctr_xlator_ctx,
                  uuid_t                pgfid,
                  const char            *base_name,
                  uuid_t                old_pgfid,
                  const char            *old_base_name)
{
        int ret                            = -1;
        ctr_hard_link_t *ctr_hard_link     = NULL;
        struct timeval current_time        = {0};

        GF_ASSERT (this);
        GF_ASSERT (ctr_xlator_ctx);


        LOCK (&ctr_xlator_ctx->lock);

        /*Check if the hard link is present */
        ctr_hard_link = ctr_search_hard_link_ctx (this, ctr_xlator_ctx,
                                                old_pgfid, old_base_name);
        if (!ctr_hard_link) {
                gf_msg_trace (this->name, 0, "Hard link doesnt exist"
                              " in the list");
                /* Since the hard link is not present in the list
                 * we add it to the list */
                ret = ctr_add_hard_link (this, ctr_xlator_ctx,
                                        pgfid, base_name);
                if (ret) {
                        gf_msg (this->name, GF_LOG_ERROR, 0,
                                CTR_MSG_ADD_HARDLINK_TO_LIST_FAILED,
                                "Failed adding hard link to the list");
                        goto out;
                }
                ret = 0;
                goto out;
        }

        /* update the hard link */
        gf_uuid_copy (ctr_hard_link->pgfid, pgfid);
        GF_FREE (&ctr_hard_link->base_name);
        ret = gf_asprintf(&ctr_hard_link->base_name, "%s", base_name);
        if (ret < 0) {
                gf_msg (this->name, GF_LOG_ERROR, 0,
                        CTR_MSG_COPY_FAILED, "Failed copying basename"
                                        "to ctr_hard_link");
                /* delete the corrupted entry */
                __delete_hard_link_from_list (&ctr_hard_link);
                ctr_hard_link = NULL;
                goto out;
        }

        ret = gettimeofday (&current_time, NULL);
        if (ret == -1) {
                gf_log (this->name, GF_LOG_ERROR,
                        "Failed to get current time");
                ctr_hard_link->hardlink_heal_period = 0;
        } else {
                ctr_hard_link->hardlink_heal_period = current_time.tv_sec;
        }

        ret = 0;

out:
        UNLOCK (&ctr_xlator_ctx->lock);

        return ret;
}




/* Delete all hardlinks */
static inline int
ctr_delete_all_hard_link (xlator_t *this,
                          ctr_xlator_ctx_t *ctr_xlator_ctx)
{
        int ret = -1;
        ctr_hard_link_t *ctr_hard_link     = NULL;
        ctr_hard_link_t *tmp               = NULL;

        GF_ASSERT (ctr_xlator_ctx);

        LOCK (&ctr_xlator_ctx->lock);

        list_for_each_entry_safe(ctr_hard_link, tmp,
                        &ctr_xlator_ctx->hardlink_list, list)
        {
                /*Remove hard link from list*/
                __delete_hard_link_from_list (&ctr_hard_link);
                ctr_hard_link = NULL;

        }


        UNLOCK (&ctr_xlator_ctx->lock);

        ret = 0;

        return ret;
}


/* Please lock the inode before using this function */
static inline ctr_xlator_ctx_t *
__get_ctr_xlator_ctx (xlator_t  *this,
                      inode_t   *inode)
{
        int ret                                 = 0;
        uint64_t _addr                          = 0;
        ctr_xlator_ctx_t *ctr_xlator_ctx        = NULL;

        GF_ASSERT (this);
        GF_ASSERT (inode);

        ret = __inode_ctx_get (inode, this, &_addr);
        if (ret < 0)
                _addr = 0;
        if (_addr != 0) {
                ctr_xlator_ctx = (ctr_xlator_ctx_t *) (long)_addr;
        }

        return ctr_xlator_ctx;
}


ctr_xlator_ctx_t *
init_ctr_xlator_ctx (xlator_t *this,
                     inode_t *inode)
{
        int ret                                 = -1;
        uint64_t _addr                          = 0;
        ctr_xlator_ctx_t *ctr_xlator_ctx        = NULL;
        struct timeval current_time             = {0};

        GF_ASSERT (this);
        GF_ASSERT (inode);

        LOCK (&inode->lock);
        {
                ctr_xlator_ctx = __get_ctr_xlator_ctx (this, inode);
                if (ctr_xlator_ctx) {
                        ret = 0;
                        goto out;
                }
                ctr_xlator_ctx = GF_CALLOC (1, sizeof (*ctr_xlator_ctx),
                                                        gf_ctr_mt_xlator_ctx);
                if (!ctr_xlator_ctx)
                        goto out;

                ret = LOCK_INIT (&ctr_xlator_ctx->lock);
                if (ret) {
                        gf_msg (this->name, GF_LOG_ERROR, ret,
                                CTR_MSG_INIT_LOCK_FAILED,
                                "Failed init lock %s", strerror(ret));
                        goto out;
                }
                _addr = (uint64_t) ctr_xlator_ctx;

                ret = __inode_ctx_set (inode, this, &_addr);
                if (ret) {
                        goto out;
                }

                INIT_LIST_HEAD (&ctr_xlator_ctx->hardlink_list);

                ret = gettimeofday (&current_time, NULL);
                if (ret == -1) {
                        gf_log (this->name, GF_LOG_ERROR,
                                "Failed to get current time");
                        goto out;
                }

                ctr_xlator_ctx->inode_heal_period = current_time.tv_sec;
        }
        ret = 0;
out:
        if (ret) {
                GF_FREE (ctr_xlator_ctx);
                ctr_xlator_ctx = NULL;
        }

        UNLOCK (&inode->lock);

        return ctr_xlator_ctx;
}




void
fini_ctr_xlator_ctx (xlator_t *this,
                     inode_t *inode)
{
        int ret                                 = 0;
        uint64_t _addr                          = 0;
        ctr_xlator_ctx_t *ctr_xlator_ctx        = NULL;


        inode_ctx_del (inode, this, &_addr);
        if (!_addr)
                return;

        ctr_xlator_ctx = (ctr_xlator_ctx_t *) (long) _addr;

        ret = ctr_delete_all_hard_link (this, ctr_xlator_ctx);
        if (ret) {
                gf_msg (this->name, GF_LOG_WARNING , 0,
                        CTR_MSG_DELETE_HARDLINK_FAILED, "Failed deleting all "
                        "hard links from inode context");
        }

        LOCK_DESTROY (&ctr_xlator_ctx->lock);

        GF_FREE (ctr_xlator_ctx);

}




ctr_xlator_ctx_t *
get_ctr_xlator_ctx (xlator_t *this,
                    inode_t *inode)
{
        ctr_xlator_ctx_t *ctr_xlator_ctx = NULL;

        LOCK (&inode->lock);
        ctr_xlator_ctx = __get_ctr_xlator_ctx (this, inode);
        UNLOCK (&inode->lock);

        return ctr_xlator_ctx;
}