xref: /freebsd/libexec/talkd/print.c (revision fd8e4ebc8c18caec3eefac6527831f9ee6a92959)
1ea022d16SRodney W. Grimes /*
2ea022d16SRodney W. Grimes  * Copyright (c) 1983, 1993
3ea022d16SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4ea022d16SRodney W. Grimes  *
5ea022d16SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6ea022d16SRodney W. Grimes  * modification, are permitted provided that the following conditions
7ea022d16SRodney W. Grimes  * are met:
8ea022d16SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10ea022d16SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11ea022d16SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12ea022d16SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13ea022d16SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
14ea022d16SRodney W. Grimes  *    must display the following acknowledgement:
15ea022d16SRodney W. Grimes  *	This product includes software developed by the University of
16ea022d16SRodney W. Grimes  *	California, Berkeley and its contributors.
17ea022d16SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
18ea022d16SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
19ea022d16SRodney W. Grimes  *    without specific prior written permission.
20ea022d16SRodney W. Grimes  *
21ea022d16SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22ea022d16SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23ea022d16SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24ea022d16SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25ea022d16SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26ea022d16SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27ea022d16SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28ea022d16SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29ea022d16SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30ea022d16SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31ea022d16SRodney W. Grimes  * SUCH DAMAGE.
32ea022d16SRodney W. Grimes  */
33ea022d16SRodney W. Grimes 
34ea022d16SRodney W. Grimes #ifndef lint
35a846453cSPhilippe Charnier #if 0
36ea022d16SRodney W. Grimes static char sccsid[] = "@(#)print.c	8.1 (Berkeley) 6/4/93";
37a846453cSPhilippe Charnier #endif
38a846453cSPhilippe Charnier static const char rcsid[] =
397f3dea24SPeter Wemm   "$FreeBSD$";
40ea022d16SRodney W. Grimes #endif /* not lint */
41ea022d16SRodney W. Grimes 
42ea022d16SRodney W. Grimes /* debug print routines */
43ea022d16SRodney W. Grimes 
44ea022d16SRodney W. Grimes #include <sys/types.h>
45ea022d16SRodney W. Grimes #include <sys/socket.h>
46fd8e4ebcSMike Barcroft #include <arpa/inet.h>
47ea022d16SRodney W. Grimes #include <protocols/talkd.h>
48ea022d16SRodney W. Grimes #include <stdio.h>
49a846453cSPhilippe Charnier #include <syslog.h>
50ea022d16SRodney W. Grimes 
510b67b493SWarner Losh #include "extern.h"
520b67b493SWarner Losh 
53ea022d16SRodney W. Grimes static	char *types[] =
54ea022d16SRodney W. Grimes     { "leave_invite", "look_up", "delete", "announce" };
55ea022d16SRodney W. Grimes #define	NTYPES	(sizeof (types) / sizeof (types[0]))
56ea022d16SRodney W. Grimes static	char *answers[] =
57ea022d16SRodney W. Grimes     { "success", "not_here", "failed", "machine_unknown", "permission_denied",
58ea022d16SRodney W. Grimes       "unknown_request", "badversion", "badaddr", "badctladdr" };
59ea022d16SRodney W. Grimes #define	NANSWERS	(sizeof (answers) / sizeof (answers[0]))
60ea022d16SRodney W. Grimes 
61a846453cSPhilippe Charnier void
620b67b493SWarner Losh print_request(const char *cp, CTL_MSG *mp)
63ea022d16SRodney W. Grimes {
64ea022d16SRodney W. Grimes 	char tbuf[80], *tp;
65ea022d16SRodney W. Grimes 
66ea022d16SRodney W. Grimes 	if (mp->type > NTYPES) {
67d8366258SWarner Losh 		(void)snprintf(tbuf, sizeof(tbuf), "type %d", mp->type);
68ea022d16SRodney W. Grimes 		tp = tbuf;
69ea022d16SRodney W. Grimes 	} else
70ea022d16SRodney W. Grimes 		tp = types[mp->type];
71bb6ae0a4SBruce Evans 	syslog(LOG_DEBUG, "%s: %s: id %lu, l_user %s, r_user %s, r_tty %s",
72ea022d16SRodney W. Grimes 	    cp, tp, mp->id_num, mp->l_name, mp->r_name, mp->r_tty);
73ea022d16SRodney W. Grimes }
74ea022d16SRodney W. Grimes 
75a846453cSPhilippe Charnier void
760b67b493SWarner Losh print_response(const char *cp, CTL_RESPONSE *rp)
77ea022d16SRodney W. Grimes {
78ea022d16SRodney W. Grimes 	char tbuf[80], *tp, abuf[80], *ap;
79ea022d16SRodney W. Grimes 
80ea022d16SRodney W. Grimes 	if (rp->type > NTYPES) {
81d8366258SWarner Losh 		(void)snprintf(tbuf, sizeof(tbuf), "type %d", rp->type);
82ea022d16SRodney W. Grimes 		tp = tbuf;
83ea022d16SRodney W. Grimes 	} else
84ea022d16SRodney W. Grimes 		tp = types[rp->type];
85ea022d16SRodney W. Grimes 	if (rp->answer > NANSWERS) {
86d8366258SWarner Losh 		(void)snprintf(abuf, sizeof(abuf), "answer %d", rp->answer);
87ea022d16SRodney W. Grimes 		ap = abuf;
88ea022d16SRodney W. Grimes 	} else
89ea022d16SRodney W. Grimes 		ap = answers[rp->answer];
90ea022d16SRodney W. Grimes 	syslog(LOG_DEBUG, "%s: %s: %s, id %d", cp, tp, ap, ntohl(rp->id_num));
91ea022d16SRodney W. Grimes }
92