2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_who.c: Shows who is on a channel.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2008-11-09 00:12:56 +01:00
|
|
|
#define FIELD_CHANNEL 0x0001
|
|
|
|
#define FIELD_HOP 0x0002
|
|
|
|
#define FIELD_FLAGS 0x0004
|
|
|
|
#define FIELD_HOST 0x0008
|
|
|
|
#define FIELD_IP 0x0010
|
|
|
|
#define FIELD_IDLE 0x0020
|
|
|
|
#define FIELD_NICK 0x0040
|
|
|
|
#define FIELD_INFO 0x0080
|
|
|
|
#define FIELD_SERVER 0x0100
|
|
|
|
#define FIELD_QUERYTYPE 0x0200 /* cookie for client */
|
|
|
|
#define FIELD_USER 0x0400
|
|
|
|
#define FIELD_ACCOUNT 0x0800
|
|
|
|
#define FIELD_OPLEVEL 0x1000 /* meaningless and stupid, but whatever */
|
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static const char who_desc[] =
|
|
|
|
"Provides the WHO command to display information for users on a channel";
|
|
|
|
|
2008-11-09 00:12:56 +01:00
|
|
|
struct who_format
|
|
|
|
{
|
|
|
|
int fields;
|
|
|
|
const char *querytype;
|
|
|
|
};
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void m_who(struct MsgBuf *, client::client &, client::client &, int, const char **);
|
2016-03-09 08:37:03 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void do_who_on_channel(client::client &source, chan::chan *chptr,
|
2016-03-09 08:37:03 +01:00
|
|
|
int server_oper, int member,
|
|
|
|
struct who_format *fmt);
|
2016-08-23 02:37:07 +02:00
|
|
|
static void who_global(client::client &source, const char *mask, int server_oper, int operspy, struct who_format *fmt);
|
|
|
|
static void do_who(client::client &source,
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *target_p, chan::chan *, chan::membership *msptr,
|
2016-03-09 08:37:03 +01:00
|
|
|
struct who_format *fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct Message who_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"WHO", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, {m_who, 2}, mg_ignore, mg_ignore, mg_ignore, {m_who, 2}}
|
|
|
|
};
|
|
|
|
|
2015-12-27 05:41:09 +01:00
|
|
|
static int
|
|
|
|
_modinit(void)
|
|
|
|
{
|
2016-08-25 09:59:58 +02:00
|
|
|
supported::add("WHOX");
|
2015-12-27 05:41:09 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_moddeinit(void)
|
|
|
|
{
|
2016-08-25 09:59:58 +02:00
|
|
|
supported::del("WHOX");
|
2015-12-27 05:41:09 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
mapi_clist_av1 who_clist[] = { &who_msgtab, NULL };
|
2016-03-07 09:53:27 +01:00
|
|
|
DECLARE_MODULE_AV2(who, _modinit, _moddeinit, who_clist, NULL, NULL, NULL, NULL, who_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** m_who
|
|
|
|
** parv[1] = nickname mask list
|
2008-11-09 00:12:56 +01:00
|
|
|
** parv[2] = additional selection flag and format options
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
m_who(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
static time_t last_used = 0;
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *target_p;
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::membership *msptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
char *mask;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *lp;
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::chan *chptr = NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
int server_oper = parc > 2 ? (*parv[2] == 'o') : 0; /* Show OPERS only */
|
|
|
|
int member;
|
|
|
|
int operspy = 0;
|
2008-11-09 00:12:56 +01:00
|
|
|
struct who_format fmt;
|
|
|
|
const char *s;
|
2008-11-09 00:13:48 +01:00
|
|
|
char maskcopy[512];
|
2008-11-09 00:12:56 +01:00
|
|
|
|
|
|
|
fmt.fields = 0;
|
|
|
|
fmt.querytype = NULL;
|
|
|
|
if (parc > 2 && (s = strchr(parv[2], '%')) != NULL)
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
for (; *s != '\0'; s++)
|
|
|
|
{
|
|
|
|
switch (*s)
|
|
|
|
{
|
|
|
|
case 'c': fmt.fields |= FIELD_CHANNEL; break;
|
|
|
|
case 'd': fmt.fields |= FIELD_HOP; break;
|
|
|
|
case 'f': fmt.fields |= FIELD_FLAGS; break;
|
|
|
|
case 'h': fmt.fields |= FIELD_HOST; break;
|
|
|
|
case 'i': fmt.fields |= FIELD_IP; break;
|
|
|
|
case 'l': fmt.fields |= FIELD_IDLE; break;
|
|
|
|
case 'n': fmt.fields |= FIELD_NICK; break;
|
|
|
|
case 'r': fmt.fields |= FIELD_INFO; break;
|
|
|
|
case 's': fmt.fields |= FIELD_SERVER; break;
|
|
|
|
case 't': fmt.fields |= FIELD_QUERYTYPE; break;
|
|
|
|
case 'u': fmt.fields |= FIELD_USER; break;
|
|
|
|
case 'a': fmt.fields |= FIELD_ACCOUNT; break;
|
|
|
|
case 'o': fmt.fields |= FIELD_OPLEVEL; break;
|
|
|
|
case ',':
|
|
|
|
s++;
|
|
|
|
fmt.querytype = s;
|
|
|
|
s += strlen(s);
|
|
|
|
s--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (EmptyString(fmt.querytype) || strlen(fmt.querytype) > 3)
|
|
|
|
fmt.querytype = "0";
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-11-09 01:05:39 +01:00
|
|
|
rb_strlcpy(maskcopy, parv[1], sizeof maskcopy);
|
2008-11-09 00:13:48 +01:00
|
|
|
mask = maskcopy;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
collapse(mask);
|
|
|
|
|
|
|
|
/* '/who *' */
|
|
|
|
if((*(mask + 1) == '\0') && (*mask == '*'))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if(source.user == NULL)
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if (!chans(user(source)).empty())
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
auto *const chan(begin(chans(user(source)))->first);
|
|
|
|
do_who_on_channel(source, chan, server_oper, true, &fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, "*");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if(IsOperSpy(&source) && *mask == '!')
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
mask++;
|
|
|
|
operspy = 1;
|
|
|
|
|
|
|
|
if(EmptyString(mask))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '/who #some_channel' */
|
2016-08-19 01:53:12 +02:00
|
|
|
if(chan::has_prefix(mask))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
/* List all users on a given channel */
|
2016-08-20 04:51:37 +02:00
|
|
|
chptr = chan::get(parv[1] + operspy, std::nothrow);
|
2012-02-18 04:56:47 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if(chptr != NULL)
|
|
|
|
{
|
2016-08-24 00:25:09 +02:00
|
|
|
if (!is(source, umode::OPER) && !ratelimit_client_who(&source, size(chptr->members)/50))
|
2012-02-18 04:56:47 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_LOAD2HI),
|
|
|
|
me.name, source.name, "WHO");
|
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, "*");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2012-02-18 04:56:47 +01:00
|
|
|
}
|
|
|
|
|
2016-08-26 06:38:15 +02:00
|
|
|
// if(operspy)
|
|
|
|
// report_operspy(&source, "WHO", chptr->name.c_str());
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
if(is_member(chptr, &source) || operspy)
|
|
|
|
do_who_on_channel(source, chptr, server_oper, true, &fmt);
|
2016-08-19 01:33:46 +02:00
|
|
|
else if(!is_secret(chptr))
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who_on_channel(source, chptr, server_oper, false, &fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2012-02-18 04:56:47 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, parv[1] + operspy);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* '/who nick' */
|
|
|
|
|
2016-08-22 03:57:43 +02:00
|
|
|
if(((target_p = client::find_named_person(mask)) != NULL) &&
|
2016-08-24 00:25:09 +02:00
|
|
|
(!server_oper || is(*target_p, umode::OPER)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
int isinvis = 0;
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
isinvis = is(*target_p, umode::INVISIBLE);
|
2016-08-22 03:57:43 +02:00
|
|
|
for(const auto &pit : chans(user(*target_p)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
chptr = pit.first;
|
2016-08-23 02:37:07 +02:00
|
|
|
msptr = get(chptr->members, source, std::nothrow);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(isinvis && !member)
|
2016-08-20 02:32:26 +02:00
|
|
|
{
|
|
|
|
msptr = nullptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
2016-08-20 02:32:26 +02:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-19 01:33:46 +02:00
|
|
|
if(member || (!isinvis && is_public(chptr)))
|
2007-01-25 07:40:21 +01:00
|
|
|
break;
|
2016-08-20 02:32:26 +02:00
|
|
|
|
|
|
|
msptr = nullptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-20 02:32:26 +02:00
|
|
|
/* if we stopped midlist, msptr is the membership for
|
2007-01-25 07:40:21 +01:00
|
|
|
* target_p of chptr
|
|
|
|
*/
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who(source, target_p, chptr, msptr, &fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, mask);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
if(!is_flood_done(source))
|
2016-08-23 02:37:07 +02:00
|
|
|
flood_endgrace(&source);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* it has to be a global who at this point, limit it */
|
2016-08-24 00:25:09 +02:00
|
|
|
if(!is(source, umode::OPER))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if((last_used + ConfigFileEntry.pace_wait) > rb_current_time() || !ratelimit_client(&source, 1))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_LOAD2HI),
|
|
|
|
me.name, source.name, "WHO");
|
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, "*");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
2008-04-02 01:53:20 +02:00
|
|
|
last_used = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Note: operspy_dont_care_user_info does not apply to
|
|
|
|
* who on channels */
|
2016-08-23 02:37:07 +02:00
|
|
|
if(IsOperSpy(&source) && ConfigFileEntry.operspy_dont_care_user_info)
|
2007-01-25 07:40:21 +01:00
|
|
|
operspy = 1;
|
|
|
|
|
|
|
|
/* '/who 0' for a global list. this forces clients to actually
|
|
|
|
* request a full list. I presume its because of too many typos
|
|
|
|
* with "/who" ;) --fl
|
|
|
|
*/
|
|
|
|
if((*(mask + 1) == '\0') && (*mask == '0'))
|
2016-08-23 02:37:07 +02:00
|
|
|
who_global(source, NULL, server_oper, 0, &fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2016-08-23 02:37:07 +02:00
|
|
|
who_global(source, mask, server_oper, operspy, &fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_ENDOFWHO),
|
|
|
|
me.name, source.name, mask);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* who_common_channel
|
|
|
|
* inputs - pointer to client requesting who
|
|
|
|
* - pointer to channel member chain.
|
|
|
|
* - char * mask to match
|
|
|
|
* - int if oper on a server or not
|
|
|
|
* - pointer to int maxmatches
|
2008-11-09 00:12:56 +01:00
|
|
|
* - format options
|
2007-01-25 07:40:21 +01:00
|
|
|
* output - NONE
|
|
|
|
* side effects - lists matching invisible clients on specified channel,
|
|
|
|
* marks matched clients.
|
|
|
|
*/
|
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
who_common_channel(client::client &source, chan::chan *chptr,
|
2008-11-09 00:12:56 +01:00
|
|
|
const char *mask, int server_oper, int *maxmatches,
|
|
|
|
struct who_format *fmt)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
for(const auto &pit : chptr->members.global)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
const auto &target(pit.first);
|
|
|
|
const auto &member(pit.second);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(!is(*target, umode::INVISIBLE) || is_marked(*target))
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(server_oper && !is(*target, umode::OPER))
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-23 04:33:36 +02:00
|
|
|
set_mark(*target);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(*maxmatches > 0)
|
|
|
|
{
|
|
|
|
if((mask == NULL) ||
|
2016-08-20 02:32:26 +02:00
|
|
|
match(mask, target->name) || match(mask, target->username) ||
|
|
|
|
match(mask, target->host) || match(mask, target->servptr->name) ||
|
2016-08-24 00:25:09 +02:00
|
|
|
(is(source, umode::OPER) && match(mask, target->orighost)) ||
|
2016-08-20 02:32:26 +02:00
|
|
|
match(mask, target->info))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who(source, target, chptr, nullptr, fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
--(*maxmatches);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* who_global
|
|
|
|
*
|
|
|
|
* inputs - pointer to client requesting who
|
|
|
|
* - char * mask to match
|
|
|
|
* - int if oper on a server or not
|
2008-11-09 00:12:56 +01:00
|
|
|
* - int if operspy or not
|
|
|
|
* - format options
|
2007-01-25 07:40:21 +01:00
|
|
|
* output - NONE
|
|
|
|
* side effects - do a global scan of all clients looking for match
|
|
|
|
* this is slightly expensive on EFnet ...
|
|
|
|
* marks assumed cleared for all clients initially
|
|
|
|
* and will be left cleared on return
|
|
|
|
*/
|
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
who_global(client::client &source, const char *mask, int server_oper, int operspy, struct who_format *fmt)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::membership *msptr;
|
2016-08-22 03:57:43 +02:00
|
|
|
client::client *target_p;
|
2008-04-01 22:18:48 +02:00
|
|
|
rb_dlink_node *lp, *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
int maxmatches = 500;
|
|
|
|
|
|
|
|
/* first, list all matching INvisible clients on common channels
|
|
|
|
* if this is not an operspy who
|
|
|
|
*/
|
|
|
|
if(!operspy)
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
for(const auto &pit : chans(user(source)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
auto &chan(pit.first);
|
2016-08-23 02:37:07 +02:00
|
|
|
who_common_channel(source, chan, mask, server_oper, &maxmatches, fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
2016-08-26 06:38:15 +02:00
|
|
|
// else if (!ConfigFileEntry.operspy_dont_care_user_info)
|
|
|
|
// report_operspy(&source, "WHO", mask);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* second, list all matching visible clients and clear all marks
|
|
|
|
* on invisible clients
|
|
|
|
* if this is an operspy who, list all matching clients, no need
|
|
|
|
* to clear marks
|
|
|
|
*/
|
2008-04-01 22:18:48 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, global_client_list.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-22 03:57:43 +02:00
|
|
|
target_p = (client::client *)ptr->data;
|
2016-08-23 04:33:36 +02:00
|
|
|
if(!is_person(*target_p))
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(is(*target_p, umode::INVISIBLE) && !operspy)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 04:33:36 +02:00
|
|
|
clear_mark(*target_p);
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(server_oper && !is(*target_p, umode::OPER))
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
|
|
|
if(maxmatches > 0)
|
|
|
|
{
|
|
|
|
if(!mask ||
|
|
|
|
match(mask, target_p->name) || match(mask, target_p->username) ||
|
2007-11-20 13:36:55 +01:00
|
|
|
match(mask, target_p->host) || match(mask, target_p->servptr->name) ||
|
2016-08-24 00:25:09 +02:00
|
|
|
(is(source, umode::OPER) && match(mask, target_p->orighost)) ||
|
2007-01-25 07:40:21 +01:00
|
|
|
match(mask, target_p->info))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who(source, target_p, nullptr, nullptr, fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
--maxmatches;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxmatches <= 0)
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_TOOMANYMATCHES),
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, source.name, "WHO");
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do_who_on_channel
|
|
|
|
*
|
|
|
|
* inputs - pointer to client requesting who
|
|
|
|
* - pointer to channel to do who on
|
|
|
|
* - The "real name" of this channel
|
2016-08-23 02:37:07 +02:00
|
|
|
* - int if &source is a server oper or not
|
2007-01-25 07:40:21 +01:00
|
|
|
* - int if client is member or not
|
2008-11-09 00:12:56 +01:00
|
|
|
* - format options
|
2007-01-25 07:40:21 +01:00
|
|
|
* output - NONE
|
|
|
|
* side effects - do a who on given channel
|
|
|
|
*/
|
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who_on_channel(client::client &source, chan::chan *chptr,
|
2016-08-20 02:32:26 +02:00
|
|
|
int server_oper, int source_member, struct who_format *fmt)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
for(auto &pit : chptr->members.global)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
const auto &target(pit.first);
|
|
|
|
auto &member(pit.second);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(server_oper && !is(*target, umode::OPER))
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
if(source_member || !is(*target, umode::INVISIBLE))
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who(source, target, chptr, &member, fmt);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-20 17:17:27 +01:00
|
|
|
/*
|
|
|
|
* append_format
|
|
|
|
*
|
|
|
|
* inputs - pointer to buffer
|
|
|
|
* - size of buffer
|
|
|
|
* - pointer to position
|
|
|
|
* - format string
|
|
|
|
* - arguments for format
|
|
|
|
* output - NONE
|
|
|
|
* side effects - position incremented, possibly beyond size of buffer
|
|
|
|
* this allows detecting overflow
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
append_format(char *buf, size_t bufsize, size_t *pos, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
size_t max, result;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
max = *pos >= bufsize ? 0 : bufsize - *pos;
|
|
|
|
va_start(ap, fmt);
|
2016-02-10 02:25:32 +01:00
|
|
|
result = vsnprintf(buf + *pos, max, fmt, ap);
|
2008-12-20 17:17:27 +01:00
|
|
|
va_end(ap);
|
|
|
|
*pos += result;
|
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* do_who
|
|
|
|
*
|
|
|
|
* inputs - pointer to client requesting who
|
|
|
|
* - pointer to client to do who on
|
2008-11-09 00:13:29 +01:00
|
|
|
* - channel membership or NULL
|
2008-11-09 00:12:56 +01:00
|
|
|
* - format options
|
2007-01-25 07:40:21 +01:00
|
|
|
* output - NONE
|
|
|
|
* side effects - do a who on given person
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
do_who(client::client &source, client::client *target_p, chan::chan *chan, chan::membership *msptr, struct who_format *fmt)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-12-03 22:54:30 +01:00
|
|
|
char status[16];
|
2008-12-20 17:17:27 +01:00
|
|
|
char str[510 + 1]; /* linebuf.c will add \r\n */
|
|
|
|
size_t pos;
|
2008-11-09 00:12:56 +01:00
|
|
|
const char *q;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(status, "%c%s%s",
|
2016-08-24 00:25:09 +02:00
|
|
|
away(user(*target_p)).size()? 'G' : 'H', is(*target_p, umode::OPER) ? "*" : "", msptr ? find_status(msptr, fmt->fields || IsCapable(&source, CLICAP_MULTI_PREFIX)) : "");
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields == 0)
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_WHOREPLY), me.name,
|
|
|
|
source.name, msptr ? chan->name.c_str() : "*",
|
2008-11-09 00:12:56 +01:00
|
|
|
target_p->username, target_p->host,
|
|
|
|
target_p->servptr->name, target_p->name, status,
|
2016-08-24 00:25:09 +02:00
|
|
|
ConfigServerHide.flatten_links && !is(source, umode::OPER) && !is_exempt_shide(source) ? 0 : target_p->hopcount,
|
2008-11-09 00:12:56 +01:00
|
|
|
target_p->info);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
str[0] = '\0';
|
2008-12-20 17:17:27 +01:00
|
|
|
pos = 0;
|
|
|
|
append_format(str, sizeof str, &pos, ":%s %d %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, RPL_WHOSPCRPL, source.name);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_QUERYTYPE)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", fmt->querytype);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_CHANNEL)
|
2016-08-20 02:32:26 +02:00
|
|
|
append_format(str, sizeof str, &pos, " %s", msptr? name(*chan).c_str() : "*");
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_USER)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", target_p->username);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_IP)
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if (show_ip(&source, target_p) && !EmptyString(target_p->sockhost) && strcmp(target_p->sockhost, "0"))
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", target_p->sockhost);
|
2008-11-09 00:12:56 +01:00
|
|
|
else
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", "255.255.255.255");
|
2008-11-09 00:12:56 +01:00
|
|
|
}
|
|
|
|
if (fmt->fields & FIELD_HOST)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", target_p->host);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_SERVER)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", target_p->servptr->name);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_NICK)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", target_p->name);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_FLAGS)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", status);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_HOP)
|
2016-08-24 00:25:09 +02:00
|
|
|
append_format(str, sizeof str, &pos, " %d", ConfigServerHide.flatten_links && !is(source, umode::OPER) && !is_exempt_shide(source) ? 0 : target_p->hopcount);
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_IDLE)
|
2016-08-23 04:33:36 +02:00
|
|
|
append_format(str, sizeof str, &pos, " %d", (int)(my(*target_p) ? rb_current_time() - target_p->localClient->last : 0));
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_ACCOUNT)
|
|
|
|
{
|
|
|
|
/* display as in whois */
|
2016-08-22 03:57:43 +02:00
|
|
|
q = suser(user(*target_p)).c_str();
|
2008-11-09 00:12:56 +01:00
|
|
|
if (!EmptyString(q))
|
|
|
|
{
|
2016-08-16 11:12:01 +02:00
|
|
|
while(rfc1459::is_digit(*q))
|
2008-11-09 00:12:56 +01:00
|
|
|
q++;
|
|
|
|
if(*q == '\0')
|
2016-08-22 03:57:43 +02:00
|
|
|
q = suser(user(*target_p)).c_str();
|
2008-11-09 00:12:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
q = "0";
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", q);
|
2008-11-09 00:12:56 +01:00
|
|
|
}
|
|
|
|
if (fmt->fields & FIELD_OPLEVEL)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " %s", is_chanop(msptr) ? "999" : "n/a");
|
2008-11-09 00:12:56 +01:00
|
|
|
if (fmt->fields & FIELD_INFO)
|
2008-12-20 17:17:27 +01:00
|
|
|
append_format(str, sizeof str, &pos, " :%s", target_p->info);
|
|
|
|
|
|
|
|
if (pos >= sizeof str)
|
|
|
|
{
|
2016-03-09 08:37:03 +01:00
|
|
|
static bool warned = false;
|
2008-12-20 17:17:27 +01:00
|
|
|
if (!warned)
|
2016-08-26 13:50:12 +02:00
|
|
|
sendto_realops_snomask(sno::DEBUG, L_NETWIDE,
|
2008-12-20 17:17:27 +01:00
|
|
|
"WHOX overflow while sending information about %s to %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
target_p->name, source.name);
|
2016-03-09 08:37:03 +01:00
|
|
|
warned = true;
|
2008-12-20 17:17:27 +01:00
|
|
|
}
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, "%s", str);
|
2008-11-09 00:12:56 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|