← Documents Documentation/core-api/debug-objects.rst GitHub 원문 ↗

Linux 6.18.37 · Core API

The object-lifetime debugging infrastructure

Kernel object lifetime을 별도 tracker로 검증하는 debugobjects의 init·activate·deactivate·destroy·free API, state 전이와 fixup callback 계약을 설명합니다.

Source pathDocumentation/core-api/debug-objects.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약과 해설

debug-objects.rst:1-310

Debugobjects는 실제 object layout을 바꾸지 않고 별도 tracker에 INIT, ACTIVE, INACTIVE, DESTROYED state를 기록하여 잘못된 lifetime operation을 감지합니다.

Subsystem은 각 lifecycle operation 지점에서 대응하는 debug_object_* API를 호출하고, type description에 fixup callback을 제공하여 error를 보고하면서도 system이 계속 동작하도록 복구할 수 있습니다.

Stack object는 전용 initialization API를 사용하고 function return 전에 tracker에서 제거해야 하며, statically initialized object는 NOTAVAILABLE state를 정상 사례로 판별하는 특별한 fixup 경로가 필요합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 ============================================
2 The object-lifetime debugging infrastructure
3 ============================================
4
5 :Author: Thomas Gleixner
6
7 Introduction
8 ============
9
10 debugobjects is a generic infrastructure to track the life time of
11 kernel objects and validate the operations on those.
12
13 debugobjects is useful to check for the following error patterns:
14
15 - Activation of uninitialized objects
16
17 - Initialization of active objects
18
19 - Usage of freed/destroyed objects
20
21 debugobjects is not changing the data structure of the real object so it
22 can be compiled in with a minimal runtime impact and enabled on demand
23 with a kernel command line option.
24
25 Howto use debugobjects
26 ======================
27
28 A kernel subsystem needs to provide a data structure which describes the
29 object type and add calls into the debug code at appropriate places. The
30 data structure to describe the object type needs at minimum the name of
31 the object type. Optional functions can and should be provided to fixup
32 detected problems so the kernel can continue to work and the debug
33 information can be retrieved from a live system instead of hard core
34 debugging with serial consoles and stack trace transcripts from the
35 monitor.
36
37 The debug calls provided by debugobjects are:
38
39 - debug_object_init
40
41 - debug_object_init_on_stack
42
43 - debug_object_activate
44
45 - debug_object_deactivate
46
47 - debug_object_destroy
48
49 - debug_object_free
50
51 - debug_object_assert_init
52
53 Each of these functions takes the address of the real object and a
54 pointer to the object type specific debug description structure.
55
56 Each detected error is reported in the statistics and a limited number
57 of errors are printk'ed including a full stack trace.
58
59 The statistics are available via /sys/kernel/debug/debug_objects/stats.
60 They provide information about the number of warnings and the number of
61 successful fixups along with information about the usage of the internal
62 tracking objects and the state of the internal tracking objects pool.
63
64 Debug functions
65 ===============
66
67 .. kernel-doc:: lib/debugobjects.c
68 :functions: debug_object_init
69
70 This function is called whenever the initialization function of a real
71 object is called.
72
73 When the real object is already tracked by debugobjects it is checked,
74 whether the object can be initialized. Initializing is not allowed for
75 active and destroyed objects. When debugobjects detects an error, then
76 it calls the fixup_init function of the object type description
77 structure if provided by the caller. The fixup function can correct the
78 problem before the real initialization of the object happens. E.g. it
79 can deactivate an active object in order to prevent damage to the
80 subsystem.
81
82 When the real object is not yet tracked by debugobjects, debugobjects
83 allocates a tracker object for the real object and sets the tracker
84 object state to ODEBUG_STATE_INIT. It verifies that the object is not
85 on the callers stack. If it is on the callers stack then a limited
86 number of warnings including a full stack trace is printk'ed. The
87 calling code must use debug_object_init_on_stack() and remove the
88 object before leaving the function which allocated it. See next section.
89
90 .. kernel-doc:: lib/debugobjects.c
91 :functions: debug_object_init_on_stack
92
93 This function is called whenever the initialization function of a real
94 object which resides on the stack is called.
95
96 When the real object is already tracked by debugobjects it is checked,
97 whether the object can be initialized. Initializing is not allowed for
98 active and destroyed objects. When debugobjects detects an error, then
99 it calls the fixup_init function of the object type description
100 structure if provided by the caller. The fixup function can correct the
101 problem before the real initialization of the object happens. E.g. it
102 can deactivate an active object in order to prevent damage to the
103 subsystem.
104
105 When the real object is not yet tracked by debugobjects debugobjects
106 allocates a tracker object for the real object and sets the tracker
107 object state to ODEBUG_STATE_INIT. It verifies that the object is on
108 the callers stack.
109
110 An object which is on the stack must be removed from the tracker by
111 calling debug_object_free() before the function which allocates the
112 object returns. Otherwise we keep track of stale objects.
113
114 .. kernel-doc:: lib/debugobjects.c
115 :functions: debug_object_activate
116
117 This function is called whenever the activation function of a real
118 object is called.
119
120 When the real object is already tracked by debugobjects it is checked,
121 whether the object can be activated. Activating is not allowed for
122 active and destroyed objects. When debugobjects detects an error, then
123 it calls the fixup_activate function of the object type description
124 structure if provided by the caller. The fixup function can correct the
125 problem before the real activation of the object happens. E.g. it can
126 deactivate an active object in order to prevent damage to the subsystem.
127
128 When the real object is not yet tracked by debugobjects then the
129 fixup_activate function is called if available. This is necessary to
130 allow the legitimate activation of statically allocated and initialized
131 objects. The fixup function checks whether the object is valid and calls
132 the debug_objects_init() function to initialize the tracking of this
133 object.
134
135 When the activation is legitimate, then the state of the associated
136 tracker object is set to ODEBUG_STATE_ACTIVE.
137
138
139 .. kernel-doc:: lib/debugobjects.c
140 :functions: debug_object_deactivate
141
142 This function is called whenever the deactivation function of a real
143 object is called.
144
145 When the real object is tracked by debugobjects it is checked, whether
146 the object can be deactivated. Deactivating is not allowed for untracked
147 or destroyed objects.
148
149 When the deactivation is legitimate, then the state of the associated
150 tracker object is set to ODEBUG_STATE_INACTIVE.
151
152 .. kernel-doc:: lib/debugobjects.c
153 :functions: debug_object_destroy
154
155 This function is called to mark an object destroyed. This is useful to
156 prevent the usage of invalid objects, which are still available in
157 memory: either statically allocated objects or objects which are freed
158 later.
159
160 When the real object is tracked by debugobjects it is checked, whether
161 the object can be destroyed. Destruction is not allowed for active and
162 destroyed objects. When debugobjects detects an error, then it calls the
163 fixup_destroy function of the object type description structure if
164 provided by the caller. The fixup function can correct the problem
165 before the real destruction of the object happens. E.g. it can
166 deactivate an active object in order to prevent damage to the subsystem.
167
168 When the destruction is legitimate, then the state of the associated
169 tracker object is set to ODEBUG_STATE_DESTROYED.
170
171 .. kernel-doc:: lib/debugobjects.c
172 :functions: debug_object_free
173
174 This function is called before an object is freed.
175
176 When the real object is tracked by debugobjects it is checked, whether
177 the object can be freed. Free is not allowed for active objects. When
178 debugobjects detects an error, then it calls the fixup_free function of
179 the object type description structure if provided by the caller. The
180 fixup function can correct the problem before the real free of the
181 object happens. E.g. it can deactivate an active object in order to
182 prevent damage to the subsystem.
183
184 Note that debug_object_free removes the object from the tracker. Later
185 usage of the object is detected by the other debug checks.
186
187
188 .. kernel-doc:: lib/debugobjects.c
189 :functions: debug_object_assert_init
190
191 This function is called to assert that an object has been initialized.
192
193 When the real object is not tracked by debugobjects, it calls
194 fixup_assert_init of the object type description structure provided by
195 the caller, with the hardcoded object state ODEBUG_NOT_AVAILABLE. The
196 fixup function can correct the problem by calling debug_object_init
197 and other specific initializing functions.
198
199 When the real object is already tracked by debugobjects it is ignored.
200
201 Fixup functions
202 ===============
203
204 Debug object type description structure
205 ---------------------------------------
206
207 .. kernel-doc:: include/linux/debugobjects.h
208 :internal:
209
210 fixup_init
211 -----------
212
213 This function is called from the debug code whenever a problem in
214 debug_object_init is detected. The function takes the address of the
215 object and the state which is currently recorded in the tracker.
216
217 Called from debug_object_init when the object state is:
218
219 - ODEBUG_STATE_ACTIVE
220
221 The function returns true when the fixup was successful, otherwise
222 false. The return value is used to update the statistics.
223
224 Note, that the function needs to call the debug_object_init() function
225 again, after the damage has been repaired in order to keep the state
226 consistent.
227
228 fixup_activate
229 ---------------
230
231 This function is called from the debug code whenever a problem in
232 debug_object_activate is detected.
233
234 Called from debug_object_activate when the object state is:
235
236 - ODEBUG_STATE_NOTAVAILABLE
237
238 - ODEBUG_STATE_ACTIVE
239
240 The function returns true when the fixup was successful, otherwise
241 false. The return value is used to update the statistics.
242
243 Note that the function needs to call the debug_object_activate()
244 function again after the damage has been repaired in order to keep the
245 state consistent.
246
247 The activation of statically initialized objects is a special case. When
248 debug_object_activate() has no tracked object for this object address
249 then fixup_activate() is called with object state
250 ODEBUG_STATE_NOTAVAILABLE. The fixup function needs to check whether
251 this is a legitimate case of a statically initialized object or not. In
252 case it is it calls debug_object_init() and debug_object_activate()
253 to make the object known to the tracker and marked active. In this case
254 the function should return false because this is not a real fixup.
255
256 fixup_destroy
257 --------------
258
259 This function is called from the debug code whenever a problem in
260 debug_object_destroy is detected.
261
262 Called from debug_object_destroy when the object state is:
263
264 - ODEBUG_STATE_ACTIVE
265
266 The function returns true when the fixup was successful, otherwise
267 false. The return value is used to update the statistics.
268
269 fixup_free
270 -----------
271
272 This function is called from the debug code whenever a problem in
273 debug_object_free is detected. Further it can be called from the debug
274 checks in kfree/vfree, when an active object is detected from the
275 debug_check_no_obj_freed() sanity checks.
276
277 Called from debug_object_free() or debug_check_no_obj_freed() when
278 the object state is:
279
280 - ODEBUG_STATE_ACTIVE
281
282 The function returns true when the fixup was successful, otherwise
283 false. The return value is used to update the statistics.
284
285 fixup_assert_init
286 -------------------
287
288 This function is called from the debug code whenever a problem in
289 debug_object_assert_init is detected.
290
291 Called from debug_object_assert_init() with a hardcoded state
292 ODEBUG_STATE_NOTAVAILABLE when the object is not found in the debug
293 bucket.
294
295 The function returns true when the fixup was successful, otherwise
296 false. The return value is used to update the statistics.
297
298 Note, this function should make sure debug_object_init() is called
299 before returning.
300
301 The handling of statically initialized objects is a special case. The
302 fixup function should check if this is a legitimate case of a statically
303 initialized object or not. In this case only debug_object_init()
304 should be called to make the object known to the tracker. Then the
305 function should return false because this is not a real fixup.
306
307 Known Bugs And Assumptions
308 ==========================
309
310 None (knock on wood).
311

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

