Whamcloud - gitweb
b=22375 Add walk_stack callback for dump_trace.
[fs/lustre-release.git] / libcfs / libcfs / linux / linux-curproc.c
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/libcfs/linux/linux-curproc.c
37  *
38  * Lustre curproc API implementation for Linux kernel
39  *
40  * Author: Nikita Danilov <nikita@clusterfs.com>
41  */
42
43 #include <linux/sched.h>
44 #include <linux/fs_struct.h>
45
46 #include <linux/compat.h>
47 #include <linux/thread_info.h>
48
49 #define DEBUG_SUBSYSTEM S_LNET
50
51 #include <libcfs/libcfs.h>
52
53 /*
54  * Implementation of cfs_curproc API (see portals/include/libcfs/curproc.h)
55  * for Linux kernel.
56  */
57
58 uid_t  cfs_curproc_uid(void)
59 {
60         return current_uid();
61 }
62
63 gid_t  cfs_curproc_gid(void)
64 {
65         return current_gid();
66 }
67
68 uid_t  cfs_curproc_fsuid(void)
69 {
70         return current_fsuid();
71 }
72
73 uid_t  cfs_curproc_euid(void)
74 {
75         return current_euid();
76 }
77
78 uid_t  cfs_curproc_egid(void)
79 {
80         return current_egid();
81 }
82
83 gid_t  cfs_curproc_fsgid(void)
84 {
85         return current_fsgid();
86 }
87
88 pid_t  cfs_curproc_pid(void)
89 {
90         return current->pid;
91 }
92
93 int    cfs_curproc_groups_nr(void)
94 {
95         int nr;
96
97         task_lock(current);
98         nr = current_cred()->group_info->ngroups;
99         task_unlock(current);
100         return nr;
101 }
102
103 void   cfs_curproc_groups_dump(gid_t *array, int size)
104 {
105         task_lock(current);
106         size = min_t(int, size, current_cred()->group_info->ngroups);
107         memcpy(array, current_cred()->group_info->blocks[0], size * sizeof(__u32));
108         task_unlock(current);
109 }
110
111
112 int    cfs_curproc_is_in_groups(gid_t gid)
113 {
114         return in_group_p(gid);
115 }
116
117 mode_t cfs_curproc_umask(void)
118 {
119         return current->fs->umask;
120 }
121
122 char  *cfs_curproc_comm(void)
123 {
124         return current->comm;
125 }
126
127 /* Currently all the CFS_CAP_* defines match CAP_* ones. */
128 #define cfs_cap_pack(cap) (cap)
129 #define cfs_cap_unpack(cap) (cap)
130
131 void cfs_cap_raise(cfs_cap_t cap)
132 {
133         struct cred *cred;
134         if ((cred = prepare_creds())) {
135                 cap_raise(cred->cap_effective, cfs_cap_unpack(cap));
136                 commit_creds(cred);
137         }
138 }
139
140 void cfs_cap_lower(cfs_cap_t cap)
141 {
142         struct cred *cred;
143         if ((cred = prepare_creds())) {
144                 cap_lower(cred->cap_effective, cfs_cap_unpack(cap));
145                 commit_creds(cred);
146         }
147 }
148
149 int cfs_cap_raised(cfs_cap_t cap)
150 {
151         return cap_raised(current_cap(), cfs_cap_unpack(cap));
152 }
153
154 void cfs_kernel_cap_pack(cfs_kernel_cap_t kcap, cfs_cap_t *cap)
155 {
156 #if defined (_LINUX_CAPABILITY_VERSION) && _LINUX_CAPABILITY_VERSION == 0x19980330
157         *cap = cfs_cap_pack(kcap);
158 #elif defined (_LINUX_CAPABILITY_VERSION) && _LINUX_CAPABILITY_VERSION == 0x20071026
159         *cap = cfs_cap_pack(kcap[0]);
160 #elif defined(_KERNEL_CAPABILITY_VERSION) && _KERNEL_CAPABILITY_VERSION == 0x20080522
161         /* XXX lost high byte */
162         *cap = cfs_cap_pack(kcap.cap[0]);
163 #else
164         #error "need correct _KERNEL_CAPABILITY_VERSION "
165 #endif
166 }
167
168 void cfs_kernel_cap_unpack(cfs_kernel_cap_t *kcap, cfs_cap_t cap)
169 {
170 #if defined (_LINUX_CAPABILITY_VERSION) && _LINUX_CAPABILITY_VERSION == 0x19980330
171         *kcap = cfs_cap_unpack(cap);
172 #elif defined (_LINUX_CAPABILITY_VERSION) && _LINUX_CAPABILITY_VERSION == 0x20071026
173         (*kcap)[0] = cfs_cap_unpack(cap);
174 #elif defined(_KERNEL_CAPABILITY_VERSION) && _KERNEL_CAPABILITY_VERSION == 0x20080522
175         kcap->cap[0] = cfs_cap_unpack(cap);
176 #else
177         #error "need correct _KERNEL_CAPABILITY_VERSION "
178 #endif
179 }
180
181 cfs_cap_t cfs_curproc_cap_pack(void)
182 {
183         cfs_cap_t cap;
184         cfs_kernel_cap_pack(current_cap(), &cap);
185         return cap;
186 }
187
188 void cfs_curproc_cap_unpack(cfs_cap_t cap)
189 {
190         struct cred *cred;
191         if ((cred = prepare_creds())) {
192                 cfs_kernel_cap_unpack(&cred->cap_effective, cap);
193                 commit_creds(cred);
194         }
195 }
196
197 int cfs_capable(cfs_cap_t cap)
198 {
199         return capable(cfs_cap_unpack(cap));
200 }
201
202 /* Check if task is running in 32-bit API mode, for the purpose of
203  * userspace binary interfaces.  On 32-bit Linux this is (unfortunately)
204  * always true, even if the application is using LARGEFILE64 and 64-bit
205  * APIs, because Linux provides no way for the filesystem to know if it
206  * is called via 32-bit or 64-bit APIs.  Other clients may vary.  On
207  * 64-bit systems, this will only be true if the binary is calling a
208  * 32-bit system call. */
209 int cfs_curproc_is_32bit(void)
210 {
211 #ifdef HAVE_IS_COMPAT_TASK
212         return is_compat_task();
213 #else
214         return (BITS_PER_LONG == 32);
215 #endif
216 }
217
218 EXPORT_SYMBOL(cfs_curproc_uid);
219 EXPORT_SYMBOL(cfs_curproc_pid);
220 EXPORT_SYMBOL(cfs_curproc_euid);
221 EXPORT_SYMBOL(cfs_curproc_gid);
222 EXPORT_SYMBOL(cfs_curproc_egid);
223 EXPORT_SYMBOL(cfs_curproc_fsuid);
224 EXPORT_SYMBOL(cfs_curproc_fsgid);
225 EXPORT_SYMBOL(cfs_curproc_umask);
226 EXPORT_SYMBOL(cfs_curproc_comm);
227 EXPORT_SYMBOL(cfs_curproc_groups_nr);
228 EXPORT_SYMBOL(cfs_curproc_groups_dump);
229 EXPORT_SYMBOL(cfs_curproc_is_in_groups);
230 EXPORT_SYMBOL(cfs_cap_raise);
231 EXPORT_SYMBOL(cfs_cap_lower);
232 EXPORT_SYMBOL(cfs_cap_raised);
233 EXPORT_SYMBOL(cfs_curproc_cap_pack);
234 EXPORT_SYMBOL(cfs_curproc_cap_unpack);
235 EXPORT_SYMBOL(cfs_capable);
236 EXPORT_SYMBOL(cfs_curproc_is_32bit);
237
238 /*
239  * Local variables:
240  * c-indentation-style: "K&R"
241  * c-basic-offset: 8
242  * tab-width: 8
243  * fill-column: 80
244  * scroll-step: 1
245  * End:
246  */