symbol-namespaces.rst 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. =================
  2. Symbol Namespaces
  3. =================
  4. The following document describes how to use Symbol Namespaces to structure the
  5. export surface of in-kernel symbols exported through the family of
  6. EXPORT_SYMBOL() macros.
  7. .. Table of Contents
  8. === 1 Introduction
  9. === 2 How to define Symbol Namespaces
  10. --- 2.1 Using the EXPORT_SYMBOL macros
  11. --- 2.2 Using the DEFAULT_SYMBOL_NAMESPACE define
  12. === 3 How to use Symbols exported in Namespaces
  13. === 4 Loading Modules that use namespaced Symbols
  14. === 5 Automatically creating MODULE_IMPORT_NS statements
  15. 1. Introduction
  16. ===============
  17. Symbol Namespaces have been introduced as a means to structure the export
  18. surface of the in-kernel API. It allows subsystem maintainers to partition
  19. their exported symbols into separate namespaces. That is useful for
  20. documentation purposes (think of the SUBSYSTEM_DEBUG namespace) as well as for
  21. limiting the availability of a set of symbols for use in other parts of the
  22. kernel. As of today, modules that make use of symbols exported into namespaces,
  23. are required to import the namespace. Otherwise the kernel will, depending on
  24. its configuration, reject loading the module or warn about a missing import.
  25. Additionally, it is possible to put symbols into a module namespace, strictly
  26. limiting which modules are allowed to use these symbols.
  27. 2. How to define Symbol Namespaces
  28. ==================================
  29. Symbols can be exported into namespace using different methods. All of them are
  30. changing the way EXPORT_SYMBOL and friends are instrumented to create ksymtab
  31. entries.
  32. 2.1 Using the EXPORT_SYMBOL macros
  33. ==================================
  34. In addition to the macros EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(), that allow
  35. exporting of kernel symbols to the kernel symbol table, variants of these are
  36. available to export symbols into a certain namespace: EXPORT_SYMBOL_NS() and
  37. EXPORT_SYMBOL_NS_GPL(). They take one additional argument: the namespace.
  38. Please note that due to macro expansion that argument needs to be a
  39. preprocessor symbol. E.g. to export the symbol ``usb_stor_suspend`` into the
  40. namespace ``USB_STORAGE``, use::
  41. EXPORT_SYMBOL_NS(usb_stor_suspend, USB_STORAGE);
  42. The corresponding ksymtab entry struct ``kernel_symbol`` will have the member
  43. ``namespace`` set accordingly. A symbol that is exported without a namespace will
  44. refer to ``NULL``. There is no default namespace if none is defined. ``modpost``
  45. and kernel/module/main.c make use the namespace at build time or module load
  46. time, respectively.
  47. 2.2 Using the DEFAULT_SYMBOL_NAMESPACE define
  48. =============================================
  49. Defining namespaces for all symbols of a subsystem can be very verbose and may
  50. become hard to maintain. Therefore a default define (DEFAULT_SYMBOL_NAMESPACE)
  51. is been provided, that, if set, will become the default for all EXPORT_SYMBOL()
  52. and EXPORT_SYMBOL_GPL() macro expansions that do not specify a namespace.
  53. There are multiple ways of specifying this define and it depends on the
  54. subsystem and the maintainer's preference, which one to use. The first option
  55. is to define the default namespace in the ``Makefile`` of the subsystem. E.g. to
  56. export all symbols defined in usb-common into the namespace USB_COMMON, add a
  57. line like this to drivers/usb/common/Makefile::
  58. ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE='"USB_COMMON"'
  59. That will affect all EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL() statements. A
  60. symbol exported with EXPORT_SYMBOL_NS() while this definition is present, will
  61. still be exported into the namespace that is passed as the namespace argument
  62. as this argument has preference over a default symbol namespace.
  63. A second option to define the default namespace is directly in the compilation
  64. unit as preprocessor statement. The above example would then read::
  65. #undef DEFAULT_SYMBOL_NAMESPACE
  66. #define DEFAULT_SYMBOL_NAMESPACE "USB_COMMON"
  67. within the corresponding compilation unit before any EXPORT_SYMBOL macro is
  68. used.
  69. 2.3 Using the EXPORT_SYMBOL_GPL_FOR_MODULES() macro
  70. ===================================================
  71. Symbols exported using this macro are put into a module namespace. This
  72. namespace cannot be imported.
  73. The macro takes a comma separated list of module names, allowing only those
  74. modules to access this symbol. Simple tail-globs are supported.
  75. For example:
  76. EXPORT_SYMBOL_GPL_FOR_MODULES(preempt_notifier_inc, "kvm,kvm-*")
  77. will limit usage of this symbol to modules whoes name matches the given
  78. patterns.
  79. 3. How to use Symbols exported in Namespaces
  80. ============================================
  81. In order to use symbols that are exported into namespaces, kernel modules need
  82. to explicitly import these namespaces. Otherwise the kernel might reject to
  83. load the module. The module code is required to use the macro MODULE_IMPORT_NS
  84. for the namespaces it uses symbols from. E.g. a module using the
  85. usb_stor_suspend symbol from above, needs to import the namespace USB_STORAGE
  86. using a statement like::
  87. MODULE_IMPORT_NS(USB_STORAGE);
  88. This will create a ``modinfo`` tag in the module for each imported namespace.
  89. This has the side effect, that the imported namespaces of a module can be
  90. inspected with modinfo::
  91. $ modinfo drivers/usb/storage/ums-karma.ko
  92. [...]
  93. import_ns: USB_STORAGE
  94. [...]
  95. It is advisable to add the MODULE_IMPORT_NS() statement close to other module
  96. metadata definitions like MODULE_AUTHOR() or MODULE_LICENSE(). Refer to section
  97. 5. for a way to create missing import statements automatically.
  98. 4. Loading Modules that use namespaced Symbols
  99. ==============================================
  100. At module loading time (e.g. ``insmod``), the kernel will check each symbol
  101. referenced from the module for its availability and whether the namespace it
  102. might be exported to has been imported by the module. The default behaviour of
  103. the kernel is to reject loading modules that don't specify sufficient imports.
  104. An error will be logged and loading will be failed with EINVAL. In order to
  105. allow loading of modules that don't satisfy this precondition, a configuration
  106. option is available: Setting MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS=y will
  107. enable loading regardless, but will emit a warning.
  108. 5. Automatically creating MODULE_IMPORT_NS statements
  109. =====================================================
  110. Missing namespaces imports can easily be detected at build time. In fact,
  111. modpost will emit a warning if a module uses a symbol from a namespace
  112. without importing it.
  113. MODULE_IMPORT_NS() statements will usually be added at a definite location
  114. (along with other module meta data). To make the life of module authors (and
  115. subsystem maintainers) easier, a script and make target is available to fixup
  116. missing imports. Fixing missing imports can be done with::
  117. $ make nsdeps
  118. A typical scenario for module authors would be::
  119. - write code that depends on a symbol from a not imported namespace
  120. - ``make``
  121. - notice the warning of modpost telling about a missing import
  122. - run ``make nsdeps`` to add the import to the correct code location
  123. For subsystem maintainers introducing a namespace, the steps are very similar.
  124. Again, ``make nsdeps`` will eventually add the missing namespace imports for
  125. in-tree modules::
  126. - move or add symbols to a namespace (e.g. with EXPORT_SYMBOL_NS())
  127. - ``make`` (preferably with an allmodconfig to cover all in-kernel
  128. modules)
  129. - notice the warning of modpost telling about a missing import
  130. - run ``make nsdeps`` to add the import to the correct code location
  131. You can also run nsdeps for external module builds. A typical usage is::
  132. $ make -C <path_to_kernel_src> M=$PWD nsdeps
  133. Note: it will happily generate an import statement for the module namespace;
  134. which will not work and generates build and runtime failures.