deprecated.rst 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. .. SPDX-License-Identifier: GPL-2.0
  2. .. _deprecated:
  3. =====================================================================
  4. Deprecated Interfaces, Language Features, Attributes, and Conventions
  5. =====================================================================
  6. In a perfect world, it would be possible to convert all instances of
  7. some deprecated API into the new API and entirely remove the old API in
  8. a single development cycle. However, due to the size of the kernel, the
  9. maintainership hierarchy, and timing, it's not always feasible to do these
  10. kinds of conversions at once. This means that new instances may sneak into
  11. the kernel while old ones are being removed, only making the amount of
  12. work to remove the API grow. In order to educate developers about what
  13. has been deprecated and why, this list has been created as a place to
  14. point when uses of deprecated things are proposed for inclusion in the
  15. kernel.
  16. __deprecated
  17. ------------
  18. While this attribute does visually mark an interface as deprecated,
  19. it `does not produce warnings during builds any more
  20. <https://git.kernel.org/linus/771c035372a036f83353eef46dbb829780330234>`_
  21. because one of the standing goals of the kernel is to build without
  22. warnings and no one was actually doing anything to remove these deprecated
  23. interfaces. While using `__deprecated` is nice to note an old API in
  24. a header file, it isn't the full solution. Such interfaces must either
  25. be fully removed from the kernel, or added to this file to discourage
  26. others from using them in the future.
  27. BUG() and BUG_ON()
  28. ------------------
  29. Use WARN() and WARN_ON() instead, and handle the "impossible"
  30. error condition as gracefully as possible. While the BUG()-family
  31. of APIs were originally designed to act as an "impossible situation"
  32. assert and to kill a kernel thread "safely", they turn out to just be
  33. too risky. (e.g. "In what order do locks need to be released? Have
  34. various states been restored?") Very commonly, using BUG() will
  35. destabilize a system or entirely break it, which makes it impossible
  36. to debug or even get viable crash reports. Linus has `very strong
  37. <https://lore.kernel.org/lkml/CA+55aFy6jNLsywVYdGp83AMrXBo_P-pkjkphPGrO=82SPKCpLQ@mail.gmail.com/>`_
  38. feelings `about this
  39. <https://lore.kernel.org/lkml/CAHk-=whDHsbK3HTOpTF=ue_o04onRwTEaK_ZoJp_fjbqq4+=Jw@mail.gmail.com/>`_.
  40. Note that the WARN()-family should only be used for "expected to
  41. be unreachable" situations. If you want to warn about "reachable
  42. but undesirable" situations, please use the pr_warn()-family of
  43. functions. System owners may have set the *panic_on_warn* sysctl,
  44. to make sure their systems do not continue running in the face of
  45. "unreachable" conditions. (For example, see commits like `this one
  46. <https://git.kernel.org/linus/d4689846881d160a4d12a514e991a740bcb5d65a>`_.)
  47. open-coded arithmetic in allocator arguments
  48. --------------------------------------------
  49. Dynamic size calculations (especially multiplication) should not be
  50. performed in memory allocator (or similar) function arguments due to the
  51. risk of them overflowing. This could lead to values wrapping around and a
  52. smaller allocation being made than the caller was expecting. Using those
  53. allocations could lead to linear overflows of heap memory and other
  54. misbehaviors. (One exception to this is literal values where the compiler
  55. can warn if they might overflow. However, the preferred way in these
  56. cases is to refactor the code as suggested below to avoid the open-coded
  57. arithmetic.)
  58. For example, do not use ``count * size`` as an argument, as in::
  59. foo = kmalloc(count * size, GFP_KERNEL);
  60. Instead, the 2-factor form of the allocator should be used::
  61. foo = kmalloc_array(count, size, GFP_KERNEL);
  62. Specifically, kmalloc() can be replaced with kmalloc_array(), and
  63. kzalloc() can be replaced with kcalloc().
  64. If no 2-factor form is available, the saturate-on-overflow helpers should
  65. be used::
  66. bar = vmalloc(array_size(count, size));
  67. Another common case to avoid is calculating the size of a structure with
  68. a trailing array of others structures, as in::
  69. header = kzalloc(sizeof(*header) + count * sizeof(*header->item),
  70. GFP_KERNEL);
  71. Instead, use the helper::
  72. header = kzalloc(struct_size(header, item, count), GFP_KERNEL);
  73. .. note:: If you are using struct_size() on a structure containing a zero-length
  74. or a one-element array as a trailing array member, please refactor such
  75. array usage and switch to a `flexible array member
  76. <#zero-length-and-one-element-arrays>`_ instead.
  77. For other calculations, please compose the use of the size_mul(),
  78. size_add(), and size_sub() helpers. For example, in the case of::
  79. foo = krealloc(current_size + chunk_size * (count - 3), GFP_KERNEL);
  80. Instead, use the helpers::
  81. foo = krealloc(size_add(current_size,
  82. size_mul(chunk_size,
  83. size_sub(count, 3))), GFP_KERNEL);
  84. For more details, also see array3_size() and flex_array_size(),
  85. as well as the related check_mul_overflow(), check_add_overflow(),
  86. check_sub_overflow(), and check_shl_overflow() family of functions.
  87. simple_strtol(), simple_strtoll(), simple_strtoul(), simple_strtoull()
  88. ----------------------------------------------------------------------
  89. The simple_strtol(), simple_strtoll(),
  90. simple_strtoul(), and simple_strtoull() functions
  91. explicitly ignore overflows, which may lead to unexpected results
  92. in callers. The respective kstrtol(), kstrtoll(),
  93. kstrtoul(), and kstrtoull() functions tend to be the
  94. correct replacements, though note that those require the string to be
  95. NUL or newline terminated.
  96. strcpy()
  97. --------
  98. strcpy() performs no bounds checking on the destination buffer. This
  99. could result in linear overflows beyond the end of the buffer, leading to
  100. all kinds of misbehaviors. While `CONFIG_FORTIFY_SOURCE=y` and various
  101. compiler flags help reduce the risk of using this function, there is
  102. no good reason to add new uses of this function. The safe replacement
  103. is strscpy(), though care must be given to any cases where the return
  104. value of strcpy() was used, since strscpy() does not return a pointer to
  105. the destination, but rather a count of non-NUL bytes copied (or negative
  106. errno when it truncates).
  107. strncpy() on NUL-terminated strings
  108. -----------------------------------
  109. Use of strncpy() does not guarantee that the destination buffer will
  110. be NUL terminated. This can lead to various linear read overflows and
  111. other misbehavior due to the missing termination. It also NUL-pads
  112. the destination buffer if the source contents are shorter than the
  113. destination buffer size, which may be a needless performance penalty
  114. for callers using only NUL-terminated strings.
  115. When the destination is required to be NUL-terminated, the replacement is
  116. strscpy(), though care must be given to any cases where the return value
  117. of strncpy() was used, since strscpy() does not return a pointer to the
  118. destination, but rather a count of non-NUL bytes copied (or negative
  119. errno when it truncates). Any cases still needing NUL-padding should
  120. instead use strscpy_pad().
  121. If a caller is using non-NUL-terminated strings, strtomem() should be
  122. used, and the destinations should be marked with the `__nonstring
  123. <https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html>`_
  124. attribute to avoid future compiler warnings. For cases still needing
  125. NUL-padding, strtomem_pad() can be used.
  126. strlcpy()
  127. ---------
  128. strlcpy() reads the entire source buffer first (since the return value
  129. is meant to match that of strlen()). This read may exceed the destination
  130. size limit. This is both inefficient and can lead to linear read overflows
  131. if a source string is not NUL-terminated. The safe replacement is strscpy(),
  132. though care must be given to any cases where the return value of strlcpy()
  133. is used, since strscpy() will return negative errno values when it truncates.
  134. %p format specifier
  135. -------------------
  136. Traditionally, using "%p" in format strings would lead to regular address
  137. exposure flaws in dmesg, proc, sysfs, etc. Instead of leaving these to
  138. be exploitable, all "%p" uses in the kernel are being printed as a hashed
  139. value, rendering them unusable for addressing. New uses of "%p" should not
  140. be added to the kernel. For text addresses, using "%pS" is likely better,
  141. as it produces the more useful symbol name instead. For nearly everything
  142. else, just do not add "%p" at all.
  143. Paraphrasing Linus's current `guidance <https://lore.kernel.org/lkml/CA+55aFwQEd_d40g4mUCSsVRZzrFPUJt74vc6PPpb675hYNXcKw@mail.gmail.com/>`_:
  144. - If the hashed "%p" value is pointless, ask yourself whether the pointer
  145. itself is important. Maybe it should be removed entirely?
  146. - If you really think the true pointer value is important, why is some
  147. system state or user privilege level considered "special"? If you think
  148. you can justify it (in comments and commit log) well enough to stand
  149. up to Linus's scrutiny, maybe you can use "%px", along with making sure
  150. you have sensible permissions.
  151. If you are debugging something where "%p" hashing is causing problems,
  152. you can temporarily boot with the debug flag "`no_hash_pointers
  153. <https://git.kernel.org/linus/5ead723a20e0447bc7db33dc3070b420e5f80aa6>`_".
  154. Variable Length Arrays (VLAs)
  155. -----------------------------
  156. Using stack VLAs produces much worse machine code than statically
  157. sized stack arrays. While these non-trivial `performance issues
  158. <https://git.kernel.org/linus/02361bc77888>`_ are reason enough to
  159. eliminate VLAs, they are also a security risk. Dynamic growth of a stack
  160. array may exceed the remaining memory in the stack segment. This could
  161. lead to a crash, possible overwriting sensitive contents at the end of the
  162. stack (when built without `CONFIG_THREAD_INFO_IN_TASK=y`), or overwriting
  163. memory adjacent to the stack (when built without `CONFIG_VMAP_STACK=y`)
  164. Implicit switch case fall-through
  165. ---------------------------------
  166. The C language allows switch cases to fall through to the next case
  167. when a "break" statement is missing at the end of a case. This, however,
  168. introduces ambiguity in the code, as it's not always clear if the missing
  169. break is intentional or a bug. For example, it's not obvious just from
  170. looking at the code if `STATE_ONE` is intentionally designed to fall
  171. through into `STATE_TWO`::
  172. switch (value) {
  173. case STATE_ONE:
  174. do_something();
  175. case STATE_TWO:
  176. do_other();
  177. break;
  178. default:
  179. WARN("unknown state");
  180. }
  181. As there have been a long list of flaws `due to missing "break" statements
  182. <https://cwe.mitre.org/data/definitions/484.html>`_, we no longer allow
  183. implicit fall-through. In order to identify intentional fall-through
  184. cases, we have adopted a pseudo-keyword macro "fallthrough" which
  185. expands to gcc's extension `__attribute__((__fallthrough__))
  186. <https://gcc.gnu.org/onlinedocs/gcc/Statement-Attributes.html>`_.
  187. (When the C17/C18 `[[fallthrough]]` syntax is more commonly supported by
  188. C compilers, static analyzers, and IDEs, we can switch to using that syntax
  189. for the macro pseudo-keyword.)
  190. All switch/case blocks must end in one of:
  191. * break;
  192. * fallthrough;
  193. * continue;
  194. * goto <label>;
  195. * return [expression];
  196. Zero-length and one-element arrays
  197. ----------------------------------
  198. There is a regular need in the kernel to provide a way to declare having
  199. a dynamically sized set of trailing elements in a structure. Kernel code
  200. should always use `"flexible array members" <https://en.wikipedia.org/wiki/Flexible_array_member>`_
  201. for these cases. The older style of one-element or zero-length arrays should
  202. no longer be used.
  203. In older C code, dynamically sized trailing elements were done by specifying
  204. a one-element array at the end of a structure::
  205. struct something {
  206. size_t count;
  207. struct foo items[1];
  208. };
  209. This led to fragile size calculations via sizeof() (which would need to
  210. remove the size of the single trailing element to get a correct size of
  211. the "header"). A `GNU C extension <https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html>`_
  212. was introduced to allow for zero-length arrays, to avoid these kinds of
  213. size problems::
  214. struct something {
  215. size_t count;
  216. struct foo items[0];
  217. };
  218. But this led to other problems, and didn't solve some problems shared by
  219. both styles, like not being able to detect when such an array is accidentally
  220. being used _not_ at the end of a structure (which could happen directly, or
  221. when such a struct was in unions, structs of structs, etc).
  222. C99 introduced "flexible array members", which lacks a numeric size for
  223. the array declaration entirely::
  224. struct something {
  225. size_t count;
  226. struct foo items[];
  227. };
  228. This is the way the kernel expects dynamically sized trailing elements
  229. to be declared. It allows the compiler to generate errors when the
  230. flexible array does not occur last in the structure, which helps to prevent
  231. some kind of `undefined behavior
  232. <https://git.kernel.org/linus/76497732932f15e7323dc805e8ea8dc11bb587cf>`_
  233. bugs from being inadvertently introduced to the codebase. It also allows
  234. the compiler to correctly analyze array sizes (via sizeof(),
  235. `CONFIG_FORTIFY_SOURCE`, and `CONFIG_UBSAN_BOUNDS`). For instance,
  236. there is no mechanism that warns us that the following application of the
  237. sizeof() operator to a zero-length array always results in zero::
  238. struct something {
  239. size_t count;
  240. struct foo items[0];
  241. };
  242. struct something *instance;
  243. instance = kmalloc(struct_size(instance, items, count), GFP_KERNEL);
  244. instance->count = count;
  245. size = sizeof(instance->items) * instance->count;
  246. memcpy(instance->items, source, size);
  247. At the last line of code above, ``size`` turns out to be ``zero``, when one might
  248. have thought it represents the total size in bytes of the dynamic memory recently
  249. allocated for the trailing array ``items``. Here are a couple examples of this
  250. issue: `link 1
  251. <https://git.kernel.org/linus/f2cd32a443da694ac4e28fbf4ac6f9d5cc63a539>`_,
  252. `link 2
  253. <https://git.kernel.org/linus/ab91c2a89f86be2898cee208d492816ec238b2cf>`_.
  254. Instead, `flexible array members have incomplete type, and so the sizeof()
  255. operator may not be applied <https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html>`_,
  256. so any misuse of such operators will be immediately noticed at build time.
  257. With respect to one-element arrays, one has to be acutely aware that `such arrays
  258. occupy at least as much space as a single object of the type
  259. <https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html>`_,
  260. hence they contribute to the size of the enclosing structure. This is prone
  261. to error every time people want to calculate the total size of dynamic memory
  262. to allocate for a structure containing an array of this kind as a member::
  263. struct something {
  264. size_t count;
  265. struct foo items[1];
  266. };
  267. struct something *instance;
  268. instance = kmalloc(struct_size(instance, items, count - 1), GFP_KERNEL);
  269. instance->count = count;
  270. size = sizeof(instance->items) * instance->count;
  271. memcpy(instance->items, source, size);
  272. In the example above, we had to remember to calculate ``count - 1`` when using
  273. the struct_size() helper, otherwise we would have --unintentionally-- allocated
  274. memory for one too many ``items`` objects. The cleanest and least error-prone way
  275. to implement this is through the use of a `flexible array member`, together with
  276. struct_size() and flex_array_size() helpers::
  277. struct something {
  278. size_t count;
  279. struct foo items[];
  280. };
  281. struct something *instance;
  282. instance = kmalloc(struct_size(instance, items, count), GFP_KERNEL);
  283. instance->count = count;
  284. memcpy(instance->items, source, flex_array_size(instance, items, instance->count));