aboutsummaryrefslogtreecommitdiffstats
path: root/src/el-file.c
blob: dd9839286e15cec687cf09785946dc2df04db077 (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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
/* ==========================================================================
    Licensed under BSD 2clause license See LICENSE file for more information
    Author: Michał Łyszczek <michal.lyszczek@bofc.pl>
   ==========================================================================
         -------------------------------------------------------------
        / module designated to print messages into files, it also has \
        \ capabilities to rotate files if user wishes to              /
         -------------------------------------------------------------
                  \           \  /
                   \           \/
                       (__)    /\
                       (oo)   O  O
                       _\/_   //
                 *    (    ) //
                  \  (\\    //
                   \(  \\    )
                    (   \\   )   /\
          ___[\______/^^^^^^^\__/) o-)__
         |\__[=======______//________)__\
         \|_______________//____________|
             |||      || //||     |||
             |||      || @.||     |||
              ||      \/  .\/      ||
                         . .
                        '.'.`

                    COW-OPERATION
   ==========================================================================
          _               __            __         ____ _  __
         (_)____   _____ / /__  __ ____/ /___     / __/(_)/ /___   _____
        / // __ \ / ___// // / / // __  // _ \   / /_ / // // _ \ / ___/
       / // / / // /__ / // /_/ // /_/ //  __/  / __// // //  __/(__  )
      /_//_/ /_/ \___//_/ \__,_/ \__,_/ \___/  /_/  /_//_/ \___//____/

   ========================================================================== */


#include "el-private.h"

#if HAVE_UNISTD_H
#   include <unistd.h>
#endif

#if HAVE_STAT
#   include <sys/types.h>
#   include <sys/stat.h>
#endif

#include <errno.h>
#include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


/* ==========================================================================
                  __        __            __
          ____ _ / /____   / /_   ____ _ / /  _   __ ____ _ _____ _____
         / __ `// // __ \ / __ \ / __ `// /  | | / // __ `// ___// ___/
        / /_/ // // /_/ // /_/ // /_/ // /   | |/ // /_/ // /   (__  )
        \__, //_/ \____//_.___/ \__,_//_/    |___/ \__,_//_/   /____/
       /____/
   ========================================================================== */


#ifdef RUN_TESTS

/* there is no easy way to check if file has been fsynced to disk
 * or not, so we introduce this helper variable to know if we
 * executed syncing code or not
 */
extern int file_synced;

#endif


/* ==========================================================================
          __             __                     __   _
     ____/ /___   _____ / /____ _ _____ ____ _ / /_ (_)____   ____   _____
    / __  // _ \ / ___// // __ `// ___// __ `// __// // __ \ / __ \ / ___/
   / /_/ //  __// /__ / // /_/ // /   / /_/ // /_ / // /_/ // / / /(__  )
   \__,_/ \___/ \___//_/ \__,_//_/    \__,_/ \__//_/ \____//_/ /_//____/

   ========================================================================== */


#ifndef PATH_MAX
/*
 * for systems that don't define PATH_MAX we use our MAX_PATH macro that  is
 * defined in config.h during ./configure process
 */

#define PATH_MAX MAX_PATH

#endif


/* ==========================================================================
                  _                __           ____
    ____   _____ (_)_   __ ____ _ / /_ ___     / __/__  __ ____   _____ _____
   / __ \ / ___// /| | / // __ `// __// _ \   / /_ / / / // __ \ / ___// ___/
  / /_/ // /   / / | |/ // /_/ // /_ /  __/  / __// /_/ // / / // /__ (__  )
 / .___//_/   /_/  |___/ \__,_/ \__/ \___/  /_/   \__,_//_/ /_/ \___//____/
/_/
   ========================================================================== */


/* ==========================================================================
    Checks if file at "path" exists. Functions tries fastests method first,
    and slower last.

    returns
            0       file does not exist
            1       file exists
   ========================================================================== */


static int el_file_exists
(
    const char  *path  /* file to check */
)
{
#if HAVE_ACCESS
    /* access is the fastest
     */

    return access(path, F_OK) == 0;

#elif HAVE_STAT
    /* but if we don't have access (some embedded systems like
     * nuttx don't have users and will always return OK when
     * access is called - wrongly)
     */

    struct stat st;

    /* if stat return 0 we are sure file exists, -1 is returned for
     * when file doesn't exist or there is other error, in any case
     * we assume file doesn't exist
     */

    return stat(path, &st) == 0;

#else
    /* slowest, worst but highly portable solution, for when there
     * is nothing left but you still want to work
     */

    FILE *f;

    if ((f = fopen(path, "r")) == NULL)
    {
        return 0;
    }

    fclose(f);
    return 1;
#endif
}


/* ==========================================================================
    function rotates file, meaning if currently opened file has suffix .3,
    function will close that file and will open file with suffix .4. If
    creating new suffix is impossible (we reached frotate_number of
    suffixed) function will remove oldest log file and new file will be
    created
    ========================================================================== */


static int el_file_rotate
(
    struct el     *el
)
{
    unsigned int   i;  /* simple iterator for loop */
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


    if (el->file)
    {
        fclose(el->file);
        el->file = NULL;
    }

    el->fcurrent_rotate++;
    if (el->fcurrent_rotate == el->frotate_number)
    {
        /* it appears we used all rotating slots, reset counter and
         * rename all files in order (for frotate_number == 4)
         *
         * .1 -> .0
         * .2 -> .1
         * .3 -> .2
         *
         * As we can see, oldest file .0 will be deleted, and file
         * .3 will disapear making space for new log
         */

        el->fcurrent_rotate = el->frotate_number - 1;

        if (el->frotate_number == 1)
        {
            /* if frotate_number is equal to 1, this means only one
             * file can exist (with suffix .0), so we cannot rotate
             * that (like rename it from .0 to .0, pointless) file
             * and thus we simply skip this foor loop, and later
             * file will just be truncated to 0
             */

            goto skip_rotate;
        }

        for (i = 1; i != el->frotate_number; ++i)
        {
            char  old_name[PATH_MAX + 1];  /* ie .2 suffix */
            char  new_name[PATH_MAX + 1];  /* ie .3 suffix */
            /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

            /* we do not check for overflow here, as overflow is
             * already tested in el_file_open function, there we
             * check opening file with biggest suffix. Assuming if
             * it works there, it will work here as well
             */

            sprintf(old_name, "%s.%d", el->fname, i);
            sprintf(new_name, "%s.%d", el->fname, i - 1);

            rename(old_name, new_name);

            /* rename can fail, but it is usually because someone
             * removed some logs, like there are logs: .1 .2 .4 .5,
             * so .3 is missing, and if we want to rename .3 to .2,
             * rename will fail, it doesn't really matter, as .4
             * will be renamed to .3, and after full loop there
             * will be .0 .1 .3 .4 .5 and after one more rotation,
             * we'll have .0 .1 .2 .3 .4 .5, so full complet. So
             * such situation will heal by itself over time.
             */
        }
    }

skip_rotate:
    /* now we can safely open file with suffix .n, we're sure we
     * won't overwrite anything (well except if someone sets
     * frotate_number to 1, then current .0 file will be
     * truncated). We don't need to check for length of created
     * file, as it is checked in el_file_open and if it passes
     * there, it will pass here as well
     */

    sprintf(el->fcurrent_log, "%s.%d", el->fname, el->fcurrent_rotate);

    if ((el->file = fopen(el->fcurrent_log, "w")) == NULL)
    {
        el->fcurrent_rotate--;
        return -1;
    }

    el->fpos = 0;

    return 0;
}


/* ==========================================================================
                       __     __ _          ____
        ____   __  __ / /_   / /(_)_____   / __/__  __ ____   _____ _____
       / __ \ / / / // __ \ / // // ___/  / /_ / / / // __ \ / ___// ___/
      / /_/ // /_/ // /_/ // // // /__   / __// /_/ // / / // /__ (__  )
     / .___/ \__,_//_.___//_//_/ \___/  /_/   \__,_//_/ /_/ \___//____/
    /_/
   ========================================================================== */


/* ==========================================================================
    opens log file specified in el and sets file position, so we can
    track it.
   ========================================================================== */


int el_file_open
(
    struct el  *el  /* el object with file information */
)
{
    if (el->fcurrent_log == NULL)
    {
        /* yes, we need to dynamically allocate memory here. It's
         * because we need to keep current log privately in each of
         * el_el objects or there will be problems in embedded
         * systems that use flat memory. Since when working with
         * files, OS will always make some dynamic allocation, we
         * will be doing one too.
         */

        if ((el->fcurrent_log = malloc(PATH_MAX + 1)) == NULL)
        {
            errno = ENOMEM;
            return -1;
        }
    }

    if (el->file)
    {
        /* to prevent any memory leak in case of double open, we
         * first close already opened file Such situation may
         * happen when library user changes file name using
         * EL_FPATH option,
         */

        fclose(el->file);
        el->file = NULL;
    }

    if (el->frotate_number)
    {
        FILE   *f;      /* opened file */
        int     i;      /* simple interator for loop */
        size_t  pathl;  /* length of path after snprintf */
        long    fsize;  /* size of the opened file */
        /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


        /* file rotation is enabled, in such case we need to find,
         * oldest rotate file, as app could have been restarted,
         * and we surely don't want to overwrite the newest file.
         * Oldest file has suffix .0 while the newest one has
         * suffix .${frotate_number} (or less if there are less
         * files).
         */

        for (i = el->frotate_number - 1; i >= 0; --i)
        {
            pathl = snprintf(el->fcurrent_log, PATH_MAX + 1, "%s.%d",
                el->fname, i);

            if (pathl > PATH_MAX)
            {
                /* path is too long, we cannot safely create file
                 * with suffix, return error as opening such
                 * truncated file name could result in some data
                 * lose on the disk.
                 */

                el->fcurrent_log[0] = '\0';
                errno = ENAMETOOLONG;
                return -1;
            }

#if HAVE_STAT

            if (i != 0)
            {
                struct stat  st;  /* file information */
                /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

                /* if i is 0, then this is last file to check
                 * (there are no logs from embed log in directory)
                 * and there is no need to check if file exists or
                 * not - we open it unconditionally, thus this path
                 * is not taken in such case.
                 */

                if (el_file_exists(el->fcurrent_log) == 0)
                {
                    /* current log file does not exist, this is not
                     * the file you are looking for
                     */

                    continue;
                }

                if (stat(el->fcurrent_log, &st) != 0)
                {
                    /* error while stating file, probably don't
                     * have access to that file, or directory, or
                     * whatever, something bad has happend and we
                     * don't want to pursue this, exit with error
                     * from stat.
                     */

                    el->fcurrent_log[0] = '\0';
                    return -1;
                }

                if (st.st_size == 0)
                {
                    /* there is an empty file, maybe we created it
                     * and then crashed? Or maybe someone is trying
                     * to pull our legs and drops bombs under our
                     * feets. Either way, this is definitely not
                     * oldest file. We also remove it so it doesn't
                     * botter us later
                     */

                    remove(el->fcurrent_log);
                    continue;
                }
            }

            /* we got our file, let's open it for writing and let's
             * call it a day
             */

            if ((f = fopen(el->fcurrent_log, "a")) == NULL)
            {
                /* couldn't open file, probably directory doesn't
                 * exist, or we have no permissions to create file
                 * here
                 */

                return -1;
            }

            /* we need to check for currently opened file size once
             * again, as if i equal 0 here, we never called stat()
             * on our file and we don't know the size of it
             */

            fseek(f, 0, SEEK_END);
            fsize = ftell(f);

#else /* HAVE_STAT */

            if ((f = fopen(el->fcurrent_log, "a")) == NULL)
            {
                /* if we cannot open file, that means there is some
                 * kind of error, like permision denied or system
                 * is out of memory, it's pointless to continue
                 */

                el->fcurrent_log[0] = '\0';
                return -1;
            }

            /* position returned by ftell is implementation
             * specific it can be either end or begin of file
             * (check stdio(3))
             */

            fseek(f, 0, SEEK_END);

            if (i == 0)
            {
                /* this is the last file we check, we don't check
                 * for file size here, since even if this file is
                 * empty, we are sure this is the oldest file.
                 * File is already opened so, we simply return from
                 * the function
                 */

                el->fcurrent_rotate = i;
                el->fpos = ftell(f);
                el->file = f;
                return 0;
            }

            if ((fsize = ftell(f)) == 0)
            {
                /* we've created (or opened ) an empty file, this
                 * means our file is not the oldest one, i.e. we
                 * opened file .6 and oldest could be .3. We remove
                 * this file and continue our search for the glory
                 * file.
                 */

                fclose(f);
                remove(el->fcurrent_log);
                continue;
            }

#endif /* HAVE_STAT */

            /* oldest file found, file is already opened so we
             * simply return from the function
             */

            el->fcurrent_rotate = i;
            el->fpos = fsize;
            el->file = f;
            return 0;
        }
    }

    /* rotation is disabled, simply open file with append flag
    */

    if (strlen(el->fname) > PATH_MAX)
    {
        el->fcurrent_log[0] = '\0';
        errno = ENAMETOOLONG;
        return -1;
    }

    strcpy(el->fcurrent_log, el->fname);

    if ((el->file = fopen(el->fcurrent_log, "a")) == NULL)
    {
        /* we couldn't open file, but don't set clear
         * el->fcurrent_log, we will try to reopen this file each
         * time we print to file. This is usefull when user tries
         * to open log file in not-yet existing directory. Error is
         * of course returned to user is aware of this whole
         * situation
         */

        return -1;
    }

    fseek(el->file, 0, SEEK_END);
    el->fpos = ftell(el->file);
    return 0;
}


/* ==========================================================================
    Does whatever it takes to make sure that logs are flushed from any
    buffers to physical disk. It's not always possible, but boy, do we try.
   ========================================================================== */


int el_file_flush
(
    struct el  *el  /* printing options */
)
{
    /* file store operation has particular issue. You can like,
     * write hundreds of megabytes into disk and that data indeed
     * will land into your block device *but* metadata will not!
     * That is if power lose occurs (even after those hundreds of
     * megs), file metadata might not be updated and we will lose
     * whole, I say it again *whole* file. To prevent data lose on
     * power down we try to sync file and its metadata to block
     * device. We do this every configured "sync_every" field since
     * syncing every single write would simply kill performance -
     * its up to user to decide how much data he is willing to
     * lose. It is also possible that altough we sync our file and
     * metadata, parent directory might not get flushed and there
     * will not be entry for our file - meaning file will be lost
     * too, but such situations are ultra rare and there isn't
     * really much we can do about it here but praying.
     */

#if HAVE_FSYNC && HAVE_FILENO

    int fd;  /* systems file descriptor for el->file */
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#endif /* HAVE_FSYNC && HAVE_FILENO */

    VALID(EINVAL, el);
    VALID(EBADF, el->fcurrent_log);
    VALID(EBADF, el->fcurrent_log[0] != '\0');

    /* first flush data from stdio library buffers into kernel
     */

    if (fflush(el->file) != 0)
    {
        return -1;
    }

#if HAVE_FSYNC && HAVE_FILENO

    /* and then sync data into block device
     */

    if ((fd = fileno(el->file)) < 0)
    {
        return -1;
    }

    if (fsync(fd) != 0)
    {
        return -1;
    }

#else /* HAVE_FSYNC && HAVE_FILENO */

    /* if system does not implement fileno and fsync our only hope
     * lies in closing (which should sync file to block device) and
     * then opening file again. Yup, performance will suck, but
     * hey, its about data safety!
     */

    fclose(el->file);

    if ((el->file = fopen(el->fcurrent_log, "a")) == NULL)
    {
        errno = EBADF;
        return -1;
    }

    fseek(el->file, 0, SEEK_END);
    el->fpos = ftell(el->file);

#endif /* HAVE_FSYNC && HAVE_FILENO */

#ifdef RUN_TESTS

    file_synced = 1;

#endif /* RUN_TESTS */

    /* after syncing data, update written after sync field, so we
     * don't trigger another flush right after this one
     */

    el->fwritten_after_sync = 0;
    return 0;
}


/* ==========================================================================
    writes memory block pointed by mem of size mlen into a file, if needed
    also rotates file
   ========================================================================== */


int el_file_putb
(
    struct el    *el,   /* printing el */
    const void   *mem,  /* memory to 'put' into file */
    size_t        mlen  /* size of buffer 'mlen' */

)
{
    VALID(EINVAL, mem);
    VALID(EINVAL, mlen);
    VALID(EINVAL, el);
    VALID(EBADF, el->fcurrent_log);
    VALID(EBADF, el->fcurrent_log[0] != '\0');


    /* we need to reopen our file if it wasn't opened yet, or was
     * removed due to error or deliberate acion of user
     */

    if (el_file_exists(el->fcurrent_log) == 0 || el->file == NULL)
    {
        if (el_file_open(el) != 0)
        {
            return -1;
        }
    }

    if (el->frotate_number)
    {
        if (el->fpos != 0 && el->fpos + mlen > el->frotate_size)
        {
            /* we get here only when frotate is enabled, and
             * writing to current file would result in exceding
             * frotate_size of file. In such case we rotate the
             * file by closing the old one and opening new file,
             * and if we already filled frotate_number files, we
             * remove the oldest one.
             */

            if (el_file_rotate(el) != 0)
            {
                return -1;
            }
        }

        if (mlen > el->frotate_size)
        {
            /* we can't fit message even in an empty file, in such
             * case we need to truncate log, so we don't create
             * file bigger than configured frotate_size
             */

            mlen = el->frotate_size;
        }
    }

    if (fwrite(mem, mlen, 1, el->file) != 1)
    {
        return -1;
    }

    el->fpos += mlen;
    el->fwritten_after_sync += mlen;

    if (el->fwritten_after_sync >= el->fsync_every ||
        el->level_current_msg <= el->fsync_level)
    {
        /* we either written enough bytes to trigger flush, or log
         * level is high enough it triggers log flush to block
         * device
         */

        return el_file_flush(el);
    }

    return 0;
}


/* ==========================================================================
    Puts string 's' into file if needed rotates file
   ========================================================================== */


int el_file_puts
(
    struct el   *el,    /* printing options */
    const char  *s      /* string to 'put' into file */
)
{
    size_t       slen;  /* size of string 's' */
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


    slen = strlen(s);
    return el_file_putb(el, (unsigned char *)s, slen);
}


/* ==========================================================================
    free resources allocated by this module
   ========================================================================== */


void el_file_cleanup
(
    struct el  *el  /* file options */
)
{
    if (el->file)
    {
        fclose(el->file);
    }

    el->file = NULL;

    if (el->fcurrent_log)
    {
        el->fcurrent_log[0] = '\0';
        free(el->fcurrent_log);
        el->fcurrent_log = NULL;
    }
}