// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // Functions to help with verifying various |Mojo...Options| structs from the // (public, C) API. These are "extensible" structs, which all have |struct_size| // as their first member. All fields (other than |struct_size|) are optional, // but any |flags| specified must be known to the system (otherwise, an error of // |MOJO_RESULT_UNIMPLEMENTED| should be returned). #ifndef MOJO_SYSTEM_OPTIONS_VALIDATION_H_ #define MOJO_SYSTEM_OPTIONS_VALIDATION_H_ #include #include #include "base/macros.h" #include "mojo/public/c/system/types.h" #include "mojo/system/memory.h" #include "mojo/system/system_impl_export.h" namespace mojo { namespace system { // Checks that |buffer| appears to contain a valid Options struct, namely // properly aligned and with a |struct_size| field (which must the first field // of the struct and be a |uint32_t|) containing a plausible size. template bool IsOptionsStructPointerAndSizeValid(const void* buffer) { COMPILE_ASSERT(offsetof(Options, struct_size) == 0, Options_struct_size_not_first_member); // TODO(vtl): With C++11, use |sizeof(Options::struct_size)| instead. COMPILE_ASSERT(sizeof(static_cast(buffer)->struct_size) == sizeof(uint32_t), Options_struct_size_not_32_bits); // Note: Use |MOJO_ALIGNOF()| here to match the exact macro used in the // declaration of Options structs. if (!internal::VerifyUserPointerHelper(buffer)) return false; return static_cast(buffer)->struct_size >= sizeof(uint32_t); } // Checks that the Options struct in |buffer| has a member with the given offset // and size. This may be called only if |IsOptionsStructPointerAndSizeValid()| // returned true. // // You may want to use the macro |HAS_OPTIONS_STRUCT_MEMBER()| instead. template bool HasOptionsStructMember(const void* buffer) { // We assume that |offset| and |size| are reasonable, since they should come // from |offsetof(Options, some_member)| and |sizeof(Options::some_member)|, // respectively. return static_cast(buffer)->struct_size >= offset + size; } // Macro to invoke |HasOptionsStructMember()| parametrized by member name // instead of offset and size. // // (We can't just give |HasOptionsStructMember()| a member pointer template // argument instead, since there's no good/strictly-correct way to get an offset // from that.) // // TODO(vtl): With C++11, use |sizeof(Options::member)| instead. #define HAS_OPTIONS_STRUCT_MEMBER(Options, member, buffer) \ (HasOptionsStructMember< \ Options, \ offsetof(Options, member), \ sizeof(static_cast(buffer)->member)>(buffer)) // Checks that the (standard) |flags| member consists of only known flags. This // should only be called if |HAS_OPTIONS_STRUCT_MEMBER()| returned true for the // |flags| field. // // The rationale for *not* ignoring these flags is that the caller should have a // way of specifying that certain options not be ignored. E.g., one may have a // |MOJO_..._OPTIONS_FLAG_DONT_IGNORE_FOO| flag and a |foo| member; if the flag // is set, it will guarantee that the version of the system knows about the // |foo| member (and won't ignore it). template bool AreOptionsFlagsAllKnown(const void* buffer, uint32_t known_flags) { return (static_cast(buffer)->flags & ~known_flags) == 0; } // Does basic cursory checks on |in_options| (|struct_size| and |flags|; |flags| // must immediately follow |struct_size|); |in_options| must be non-null. The // following should be done before calling this: // - Set |out_options| to the default options. // - If |in_options| is null, don't continue (success). // This function then: // - Checks if (according to |IsOptionsStructPointerAndSizeValid()|), // |struct_size| is valid; if not returns |MOJO_RESULT_INVALID_ARGUMENT|. // - If |in_options| has a |flags| field, checks that it only has // |known_flags| set; if so copies it to |out_options->flags|, and if not // returns |MOJO_RESULT_UNIMPLEMENTED|. // - At this point, returns |MOJO_RESULT_OK|. template MojoResult ValidateOptionsStructPointerSizeAndFlags( const Options* in_options, uint32_t known_flags, Options* out_options) { COMPILE_ASSERT(offsetof(Options, flags) == sizeof(uint32_t), Options_flags_doesnt_immediately_follow_struct_size); if (!IsOptionsStructPointerAndSizeValid(in_options)) return MOJO_RESULT_INVALID_ARGUMENT; if (HAS_OPTIONS_STRUCT_MEMBER(Options, flags, in_options)) { if (!AreOptionsFlagsAllKnown(in_options, known_flags)) return MOJO_RESULT_UNIMPLEMENTED; out_options->flags = in_options->flags; } return MOJO_RESULT_OK; } } // namespace system } // namespace mojo #endif // MOJO_SYSTEM_OPTIONS_VALIDATION_H_