Object-lifetime debugging infrastructure

1-24

저자는 Thomas Gleixner입니다.

`debugobjects`는 kernel object의 lifetime을 추적하고 그 object에 대한 operation이 유효한지 검사하는 generic infrastructure입니다.

다음 error pattern을 검사하는 데 유용합니다.

  • 초기화되지 않은 object의 activation
  • Active object의 initialization
  • Free 또는 destroy된 object의 사용

`debugobjects`는 실제 object의 data structure를 변경하지 않습니다. 따라서 runtime impact를 최소화한 채 compile할 수 있고 kernel command-line option으로 필요할 때 enable할 수 있습니다.

debugobjects 사용 방법

25-63

Kernel subsystem은 object type을 설명하는 data structure를 제공하고 적절한 위치에서 debug code를 호출해야 합니다. Type description에는 최소한 object type name이 필요합니다.

발견한 문제를 fixup하는 optional function도 제공하는 것이 좋습니다. 그러면 kernel이 계속 동작하며, serial console과 monitor의 stack trace transcript에 의존하는 hard-core debugging 대신 live system에서 debug 정보를 가져올 수 있습니다.

제공되는 debug call은 다음과 같습니다.

  • debug_object_init
  • debug_object_init_on_stack
  • debug_object_activate
  • debug_object_deactivate
  • debug_object_destroy
  • debug_object_free
  • debug_object_assert_init

