mlsvc.h revision 1ed6b69a5ca1ca3ee5e9a4931f74e2237c7e1c9f
2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License (the "License").
2N/A * You may not use this file except in compliance with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A/*
2N/A * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
2N/A * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
2N/A */
2N/A
2N/A#ifndef _SMBSRV_MLSVC_H
2N/A#define _SMBSRV_MLSVC_H
2N/A
2N/A#include <smbsrv/smb_share.h>
2N/A#include <smbsrv/ndl/netlogon.ndl>
2N/A
2N/A#ifdef __cplusplus
2N/Aextern "C" {
2N/A#endif
2N/A
2N/Aint smb_dclocator_init(void);
2N/Avoid smbrdr_initialize(void);
2N/Avoid dssetup_initialize(void);
2N/Avoid srvsvc_initialize(void);
2N/Avoid wkssvc_initialize(void);
2N/Avoid lsarpc_initialize(void);
2N/Avoid logr_initialize(void);
2N/Avoid netr_initialize(void);
2N/Avoid samr_initialize(void);
2N/Avoid svcctl_initialize(void);
2N/Avoid winreg_initialize(void);
2N/Aint srvsvc_gettime(unsigned long *);
2N/Avoid msgsvcsend_initialize(void);
2N/Avoid spoolss_initialize(void);
2N/Avoid netdfs_initialize(void);
2N/A
2N/Avoid logr_finalize(void);
2N/Avoid svcctl_finalize(void);
2N/Avoid spoolss_finalize(void);
2N/Avoid netdfs_finalize(void);
2N/A
2N/Aint netr_open(char *, char *, mlsvc_handle_t *);
int netr_close(mlsvc_handle_t *);
DWORD netlogon_auth(char *, mlsvc_handle_t *, DWORD);
int netr_setup_authenticator(netr_info_t *, struct netr_authenticator *,
struct netr_authenticator *);
DWORD netr_validate_chain(netr_info_t *, struct netr_authenticator *);
void ndr_srvsvc_timecheck(char *, char *);
/* Generic functions to get/set windows Security Descriptors */
uint32_t srvsvc_sd_get(smb_share_t *, uint8_t *, uint32_t *);
uint32_t srvsvc_sd_set(smb_share_t *, uint8_t *);
uint32_t smb_logon_init(void);
void smb_logon_fini(void);
/* Locking for process-wide settings (i.e. privileges) */
void smb_proc_initsem(void); /* init (or re-init in child) */
int smb_proc_takesem(void); /* parent before */
void smb_proc_givesem(void); /* parent after */
/* Quota */
void smb_quota_init(void);
void smb_quota_fini(void);
void smb_quota_add_fs(const char *);
void smb_quota_remove_fs(const char *);
#ifdef __cplusplus
}
#endif
#endif /* _SMBSRV_MLSVC_H */