/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
*/
#ifndef _LSALIB_H
#define _LSALIB_H
/*
* Prototypes for the LSA library and RPC client side library interface.
* There are two levels of interface defined here: lsa_xxx and lsar_xxx.
* The lsa_xxx functions provide a high level interface which make
* multiple RPC calls and do all the work necessary to obtain and return
* the requested information. The lsar_xxx functions provide a low level
* interface in which each function maps to a single underlying RPC.
*/
#include <smbsrv/ndl/lsarpc.ndl>
#include <smbsrv/libsmb.h>
#include <smbsrv/libntsvcs.h>
#include <smb/smb_sid.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct mslsa_sid lsa_sid_t;
/*
* Lookup a SMB account given a key where key can be an account name, a SID,
* etc.
*
* l_func - the actual LSA lookup call.
* l_key - the key for the specified lookup (input argument).
* l_acct - the SMB account associated with the specified key (output argument)
*/
typedef struct lsar_lookup_op {
uint32_t (*l_func)(mlsvc_handle_t *, void *, smb_account_t *);
void *l_key;
smb_account_t *l_acct;
} lsar_lookup_op_t;
uint32_t lsar_lookup(lsar_lookup_op_t *);
int lsar_open(char *, char *, char *, mlsvc_handle_t *);
int lsar_open_account(mlsvc_handle_t *, struct mslsa_sid *, mlsvc_handle_t *);
int lsar_close(mlsvc_handle_t *);
int lsar_query_security_desc(mlsvc_handle_t *);
DWORD lsar_query_info_policy(mlsvc_handle_t *, WORD, smb_domain_t *);
uint32_t lsar_lookup_names(mlsvc_handle_t *, void *, smb_account_t *);
uint32_t lsar_lookup_sids(mlsvc_handle_t *, void *, smb_account_t *);
int lsar_enum_accounts(mlsvc_handle_t *, DWORD *,
struct mslsa_EnumAccountBuf *);
DWORD lsar_enum_trusted_domains(mlsvc_handle_t *, DWORD *,
smb_trusted_domains_t *);
DWORD lsar_enum_trusted_domains_ex(mlsvc_handle_t *, DWORD *,
smb_trusted_domains_t *);
int lsar_enum_privs_account(mlsvc_handle_t *, smb_account_t *);
int lsar_lookup_priv_value(mlsvc_handle_t *, char *, struct ms_luid *);
int lsar_lookup_priv_name(mlsvc_handle_t *, struct ms_luid *, char *, int);
DWORD lsar_lookup_priv_display_name(mlsvc_handle_t *, char *, char *, int);
#ifdef __cplusplus
}
#endif
#endif /* _LSALIB_H */