각 function은 실제 object의 address와 object type별 debug description structure pointer를 받습니다.

발견된 모든 error는 statistics에 기록되며, 제한된 수의 error는 full stack trace와 함께 `printk`로 출력됩니다.

Statistics는 `/sys/kernel/debug/debug_objects/stats`에서 확인할 수 있습니다. Warning 수와 성공한 fixup 수뿐 아니라 internal tracking object 사용량과 tracking object pool 상태도 제공합니다.

debug_object_init

64-89
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_init

실제 object의 initialization function이 호출될 때마다 `debug_object_init()`을 호출합니다.

Object를 이미 추적 중이면 초기화 가능한지 검사합니다. Active 또는 destroyed object는 초기화할 수 없습니다. Error를 발견하면 caller가 제공한 type description의 `fixup_init`을 호출합니다. Fixup은 실제 initialization 전에 active object를 deactivate하는 식으로 subsystem 손상을 막을 수 있습니다.

아직 추적하지 않는 object라면 tracker object를 할당하고 state를 `ODEBUG_STATE_INIT`으로 설정합니다. 또한 caller stack에 있지 않은지 검사합니다.

Object가 caller stack에 있으면 제한된 수의 warning을 full stack trace와 함께 출력합니다. 이런 object는 `debug_object_init_on_stack()`을 사용하고, object를 할당한 function을 떠나기 전에 tracker에서 제거해야 합니다.

