Whamcloud - gitweb
LU-1201 checksum: add libcfs crypto hash
[fs/lustre-release.git] / libcfs / include / libcfs / curproc.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * libcfs/include/libcfs/curproc.h
35  *
36  * Lustre curproc API declaration
37  *
38  * Author: Nikita Danilov <nikita@clusterfs.com>
39  */
40
41 #ifndef __LIBCFS_CURPROC_H__
42 #define __LIBCFS_CURPROC_H__
43
44 #ifdef __KERNEL__
45 /*
46  * Portable API to access common characteristics of "current" UNIX process.
47  *
48  * Implemented in portals/include/libcfs/<os>/
49  */
50 uid_t  cfs_curproc_uid(void);
51 gid_t  cfs_curproc_gid(void);
52 uid_t  cfs_curproc_euid(void);
53 gid_t  cfs_curproc_egid(void);
54 uid_t  cfs_curproc_fsuid(void);
55 gid_t  cfs_curproc_fsgid(void);
56 pid_t  cfs_curproc_pid(void);
57 int    cfs_curproc_groups_nr(void);
58 int    cfs_curproc_is_in_groups(gid_t group);
59 void   cfs_curproc_groups_dump(gid_t *array, int size);
60 mode_t cfs_curproc_umask(void);
61 char  *cfs_curproc_comm(void);
62
63
64 /*
65  * Plus, platform-specific constant
66  *
67  * CFS_CURPROC_COMM_MAX,
68  *
69  * and opaque scalar type
70  *
71  * cfs_kernel_cap_t
72  */
73
74 /* check if task is running in compat mode.*/
75 int cfs_curproc_is_32bit(void);
76 int cfs_get_environ(const char *key, char *value, int *val_len);
77 #endif
78
79 typedef __u32 cfs_cap_t;
80
81 #define CFS_CAP_CHOWN                   0
82 #define CFS_CAP_DAC_OVERRIDE            1
83 #define CFS_CAP_DAC_READ_SEARCH         2
84 #define CFS_CAP_FOWNER                  3
85 #define CFS_CAP_FSETID                  4
86 #define CFS_CAP_LINUX_IMMUTABLE         9
87 #define CFS_CAP_SYS_ADMIN              21
88 #define CFS_CAP_SYS_BOOT               23
89 #define CFS_CAP_SYS_RESOURCE           24
90
91 #define CFS_CAP_FS_MASK ((1 << CFS_CAP_CHOWN) |                 \
92                          (1 << CFS_CAP_DAC_OVERRIDE) |          \
93                          (1 << CFS_CAP_DAC_READ_SEARCH) |       \
94                          (1 << CFS_CAP_FOWNER) |                \
95                          (1 << CFS_CAP_FSETID ) |               \
96                          (1 << CFS_CAP_LINUX_IMMUTABLE) |       \
97                          (1 << CFS_CAP_SYS_ADMIN) |             \
98                          (1 << CFS_CAP_SYS_BOOT) |              \
99                          (1 << CFS_CAP_SYS_RESOURCE))
100
101 void cfs_cap_raise(cfs_cap_t cap);
102 void cfs_cap_lower(cfs_cap_t cap);
103 int cfs_cap_raised(cfs_cap_t cap);
104 cfs_cap_t cfs_curproc_cap_pack(void);
105 void cfs_curproc_cap_unpack(cfs_cap_t cap);
106 int cfs_capable(cfs_cap_t cap);
107
108 /* __LIBCFS_CURPROC_H__ */
109 #endif
110 /*
111  * Local variables:
112  * c-indentation-style: "K&R"
113  * c-basic-offset: 8
114  * tab-width: 8
115  * fill-column: 80
116  * scroll-step: 1
117  * End:
118  */