Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * S/390 debug facility |
| 3 | * |
Heiko Carstens | a53c8fa | 2012-07-20 11:15:04 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 1999, 2000 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #ifndef DEBUG_H |
| 7 | #define DEBUG_H |
| 8 | |
David Woodhouse | 124b51c | 2006-09-16 12:15:46 -0700 | [diff] [blame] | 9 | #include <linux/string.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/spinlock.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/time.h> |
David Howells | 9807f75 | 2012-10-09 09:47:31 +0100 | [diff] [blame] | 13 | #include <uapi/asm/debug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #define DEBUG_MAX_LEVEL 6 /* debug levels range from 0 to 6 */ |
| 16 | #define DEBUG_OFF_LEVEL -1 /* level where debug is switched off */ |
| 17 | #define DEBUG_FLUSH_ALL -1 /* parameter to flush all areas */ |
| 18 | #define DEBUG_MAX_VIEWS 10 /* max number of views in proc fs */ |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 19 | #define DEBUG_MAX_NAME_LEN 64 /* max length for a debugfs file name */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define DEBUG_DEFAULT_LEVEL 3 /* initial debug level */ |
| 21 | |
| 22 | #define DEBUG_DIR_ROOT "s390dbf" /* name of debug root directory in proc fs */ |
| 23 | |
| 24 | #define DEBUG_DATA(entry) (char*)(entry + 1) /* data is stored behind */ |
| 25 | /* the entry information */ |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | typedef struct __debug_entry debug_entry_t; |
| 28 | |
| 29 | struct debug_view; |
| 30 | |
| 31 | typedef struct debug_info { |
| 32 | struct debug_info* next; |
| 33 | struct debug_info* prev; |
| 34 | atomic_t ref_count; |
| 35 | spinlock_t lock; |
| 36 | int level; |
| 37 | int nr_areas; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 38 | int pages_per_area; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | int buf_size; |
| 40 | int entry_size; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 41 | debug_entry_t*** areas; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | int active_area; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 43 | int *active_pages; |
| 44 | int *active_entries; |
| 45 | struct dentry* debugfs_root_entry; |
| 46 | struct dentry* debugfs_entries[DEBUG_MAX_VIEWS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | struct debug_view* views[DEBUG_MAX_VIEWS]; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 48 | char name[DEBUG_MAX_NAME_LEN]; |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 49 | umode_t mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | } debug_info_t; |
| 51 | |
| 52 | typedef int (debug_header_proc_t) (debug_info_t* id, |
| 53 | struct debug_view* view, |
| 54 | int area, |
| 55 | debug_entry_t* entry, |
| 56 | char* out_buf); |
| 57 | |
| 58 | typedef int (debug_format_proc_t) (debug_info_t* id, |
| 59 | struct debug_view* view, char* out_buf, |
| 60 | const char* in_buf); |
| 61 | typedef int (debug_prolog_proc_t) (debug_info_t* id, |
| 62 | struct debug_view* view, |
| 63 | char* out_buf); |
| 64 | typedef int (debug_input_proc_t) (debug_info_t* id, |
| 65 | struct debug_view* view, |
| 66 | struct file* file, |
| 67 | const char __user *user_buf, |
| 68 | size_t in_buf_size, loff_t* offset); |
| 69 | |
| 70 | int debug_dflt_header_fn(debug_info_t* id, struct debug_view* view, |
| 71 | int area, debug_entry_t* entry, char* out_buf); |
| 72 | |
| 73 | struct debug_view { |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 74 | char name[DEBUG_MAX_NAME_LEN]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | debug_prolog_proc_t* prolog_proc; |
| 76 | debug_header_proc_t* header_proc; |
| 77 | debug_format_proc_t* format_proc; |
| 78 | debug_input_proc_t* input_proc; |
| 79 | void* private_data; |
| 80 | }; |
| 81 | |
| 82 | extern struct debug_view debug_hex_ascii_view; |
| 83 | extern struct debug_view debug_raw_view; |
| 84 | extern struct debug_view debug_sprintf_view; |
| 85 | |
| 86 | /* do NOT use the _common functions */ |
| 87 | |
| 88 | debug_entry_t* debug_event_common(debug_info_t* id, int level, |
| 89 | const void* data, int length); |
| 90 | |
| 91 | debug_entry_t* debug_exception_common(debug_info_t* id, int level, |
| 92 | const void* data, int length); |
| 93 | |
| 94 | /* Debug Feature API: */ |
| 95 | |
Cornelia Huck | 5cbbf16 | 2008-05-15 16:52:35 +0200 | [diff] [blame] | 96 | debug_info_t *debug_register(const char *name, int pages, int nr_areas, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | int buf_size); |
| 98 | |
Cornelia Huck | 5cbbf16 | 2008-05-15 16:52:35 +0200 | [diff] [blame] | 99 | debug_info_t *debug_register_mode(const char *name, int pages, int nr_areas, |
Al Viro | f4ae40a | 2011-07-24 04:33:43 -0400 | [diff] [blame] | 100 | int buf_size, umode_t mode, uid_t uid, |
Michael Holzheu | 9637c3f | 2008-04-17 07:46:18 +0200 | [diff] [blame] | 101 | gid_t gid); |
| 102 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | void debug_unregister(debug_info_t* id); |
| 104 | |
| 105 | void debug_set_level(debug_info_t* id, int new_level); |
| 106 | |
Michael Holzheu | 3ab121a | 2012-03-11 11:59:32 -0400 | [diff] [blame] | 107 | void debug_set_critical(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | void debug_stop_all(void); |
| 109 | |
Hendrik Brueckner | f1d86b6 | 2013-09-18 17:21:34 +0200 | [diff] [blame] | 110 | static inline bool debug_level_enabled(debug_info_t* id, int level) |
| 111 | { |
| 112 | return level <= id->level; |
| 113 | } |
| 114 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 115 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | debug_event(debug_info_t* id, int level, void* data, int length) |
| 117 | { |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 118 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 119 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return debug_event_common(id,level,data,length); |
| 121 | } |
| 122 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 123 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | debug_int_event(debug_info_t* id, int level, unsigned int tag) |
| 125 | { |
| 126 | unsigned int t=tag; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 127 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 128 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | return debug_event_common(id,level,&t,sizeof(unsigned int)); |
| 130 | } |
| 131 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 132 | static inline debug_entry_t * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | debug_long_event (debug_info_t* id, int level, unsigned long tag) |
| 134 | { |
| 135 | unsigned long t=tag; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 136 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 137 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | return debug_event_common(id,level,&t,sizeof(unsigned long)); |
| 139 | } |
| 140 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 141 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | debug_text_event(debug_info_t* id, int level, const char* txt) |
| 143 | { |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 144 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 145 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | return debug_event_common(id,level,txt,strlen(txt)); |
| 147 | } |
| 148 | |
Michael Holzheu | f64d04c | 2009-09-11 10:28:59 +0200 | [diff] [blame] | 149 | /* |
| 150 | * IMPORTANT: Use "%s" in sprintf format strings with care! Only pointers are |
| 151 | * stored in the s390dbf. See Documentation/s390/s390dbf.txt for more details! |
| 152 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | extern debug_entry_t * |
| 154 | debug_sprintf_event(debug_info_t* id,int level,char *string,...) |
| 155 | __attribute__ ((format(printf, 3, 4))); |
| 156 | |
| 157 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 158 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | debug_exception(debug_info_t* id, int level, void* data, int length) |
| 160 | { |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 161 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 162 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | return debug_exception_common(id,level,data,length); |
| 164 | } |
| 165 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 166 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | debug_int_exception(debug_info_t* id, int level, unsigned int tag) |
| 168 | { |
| 169 | unsigned int t=tag; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 170 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 171 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return debug_exception_common(id,level,&t,sizeof(unsigned int)); |
| 173 | } |
| 174 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 175 | static inline debug_entry_t * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | debug_long_exception (debug_info_t* id, int level, unsigned long tag) |
| 177 | { |
| 178 | unsigned long t=tag; |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 179 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 180 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | return debug_exception_common(id,level,&t,sizeof(unsigned long)); |
| 182 | } |
| 183 | |
Adrian Bunk | 4448aaf | 2005-11-08 21:34:42 -0800 | [diff] [blame] | 184 | static inline debug_entry_t* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | debug_text_exception(debug_info_t* id, int level, const char* txt) |
| 186 | { |
Michael Holzheu | 66a464d | 2005-06-25 14:55:33 -0700 | [diff] [blame] | 187 | if ((!id) || (level > id->level) || (id->pages_per_area == 0)) |
| 188 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | return debug_exception_common(id,level,txt,strlen(txt)); |
| 190 | } |
| 191 | |
Michael Holzheu | f64d04c | 2009-09-11 10:28:59 +0200 | [diff] [blame] | 192 | /* |
| 193 | * IMPORTANT: Use "%s" in sprintf format strings with care! Only pointers are |
| 194 | * stored in the s390dbf. See Documentation/s390/s390dbf.txt for more details! |
| 195 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | extern debug_entry_t * |
| 197 | debug_sprintf_exception(debug_info_t* id,int level,char *string,...) |
| 198 | __attribute__ ((format(printf, 3, 4))); |
| 199 | |
| 200 | int debug_register_view(debug_info_t* id, struct debug_view* view); |
| 201 | int debug_unregister_view(debug_info_t* id, struct debug_view* view); |
| 202 | |
| 203 | /* |
| 204 | define the debug levels: |
| 205 | - 0 No debugging output to console or syslog |
| 206 | - 1 Log internal errors to syslog, ignore check conditions |
| 207 | - 2 Log internal errors and check conditions to syslog |
| 208 | - 3 Log internal errors to console, log check conditions to syslog |
| 209 | - 4 Log internal errors and check conditions to console |
| 210 | - 5 panic on internal errors, log check conditions to console |
| 211 | - 6 panic on both, internal errors and check conditions |
| 212 | */ |
| 213 | |
| 214 | #ifndef DEBUG_LEVEL |
| 215 | #define DEBUG_LEVEL 4 |
| 216 | #endif |
| 217 | |
| 218 | #define INTERNAL_ERRMSG(x,y...) "E" __FILE__ "%d: " x, __LINE__, y |
| 219 | #define INTERNAL_WRNMSG(x,y...) "W" __FILE__ "%d: " x, __LINE__, y |
| 220 | #define INTERNAL_INFMSG(x,y...) "I" __FILE__ "%d: " x, __LINE__, y |
| 221 | #define INTERNAL_DEBMSG(x,y...) "D" __FILE__ "%d: " x, __LINE__, y |
| 222 | |
| 223 | #if DEBUG_LEVEL > 0 |
| 224 | #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 225 | #define PRINT_INFO(x...) printk ( KERN_INFO PRINTK_HEADER x ) |
| 226 | #define PRINT_WARN(x...) printk ( KERN_WARNING PRINTK_HEADER x ) |
| 227 | #define PRINT_ERR(x...) printk ( KERN_ERR PRINTK_HEADER x ) |
| 228 | #define PRINT_FATAL(x...) panic ( PRINTK_HEADER x ) |
| 229 | #else |
| 230 | #define PRINT_DEBUG(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 231 | #define PRINT_INFO(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 232 | #define PRINT_WARN(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 233 | #define PRINT_ERR(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 234 | #define PRINT_FATAL(x...) printk ( KERN_DEBUG PRINTK_HEADER x ) |
| 235 | #endif /* DASD_DEBUG */ |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | #endif /* DEBUG_H */ |