#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)process.c 8.2 (Berkeley) 11/16/93";
#else
__RCSID("$NetBSD: process.c,v 1.14 2009/03/16 01:13:38 lukem Exp $");
#endif
#endif
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <protocols/talkd.h>
#include <netdb.h>
#include <syslog.h>
#include <stdio.h>
#include <string.h>
#include <paths.h>
#include "extern.h"
#include "utmpentry.h"
void
process_request(CTL_MSG *mp, CTL_RESPONSE *rp)
{
CTL_MSG *ptr;
rp->vers = TALK_VERSION;
rp->type = mp->type;
rp->id_num = htonl(0);
mp->id_num = ntohl(mp->id_num);
mp->addr.sa_family = ntohs(mp->addr.sa_family);
mp->ctl_addr.sa_family = ntohs(mp->ctl_addr.sa_family);
mp->pid = ntohl(mp->pid);
if (mp->vers != TALK_VERSION) {
syslog(LOG_WARNING, "Bad protocol version %d", mp->vers);
rp->answer = BADVERSION;
return;
}
if (mp->addr.sa_family != AF_INET) {
syslog(LOG_WARNING, "Bad address, family %d",
mp->addr.sa_family);
rp->answer = BADADDR;
return;
}
if (mp->ctl_addr.sa_family != AF_INET) {
syslog(LOG_WARNING, "Bad control address, family %d",
mp->ctl_addr.sa_family);
rp->answer = BADCTLADDR;
return;
}
if (debug || logging)
print_request("request", mp);
switch (mp->type) {
case ANNOUNCE:
do_announce(mp, rp);
break;
case LEAVE_INVITE:
ptr = find_request(mp);
if (ptr != (CTL_MSG *)0) {
rp->id_num = htonl(ptr->id_num);
rp->answer = SUCCESS;
} else
insert_table(mp, rp);
break;
case LOOK_UP:
ptr = find_match(mp);
if (ptr != (CTL_MSG *)0) {
rp->id_num = htonl(ptr->id_num);
rp->addr = ptr->addr;
rp->addr.sa_family = htons(ptr->addr.sa_family);
rp->answer = SUCCESS;
} else
rp->answer = NOT_HERE;
break;
case DELETE:
rp->answer = delete_invite(mp->id_num);
break;
default:
rp->answer = UNKNOWN_REQUEST;
break;
}
if (debug)
print_response("process_request done", rp);
}
void
do_announce(CTL_MSG *mp, CTL_RESPONSE *rp)
{
CTL_MSG *ptr;
int result;
char hostname[NI_MAXHOST];
struct sockaddr sa;
tsa2sa(&sa, &mp->ctl_addr);
result = find_user(mp->r_name, mp->r_tty, sizeof(mp->r_tty));
if (result != SUCCESS) {
rp->answer = result;
return;
}
if (getnameinfo(&sa, sa.sa_len, hostname, sizeof(hostname), NULL,
0, 0)) {
rp->answer = MACHINE_UNKNOWN;
return;
}
ptr = find_request(mp);
if (ptr == (CTL_MSG *) 0) {
insert_table(mp, rp);
rp->answer = announce(mp, hostname);
return;
}
if (mp->id_num > ptr->id_num) {
ptr->id_num = new_id();
rp->id_num = htonl(ptr->id_num);
rp->answer = announce(mp, hostname);
} else {
rp->id_num = htonl(ptr->id_num);
rp->answer = SUCCESS;
}
}
int
find_user(const char *name, char *tty, size_t ttysize)
{
int status;
struct stat statb;
struct utmpentry *ep;
char ftty[sizeof(_PATH_DEV) + sizeof(ep->line)];
time_t atime = 0;
int anytty = 0;
(void)getutentries(NULL, &ep);
status = NOT_HERE;
(void) strlcpy(ftty, _PATH_DEV, sizeof(ftty));
if (*tty == '\0')
anytty = 1;
for (; ep; ep = ep->next) {
if (strcmp(ep->name, name) != 0)
continue;
if (anytty) {
(void)strlcpy(ftty + sizeof(_PATH_DEV) - 1, ep->line,
sizeof(ftty) - sizeof(_PATH_DEV) + 1);
if (stat(ftty, &statb) != 0)
continue;
if (!(statb.st_mode & S_IWGRP)) {
if (status != SUCCESS)
status = PERMISSION_DENIED;
continue;
}
if (statb.st_atime > atime &&
strlcpy(tty, ep->line, ttysize) < ttysize) {
atime = statb.st_atime;
status = SUCCESS;
}
} else if (strcmp(ep->line, tty) == 0) {
status = SUCCESS;
break;
}
}
return (status);
}