123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- /*
- * Copyright (c)2013-2020 ZeroTier, Inc.
- *
- * Use of this software is governed by the Business Source License included
- * in the LICENSE.TXT file in the project's root directory.
- *
- * Change Date: 2024-01-01
- *
- * On the date above, in accordance with the Business Source License, use
- * of this software will be governed by version 2.0 of the Apache License.
- */
- /****/
- #ifndef ZT_TRIVIALLYCOPYABLE_HPP
- #define ZT_TRIVIALLYCOPYABLE_HPP
- #include "Constants.hpp"
- #include "Utils.hpp"
- #include <cstring>
- #include <cstdlib>
- namespace ZeroTier {
- /**
- * This is a class that others can inherit from to tag themselves as safe to abuse in C-like ways with memcpy, etc.
- *
- * Later versions of C++ have a built-in auto-detected notion like this, but
- * this is more explicit and its use will make audits for memory safety
- * a lot easier.
- */
- class TriviallyCopyable
- {
- public:
- /**
- * Be absolutely sure a TriviallyCopyable object is zeroed using Utils::burn()
- *
- * @tparam T Automatically inferred type of object
- * @param obj Any TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryBurn(T *obj) noexcept
- {
- TriviallyCopyable *const tmp = obj;
- Utils::burn(tmp,sizeof(T));
- }
- /**
- * Be absolutely sure a TriviallyCopyable object is zeroed using Utils::burn()
- *
- * @tparam T Automatically inferred type of object
- * @param obj Any TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryBurn(T &obj) noexcept
- {
- TriviallyCopyable *const tmp = &obj;
- Utils::burn(tmp,sizeof(T));
- }
- /**
- * Zero a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of object
- * @param obj Any TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryZero(T *obj) noexcept
- {
- TriviallyCopyable *const tmp = obj;
- memset(tmp,0,sizeof(T));
- }
- /**
- * Zero a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of object
- * @param obj Any TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryZero(T &obj) noexcept
- {
- TriviallyCopyable *const tmp = &obj;
- memset(tmp,0,sizeof(T));
- }
- /**
- * Copy any memory over a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Any TriviallyCopyable object
- * @param src Source memory of same size or less than sizeof(dest)
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopyUnsafe(T *dest,const void *src) noexcept
- {
- TriviallyCopyable *const tmp = dest;
- memcpy(tmp,src,sizeof(T));
- }
- /**
- * Copy any memory over a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Any TriviallyCopyable object
- * @param src Source memory of same size or less than sizeof(dest)
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopyUnsafe(T &dest,const void *src) noexcept
- {
- TriviallyCopyable *const tmp = &dest;
- memcpy(tmp,src,sizeof(T));
- }
- /**
- * Copy a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Destination TriviallyCopyable object
- * @param src Source TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopy(T *dest,const T *src) noexcept
- {
- TriviallyCopyable *const tmp = dest;
- memcpy(tmp,src,sizeof(T));
- }
- /**
- * Copy a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Destination TriviallyCopyable object
- * @param src Source TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopy(T *dest,const T &src) noexcept
- {
- TriviallyCopyable *const tmp = dest;
- memcpy(tmp,&src,sizeof(T));
- }
- /**
- * Copy a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Destination TriviallyCopyable object
- * @param src Source TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopy(T &dest,const T *src) noexcept
- {
- TriviallyCopyable *const tmp = &dest;
- memcpy(tmp,src,sizeof(T));
- }
- /**
- * Copy a TriviallyCopyable object
- *
- * @tparam T Automatically inferred type of destination
- * @param dest Destination TriviallyCopyable object
- * @param src Source TriviallyCopyable object
- */
- template<typename T>
- static ZT_ALWAYS_INLINE void memoryCopy(T &dest,const T &src) noexcept
- {
- TriviallyCopyable *const tmp = &dest;
- memcpy(tmp,&src,sizeof(T));
- }
- };
- } // namespace ZeroTier
- #endif
|