Add isadmin feature
[platform/core/system/tizen-platform-wrapper.git] / src / isadmin.c
1 /*
2  * Copyright (C) 2013 Intel Corporation.
3  * 
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors:
19  *   Stephen Clymans <stephen.clymans@open.eurogiciel.org>
20  */
21  
22  /*
23  * DISCLAIMER :
24  *  This source file and its associated header are present to maintain a 
25  * temporary solution. We need to know if an user have the privilege for
26  * a particular action.
27  * 
28  * At the end, this feature will be managed by Cynara
29  * 
30  */
31
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/types.h>
35 #include <unistd.h>
36 #include <grp.h>
37
38 #include "isadmin.h"
39 #include "tzplatform_variables.h"
40  
41 char is_admin(int uid) {
42         
43         struct passwd *userinfo = NULL;
44         struct group *systemgroupinfo = NULL;
45         uid_t myuid = 0;
46         gid_t system_gid = 0;
47         gid_t *groups = NULL;
48         int i, nbgroups = 0;
49         
50         
51         if(uid == -1)
52                 /* Get current uid */
53                 myuid = getuid();
54         else
55                 myuid = uid;
56         
57         /* Get the gid of the group named "system" */
58         systemgroupinfo = getgrnam(TZ_SYS_ADMIN_GROUP);
59         if(systemgroupinfo == NULL) {
60                 fprintf( stderr, "isadmin ERROR: cannot find group named \"sudo\" \n");
61                 return -1;
62         }
63         
64         system_gid = admingroupinfo->gr_gid;
65         
66         /* Get all the gid of the given uid */
67         
68         userinfo = getpwuid(myuid);
69         
70         /* Need to call this function now to get the number of group to make the
71            malloc correctly sized */
72         if (getgrouplist(userinfo->pw_name, userinfo->pw_gid, groups, &nbgroups) != -1) {
73                 fprintf( stderr, "isadmin ERROR: cannot get number of groups\n");
74                 return -1;
75         }
76         
77         groups = malloc(nbgroups * sizeof (gid_t));
78         if (groups == NULL) {
79                 fprintf( stderr, "isadmin ERROR: malloc cannot allocate memory\n");
80                 return -1;
81         }
82         
83         if (getgrouplist(userinfo->pw_name, userinfo->pw_gid, groups, &nbgroups) == -1) {
84                 fprintf( stderr, "isadmin ERROR: cannot get groups\n");
85                 return -1;
86         }
87         
88         /* Check if the given uid is in the system group */
89         
90         for(i = 0 ; i < nbgroups ; i++) {
91                 if(groups[i] == system_gid)
92                         return 1;
93         }
94         
95         return 0;
96 }
97