2 Unix SMB/Netbios implementation.
4 program to send control messages to Samba processes
5 Copyright (C) Andrew Tridgell 1994-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 {"force-election", MSG_FORCE_ELECTION
},
31 {"profile", MSG_PROFILE
},
32 {"profilelevel", MSG_REQ_PROFILELEVEL
},
33 {"debuglevel", MSG_REQ_DEBUGLEVEL
},
34 {"printer-notify", MSG_PRINTER_NOTIFY
},
42 static void usage(BOOL doexit
)
46 printf("Usage: smbcontrol -i\n");
47 printf(" smbcontrol <destination> <message-type> <parameters>\n\n");
49 printf("<destination> <message-type> <parameters>\n\n");
51 printf("\t<destination> is one of \"nmbd\", \"smbd\" or a process ID\n");
52 printf("\t<message-type> is one of: ");
53 for (i
=0; msg_types
[i
].name
; i
++)
54 printf("%s%s", i
?", ":"",msg_types
[i
].name
);
59 static int pong_count
;
60 static BOOL got_level
;
61 static BOOL pong_registered
= False
;
62 static BOOL debuglevel_registered
= False
;
63 static BOOL profilelevel_registered
= False
;
66 /****************************************************************************
67 a useful function for testing the message system
68 ****************************************************************************/
69 void pong_function(int msg_type
, pid_t src
, void *buf
, size_t len
)
72 printf("PONG from PID %u\n",(unsigned int)src
);
75 /****************************************************************************
76 Prints out the current Debug level returned by MSG_DEBUGLEVEL
77 ****************************************************************************/
78 void debuglevel_function(int msg_type
, pid_t src
, void *buf
, size_t len
)
81 int debuglevel_class
[DBGC_LAST
];
83 memcpy(debuglevel_class
, buf
, len
);
85 printf("Current debug level of PID %u is %d ",(unsigned int)src
, debuglevel_class
[0]);
86 for (i
=1;i
<DBGC_LAST
;i
++)
87 if (debuglevel_class
[i
])
88 printf("%s:%d ", debug_classname_from_index(i
), debuglevel_class
[i
]);
94 /****************************************************************************
95 Prints out the current Profile level returned by MSG_PROFILELEVEL
96 ****************************************************************************/
97 void profilelevel_function(int msg_type
, pid_t src
, void *buf
, size_t len
)
101 memcpy(&level
, buf
, sizeof(int));
112 s
= "count and time";
115 printf("Profiling %s on PID %u\n",s
,(unsigned int)src
);
117 printf("Profiling not available on PID %u\n",(unsigned int)src
);
122 /****************************************************************************
123 send a message to a named destination
124 ****************************************************************************/
125 static BOOL
send_message(char *dest
, int msg_type
, void *buf
, int len
, BOOL duplicates
)
128 TDB_CONTEXT
*the_tdb
;
130 the_tdb
= tdb_open(lock_path("connections.tdb"), 0, 0, O_RDONLY
, 0);
132 fprintf(stderr
,"Failed to open connections database in send_message.\n");
136 /* "smbd" is the only broadcast operation */
137 if (strequal(dest
,"smbd")) {
138 return message_send_all(the_tdb
,msg_type
, buf
, len
, duplicates
);
139 } else if (strequal(dest
,"nmbd")) {
140 pid
= pidfile_pid(dest
);
142 fprintf(stderr
,"Can't find pid for nmbd\n");
145 } else if (strequal(dest
,"self")) {
150 fprintf(stderr
,"Not a valid pid\n");
155 return message_send_pid(pid
, msg_type
, buf
, len
, duplicates
);
158 /****************************************************************************
159 evaluate a message type string
160 ****************************************************************************/
161 static int parse_type(char *mtype
)
164 for (i
=0;msg_types
[i
].name
;i
++) {
165 if (strequal(mtype
, msg_types
[i
].name
)) return msg_types
[i
].value
;
171 /****************************************************************************
173 ****************************************************************************/
174 static BOOL
do_command(char *dest
, char *msg_name
, char **params
)
179 int debuglevel_class
[DBGC_LAST
];
181 mtype
= parse_type(msg_name
);
183 fprintf(stderr
,"Couldn't resolve message type: %s\n", msg_name
);
189 if (!params
|| !params
[0]) {
190 fprintf(stderr
,"MSG_DEBUG needs a parameter\n");
194 ZERO_ARRAY(debuglevel_class
);
195 if (!debug_parse_params(params
, debuglevel_class
)) {
196 fprintf(stderr
, "MSG_DEBUG error. Expected <class name>:level\n");
199 send_message(dest
, MSG_DEBUG
, debuglevel_class
, sizeof(debuglevel_class
), False
);
204 fprintf(stderr
,"MSG_PROFILE needs a parameter\n");
207 if (strequal(params
[0], "off")) {
209 } else if (strequal(params
[0], "count")) {
211 } else if (strequal(params
[0], "on")) {
213 } else if (strequal(params
[0], "flush")) {
217 "MSG_PROFILE parameter must be off, count, on, or flush\n");
220 send_message(dest
, MSG_PROFILE
, &v
, sizeof(int), False
);
223 case MSG_FORCE_ELECTION
:
224 if (!strequal(dest
, "nmbd")) {
225 fprintf(stderr
,"force-election can only be sent to nmbd\n");
228 send_message(dest
, MSG_FORCE_ELECTION
, NULL
, 0, False
);
231 case MSG_REQ_PROFILELEVEL
:
232 if (!profilelevel_registered
) {
233 message_register(MSG_PROFILELEVEL
, profilelevel_function
);
234 profilelevel_registered
= True
;
237 retval
= send_message(dest
, MSG_REQ_PROFILELEVEL
, NULL
, 0, True
);
239 timeout_start
= time(NULL
);
242 if ((time(NULL
) - timeout_start
) > MAX_WAIT
) {
243 fprintf(stderr
,"profilelevel timeout\n");
250 case MSG_REQ_DEBUGLEVEL
:
251 if (!debuglevel_registered
) {
252 message_register(MSG_DEBUGLEVEL
, debuglevel_function
);
253 debuglevel_registered
= True
;
256 retval
= send_message(dest
, MSG_REQ_DEBUGLEVEL
, NULL
, 0, True
);
258 timeout_start
= time(NULL
);
261 if ((time(NULL
) - timeout_start
) > MAX_WAIT
) {
262 fprintf(stderr
,"debuglevel timeout\n");
269 case MSG_PRINTER_NOTIFY
:
270 if (!strequal(dest
, "smbd")) {
271 fprintf(stderr
,"printer-notify can only be sent to smbd\n");
275 fprintf(stderr
, "printer-notify needs a printer name\n");
278 retval
= send_message(dest
, MSG_PRINTER_NOTIFY
, params
[0],
279 strlen(params
[0]) + 1, False
);
283 if (!pong_registered
) {
284 message_register(MSG_PONG
, pong_function
);
285 pong_registered
= True
;
288 fprintf(stderr
,"MSG_PING needs a parameter\n");
294 retval
= send_message(dest
, MSG_PING
, NULL
, 0, True
);
295 if (retval
== False
) break;
298 timeout_start
= time(NULL
);
299 while (pong_count
< n
) {
301 if ((time(NULL
) - timeout_start
) > MAX_WAIT
) {
302 fprintf(stderr
,"PING timeout\n");
314 int main(int argc
, char *argv
[])
319 pstring servicesf
= CONFIGFILE
;
320 BOOL interactive
= False
;
323 setup_logging(argv
[0],True
);
325 charset_initialise();
326 lp_load(servicesf
,False
,False
,False
);
328 if (!message_init()) exit(1);
330 if (argc
< 2) usage(True
);
332 while ((opt
= getopt(argc
, argv
,"i")) != EOF
) {
338 printf("Unknown option %c (%d)\n", (char)opt
, opt
);
344 argv
= &argv
[optind
];
347 if (argc
< 2) usage(True
);
348 return (do_command(argv
[0],argv
[1],argc
> 2 ? &argv
[2] : 0));
355 printf("smbcontrol> ");
356 if (!fgets(temp
, sizeof(temp
)-1, stdin
)) break;
358 while ((myargc
< 3) &&
359 (myargv
[myargc
] = strtok(myargc
?NULL
:temp
," \t\n"))) {
363 if (strequal(myargv
[0],"q")) break;
366 else if (!do_command(myargv
[0],myargv
[1],myargc
> 2 ? &myargv
[2] : 0))