Whamcloud - gitweb
LU-1346 libcfs: tcpip/time/type related cleanup
[fs/lustre-release.git] / libcfs / libcfs / linux / linux-curproc.c
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  * Copyright (c) 2012, Intel Corporation.
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(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(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 static int cfs_access_process_vm(struct task_struct *tsk, unsigned long addr,
203                                  void *buf, int len, int write)
204 {
205         /* Just copied from kernel for the kernels which doesn't
206          * have access_process_vm() exported */
207         struct mm_struct *mm;
208         struct vm_area_struct *vma;
209         struct page *page;
210         void *old_buf = buf;
211
212         mm = get_task_mm(tsk);
213         if (!mm)
214                 return 0;
215
216         down_read(&mm->mmap_sem);
217         /* ignore errors, just check how much was sucessfully transfered */
218         while (len) {
219                 int bytes, rc, offset;
220                 void *maddr;
221
222                 rc = get_user_pages(tsk, mm, addr, 1,
223                                      write, 1, &page, &vma);
224                 if (rc <= 0)
225                         break;
226
227                 bytes = len;
228                 offset = addr & (PAGE_SIZE-1);
229                 if (bytes > PAGE_SIZE-offset)
230                         bytes = PAGE_SIZE-offset;
231
232                 maddr = kmap(page);
233                 if (write) {
234                         copy_to_user_page(vma, page, addr,
235                                           maddr + offset, buf, bytes);
236                         set_page_dirty_lock(page);
237                 } else {
238                         copy_from_user_page(vma, page, addr,
239                                             buf, maddr + offset, bytes);
240                 }
241                 kunmap(page);
242                 page_cache_release(page);
243                 len -= bytes;
244                 buf += bytes;
245                 addr += bytes;
246         }
247         up_read(&mm->mmap_sem);
248         mmput(mm);
249
250         return buf - old_buf;
251 }
252
253 /* Read the environment variable of current process specified by @key. */
254 int cfs_get_environ(const char *key, char *value, int *val_len)
255 {
256         struct mm_struct *mm;
257         char *buffer;
258         int buf_len = PAGE_CACHE_SIZE;
259         int key_len = strlen(key);
260         unsigned long addr;
261         int rc;
262         ENTRY;
263
264         buffer = kmalloc(buf_len, GFP_USER);
265         if (!buffer)
266                 RETURN(-ENOMEM);
267
268         mm = get_task_mm(current);
269         if (!mm) {
270                 kfree(buffer);
271                 RETURN(-EINVAL);
272         }
273
274         /* Avoid deadlocks on mmap_sem if called from sys_mmap_pgoff(),
275          * which is already holding mmap_sem for writes.  If some other
276          * thread gets the write lock in the meantime, this thread will
277          * block, but at least it won't deadlock on itself.  LU-1735 */
278         if (down_read_trylock(&mm->mmap_sem) == 0) {
279                 kfree(buffer);
280                 return -EDEADLK;
281         }
282         up_read(&mm->mmap_sem);
283
284         addr = mm->env_start;
285         while (addr < mm->env_end) {
286                 int this_len, retval, scan_len;
287                 char *env_start, *env_end;
288
289                 memset(buffer, 0, buf_len);
290
291                 this_len = min_t(int, mm->env_end - addr, buf_len);
292                 retval = cfs_access_process_vm(current, addr, buffer,
293                                                this_len, 0);
294                 if (retval != this_len)
295                         break;
296
297                 addr += retval;
298
299                 /* Parse the buffer to find out the specified key/value pair.
300                  * The "key=value" entries are separated by '\0'. */
301                 env_start = buffer;
302                 scan_len = this_len;
303                 while (scan_len) {
304                         char *entry;
305                         int entry_len;
306
307                         env_end = memscan(env_start, '\0', scan_len);
308                         LASSERT(env_end >= env_start &&
309                                 env_end <= env_start + scan_len);
310
311                         /* The last entry of this buffer cross the buffer
312                          * boundary, reread it in next cycle. */
313                         if (unlikely(env_end - env_start == scan_len)) {
314                                 /* This entry is too large to fit in buffer */
315                                 if (unlikely(scan_len == this_len)) {
316                                         CERROR("Too long env variable.\n");
317                                         GOTO(out, rc = -EINVAL);
318                                 }
319                                 addr -= scan_len;
320                                 break;
321                         }
322
323                         entry = env_start;
324                         entry_len = env_end - env_start;
325
326                         /* Key length + length of '=' */
327                         if (entry_len > key_len + 1 &&
328                             !memcmp(entry, key, key_len)) {
329                                 entry += key_len + 1;
330                                 entry_len -= key_len + 1;
331                                 /* The 'value' buffer passed in is too small.*/
332                                 if (entry_len >= *val_len)
333                                         GOTO(out, rc = -EOVERFLOW);
334
335                                 memcpy(value, entry, entry_len);
336                                 *val_len = entry_len;
337                                 GOTO(out, rc = 0);
338                         }
339
340                         scan_len -= (env_end - env_start + 1);
341                         env_start = env_end + 1;
342                 }
343         }
344         GOTO(out, rc = -ENOENT);
345
346 out:
347         mmput(mm);
348         kfree((void *)buffer);
349         return rc;
350 }
351 EXPORT_SYMBOL(cfs_get_environ);
352
353 EXPORT_SYMBOL(cfs_curproc_uid);
354 EXPORT_SYMBOL(cfs_curproc_pid);
355 EXPORT_SYMBOL(cfs_curproc_euid);
356 EXPORT_SYMBOL(cfs_curproc_gid);
357 EXPORT_SYMBOL(cfs_curproc_egid);
358 EXPORT_SYMBOL(cfs_curproc_fsuid);
359 EXPORT_SYMBOL(cfs_curproc_fsgid);
360 EXPORT_SYMBOL(cfs_curproc_umask);
361 EXPORT_SYMBOL(cfs_curproc_comm);
362 EXPORT_SYMBOL(cfs_curproc_groups_nr);
363 EXPORT_SYMBOL(cfs_curproc_groups_dump);
364 EXPORT_SYMBOL(cfs_curproc_is_in_groups);
365 EXPORT_SYMBOL(cfs_cap_raise);
366 EXPORT_SYMBOL(cfs_cap_lower);
367 EXPORT_SYMBOL(cfs_cap_raised);
368 EXPORT_SYMBOL(cfs_curproc_cap_pack);
369 EXPORT_SYMBOL(cfs_curproc_cap_unpack);
370 EXPORT_SYMBOL(cfs_capable);
371
372 /*
373  * Local variables:
374  * c-indentation-style: "K&R"
375  * c-basic-offset: 8
376  * tab-width: 8
377  * fill-column: 80
378  * scroll-step: 1
379  * End:
380  */