소스 검색

[Minor] Polish alignment macros

tags/3.2
Vsevolod Stakhov 2 년 전
부모
커밋
df914aa64f
6개의 변경된 파일19개의 추가작업 그리고 12개의 파일을 삭제
  1. 11
    0
      config.h.in
  2. 3
    3
      src/libcryptobox/cryptobox.c
  3. 1
    1
      src/libserver/re_cache.c
  4. 1
    5
      src/libutil/mem_pool.h
  5. 2
    2
      src/libutil/multipattern.c
  6. 1
    1
      src/libutil/str_util.h

+ 11
- 0
config.h.in 파일 보기

@@ -322,6 +322,17 @@ typedef off_t goffset;
#endif
#endif

#ifndef __cplusplus
# ifdef G_ALIGNOF
# define RSPAMD_ALIGNOF G_ALIGNOF
# else
# define RSPAMD_ALIGNOF(t) _Alignof(t)
# endif
#else
/* glib G_ALIGNOF nor C11 _Alignof are not good enough for C++, nuff said... */
# define RSPAMD_ALIGNOF(t) alignof(t)
#endif

/* Address sanitizer */
#ifdef __clang__
# if __has_feature(address_sanitizer)

+ 3
- 3
src/libcryptobox/cryptobox.c 파일 보기

@@ -588,7 +588,7 @@ static gsize
rspamd_cryptobox_auth_ctx_len (enum rspamd_cryptobox_mode mode)
{
if (G_LIKELY (mode == RSPAMD_CRYPTOBOX_MODE_25519)) {
return sizeof (crypto_onetimeauth_state) + _Alignof (crypto_onetimeauth_state);
return sizeof (crypto_onetimeauth_state) + RSPAMD_ALIGNOF(crypto_onetimeauth_state);
}
else {
#ifndef HAVE_USABLE_OPENSSL
@@ -1440,7 +1440,7 @@ void
rspamd_cryptobox_hash_init (rspamd_cryptobox_hash_state_t *p, const guchar *key, gsize keylen)
{
crypto_generichash_blake2b_state *st = cryptobox_align_ptr (p,
_Alignof(crypto_generichash_blake2b_state));
RSPAMD_ALIGNOF(crypto_generichash_blake2b_state));
crypto_generichash_blake2b_init (st, key, keylen,
crypto_generichash_blake2b_BYTES_MAX);
}
@@ -1452,7 +1452,7 @@ void
rspamd_cryptobox_hash_update (rspamd_cryptobox_hash_state_t *p, const guchar *data, gsize len)
{
crypto_generichash_blake2b_state *st = cryptobox_align_ptr (p,
_Alignof(crypto_generichash_blake2b_state));
RSPAMD_ALIGNOF(crypto_generichash_blake2b_state));
crypto_generichash_blake2b_update (st, data, len);
}


+ 1
- 1
src/libserver/re_cache.c 파일 보기

@@ -406,7 +406,7 @@ rspamd_re_cache_init (struct rspamd_re_cache *cache, struct rspamd_config *cfg)
rspamd_regexp_set_cache_id (re, i);

if (re_class->st == NULL) {
(void) !posix_memalign ((void **)&re_class->st, _Alignof (rspamd_cryptobox_hash_state_t),
(void) !posix_memalign ((void **)&re_class->st, RSPAMD_ALIGNOF(rspamd_cryptobox_hash_state_t),
sizeof (*re_class->st));
g_assert (re_class->st != NULL);
rspamd_cryptobox_hash_init (re_class->st, NULL, 0);

+ 1
- 5
src/libutil/mem_pool.h 파일 보기

@@ -68,11 +68,7 @@ struct f_str_s;
#define MEMPOOL_UID_LEN 20
/* All pointers are aligned as this variable */
#define MIN_MEM_ALIGNMENT G_MEM_ALIGN
#ifndef __cplusplus
#define RSPAMD_ALIGNOF G_ALIGNOF
#else
#define RSPAMD_ALIGNOF(t) alignof(t)
#endif

/**
* Destructor type definition
*/

+ 2
- 2
src/libutil/multipattern.c 파일 보기

@@ -256,7 +256,7 @@ rspamd_multipattern_create (enum rspamd_multipattern_flags flags)
struct rspamd_multipattern *mp;

/* Align due to blake2b state */
(void) !posix_memalign((void **)&mp, _Alignof (struct rspamd_multipattern),
(void) !posix_memalign((void **)&mp, RSPAMD_ALIGNOF(struct rspamd_multipattern),
sizeof (*mp));
g_assert (mp != NULL);
memset (mp, 0, sizeof (*mp));
@@ -285,7 +285,7 @@ rspamd_multipattern_create_sized (guint npatterns,
struct rspamd_multipattern *mp;

/* Align due to blake2b state */
(void) !posix_memalign((void **)&mp, _Alignof (struct rspamd_multipattern), sizeof (*mp));
(void) !posix_memalign((void **)&mp, RSPAMD_ALIGNOF(struct rspamd_multipattern), sizeof (*mp));
g_assert (mp != NULL);
memset (mp, 0, sizeof (*mp));
mp->flags = flags;

+ 1
- 1
src/libutil/str_util.h 파일 보기

@@ -473,7 +473,7 @@ gsize rspamd_memspn (const gchar *s, const gchar *e, gsize len);
* Check if a pointer is aligned; n must be power of two
*/
#define rspamd_is_aligned(p, n) (((uintptr_t)(p) & ((uintptr_t)(n) - 1)) == 0)
#define rspamd_is_aligned_as(p, v) rspamd_is_aligned(p, _Alignof(__typeof((v))))
#define rspamd_is_aligned_as(p, v) rspamd_is_aligned(p, RSPAMD_ALIGNOF(__typeof((v))))
gboolean rspamd_str_has_8bit (const guchar *beg, gsize len);

struct UConverter;

Loading…
취소
저장