/* $Id: checknames.c,v 5.1 2001/05/07 15:23:28 bertg Exp $ * * XPilot, a multiplayer gravity war game. Copyright (C) 1991-2001 by * * Bjørn Stabell * Ken Ronny Schouten * Bert Gijsbers * Dick Balaska * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #ifndef _WINDOWS # include #endif #include "version.h" #include "config.h" #include "const.h" #include "error.h" #include "pack.h" #include "checknames.h" #include "commonproto.h" char checknames_version[] = VERSION; int Check_real_name(char *name) { unsigned char *str; name[MAX_NAME_LEN - 1] = '\0'; if (!*name) { return NAME_ERROR; } str = (unsigned char *) name; for (; *str; str++) { if (!isgraph(*str)) { return NAME_ERROR; } } return NAME_OK; } void Fix_real_name(char *name) { unsigned char *str; name[MAX_NAME_LEN - 1] = '\0'; if (!*name) { strlcpy(name, "X", sizeof(name)); return; } str = (unsigned char *) name; for (; *str; str++) { if (!isgraph(*str)) { *str = 'x'; } } } int Check_nick_name(char *name) { unsigned char *str; name[MAX_NAME_LEN - 1] = '\0'; if (!*name) { return NAME_ERROR; } str = (unsigned char *) name; if (!isupper(*str)) { return NAME_ERROR; } for (; *str; str++) { if (!isprint(*str)) { return NAME_ERROR; } } --str; if (isspace(*str)) { return NAME_ERROR; } return NAME_OK; } void Fix_nick_name(char *name) { unsigned char *str; name[MAX_NAME_LEN - 1] = '\0'; if (!*name) { static int n; sprintf(name, "X%d", n++); return; } str = (unsigned char *) name; if (!isupper(*str)) { if (islower(*str)) { *str = toupper(*str); } else { *str = 'X'; } } for (; *str; str++) { if (!isprint(*str)) { *str = 'x'; } } --str; while (isspace(*str)) { *str-- = '\0'; } } /* isalnum() depends on locale. */ static int is_alpha_numeric(unsigned char c) { if (c >= 'A' && c <= 'Z') return 1; if (c >= 'a' && c <= 'z') return 1; if (c >= '0' && c <= '9') return 1; return 0; } int Check_host_name(char *name) { unsigned char *str; name[MAX_HOST_LEN - 1] = '\0'; str = (unsigned char *) name; if (!is_alpha_numeric(*str)) { return NAME_ERROR; } for (; *str; str++) { if (!is_alpha_numeric(*str)) { if (*str == '.' || *str == '-') { if (str[1] == '.' || str[1] == '-' || !str[1]) { return NAME_ERROR; } } else { return NAME_ERROR; } } } return NAME_OK; } void Fix_host_name(char *name) { unsigned char *str; name[MAX_HOST_LEN - 1] = '\0'; str = (unsigned char *) name; if (!is_alpha_numeric(*str)) { strlcpy(name, "xxx.xxx", sizeof(name)); return; } for (; *str; str++) { if (!is_alpha_numeric(*str)) { if (*str == '.' || *str == '-') { if (str[1] == '.' || str[1] == '-' || !str[1]) { *str = 'x'; } } else { *str = 'x'; } } } } /* */ int Check_disp_name(char *name) { unsigned char *str; name[MAX_NAME_LEN] = '\0'; str = (unsigned char *) name; for (; *str; str++) { if (!isgraph(*str)) { return NAME_ERROR; } } return NAME_OK; } void Fix_disp_name(char *name) { unsigned char *str; name[MAX_NAME_LEN] = '\0'; str = (unsigned char *) name; for (; *str; str++) { if (!isgraph(*str)) { *str = 'x'; } } }