Whamcloud - gitweb
b=15226
[fs/lustre-release.git] / lustre / include / liblustre.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001 Cluster File Systems, Inc. <info@clusterfs.com>
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  * User-space Lustre headers.
22  *
23  */
24 #ifndef LIBLUSTRE_H__
25 #define LIBLUSTRE_H__
26
27 #ifdef __KERNEL__
28 #error Kernel files should not #include <liblustre.h>
29 #else
30 /*
31  * The userspace implementations of linux/spinlock.h vary; we just
32  * include our own for all of them
33  */
34 #define __LINUX_SPINLOCK_H
35 #endif
36
37 #include <sys/mman.h>
38 #ifdef HAVE_STDINT_H
39 # include <stdint.h>
40 #endif
41 #ifdef HAVE_ASM_PAGE_H
42 # include <asm/page.h>
43 #endif
44 #ifdef HAVE_SYS_USER_H
45 # include <sys/user.h>
46 #endif
47 #ifdef HAVE_SYS_IOCTL_H
48 # include <sys/ioctl.h>
49 #endif
50 #ifndef _IOWR
51 # include "ioctl.h"
52 #endif
53
54 #include <stdio.h>
55 #include <sys/ioctl.h>
56 #include <stdlib.h>
57 #include <string.h>
58 #include <errno.h>
59 #include <sys/stat.h>
60 #ifdef HAVE_SYS_VFS_H
61 # include <sys/vfs.h>
62 #endif
63 #include <unistd.h>
64 #include <fcntl.h>
65
66 #include <libcfs/list.h>
67 #include <lnet/lnet.h>
68 #include <libcfs/kp30.h>
69 #include <libcfs/user-bitops.h>
70
71 /* definitions for liblustre */
72
73 #ifdef __CYGWIN__
74
75 #define CFS_PAGE_SHIFT  12
76 #define CFS_PAGE_SIZE   (1UL << CFS_PAGE_SHIFT)
77 #define CFS_PAGE_MASK   (~((__u64)CFS_PAGE_SIZE-1))
78 #define loff_t long long
79 #define ERESTART 2001
80 typedef unsigned short umode_t;
81
82 #endif
83
84 #ifndef CURRENT_SECONDS
85 # define CURRENT_SECONDS time(0)
86 #endif
87
88 #ifndef ARRAY_SIZE
89 #define ARRAY_SIZE(a) ((sizeof (a))/(sizeof ((a)[0])))
90 #endif
91
92 /* This is because lprocfs_status.h gets included here indirectly.  It would
93  * be much better to just avoid lprocfs being included into liblustre entirely
94  * but that requires more header surgery than I can handle right now.
95  */
96 #ifndef smp_processor_id
97 #define smp_processor_id() 0
98 #endif
99 #ifndef num_online_cpus
100 #define num_online_cpus() 1
101 #endif
102 #ifndef num_possible_cpus
103 #define num_possible_cpus() 1
104 #endif
105
106 /* always adopt 2.5 definitions */
107 #define KERNEL_VERSION(a,b,c) ((a)*100+(b)*10+c)
108 #define LINUX_VERSION_CODE KERNEL_VERSION(2,5,0)
109
110 #ifndef page_private
111 #define page_private(page) ((page)->private)
112 #define set_page_private(page, v) ((page)->private = (v))
113 #endif
114
115
116 static inline void inter_module_put(void *a)
117 {
118         return;
119 }
120
121 void *inter_module_get(char *arg);
122
123 /* cheats for now */
124
125 struct work_struct {
126         void (*ws_task)(void *arg);
127         void *ws_arg;
128 };
129
130 static inline void prepare_work(struct work_struct *q, void (*t)(void *),
131                                 void *arg)
132 {
133         q->ws_task = t;
134         q->ws_arg = arg;
135         return;
136 }
137
138 static inline void schedule_work(struct work_struct *q)
139 {
140         q->ws_task(q->ws_arg);
141 }
142
143
144 #define strnlen(a,b) strlen(a)
145 static inline void *kmalloc(int size, int prot)
146 {
147         return malloc(size);
148 }
149 #define vmalloc malloc
150 #define vfree free
151 #define kfree(a) free(a)
152 #define GFP_KERNEL 1
153 #define GFP_HIGHUSER 1
154 #define GFP_ATOMIC 1
155 #define GFP_NOFS 1
156 #define IS_ERR(a) ((unsigned long)(a) > (unsigned long)-1000L)
157 #define PTR_ERR(a) ((long)(a))
158 #define ERR_PTR(a) ((void*)((long)(a)))
159
160 typedef struct {
161         void *cwd;
162 }mm_segment_t;
163
164 typedef int (read_proc_t)(char *page, char **start, off_t off,
165                           int count, int *eof, void *data);
166
167 struct file; /* forward ref */
168 typedef int (write_proc_t)(struct file *file, const char *buffer,
169                            unsigned long count, void *data);
170
171 #define NIPQUAD(addr) \
172         ((unsigned char *)&addr)[0], \
173         ((unsigned char *)&addr)[1], \
174         ((unsigned char *)&addr)[2], \
175         ((unsigned char *)&addr)[3]
176
177 #if defined(__LITTLE_ENDIAN)
178 #define HIPQUAD(addr) \
179         ((unsigned char *)&addr)[3], \
180         ((unsigned char *)&addr)[2], \
181         ((unsigned char *)&addr)[1], \
182         ((unsigned char *)&addr)[0]
183 #elif defined(__BIG_ENDIAN)
184 #define HIPQUAD NIPQUAD
185 #else
186 #error "Undefined byteorder??"
187 #endif /* __LITTLE_ENDIAN */
188
189 /* bits ops */
190
191 /* a long can be more than 32 bits, so use BITS_PER_LONG
192  * to allow the compiler to adjust the bit shifting accordingly
193  */
194
195 static __inline__ int ext2_set_bit(int nr, void *addr)
196 {
197         return set_bit(nr, addr);
198 }
199
200 static __inline__ int ext2_clear_bit(int nr, void *addr)
201 {
202         return clear_bit(nr, addr);
203 }
204
205 static __inline__ int ext2_test_bit(int nr, void *addr)
206 {
207         return test_bit(nr, addr);
208 }
209
210 /* modules */
211
212 struct module {
213         int count;
214 };
215
216 static inline void MODULE_AUTHOR(char *name)
217 {
218         printf("%s\n", name);
219 }
220 #define MODULE_DESCRIPTION(name) MODULE_AUTHOR(name)
221 #define MODULE_LICENSE(name) MODULE_AUTHOR(name)
222
223 #define THIS_MODULE NULL
224 #define __init
225 #define __exit
226
227 /* devices */
228
229 static inline int misc_register(void *foo)
230 {
231         return 0;
232 }
233
234 static inline int misc_deregister(void *foo)
235 {
236         return 0;
237 }
238
239 static inline int request_module(char *name)
240 {
241         return (-EINVAL);
242 }
243
244 #define __MOD_INC_USE_COUNT(m)  do {} while (0)
245 #define __MOD_DEC_USE_COUNT(m)  do {} while (0)
246 #define MOD_INC_USE_COUNT       do {} while (0)
247 #define MOD_DEC_USE_COUNT       do {} while (0)
248 static inline void __module_get(struct module *module)
249 {
250 }
251
252 static inline int try_module_get(struct module *module)
253 {
254         return 1;
255 }
256
257 static inline void module_put(struct module *module)
258 {
259 }
260
261 /* module initialization */
262 extern int init_obdclass(void);
263 extern int ptlrpc_init(void);
264 extern int ldlm_init(void);
265 extern int osc_init(void);
266 extern int lov_init(void);
267 extern int mdc_init(void);
268 extern int mgc_init(void);
269 extern int echo_client_init(void);
270
271
272
273 /* general stuff */
274
275 #define EXPORT_SYMBOL(S)
276
277 struct rcu_head { };
278
279 typedef struct { } spinlock_t;
280 typedef __u64 kdev_t;
281
282 #define SPIN_LOCK_UNLOCKED (spinlock_t) { }
283 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
284 #define LASSERT_SEM_LOCKED(sem) do {} while(0)
285
286 static inline void spin_lock(spinlock_t *l) {return;}
287 static inline void spin_unlock(spinlock_t *l) {return;}
288 static inline void spin_lock_init(spinlock_t *l) {return;}
289 static inline void local_irq_save(unsigned long flag) {return;}
290 static inline void local_irq_restore(unsigned long flag) {return;}
291 static inline int spin_is_locked(spinlock_t *l) {return 1;}
292
293 static inline void spin_lock_bh(spinlock_t *l) {}
294 static inline void spin_unlock_bh(spinlock_t *l) {}
295 static inline void spin_lock_irqsave(spinlock_t *a, unsigned long b) {}
296 static inline void spin_unlock_irqrestore(spinlock_t *a, unsigned long b) {}
297
298 typedef spinlock_t rwlock_t;
299 #define RW_LOCK_UNLOCKED        SPIN_LOCK_UNLOCKED
300 #define read_lock(l)            spin_lock(l)
301 #define read_unlock(l)          spin_unlock(l)
302 #define write_lock(l)           spin_lock(l)
303 #define write_unlock(l)         spin_unlock(l)
304 #define rwlock_init(l)          spin_lock_init(l)
305
306 #define min(x,y) ((x)<(y) ? (x) : (y))
307 #define max(x,y) ((x)>(y) ? (x) : (y))
308
309 #ifndef min_t
310 #define min_t(type,x,y) \
311         ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
312 #endif
313 #ifndef max_t
314 #define max_t(type,x,y) \
315         ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
316 #endif
317
318 #define simple_strtol strtol
319
320 /* registering symbols */
321 #ifndef ERESTARTSYS
322 #define ERESTARTSYS ERESTART
323 #endif
324 #define HZ 1
325
326 /* random */
327
328 void get_random_bytes(void *ptr, int size);
329
330 /* memory */
331
332 /* memory size: used for some client tunables */
333 #define num_physpages (256 * 1024) /* 1GB */
334
335 static inline int copy_from_user(void *a,void *b, int c)
336 {
337         memcpy(a,b,c);
338         return 0;
339 }
340
341 static inline int copy_to_user(void *a,void *b, int c)
342 {
343         memcpy(a,b,c);
344         return 0;
345 }
346
347
348 /* slabs */
349 typedef struct {
350          int size;
351 } kmem_cache_t;
352 #define SLAB_HWCACHE_ALIGN 0
353 static inline kmem_cache_t *
354 kmem_cache_create(const char *name, size_t objsize, size_t cdum,
355                   unsigned long d,
356                   void (*e)(void *, kmem_cache_t *, unsigned long),
357                   void (*f)(void *, kmem_cache_t *, unsigned long))
358 {
359         kmem_cache_t *c;
360         c = malloc(sizeof(*c));
361         if (!c)
362                 return NULL;
363         c->size = objsize;
364         CDEBUG(D_MALLOC, "alloc slab cache %s at %p, objsize %d\n",
365                name, c, (int)objsize);
366         return c;
367 };
368
369 static inline int kmem_cache_destroy(kmem_cache_t *a)
370 {
371         CDEBUG(D_MALLOC, "destroy slab cache %p, objsize %u\n", a, a->size);
372         free(a);
373         return 0;
374 }
375
376 /* struct page decl moved out from here into portals/include/libcfs/user-prim.h */
377
378 /* 2.4 defines */
379 #define PAGE_LIST_ENTRY list
380 #define PAGE_LIST(page) ((page)->list)
381
382 #define kmap(page) (page)->addr
383 #define kunmap(a) do {} while (0)
384
385 static inline cfs_page_t *alloc_pages(int mask, unsigned long order)
386 {
387         cfs_page_t *pg = malloc(sizeof(*pg));
388
389         if (!pg)
390                 return NULL;
391 #if 0 //#ifdef MAP_ANONYMOUS
392         pg->addr = mmap(0, PAGE_SIZE << order, PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
393 #else
394         pg->addr = malloc(CFS_PAGE_SIZE << order);
395 #endif
396
397         if (!pg->addr) {
398                 free(pg);
399                 return NULL;
400         }
401         return pg;
402 }
403 #define cfs_alloc_pages(mask, order)  alloc_pages((mask), (order))
404
405 #define alloc_page(mask)      alloc_pages((mask), 0)
406 #define cfs_alloc_page(mask)  alloc_page(mask)
407
408 static inline void __free_pages(cfs_page_t *pg, int what)
409 {
410 #if 0 //#ifdef MAP_ANONYMOUS
411         munmap(pg->addr, PAGE_SIZE);
412 #else
413         free(pg->addr);
414 #endif
415         free(pg);
416 }
417 #define __cfs_free_pages(pg, order)  __free_pages((pg), (order))
418
419 #define __free_page(page) __free_pages((page), 0)
420 #define free_page(page) __free_page(page)
421 #define __cfs_free_page(page)  __cfs_free_pages((page), 0)
422
423 static inline cfs_page_t* __grab_cache_page(unsigned long index)
424 {
425         cfs_page_t *pg = alloc_pages(0, 0);
426
427         if (pg)
428                 pg->index = index;
429         return pg;
430 }
431
432 #define grab_cache_page(index) __grab_cache_page(index)
433 #define page_cache_release(page) __free_pages(page, 0)
434
435 /* arithmetic */
436 #define do_div(a,b)                     \
437         ({                              \
438                 unsigned long remainder;\
439                 remainder = (a) % (b);  \
440                 (a) = (a) / (b);        \
441                 (remainder);            \
442         })
443
444 /* VFS stuff */
445 #define ATTR_MODE       0x0001
446 #define ATTR_UID        0x0002
447 #define ATTR_GID        0x0004
448 #define ATTR_SIZE       0x0008
449 #define ATTR_ATIME      0x0010
450 #define ATTR_MTIME      0x0020
451 #define ATTR_CTIME      0x0040
452 #define ATTR_ATIME_SET  0x0080
453 #define ATTR_MTIME_SET  0x0100
454 #define ATTR_FORCE      0x0200  /* Not a change, but a change it */
455 #define ATTR_ATTR_FLAG  0x0400
456 #define ATTR_RAW        0x0800  /* file system, not vfs will massage attrs */
457 #define ATTR_FROM_OPEN  0x1000  /* called from open path, ie O_TRUNC */
458 #define ATTR_CTIME_SET  0x2000
459 #define ATTR_KILL_SUID  0
460 #define ATTR_KILL_SGID  0
461
462 struct iattr {
463         unsigned int    ia_valid;
464         umode_t         ia_mode;
465         uid_t           ia_uid;
466         gid_t           ia_gid;
467         loff_t          ia_size;
468         time_t          ia_atime;
469         time_t          ia_mtime;
470         time_t          ia_ctime;
471         unsigned int    ia_attr_flags;
472 };
473 #define ll_iattr_struct iattr
474
475 #define IT_OPEN     0x0001
476 #define IT_CREAT    0x0002
477 #define IT_READDIR  0x0004
478 #define IT_GETATTR  0x0008
479 #define IT_LOOKUP   0x0010
480 #define IT_UNLINK   0x0020
481 #define IT_GETXATTR 0x0040
482 #define IT_EXEC     0x0080
483 #define IT_PIN      0x0100
484
485 #define IT_FL_LOCKED   0x0001
486 #define IT_FL_FOLLOWED 0x0002 /* set by vfs_follow_link */
487
488 #define INTENT_MAGIC 0x19620323
489
490 struct lustre_intent_data {
491         int       it_disposition;
492         int       it_status;
493         __u64     it_lock_handle;
494         void     *it_data;
495         int       it_lock_mode;
496         int it_int_flags;
497 };
498 struct lookup_intent {
499         int     it_magic;
500         void    (*it_op_release)(struct lookup_intent *);
501         int     it_op;
502         int     it_flags;
503         int     it_create_mode;
504         union {
505                 struct lustre_intent_data lustre;
506         } d;
507 };
508
509 static inline void intent_init(struct lookup_intent *it, int op, int flags)
510 {
511         memset(it, 0, sizeof(*it));
512         it->it_magic = INTENT_MAGIC;
513         it->it_op = op;
514         it->it_flags = flags;
515 }
516
517
518 struct dentry {
519         int d_count;
520 };
521
522 struct vfsmount {
523         void *pwd;
524 };
525
526 /* semaphores */
527 struct rw_semaphore {
528         int count;
529 };
530
531 /* semaphores */
532 struct semaphore {
533         int count;
534 };
535
536 /* use the macro's argument to avoid unused warnings */
537 #define down(a) do { (void)a; } while (0)
538 #define mutex_down(a)   down(a)
539 #define up(a) do { (void)a; } while (0)
540 #define mutex_up(a)     up(a)
541 #define down_read(a) do { (void)a; } while (0)
542 #define up_read(a) do { (void)a; } while (0)
543 #define down_write(a) do { (void)a; } while (0)
544 #define up_write(a) do { (void)a; } while (0)
545 #define sema_init(a,b) do { (void)a; } while (0)
546 #define init_rwsem(a) do { (void)a; } while (0)
547 #define DECLARE_MUTEX(name)     \
548         struct semaphore name = { 1 }
549 static inline void init_MUTEX (struct semaphore *sem)
550 {
551         sema_init(sem, 1);
552 }
553 static inline void init_MUTEX_LOCKED (struct semaphore *sem)
554 {
555         sema_init(sem, 0);
556 }
557
558 #define init_mutex(s)   init_MUTEX(s)
559
560 typedef struct  {
561         struct list_head sleepers;
562 } wait_queue_head_t;
563
564 typedef struct  {
565         struct list_head sleeping;
566         void *process;
567 } wait_queue_t;
568
569 struct signal {
570         int signal;
571 };
572
573 struct task_struct {
574         int state;
575         struct signal pending;
576         char comm[32];
577         int pid;
578         int fsuid;
579         int fsgid;
580         int max_groups;
581         int ngroups;
582         gid_t *groups;
583         __u32 cap_effective;
584 };
585
586 typedef struct task_struct cfs_task_t;
587 #define cfs_current()           current
588 #define cfs_curproc_pid()       (current->pid)
589 #define cfs_curproc_comm()      (current->comm)
590
591 extern struct task_struct *current;
592 int in_group_p(gid_t gid);
593 static inline int capable(int cap)
594 {
595         if (current->cap_effective & (1 << cap))
596                 return 1;
597         else
598                 return 0;
599 }
600
601 #define set_current_state(foo) do { current->state = foo; } while (0)
602
603 #define init_waitqueue_entry(q,p) do { (q)->process = p; } while (0)
604 #define add_wait_queue(q,p) do {  list_add(&(q)->sleepers, &(p)->sleeping); } while (0)
605 #define del_wait_queue(p) do { list_del(&(p)->sleeping); } while (0)
606 #define remove_wait_queue(q,p) do { list_del(&(p)->sleeping); } while (0)
607
608 #define DECLARE_WAIT_QUEUE_HEAD(HEAD)                           \
609         wait_queue_head_t HEAD = {                              \
610                 .sleepers = CFS_LIST_HEAD_INIT(HEAD.sleepers)       \
611         }
612 #define init_waitqueue_head(l) CFS_INIT_LIST_HEAD(&(l)->sleepers)
613 #define wake_up(l) do { int a = 0; a++; } while (0)
614 #define TASK_INTERRUPTIBLE 0
615 #define TASK_UNINTERRUPTIBLE 1
616 #define TASK_RUNNING 2
617
618 #define wait_event_interruptible(wq, condition)                         \
619 ({                                                                      \
620         struct l_wait_info lwi;                                         \
621         int timeout = 100000000;/* for ever */                          \
622         int ret;                                                        \
623                                                                         \
624         lwi = LWI_TIMEOUT(timeout, NULL, NULL);                         \
625         ret = l_wait_event(NULL, condition, &lwi);                      \
626                                                                         \
627         ret;                                                            \
628 })
629
630 #define in_interrupt() (0)
631
632 #define schedule() do {} while (0)
633 static inline int schedule_timeout(signed long t)
634 {
635         return 0;
636 }
637
638 #define lock_kernel() do {} while (0)
639 #define unlock_kernel() do {} while (0)
640 #define daemonize(l) do {} while (0)
641 #define sigfillset(l) do {} while (0)
642 #define recalc_sigpending(l) do {} while (0)
643 #define kernel_thread(l,m,n) LBUG()
644
645 #define USERMODEHELPER(path, argv, envp) (0)
646 #define SIGNAL_MASK_ASSERT()
647 #define KERN_INFO
648
649 #include <sys/time.h>
650 #if HZ != 1
651 #error "liblustre's jiffies currently expects HZ to be 1"
652 #endif
653 #define jiffies                                 \
654 ({                                              \
655         unsigned long _ret = 0;                 \
656         struct timeval tv;                      \
657         if (gettimeofday(&tv, NULL) == 0)       \
658                 _ret = tv.tv_sec;               \
659         _ret;                                   \
660 })
661 #define get_jiffies_64()  (__u64)jiffies
662 #define time_after(a, b) ((long)(b) - (long)(a) < 0)
663 #define time_before(a, b) time_after(b,a)
664 #define time_after_eq(a,b)      ((long)(a) - (long)(b) >= 0)
665
666 struct timer_list {
667         struct list_head tl_list;
668         void (*function)(unsigned long unused);
669         unsigned long data;
670         long expires;
671 };
672
673 static inline int timer_pending(struct timer_list *l)
674 {
675         if (time_after(l->expires, jiffies))
676                 return 1;
677         else
678                 return 0;
679 }
680
681 static inline int init_timer(struct timer_list *l)
682 {
683         CFS_INIT_LIST_HEAD(&l->tl_list);
684         return 0;
685 }
686
687 static inline void mod_timer(struct timer_list *l, int thetime)
688 {
689         l->expires = thetime;
690 }
691
692 static inline void del_timer(struct timer_list *l)
693 {
694         free(l);
695 }
696
697 typedef struct { volatile int counter; } atomic_t;
698
699 #define ATOMIC_INIT(i) { i }
700
701 #define atomic_read(a) ((a)->counter)
702 #define atomic_set(a,b) do {(a)->counter = b; } while (0)
703 #define atomic_dec_and_test(a) ((--((a)->counter)) == 0)
704 #define atomic_dec_and_lock(a,b) ((--((a)->counter)) == 0)
705 #define atomic_inc(a)  (((a)->counter)++)
706 #define atomic_dec(a)  do { (a)->counter--; } while (0)
707 #define atomic_add(b,a)  do {(a)->counter += b;} while (0)
708 #define atomic_add_return(n,a) ((a)->counter += n)
709 #define atomic_inc_return(a) atomic_add_return(1,a)
710 #define atomic_sub(b,a)  do {(a)->counter -= b;} while (0)
711 #define atomic_sub_return(n,a) ((a)->counter -= n)
712 #define atomic_dec_return(a)  atomic_sub_return(1,a)
713
714 #ifndef likely
715 #define likely(exp) (exp)
716 #endif
717 #ifndef unlikely
718 #define unlikely(exp) (exp)
719 #endif
720
721 /* FIXME sys/capability will finally included linux/fs.h thus
722  * cause numerous trouble on x86-64. as temporary solution for
723  * build broken at cary, we copy definition we need from capability.h
724  * FIXME
725  */
726 struct _cap_struct;
727 typedef struct _cap_struct *cap_t;
728 typedef int cap_value_t;
729 typedef enum {
730     CAP_EFFECTIVE=0,
731     CAP_PERMITTED=1,
732     CAP_INHERITABLE=2
733 } cap_flag_t;
734 typedef enum {
735     CAP_CLEAR=0,
736     CAP_SET=1
737 } cap_flag_value_t;
738
739 #define CAP_DAC_OVERRIDE        1
740 #define CAP_DAC_READ_SEARCH     2
741 #define CAP_FOWNER              3
742 #define CAP_FSETID              4
743 #define CAP_SYS_ADMIN          21
744
745 cap_t   cap_get_proc(void);
746 int     cap_get_flag(cap_t, cap_value_t, cap_flag_t, cap_flag_value_t *);
747
748 static inline void libcfs_run_lbug_upcall(char *file, const char *fn,
749                                            const int l){}
750
751 /* completion */
752 struct completion {
753         unsigned int done;
754         cfs_waitq_t wait;
755 };
756
757 #define COMPLETION_INITIALIZER(work) \
758         { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
759
760 #define DECLARE_COMPLETION(work) \
761         struct completion work = COMPLETION_INITIALIZER(work)
762
763 #define INIT_COMPLETION(x)      ((x).done = 0)
764
765 static inline void init_completion(struct completion *x)
766 {
767         x->done = 0;
768         init_waitqueue_head(&x->wait);
769 }
770
771 struct liblustre_wait_callback {
772         struct list_head    llwc_list;
773         const char         *llwc_name;
774         int               (*llwc_fn)(void *arg);
775         void               *llwc_arg;
776 };
777
778 void *liblustre_register_wait_callback(const char *name,
779                                        int (*fn)(void *arg), void *arg);
780 void liblustre_deregister_wait_callback(void *notifier);
781 int liblustre_wait_event(int timeout);
782
783 void *liblustre_register_idle_callback(const char *name,
784                                        int (*fn)(void *arg), void *arg);
785 void liblustre_deregister_idle_callback(void *notifier);
786 void liblustre_wait_idle(void);
787
788 /* flock related */
789 struct nfs_lock_info {
790         __u32             state;
791         __u32             flags;
792         void            *host;
793 };
794
795 typedef struct file_lock {
796         struct file_lock *fl_next;      /* singly linked list for this inode  */
797         struct list_head fl_link;       /* doubly linked list of all locks */
798         struct list_head fl_block;      /* circular list of blocked processes */
799         void *fl_owner;
800         unsigned int fl_pid;
801         cfs_waitq_t fl_wait;
802         struct file *fl_file;
803         unsigned char fl_flags;
804         unsigned char fl_type;
805         loff_t fl_start;
806         loff_t fl_end;
807
808         void (*fl_notify)(struct file_lock *);  /* unblock callback */
809         void (*fl_insert)(struct file_lock *);  /* lock insertion callback */
810         void (*fl_remove)(struct file_lock *);  /* lock removal callback */
811
812         void *fl_fasync; /* for lease break notifications */
813         unsigned long fl_break_time;    /* for nonblocking lease breaks */
814
815         union {
816                 struct nfs_lock_info    nfs_fl;
817         } fl_u;
818 } cfs_flock_t;
819
820 #define cfs_flock_type(fl)                  ((fl)->fl_type)
821 #define cfs_flock_set_type(fl, type)        do { (fl)->fl_type = (type); } while(0)
822 #define cfs_flock_pid(fl)                   ((fl)->fl_pid)
823 #define cfs_flock_set_pid(fl, pid)          do { (fl)->fl_pid = (pid); } while(0)
824 #define cfs_flock_start(fl)                 ((fl)->fl_start)
825 #define cfs_flock_set_start(fl, start)      do { (fl)->fl_start = (start); } while(0)
826 #define cfs_flock_end(fl)                   ((fl)->fl_end)
827 #define cfs_flock_set_end(fl, end)          do { (fl)->fl_end = (end); } while(0)
828
829 #ifndef OFFSET_MAX
830 #define INT_LIMIT(x)    (~((x)1 << (sizeof(x)*8 - 1)))
831 #define OFFSET_MAX      INT_LIMIT(loff_t)
832 #endif
833
834 /* XXX: defined in kernel */
835 #define FL_POSIX        1
836 #define FL_SLEEP        128
837
838 /* quota */
839 #define QUOTA_OK 0
840 #define NO_QUOTA 1
841
842 /* ACL */
843 struct posix_acl_entry {
844         short                   e_tag;
845         unsigned short          e_perm;
846         unsigned int            e_id;
847 };
848
849 struct posix_acl {
850         atomic_t                a_refcount;
851         unsigned int            a_count;
852         struct posix_acl_entry  a_entries[0];
853 };
854
855 typedef struct {
856         __u16           e_tag;
857         __u16           e_perm;
858         __u32           e_id;
859 } xattr_acl_entry;
860
861 typedef struct {
862         __u32           a_version;
863         xattr_acl_entry a_entries[0];
864 } xattr_acl_header;
865
866 static inline size_t xattr_acl_size(int count)
867 {
868         return sizeof(xattr_acl_header) + count * sizeof(xattr_acl_entry);
869 }
870
871 static inline
872 struct posix_acl * posix_acl_from_xattr(const void *value, size_t size)
873 {
874         return NULL;
875 }
876
877 static inline
878 int posix_acl_valid(const struct posix_acl *acl)
879 {
880         return 0;
881 }
882
883 static inline
884 void posix_acl_release(struct posix_acl *acl)
885 {
886 }
887
888 #ifdef LIBLUSTRE_POSIX_ACL
889  #ifndef posix_acl_xattr_entry 
890   #define posix_acl_xattr_entry xattr_acl_entry
891  #endif
892  #ifndef posix_acl_xattr_header 
893   #define posix_acl_xattr_header xattr_acl_header
894  #endif
895  #ifndef posix_acl_xattr_size
896   #define posix_acl_xattr_size(entry) xattr_acl_size(entry)
897  #endif
898  #ifndef CONFIG_FS_POSIX_ACL
899   #define CONFIG_FS_POSIX_ACL 1
900  #endif
901 #endif
902
903 #ifndef ENOTSUPP
904 #define ENOTSUPP ENOTSUP
905 #endif
906
907 #include <obd_support.h>
908 #include <lustre/lustre_idl.h>
909 #include <lustre_lib.h>
910 #include <lustre_import.h>
911 #include <lustre_export.h>
912 #include <lustre_net.h>
913
914 #endif