>Есть VPN сервак. В pptpd.conf есть logwtmp.
>Так вот сессии в /var/log/wtmp пишутся, а в /var/run/utmp нет.
>Как сделать так, чтобы по who ppp сессии показывались. К сожалению пришлось лезть в исходники pptpd.
Проблема эта происходит из-за того, что инфа о логине и логауте не пишется в /var/run/utmp, а пишется только в /var/log/wtmp, с которым по ходу не дружит who и много других подобных утилит. Я сделал грубо, дописав копию функции logwtmp с обращением к utmp прямо в код плугина pptpd-logwtmp.c, вроде-бы работает, по крайней мере сервак уже работает несколько суток и не вылетает по ошибке.
Проблема эта малообсуждаемая, а как написал один умный человек - проблема в наших реализациях стандартной функции logwtmp из libc
/*
* $Id: pptpd-logwtmp.c,v 1.5 2007/04/16 00:21:02 quozl Exp $
* pptpd-logwtmp.c - pppd plugin to update wtmp for a pptpd user
*
* Copyright 2004 James Cameron.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*/
#include <unistd.h>
#include <utmp.h>
#include <string.h>
#include "pppd.h"
char pppd_version[] = VERSION;
static my_log_utmp (const char *line, const char *name, const char *host)
{
struct utmp ut;
/* Set information in new entry. */
memset (&ut, 0, sizeof (ut));
#if _HAVE_UT_PID - 0
ut.ut_pid = getpid ();
#endif
#if _HAVE_UT_TYPE - 0
ut.ut_type = name[0] ? USER_PROCESS : DEAD_PROCESS;
#endif
strncpy (ut.ut_line, line, sizeof ut.ut_line);
strncpy (ut.ut_name, name, sizeof ut.ut_name);
#if _HAVE_UT_HOST - 0
strncpy (ut.ut_host, host, sizeof ut.ut_host);
#endif
#if _HAVE_UT_TV - 0
struct timeval tv;
__gettimeofday (&tv, NULL);
ut.ut_tv.tv_sec = tv.tv_sec;
ut.ut_tv.tv_usec = tv.tv_usec;
#else
ut.ut_time = time (NULL);
#endif
updwtmp (_PATH_UTMP, &ut);
}
static char pptpd_original_ip[PATH_MAX+1];
static bool pptpd_logwtmp_strip_domain = 0;
static option_t options[] = {
{ "pptpd-original-ip", o_string, pptpd_original_ip,
"Original IP address of the PPTP connection",
OPT_STATIC, NULL, PATH_MAX },
{ "pptpd-logwtmp-strip-domain", o_bool, &pptpd_logwtmp_strip_domain,
"Strip domain from username before logging", OPT_PRIO | 1 },
{ NULL }
};
static char *reduce(char *user)
{
char *sep;
if (!pptpd_logwtmp_strip_domain) return user;
sep = strstr(user, "//"); /* two slash */
if (sep != NULL) user = sep + 2;
sep = strstr(user, "\\"); /* or one backslash */
if (sep != NULL) user = sep + 1;
return user;
}
static void ip_up(void *opaque, int arg)
{
char *user = reduce(peer_authname);
if (debug)
notice("pptpd-logwtmp.so ip-up %s %s %s", ifname, user,
pptpd_original_ip);
// logwtmp(ifname, user, pptpd_original_ip);
my_log_utmp(ifname, user, pptpd_original_ip);
}
static void ip_down(void *opaque, int arg)
{
if (debug)
notice("pptpd-logwtmp.so ip-down %s", ifname);
// logwtmp(ifname, "", "");
my_log_utmp(ifname, user, pptpd_original_ip);
}
void plugin_init(void)
{
add_options(options);
add_notifier(&ip_up_notifier, ip_up, NULL);
add_notifier(&ip_down_notifier, ip_down, NULL);
if (debug)
notice("pptpd-logwtmp: $Version$");
}