1 /* $NetBSD: ntgroups.c,v 1.5 2014/12/10 04:38:01 christos Exp $ */
4 * Copyright (C) 2004, 2006, 2007, 2009, 2013 Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (C) 2001 Internet Software Consortium.
7 * Permission to use, copy, modify, and/or distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
20 /* Id: ntgroups.c,v 1.12 2009/09/29 23:48:04 tbox Exp */
23 * The NT Groups have two groups that are not well documented and are
24 * not normally seen: None and Everyone. A user account belongs to
25 * any number of groups, but if it is not a member of any group then
26 * it is a member of the None Group. The None group is not listed
27 * anywhere. You cannot remove an account from the none group except
28 * by making it a member of some other group, The second group is the
29 * Everyone group. All accounts, no matter how many groups that they
30 * belong to, also belong to the Everyone group. You cannot remove an
31 * account from the Everyone group.
41 #define _CRT_SECURE_NO_DEPRECATE 1
47 #include <isc/ntgroups.h>
48 #include <isc/result.h>
50 #define MAX_NAME_LENGTH 256
53 isc_ntsecurity_getaccountgroups(char *username
, char **GroupList
,
54 unsigned int maxgroups
,
55 unsigned int *totalGroups
) {
56 LPGROUP_USERS_INFO_0 pTmpBuf
;
57 LPLOCALGROUP_USERS_INFO_0 pTmpLBuf
;
59 LPLOCALGROUP_USERS_INFO_0 pBuf
= NULL
;
60 LPGROUP_USERS_INFO_0 pgrpBuf
= NULL
;
62 DWORD dwFlags
= LG_INCLUDE_INDIRECT
;
63 DWORD dwPrefMaxLen
= MAX_PREFERRED_LENGTH
;
64 DWORD dwEntriesRead
= 0;
65 DWORD dwTotalEntries
= 0;
66 NET_API_STATUS nStatus
;
68 wchar_t user
[MAX_NAME_LENGTH
];
70 retlen
= mbstowcs(user
, username
, MAX_NAME_LENGTH
);
74 * Call the NetUserGetLocalGroups function
75 * specifying information level 0.
77 * The LG_INCLUDE_INDIRECT flag specifies that the
78 * function should also return the names of the local
79 * groups in which the user is indirectly a member.
81 nStatus
= NetUserGetLocalGroups(NULL
,
90 * See if the call succeeds,
92 if (nStatus
!= NERR_Success
) {
93 if (nStatus
== ERROR_ACCESS_DENIED
)
94 return (ISC_R_NOPERM
);
95 if (nStatus
== ERROR_MORE_DATA
)
96 return (ISC_R_NOSPACE
);
97 if (nStatus
== NERR_UserNotFound
)
104 * Loop through the entries
107 (i
< dwEntriesRead
&& *totalGroups
< maxgroups
); i
++) {
108 assert(pTmpLBuf
!= NULL
);
109 if (pTmpLBuf
== NULL
)
111 retlen
= wcslen(pTmpLBuf
->lgrui0_name
);
112 GroupList
[*totalGroups
] = (char *) malloc(retlen
+1);
113 if (GroupList
[*totalGroups
] == NULL
)
114 return (ISC_R_NOMEMORY
);
116 retlen
= wcstombs(GroupList
[*totalGroups
],
117 pTmpLBuf
->lgrui0_name
, retlen
);
118 GroupList
[*totalGroups
][retlen
] = '\0';
119 if (strcmp(GroupList
[*totalGroups
], "None") == 0)
120 free(GroupList
[*totalGroups
]);
126 /* Free the allocated memory. */
128 NetApiBufferFree(pBuf
);
132 * Call the NetUserGetGroups function, specifying level 0.
134 nStatus
= NetUserGetGroups(NULL
,
142 * See if the call succeeds,
144 if (nStatus
!= NERR_Success
) {
145 if (nStatus
== ERROR_ACCESS_DENIED
)
146 return (ISC_R_NOPERM
);
147 if (nStatus
== ERROR_MORE_DATA
)
148 return (ISC_R_NOSPACE
);
149 if (nStatus
== NERR_UserNotFound
)
153 if (pgrpBuf
!= NULL
) {
156 * Loop through the entries
159 (i
< dwEntriesRead
&& *totalGroups
< maxgroups
); i
++) {
160 assert(pTmpBuf
!= NULL
);
164 retlen
= wcslen(pTmpBuf
->grui0_name
);
165 GroupList
[*totalGroups
] = (char *) malloc(retlen
+1);
166 if (GroupList
[*totalGroups
] == NULL
)
167 return (ISC_R_NOMEMORY
);
169 retlen
= wcstombs(GroupList
[*totalGroups
],
170 pTmpBuf
->grui0_name
, retlen
);
171 GroupList
[*totalGroups
][retlen
] = '\0';
172 if (strcmp(GroupList
[*totalGroups
], "None") == 0)
173 free(GroupList
[*totalGroups
]);
180 * Free the allocated memory.
183 NetApiBufferFree(pgrpBuf
);
185 return (ISC_R_SUCCESS
);