debug_object_init_on_stack

90-113
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_init_on_stack

Stack에 존재하는 실제 object의 initialization function이 호출될 때 `debug_object_init_on_stack()`을 호출합니다.

이미 추적 중이면 초기화 가능 여부를 검사하며 active 및 destroyed object는 허용하지 않습니다. Error가 있으면 제공된 `fixup_init`이 실제 initialization 전에 문제를 고칠 수 있습니다.

아직 추적하지 않으면 tracker를 할당하고 `ODEBUG_STATE_INIT`으로 설정한 뒤 object가 caller stack에 있는지 확인합니다.

Stack object는 이를 할당한 function이 return하기 전에 `debug_object_free()`를 호출하여 tracker에서 제거해야 합니다. 그렇지 않으면 stale object를 계속 추적하게 됩니다.

debug_object_activate

114-138
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_activate

실제 object의 activation function이 호출될 때마다 `debug_object_activate()`를 호출합니다.

이미 추적 중이면 activate 가능한지 검사합니다. Active 또는 destroyed object는 activate할 수 없습니다. Error가 있으면 제공된 `fixup_activate`가 실제 activation 전에 active object를 deactivate하는 등의 방식으로 문제를 고칠 수 있습니다.

아직 추적하지 않는 object에도 `fixup_activate`가 있으면 호출합니다. 이는 statically allocated 및 initialized object의 합법적인 activation을 허용하기 위해 필요합니다. Fixup은 object의 유효성을 검사하고 `debug_objects_init()`을 호출해 tracking을 초기화합니다.

Activation이 유효하면 연결된 tracker object state를 `ODEBUG_STATE_ACTIVE`로 설정합니다.

debug_object_deactivate

139-151
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_deactivate

실제 object의 deactivation function이 호출될 때마다 `debug_object_deactivate()`를 호출합니다.

추적 중인 object가 deactivate 가능한지 검사하며, untracked 또는 destroyed object의 deactivation은 허용하지 않습니다. 유효하면 tracker state를 `ODEBUG_STATE_INACTIVE`로 설정합니다.

debug_object_destroy

152-170
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_destroy

`debug_object_destroy()`는 object를 destroyed 상태로 표시합니다. 이는 statically allocated object나 나중에 free할 object처럼 memory에 아직 남아 있지만 유효하지 않은 object의 사용을 막는 데 유용합니다.

추적 중이면 destroy 가능한지 검사합니다. Active 또는 이미 destroyed인 object는 허용하지 않습니다. Error가 있으면 제공된 `fixup_destroy`가 실제 destruction 전에 active object를 deactivate하는 등의 방식으로 문제를 고칠 수 있습니다.

Destruction이 유효하면 tracker state를 `ODEBUG_STATE_DESTROYED`로 설정합니다.

debug_object_free

171-187
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_free

Object를 free하기 전에 `debug_object_free()`를 호출합니다.

