Linux autoconf: fix name for struct cred test
[openafs.git] / src / afs / LINUX / osi_groups.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /*
11  * Implements:
12  * setgroups (syscall)
13  * setpag
14  *
15  */
16 #include <afsconfig.h>
17 #include "afs/param.h"
18 #ifdef LINUX_KEYRING_SUPPORT
19 #include <linux/seq_file.h>
20 #endif
21
22
23 #include "afs/sysincludes.h"
24 #include "afsincludes.h"
25 #include "afs/afs_stats.h"      /* statistics */
26 #include "afs/nfsclient.h"
27 #include "osi_compat.h"
28
29 #include <linux/smp_lock.h>
30
31 #ifdef AFS_LINUX26_ONEGROUP_ENV
32 # define NUMPAGGROUPS 1
33
34 static afs_uint32
35 afs_linux_pag_from_groups(struct group_info *group_info) {
36     afs_uint32 g0 = 0;
37     afs_uint32 i;
38
39     if (group_info->ngroups < NUMPAGGROUPS)
40         return NOPAG;
41
42     for (i = 0; (i < group_info->ngroups &&
43                  (g0 = GROUP_AT(group_info, i)) != (gid_t) NOGROUP); i++) {
44         if (((g0 >> 24) & 0xff) == 'A')
45             return g0;
46     }
47     return NOPAG;
48 }
49
50 static inline void
51 afs_linux_pag_to_groups(afs_uint32 newpag,
52                         struct group_info *old, struct group_info **new) {
53     int need_space = 0;
54     int i;
55     int j;
56
57     if (afs_linux_pag_from_groups(old) == NOPAG)
58         need_space = NUMPAGGROUPS;
59
60     *new = groups_alloc(old->ngroups + need_space);
61
62     for (i = 0, j = 0; i < old->ngroups; ++i) {
63         int ths = GROUP_AT(old, i);
64         int last = i > 0 ? GROUP_AT(old, i-1) : 0;
65         if ((ths >> 24) == 'A')
66             continue;
67         if (last <= newpag && ths > newpag) {
68            GROUP_AT(*new, j) = newpag;
69            j++;
70         }
71         GROUP_AT(*new, j) = ths;
72         j++;
73     }
74     if (j != i + need_space)
75         GROUP_AT(*new, j) = newpag;
76 }
77
78 #else
79 # define NUMPAGGROUPS 2
80
81 static inline afs_uint32
82 afs_linux_pag_from_groups(struct group_info *group_info) {
83
84     if (group_info->ngroups < NUMPAGGROUPS)
85         return NOPAG;
86
87     return afs_get_pag_from_groups(GROUP_AT(group_info, 0), GROUP_AT(group_info, 1));
88 }
89
90 static inline void
91 afs_linux_pag_to_groups(afs_uint32 newpag,
92                         struct group_info *old, struct group_info *new) {
93     int need_space = 0;
94     int i;
95     gid_t g0;
96     gid_t g1;
97
98     if (afs_linux_pag_from_groups(old) == NOPAG)
99         need_space = NUMPAGGGROUPS;
100
101     *new = groups_alloc(old->ngroups + need_space);
102
103     for (i = 0; i < old->ngroups; ++i)
104           GROUP_AT(new, i + need_space) = GROUP_AT(old, i);
105
106     afs_get_groups_from_pag(newpag, &g0, g1);
107     GROUP_AT(new, 0) = g0;
108     GROUP_AT(new, 1) = g1;
109 }
110 #endif
111
112 afs_int32
113 osi_get_group_pag(afs_ucred_t *cred) {
114     return afs_linux_pag_from_groups(afs_cr_group_info(cred));
115 }
116
117
118 static int
119 afs_setgroups(cred_t **cr, struct group_info *group_info, int change_parent)
120 {
121     struct group_info *old_info;
122
123     AFS_STATCNT(afs_setgroups);
124
125     old_info = afs_cr_group_info(*cr);
126     get_group_info(group_info);
127     afs_set_cr_group_info(*cr, group_info);
128     put_group_info(old_info);
129
130     crset(*cr);
131
132 #if defined(STRUCT_TASK_STRUCT_HAS_PARENT) && !defined(STRUCT_TASK_STRUCT_HAS_CRED)
133     if (change_parent) {
134         old_info = current->parent->group_info;
135         get_group_info(group_info);
136         current->parent->group_info = group_info;
137         put_group_info(old_info);
138     }
139 #endif
140
141     return (0);
142 }
143
144 int
145 __setpag(cred_t **cr, afs_uint32 pagvalue, afs_uint32 *newpag,
146          int change_parent)
147 {
148     struct group_info *group_info;
149     struct group_info *tmp;
150
151     get_group_info(afs_cr_group_info(*cr));
152     group_info = afs_cr_group_info(*cr);
153
154     *newpag = (pagvalue == -1 ? genpag() : pagvalue);
155     afs_linux_pag_to_groups(*newpag, group_info, &tmp);
156
157     put_group_info(group_info);
158     group_info = tmp;
159
160     afs_setgroups(cr, group_info, change_parent);
161
162     put_group_info(group_info);
163
164     return 0;
165 }
166
167 #ifdef LINUX_KEYRING_SUPPORT
168 extern struct key_type key_type_keyring __attribute__((weak));
169 static struct key_type *__key_type_keyring = &key_type_keyring;
170
171 static int
172 install_session_keyring(struct key *keyring)
173 {
174     struct key *old;
175     char desc[20];
176     int code = -EINVAL;
177     int flags;
178
179     if (!__key_type_keyring)
180         return code;
181
182     if (!keyring) {
183
184         /* create an empty session keyring */
185         sprintf(desc, "_ses.%u", current->tgid);
186
187         /* if we're root, don't count the keyring against our quota. This
188          * avoids starvation issues when dealing with PAM modules that always
189          * setpag() as root */
190         if (current_uid() == 0)
191             flags = KEY_ALLOC_NOT_IN_QUOTA;
192         else
193             flags = KEY_ALLOC_IN_QUOTA;
194
195         keyring = afs_linux_key_alloc(
196                             __key_type_keyring, desc,
197                             current_uid(), current_gid(),
198                             (KEY_POS_ALL & ~KEY_POS_SETATTR) | KEY_USR_ALL,
199                             flags);
200
201         if (IS_ERR(keyring)) {
202             code = PTR_ERR(keyring);
203             goto out;
204         }
205     }
206
207     code = key_instantiate_and_link(keyring, NULL, 0, NULL, NULL);
208     if (code < 0) {
209         key_put(keyring);
210         goto out;
211     }
212
213     /* install the keyring */
214     spin_lock_irq(&current->sighand->siglock);
215     old = task_session_keyring(current);
216     smp_wmb();
217     task_session_keyring(current) = keyring;
218     spin_unlock_irq(&current->sighand->siglock);
219
220     if (old)
221             key_put(old);
222
223 out:
224     return code;
225 }
226 #endif /* LINUX_KEYRING_SUPPORT */
227
228 int
229 setpag(cred_t **cr, afs_uint32 pagvalue, afs_uint32 *newpag,
230        int change_parent)
231 {
232     int code;
233
234     AFS_STATCNT(setpag);
235
236     code = __setpag(cr, pagvalue, newpag, change_parent);
237
238 #ifdef LINUX_KEYRING_SUPPORT
239     if (code == 0 && afs_cr_rgid(*cr) != NFSXLATOR_CRED) {
240         code = install_session_keyring(NULL);
241         if (code == 0 && current_session_keyring()) {
242             struct key *key;
243             key_perm_t perm;
244
245             perm = KEY_POS_VIEW | KEY_POS_SEARCH;
246             perm |= KEY_USR_VIEW | KEY_USR_SEARCH;
247
248             key = afs_linux_key_alloc(&key_type_afs_pag, "_pag", 0, 0, perm, KEY_ALLOC_NOT_IN_QUOTA);
249
250             if (!IS_ERR(key)) {
251                 key_instantiate_and_link(key, (void *) newpag, sizeof(afs_uint32),
252                                          current_session_keyring(), NULL);
253                 key_put(key);
254             } else {
255                 code = PTR_ERR(key);
256             }
257         }
258     }
259 #endif /* LINUX_KEYRING_SUPPORT */
260
261     return code;
262 }
263
264
265 /* Intercept the standard system call. */
266 extern asmlinkage long (*sys_setgroupsp) (int gidsetsize, gid_t * grouplist);
267 asmlinkage long
268 afs_xsetgroups(int gidsetsize, gid_t * grouplist)
269 {
270     long code;
271     cred_t *cr = crref();
272     afs_uint32 junk;
273     int old_pag;
274
275     lock_kernel();
276     old_pag = PagInCred(cr);
277     crfree(cr);
278     unlock_kernel();
279
280     code = (*sys_setgroupsp) (gidsetsize, grouplist);
281     if (code) {
282         return code;
283     }
284
285     lock_kernel();
286     cr = crref();
287     if (old_pag != NOPAG && PagInCred(cr) == NOPAG) {
288         /* re-install old pag if there's room. */
289         code = __setpag(&cr, old_pag, &junk, 0);
290     }
291     crfree(cr);
292     unlock_kernel();
293
294     /* Linux syscall ABI returns errno as negative */
295     return (-code);
296 }
297
298 /* Intercept the standard uid32 system call. */
299 extern asmlinkage long (*sys_setgroups32p) (int gidsetsize, gid_t * grouplist);
300 asmlinkage long
301 afs_xsetgroups32(int gidsetsize, gid_t * grouplist)
302 {
303     long code;
304     cred_t *cr = crref();
305     afs_uint32 junk;
306     int old_pag;
307
308     lock_kernel();
309     old_pag = PagInCred(cr);
310     crfree(cr);
311     unlock_kernel();
312
313     code = (*sys_setgroups32p) (gidsetsize, grouplist);
314
315     if (code) {
316         return code;
317     }
318
319     lock_kernel();
320     cr = crref();
321     if (old_pag != NOPAG && PagInCred(cr) == NOPAG) {
322         /* re-install old pag if there's room. */
323         code = __setpag(&cr, old_pag, &junk, 0);
324     }
325     crfree(cr);
326     unlock_kernel();
327
328     /* Linux syscall ABI returns errno as negative */
329     return (-code);
330 }
331
332 #if defined(AFS_PPC64_LINUX20_ENV)
333 /* Intercept the uid16 system call as used by 32bit programs. */
334 extern long (*sys32_setgroupsp)(int gidsetsize, gid_t *grouplist);
335 asmlinkage long afs32_xsetgroups(int gidsetsize, gid_t *grouplist)
336 {
337     long code;
338     cred_t *cr = crref();
339     afs_uint32 junk;
340     int old_pag;
341     
342     lock_kernel();
343     old_pag = PagInCred(cr);
344     crfree(cr);
345     unlock_kernel();
346     
347     code = (*sys32_setgroupsp)(gidsetsize, grouplist);
348     if (code) {
349         return code;
350     }
351     
352     lock_kernel();
353     cr = crref();
354     if (old_pag != NOPAG && PagInCred(cr) == NOPAG) {
355         /* re-install old pag if there's room. */
356         code = __setpag(&cr, old_pag, &junk, 0);
357     }
358     crfree(cr);
359     unlock_kernel();
360     
361     /* Linux syscall ABI returns errno as negative */
362     return (-code);
363 }
364 #endif
365
366 #if defined(AFS_SPARC64_LINUX20_ENV) || defined(AFS_AMD64_LINUX20_ENV)
367 /* Intercept the uid16 system call as used by 32bit programs. */
368 extern long (*sys32_setgroupsp) (int gidsetsize, u16 * grouplist);
369 asmlinkage long
370 afs32_xsetgroups(int gidsetsize, u16 * grouplist)
371 {
372     long code;
373     cred_t *cr = crref();
374     afs_uint32 junk;
375     int old_pag;
376     
377     lock_kernel();
378     old_pag = PagInCred(cr);
379     crfree(cr);
380     unlock_kernel();
381     
382     code = (*sys32_setgroupsp) (gidsetsize, grouplist);
383     if (code) {
384         return code;
385     }
386     
387     lock_kernel();
388     cr = crref();
389     if (old_pag != NOPAG && PagInCred(cr) == NOPAG) {
390         /* re-install old pag if there's room. */
391         code = __setpag(&cr, old_pag, &junk, 0);
392     }
393     crfree(cr);
394     unlock_kernel();
395     
396     /* Linux syscall ABI returns errno as negative */
397     return (-code);
398 }
399
400 /* Intercept the uid32 system call as used by 32bit programs. */
401 extern long (*sys32_setgroups32p) (int gidsetsize, gid_t * grouplist);
402 asmlinkage long
403 afs32_xsetgroups32(int gidsetsize, gid_t * grouplist)
404 {
405     long code;
406     cred_t *cr = crref();
407     afs_uint32 junk;
408     int old_pag;
409
410     lock_kernel();
411     old_pag = PagInCred(cr);
412     crfree(cr);
413     unlock_kernel();
414
415     code = (*sys32_setgroups32p) (gidsetsize, grouplist);
416     if (code) {
417         return code;
418     }
419
420     lock_kernel();
421     cr = crref();
422     if (old_pag != NOPAG && PagInCred(cr) == NOPAG) {
423         /* re-install old pag if there's room. */
424         code = __setpag(&cr, old_pag, &junk, 0);
425     }
426     crfree(cr);
427     unlock_kernel();
428
429     /* Linux syscall ABI returns errno as negative */
430     return (-code);
431 }
432 #endif
433
434
435 #ifdef LINUX_KEYRING_SUPPORT
436 static void afs_pag_describe(const struct key *key, struct seq_file *m)
437 {
438     seq_puts(m, key->description);
439
440     seq_printf(m, ": %u", key->datalen);
441 }
442
443 static int afs_pag_instantiate(struct key *key, const void *data, size_t datalen)
444 {
445     int code;
446     afs_uint32 *userpag, pag = NOPAG;
447
448     if (key->uid != 0 || key->gid != 0)
449         return -EPERM;
450
451     code = -EINVAL;
452     get_group_info(current_group_info());
453
454     if (datalen != sizeof(afs_uint32) || !data)
455         goto error;
456
457     /* ensure key being set matches current pag */
458     pag = afs_linux_pag_from_groups(current_group_info());
459
460     if (pag == NOPAG)
461         goto error;
462
463     userpag = (afs_uint32 *) data;
464     if (*userpag != pag)
465         goto error;
466
467     key->payload.value = (unsigned long) *userpag;
468     key->datalen = sizeof(afs_uint32);
469     code = 0;
470
471 error:
472     put_group_info(current_group_info());
473     return code;
474 }
475
476 static int afs_pag_match(const struct key *key, const void *description)
477 {
478         return strcmp(key->description, description) == 0;
479 }
480
481 static void afs_pag_destroy(struct key *key)
482 {
483     afs_uint32 pag = key->payload.value;
484     int locked = ISAFS_GLOCK();
485
486     if (!locked)
487         AFS_GLOCK();
488
489     afs_MarkUserExpired(pag);
490
491     if (!locked)
492         AFS_GUNLOCK();
493 }
494
495 struct key_type key_type_afs_pag =
496 {
497     .name        = "afs_pag",
498     .describe    = afs_pag_describe,
499     .instantiate = afs_pag_instantiate,
500     .match       = afs_pag_match,
501     .destroy     = afs_pag_destroy,
502 };
503
504 #ifdef EXPORTED_TASKLIST_LOCK
505 extern rwlock_t tasklist_lock __attribute__((weak));
506 #endif
507
508 void osi_keyring_init(void)
509 {
510 #if !defined(EXPORTED_KEY_TYPE_KEYRING)
511     struct task_struct *p;
512
513     /* If we can't lock the tasklist, either with its explicit lock,
514      * or by using the RCU lock, then we can't safely work out the 
515      * type of a keyring. So, we have to rely on the weak reference. 
516      * If that's not available, then keyring based PAGs won't work.
517      */
518     
519 #if defined(EXPORTED_TASKLIST_LOCK) || (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16) && defined(HAVE_LINUX_RCU_READ_LOCK))
520     if (__key_type_keyring == NULL) {
521 # ifdef EXPORTED_TASKLIST_LOCK
522         if (&tasklist_lock)
523             read_lock(&tasklist_lock);
524 # endif
525 # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16) && defined(HAVE_LINUX_RCU_READ_LOCK))
526 #  ifdef EXPORTED_TASKLIST_LOCK
527         else
528 #  endif
529             rcu_read_lock();
530 # endif
531 #if defined(HAVE_LINUX_FIND_TASK_BY_PID)
532         p = find_task_by_pid(1);
533 #else
534         p = find_task_by_vpid(1);
535 #endif
536         if (p && task_user(p)->session_keyring)
537             __key_type_keyring = task_user(p)->session_keyring->type;
538 # ifdef EXPORTED_TASKLIST_LOCK
539         if (&tasklist_lock)
540             read_unlock(&tasklist_lock);
541 # endif
542 # if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,16) && defined(HAVE_LINUX_RCU_READ_LOCK))
543 #  ifdef EXPORTED_TASKLIST_LOCK
544         else
545 #  endif
546             rcu_read_unlock();
547 # endif
548     }
549 #endif
550 #endif
551
552     register_key_type(&key_type_afs_pag);
553 }
554
555 void osi_keyring_shutdown(void)
556 {
557     unregister_key_type(&key_type_afs_pag);
558 }
559
560 afs_int32
561 osi_get_keyring_pag(afs_ucred_t *cred)
562 {
563     struct key *key;
564     afs_uint32 newpag;
565     afs_int32 keyring_pag = NOPAG;
566
567     if (afs_cr_rgid(cred) != NFSXLATOR_CRED) {
568         key = afs_linux_search_keyring(cred, &key_type_afs_pag);
569
570         if (!IS_ERR(key)) {
571             if (key_validate(key) == 0 && key->uid == 0) {      /* also verify in the session keyring? */
572                 keyring_pag = key->payload.value;
573                 /* Only set PAG in groups if needed,
574                  * and the creds are from the current process */
575                 if (afs_linux_cred_is_current(cred) &&
576                     ((keyring_pag >> 24) & 0xff) == 'A' &&
577                     keyring_pag != afs_linux_pag_from_groups(current_group_info())) {
578                         __setpag(&cred, keyring_pag, &newpag, 0);
579                 }
580             }
581             key_put(key);
582         }
583     }
584     return keyring_pag;
585 }
586
587 #else
588 void osi_keyring_init(void)
589 {
590         return;
591 }
592
593 void osi_keyring_shutdown(void)
594 {
595         return;
596 }
597 #endif