LCOV - code coverage report
Current view: top level - cmdline - util.c (source / functions) Hit Total Coverage
Test: lcov.info Lines: 164 175 93.7 %
Date: 2026-04-29 15:04:44 Functions: 31 31 100.0 %

          Line data    Source code
       1             : // SPDX-License-Identifier: GPL-3.0-or-later
       2             : // Copyright (C) 2011 Andrea Mazzoleni
       3             : 
       4             : #include "portable.h"
       5             : 
       6             : #include "support.h"
       7             : #include "util.h"
       8             : #include "raid/cpu.h"
       9             : #include "raid/memory.h"
      10             : 
      11             : /****************************************************************************/
      12             : /* memory */
      13             : 
      14         214 : void* malloc_nofail_align(size_t size, void** freeptr)
      15             : {
      16             :         void* ptr;
      17             : 
      18         214 :         ptr = raid_malloc(size, freeptr);
      19             : 
      20         214 :         if (!ptr) {
      21             :                 /* LCOV_EXCL_START */
      22             :                 malloc_fail(size);
      23             :                 exit(EXIT_FAILURE);
      24             :                 /* LCOV_EXCL_STOP */
      25             :         }
      26             : 
      27         214 :         return ptr;
      28             : }
      29             : 
      30           7 : void* malloc_nofail_direct(size_t size, void** freeptr)
      31             : {
      32             :         void* ptr;
      33             : 
      34           7 :         ptr = raid_malloc_align(size, direct_size(), freeptr);
      35             : 
      36           7 :         if (!ptr) {
      37             :                 /* LCOV_EXCL_START */
      38             :                 malloc_fail(size);
      39             :                 exit(EXIT_FAILURE);
      40             :                 /* LCOV_EXCL_STOP */
      41             :         }
      42             : 
      43           7 :         return ptr;
      44             : }
      45             : 
      46       14575 : void** malloc_nofail_vector_align(int nd, int n, size_t size, void** freeptr)
      47             : {
      48             :         void* ptr;
      49             : 
      50       14575 :         ptr = raid_malloc_vector(nd, n, size, freeptr);
      51             : 
      52       14575 :         if (!ptr) {
      53             :                 /* LCOV_EXCL_START */
      54             :                 malloc_fail(n * size);
      55             :                 exit(EXIT_FAILURE);
      56             :                 /* LCOV_EXCL_STOP */
      57             :         }
      58             : 
      59       14575 :         return ptr;
      60             : }
      61             : 
      62         128 : void** malloc_nofail_vector_direct(int nd, int n, size_t size, void** freeptr)
      63             : {
      64             :         void* ptr;
      65             : 
      66         128 :         ptr = raid_malloc_vector_align(nd, n, size, direct_size(), 0, freeptr);
      67             : 
      68         128 :         if (!ptr) {
      69             :                 /* LCOV_EXCL_START */
      70             :                 malloc_fail(n * size);
      71             :                 exit(EXIT_FAILURE);
      72             :                 /* LCOV_EXCL_STOP */
      73             :         }
      74             : 
      75         128 :         return ptr;
      76             : }
      77             : 
      78        2241 : void* malloc_nofail_test(size_t size)
      79             : {
      80             :         void* ptr;
      81             : 
      82        2241 :         ptr = malloc_nofail(size);
      83             : 
      84        2241 :         mtest_vector(1, size, &ptr);
      85             : 
      86        2241 :         return ptr;
      87             : }
      88             : 
      89             : /**
      90             :  * Fast memory test.
      91             :  *
      92             :  * It's similar at raid_mtest_vector() but faster because
      93             :  * we have a lot of buffers to verify.
      94             :  */
      95        2241 : static int fast_mtest_vector(int n, size_t size, void** vv)
      96             : {
      97             :         int i, j;
      98             : 
      99             :         /* test with all the bits */
     100       20169 :         for (i = 0; i < 8; ++i) {
     101       17928 :                 unsigned char value = 1 << i;
     102             : 
     103             :                 /* fill first */
     104       17928 :                 memset(vv[0], value, size);
     105             : 
     106             :                 /* copy to the next */
     107       17928 :                 for (j = 1; j < n; ++j)
     108           0 :                         memcpy(vv[j], vv[j - 1], size);
     109             : 
     110             :                 /* compare with the previous */
     111       35856 :                 for (j = 1; j <= n; ++j)
     112       17928 :                         if (memcmp(vv[j % n], vv[j - 1], size) != 0)
     113           0 :                                 return -1;
     114             :         }
     115             : 
     116        2241 :         return 0;
     117             : }
     118             : 
     119        2241 : void mtest_vector(int n, size_t size, void** vv)
     120             : {
     121        2241 :         if (fast_mtest_vector(n, size, vv) != 0) {
     122             :                 /* LCOV_EXCL_START */
     123             :                 log_fatal(EINTERNAL, "DANGER! Your RAM memory is broken! DO NOT PROCEED UNTIL FIXED!\n");
     124             :                 log_fatal(EINTERNAL, "Try running a memory test like http://www.memtest86.com/\n");
     125             :                 exit(EXIT_FAILURE);
     126             :                 /* LCOV_EXCL_STOP */
     127             :         }
     128        2241 : }
     129             : 
     130             : /****************************************************************************/
     131             : /* crc */
     132             : 
     133             : uint32_t CRC32C_0[256] = {
     134             :         0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4,
     135             :         0xc79a971f, 0x35f1141c, 0x26a1e7e8, 0xd4ca64eb,
     136             :         0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b,
     137             :         0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24,
     138             :         0x105ec76f, 0xe235446c, 0xf165b798, 0x030e349b,
     139             :         0xd7c45070, 0x25afd373, 0x36ff2087, 0xc494a384,
     140             :         0x9a879fa0, 0x68ec1ca3, 0x7bbcef57, 0x89d76c54,
     141             :         0x5d1d08bf, 0xaf768bbc, 0xbc267848, 0x4e4dfb4b,
     142             :         0x20bd8ede, 0xd2d60ddd, 0xc186fe29, 0x33ed7d2a,
     143             :         0xe72719c1, 0x154c9ac2, 0x061c6936, 0xf477ea35,
     144             :         0xaa64d611, 0x580f5512, 0x4b5fa6e6, 0xb93425e5,
     145             :         0x6dfe410e, 0x9f95c20d, 0x8cc531f9, 0x7eaeb2fa,
     146             :         0x30e349b1, 0xc288cab2, 0xd1d83946, 0x23b3ba45,
     147             :         0xf779deae, 0x05125dad, 0x1642ae59, 0xe4292d5a,
     148             :         0xba3a117e, 0x4851927d, 0x5b016189, 0xa96ae28a,
     149             :         0x7da08661, 0x8fcb0562, 0x9c9bf696, 0x6ef07595,
     150             :         0x417b1dbc, 0xb3109ebf, 0xa0406d4b, 0x522bee48,
     151             :         0x86e18aa3, 0x748a09a0, 0x67dafa54, 0x95b17957,
     152             :         0xcba24573, 0x39c9c670, 0x2a993584, 0xd8f2b687,
     153             :         0x0c38d26c, 0xfe53516f, 0xed03a29b, 0x1f682198,
     154             :         0x5125dad3, 0xa34e59d0, 0xb01eaa24, 0x42752927,
     155             :         0x96bf4dcc, 0x64d4cecf, 0x77843d3b, 0x85efbe38,
     156             :         0xdbfc821c, 0x2997011f, 0x3ac7f2eb, 0xc8ac71e8,
     157             :         0x1c661503, 0xee0d9600, 0xfd5d65f4, 0x0f36e6f7,
     158             :         0x61c69362, 0x93ad1061, 0x80fde395, 0x72966096,
     159             :         0xa65c047d, 0x5437877e, 0x4767748a, 0xb50cf789,
     160             :         0xeb1fcbad, 0x197448ae, 0x0a24bb5a, 0xf84f3859,
     161             :         0x2c855cb2, 0xdeeedfb1, 0xcdbe2c45, 0x3fd5af46,
     162             :         0x7198540d, 0x83f3d70e, 0x90a324fa, 0x62c8a7f9,
     163             :         0xb602c312, 0x44694011, 0x5739b3e5, 0xa55230e6,
     164             :         0xfb410cc2, 0x092a8fc1, 0x1a7a7c35, 0xe811ff36,
     165             :         0x3cdb9bdd, 0xceb018de, 0xdde0eb2a, 0x2f8b6829,
     166             :         0x82f63b78, 0x709db87b, 0x63cd4b8f, 0x91a6c88c,
     167             :         0x456cac67, 0xb7072f64, 0xa457dc90, 0x563c5f93,
     168             :         0x082f63b7, 0xfa44e0b4, 0xe9141340, 0x1b7f9043,
     169             :         0xcfb5f4a8, 0x3dde77ab, 0x2e8e845f, 0xdce5075c,
     170             :         0x92a8fc17, 0x60c37f14, 0x73938ce0, 0x81f80fe3,
     171             :         0x55326b08, 0xa759e80b, 0xb4091bff, 0x466298fc,
     172             :         0x1871a4d8, 0xea1a27db, 0xf94ad42f, 0x0b21572c,
     173             :         0xdfeb33c7, 0x2d80b0c4, 0x3ed04330, 0xccbbc033,
     174             :         0xa24bb5a6, 0x502036a5, 0x4370c551, 0xb11b4652,
     175             :         0x65d122b9, 0x97baa1ba, 0x84ea524e, 0x7681d14d,
     176             :         0x2892ed69, 0xdaf96e6a, 0xc9a99d9e, 0x3bc21e9d,
     177             :         0xef087a76, 0x1d63f975, 0x0e330a81, 0xfc588982,
     178             :         0xb21572c9, 0x407ef1ca, 0x532e023e, 0xa145813d,
     179             :         0x758fe5d6, 0x87e466d5, 0x94b49521, 0x66df1622,
     180             :         0x38cc2a06, 0xcaa7a905, 0xd9f75af1, 0x2b9cd9f2,
     181             :         0xff56bd19, 0x0d3d3e1a, 0x1e6dcdee, 0xec064eed,
     182             :         0xc38d26c4, 0x31e6a5c7, 0x22b65633, 0xd0ddd530,
     183             :         0x0417b1db, 0xf67c32d8, 0xe52cc12c, 0x1747422f,
     184             :         0x49547e0b, 0xbb3ffd08, 0xa86f0efc, 0x5a048dff,
     185             :         0x8ecee914, 0x7ca56a17, 0x6ff599e3, 0x9d9e1ae0,
     186             :         0xd3d3e1ab, 0x21b862a8, 0x32e8915c, 0xc083125f,
     187             :         0x144976b4, 0xe622f5b7, 0xf5720643, 0x07198540,
     188             :         0x590ab964, 0xab613a67, 0xb831c993, 0x4a5a4a90,
     189             :         0x9e902e7b, 0x6cfbad78, 0x7fab5e8c, 0x8dc0dd8f,
     190             :         0xe330a81a, 0x115b2b19, 0x020bd8ed, 0xf0605bee,
     191             :         0x24aa3f05, 0xd6c1bc06, 0xc5914ff2, 0x37faccf1,
     192             :         0x69e9f0d5, 0x9b8273d6, 0x88d28022, 0x7ab90321,
     193             :         0xae7367ca, 0x5c18e4c9, 0x4f48173d, 0xbd23943e,
     194             :         0xf36e6f75, 0x0105ec76, 0x12551f82, 0xe03e9c81,
     195             :         0x34f4f86a, 0xc69f7b69, 0xd5cf889d, 0x27a40b9e,
     196             :         0x79b737ba, 0x8bdcb4b9, 0x988c474d, 0x6ae7c44e,
     197             :         0xbe2da0a5, 0x4c4623a6, 0x5f16d052, 0xad7d5351
     198             : };
     199             : 
     200             : uint32_t CRC32C_1[256] = {
     201             :         0x00000000, 0x13a29877, 0x274530ee, 0x34e7a899,
     202             :         0x4e8a61dc, 0x5d28f9ab, 0x69cf5132, 0x7a6dc945,
     203             :         0x9d14c3b8, 0x8eb65bcf, 0xba51f356, 0xa9f36b21,
     204             :         0xd39ea264, 0xc03c3a13, 0xf4db928a, 0xe7790afd,
     205             :         0x3fc5f181, 0x2c6769f6, 0x1880c16f, 0x0b225918,
     206             :         0x714f905d, 0x62ed082a, 0x560aa0b3, 0x45a838c4,
     207             :         0xa2d13239, 0xb173aa4e, 0x859402d7, 0x96369aa0,
     208             :         0xec5b53e5, 0xfff9cb92, 0xcb1e630b, 0xd8bcfb7c,
     209             :         0x7f8be302, 0x6c297b75, 0x58ced3ec, 0x4b6c4b9b,
     210             :         0x310182de, 0x22a31aa9, 0x1644b230, 0x05e62a47,
     211             :         0xe29f20ba, 0xf13db8cd, 0xc5da1054, 0xd6788823,
     212             :         0xac154166, 0xbfb7d911, 0x8b507188, 0x98f2e9ff,
     213             :         0x404e1283, 0x53ec8af4, 0x670b226d, 0x74a9ba1a,
     214             :         0x0ec4735f, 0x1d66eb28, 0x298143b1, 0x3a23dbc6,
     215             :         0xdd5ad13b, 0xcef8494c, 0xfa1fe1d5, 0xe9bd79a2,
     216             :         0x93d0b0e7, 0x80722890, 0xb4958009, 0xa737187e,
     217             :         0xff17c604, 0xecb55e73, 0xd852f6ea, 0xcbf06e9d,
     218             :         0xb19da7d8, 0xa23f3faf, 0x96d89736, 0x857a0f41,
     219             :         0x620305bc, 0x71a19dcb, 0x45463552, 0x56e4ad25,
     220             :         0x2c896460, 0x3f2bfc17, 0x0bcc548e, 0x186eccf9,
     221             :         0xc0d23785, 0xd370aff2, 0xe797076b, 0xf4359f1c,
     222             :         0x8e585659, 0x9dface2e, 0xa91d66b7, 0xbabffec0,
     223             :         0x5dc6f43d, 0x4e646c4a, 0x7a83c4d3, 0x69215ca4,
     224             :         0x134c95e1, 0x00ee0d96, 0x3409a50f, 0x27ab3d78,
     225             :         0x809c2506, 0x933ebd71, 0xa7d915e8, 0xb47b8d9f,
     226             :         0xce1644da, 0xddb4dcad, 0xe9537434, 0xfaf1ec43,
     227             :         0x1d88e6be, 0x0e2a7ec9, 0x3acdd650, 0x296f4e27,
     228             :         0x53028762, 0x40a01f15, 0x7447b78c, 0x67e52ffb,
     229             :         0xbf59d487, 0xacfb4cf0, 0x981ce469, 0x8bbe7c1e,
     230             :         0xf1d3b55b, 0xe2712d2c, 0xd69685b5, 0xc5341dc2,
     231             :         0x224d173f, 0x31ef8f48, 0x050827d1, 0x16aabfa6,
     232             :         0x6cc776e3, 0x7f65ee94, 0x4b82460d, 0x5820de7a,
     233             :         0xfbc3faf9, 0xe861628e, 0xdc86ca17, 0xcf245260,
     234             :         0xb5499b25, 0xa6eb0352, 0x920cabcb, 0x81ae33bc,
     235             :         0x66d73941, 0x7575a136, 0x419209af, 0x523091d8,
     236             :         0x285d589d, 0x3bffc0ea, 0x0f186873, 0x1cbaf004,
     237             :         0xc4060b78, 0xd7a4930f, 0xe3433b96, 0xf0e1a3e1,
     238             :         0x8a8c6aa4, 0x992ef2d3, 0xadc95a4a, 0xbe6bc23d,
     239             :         0x5912c8c0, 0x4ab050b7, 0x7e57f82e, 0x6df56059,
     240             :         0x1798a91c, 0x043a316b, 0x30dd99f2, 0x237f0185,
     241             :         0x844819fb, 0x97ea818c, 0xa30d2915, 0xb0afb162,
     242             :         0xcac27827, 0xd960e050, 0xed8748c9, 0xfe25d0be,
     243             :         0x195cda43, 0x0afe4234, 0x3e19eaad, 0x2dbb72da,
     244             :         0x57d6bb9f, 0x447423e8, 0x70938b71, 0x63311306,
     245             :         0xbb8de87a, 0xa82f700d, 0x9cc8d894, 0x8f6a40e3,
     246             :         0xf50789a6, 0xe6a511d1, 0xd242b948, 0xc1e0213f,
     247             :         0x26992bc2, 0x353bb3b5, 0x01dc1b2c, 0x127e835b,
     248             :         0x68134a1e, 0x7bb1d269, 0x4f567af0, 0x5cf4e287,
     249             :         0x04d43cfd, 0x1776a48a, 0x23910c13, 0x30339464,
     250             :         0x4a5e5d21, 0x59fcc556, 0x6d1b6dcf, 0x7eb9f5b8,
     251             :         0x99c0ff45, 0x8a626732, 0xbe85cfab, 0xad2757dc,
     252             :         0xd74a9e99, 0xc4e806ee, 0xf00fae77, 0xe3ad3600,
     253             :         0x3b11cd7c, 0x28b3550b, 0x1c54fd92, 0x0ff665e5,
     254             :         0x759baca0, 0x663934d7, 0x52de9c4e, 0x417c0439,
     255             :         0xa6050ec4, 0xb5a796b3, 0x81403e2a, 0x92e2a65d,
     256             :         0xe88f6f18, 0xfb2df76f, 0xcfca5ff6, 0xdc68c781,
     257             :         0x7b5fdfff, 0x68fd4788, 0x5c1aef11, 0x4fb87766,
     258             :         0x35d5be23, 0x26772654, 0x12908ecd, 0x013216ba,
     259             :         0xe64b1c47, 0xf5e98430, 0xc10e2ca9, 0xd2acb4de,
     260             :         0xa8c17d9b, 0xbb63e5ec, 0x8f844d75, 0x9c26d502,
     261             :         0x449a2e7e, 0x5738b609, 0x63df1e90, 0x707d86e7,
     262             :         0x0a104fa2, 0x19b2d7d5, 0x2d557f4c, 0x3ef7e73b,
     263             :         0xd98eedc6, 0xca2c75b1, 0xfecbdd28, 0xed69455f,
     264             :         0x97048c1a, 0x84a6146d, 0xb041bcf4, 0xa3e32483
     265             : };
     266             : 
     267             : uint32_t CRC32C_2[256] = {
     268             :         0x00000000, 0xa541927e, 0x4f6f520d, 0xea2ec073,
     269             :         0x9edea41a, 0x3b9f3664, 0xd1b1f617, 0x74f06469,
     270             :         0x38513ec5, 0x9d10acbb, 0x773e6cc8, 0xd27ffeb6,
     271             :         0xa68f9adf, 0x03ce08a1, 0xe9e0c8d2, 0x4ca15aac,
     272             :         0x70a27d8a, 0xd5e3eff4, 0x3fcd2f87, 0x9a8cbdf9,
     273             :         0xee7cd990, 0x4b3d4bee, 0xa1138b9d, 0x045219e3,
     274             :         0x48f3434f, 0xedb2d131, 0x079c1142, 0xa2dd833c,
     275             :         0xd62de755, 0x736c752b, 0x9942b558, 0x3c032726,
     276             :         0xe144fb14, 0x4405696a, 0xae2ba919, 0x0b6a3b67,
     277             :         0x7f9a5f0e, 0xdadbcd70, 0x30f50d03, 0x95b49f7d,
     278             :         0xd915c5d1, 0x7c5457af, 0x967a97dc, 0x333b05a2,
     279             :         0x47cb61cb, 0xe28af3b5, 0x08a433c6, 0xade5a1b8,
     280             :         0x91e6869e, 0x34a714e0, 0xde89d493, 0x7bc846ed,
     281             :         0x0f382284, 0xaa79b0fa, 0x40577089, 0xe516e2f7,
     282             :         0xa9b7b85b, 0x0cf62a25, 0xe6d8ea56, 0x43997828,
     283             :         0x37691c41, 0x92288e3f, 0x78064e4c, 0xdd47dc32,
     284             :         0xc76580d9, 0x622412a7, 0x880ad2d4, 0x2d4b40aa,
     285             :         0x59bb24c3, 0xfcfab6bd, 0x16d476ce, 0xb395e4b0,
     286             :         0xff34be1c, 0x5a752c62, 0xb05bec11, 0x151a7e6f,
     287             :         0x61ea1a06, 0xc4ab8878, 0x2e85480b, 0x8bc4da75,
     288             :         0xb7c7fd53, 0x12866f2d, 0xf8a8af5e, 0x5de93d20,
     289             :         0x29195949, 0x8c58cb37, 0x66760b44, 0xc337993a,
     290             :         0x8f96c396, 0x2ad751e8, 0xc0f9919b, 0x65b803e5,
     291             :         0x1148678c, 0xb409f5f2, 0x5e273581, 0xfb66a7ff,
     292             :         0x26217bcd, 0x8360e9b3, 0x694e29c0, 0xcc0fbbbe,
     293             :         0xb8ffdfd7, 0x1dbe4da9, 0xf7908dda, 0x52d11fa4,
     294             :         0x1e704508, 0xbb31d776, 0x511f1705, 0xf45e857b,
     295             :         0x80aee112, 0x25ef736c, 0xcfc1b31f, 0x6a802161,
     296             :         0x56830647, 0xf3c29439, 0x19ec544a, 0xbcadc634,
     297             :         0xc85da25d, 0x6d1c3023, 0x8732f050, 0x2273622e,
     298             :         0x6ed23882, 0xcb93aafc, 0x21bd6a8f, 0x84fcf8f1,
     299             :         0xf00c9c98, 0x554d0ee6, 0xbf63ce95, 0x1a225ceb,
     300             :         0x8b277743, 0x2e66e53d, 0xc448254e, 0x6109b730,
     301             :         0x15f9d359, 0xb0b84127, 0x5a968154, 0xffd7132a,
     302             :         0xb3764986, 0x1637dbf8, 0xfc191b8b, 0x595889f5,
     303             :         0x2da8ed9c, 0x88e97fe2, 0x62c7bf91, 0xc7862def,
     304             :         0xfb850ac9, 0x5ec498b7, 0xb4ea58c4, 0x11abcaba,
     305             :         0x655baed3, 0xc01a3cad, 0x2a34fcde, 0x8f756ea0,
     306             :         0xc3d4340c, 0x6695a672, 0x8cbb6601, 0x29faf47f,
     307             :         0x5d0a9016, 0xf84b0268, 0x1265c21b, 0xb7245065,
     308             :         0x6a638c57, 0xcf221e29, 0x250cde5a, 0x804d4c24,
     309             :         0xf4bd284d, 0x51fcba33, 0xbbd27a40, 0x1e93e83e,
     310             :         0x5232b292, 0xf77320ec, 0x1d5de09f, 0xb81c72e1,
     311             :         0xccec1688, 0x69ad84f6, 0x83834485, 0x26c2d6fb,
     312             :         0x1ac1f1dd, 0xbf8063a3, 0x55aea3d0, 0xf0ef31ae,
     313             :         0x841f55c7, 0x215ec7b9, 0xcb7007ca, 0x6e3195b4,
     314             :         0x2290cf18, 0x87d15d66, 0x6dff9d15, 0xc8be0f6b,
     315             :         0xbc4e6b02, 0x190ff97c, 0xf321390f, 0x5660ab71,
     316             :         0x4c42f79a, 0xe90365e4, 0x032da597, 0xa66c37e9,
     317             :         0xd29c5380, 0x77ddc1fe, 0x9df3018d, 0x38b293f3,
     318             :         0x7413c95f, 0xd1525b21, 0x3b7c9b52, 0x9e3d092c,
     319             :         0xeacd6d45, 0x4f8cff3b, 0xa5a23f48, 0x00e3ad36,
     320             :         0x3ce08a10, 0x99a1186e, 0x738fd81d, 0xd6ce4a63,
     321             :         0xa23e2e0a, 0x077fbc74, 0xed517c07, 0x4810ee79,
     322             :         0x04b1b4d5, 0xa1f026ab, 0x4bdee6d8, 0xee9f74a6,
     323             :         0x9a6f10cf, 0x3f2e82b1, 0xd50042c2, 0x7041d0bc,
     324             :         0xad060c8e, 0x08479ef0, 0xe2695e83, 0x4728ccfd,
     325             :         0x33d8a894, 0x96993aea, 0x7cb7fa99, 0xd9f668e7,
     326             :         0x9557324b, 0x3016a035, 0xda386046, 0x7f79f238,
     327             :         0x0b899651, 0xaec8042f, 0x44e6c45c, 0xe1a75622,
     328             :         0xdda47104, 0x78e5e37a, 0x92cb2309, 0x378ab177,
     329             :         0x437ad51e, 0xe63b4760, 0x0c158713, 0xa954156d,
     330             :         0xe5f54fc1, 0x40b4ddbf, 0xaa9a1dcc, 0x0fdb8fb2,
     331             :         0x7b2bebdb, 0xde6a79a5, 0x3444b9d6, 0x91052ba8
     332             : };
     333             : 
     334             : uint32_t CRC32C_3[256] = {
     335             :         0x00000000, 0xdd45aab8, 0xbf672381, 0x62228939,
     336             :         0x7b2231f3, 0xa6679b4b, 0xc4451272, 0x1900b8ca,
     337             :         0xf64463e6, 0x2b01c95e, 0x49234067, 0x9466eadf,
     338             :         0x8d665215, 0x5023f8ad, 0x32017194, 0xef44db2c,
     339             :         0xe964b13d, 0x34211b85, 0x560392bc, 0x8b463804,
     340             :         0x924680ce, 0x4f032a76, 0x2d21a34f, 0xf06409f7,
     341             :         0x1f20d2db, 0xc2657863, 0xa047f15a, 0x7d025be2,
     342             :         0x6402e328, 0xb9474990, 0xdb65c0a9, 0x06206a11,
     343             :         0xd725148b, 0x0a60be33, 0x6842370a, 0xb5079db2,
     344             :         0xac072578, 0x71428fc0, 0x136006f9, 0xce25ac41,
     345             :         0x2161776d, 0xfc24ddd5, 0x9e0654ec, 0x4343fe54,
     346             :         0x5a43469e, 0x8706ec26, 0xe524651f, 0x3861cfa7,
     347             :         0x3e41a5b6, 0xe3040f0e, 0x81268637, 0x5c632c8f,
     348             :         0x45639445, 0x98263efd, 0xfa04b7c4, 0x27411d7c,
     349             :         0xc805c650, 0x15406ce8, 0x7762e5d1, 0xaa274f69,
     350             :         0xb327f7a3, 0x6e625d1b, 0x0c40d422, 0xd1057e9a,
     351             :         0xaba65fe7, 0x76e3f55f, 0x14c17c66, 0xc984d6de,
     352             :         0xd0846e14, 0x0dc1c4ac, 0x6fe34d95, 0xb2a6e72d,
     353             :         0x5de23c01, 0x80a796b9, 0xe2851f80, 0x3fc0b538,
     354             :         0x26c00df2, 0xfb85a74a, 0x99a72e73, 0x44e284cb,
     355             :         0x42c2eeda, 0x9f874462, 0xfda5cd5b, 0x20e067e3,
     356             :         0x39e0df29, 0xe4a57591, 0x8687fca8, 0x5bc25610,
     357             :         0xb4868d3c, 0x69c32784, 0x0be1aebd, 0xd6a40405,
     358             :         0xcfa4bccf, 0x12e11677, 0x70c39f4e, 0xad8635f6,
     359             :         0x7c834b6c, 0xa1c6e1d4, 0xc3e468ed, 0x1ea1c255,
     360             :         0x07a17a9f, 0xdae4d027, 0xb8c6591e, 0x6583f3a6,
     361             :         0x8ac7288a, 0x57828232, 0x35a00b0b, 0xe8e5a1b3,
     362             :         0xf1e51979, 0x2ca0b3c1, 0x4e823af8, 0x93c79040,
     363             :         0x95e7fa51, 0x48a250e9, 0x2a80d9d0, 0xf7c57368,
     364             :         0xeec5cba2, 0x3380611a, 0x51a2e823, 0x8ce7429b,
     365             :         0x63a399b7, 0xbee6330f, 0xdcc4ba36, 0x0181108e,
     366             :         0x1881a844, 0xc5c402fc, 0xa7e68bc5, 0x7aa3217d,
     367             :         0x52a0c93f, 0x8fe56387, 0xedc7eabe, 0x30824006,
     368             :         0x2982f8cc, 0xf4c75274, 0x96e5db4d, 0x4ba071f5,
     369             :         0xa4e4aad9, 0x79a10061, 0x1b838958, 0xc6c623e0,
     370             :         0xdfc69b2a, 0x02833192, 0x60a1b8ab, 0xbde41213,
     371             :         0xbbc47802, 0x6681d2ba, 0x04a35b83, 0xd9e6f13b,
     372             :         0xc0e649f1, 0x1da3e349, 0x7f816a70, 0xa2c4c0c8,
     373             :         0x4d801be4, 0x90c5b15c, 0xf2e73865, 0x2fa292dd,
     374             :         0x36a22a17, 0xebe780af, 0x89c50996, 0x5480a32e,
     375             :         0x8585ddb4, 0x58c0770c, 0x3ae2fe35, 0xe7a7548d,
     376             :         0xfea7ec47, 0x23e246ff, 0x41c0cfc6, 0x9c85657e,
     377             :         0x73c1be52, 0xae8414ea, 0xcca69dd3, 0x11e3376b,
     378             :         0x08e38fa1, 0xd5a62519, 0xb784ac20, 0x6ac10698,
     379             :         0x6ce16c89, 0xb1a4c631, 0xd3864f08, 0x0ec3e5b0,
     380             :         0x17c35d7a, 0xca86f7c2, 0xa8a47efb, 0x75e1d443,
     381             :         0x9aa50f6f, 0x47e0a5d7, 0x25c22cee, 0xf8878656,
     382             :         0xe1873e9c, 0x3cc29424, 0x5ee01d1d, 0x83a5b7a5,
     383             :         0xf90696d8, 0x24433c60, 0x4661b559, 0x9b241fe1,
     384             :         0x8224a72b, 0x5f610d93, 0x3d4384aa, 0xe0062e12,
     385             :         0x0f42f53e, 0xd2075f86, 0xb025d6bf, 0x6d607c07,
     386             :         0x7460c4cd, 0xa9256e75, 0xcb07e74c, 0x16424df4,
     387             :         0x106227e5, 0xcd278d5d, 0xaf050464, 0x7240aedc,
     388             :         0x6b401616, 0xb605bcae, 0xd4273597, 0x09629f2f,
     389             :         0xe6264403, 0x3b63eebb, 0x59416782, 0x8404cd3a,
     390             :         0x9d0475f0, 0x4041df48, 0x22635671, 0xff26fcc9,
     391             :         0x2e238253, 0xf36628eb, 0x9144a1d2, 0x4c010b6a,
     392             :         0x5501b3a0, 0x88441918, 0xea669021, 0x37233a99,
     393             :         0xd867e1b5, 0x05224b0d, 0x6700c234, 0xba45688c,
     394             :         0xa345d046, 0x7e007afe, 0x1c22f3c7, 0xc167597f,
     395             :         0xc747336e, 0x1a0299d6, 0x782010ef, 0xa565ba57,
     396             :         0xbc65029d, 0x6120a825, 0x0302211c, 0xde478ba4,
     397             :         0x31035088, 0xec46fa30, 0x8e647309, 0x5321d9b1,
     398             :         0x4a21617b, 0x9764cbc3, 0xf54642fa, 0x2803e842
     399             : };
     400             : 
     401             : #if HAVE_SSE42
     402             : int crc_x86;
     403             : #endif
     404             : 
     405         361 : uint32_t crc32c_gen(uint32_t crc, const unsigned char* ptr, unsigned size)
     406             : {
     407         361 :         crc ^= CRC_IV;
     408             : 
     409         361 :         crc = crc32c_gen_plain(crc, ptr, size);
     410             : 
     411         361 :         crc ^= CRC_IV;
     412             : 
     413         361 :         return crc;
     414             : }
     415             : 
     416             : #if HAVE_SSE42
     417      648880 : uint32_t crc32c_x86(uint32_t crc, const unsigned char* ptr, unsigned size)
     418             : {
     419      648880 :         crc ^= CRC_IV;
     420             : 
     421      648880 :         crc = crc32c_x86_plain(crc, ptr, size);
     422             : 
     423      648880 :         crc ^= CRC_IV;
     424             : 
     425      648880 :         return crc;
     426             : }
     427             : #endif
     428             : 
     429             : uint32_t (*crc32c)(uint32_t crc, const unsigned char* ptr, unsigned size);
     430             : 
     431         338 : void crc32c_init(void)
     432             : {
     433         338 :         crc32c = crc32c_gen;
     434             : #if HAVE_SSE42
     435         338 :         if (raid_cpu_has_crc32()) {
     436         336 :                 crc_x86 = 1;
     437         336 :                 crc32c = crc32c_x86;
     438             :         }
     439             : #endif
     440         338 : }
     441             : 
     442             : /****************************************************************************/
     443             : /* byte operations */
     444             : 
     445             : /*
     446             :  * Rotate left.
     447             :  * In x86/x64 they are optimized with a single assembler instruction.
     448             :  */
     449   928260254 : static inline uint32_t util_rotl32(uint32_t x, int8_t r)
     450             : {
     451   928260254 :         return (x << r) | (x >> (32 - r));
     452             : }
     453             : 
     454   525818997 : static inline uint64_t util_rotl64(uint64_t x, int8_t r)
     455             : {
     456   525818997 :         return (x << r) | (x >> (64 - r));
     457             : }
     458             : 
     459             : /*
     460             :  * Rotate right.
     461             :  * In x86/x64 they are optimized with a single assembler instruction.
     462             :  */
     463           4 : static inline uint32_t util_rotr32(uint32_t x, int8_t r)
     464             : {
     465           4 :         return (x >> r) | (x << (32 - r));
     466             : }
     467             : 
     468     4989560 : static inline uint64_t util_rotr64(uint64_t x, int8_t r)
     469             : {
     470     4989560 :         return (x >> r) | (x << (64 - r));
     471             : }
     472             : 
     473             : /**
     474             :  * Swap endianness.
     475             :  * They are needed only if BigEndian.
     476             :  */
     477             : #if defined(__GNUC__)
     478             : 
     479             : #define util_swap32(x) __builtin_bswap32(x)
     480             : #define util_swap64(x) __builtin_bswap64(x)
     481             : 
     482             : #elif HAVE_BYTESWAP_H
     483             : 
     484             : #include <byteswap.h>
     485             : 
     486             : #define util_swap32(x) bswap_32(x)
     487             : #define util_swap64(x) bswap_64(x)
     488             : 
     489             : #else
     490             : static inline uint32_t util_swap32(uint32_t v)
     491             : {
     492             :         return (util_rotl32(v, 8) & 0x00ff00ff)
     493             :                | (util_rotl32(v, 24) & 0xff00ff00);
     494             : }
     495             : 
     496             : static inline uint64_t util_swap64(uint64_t v)
     497             : {
     498             :         return (util_rotl64(v, 8) & 0x000000ff000000ffULL)
     499             :                | (util_rotl64(v, 24) & 0x0000ff000000ff00ULL)
     500             :                | (util_rotl64(v, 40) & 0x00ff000000ff0000ULL)
     501             :                | (util_rotl64(v, 56) & 0xff000000ff000000ULL);
     502             : }
     503             : #endif
     504             : 
     505         133 : static inline uint8_t util_read8(const void* void_ptr)
     506             : {
     507         133 :         const uint8_t* ptr = void_ptr;
     508         133 :         return ptr[0];
     509             : }
     510             : 
     511         135 : static inline uint16_t util_read16(const void* void_ptr)
     512             : {
     513         135 :         const uint8_t* ptr = void_ptr;
     514         135 :         return ptr[0] + (ptr[1] << 8);
     515             : }
     516             : 
     517     9032712 : static inline uint32_t util_read32(const void* ptr)
     518             : {
     519             :         uint32_t v;
     520     9032712 :         memcpy(&v, ptr, sizeof(v));
     521             : #if WORDS_BIGENDIAN
     522             :         v = util_swap32(v);
     523             : #endif
     524     9032712 :         return v;
     525             : }
     526             : 
     527    18615190 : static inline uint64_t util_read64(const void* ptr)
     528             : {
     529             :         uint64_t v;
     530    18615190 :         memcpy(&v, ptr, sizeof(v));
     531             : #if WORDS_BIGENDIAN
     532             :         v = util_swap64(v);
     533             : #endif
     534    18615190 :         return v;
     535             : }
     536             : 
     537     9032580 : static inline void util_write32(void* ptr, uint32_t v)
     538             : {
     539             : #if WORDS_BIGENDIAN
     540             :         v = util_swap32(v);
     541             : #endif
     542     9032580 :         memcpy(ptr, &v, sizeof(v));
     543     9032580 : }
     544             : 
     545     7858170 : static inline void util_write64(void* ptr, uint64_t v)
     546             : {
     547             : #if WORDS_BIGENDIAN
     548             :         v = util_swap64(v);
     549             : #endif
     550     7858170 :         memcpy(ptr, &v, sizeof(v));
     551     7858170 : }
     552             : 
     553             : /*
     554             :  *  64*64 -> 128bit multiply function.
     555             :  *
     556             :  *  @param A  Address of 64-bit number.
     557             :  *  @param B  Address of 64-bit number.
     558             :  *
     559             :  *  Calculates 128-bit C = *A * *B.
     560             :  *
     561             :  *  Overwrites A contents with C's low 64 bits.
     562             :  *  Overwrites B contents with C's high 64 bits.
     563             :  */
     564             : #if defined(__x86_64__) || defined(_M_X64)
     565             : /*
     566             :  * This is intentionally placed before the __SIZEOF_INT128__ implementation.
     567             :  *
     568             :  * This implementation happens to generate more efficient code.
     569             :  * While this likely depends only on the compiler, as long as it remains faster,
     570             :  * we will keep it in this order.
     571             :  */
     572     2886954 : static inline void util_mum(uint64_t* A, uint64_t* B)
     573             : {
     574     2886954 :         uint64_t a = *A;
     575     2886954 :         uint64_t b = *B;
     576             :         uint64_t low, high;
     577             : 
     578     2886954 :         __asm__ (
     579             :                 "mulq %3"
     580             :                 : "=a" (low), "=d" (high)
     581             :                 : "a" (a), "rm" (b)
     582             :                 : "cc"
     583             :         );
     584             : 
     585     2886954 :         *A = low;
     586     2886954 :         *B = high;
     587     2886954 : }
     588             : #elif defined(__SIZEOF_INT128__)
     589             : static inline void util_mum(uint64_t* A, uint64_t* B)
     590             : {
     591             :         __uint128_t product = ((__uint128_t)*A) * ((__uint128_t)*B);
     592             :         *A = (uint64_t)product;
     593             :         *B = (uint64_t)(product >> 64);
     594             : }
     595             : #elif defined(__aarch64__) || defined(_M_ARM64)
     596             : /*
     597             :  * This is intentionally placed after the __SIZEOF_INT128__ implementation.
     598             :  *
     599             :  * Although the code looks correct, there is a report of this
     600             :  * implementation failing the self-test on macOS (Darwin 25.4.0, arm64)
     601             :  * with Apple clang 21.0.0 (clang-2100.0.123.102).
     602             :  *
     603             :  * See: https://github.com/amadvance/snapraid/issues/43
     604             :  *
     605             :  * Note that the implementation is the same of OpenSSL:
     606             :  *
     607             :  * #elif defined(__aarch64__) && defined(SIXTY_FOUR_BIT_LONG)
     608             :  * #if defined(__GNUC__) && __GNUC__ >= 2
     609             :  * #define BN_UMULT_HIGH(a, b) ({     \
     610             :  *         register BN_ULONG ret;          \
     611             :  *         asm ("umulh     %0,%1,%2"       \
     612             :  *              : "=r"(ret)                \
     613             :  *              : "r"(a), "r"(b));         \
     614             :  *         ret; })
     615             :  * #endif
     616             :  * #endif
     617             :  *
     618             :  * See: https://github.com/openssl/openssl/blob/0463cbf185680e66a3a8960f10cd33001377d28e/crypto/bn/bn_local.h#L439
     619             :  */
     620             : static inline void util_mum(uint64_t* A, uint64_t* B)
     621             : {
     622             :         uint64_t a = *A;
     623             :         uint64_t b = *B;
     624             :         uint64_t low = a * b;
     625             :         uint64_t high;
     626             :         __asm__ (
     627             :                 "umulh %0, %1, %2"
     628             :                 : "=r" (high)
     629             :                 : "r" (a), "r" (b)
     630             :         );
     631             :         *A = low;
     632             :         *B = high;
     633             : }
     634             : #else
     635             : static inline void util_mum(uint64_t* A, uint64_t* B)
     636             : {
     637             :         uint64_t a = *A;
     638             :         uint64_t b = *B;
     639             : 
     640             :         uint64_t a_lo = (uint32_t)a;
     641             :         uint64_t a_hi = a >> 32;
     642             :         uint64_t b_lo = (uint32_t)b;
     643             :         uint64_t b_hi = b >> 32;
     644             : 
     645             :         uint64_t p0 = a_lo * b_lo;
     646             :         uint64_t p1 = a_lo * b_hi;
     647             :         uint64_t p2 = a_hi * b_lo;
     648             :         uint64_t p3 = a_hi * b_hi;
     649             : 
     650             :         uint64_t middle = p1 + (p0 >> 32) + (uint32_t)p2;
     651             :         uint64_t low = (middle << 32) | (uint32_t)p0;
     652             :         uint64_t high = p3 + (middle >> 32) + (p2 >> 32);
     653             : 
     654             :         *A = low;
     655             :         *B = high;
     656             : }
     657             : #endif
     658             : 
     659           1 : int util_selftest(void)
     660             : {
     661             :         /* rotate left 32-bit */
     662           1 :         if (util_rotl32(0x00000001U, 1) != 0x00000002U) return -1;
     663           1 :         if (util_rotl32(0x80000000U, 1) != 0x00000001U) return -1;
     664           1 :         if (util_rotl32(0x00000001U, 31) != 0x80000000U) return -1;
     665           1 :         if (util_rotl32(0x12345678U, 4) != 0x23456781U) return -1;
     666           1 :         if (util_rotl32(0x12345678U, 0) != 0x12345678U) return -1;
     667           1 :         if (util_rotl32(0x12345678U, 32) != 0x12345678U) return -1;  /* r % 32 == 0 */
     668             : 
     669             :         /* rotate right 32-bit */
     670           1 :         if (util_rotr32(0x00000001U, 1) != 0x80000000U) return -1;
     671           1 :         if (util_rotr32(0x80000000U, 1) != 0x40000000U) return -1;
     672           1 :         if (util_rotr32(0x00000002U, 1) != 0x00000001U) return -1;
     673           1 :         if (util_rotr32(0x12345678U, 4) != 0x81234567U) return -1;
     674             : 
     675             :         /* rotate left 64-bit */
     676           1 :         if (util_rotl64(1ULL, 1) != 2ULL) return -1;
     677           1 :         if (util_rotl64(1ULL << 63, 1) != 1ULL) return -1;
     678           1 :         if (util_rotl64(0x123456789ABCDEF0ULL, 8) != 0x3456789ABCDEF012ULL) return -1;
     679           1 :         if (util_rotl64(0x123456789ABCDEF0ULL, 0) != 0x123456789ABCDEF0ULL) return -1;
     680             : 
     681             :         /* rotate right 64-bit */
     682           1 :         if (util_rotr64(1ULL, 1) != (1ULL << 63)) return -1;
     683           1 :         if (util_rotr64(2ULL, 1) != 1ULL) return -1;
     684           1 :         if (util_rotr64(0x123456789ABCDEF0ULL, 8) != 0xF0123456789ABCDEULL) return -1;
     685             : 
     686             :         /* util_mum tests */
     687             :         uint64_t a, b;
     688             : 
     689             :         /* small values */
     690           1 :         a = 3; b = 4;
     691           1 :         util_mum(&a, &b);
     692           1 :         if (a != 12 || b != 0) return -1;
     693             : 
     694             :         /* 1 * anything */
     695           1 :         a = 0xFFFFFFFFFFFFFFFFULL; b = 1;
     696           1 :         util_mum(&a, &b);
     697           1 :         if (a != 0xFFFFFFFFFFFFFFFFULL || b != 0) return -1;
     698             : 
     699             :         /* (2^32) * (2^32) = 2^64 */
     700           1 :         a = 1ULL << 32; b = 1ULL << 32;
     701           1 :         util_mum(&a, &b);
     702           1 :         if (a != 0 || b != 1) return -1;
     703             : 
     704             :         /* max uint64 * max uint64 */
     705           1 :         a = 0xFFFFFFFFFFFFFFFFULL; b = 0xFFFFFFFFFFFFFFFFULL;
     706           1 :         util_mum(&a, &b);
     707           1 :         if (a != 1 || b != 0xFFFFFFFFFFFFFFFEULL) return -1;
     708             : 
     709             :         /* larger random-ish test */
     710           1 :         a = 0x0123456789ABCDEFULL;
     711           1 :         b = 0xFEDCBA9876543210ULL;
     712           1 :         util_mum(&a, &b);
     713           1 :         if (a != 0x2236D88FE5618CF0ULL || b != 0x121FA00AD77D742ULL) return -1;
     714             : 
     715           1 :         return 0;
     716             : }
     717             : 
     718             : /****************************************************************************/
     719             : /* hash */
     720             : 
     721           5 : const char* memhashname(unsigned kind)
     722             : {
     723           5 :         switch (kind) {
     724           0 :         case HASH_MURMUR3 : return "murmur3";
     725           5 :         case HASH_SPOOKY2 : return "spooky2";
     726           0 :         case HASH_METRO : return "metro";
     727           0 :         case HASH_MUSEAIR : return "museair";
     728             :         }
     729             : 
     730           0 :         return 0;
     731             : }
     732             : 
     733         318 : unsigned membesthash(void)
     734             : {
     735             : #ifdef CONFIG_X86
     736             :         if (sizeof(void*) == 4 && !raid_cpu_has_slowmult())
     737             :                 return HASH_MURMUR3;
     738             :         else
     739         318 :                 return HASH_SPOOKY2;
     740             : #else
     741             :         if (sizeof(void*) == 4)
     742             :                 return HASH_MURMUR3;
     743             :         else
     744             :                 return HASH_SPOOKY2;
     745             : #endif
     746             : }
     747             : 
     748             : #include "murmur3.c"
     749             : #include "spooky2.c"
     750             : #include "metro.c"
     751             : #include "museair.c"
     752             : 
     753     6187230 : void memhash(unsigned kind, const unsigned char* seed, void* digest, const void* src, size_t size)
     754             : {
     755     6187230 :         switch (kind) {
     756     2258145 :         case HASH_MURMUR3 :
     757     2258145 :                 MurmurHash3_x86_128(src, size, seed, digest);
     758     2258145 :                 break;
     759     3928267 :         case HASH_SPOOKY2 :
     760     3928267 :                 SpookyHash128(src, size, seed, digest);
     761     3928267 :                 break;
     762         417 :         case HASH_METRO :
     763         417 :                 MetroHash128(src, size, seed, digest);
     764         417 :                 break;
     765         401 :         case HASH_MUSEAIR :
     766         401 :                 MuseAirLoong(src, size, seed, digest);
     767         401 :                 break;
     768           0 :         default :
     769             :                 /* LCOV_EXCL_START */
     770             :                 log_fatal(EINTERNAL, "Internal inconsistency in hash function %u\n", kind);
     771             :                 exit(EXIT_FAILURE);
     772             :                 break;
     773             :                 /* LCOV_EXCL_STOP */
     774             :         }
     775     6187230 : }
     776             : 
     777          51 : const char* hash_config_name(unsigned kind)
     778             : {
     779          51 :         switch (kind) {
     780          16 :         case HASH_UNDEFINED : return "undefined";
     781           8 :         case HASH_MURMUR3 : return "murmur3";
     782          27 :         case HASH_SPOOKY2 : return "spooky2";
     783           0 :         case HASH_METRO : return "metro";
     784           0 :         case HASH_MUSEAIR : return "museair";
     785           0 :         default :
     786             :                 /* LCOV_EXCL_START */
     787             :                 return "unknown";
     788             :                 /* LCOV_EXCL_STOP */
     789             :         }
     790             : }
     791             : 
     792       36474 : unsigned memdiff(const unsigned char* data1, const unsigned char* data2, size_t size)
     793             : {
     794             :         size_t i;
     795             :         unsigned count;
     796             : 
     797       36474 :         count = 0;
     798    22424106 :         for (i = 0; i < size; ++i) {
     799             :                 unsigned j;
     800    22387632 :                 unsigned char diff = data1[i] ^ data2[i];
     801   201488688 :                 for (j = 0; j < 8; ++j) {
     802   179101056 :                         if ((diff & 1) != 0)
     803    78015386 :                                 ++count;
     804   179101056 :                         diff >>= 1;
     805             :                 }
     806             :         }
     807             : 
     808       36474 :         return count;
     809             : }
     810             : 
     811             : /****************************************************************************/
     812             : /* lock */
     813             : 
     814             : #if HAVE_LOCKFILE
     815         307 : int lock_lock(const char* file)
     816             : {
     817             :         int f;
     818             : 
     819         307 :         f = open(file, O_RDONLY | O_CREAT, 0600);
     820         307 :         if (f == -1) {
     821             :                 /* LCOV_EXCL_START */
     822             :                 return -1;
     823             :                 /* LCOV_EXCL_STOP */
     824             :         }
     825             : 
     826             :         /* exclusive lock, not blocking */
     827         307 :         if (flock(f, LOCK_EX | LOCK_NB) == -1) {
     828             :                 /* LCOV_EXCL_START */
     829             :                 close(f);
     830             :                 return -1;
     831             :                 /* LCOV_EXCL_STOP */
     832             :         }
     833             : 
     834         307 :         return f;
     835             : }
     836             : #endif
     837             : 
     838             : #if HAVE_LOCKFILE
     839         284 : int lock_unlock(int f)
     840             : {
     841             :         /*
     842             :          * Intentionally don't remove the lock file.
     843             :          * Removing it just introduces race course with other process
     844             :          * that could have already opened it.
     845             :          */
     846         284 :         if (close(f) == -1) {
     847             :                 /* LCOV_EXCL_START */
     848             :                 return -1;
     849             :                 /* LCOV_EXCL_STOP */
     850             :         }
     851             : 
     852         284 :         return 0;
     853             : }
     854             : #endif
     855             : 
     856             : /****************************************************************************/
     857             : /* muldiv */
     858             : 
     859        1180 : unsigned muldiv(uint64_t v, uint64_t mul, uint64_t div)
     860             : {
     861        1180 :         if (!div)
     862          49 :                 return 0;
     863             : 
     864        1131 :         return (uint32_t)(v * mul / div);
     865             : }
     866             : 
     867           9 : unsigned muldiv_upper(uint64_t v, uint64_t mul, uint64_t div)
     868             : {
     869           9 :         if (!div)
     870           0 :                 return 0;
     871             : 
     872           9 :         return (uint32_t)((v * mul + div - 1) / div);
     873             : }
     874             : 

Generated by: LCOV version 1.0