uverbs_named_ioctl.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2018, Mellanox Technologies inc. All rights reserved.
  3. *
  4. * This software is available to you under a choice of one of two
  5. * licenses. You may choose to be licensed under the terms of the GNU
  6. * General Public License (GPL) Version 2, available from the file
  7. * COPYING in the main directory of this source tree, or the
  8. * OpenIB.org BSD license below:
  9. *
  10. * Redistribution and use in source and binary forms, with or
  11. * without modification, are permitted provided that the following
  12. * conditions are met:
  13. *
  14. * - Redistributions of source code must retain the above
  15. * copyright notice, this list of conditions and the following
  16. * disclaimer.
  17. *
  18. * - Redistributions in binary form must reproduce the above
  19. * copyright notice, this list of conditions and the following
  20. * disclaimer in the documentation and/or other materials
  21. * provided with the distribution.
  22. *
  23. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  27. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  28. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  29. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  30. * SOFTWARE.
  31. */
  32. #ifndef _UVERBS_NAMED_IOCTL_
  33. #define _UVERBS_NAMED_IOCTL_
  34. #include <rdma/uverbs_ioctl.h>
  35. #ifndef UVERBS_MODULE_NAME
  36. #error "Please #define UVERBS_MODULE_NAME before including rdma/uverbs_named_ioctl.h"
  37. #endif
  38. #define _UVERBS_PASTE(x, y) x ## y
  39. #define _UVERBS_NAME(x, y) _UVERBS_PASTE(x, y)
  40. #define UVERBS_METHOD(id) _UVERBS_NAME(UVERBS_MODULE_NAME, _method_##id)
  41. #define UVERBS_HANDLER(id) _UVERBS_NAME(UVERBS_MODULE_NAME, _handler_##id)
  42. #define UVERBS_OBJECT(id) _UVERBS_NAME(UVERBS_MOUDLE_NAME, _object_##id)
  43. /* These are static so they do not need to be qualified */
  44. #define UVERBS_METHOD_ATTRS(method_id) _method_attrs_##method_id
  45. #define UVERBS_OBJECT_METHODS(object_id) _object_methods_##object_id
  46. #define DECLARE_UVERBS_NAMED_METHOD(_method_id, ...) \
  47. static const struct uverbs_attr_def *const UVERBS_METHOD_ATTRS( \
  48. _method_id)[] = { __VA_ARGS__ }; \
  49. static const struct uverbs_method_def UVERBS_METHOD(_method_id) = { \
  50. .id = _method_id, \
  51. .handler = UVERBS_HANDLER(_method_id), \
  52. .num_attrs = ARRAY_SIZE(UVERBS_METHOD_ATTRS(_method_id)), \
  53. .attrs = &UVERBS_METHOD_ATTRS(_method_id), \
  54. }
  55. /* Create a standard destroy method using the default handler. The handle_attr
  56. * argument must be the attribute specifying the handle to destroy, the
  57. * default handler does not support any other attributes.
  58. */
  59. #define DECLARE_UVERBS_NAMED_METHOD_DESTROY(_method_id, _handle_attr) \
  60. static const struct uverbs_attr_def *const UVERBS_METHOD_ATTRS( \
  61. _method_id)[] = { _handle_attr }; \
  62. static const struct uverbs_method_def UVERBS_METHOD(_method_id) = { \
  63. .id = _method_id, \
  64. .handler = uverbs_destroy_def_handler, \
  65. .num_attrs = ARRAY_SIZE(UVERBS_METHOD_ATTRS(_method_id)), \
  66. .attrs = &UVERBS_METHOD_ATTRS(_method_id), \
  67. }
  68. #define DECLARE_UVERBS_NAMED_OBJECT(_object_id, _type_attrs, ...) \
  69. static const struct uverbs_method_def *const UVERBS_OBJECT_METHODS( \
  70. _object_id)[] = { __VA_ARGS__ }; \
  71. const struct uverbs_object_def UVERBS_OBJECT(_object_id) = { \
  72. .id = _object_id, \
  73. .type_attrs = &_type_attrs, \
  74. .num_methods = ARRAY_SIZE(UVERBS_OBJECT_METHODS(_object_id)), \
  75. .methods = &UVERBS_OBJECT_METHODS(_object_id) \
  76. }
  77. /*
  78. * Declare global methods. These still have a unique object_id because we
  79. * identify all uapi methods with a (object,method) tuple. However, they have
  80. * no type pointer.
  81. */
  82. #define DECLARE_UVERBS_GLOBAL_METHODS(_object_id, ...) \
  83. static const struct uverbs_method_def *const UVERBS_OBJECT_METHODS( \
  84. _object_id)[] = { __VA_ARGS__ }; \
  85. const struct uverbs_object_def UVERBS_OBJECT(_object_id) = { \
  86. .id = _object_id, \
  87. .num_methods = ARRAY_SIZE(UVERBS_OBJECT_METHODS(_object_id)), \
  88. .methods = &UVERBS_OBJECT_METHODS(_object_id) \
  89. }
  90. /* Used by drivers to declare a complete parsing tree for new methods
  91. */
  92. #define ADD_UVERBS_METHODS(_name, _object_id, ...) \
  93. static const struct uverbs_method_def *const UVERBS_OBJECT_METHODS( \
  94. _object_id)[] = { __VA_ARGS__ }; \
  95. static const struct uverbs_object_def _name##_struct = { \
  96. .id = _object_id, \
  97. .num_methods = ARRAY_SIZE(UVERBS_OBJECT_METHODS(_object_id)), \
  98. .methods = &UVERBS_OBJECT_METHODS(_object_id) \
  99. }; \
  100. static const struct uverbs_object_def *const _name##_ptrs[] = { \
  101. &_name##_struct, \
  102. }; \
  103. static const struct uverbs_object_tree_def _name = { \
  104. .num_objects = 1, \
  105. .objects = &_name##_ptrs, \
  106. }
  107. /* Used by drivers to declare a complete parsing tree for a single method that
  108. * differs only in having additional driver specific attributes.
  109. */
  110. #define ADD_UVERBS_ATTRIBUTES_SIMPLE(_name, _object_id, _method_id, ...) \
  111. static const struct uverbs_attr_def *const UVERBS_METHOD_ATTRS( \
  112. _method_id)[] = { __VA_ARGS__ }; \
  113. static const struct uverbs_method_def UVERBS_METHOD(_method_id) = { \
  114. .id = _method_id, \
  115. .num_attrs = ARRAY_SIZE(UVERBS_METHOD_ATTRS(_method_id)), \
  116. .attrs = &UVERBS_METHOD_ATTRS(_method_id), \
  117. }; \
  118. ADD_UVERBS_METHODS(_name, _object_id, &UVERBS_METHOD(_method_id))
  119. #endif