Whamcloud - gitweb
Update copyrights on source files changed since 2010-02-15.
[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 (c) 2008, 2010, Oracle and/or its affiliates. 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 cfs_gettimeofday(tv) gettimeofday(tv, NULL);
109 typedef unsigned long long cfs_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 #define cfs_get_fd(x)   NULL
129 #define cfs_put_file(f) do {} while (0)
130
131 #ifdef __linux__
132 /* Userpace byte flipping */
133 # include <endian.h>
134 # include <byteswap.h>
135 # define __swab16(x) bswap_16(x)
136 # define __swab32(x) bswap_32(x)
137 # define __swab64(x) bswap_64(x)
138 # define __swab16s(x) do {*(x) = bswap_16(*(x));} while (0)
139 # define __swab32s(x) do {*(x) = bswap_32(*(x));} while (0)
140 # define __swab64s(x) do {*(x) = bswap_64(*(x));} while (0)
141 # if __BYTE_ORDER == __LITTLE_ENDIAN
142 #  define le16_to_cpu(x) (x)
143 #  define cpu_to_le16(x) (x)
144 #  define le32_to_cpu(x) (x)
145 #  define cpu_to_le32(x) (x)
146 #  define le64_to_cpu(x) (x)
147 #  define cpu_to_le64(x) (x)
148
149 #  define be16_to_cpu(x) bswap_16(x)
150 #  define cpu_to_be16(x) bswap_16(x)
151 #  define be32_to_cpu(x) bswap_32(x)
152 #  define cpu_to_be32(x) bswap_32(x)
153 #  define be64_to_cpu(x) bswap_64(x)
154 #  define cpu_to_be64(x) bswap_64(x)
155 # else
156 #  if __BYTE_ORDER == __BIG_ENDIAN
157 #   define le16_to_cpu(x) bswap_16(x)
158 #   define cpu_to_le16(x) bswap_16(x)
159 #   define le32_to_cpu(x) bswap_32(x)
160 #   define cpu_to_le32(x) bswap_32(x)
161 #   define le64_to_cpu(x) bswap_64(x)
162 #   define cpu_to_le64(x) bswap_64(x)
163
164 #   define be16_to_cpu(x) (x)
165 #   define cpu_to_be16(x) (x)
166 #   define be32_to_cpu(x) (x)
167 #   define cpu_to_be32(x) (x)
168 #   define be64_to_cpu(x) (x)
169 #   define cpu_to_be64(x) (x)
170
171 #  else
172 #   error "Unknown byte order"
173 #  endif /* __BIG_ENDIAN */
174 # endif /* __LITTLE_ENDIAN */
175 #elif __APPLE__
176 #define __cpu_to_le64(x)                        OSSwapHostToLittleInt64(x)
177 #define __cpu_to_le32(x)                        OSSwapHostToLittleInt32(x)
178 #define __cpu_to_le16(x)                        OSSwapHostToLittleInt16(x)
179
180 #define __le16_to_cpu(x)                        OSSwapLittleToHostInt16(x)
181 #define __le32_to_cpu(x)                        OSSwapLittleToHostInt32(x)
182 #define __le64_to_cpu(x)                        OSSwapLittleToHostInt64(x)
183
184 #define cpu_to_le64(x)                          __cpu_to_le64(x)
185 #define cpu_to_le32(x)                          __cpu_to_le32(x)
186 #define cpu_to_le16(x)                          __cpu_to_le16(x)
187
188 #define le64_to_cpu(x)                          __le64_to_cpu(x)
189 #define le32_to_cpu(x)                          __le32_to_cpu(x)
190 #define le16_to_cpu(x)                          __le16_to_cpu(x)
191
192 #define __swab16(x)                             OSSwapInt16(x)
193 #define __swab32(x)                             OSSwapInt32(x)
194 #define __swab64(x)                             OSSwapInt64(x)
195 #define __swab16s(x)                            do { *(x) = __swab16(*(x)); } while (0)
196 #define __swab32s(x)                            do { *(x) = __swab32(*(x)); } while (0)
197 #define __swab64s(x)                            do { *(x) = __swab64(*(x)); } while (0)
198 #endif
199
200
201 # ifndef THREAD_SIZE /* x86_64 linux has THREAD_SIZE in userspace */
202 #  define CFS_THREAD_SIZE 8192
203 # else
204 #  define CFS_THREAD_SIZE THREAD_SIZE
205 # endif
206
207 #define LUSTRE_TRACE_SIZE (CFS_THREAD_SIZE >> 5)
208
209 #define CFS_CHECK_STACK() do { } while(0)
210 #define CDEBUG_STACK() (0L)
211
212 /* initial pid  */
213 #define LUSTRE_LNET_PID          12345
214
215 #define ENTRY_NESTING_SUPPORT (1)
216 #define ENTRY_NESTING   do {;} while (0)
217 #define EXIT_NESTING   do {;} while (0)
218 #define __current_nesting_level() (0)
219
220 /**
221  * Platform specific declarations for cfs_curproc API (libcfs/curproc.h)
222  *
223  * Implementation is in linux-curproc.c
224  */
225 #define CFS_CURPROC_COMM_MAX (sizeof ((struct task_struct *)0)->comm)
226
227 typedef __u32 cfs_kernel_cap_t;
228
229 /**
230  * Module support (probably shouldn't be used in generic code?)
231  */
232 typedef struct cfs_module {
233         int count;
234         char *name;
235 } cfs_module_t;
236
237 static inline void MODULE_AUTHOR(char *name)
238 {
239         printf("%s\n", name);
240 }
241 #define MODULE_DESCRIPTION(name) MODULE_AUTHOR(name)
242 #define MODULE_LICENSE(name) MODULE_AUTHOR(name)
243
244 #define THIS_MODULE (void *)0x11111
245 #define __init
246 #define __exit
247
248 static inline int cfs_request_module(const char *name, ...)
249 {
250         return (-EINVAL);
251 }
252
253 static inline void __cfs_module_get(cfs_module_t *module)
254 {
255 }
256
257 static inline int cfs_try_module_get(cfs_module_t *module)
258 {
259         return 1;
260 }
261
262 static inline void cfs_module_put(cfs_module_t *module)
263 {
264 }
265
266
267 static inline int cfs_module_refcount(cfs_module_t *m)
268 {
269         return 1;
270 }
271
272 /***************************************************************************
273  *
274  * Linux kernel slab shrinker emulation. Currently used only in lu_object.c
275  *
276  ***************************************************************************/
277
278 struct cfs_shrinker {
279         ;
280 };
281
282 #define CFS_DEFAULT_SEEKS (0)
283
284 typedef int (*cfs_shrinker_t)(int, unsigned int);
285
286 static inline
287 struct cfs_shrinker *cfs_set_shrinker(int seeks, cfs_shrinker_t shrink)
288 {
289         return (struct cfs_shrinker *)0xdeadbea1; // Cannot return NULL here
290 }
291
292 static inline void cfs_remove_shrinker(struct cfs_shrinker *shrinker)
293 {
294 }
295
296 /***************************************************************************
297  *
298  * Linux kernel radix tree emulation.
299  *
300  * XXX this stub-implementation assumes that elements stored in a radix tree
301  *     are struct page's and nothing else. Proper implementation will be
302  *     committed soon.
303  *
304  ***************************************************************************/
305
306 struct radix_tree_root {
307         cfs_list_t list;
308         void *rnode;
309 };
310
311 struct radix_tree_node {
312         cfs_list_t _node;
313         unsigned long index;
314         void *item;
315 };
316
317 #define RADIX_TREE_INIT(mask)   {               \
318                 NOT_IMPLEMENTED                 \
319 }
320
321 #define RADIX_TREE(name, mask) \
322         struct radix_tree_root name = RADIX_TREE_INIT(mask)
323
324
325 #define INIT_RADIX_TREE(root, mask)                                     \
326 do {                                                                    \
327         CFS_INIT_LIST_HEAD(&((struct radix_tree_root *)root)->list);    \
328         ((struct radix_tree_root *)root)->rnode = NULL;                 \
329 } while (0)
330
331 static inline int radix_tree_insert(struct radix_tree_root *root,
332                         unsigned long idx, void *item)
333 {
334         struct radix_tree_node *node;
335         node = malloc(sizeof(*node));
336         if (!node)
337                 return -ENOMEM;
338
339         CFS_INIT_LIST_HEAD(&node->_node);
340         node->index = idx;
341         node->item = item;
342         cfs_list_add_tail(&node->_node, &root->list);
343         root->rnode = (void *)1001;
344         return 0;
345 }
346
347 static inline struct radix_tree_node *radix_tree_lookup0(struct radix_tree_root *root,
348                                       unsigned long idx)
349 {
350         struct radix_tree_node *node;
351
352         if (cfs_list_empty(&root->list))
353                 return NULL;
354
355         cfs_list_for_each_entry_typed(node, &root->list,
356                                       struct radix_tree_node, _node)
357                 if (node->index == idx)
358                         return node;
359
360         return NULL;
361 }
362
363 static inline void *radix_tree_lookup(struct radix_tree_root *root,
364                                       unsigned long idx)
365 {
366         struct radix_tree_node *node = radix_tree_lookup0(root, idx);
367
368         if (node)
369                 return node->item;
370         return node;
371 }
372
373 static inline void *radix_tree_delete(struct radix_tree_root *root,
374                                       unsigned long idx)
375 {
376         struct radix_tree_node *p = radix_tree_lookup0(root, idx);
377         void *item;
378
379         if (p == NULL)
380                 return NULL;
381
382         cfs_list_del_init(&p->_node);
383         item = p->item;
384         free(p);
385         if (cfs_list_empty(&root->list))
386                 root->rnode = NULL;
387
388         return item;
389 }
390
391 static inline unsigned int
392 radix_tree_gang_lookup(struct radix_tree_root *root, void **results,
393                        unsigned long first_index, unsigned int max_items)
394 {
395         int i;
396         int j = 0;
397
398         for (i = 0; i < max_items; i++, first_index++) {
399                 results[j++] = radix_tree_lookup(root, first_index);
400                 if (results[j - 1] == NULL)
401                         --j;
402         }
403
404         return j;
405 }
406
407 static inline int radix_tree_preload(int gfp_mask)
408 {
409         return 0;
410 }
411
412 void radix_tree_init(void);
413
414 static inline void radix_tree_preload_end(void)
415 {
416 }
417
418 typedef ssize_t (*read_actor_t)();
419
420 #define CFS_IFSHIFT 12
421
422 #define CFS_IFTODT(type)           (((type) & S_IFMT) >> CFS_IFSHIFT)
423 #define CFS_DTTOIF(dirtype)        ((dirtype) << CFS_IFSHIFT)
424
425 #endif