Print this page
1575 untangle libmlrpc ... pre2:
Get rid of ndr_rpc_server_{info,os}
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/lib/smbsrv/libmlsvc/common/libmlsvc.h
+++ new/usr/src/lib/smbsrv/libmlsvc/common/libmlsvc.h
1 1 /*
2 2 * CDDL HEADER START
3 3 *
4 4 * The contents of this file are subject to the terms of the
5 5 * Common Development and Distribution License (the "License").
6 6 * You may not use this file except in compliance with the License.
7 7 *
8 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 * or http://www.opensolaris.org/os/licensing.
10 10 * See the License for the specific language governing permissions
11 11 * and limitations under the License.
12 12 *
13 13 * When distributing Covered Code, include this CDDL HEADER in each
14 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 * If applicable, add the following below this CDDL HEADER, with the
16 16 * fields enclosed by brackets "[]" replaced with your own identifying
17 17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 18 *
19 19 * CDDL HEADER END
20 20 */
21 21 /*
22 22 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23 23 * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
24 24 */
25 25
26 26 #ifndef _LIBMLSVC_H
27 27 #define _LIBMLSVC_H
28 28
29 29 #include <uuid/uuid.h>
30 30 #include <sys/param.h>
31 31 #include <sys/types.h>
32 32 #include <sys/uio.h>
33 33 #include <sys/ksynch.h>
34 34 #include <time.h>
35 35 #include <stdio.h>
36 36 #include <string.h>
37 37 #include <netdb.h>
38 38 #include <libuutil.h>
39 39 #include <smbsrv/wintypes.h>
40 40 #include <smbsrv/hash_table.h>
41 41 #include <smbsrv/smb_token.h>
42 42 #include <smbsrv/smb_privilege.h>
43 43 #include <smbsrv/smb_share.h>
44 44 #include <smbsrv/smb_xdr.h>
45 45 #include <smbsrv/smb_dfs.h>
46 46 #include <smbsrv/libsmb.h>
47 47 #include <smbsrv/libmlrpc.h>
48 48 #include <smbsrv/ndl/lsarpc.ndl>
49 49
50 50 #ifdef __cplusplus
51 51 extern "C" {
52 52 #endif
53 53
54 54 uint32_t lsa_lookup_name(char *, uint16_t, smb_account_t *);
55 55 uint32_t lsa_lookup_sid(smb_sid_t *, smb_account_t *);
56 56
57 57 /*
58 58 * SMB domain API to discover a domain controller and obtain domain
59 59 * information.
60 60 */
61 61
62 62 extern boolean_t smb_locate_dc(char *, smb_domainex_t *);
63 63 uint32_t smb_ddiscover_dns(char *, smb_domainex_t *);
64 64 extern void smb_ddiscover_bad_dc(char *);
65 65 extern void smb_ddiscover_refresh(void);
66 66 extern int smb_ddiscover_wait(void);
67 67
68 68 extern int dssetup_check_service(void);
69 69 extern void dssetup_clear_domain_info(void);
70 70 extern void mlsvc_disconnect(const char *);
71 71 extern int mlsvc_init(void);
72 72 extern void mlsvc_fini(void);
73 73 extern DWORD mlsvc_netlogon(char *, char *);
74 74 extern void mlsvc_join(smb_joininfo_t *, smb_joinres_t *);
75 75
76 76 extern void smb_logon_domain(smb_logon_t *, smb_token_t *);
77 77 extern uint32_t smb_decode_krb5_pac(smb_token_t *, char *, uint_t);
78 78 extern boolean_t smb_token_setup_common(smb_token_t *);
79 79
80 80
81 81 /*
82 82 * The maximum number of domains (NT limit).
83 83 */
84 84 #define MLSVC_DOMAIN_MAX 32
85 85
86 86 #define MLSVC_ANON_USER "IPC$"
87 87
88 88 char *mlsvc_ipc_name(int ipc_type, char *username);
89 89
90 90 /*
91 91 * Passthrough negotiation and authentication interface.
92 92 *
93 93 * NT supports two forms of password: a Lanman (case-insensitive)
94 94 * password and an NT (case-sensitive) password. If either of the
95 95 * passwords is not available its pointer and length should be set
96 96 * to zero. The session key and vc number are required to validate
97 97 * the encrypted passwords.
98 98 */
99 99
100 100 void mlsvc_nt_password_hash(char *result, char *password);
101 101 int mlsvc_encrypt_nt_password(char *password, char *key, int keylen, char *out,
102 102 int outmax);
103 103
104 104 #define SMB_AUTOHOME_FILE "smbautohome"
105 105 #define SMB_AUTOHOME_PATH "/etc"
106 106
107 107 typedef struct smb_autohome {
108 108 struct smb_autohome *ah_next;
109 109 uint32_t ah_hits;
110 110 time_t ah_timestamp;
111 111 char *ah_name; /* User account name */
112 112 char *ah_path; /* Home directory path */
113 113 char *ah_container; /* ADS container distinguished name */
114 114 } smb_autohome_t;
115 115
116 116 extern void smb_autohome_add(const smb_token_t *);
117 117 extern void smb_autohome_remove(const char *);
118 118
119 119 /*
↓ open down ↓ |
119 lines elided |
↑ open up ↑ |
120 120 * A local unique id (LUID) is an opaque id used by servers to identify
121 121 * local resources, such as privileges. A client will use lookup
122 122 * functions to translate the LUID to a more general, machine independent
123 123 * form; such as a string.
124 124 */
125 125 typedef struct ms_luid {
126 126 uint32_t low_part;
127 127 uint32_t high_part;
128 128 } ms_luid_t;
129 129
130 -/*
131 - * Information about a server as reported by NetServerGetInfo.
132 - * The SV_PLATFORM and SV_TYPE definitions are in srvsvc.ndl.
133 - */
134 -typedef struct srvsvc_server_info {
135 - uint32_t sv_platform_id;
136 - char *sv_name;
137 - uint32_t sv_version_major;
138 - uint32_t sv_version_minor;
139 - uint32_t sv_type;
140 - char *sv_comment;
141 - uint32_t sv_os;
142 -} srvsvc_server_info_t;
143 -
144 -int srvsvc_net_server_getinfo(char *, char *, srvsvc_server_info_t *);
145 130 int srvsvc_net_remote_tod(char *, char *, struct timeval *, struct tm *);
146 131
147 132
148 133 /*
149 134 * A client_t is created while binding a client connection to hold the
150 135 * context for calls made using that connection.
151 136 *
152 137 * Handles are RPC call specific and we use an inheritance mechanism to
153 138 * ensure that each handle has a pointer to the client_t. When the top
154 139 * level (bind) handle is released, we close the connection.
155 140 */
156 141 typedef struct mlsvc_handle {
157 142 ndr_hdid_t handle;
158 143 ndr_client_t *clnt;
159 - srvsvc_server_info_t svinfo;
160 144 } mlsvc_handle_t;
161 145
162 146 void ndr_rpc_init(void);
163 147 void ndr_rpc_fini(void);
164 148 uint32_t ndr_rpc_bind(mlsvc_handle_t *, char *, char *, char *, const char *);
165 149 void ndr_rpc_unbind(mlsvc_handle_t *);
166 150 int ndr_rpc_call(mlsvc_handle_t *, int, void *);
167 151 void ndr_rpc_set_nonull(mlsvc_handle_t *);
168 -const srvsvc_server_info_t *ndr_rpc_server_info(mlsvc_handle_t *);
169 -uint32_t ndr_rpc_server_os(mlsvc_handle_t *);
170 152 int ndr_rpc_get_ssnkey(mlsvc_handle_t *, unsigned char *, size_t);
171 153 void *ndr_rpc_malloc(mlsvc_handle_t *, size_t);
172 154 ndr_heap_t *ndr_rpc_get_heap(mlsvc_handle_t *);
173 155 void ndr_rpc_release(mlsvc_handle_t *);
174 156 boolean_t ndr_is_null_handle(mlsvc_handle_t *);
175 157 boolean_t ndr_is_bind_handle(mlsvc_handle_t *);
176 158 void ndr_inherit_handle(mlsvc_handle_t *, mlsvc_handle_t *);
177 159 void ndr_rpc_status(mlsvc_handle_t *, int, uint32_t);
178 160
179 161 /* SVCCTL service */
180 162 /*
181 163 * Calculate the wide-char equivalent string length required to
182 164 * store a string - including the terminating null wide-char.
183 165 */
184 166 #define SVCCTL_WNSTRLEN(S) ((strlen((S)) + 1) * sizeof (smb_wchar_t))
185 167
186 168 /* An AVL-storable node representing each service in the SCM database. */
187 169 typedef struct svcctl_svc_node {
188 170 uu_avl_node_t sn_node;
189 171 char *sn_name; /* Service Name (Key) */
190 172 char *sn_fmri; /* Display Name (FMRI) */
191 173 char *sn_desc; /* Description */
192 174 char *sn_state; /* State */
193 175 } svcctl_svc_node_t;
194 176
195 177 /* This structure provides context for each svcctl_s_OpenManager call. */
196 178 typedef struct svcctl_manager_context {
197 179 scf_handle_t *mc_scf_hdl; /* SCF handle */
198 180 scf_propertygroup_t *mc_scf_gpg; /* Property group */
199 181 scf_property_t *mc_scf_gprop; /* Property */
200 182 scf_value_t *mc_scf_gval; /* Value */
201 183 uint32_t mc_scf_numsvcs; /* Number of SMF services */
202 184 ssize_t mc_scf_max_fmri_len; /* Max FMRI length */
203 185 ssize_t mc_scf_max_value_len; /* Max Value length */
204 186 uint32_t mc_bytes_needed; /* Number of bytes needed */
205 187 uu_avl_pool_t *mc_svcs_pool; /* AVL pool */
206 188 uu_avl_t *mc_svcs; /* AVL tree of SMF services */
207 189 } svcctl_manager_context_t;
208 190
209 191 /* This structure provides context for each svcctl_s_OpenService call. */
210 192 typedef struct svcctl_service_context {
211 193 ndr_hdid_t *sc_mgrid; /* Manager ID */
212 194 char *sc_svcname; /* Service Name */
213 195 } svcctl_service_context_t;
214 196
215 197 typedef enum {
216 198 SVCCTL_MANAGER_CONTEXT = 0,
217 199 SVCCTL_SERVICE_CONTEXT
218 200 } svcctl_context_type_t;
219 201
220 202 /* This structure provides abstraction for service and manager context call. */
221 203 typedef struct svcctl_context {
222 204 svcctl_context_type_t c_type;
223 205 union {
224 206 svcctl_manager_context_t *uc_mgr;
225 207 svcctl_service_context_t *uc_svc;
226 208 void *uc_cp;
227 209 } c_ctx;
228 210 } svcctl_context_t;
229 211
230 212 /* Service Control Manager (SCM) functions */
231 213 void svcctl_init(void);
232 214 void svcctl_fini(void);
233 215 int svcctl_scm_init(svcctl_manager_context_t *);
234 216 void svcctl_scm_fini(svcctl_manager_context_t *);
235 217 int svcctl_scm_scf_handle_init(svcctl_manager_context_t *);
236 218 void svcctl_scm_scf_handle_fini(svcctl_manager_context_t *);
237 219 int svcctl_scm_refresh(svcctl_manager_context_t *);
238 220 uint32_t svcctl_scm_enum_services(svcctl_manager_context_t *, uint8_t *,
239 221 size_t, uint32_t *, boolean_t);
240 222 uint32_t svcctl_scm_validate_service(svcctl_manager_context_t *, char *);
241 223 svcctl_svc_node_t *svcctl_scm_find_service(svcctl_manager_context_t *, char *);
242 224 uint32_t svcctl_scm_map_status(const char *);
243 225
244 226 /* LOGR service */
245 227 #define LOGR_APPLICATION_LOG "Application"
246 228 #define LOGR_SECURITY_LOG "Security"
247 229 #define LOGR_SYSTEM_LOG "System"
248 230 #define LOGR_NMSGMASK 1023
249 231 #define LOGR_MAXMSGLEN 800
250 232
251 233 typedef struct logr_entry {
252 234 struct timeval le_timestamp; /* Time of log entry */
253 235 int le_pri; /* Message priority */
254 236 char le_hostname[MAXHOSTNAMELEN]; /* Log hostname */
255 237 char le_msg[LOGR_MAXMSGLEN]; /* Log message text */
256 238 } logr_entry_t;
257 239
258 240 typedef struct logr_info {
259 241 logr_entry_t li_entry[LOGR_NMSGMASK+1]; /* Array of log entry */
260 242 int li_idx; /* Index */
261 243 } logr_info_t;
262 244
263 245 typedef struct logr_read_data {
264 246 int rd_tot_recnum; /* Total no. of record read */
265 247 int rd_last_sentrec; /* Last sentence read */
266 248 char rd_first_read; /* First sentence read */
267 249 logr_info_t *rd_log; /* Log information read */
268 250 } logr_read_data_t;
269 251
270 252 /* This structure provides the context for eventlog calls from clients. */
271 253 typedef struct logr_context {
272 254 logr_read_data_t *lc_cached_read_data;
273 255 char *lc_source_name;
274 256 } logr_context_t;
275 257
276 258 void logr_init(void);
277 259 void logr_fini(void);
278 260 boolean_t logr_is_supported(char *);
279 261 int logr_get_snapshot(logr_context_t *);
280 262
281 263 /* User and Group quotas */
282 264 uint32_t smb_quota_query(smb_quota_query_t *, smb_quota_response_t *);
283 265 uint32_t smb_quota_set(smb_quota_set_t *);
284 266 void smb_quota_free(smb_quota_response_t *);
285 267
286 268 uint32_t dfs_get_referrals(const char *, dfs_reftype_t, dfs_info_t *);
287 269 void dfs_info_free(dfs_info_t *);
288 270
289 271 /*
290 272 * The spoolss installable copyfile API.
291 273 */
292 274 typedef void (*spoolss_copyfile_t)(smb_inaddr_t *, char *, char *, char *);
293 275 void spoolss_register_copyfile(spoolss_copyfile_t);
294 276
295 277 #ifdef __cplusplus
296 278 }
297 279 #endif
298 280
299 281 #endif /* _LIBMLSVC_H */
↓ open down ↓ |
120 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX