s390dbf.txt
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. S390 Debug Feature
  2. ==================
  3. files: arch/s390/kernel/debug.c
  4.        include/asm-s390/debug.h
  5. Description:
  6. ------------
  7. The goal of this feature is to provide a kernel debug logging API 
  8. where log records can be stored efficiently in memory, where each component 
  9. (e.g. device drivers) can have one seperate debug log.
  10. One purpose of this is to inspect the debug logs after a production system crash
  11. in order to analyze the reason for the crash.
  12. If the system still runs but only a subcomponent which uses dbf failes,
  13. it is possible to look at the debug logs on a live system via the Linux proc
  14. filesystem.
  15. The debug feature may also very usefull for kernel and driver development.
  16. Design:
  17. -------
  18. Kernel components (e.g. device drivers) can register themselves at the debug 
  19. feature with the function call debug_register(). This function initializes a 
  20. debug log for the caller. For each debug log exists a number of debug areas 
  21. where exactly one is active at one time.  Each debug area consists of contiguous
  22. pages in memory. In the debug areas there are stored debug entries (log records)
  23. which are written by event- and exception-calls. 
  24. An event-call writes the specified debug entry to the active debug
  25. area and updates the log pointer for the active area. If the end 
  26. of the active debug area is reached, a wrap around is done (ring buffer) 
  27. and the next debug entry will be written at the beginning of the active 
  28. debug area.
  29. An exception-call writes the specified debug entry to the log and
  30. switches to the next debug area. This is done in order to be sure
  31. that the records which describe the origin of the exception are not
  32. overwritten when a wrap around for the current area occurs.
  33. The debug areas itselve are also ordered in form of a ring buffer. 
  34. When an exception is thrown in the last debug area, the following debug 
  35. entries are then written again in the very first area.
  36. There are three versions for the event- and exception-calls: One for
  37. logging raw data, one for text and one for numbers.
  38. Each debug entry contains the following data:
  39. - Timestamp
  40. - Cpu-Number of calling task
  41. - Level of debug entry (0...6)
  42. - Return Address to caller
  43. - Flag, if entry is an exception or not
  44. The debug logs can be inspected in a live system through entries in
  45. the proc-filesystem. Under the path /proc/s390dbf there is 
  46. a directory for each registered component, which is named like the
  47. corresponding component.
  48. The content of the directories are files which represent different views
  49. to the debug log. Each component can decide which views should be
  50. used through registering them with the function debug_register_view().
  51. Predefined views for hex/ascii, sprintf and raw binary data are provided.
  52. It is also possible to define other views. The content of
  53. a view can be inspected simply by reading the corresponding proc file.
  54. All debug logs have an an actual debug level (range from 0 to 6).
  55. The default level is 3. Event and Exception functions have a 'level'
  56. parameter. Only debug entries with a level that is lower or equal
  57. than the actual level are written to the log. This means that high 
  58. priority log entries should have a low level value whereas low priority
  59. entries should have a high one. 
  60. The actual debug level can be changed with the help of the proc-filesystem 
  61. through writing a number string "x" to the 'level' proc file which is
  62. provided for every debug log. Debugging can be switched off completely
  63. by using "-" on the 'level' proc file.
  64. Example:
  65. > echo "-" > /proc/s390dbf/dasd/level
  66. Kernel Interfaces:
  67. ------------------
  68. ----------------------------------------------------------------------------
  69. debug_info_t *debug_register(char *name, int pages_index, int nr_areas,
  70.                              int buf_size);
  71. Parameter:    name:        Name of debug log (e.g. used for proc entry) 
  72.               pages_index: 2^pages_index pages will be allocated per area
  73.               nr_areas:    number of debug areas
  74.               buf_size:    size of data area in each debug entry
  75. Return Value: Handle for generated debug area   
  76.               NULL if register failed 
  77. Description:  Allocates memory for a debug log     
  78.               Must not be called within an interrupt handler 
  79. ---------------------------------------------------------------------------
  80. void debug_unregister (debug_info_t * id);
  81. Parameter:     id:   handle for debug log  
  82. Return Value:  none 
  83. Description:   frees memory for a debug log     
  84.                Must not be called within an interrupt handler 
  85. ---------------------------------------------------------------------------
  86. void debug_set_level (debug_info_t * id, int new_level);
  87. Parameter:     id:        handle for debug log  
  88.                new_level: new debug level 
  89. Return Value:  none 
  90. Description:   Sets new actual debug level if new_level is valid. 
  91. ---------------------------------------------------------------------------
  92. debug_entry_t* debug_event (debug_info_t* id, int level, void* data, 
  93.                             int length);
  94. Parameter:     id:     handle for debug log  
  95.                level:  debug level           
  96.                data:   pointer to data for debug entry  
  97.                length: length of data in bytes       
  98. Return Value:  Address of written debug entry 
  99. Description:   writes debug entry to active debug area (if level <= actual 
  100.                debug level)    
  101. ---------------------------------------------------------------------------
  102. debug_entry_t* debug_int_event (debug_info_t * id, int level, 
  103.                                 unsigned int data);
  104. debug_entry_t* debug_long_event(debug_info_t * id, int level,
  105.                                 unsigned long data);
  106. Parameter:     id:     handle for debug log  
  107.                level:  debug level           
  108.                data:   integer value for debug entry           
  109. Return Value:  Address of written debug entry 
  110. Description:   writes debug entry to active debug area (if level <= actual 
  111.                debug level)    
  112. ---------------------------------------------------------------------------
  113. debug_entry_t* debug_text_event (debug_info_t * id, int level, 
  114.                                  const char* data);
  115. Parameter:     id:     handle for debug log  
  116.                level:  debug level           
  117.                data:   string for debug entry  
  118. Return Value:  Address of written debug entry 
  119. Description:   writes debug entry in ascii format to active debug area 
  120.                (if level <= actual debug level)     
  121. ---------------------------------------------------------------------------
  122. debug_entry_t* debug_sprintf_event (debug_info_t * id, int level, 
  123.                                     char* string,...);
  124. Parameter:     id:    handle for debug log 
  125.                level: debug level
  126.                string: format string for debug entry 
  127.                ...: varargs used as in sprintf()
  128. Return Value:  Address of written debug entry
  129. Description:   writes debug entry with format string and varargs (longs) to 
  130.                active debug area (if level $<=$ actual debug level). 
  131.                floats and long long datatypes cannot be used as varargs.
  132. ---------------------------------------------------------------------------
  133. debug_entry_t* debug_exception (debug_info_t* id, int level, void* data, 
  134.                                 int length);
  135. Parameter:     id:     handle for debug log  
  136.                level:  debug level           
  137.                data:   pointer to data for debug entry  
  138.                length: length of data in bytes       
  139. Return Value:  Address of written debug entry 
  140. Description:   writes debug entry to active debug area (if level <= actual 
  141.                debug level) and switches to next debug area  
  142. ---------------------------------------------------------------------------
  143. debug_entry_t* debug_int_exception (debug_info_t * id, int level, 
  144.                                     unsigned int data);
  145. debug_entry_t* debug_long_exception(debug_info_t * id, int level,
  146.                                     unsigned long data);
  147. Parameter:     id:     handle for debug log  
  148.                level:  debug level           
  149.                data:   integer value for debug entry           
  150. Return Value:  Address of written debug entry 
  151. Description:   writes debug entry to active debug area (if level <= actual 
  152.                debug level) and switches to next debug area  
  153. ---------------------------------------------------------------------------
  154. debug_entry_t* debug_text_exception (debug_info_t * id, int level, 
  155.                                      const char* data);
  156. Parameter:     id:     handle for debug log  
  157.                level:  debug level           
  158.                data:   string for debug entry  
  159. Return Value:  Address of written debug entry 
  160. Description:   writes debug entry in ascii format to active debug area 
  161.                (if level <= actual debug level) and switches to next debug 
  162.                area  
  163. ---------------------------------------------------------------------------
  164. debug_entry_t* debug_sprintf_exception (debug_info_t * id, int level,
  165.                                         char* string,...);
  166. Parameter:     id:    handle for debug log  
  167.                level: debug level  
  168.                string: format string for debug entry  
  169.                ...: varargs used as in sprintf()
  170. Return Value:  Address of written debug entry 
  171. Description:   writes debug entry with format string and varargs (longs) to 
  172.                active debug area (if level $<=$ actual debug level) and
  173.                switches to next debug area. 
  174.                floats and long long datatypes cannot be used as varargs.
  175. ---------------------------------------------------------------------------
  176. int debug_register_view (debug_info_t * id, struct debug_view *view);
  177. Parameter:     id:    handle for debug log  
  178.                view:  pointer to debug view struct 
  179. Return Value:  0  : ok 
  180.                < 0: Error 
  181. Description:   registers new debug view and creates proc dir entry 
  182. ---------------------------------------------------------------------------
  183. int debug_unregister_view (debug_info_t * id, struct debug_view *view); 
  184. Parameter:     id:    handle for debug log  
  185.                view:  pointer to debug view struct 
  186. Return Value:  0  : ok 
  187.                < 0: Error 
  188. Description:   unregisters debug view and removes proc dir entry 
  189. Predefined views:
  190. -----------------
  191. extern struct debug_view debug_hex_ascii_view;
  192. extern struct debug_view debug_raw_view;
  193. extern struct debug_view debug_sprintf_view;
  194. Examples
  195. --------
  196. /*
  197.  * hex_ascii- + raw-view Example
  198.  */
  199. #include <linux/module.h>
  200. #include <asm/debug.h>
  201. static debug_info_t* debug_info;
  202. int init_module(void)
  203. {
  204.     /* register 4 debug areas with one page each and 4 byte data field */
  205.     debug_info = debug_register ("test", 0, 4, 4 );
  206.     debug_register_view(debug_info,&debug_hex_ascii_view);
  207.     debug_register_view(debug_info,&debug_raw_view);
  208.     debug_text_event(debug_info, 4 , "one ");
  209.     debug_int_exception(debug_info, 4, 4711);
  210.     debug_event(debug_info, 3, &debug_info, 4);
  211.     return 0;
  212. }
  213. void cleanup_module(void)
  214. {
  215.     debug_unregister (debug_info);
  216. }
  217. ---------------------------------------------------------------------------
  218. /*
  219.  * sprintf-view Example
  220.  */
  221. #include <linux/module.h>
  222. #include <asm/debug.h>
  223. static debug_info_t* debug_info;
  224. int init_module(void)
  225. {
  226.     /* register 4 debug areas with one page each and data field for */
  227.     /* format string pointer + 2 varargs (= 3 * sizeof(long))       */
  228.     debug_info = debug_register ("test", 0, 4, sizeof(long) * 3);
  229.     debug_register_view(debug_info,&debug_sprintf_view);
  230.     debug_sprintf_event(debug_info, 2 , "first event in %s:%in",__FILE__,__LINE__);
  231.     debug_sprintf_exception(debug_info, 1, "pointer to debug info: %pn",&debug_info);
  232.     return 0;
  233. }
  234. void cleanup_module(void)
  235. {
  236.     debug_unregister (debug_info);
  237. }
  238. ProcFS Interface
  239. ----------------
  240. Views to the debug logs can be investigated through reading the corresponding 
  241. proc-files:
  242. Example:
  243. > ls /proc/s390dbf/dasd
  244. flush  hex_ascii  level      raw 
  245. > cat /proc/s390dbf/dasd/hex_ascii | sort +1
  246. 00 00974733272:680099 2 - 02 0006ad7e  07 ea 4a 90 | ....
  247. 00 00974733272:682210 2 - 02 0006ade6  46 52 45 45 | FREE
  248. 00 00974733272:682213 2 - 02 0006adf6  07 ea 4a 90 | ....
  249. 00 00974733272:682281 1 * 02 0006ab08  41 4c 4c 43 | EXCP 
  250. 01 00974733272:682284 2 - 02 0006ab16  45 43 4b 44 | ECKD
  251. 01 00974733272:682287 2 - 02 0006ab28  00 00 00 04 | ....
  252. 01 00974733272:682289 2 - 02 0006ab3e  00 00 00 20 | ... 
  253. 01 00974733272:682297 2 - 02 0006ad7e  07 ea 4a 90 | ....
  254. 01 00974733272:684384 2 - 00 0006ade6  46 52 45 45 | FREE
  255. 01 00974733272:684388 2 - 00 0006adf6  07 ea 4a 90 | ....
  256. See section about predefined views for explanation of the above output!
  257. Changing the debug level
  258. ------------------------
  259. Example:
  260. > cat /proc/s390dbf/dasd/level
  261. 3
  262. > echo "5" > /proc/s390dbf/dasd/level
  263. > cat /proc/s390dbf/dasd/level
  264. 5
  265. Flushing debug areas
  266. --------------------
  267. Debug areas can be flushed with piping the number of the desired
  268. area (0...n) to the proc file "flush". When using "-" all debug areas
  269. are flushed.
  270. Examples:
  271. 1. Flush debug area 0:
  272. > echo "0" > /proc/s390dbf/dasd/flush  
  273. 2. Flush all debug areas:
  274. > echo "-" > /proc/s390dbf/dasd/flush
  275. lcrash Interface
  276. ----------------
  277. It is planned that the dump analysis tool lcrash gets an additional command
  278. 's390dbf' to display all the debug logs. With this tool it will be possible 
  279. to investigate the debug logs on a live system and with a memory dump after 
  280. a system crash.
  281. Investigating raw memory
  282. ------------------------
  283. One last possibility to investigate the debug logs at a live
  284. system and after a system crash is to look at the raw memory
  285. under VM or at the Service Element.
  286. It is possible to find the anker of the debug-logs through
  287. the 'debug_area_first' symbol in the System map. Then one has
  288. to follow the correct pointers of the data-structures defined
  289. in debug.h and find the debug-areas in memory.
  290. Normally modules which use the debug feature will also have
  291. a global variable with the pointer to the debug-logs. Following
  292. this pointer it will also be possible to find the debug logs in
  293. memory.
  294. For this method it is recommended to use '16 * x + 4' byte (x = 0..n)
  295. for the length of the data field in debug_register() in
  296. order to see the debug entries well formatted.
  297. Predefined Views
  298. ----------------
  299. There are three predefined views: hex_ascii, raw and sprintf. 
  300. The hex_ascii view shows the data field in hex and ascii representation 
  301. (e.g. '45 43 4b 44 | ECKD'). 
  302. The raw view returns a bytestream as the debug areas are stored in memory.
  303. The sprintf view formats the debug entries in the same way as the sprintf
  304. function would do. The sprintf event/expection fuctions write to the 
  305. debug entry a pointer to the format string (size = sizeof(long)) 
  306. and for each vararg a long value. So e.g. for a debug entry with a format 
  307. string plus two varargs one would need to allocate a (3 * sizeof(long)) 
  308. byte data area in the debug_register() function.
  309. NOTE: If using the sprintf view do NOT use other event/exception functions
  310. than the sprintf-event and -exception functions.
  311. The format of the hex_ascii and sprintf view is as follows:
  312. - Number of area
  313. - Timestamp (formatted as seconds and microseconds since 00:00:00 Coordinated 
  314.   Universal Time (UTC), January 1, 1970)
  315. - level of debug entry
  316. - Exception flag (* = Exception)
  317. - Cpu-Number of calling task
  318. - Return Address to caller
  319. - data field
  320. The format of the raw view is:
  321. - Header as described in debug.h
  322. - datafield 
  323. A typical line of the hex_ascii view will look like the following (first line 
  324. is only for explanation and will not be displayed when 'cating' the view):
  325. area  time           level exception cpu caller    data (hex + ascii)
  326. --------------------------------------------------------------------------
  327. 00    00964419409:440690 1 -         00  88023fe   
  328. Defining views
  329. --------------
  330. Views are specified with the 'debug_view' structure. There are defined
  331. callback functions which are used for reading and writing the proc files:
  332. struct debug_view {
  333.         char name[DEBUG_MAX_PROCF_LEN];  
  334.         debug_prolog_proc_t* prolog_proc; 
  335.         debug_header_proc_t* header_proc;
  336.         debug_format_proc_t* format_proc;
  337.         debug_input_proc_t*  input_proc;
  338. void*                private_data;
  339. };
  340. where
  341. typedef int (debug_header_proc_t) (debug_info_t* id,
  342.                                    struct debug_view* view,
  343.                                    int area,
  344.                                    debug_entry_t* entry,
  345.                                    char* out_buf);
  346. typedef int (debug_format_proc_t) (debug_info_t* id,
  347.                                    struct debug_view* view, char* out_buf,
  348.                                    const char* in_buf);
  349. typedef int (debug_prolog_proc_t) (debug_info_t* id,
  350.                                    struct debug_view* view,
  351.                                    char* out_buf);
  352. typedef int (debug_input_proc_t) (debug_info_t* id,
  353.                                   struct debug_view* view,
  354.                                   struct file* file, const char* user_buf,
  355.                                   size_t in_buf_size, loff_t* offset);
  356. The "private_data" member can be used as pointer to view specific data.
  357. It is not used by the debug feature itself.
  358. The output when reading a debug-proc file is structured like this:
  359. "prolog_proc output"
  360. "header_proc output 1"  "format_proc output 1"
  361. "header_proc output 2"  "format_proc output 2"
  362. "header_proc output 3"  "format_proc output 3"
  363. ...
  364. When a view is read from the proc fs, the Debug Feature calls the 
  365. 'prolog_proc' once for writing the prolog.
  366. Then 'header_proc' and 'format_proc' are called for each 
  367. existing debug entry.
  368. The input_proc can be used to implement functionality when it is written to 
  369. the view (e.g. like with 'echo "0" > /proc/s390dbf/dasd/level).
  370. For header_proc there can be used the default function
  371. debug_dflt_header_fn() which is defined in in debug.h.
  372. and which produces the same header output as the predefined views.
  373. E.g:
  374. 00 00964419409:440761 2 - 00 88023ec
  375. In order to see how to use the callback functions check the implementation
  376. of the default views!
  377. Example
  378. #include <asm/debug.h>
  379. #define UNKNOWNSTR "data: %08x"
  380. const char* messages[] =
  381. {"This error...........n",
  382.  "That error...........n",
  383.  "Problem..............n",
  384.  "Something went wrong.n",
  385.  "Everything ok........n",
  386.  NULL
  387. };
  388. static int debug_test_format_fn(
  389.    debug_info_t * id, struct debug_view *view, 
  390.    char *out_buf, const char *in_buf
  391. )
  392. {
  393.   int i, rc = 0;
  394.   if(id->buf_size >= 4) {
  395.      int msg_nr = *((int*)in_buf);
  396.      if(msg_nr < sizeof(messages)/sizeof(char*) - 1)
  397.         rc += sprintf(out_buf, "%s", messages[msg_nr]);
  398.      else
  399.         rc += sprintf(out_buf, UNKNOWNSTR, msg_nr);
  400.   }
  401.  out:
  402.    return rc;
  403. }
  404. struct debug_view debug_test_view = {
  405.   "myview",                 /* name of view */
  406.   NULL,                     /* no prolog */
  407.   &debug_dflt_header_fn,    /* default header for each entry */
  408.   &debug_test_format_fn,    /* our own format function */
  409.   NULL,                     /* no input function */
  410.   NULL                      /* no private data */
  411. };
  412. =====
  413. test:
  414. =====
  415. debug_info_t *debug_info;
  416. ...
  417. debug_info = debug_register ("test", 0, 4, 4 ));
  418. debug_register_view(debug_info, &debug_test_view);
  419. for(i = 0; i < 10; i ++) debug_int_event(debug_info, 1, i);
  420. > cat /proc/s390dbf/test/myview
  421. 00 00964419734:611402 1 - 00 88042ca   This error...........
  422. 00 00964419734:611405 1 - 00 88042ca   That error...........
  423. 00 00964419734:611408 1 - 00 88042ca   Problem..............
  424. 00 00964419734:611411 1 - 00 88042ca   Something went wrong.
  425. 00 00964419734:611414 1 - 00 88042ca   Everything ok........
  426. 00 00964419734:611417 1 - 00 88042ca   data: 00000005
  427. 00 00964419734:611419 1 - 00 88042ca   data: 00000006
  428. 00 00964419734:611422 1 - 00 88042ca   data: 00000007
  429. 00 00964419734:611425 1 - 00 88042ca   data: 00000008
  430. 00 00964419734:611428 1 - 00 88042ca   data: 00000009