Whamcloud - gitweb
b=17670
[fs/lustre-release.git] / libcfs / include / libcfs / posix / libcfs.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * libcfs/include/libcfs/posix/libcfs.h
37  *
38  * Defines for posix userspace.
39  *
40  * Author: Robert Read <rread@sun.com>
41  */
42
43 #ifndef __LIBCFS_POSIX_LIBCFS_H__
44 #define __LIBCFS_POSIX_LIBCFS_H__
45
46 #include <errno.h>
47 #include <sys/errno.h>
48 #include <string.h>
49 #include <stdarg.h>
50 #include <stddef.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <sys/mman.h>
54 #include <sys/stat.h>
55 #include <fcntl.h>
56 #include <limits.h>
57 #include <assert.h>
58 #include <sys/ioctl.h>
59 #include <sys/signal.h>
60 #include <signal.h>
61 #include <sys/time.h>
62 #include <time.h>
63 #include <getopt.h>
64 #include <signal.h>
65 #include <pwd.h>
66 #include <sys/socket.h>
67 #include <sys/utsname.h>
68 #include <ctype.h>
69
70 #ifdef HAVE_NETDB_H
71 #include <netdb.h>
72 #endif
73
74 #ifdef HAVE_UNISTD_H
75 #include <unistd.h>
76 #endif
77
78 #ifdef HAVE_LIBPTHREAD
79 #include <pthread.h>
80 #endif
81
82 #if defined(HAVE_SYS_TYPES_H)
83 #include <sys/types.h>
84 #endif
85
86 #ifdef HAVE_SYS_USER_H
87 # include <sys/user.h>
88 #endif
89
90 #ifdef HAVE_SYS_VFS_H
91 # include <sys/vfs.h>
92 #endif
93
94 #ifdef HAVE_STDINT_H
95 # include <stdint.h>
96 #endif
97
98 #include <libcfs/list.h>
99 #include <libcfs/posix/posix-types.h>
100 #include <libcfs/user-time.h>
101 #include <libcfs/user-prim.h>
102 #include <libcfs/user-mem.h>
103 #include <libcfs/user-lock.h>
104 #include <libcfs/user-tcpip.h>
105 #include <libcfs/posix/posix-wordsize.h>
106 #include <libcfs/user-bitops.h>
107
108 # define do_gettimeofday(tv) gettimeofday(tv, NULL);
109 typedef unsigned long long cycles_t;
110
111 #define IS_ERR(a) ((unsigned long)(a) > (unsigned long)-1000L)
112 #define PTR_ERR(a) ((long)(a))
113 #define ERR_PTR(a) ((void*)((long)(a)))
114
115 /* this goes in posix-fs.h */
116 #include <sys/mount.h>
117
118 #ifdef __linux__
119 #include <mntent.h>
120 #endif
121
122 typedef struct file cfs_file_t;
123 typedef struct dentry cfs_dentry_t;
124 #ifdef __linux__
125 typedef struct dirent64 cfs_dirent_t;
126 #endif
127
128 #ifdef __linux__
129 /* Userpace byte flipping */
130 # include <endian.h>
131 # include <byteswap.h>
132 # define __swab16(x) bswap_16(x)
133 # define __swab32(x) bswap_32(x)
134 # define __swab64(x) bswap_64(x)
135 # define __swab16s(x) do {*(x) = bswap_16(*(x));} while (0)
136 # define __swab32s(x) do {*(x) = bswap_32(*(x));} while (0)
137 # define __swab64s(x) do {*(x) = bswap_64(*(x));} while (0)
138 # if __BYTE_ORDER == __LITTLE_ENDIAN
139 #  define le16_to_cpu(x) (x)
140 #  define cpu_to_le16(x) (x)
141 #  define le32_to_cpu(x) (x)
142 #  define cpu_to_le32(x) (x)
143 #  define le64_to_cpu(x) (x)
144 #  define cpu_to_le64(x) (x)
145
146 #  define be16_to_cpu(x) bswap_16(x)
147 #  define cpu_to_be16(x) bswap_16(x)
148 #  define be32_to_cpu(x) bswap_32(x)
149 #  define cpu_to_be32(x) bswap_32(x)
150 #  define be64_to_cpu(x) bswap_64(x)
151 #  define cpu_to_be64(x) bswap_64(x)
152 # else
153 #  if __BYTE_ORDER == __BIG_ENDIAN
154 #   define le16_to_cpu(x) bswap_16(x)
155 #   define cpu_to_le16(x) bswap_16(x)
156 #   define le32_to_cpu(x) bswap_32(x)
157 #   define cpu_to_le32(x) bswap_32(x)
158 #   define le64_to_cpu(x) bswap_64(x)
159 #   define cpu_to_le64(x) bswap_64(x)
160
161 #   define be16_to_cpu(x) (x)
162 #   define cpu_to_be16(x) (x)
163 #   define be32_to_cpu(x) (x)
164 #   define cpu_to_be32(x) (x)
165 #   define be64_to_cpu(x) (x)
166 #   define cpu_to_be64(x) (x)
167
168 #  else
169 #   error "Unknown byte order"
170 #  endif /* __BIG_ENDIAN */
171 # endif /* __LITTLE_ENDIAN */
172 #elif __APPLE__
173 #define __cpu_to_le64(x)                        OSSwapHostToLittleInt64(x)
174 #define __cpu_to_le32(x)                        OSSwapHostToLittleInt32(x)
175 #define __cpu_to_le16(x)                        OSSwapHostToLittleInt16(x)
176
177 #define __le16_to_cpu(x)                        OSSwapLittleToHostInt16(x)
178 #define __le32_to_cpu(x)                        OSSwapLittleToHostInt32(x)
179 #define __le64_to_cpu(x)                        OSSwapLittleToHostInt64(x)
180
181 #define cpu_to_le64(x)                          __cpu_to_le64(x)
182 #define cpu_to_le32(x)                          __cpu_to_le32(x)
183 #define cpu_to_le16(x)                          __cpu_to_le16(x)
184
185 #define le64_to_cpu(x)                          __le64_to_cpu(x)
186 #define le32_to_cpu(x)                          __le32_to_cpu(x)
187 #define le16_to_cpu(x)                          __le16_to_cpu(x)
188
189 #define __swab16(x)                             OSSwapInt16(x)
190 #define __swab32(x)                             OSSwapInt32(x)
191 #define __swab64(x)                             OSSwapInt64(x)
192 #define __swab16s(x)                            do { *(x) = __swab16(*(x)); } while (0)
193 #define __swab32s(x)                            do { *(x) = __swab32(*(x)); } while (0)
194 #define __swab64s(x)                            do { *(x) = __swab64(*(x)); } while (0)
195 #endif
196
197
198 # ifndef THREAD_SIZE /* x86_64 linux has THREAD_SIZE in userspace */
199 #  define THREAD_SIZE 8192
200 # endif
201
202 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
203
204 #define CHECK_STACK() do { } while(0)
205 #define CDEBUG_STACK() (0L)
206
207 /* initial pid  */
208 #define LUSTRE_LNET_PID          12345
209
210 #define ENTRY_NESTING_SUPPORT (1)
211 #define ENTRY_NESTING   do {;} while (0)
212 #define EXIT_NESTING   do {;} while (0)
213 #define __current_nesting_level() (0)
214
215 /**
216  * Platform specific declarations for cfs_curproc API (libcfs/curproc.h)
217  *
218  * Implementation is in linux-curproc.c
219  */
220 #define CFS_CURPROC_COMM_MAX (sizeof ((struct task_struct *)0)->comm)
221
222 typedef __u32 cfs_kernel_cap_t;
223
224 /**
225  * Module support (probably shouldn't be used in generic code?)
226  */
227 struct module {
228         int count;
229         char *name;
230 };
231
232 static inline void MODULE_AUTHOR(char *name)
233 {
234         printf("%s\n", name);
235 }
236 #define MODULE_DESCRIPTION(name) MODULE_AUTHOR(name)
237 #define MODULE_LICENSE(name) MODULE_AUTHOR(name)
238
239 #define THIS_MODULE (void *)0x11111
240 #define __init
241 #define __exit
242
243 static inline int request_module(char *name)
244 {
245         return (-EINVAL);
246 }
247
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
262 static inline int module_refcount(struct module *m)
263 {
264         return 1;
265 }
266
267 /***************************************************************************
268  *
269  * Linux kernel slab shrinker emulation. Currently used only in lu_object.c
270  *
271  ***************************************************************************/
272
273 struct shrinker {
274         ;
275 };
276
277 #define DEFAULT_SEEKS (0)
278
279 typedef int (*shrinker_t)(int, unsigned int);
280
281 static inline struct shrinker *set_shrinker(int seeks, shrinker_t shrinkert)
282 {
283         return (struct shrinker *)0xdeadbea1; // Cannot return NULL here
284 }
285
286 static inline void remove_shrinker(struct shrinker *shrinker)
287 {
288 }
289
290 /***************************************************************************
291  *
292  * Linux kernel radix tree emulation.
293  *
294  * XXX this stub-implementation assumes that elements stored in a radix tree
295  *     are struct page's and nothing else. Proper implementation will be
296  *     committed soon.
297  *
298  ***************************************************************************/
299
300 struct radix_tree_root {
301         struct list_head list;
302         void *rnode;
303 };
304
305 struct radix_tree_node {
306         struct list_head _node;
307         unsigned long index;
308         void *item;
309 };
310
311 #define RADIX_TREE_INIT(mask)   {               \
312                 NOT_IMPLEMENTED                 \
313 }
314
315 #define RADIX_TREE(name, mask) \
316         struct radix_tree_root name = RADIX_TREE_INIT(mask)
317
318
319 #define INIT_RADIX_TREE(root, mask)                                     \
320 do {                                                                    \
321         CFS_INIT_LIST_HEAD(&((struct radix_tree_root *)root)->list);    \
322         ((struct radix_tree_root *)root)->rnode = NULL;                 \
323 } while (0)
324
325 static inline int radix_tree_insert(struct radix_tree_root *root,
326                         unsigned long idx, void *item)
327 {
328         struct radix_tree_node *node;
329         node = malloc(sizeof(*node));
330         if (!node)
331                 return -ENOMEM;
332
333         CFS_INIT_LIST_HEAD(&node->_node);
334         node->index = idx;
335         node->item = item;
336         list_add_tail(&node->_node, &root->list);
337         root->rnode = (void *)1001;
338         return 0;
339 }
340
341 static inline struct radix_tree_node *radix_tree_lookup0(struct radix_tree_root *root,
342                                       unsigned long idx)
343 {
344         struct radix_tree_node *node;
345
346         if (list_empty(&root->list))
347                 return NULL;
348
349         cfs_list_for_each_entry_typed(node, &root->list,
350                                       struct radix_tree_node, _node)
351                 if (node->index == idx)
352                         return node;
353
354         return NULL;
355 }
356
357 static inline void *radix_tree_lookup(struct radix_tree_root *root,
358                                       unsigned long idx)
359 {
360         struct radix_tree_node *node = radix_tree_lookup0(root, idx);
361
362         if (node)
363                 return node->item;
364         return node;
365 }
366
367 static inline void *radix_tree_delete(struct radix_tree_root *root,
368                                       unsigned long idx)
369 {
370         struct radix_tree_node *p = radix_tree_lookup0(root, idx);
371         void *item;
372
373         if (p == NULL)
374                 return NULL;
375
376         list_del_init(&p->_node);
377         item = p->item;
378         free(p);
379         if (list_empty(&root->list))
380                 root->rnode = NULL;
381
382         return item;
383 }
384
385 static inline unsigned int
386 radix_tree_gang_lookup(struct radix_tree_root *root, void **results,
387                        unsigned long first_index, unsigned int max_items)
388 {
389         int i;
390         int j = 0;
391
392         for (i = 0; i < max_items; i++, first_index++) {
393                 results[j++] = radix_tree_lookup(root, first_index);
394                 if (results[j - 1] == NULL)
395                         --j;
396         }
397
398         return j;
399 }
400
401 static inline int radix_tree_preload(int gfp_mask)
402 {
403         return 0;
404 }
405
406 void radix_tree_init(void);
407
408 static inline void radix_tree_preload_end(void)
409 {
410 }
411
412 typedef ssize_t (*read_actor_t)();
413
414 #define CFS_IFSHIFT 12
415
416 #define CFS_IFTODT(type)           (((type) & S_IFMT) >> CFS_IFSHIFT)
417 #define CFS_DTTOIF(dirtype)        ((dirtype) << CFS_IFSHIFT)
418
419 #endif