추적 중인 object가 free 가능한지 검사하며 active object의 free는 허용하지 않습니다. Error가 있으면 제공된 `fixup_free`가 실제 free 전에 active object를 deactivate하는 등의 방식으로 문제를 고칠 수 있습니다.

`debug_object_free()`는 tracker에서 object를 제거합니다. 나중에 이 object를 다시 사용하면 다른 debug check가 이를 감지합니다.

debug_object_assert_init

188-200
.. kernel-doc:: lib/debugobjects.c
   :functions: debug_object_assert_init

Object가 initialized 상태임을 assert하기 위해 `debug_object_assert_init()`을 호출합니다.

실제 object를 추적하지 않으면 caller가 제공한 type description의 `fixup_assert_init`을 hardcoded state `ODEBUG_NOT_AVAILABLE`과 함께 호출합니다. Fixup은 `debug_object_init()`과 type-specific initialization function을 호출하여 문제를 고칠 수 있습니다.

이미 추적 중인 object는 무시합니다.

Fixup function과 type description

201-209

Fixup callback이 들어 있는 debug object type description structure의 internal kernel-doc는 `include/linux/debugobjects.h`에서 가져옵니다.

.. kernel-doc:: include/linux/debugobjects.h
   :internal:

fixup_init

210-227

`debug_object_init`에서 문제를 발견하면 debug code가 `fixup_init`을 호출합니다. Function은 object address와 tracker에 현재 기록된 state를 받습니다.

다음 state에서 호출됩니다.

  • ODEBUG_STATE_ACTIVE

Fixup에 성공하면 true, 아니면 false를 반환하며 이 값으로 statistics를 갱신합니다.

손상을 고친 뒤 state consistency를 유지하려면 `debug_object_init()`을 다시 호출해야 합니다.

fixup_activate

228-255

`debug_object_activate`에서 문제를 발견하면 debug code가 `fixup_activate`를 호출합니다.

다음 state에서 호출됩니다.

  • ODEBUG_STATE_NOTAVAILABLE
  • ODEBUG_STATE_ACTIVE

Fixup에 성공하면 true, 아니면 false를 반환하여 statistics를 갱신합니다. 손상을 고친 뒤 consistency를 위해 `debug_object_activate()`를 다시 호출해야 합니다.

Statically initialized object의 activation은 특별한 경우입니다. 해당 address의 tracked object가 없으면 `ODEBUG_STATE_NOTAVAILABLE`로 `fixup_activate()`를 호출합니다.

Fixup은 합법적인 static initialization인지 확인하고, 맞다면 `debug_object_init()`과 `debug_object_activate()`를 호출해 tracker에 등록하고 active로 표시합니다. 이는 실제 fixup이 아니므로 false를 반환해야 합니다.

fixup_destroy

256-268

`debug_object_destroy`에서 문제를 발견하면 debug code가 `fixup_destroy`를 호출합니다.

다음 state에서 호출됩니다.

  • ODEBUG_STATE_ACTIVE

Fixup에 성공하면 true, 아니면 false를 반환하며 이 값으로 statistics를 갱신합니다.

fixup_free

269-284

`debug_object_free`에서 문제를 발견하면 `fixup_free`를 호출합니다. `kfree`/`vfree`의 `debug_check_no_obj_freed()` sanity check가 active object를 발견했을 때도 호출할 수 있습니다.

다음 state에서 호출됩니다.

  • ODEBUG_STATE_ACTIVE

Fixup에 성공하면 true, 아니면 false를 반환하며 이 값으로 statistics를 갱신합니다.

fixup_assert_init

285-306

`debug_object_assert_init`에서 문제를 발견하면 debug code가 `fixup_assert_init`을 호출합니다.

Object를 debug bucket에서 찾지 못한 경우 hardcoded state `ODEBUG_STATE_NOTAVAILABLE`과 함께 호출합니다. 성공하면 true, 아니면 false를 반환하여 statistics를 갱신합니다.

Return 전에 `debug_object_init()`이 호출되도록 보장해야 합니다.

Statically initialized object는 특별한 경우입니다. 합법적인 static initialization인지 검사하고, 맞다면 `debug_object_init()`만 호출해 tracker에 알립니다. 실제 fixup이 아니므로 false를 반환해야 합니다.

Known Bugs And Assumptions

307-310

알려진 bug나 별도의 assumption은 없습니다. 원문 표현으로는 "knock on wood"입니다.