- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
/*
|
|
|
|
string.c
|
|
|
|
|
|
|
|
A string helper function
|
|
|
|
|
|
|
|
Copyright (C) 2001 Adam Olsen
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
"$Id$";
|
|
|
|
|
2003-07-17 18:40:53 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2002-01-19 20:45:45 +00:00
|
|
|
#include <stdio.h>
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
#include "qstring.h"
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
|
2002-03-03 06:03:51 +00:00
|
|
|
#ifdef IRIX
|
|
|
|
#define _vsnprintf vsnprintf
|
|
|
|
#endif
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Q_strcasestr
|
|
|
|
|
|
|
|
case-insensitive version of strstr
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
Q_strcasestr (const char *haystack, const char *needle)
|
|
|
|
{
|
2001-10-18 04:44:58 +00:00
|
|
|
size_t len = strlen (needle);
|
- fix a little mistake in SV_PrintToClient that'd cause it to
segfault if your first call was with "". Probably could cause
crashes too
- add a string.c file to libQFutil, with a Q_strcasestr function,
which strcasestr is defined to if it's not already defined. (we'd
get that with glibc if we defined __USE_GNU, but we don't)
- make client_t and SV_ExtractFromUserinfo both use NAME_MAX for
their name arrays, instead of 32 for one and 80 for the other
- rewrite almost all of SV_ExtractFromUserinfo's name handling.
- \r, \n, and \t are all converted to spaces
- leading/trailing spaces are stripped
- consecutive spaces are reduced to a single space
- empty names are considered bad
- user-* nicks are considered bad (unless forced to them)
- a name containing console or admin is considered bad
- a name that already exists is considered bad
- if they have a bad name it gets forced to user-%d, where %d is
their userid
- netname in the progs is now updated properly
- name changes are always reported unless it's the initial setting,
rather than only if they're full connected and not a spectator
- finally, if the name change fails (info string exceeded), give
them the boot. (before this was only done for duplicate names)
That's about it :)
2001-10-04 19:11:39 +00:00
|
|
|
while (*haystack) {
|
|
|
|
if (!strncasecmp (haystack, needle, len))
|
|
|
|
return haystack;
|
|
|
|
haystack++;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2001-10-18 04:44:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Q_strnlen
|
|
|
|
|
|
|
|
strlen with a cutoff
|
|
|
|
*/
|
|
|
|
size_t
|
|
|
|
Q_strnlen (const char *s, size_t maxlen)
|
|
|
|
{
|
|
|
|
size_t i;
|
2001-12-03 21:06:57 +00:00
|
|
|
for (i = 0; i < maxlen && s[i]; i++);
|
2001-10-18 04:44:58 +00:00
|
|
|
return i;
|
|
|
|
}
|
2002-01-03 23:24:47 +00:00
|
|
|
|
2002-03-03 06:03:51 +00:00
|
|
|
#if defined(HAVE__VSNPRINTF) && !defined(HAVE_VSNPRINTF)
|
2002-01-19 20:45:45 +00:00
|
|
|
size_t
|
|
|
|
Q_snprintfz (char *dest, size_t size, const char *fmt, ...)
|
2002-01-03 23:24:47 +00:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
va_list argptr;
|
|
|
|
|
|
|
|
va_start (argptr, fmt);
|
|
|
|
len = _vsnprintf (dest, size - 1, fmt, argptr);
|
|
|
|
va_end (argptr);
|
2002-02-13 00:57:00 +00:00
|
|
|
if (len < 0 && size) // the string didn't fit into the buffer
|
2002-01-03 23:24:47 +00:00
|
|
|
dest[size - 1] = 0;
|
2002-01-19 20:45:45 +00:00
|
|
|
return len;
|
2002-01-03 23:24:47 +00:00
|
|
|
}
|
|
|
|
|
2002-01-19 20:45:45 +00:00
|
|
|
size_t
|
|
|
|
Q_vsnprintfz (char *dest, size_t size, const char *fmt, va_list argptr)
|
2002-01-03 23:24:47 +00:00
|
|
|
{
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = _vsnprintf (dest, size - 1, fmt, argptr);
|
|
|
|
|
2002-02-13 00:57:00 +00:00
|
|
|
if (len < 0 && size) // the string didn't fit into the buffer
|
2002-01-03 23:24:47 +00:00
|
|
|
dest[size - 1] = 0;
|
2002-01-19 20:45:45 +00:00
|
|
|
return len;
|
2002-01-03 23:24:47 +00:00
|
|
|
}
|
|
|
|
#endif
|