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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/debug.h
  3.  *   S/390 debug facility
  4.  *
  5.  *    Copyright (C) 1999, 2000 IBM Deutschland Entwicklung GmbH,
  6.  *                             IBM Corporation
  7.  */
  8. #ifndef DEBUG_H
  9. #define DEBUG_H
  10. /* Note:
  11.  * struct __debug_entry must be defined outside of #ifdef __KERNEL__ 
  12.  * in order to allow a user program to analyze the 'raw'-view.
  13.  */
  14. struct __debug_entry{
  15.         union {
  16.                 struct {
  17.                         unsigned long long clock:52;
  18.                         unsigned long long exception:1;
  19.                         unsigned long long level:3;
  20.                         unsigned long long cpuid:8;
  21.                 } fields;
  22.                 unsigned long long stck;
  23.         } id;
  24.         void* caller;
  25. } __attribute__((packed));
  26. #define __DEBUG_FEATURE_VERSION      1  /* version of debug feature */
  27. #ifdef __KERNEL__
  28. #include <linux/version.h>
  29. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0))
  30.  #include <asm/spinlock.h>
  31. #else
  32.  #include <linux/spinlock.h>
  33. #endif /* LINUX_VERSION_CODE */
  34. #include <linux/kernel.h>
  35. #include <linux/time.h>
  36. #include <linux/proc_fs.h>
  37. #define DEBUG_MAX_LEVEL            6  /* debug levels range from 0 to 6 */
  38. #define DEBUG_OFF_LEVEL            -1 /* level where debug is switched off */
  39. #define DEBUG_FLUSH_ALL            -1 /* parameter to flush all areas */
  40. #define DEBUG_MAX_VIEWS            10 /* max number of views in proc fs */
  41. #define DEBUG_MAX_PROCF_LEN        16 /* max length for a proc file name */
  42. #define DEBUG_DEFAULT_LEVEL        3  /* initial debug level */
  43. #define DEBUG_DIR_ROOT "s390dbf" /* name of debug root directory in proc fs */
  44. #define DEBUG_DATA(entry) (char*)(entry + 1) /* data is stored behind */
  45.                                              /* the entry information */
  46. #define STCK(x) asm volatile ("STCK 0(%0)" : : "a" (&(x)) : "memory", "cc")
  47. typedef struct __debug_entry debug_entry_t;
  48. struct debug_view;
  49. typedef struct debug_info {
  50. struct debug_info* next;
  51. struct debug_info* prev;
  52. atomic_t ref_count;
  53. spinlock_t lock;
  54. int level;
  55. int nr_areas;
  56. int page_order;
  57. int buf_size;
  58. int entry_size;
  59. debug_entry_t** areas;
  60. int active_area;
  61. int *active_entry;
  62. struct proc_dir_entry* proc_root_entry;
  63. struct proc_dir_entry* proc_entries[DEBUG_MAX_VIEWS];
  64. struct debug_view* views[DEBUG_MAX_VIEWS];
  65. char name[DEBUG_MAX_PROCF_LEN];
  66. } debug_info_t;
  67. typedef int (debug_header_proc_t) (debug_info_t* id,
  68.    struct debug_view* view,
  69.    int area,
  70.    debug_entry_t* entry,
  71.    char* out_buf);
  72. typedef int (debug_format_proc_t) (debug_info_t* id,
  73.    struct debug_view* view, char* out_buf,
  74.    const char* in_buf);
  75. typedef int (debug_prolog_proc_t) (debug_info_t* id,
  76.    struct debug_view* view,
  77.    char* out_buf);
  78. typedef int (debug_input_proc_t) (debug_info_t* id,
  79.   struct debug_view* view,
  80.   struct file* file, const char* user_buf,
  81.   size_t in_buf_size, loff_t* offset);
  82. int debug_dflt_header_fn(debug_info_t* id, struct debug_view* view,
  83.          int area, debug_entry_t* entry, char* out_buf);
  84. struct debug_view {
  85. char name[DEBUG_MAX_PROCF_LEN];
  86. debug_prolog_proc_t* prolog_proc;
  87. debug_header_proc_t* header_proc;
  88. debug_format_proc_t* format_proc;
  89. debug_input_proc_t*  input_proc;
  90. void*                private_data;
  91. };
  92. extern struct debug_view debug_hex_ascii_view;
  93. extern struct debug_view debug_raw_view;
  94. extern struct debug_view debug_sprintf_view;
  95. /* do NOT use the _common functions */
  96. debug_entry_t* debug_event_common(debug_info_t* id, int level, 
  97.                                   const void* data, int length);
  98. debug_entry_t* debug_exception_common(debug_info_t* id, int level, 
  99.                                       const void* data, int length);
  100. /* Debug Feature API: */
  101. debug_info_t* debug_register(char* name, int pages_index, int nr_areas,
  102.                              int buf_size);
  103. void debug_unregister(debug_info_t* id);
  104. void debug_set_level(debug_info_t* id, int new_level);
  105. extern inline debug_entry_t* 
  106. debug_event(debug_info_t* id, int level, void* data, int length)
  107. {
  108. if ((!id) || (level > id->level)) return NULL;
  109.         return debug_event_common(id,level,data,length);
  110. }
  111. extern inline debug_entry_t* 
  112. debug_int_event(debug_info_t* id, int level, unsigned int tag)
  113. {
  114.         unsigned int t=tag;
  115. if ((!id) || (level > id->level)) return NULL;
  116.         return debug_event_common(id,level,&t,sizeof(unsigned int));
  117. }
  118. extern inline debug_entry_t *
  119. debug_long_event (debug_info_t* id, int level, unsigned long tag)
  120. {
  121.         unsigned long t=tag;
  122. if ((!id) || (level > id->level)) return NULL;
  123.         return debug_event_common(id,level,&t,sizeof(unsigned long));
  124. }
  125. extern inline debug_entry_t* 
  126. debug_text_event(debug_info_t* id, int level, const char* txt)
  127. {
  128. if ((!id) || (level > id->level)) return NULL;
  129.         return debug_event_common(id,level,txt,strlen(txt));
  130. }
  131. extern debug_entry_t *
  132. debug_sprintf_event(debug_info_t* id,int level,char *string,...);
  133. extern inline debug_entry_t* 
  134. debug_exception(debug_info_t* id, int level, void* data, int length)
  135. {
  136. if ((!id) || (level > id->level)) return NULL;
  137.         return debug_exception_common(id,level,data,length);
  138. }
  139. extern inline debug_entry_t* 
  140. debug_int_exception(debug_info_t* id, int level, unsigned int tag)
  141. {
  142.         unsigned int t=tag;
  143. if ((!id) || (level > id->level)) return NULL;
  144.         return debug_exception_common(id,level,&t,sizeof(unsigned int));
  145. }
  146. extern inline debug_entry_t * 
  147. debug_long_exception (debug_info_t* id, int level, unsigned long tag)
  148. {
  149.         unsigned long t=tag;
  150. if ((!id) || (level > id->level)) return NULL;
  151.         return debug_exception_common(id,level,&t,sizeof(unsigned long));
  152. }
  153. extern inline debug_entry_t* 
  154. debug_text_exception(debug_info_t* id, int level, const char* txt)
  155. {
  156. if ((!id) || (level > id->level)) return NULL;
  157.         return debug_exception_common(id,level,txt,strlen(txt));
  158. }
  159. extern debug_entry_t *
  160. debug_sprintf_exception(debug_info_t* id,int level,char *string,...);
  161. int debug_register_view(debug_info_t* id, struct debug_view* view);
  162. int debug_unregister_view(debug_info_t* id, struct debug_view* view);
  163. /*
  164.    define the debug levels:
  165.    - 0 No debugging output to console or syslog
  166.    - 1 Log internal errors to syslog, ignore check conditions 
  167.    - 2 Log internal errors and check conditions to syslog
  168.    - 3 Log internal errors to console, log check conditions to syslog
  169.    - 4 Log internal errors and check conditions to console
  170.    - 5 panic on internal errors, log check conditions to console
  171.    - 6 panic on both, internal errors and check conditions
  172.  */
  173. #ifndef DEBUG_LEVEL
  174. #define DEBUG_LEVEL 4
  175. #endif
  176. #define INTERNAL_ERRMSG(x,y...) "E" __FILE__ "%d: " x, __LINE__, y
  177. #define INTERNAL_WRNMSG(x,y...) "W" __FILE__ "%d: " x, __LINE__, y
  178. #define INTERNAL_INFMSG(x,y...) "I" __FILE__ "%d: " x, __LINE__, y
  179. #define INTERNAL_DEBMSG(x,y...) "D" __FILE__ "%d: " x, __LINE__, y
  180. #if DEBUG_LEVEL > 0
  181. #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  182. #define PRINT_INFO(x...) printk ( KERN_INFO PRINTK_HEADER x )
  183. #define PRINT_WARN(x...) printk ( KERN_WARNING PRINTK_HEADER x )
  184. #define PRINT_ERR(x...) printk ( KERN_ERR PRINTK_HEADER x )
  185. #define PRINT_FATAL(x...) panic ( PRINTK_HEADER x )
  186. #else
  187. #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  188. #define PRINT_INFO(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  189. #define PRINT_WARN(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  190. #define PRINT_ERR(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  191. #define PRINT_FATAL(x...) printk ( KERN_DEBUG PRINTK_HEADER x )
  192. #endif /* DASD_DEBUG */
  193. #if DASD_DEBUG > 4
  194. #define INTERNAL_ERROR(x...) PRINT_FATAL ( INTERNAL_ERRMSG ( x ) )
  195. #elif DASD_DEBUG > 2
  196. #define INTERNAL_ERROR(x...) PRINT_ERR ( INTERNAL_ERRMSG ( x ) )
  197. #elif DASD_DEBUG > 0
  198. #define INTERNAL_ERROR(x...) PRINT_WARN ( INTERNAL_ERRMSG ( x ) )
  199. #else
  200. #define INTERNAL_ERROR(x...)
  201. #endif /* DASD_DEBUG */
  202. #if DASD_DEBUG > 5
  203. #define INTERNAL_CHECK(x...) PRINT_FATAL ( INTERNAL_CHKMSG ( x ) )
  204. #elif DASD_DEBUG > 3
  205. #define INTERNAL_CHECK(x...) PRINT_ERR ( INTERNAL_CHKMSG ( x ) )
  206. #elif DASD_DEBUG > 1
  207. #define INTERNAL_CHECK(x...) PRINT_WARN ( INTERNAL_CHKMSG ( x ) )
  208. #else
  209. #define INTERNAL_CHECK(x...)
  210. #endif /* DASD_DEBUG */
  211. #undef DEBUG_MALLOC
  212. #ifdef DEBUG_MALLOC
  213. void *b;
  214. #define kmalloc(x...) (PRINT_INFO(" kmalloc %pn",b=kmalloc(x)),b)
  215. #define kfree(x) PRINT_INFO(" kfree %pn",x);kfree(x)
  216. #define get_free_page(x...) (PRINT_INFO(" gfp %pn",b=get_free_page(x)),b)
  217. #define __get_free_pages(x...) (PRINT_INFO(" gfps %pn",b=__get_free_pages(x)),b)
  218. #endif /* DEBUG_MALLOC */
  219. #endif /* __KERNEL__ */
  220. #endif /* DEBUG_H */