Searched refs:smbd (Results 1 - 17 of 17) sorted by relevance

/illumos-gate/usr/src/cmd/smbsrv/dtrace/
H A DMakefile28 SRCS= smbd-all.d smbd-authsvc.d smbd-doorsvc.d smbd-pipesvc.d \
H A Dsmbd-authsvc.d18 * User-level dtrace for the smbd authentication service
19 * Usage: dtrace -s smbd-authsvc.d -p `pgrep smbd`
33 pid$target:*smbd:smbd_authsvc_work:entry
41 pid$target:*smbd::entry,
90 pid$target:*smbd::return,
101 pid$target:*smbd:smbd_authsvc_work:return
H A Dsmbd-doorsvc.d18 * User-level dtrace for smbd
19 * Usage: dtrace -s smbd-doorsvc.d -p `pgrep smbd`
28 * smbd_door_dispatch_op() is the logical top of smbd door service calls.
30 pid$target:*smbd:smbd_door_dispatch_op:entry
38 pid$target:*smbd::entry,
81 pid$target:*smbd::return,
92 pid$target:*smbd:smbd_door_dispatch_op:return
H A Dsmbd-pipesvc.d18 * User-level dtrace for smbd
19 * Usage: dtrace -s smbd-pipesvc.d -p `pgrep smbd`
33 pid$target:*smbd:pipesvc_worker:entry
41 pid$target:*smbd::entry,
93 pid$target:*smbd::return,
113 pid$target:*smbd:pipesvc_worker:return
H A Dsmbd-all.d18 * User-level dtrace for smbd. Watch everything it does.
19 * Usage: dtrace -s smbd-all.d -p `pgrep smbd`
28 * Trace everything in smbd
30 pid$target:*smbd::entry,
43 pid$target:*smbd::entry,
81 * Get some of the smbd debug messages, etc.
117 pid$target:*smbd::return,
128 pid$target:*smbd::return,
/illumos-gate/usr/src/cmd/smbsrv/
H A DMakefile28 SUBDIRS = smbadm smbd smbstat dtrace fksmbd bind-helper
/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_main.c59 #include "smbd.h"
92 smbd_t smbd; variable
110 smbd.s_pname = basename(argv[0]);
111 openlog(smbd.s_pname, LOG_PID | LOG_NOWAIT, LOG_DAEMON);
116 if ((uid = getuid()) != smbd.s_uid) {
119 if (smbd.s_fg == 0) {
120 smbd.s_fg = 1;
165 if (smbd.s_fg) {
187 while (!smbd.s_shutting_down) {
211 smbd
[all...]
H A Dsmbd_join.c41 #include "smbd.h"
47 extern smbd_t smbd;
68 (void) smb_config_getstr(SMB_CI_ADS_SITE, smbd.s_site,
70 (void) smb_config_getip(SMB_CI_DOMAIN_SRV, &smbd.s_pdc);
73 if (smbd.s_secmode != SMB_SECMODE_DOMAIN)
78 rc = pthread_create(&smbd.s_dc_monitor_tid, &attr, smbd_dc_monitor,
99 smbd.s_pdc_changed = B_TRUE;
128 if (smbd.s_pdc_changed) {
129 smbd.s_pdc_changed = B_FALSE;
180 smbd
[all...]
H A Dsmbd_syslog.c24 #include "smbd.h"
43 if (smbd.s_debug == 0 && pri == LOG_DEBUG)
57 (void) fprintf(stdout, "smbd.%s: ", pri_name[pri]);
88 * usr/src/cmd/smbsrv/dtrace/smbd-all.d
97 if (smbd.s_debug >= 3)
98 (void) fprintf(stdout, "smbd.trace: %s\n", s);
H A Dsmbd.h72 typedef struct smbd { struct
73 const char *s_version; /* smbd version string */
105 extern smbd_t smbd;
H A DMakefile27 PROG= smbd
49 SVCMETHOD= svc-smbd
H A Dsmbd_spool.c42 #include "smbd.h"
98 extern smbd_t smbd;
115 rc = pthread_create(&smbd.s_spool_tid, &attr, smbd_spool_monitor, NULL);
133 if (pthread_self() == smbd.s_spool_tid)
136 for (i = 0; i < 3 && smbd.s_spool_tid != 0; ++i) {
137 if (pthread_kill(smbd.s_spool_tid, SIGTERM) == ESRCH)
167 while (!smbd.s_shutting_down && (error_retry_cnt > 0)) {
185 smbd.s_spool_tid = 0;
H A Dsmbd_authsvc.c46 #include "smbd.h"
162 rc = pthread_create(&tid, &attr, smbd_authsvc_listen, &smbd);
169 smbd.s_authsvc_tid = tid;
177 if (smbd.s_authsvc_tid != 0) {
178 (void) pthread_kill(smbd.s_authsvc_tid, SIGTERM);
179 smbd.s_authsvc_tid = 0;
208 smbd.s_authsvc_sock = sock;
217 if ((fid = smbd.s_authsvc_sock) != -1) {
218 smbd.s_authsvc_sock = -1;
237 ls = smbd
[all...]
H A Dsmbd_nicmon.c26 * smbd NIC monitor.
46 #include "smbd.h"
52 extern smbd_t smbd;
116 * disabled by setting smbd/nicmon_enable to false.
117 * smbd/nicmon_enable is not defined by default.
/illumos-gate/usr/src/cmd/smbsrv/fksmbd/
H A Dfksmbd_log.c25 #include "smbd.h"
47 if (smbd.s_debug == 0 && pri > LOG_INFO)
74 if (smbd.s_debug == 0 && (flags & SL_NOTE))
H A DMakefile52 SRCS= ${OBJS_SMBD:%.o=../smbd/%.c} \
61 INCS += -I../smbd
116 %.o: ../smbd/%.c
/illumos-gate/usr/src/man/man1m/
H A DMakefile471 smbd.1m \

Completed in 129 milliseconds