xref: /illumos-gate/usr/src/cmd/smbsrv/smbd/smbd.h (revision a154f012db8e83f5f1b49be92c91827d1868a12a)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  */
25 
26 #ifndef _SMBD_H
27 #define	_SMBD_H
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 #include <sys/types.h>
34 #include <thread.h>
35 #include <synch.h>
36 #include <smbsrv/smb_ioctl.h>
37 #include <smbsrv/smb_token.h>
38 #include <smbsrv/libsmb.h>
39 #include <smbsrv/libmlsvc.h>
40 
41 int smbd_opipe_start(void);
42 void smbd_opipe_stop(void);
43 int smbd_share_start(void);
44 void smbd_share_stop(void);
45 int smbd_nicmon_start(const char *);
46 void smbd_nicmon_stop(void);
47 int smbd_nicmon_refresh(void);
48 int smbd_dc_monitor_init(void);
49 void smbd_dc_monitor_refresh(void);
50 smb_token_t *smbd_user_auth_logon(smb_logon_t *);
51 void smbd_user_nonauth_logon(uint32_t);
52 void smbd_user_auth_logoff(uint32_t);
53 uint32_t smbd_join(smb_joininfo_t *);
54 void smbd_set_secmode(int);
55 boolean_t smbd_online(void);
56 void smbd_online_wait(const char *);
57 
58 void smbd_spool_init(void);
59 void smbd_spool_fini(void);
60 int smbd_cups_init(void);
61 void smbd_cups_fini(void);
62 void smbd_load_printers(void);
63 
64 int smbd_vss_get_count(const char *, uint32_t *);
65 void smbd_vss_get_snapshots(const char *, uint32_t, uint32_t *,
66     uint32_t *, char **);
67 int smbd_vss_map_gmttoken(const char *, char *, char *);
68 
69 typedef struct smbd {
70 	const char	*s_version;	/* smbd version string */
71 	const char	*s_pname;	/* basename to use for messages */
72 	pid_t		s_pid;		/* process-ID of current daemon */
73 	uid_t		s_uid;		/* UID of current daemon */
74 	gid_t		s_gid;		/* GID of current daemon */
75 	int		s_fg;		/* Run in foreground */
76 	boolean_t	s_initialized;
77 	boolean_t	s_shutting_down; /* shutdown control */
78 	volatile uint_t	s_sigval;
79 	volatile uint_t	s_refreshes;
80 	boolean_t	s_kbound;	/* B_TRUE if bound to kernel */
81 	int		s_door_lmshr;
82 	int		s_door_srv;
83 	int		s_door_opipe;
84 	int		s_secmode;	/* Current security mode */
85 	char		s_site[MAXHOSTNAMELEN];
86 	smb_inaddr_t	s_pdc;
87 	boolean_t	s_pdc_changed;
88 	pthread_t	s_refresh_tid;
89 	pthread_t	s_localtime_tid;
90 	pthread_t	s_spool_tid;
91 	pthread_t	s_dc_monitor_tid;
92 	boolean_t	s_nbt_listener_running;
93 	boolean_t	s_tcp_listener_running;
94 	pthread_t	s_nbt_listener_id;
95 	pthread_t	s_tcp_listener_id;
96 	boolean_t	s_fatal_error;
97 	smb_log_hdl_t	s_loghd;
98 } smbd_t;
99 
100 #define	SMBD_LOGNAME		"smbd"
101 #define	SMBD_LOGSIZE		1024
102 
103 #define	SMBD_DOOR_NAMESZ	16
104 
105 typedef struct smbd_door {
106 	mutex_t		sd_mutex;
107 	cond_t		sd_cv;
108 	uint32_t	sd_ncalls;
109 	char		sd_name[SMBD_DOOR_NAMESZ];
110 } smbd_door_t;
111 
112 int smbd_door_start(void);
113 void smbd_door_stop(void);
114 void smbd_door_init(smbd_door_t *, const char *);
115 void smbd_door_fini(smbd_door_t *);
116 void smbd_door_enter(smbd_door_t *);
117 void smbd_door_return(smbd_door_t *, char *, size_t, door_desc_t *, uint_t);
118 
119 #ifdef __cplusplus
120 }
121 #endif
122 
123 #endif /* _SMBD_H */
124