Whamcloud - gitweb
* landed unified portals (b_hd_cleanup_merge_singleportals) on HEAD
[fs/lustre-release.git] / lustre / portals / include / linux / libcfs.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4 #ifndef _LIBCFS_H
5 #define _LIBCFS_H
6
7 #ifdef HAVE_ASM_TYPES_H
8 #include <asm/types.h>
9 #else
10 #include "types.h"
11 #endif
12
13 #ifdef __KERNEL__
14 # include <linux/time.h>
15 # include <asm/timex.h>
16 #else
17 # include <sys/time.h>
18 # define do_gettimeofday(tv) gettimeofday(tv, NULL);
19 typedef unsigned long long cycles_t;
20 #endif
21
22 #define PORTAL_DEBUG
23
24 #ifndef offsetof
25 # define offsetof(typ,memb)     ((unsigned long)((char *)&(((typ *)0)->memb)))
26 #endif
27
28 #define LOWEST_BIT_SET(x)       ((x) & ~((x) - 1))
29
30 #ifndef __KERNEL__
31 /* Userpace byte flipping */
32 # include <endian.h>
33 # include <byteswap.h>
34 # define __swab16(x) bswap_16(x)
35 # define __swab32(x) bswap_32(x)
36 # define __swab64(x) bswap_64(x)
37 # define __swab16s(x) do {*(x) = bswap_16(*(x));} while (0)
38 # define __swab32s(x) do {*(x) = bswap_32(*(x));} while (0)
39 # define __swab64s(x) do {*(x) = bswap_64(*(x));} while (0)
40 # if __BYTE_ORDER == __LITTLE_ENDIAN
41 #  define le16_to_cpu(x) (x)
42 #  define cpu_to_le16(x) (x)
43 #  define le32_to_cpu(x) (x)
44 #  define cpu_to_le32(x) (x)
45 #  define le64_to_cpu(x) (x)
46 #  define cpu_to_le64(x) (x)
47 # else
48 #  if __BYTE_ORDER == __BIG_ENDIAN
49 #   define le16_to_cpu(x) bswap_16(x)
50 #   define cpu_to_le16(x) bswap_16(x)
51 #   define le32_to_cpu(x) bswap_32(x)
52 #   define cpu_to_le32(x) bswap_32(x)
53 #   define le64_to_cpu(x) bswap_64(x)
54 #   define cpu_to_le64(x) bswap_64(x)
55 #  else
56 #   error "Unknown byte order"
57 #  endif /* __BIG_ENDIAN */
58 # endif /* __LITTLE_ENDIAN */
59 #endif /* ! __KERNEL__ */
60
61 /*
62  *  Debugging
63  */
64 extern unsigned int portal_subsystem_debug;
65 extern unsigned int portal_stack;
66 extern unsigned int portal_debug;
67 extern unsigned int portal_printk;
68
69 struct ptldebug_header {
70         __u32 ph_len;
71         __u32 ph_flags;
72         __u32 ph_subsys;
73         __u32 ph_mask;
74         __u32 ph_cpu_id;
75         __u32 ph_sec;
76         __u64 ph_usec;
77         __u32 ph_stack;
78         __u32 ph_pid;
79         __u32 ph_extern_pid;
80         __u32 ph_line_num;
81 } __attribute__((packed));
82
83 #define PH_FLAG_FIRST_RECORD 1
84
85 /* Debugging subsystems (32 bits, non-overlapping) */
86 #define S_UNDEFINED   0x00000001
87 #define S_MDC         0x00000002
88 #define S_MDS         0x00000004
89 #define S_OSC         0x00000008
90 #define S_OST         0x00000010
91 #define S_CLASS       0x00000020
92 #define S_LOG         0x00000040
93 #define S_LLITE       0x00000080
94 #define S_RPC         0x00000100
95 #define S_MGMT        0x00000200
96 #define S_PORTALS     0x00000400
97 #define S_SOCKNAL     0x00000800
98 #define S_QSWNAL      0x00001000
99 #define S_PINGER      0x00002000
100 #define S_FILTER      0x00004000
101 #define S_PTLBD       0x00008000
102 #define S_ECHO        0x00010000
103 #define S_LDLM        0x00020000
104 #define S_LOV         0x00040000
105 #define S_GMNAL       0x00080000
106 #define S_PTLROUTER   0x00100000
107 #define S_COBD        0x00200000
108 #define S_IBNAL       0x00400000 /* All IB NALs */
109 #define S_SM          0x00800000
110 #define S_ASOBD       0x01000000
111 #define S_LMV         0x02000000
112 #define S_CMOBD       0x04000000
113
114 /* If you change these values, please keep portals/utils/debug.c
115  * up to date! */
116
117 /* Debugging masks (32 bits, non-overlapping) */
118 #define D_TRACE       0x00000001 /* ENTRY/EXIT markers */
119 #define D_INODE       0x00000002
120 #define D_SUPER       0x00000004
121 #define D_EXT2        0x00000008 /* anything from ext2_debug */
122 #define D_MALLOC      0x00000010 /* print malloc, free information */
123 #define D_CACHE       0x00000020 /* cache-related items */
124 #define D_INFO        0x00000040 /* general information */
125 #define D_IOCTL       0x00000080 /* ioctl related information */
126 #define D_BLOCKS      0x00000100 /* ext2 block allocation */
127 #define D_NET         0x00000200 /* network communications */
128 #define D_WARNING     0x00000400 /* CWARN(...) == CDEBUG (D_WARNING, ...) */
129 #define D_BUFFS       0x00000800
130 #define D_OTHER       0x00001000
131 #define D_DENTRY      0x00002000
132 #define D_PORTALS     0x00004000 /* ENTRY/EXIT markers */
133 #define D_PAGE        0x00008000 /* bulk page handling */
134 #define D_DLMTRACE    0x00010000
135 #define D_ERROR       0x00020000 /* CERROR(...) == CDEBUG (D_ERROR, ...) */
136 #define D_EMERG       0x00040000 /* CEMERG(...) == CDEBUG (D_EMERG, ...) */
137 #define D_HA          0x00080000 /* recovery and failover */
138 #define D_RPCTRACE    0x00100000 /* for distributed debugging */
139 #define D_VFSTRACE    0x00200000
140 #define D_READA       0x00400000 /* read-ahead */
141 #define D_MMAP        0x00800000
142 #define D_CONFIG      0x01000000
143 #ifdef __KERNEL__
144 # include <linux/sched.h> /* THREAD_SIZE */
145 #else
146 # ifndef THREAD_SIZE /* x86_64 has THREAD_SIZE in userspace */
147 #  define THREAD_SIZE 8192
148 # endif
149 #endif
150
151 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
152
153 #ifdef __KERNEL__
154 # ifdef  __ia64__
155 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
156                         ((unsigned long)__builtin_dwarf_cfa() &            \
157                          (THREAD_SIZE - 1)))
158 # else
159 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
160                         ((unsigned long)__builtin_frame_address(0) &       \
161                          (THREAD_SIZE - 1)))
162 # endif /* __ia64__ */
163
164 #define CHECK_STACK(stack)                                                    \
165         do {                                                                  \
166                 if ((stack) > 3*THREAD_SIZE/4 && (stack) > portal_stack) {    \
167                         portals_debug_msg(DEBUG_SUBSYSTEM, D_WARNING,         \
168                                           __FILE__, __FUNCTION__, __LINE__,   \
169                                           (stack),"maximum lustre stack %u\n",\
170                                           portal_stack = (stack));            \
171                       /*panic("LBUG");*/                                      \
172                 }                                                             \
173         } while (0)
174 #else /* !__KERNEL__ */
175 #define CHECK_STACK(stack) do { } while(0)
176 #define CDEBUG_STACK (0L)
177 #endif /* __KERNEL__ */
178
179 #if 1
180 #define CDEBUG(mask, format, a...)                                            \
181 do {                                                                          \
182         CHECK_STACK(CDEBUG_STACK);                                            \
183         if (((mask) & (D_ERROR | D_EMERG | D_WARNING)) ||                     \
184             (portal_debug & (mask) &&                                         \
185              portal_subsystem_debug & DEBUG_SUBSYSTEM))                       \
186                 portals_debug_msg(DEBUG_SUBSYSTEM, mask,                      \
187                                   __FILE__, __FUNCTION__, __LINE__,           \
188                                   CDEBUG_STACK, format, ## a);                \
189 } while (0)
190
191 #define CDEBUG_MAX_LIMIT 600
192 #define CDEBUG_LIMIT(cdebug_mask, cdebug_format, a...)                        \
193 do {                                                                          \
194         static unsigned long cdebug_next;                                     \
195         static int cdebug_count, cdebug_delay = 1;                            \
196                                                                               \
197         CHECK_STACK(CDEBUG_STACK);                                            \
198         if (time_after(jiffies, cdebug_next)) {                               \
199                 portals_debug_msg(DEBUG_SUBSYSTEM, cdebug_mask, __FILE__,     \
200                                   __FUNCTION__, __LINE__, CDEBUG_STACK,       \
201                                   cdebug_format, ## a);                       \
202                 if (cdebug_count) {                                           \
203                         portals_debug_msg(DEBUG_SUBSYSTEM, cdebug_mask,       \
204                                           __FILE__, __FUNCTION__, __LINE__,   \
205                                           CDEBUG_STACK, cdebug_format, ## a); \
206                         cdebug_count = 0;                                     \
207                 }                                                             \
208                 if (time_after(jiffies, cdebug_next+(CDEBUG_MAX_LIMIT+10)*HZ))\
209                         cdebug_delay = cdebug_delay > 8 ? cdebug_delay/8 : 1; \
210                 else                                                          \
211                         cdebug_delay = cdebug_delay*2 >= CDEBUG_MAX_LIMIT*HZ ?\
212                                         CDEBUG_MAX_LIMIT*HZ : cdebug_delay*2; \
213                 cdebug_next = jiffies + cdebug_delay;                         \
214         } else {                                                              \
215                 portals_debug_msg(DEBUG_SUBSYSTEM,                            \
216                                   portal_debug & ~(D_EMERG|D_ERROR|D_WARNING),\
217                                   __FILE__, __FUNCTION__, __LINE__,           \
218                                   CDEBUG_STACK, cdebug_format, ## a);         \
219                 cdebug_count++;                                               \
220         }                                                                     \
221 } while (0)
222
223 #define CWARN(format, a...) CDEBUG_LIMIT(D_WARNING, format, ## a)
224 #define CERROR(format, a...) CDEBUG_LIMIT(D_ERROR, format, ## a)
225 #define CEMERG(format, a...) CDEBUG(D_EMERG, format, ## a)
226
227 #define GOTO(label, rc)                                                 \
228 do {                                                                    \
229         long GOTO__ret = (long)(rc);                                    \
230         CDEBUG(D_TRACE,"Process leaving via %s (rc=%lu : %ld : %lx)\n", \
231                #label, (unsigned long)GOTO__ret, (signed long)GOTO__ret,\
232                (signed long)GOTO__ret);                                 \
233         goto label;                                                     \
234 } while (0)
235
236 #define RETURN(rc)                                                      \
237 do {                                                                    \
238         typeof(rc) RETURN__ret = (rc);                                  \
239         CDEBUG(D_TRACE, "Process leaving (rc=%lu : %ld : %lx)\n",       \
240                (long)RETURN__ret, (long)RETURN__ret, (long)RETURN__ret);\
241         return RETURN__ret;                                             \
242 } while (0)
243
244 #define ENTRY                                                           \
245 do {                                                                    \
246         CDEBUG(D_TRACE, "Process entered\n");                           \
247 } while (0)
248
249 #define EXIT                                                            \
250 do {                                                                    \
251         CDEBUG(D_TRACE, "Process leaving\n");                           \
252 } while(0)
253 #else
254 #define CDEBUG(mask, format, a...)      do { } while (0)
255 #define CWARN(format, a...)             printk(KERN_WARNING format, ## a)
256 #define CERROR(format, a...)            printk(KERN_ERR format, ## a)
257 #define CEMERG(format, a...)            printk(KERN_EMERG format, ## a)
258 #define GOTO(label, rc)                 do { (void)(rc); goto label; } while (0)
259 #define RETURN(rc)                      return (rc)
260 #define ENTRY                           do { } while (0)
261 #define EXIT                            do { } while (0)
262 #endif
263
264 /* initial pid  */
265 # if CRAY_PORTALS
266 /* 
267  * 1) ptl_pid_t in cray portals is only 16 bits, not 32 bits, therefore this
268  *    is too big.
269  *
270  * 2) the implementation of ernal in cray portals further restricts the pid
271  *    space that may be used to 0 <= pid <= 255 (an 8 bit value).  Returns
272  *    an error at nal init time for any pid outside this range.  Other nals
273  *    in cray portals don't have this restriction.
274  * */
275 #define LUSTRE_PTL_PID          9
276 # else
277 #define LUSTRE_PTL_PID          12345
278 # endif
279
280 #define LUSTRE_SRV_PTL_PID      LUSTRE_PTL_PID    
281
282 #define PORTALS_CFG_VERSION 0x00010001;
283
284 struct portals_cfg {
285         __u32 pcfg_version;
286         __u32 pcfg_command;
287
288         __u32 pcfg_nal;
289         __u32 pcfg_flags;
290
291         __u32 pcfg_gw_nal;
292         __u64 pcfg_nid;
293         __u64 pcfg_nid2;
294         __u64 pcfg_nid3;
295         __u32 pcfg_id;
296         __u32 pcfg_misc;
297         __u32 pcfg_fd;
298         __u32 pcfg_count;
299         __u32 pcfg_size;
300         __u32 pcfg_wait;
301
302         __u32 pcfg_plen1; /* buffers in userspace */
303         char *pcfg_pbuf1;
304         __u32 pcfg_plen2; /* buffers in userspace */
305         char *pcfg_pbuf2;
306 };
307
308 #define PCFG_INIT(pcfg, cmd)                            \
309 do {                                                    \
310         memset(&pcfg, 0, sizeof(pcfg));                 \
311         pcfg.pcfg_version = PORTALS_CFG_VERSION;        \
312         pcfg.pcfg_command = (cmd);                      \
313                                                         \
314 } while (0)
315
316 typedef int (nal_cmd_handler_fn)(struct portals_cfg *, void *);
317 int libcfs_nal_cmd_register(int nal, nal_cmd_handler_fn *handler, void *arg);
318 int libcfs_nal_cmd(struct portals_cfg *pcfg);
319 void libcfs_nal_cmd_unregister(int nal);
320
321 struct portal_ioctl_data {
322         __u32 ioc_len;
323         __u32 ioc_version;
324         __u64 ioc_nid;
325         __u64 ioc_nid2;
326         __u64 ioc_nid3;
327         __u32 ioc_count;
328         __u32 ioc_nal;
329         __u32 ioc_nal_cmd;
330         __u32 ioc_fd;
331         __u32 ioc_id;
332
333         __u32 ioc_flags;
334         __u32 ioc_size;
335
336         __u32 ioc_wait;
337         __u32 ioc_timeout;
338         __u32 ioc_misc;
339
340         __u32 ioc_inllen1;
341         char *ioc_inlbuf1;
342         __u32 ioc_inllen2;
343         char *ioc_inlbuf2;
344
345         __u32 ioc_plen1; /* buffers in userspace */
346         char *ioc_pbuf1;
347         __u32 ioc_plen2; /* buffers in userspace */
348         char *ioc_pbuf2;
349
350         char ioc_bulk[0];
351 };
352
353
354 #ifdef __KERNEL__
355
356 #include <linux/list.h>
357
358 struct libcfs_ioctl_handler {
359         struct list_head item;
360         int (*handle_ioctl)(struct portal_ioctl_data *data,
361                             unsigned int cmd, unsigned long args);
362 };
363
364 #define DECLARE_IOCTL_HANDLER(ident, func)              \
365         struct libcfs_ioctl_handler ident = {           \
366                 .item = LIST_HEAD_INIT(ident.item),     \
367                 .handle_ioctl = func                    \
368         }
369
370 int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
371 int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
372
373 #endif
374
375 #define _LIBCFS_H
376
377 #endif /* _LIBCFS_H */