We need to return the value here...
[sfrench/samba-autobuild/.git] / source / lib / system_smbd.c
1 /* 
2    Unix SMB/CIFS implementation.
3    system call wrapper interface.
4    Copyright (C) Andrew Tridgell 2002
5    Copyright (C) Andrew Barteltt 2002
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 /* 
23    This file may assume linkage with smbd - for things like become_root()
24    etc. 
25 */
26
27 #include "includes.h"
28
29 #ifndef HAVE_GETGROUPLIST
30 /*
31   This is a *much* faster way of getting the list of groups for a user
32   without changing the current supplemenrary group list. The old
33   method used getgrent() which could take 20 minutes on a really big
34   network with hundeds of thousands of groups and users. The new method
35   takes a couple of seconds.
36
37   NOTE!! this function only works if it is called as root!
38   */
39 static int getgrouplist_internals(const char *user, gid_t gid, gid_t *groups, int *grpcnt)
40 {
41         gid_t *gids_saved;
42         int ret, ngrp_saved;
43
44         /* work out how many groups we need to save */
45         ngrp_saved = getgroups(0, NULL);
46         if (ngrp_saved == -1) {
47                 /* this shouldn't happen */
48                 return -1;
49         }
50         
51         gids_saved = (gid_t *)malloc(sizeof(gid_t) * (ngrp_saved+1));
52         if (!gids_saved) {
53                 errno = ENOMEM;
54                 return -1;
55         }
56
57         ngrp_saved = getgroups(ngrp_saved, gids_saved);
58         if (ngrp_saved == -1) {
59                 free(gids_saved);
60                 /* very strange! */
61                 return -1;
62         }
63
64         if (initgroups(user, gid) != 0) {
65                 free(gids_saved);
66                 return -1;
67         }
68
69         /* this must be done to cope with systems that put the current egid in the
70            return from getgroups() */
71         save_re_gid();
72         set_effective_gid(gid);
73         setgid(gid);
74
75         ret = getgroups(*grpcnt, groups);
76         if (ret >= 0) {
77                 *grpcnt = ret;
78         }
79
80         restore_re_gid();
81
82         if (setgroups(ngrp_saved, gids_saved) != 0) {
83                 /* yikes! */
84                 DEBUG(0,("ERROR: getgrouplist: failed to reset group list!\n"));
85                 smb_panic("getgrouplist: failed to reset group list!\n");
86                 free(gids_saved);
87                 return -1;
88         }
89
90         free(gids_saved);
91         return ret;
92 }
93 #endif
94
95 int sys_getgrouplist(const char *user, gid_t gid, gid_t *groups, int *grpcnt)
96 {
97 #ifdef HAVE_GETGROUPLIST
98         return getgrouplist(user, gid, groups, grpcnt);
99 #else
100         int retval;
101         become_root();
102         retval = getgrouplist_internals(user, gid, groups, grpcnt);
103         unbecome_root();
104         return retval;
105 #endif
106 }