summaryrefslogtreecommitdiff
path: root/usr/src/lib/smbsrv/libmlsvc/common/dfs.h
blob: d4d0b3a4081e866a8cfda8c1791d35d3860d7899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * 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) 2010, Oracle and/or its affiliates. All rights reserved.
 */

#ifndef	_DFS_H
#define	_DFS_H

#include <priv.h>
#include <smbsrv/smb_dfs.h>
#include <smbsrv/libsmb.h>

#ifdef	__cplusplus
extern "C" {
#endif

/*
 * Status returned by dfs_link_stat()
 */
#define	DFS_STAT_UNKNOWN	0
#define	DFS_STAT_NOTFOUND	1
#define	DFS_STAT_NOTLINK	2
#define	DFS_STAT_ISREPARSE	3
#define	DFS_STAT_ISDFS		4

typedef struct dfs_path {
	char		p_fspath[DFS_PATH_MAX];
	smb_unc_t	p_unc;
	uint32_t	p_type;
} dfs_path_t;

typedef struct dfs_nscnode {
	char		nsc_uncpath[DFS_PATH_MAX];
	char		nsc_fspath[DFS_PATH_MAX];
	uint32_t	nsc_type;
} dfs_nscnode_t;

uint32_t dfs_namespace_count(void);
uint32_t dfs_namespace_path(const char *, char *, size_t);
uint32_t dfs_namespace_add(const char *, const char *);
uint32_t dfs_namespace_remove(const char *);
void dfs_namespace_load(const char *);
void dfs_namespace_unload(const char *);
uint32_t dfs_namespace_getflavor(const char *);

uint32_t dfs_root_getinfo(const char *, dfs_info_t *, uint32_t);
uint32_t dfs_root_setinfo(const char *, dfs_info_t *, uint32_t);

uint32_t dfs_link_add(const char *, const char *, const char *,
    const char *, uint32_t, boolean_t *);
uint32_t dfs_link_remove(const char *, const char *, const char *);
uint32_t dfs_link_stat(const char *, uint32_t *);
uint32_t dfs_link_getinfo(const char *, dfs_info_t *, uint32_t);
uint32_t dfs_link_setinfo(const char *, dfs_info_t *, uint32_t);

uint32_t dfs_path_parse(dfs_path_t *, const char *, uint32_t);
void dfs_path_free(dfs_path_t *);

void dfs_cache_iterinit(smb_cache_cursor_t *);
boolean_t dfs_cache_iterate(smb_cache_cursor_t *, dfs_nscnode_t *);
uint32_t dfs_cache_add_byname(const char *, const char *, uint32_t);
void dfs_cache_remove(const char *, const char  *);
uint32_t dfs_cache_getinfo(dfs_nscnode_t *, dfs_info_t *, uint32_t);
uint32_t dfs_cache_num(void);

void dfs_init(void);
void dfs_fini(void);
void dfs_setpriv(priv_op_t);

void dfs_info_trace(const char *, dfs_info_t *);

#ifdef	__cplusplus
}
#endif

#endif	/* _DFS_H */