2 * Copyright 2002 Andriy Palamarchuk
4 * netapi32 user functions
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #include "wine/debug.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(netapi32
);
34 /************************************************************
35 * NETAPI_IsLocalComputer
37 * Checks whether the server name indicates local machine.
39 BOOL
NETAPI_IsLocalComputer(LPCWSTR ServerName
)
47 DWORD dwSize
= MAX_COMPUTERNAME_LENGTH
+ 1;
51 NetApiBufferAllocate(dwSize
* sizeof(WCHAR
), (LPVOID
*) &buf
);
52 Result
= GetComputerNameW(buf
, &dwSize
);
53 if (Result
&& (ServerName
[0] == '\\') && (ServerName
[1] == '\\'))
55 Result
= Result
&& !lstrcmpW(ServerName
, buf
);
56 NetApiBufferFree(buf
);
63 void wprint_mac(WCHAR
* buffer
, int index
);
66 NetWkstaTransportEnum(LPCWSTR ServerName
, DWORD level
, LPBYTE
* pbuf
,
67 DWORD prefmaxlen
, LPDWORD read_entries
,
68 LPDWORD total_entries
, LPDWORD hresume
)
70 FIXME(":%s, 0x%08lx, %p, 0x%08lx, %p, %p, %p\n", debugstr_w(ServerName
),
71 level
, pbuf
, prefmaxlen
, read_entries
, total_entries
,hresume
);
72 if (!NETAPI_IsLocalComputer(ServerName
))
74 FIXME(":not implemented for non-local computers\n");
75 return ERROR_INVALID_LEVEL
;
79 if (hresume
&& *hresume
)
81 FIXME(":resume handle not implemented\n");
82 return ERROR_INVALID_LEVEL
;
87 case 0: /* transport info */
89 PWKSTA_TRANSPORT_INFO_0 ti
;
90 int i
,size_needed
,n_adapt
= enum_hw();
92 size_needed
= n_adapt
* (sizeof(WKSTA_TRANSPORT_INFO_0
)
93 * 13 * sizeof (WCHAR
));
94 if (prefmaxlen
== MAX_PREFERRED_LENGTH
)
95 NetApiBufferAllocate( size_needed
, (LPVOID
*) pbuf
);
98 if (size_needed
> prefmaxlen
)
99 return ERROR_MORE_DATA
;
100 NetApiBufferAllocate(prefmaxlen
,
103 for (i
= 0; i
<n_adapt
; i
++)
105 ti
= (PWKSTA_TRANSPORT_INFO_0
)
106 ((PBYTE
) *pbuf
+ i
* sizeof(WKSTA_TRANSPORT_INFO_0
));
107 ti
->wkti0_quality_of_service
=0;
108 ti
->wkti0_number_of_vcs
=0;
109 ti
->wkti0_transport_name
=NULL
;
110 ti
->wkti0_transport_address
= (LPWSTR
)
111 ((PBYTE
)*pbuf
+ n_adapt
* sizeof(WKSTA_TRANSPORT_INFO_0
)
112 + i
* 13 * sizeof (WCHAR
));
113 ti
->wkti0_wan_ish
=TRUE
; /*TCPIP/NETBIOS Protocoll*/
114 wprint_mac(ti
->wkti0_transport_address
,i
);
115 TRACE("%d of %d:ti at %p transport_address at %p %s\n",i
,n_adapt
,
116 ti
, ti
->wkti0_transport_address
, debugstr_w(ti
->wkti0_transport_address
));
118 if(read_entries
)*read_entries
= n_adapt
;
119 if(total_entries
)*total_entries
= n_adapt
;
120 if(hresume
) *hresume
= 0;
124 ERR("Invalid level %ld is specified\n", level
);
125 return ERROR_INVALID_LEVEL
;
132 /************************************************************
133 * NetWkstaUserGetInfo (NETAPI32.@)
135 NET_API_STATUS WINAPI
NetWkstaUserGetInfo(LPWSTR reserved
, DWORD level
,
138 TRACE("(%s, %ld, %p)\n", debugstr_w(reserved
), level
, bufptr
);
143 PWKSTA_USER_INFO_0 ui
;
144 DWORD dwSize
= UNLEN
+ 1;
147 NetApiBufferAllocate(sizeof(WKSTA_USER_INFO_0
) + dwSize
* sizeof(WCHAR
),
150 ui
= (PWKSTA_USER_INFO_0
) *bufptr
;
151 ui
->wkui0_username
= (LPWSTR
) (*bufptr
+ sizeof(WKSTA_USER_INFO_0
));
154 if (!GetUserNameW(ui
->wkui0_username
, &dwSize
))
156 NetApiBufferFree(ui
);
157 return ERROR_NOT_ENOUGH_MEMORY
;
160 NetApiBufferReallocate(
161 *bufptr
, sizeof(WKSTA_USER_INFO_0
) +
162 (lstrlenW(ui
->wkui0_username
) + 1) * sizeof(WCHAR
),
169 PWKSTA_USER_INFO_1 ui
;
170 PWKSTA_USER_INFO_0 ui0
;
172 LSA_OBJECT_ATTRIBUTES ObjectAttributes
;
173 LSA_HANDLE PolicyHandle
;
174 PPOLICY_ACCOUNT_DOMAIN_INFO DomainInfo
;
177 /* sizes of the field buffers in WCHARS */
178 int username_sz
, logon_domain_sz
, oth_domains_sz
, logon_server_sz
;
180 FIXME("Level 1 processing is partially implemented\n");
184 /* get some information first to estimate size of the buffer */
186 NetWkstaUserGetInfo(NULL
, 0, (PBYTE
*) &ui0
);
187 username_sz
= lstrlenW(ui0
->wkui0_username
) + 1;
189 ZeroMemory(&ObjectAttributes
, sizeof(ObjectAttributes
));
190 NtStatus
= LsaOpenPolicy(NULL
, &ObjectAttributes
,
191 POLICY_VIEW_LOCAL_INFORMATION
,
193 if (NtStatus
!= STATUS_SUCCESS
)
195 ERR("LsaOpenPolicyFailed with NT status %lx\n",
196 LsaNtStatusToWinError(NtStatus
));
197 NetApiBufferFree(ui0
);
198 return ERROR_NOT_ENOUGH_MEMORY
;
200 LsaQueryInformationPolicy(PolicyHandle
, PolicyAccountDomainInformation
,
201 (PVOID
*) &DomainInfo
);
202 logon_domain_sz
= lstrlenW(DomainInfo
->DomainName
.Buffer
) + 1;
203 LsaClose(PolicyHandle
);
206 NetApiBufferAllocate(sizeof(WKSTA_USER_INFO_1
) +
207 (username_sz
+ logon_domain_sz
+
208 oth_domains_sz
+ logon_server_sz
) * sizeof(WCHAR
),
210 ui
= (WKSTA_USER_INFO_1
*) *bufptr
;
211 ui
->wkui1_username
= (LPWSTR
) (*bufptr
+ sizeof(WKSTA_USER_INFO_1
));
212 ui
->wkui1_logon_domain
= (LPWSTR
) (
213 ((PBYTE
) ui
->wkui1_username
) + username_sz
* sizeof(WCHAR
));
214 ui
->wkui1_oth_domains
= (LPWSTR
) (
215 ((PBYTE
) ui
->wkui1_logon_domain
) +
216 logon_domain_sz
* sizeof(WCHAR
));
217 ui
->wkui1_logon_server
= (LPWSTR
) (
218 ((PBYTE
) ui
->wkui1_oth_domains
) +
219 oth_domains_sz
* sizeof(WCHAR
));
222 dwSize
= username_sz
;
223 lstrcpyW(ui
->wkui1_username
, ui0
->wkui0_username
);
224 NetApiBufferFree(ui0
);
226 lstrcpynW(ui
->wkui1_logon_domain
, DomainInfo
->DomainName
.Buffer
,
228 LsaFreeMemory(DomainInfo
);
230 /* FIXME. Not implemented. Populated with empty strings */
231 ui
->wkui1_oth_domains
[0] = 0;
232 ui
->wkui1_logon_server
[0] = 0;
237 PWKSTA_USER_INFO_1101 ui
;
240 FIXME("Stub. Level 1101 processing is not implemented\n");
241 /* FIXME see also wkui1_oth_domains for level 1 */
244 NetApiBufferAllocate(sizeof(WKSTA_USER_INFO_1101
) + dwSize
* sizeof(WCHAR
),
247 ui
= (PWKSTA_USER_INFO_1101
) *bufptr
;
248 ui
->wkui1101_oth_domains
= (LPWSTR
)(ui
+ 1);
251 ui
->wkui1101_oth_domains
[0] = 0;
255 ERR("Invalid level %ld is specified\n", level
);
256 return ERROR_INVALID_LEVEL
;
261 /************************************************************
262 * NetpGetComputerName (NETAPI32.@)
264 NET_API_STATUS WINAPI
NetpGetComputerName(LPWSTR
*Buffer
)
266 DWORD dwSize
= MAX_COMPUTERNAME_LENGTH
+ 1;
268 TRACE("(%p)\n", Buffer
);
269 NetApiBufferAllocate(dwSize
* sizeof(WCHAR
), (LPVOID
*) Buffer
);
270 if (GetComputerNameW(*Buffer
, &dwSize
))
272 NetApiBufferReallocate(
273 *Buffer
, dwSize
* sizeof(WCHAR
),
279 NetApiBufferFree(*Buffer
);
280 return ERROR_NOT_ENOUGH_MEMORY
;