summaryrefslogtreecommitdiff
path: root/nameblocker.sp
blob: aec696312d98f8f89e4eba94ec8fe7d68f973fda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#pragma newdecls required

#include <sourcemod>
#include <regex>

public Plugin myinfo = {
    name            = "SM Name Blocker",
    description     = "A simple plugin to stop people with blacklisted names from joining a server",
    author          = "NW/RL",
    version         = "alpha-0.1",
    url             = "git.dabikers.online/smnameblocker"
};

#define HANDLE_SIZE (32)
// This exists because you can't sizeof() a Handle, but it IS specified to be a 32bit integer. This should also equal the size of
// any other methodmap or descendant of Handle (like Regex)

#define PATTERN_MAX_LEN (512 + 1) /* 512 chars + null terminator */

enum OperatingMode {
    OP_DISABLED,
    OP_KICK,
    OP_BAN,
    OP_TOOBIG
}

ArrayList regexlist;
ArrayList patternlist;
// Note: Contents of ArrayLists are lost on map change / reload. I should store everything in a database,
// then use the database to populate the list whenever it is cleared

Database db;

ConVar gcvarOperMode;       static const char OPERMODENAME[]        = "nameblock_OperatingMode";            const OperatingMode DEFAULTOPERMODE = OP_KICK;
ConVar gcvarAdmCmdFlag;     static const char ADMCMDFLAGNAME[]      = "nameblock_AdminCommandFlag";         const int DEFAULTADMCMDFLAG = ADMFLAG_BAN;
ConVar gcvarRegexCompFlags; static const char REGEXCOMPFLAGSNAME[]  = "nameblock_RegexCompilationFlags";    const int DEFAULTREGEXCOMPFLAGS = (PCRE_CASELESS | PCRE_DOTALL | PCRE_EXTENDED | PCRE_UTF8);
ConVar gcvarAmdImmFlag;     static const char ADMINIMMUNITYFLAG[]   = "nameblock_AdminImmunityFlag";        const int DEFAULTADMIMMFLAG = ADMFLAG_GENERIC;

public void OnAllPluginsLoaded() {
    // Initialize and populate datatypes
    regexlist = new ArrayList(ByteCountToCells(HANDLE_SIZE));
    patternlist = new ArrayList(ByteCountToCells(PATTERN_MAX_LEN));
    // db = 

    // Register convars
    char tmp[32]; // Consider this a byte array
    Format(tmp, sizeof(tmp), "%d", view_as<int>(DEFAULTOPERMODE));
    gcvarOperMode = CreateConVar(OPERMODENAME, tmp, "Operating mode (disabled, kick, ban, etc.)");
    gcvarOperMode.IntValue = view_as<int>(DEFAULTOPERMODE);

    Format(tmp, sizeof(tmp), "%d", DEFAULTADMCMDFLAG);
    gcvarAdmCmdFlag = CreateConVar(ADMCMDFLAGNAME, tmp, "Admin flag to modify pattern list");
    gcvarAdmCmdFlag.IntValue = DEFAULTADMCMDFLAG;

    Format(tmp, sizeof(tmp), "%d", DEFAULTREGEXCOMPFLAGS);
    gcvarRegexCompFlags = CreateConVar(REGEXCOMPFLAGSNAME, tmp, "Regular expression compilation flags");
    gcvarRegexCompFlags.IntValue = DEFAULTREGEXCOMPFLAGS;

    Format(tmp, sizeof(tmp), "%d", DEFAULTADMIMMFLAG);
    gcvarAmdImmFlag = CreateConVar(ADMINIMMUNITYFLAG, tmp, "Admin immunity flag");
    gcvarAmdImmFlag.IntValue = DEFAULTADMIMMFLAG;

    // I should make a function for setting up convars

    AutoExecConfig(true, "nameblocker_cvars");

    // Register commands
    RegAdminCmd("nb_addpattern",    registerPattern,    gcvarAdmCmdFlag.IntValue, "Add a regex pattern to the filter list");
    RegAdminCmd("nb_removepattern", deletePattern,      gcvarAdmCmdFlag.IntValue, "Remove a regex pattern from the filter list");
    RegAdminCmd("nb_modifypattern", replacePattern,     gcvarAdmCmdFlag.IntValue, "Replace an existing regex pattern with a new pattern");
    RegAdminCmd("nb_listpatterns",  listPatterns,       gcvarAdmCmdFlag.IntValue, "List current regex patterns and their indicies");
}

public void OnClientPostAdminCheck(int client) {
    checkName(client);
}

public void OnClientSettingsChanged(int client) {
    checkName(client);
}



public Action registerPattern(int client, int args) {
    if(args < 2) {
        ReplyToCommand(client, "Error: missing regex pattern");
        return Plugin_Handled;
    }

    char pattern[PATTERN_MAX_LEN];
    GetCmdArg(1, pattern, sizeof(pattern));
    // TODO: Error handling

    if(insertPattern(pattern, regexlist.Length - 1)) {
        ReplyToCommand(client, "Error: could not register pattern");
        return Plugin_Handled
    }

    return Plugin_Handled;
}

public Action deletePattern(int client, int args) {
    if(args < 2) {
        ReplyToCommand(client, "Error: no pattern index given");
        return Plugin_Handled;
    }

    int index
    if(!GetCmdArgIntEx(1, index)) {
        ReplyToCommand(client, "Error: index argument not numerical");
        return Plugin_Handled;
    }

    if(removePattern(index)) {
        ReplyToCommand(client, "Error: could not remove pattern");
        return Plugin_Handled;
    }

    return Plugin_Handled;
}

public Action replacePattern(int client, int args) {
    if(args < 3) {
        ReplyToCommand(client, "Error: missing index, replacement pattern, or both");
        return Plugin_Handled;
    }
    
    int index
    if(!GetCmdArgIntEx(1, index)) {
        ReplyToCommand(client, "Error: index argument not numerical");
        return Plugin_Handled;
    }

    char pattern[PATTERN_MAX_LEN];
    GetCmdArg(2, pattern, sizeof(pattern));
    // TODO: Error handling

    if(removePattern(index)) {
        ReplyToCommand(client, "Error: could not remove pattern");
        return Plugin_Handled;
    }
    if(insertPattern(pattern, regexlist.Length - 1)) {
        ReplyToCommand(client, "Error: could not register pattern");
        return Plugin_Handled
    }
    // Preferably this would be atomic as to not lose a pattern, but that's something I can do later
    
    // I know I can make the database change "atomic" via the use of a transaction, but handling that would necessitate a different 
    // function

    return Plugin_Handled;
}

public Action listPatterns(int client, int args) {
    for(int i = 0; i < patternlist.Length; i++) {
        ReplyToCommand(client, "[%d] %s", i, patternlist.Get(i));
    }

    return Plugin_Handled;
}



int insertPattern(char pattern[PATTERN_MAX_LEN], int index) {
    if(IsNullString(pattern) || index < 0 || index >= regexlist.Length) return -1;

    static char errstr[512]; static RegexError reerr; 
    Regex res = CompileRegex(pattern, gcvarRegexCompFlags.IntValue, errstr, sizeof(errstr), reerr);
    if(res == null) {
        LogError("Error: Could not compile regex pattern \"%s\": %s (%d)", pattern, errstr, reerr);
        return -1;
    }

    if(index != (regexlist.Length - 1)) {
        regexlist.ShiftUp(index);
        patternlist.ShiftUp(index);
        regexlist.Set(index, res);
        patternlist.Set(index, pattern); 
    } else {
        regexlist.Push(res);
        patternlist.Push(pattern);
    }

    // TODO: This should also insert the pattern into the database

    return 0;
}

int removePattern(int index) {
    if(index < 0 || index >= regexlist.Length) return -1;

    regexlist.Erase(index);
    patternlist.Erase(index);

    // TODO: This should also remove the pattern from the database

    return 0;
}



int checkName(int client) {
    if(client <= 0) return -1;
    if(gcvarOperMode.IntValue == view_as<int>(OP_DISABLED)) return -1;
    if(CheckCommandAccess(client, "", gcvarAmdImmFlag.IntValue, true)) return -1;

    char name[64 + 1];
    if(getName(client, name, sizeof(name)) <= 0) {
        LogError("Tried to get a client's name for a name check, but could not")
        return -1;
    }

    RegexError reerr;
    for(int i = 0, m = 0; i < regexlist.Length; i++) {
        m = MatchRegex(regexlist.Get(i), name, reerr);

        if(m < 0) {
            handleFailedRegex(client, reerr);
            return -1;
        }
        if(m == 0) continue;

        handleNameHit(client);
        break;
    }

    return 0;
}

int getName(int client, char[] buf, int buflen) {
    if(client <= 0 || buflen <= 0) return -1;
    if(IsNullString(buf)) return -1;

    return Format(buf, buflen, "%N", client);
}

int handleNameHit(int client) {
    if(client <= 0) return -1;

    switch(gcvarOperMode.IntValue) {
        case OP_DISABLED: {return 0;}
        case OP_KICK: {
            KickClient(client, "Failed name check");
            LogAction(0, client, "Kicked %L for failing a name check", client);
            return 0;
        }
        case OP_BAN: {
            // BanClient()
            // TODO: Interop with other ban systems
            // Log ban
        }
        default: {
            LogError("%L failed a name check, but the operating mode in an invalid state", client);
            return -1;
        }
    }

    LogError("Broke out of switch statement that shouldn't have happened");
    return -1; // Shouldn't get to this point
}

int handleFailedRegex(int client, RegexError reerr) {
    static char regstr[128];
    RegexStrError(reerr, regstr, sizeof(regstr));

    LogError("Ran into regex error when trying to check user %L's name. Reported regex error: %s", client, regstr);
    return 0;
}



// Note: May or may not be particularly descriptive for any given error
int RegexStrError(RegexError err, char[] buf, int buflen) {
    if(IsNullString(buf)) return -1;

    switch(err) {
        case REGEX_ERROR_NONE: {Format(buf, buflen, "No error");}  /* No error */

        case REGEX_ERROR_ASSERT:    {Format(buf, buflen, "Internal error");}
        case REGEX_ERROR_BADBR:     {Format(buf, buflen, "Invalid repeat counts in {}");}
        case REGEX_ERROR_BADPAT:    {Format(buf, buflen, "Pattern error");}
        case REGEX_ERROR_BADRPT:    {Format(buf, buflen, "? * + invalid");}
        case REGEX_ERROR_EBRACE:    {Format(buf, buflen, "Unbalanced {}");}
        case REGEX_ERROR_EBRACK:    {Format(buf, buflen, "Unbalanced []");}
        case REGEX_ERROR_ECOLLATE:  {Format(buf, buflen, "Collation error - not relevant");}
        case REGEX_ERROR_ECTYPE:    {Format(buf, buflen, "Bad class");}
        case REGEX_ERROR_EESCAPE:   {Format(buf, buflen, "Bad escape sequence");}
        case REGEX_ERROR_EMPTY:     {Format(buf, buflen, "Empty expression");}
        case REGEX_ERROR_EPAREN:    {Format(buf, buflen, "Unbalanced ()");}
        case REGEX_ERROR_ERANGE:    {Format(buf, buflen, "Bad range inside []");}
        case REGEX_ERROR_ESIZE:     {Format(buf, buflen, "Expression too big");}
        case REGEX_ERROR_ESPACE:    {Format(buf, buflen, "Failed to get memory");}
        case REGEX_ERROR_ESUBREG:   {Format(buf, buflen, "Bad back reference");}
        case REGEX_ERROR_INVARG:    {Format(buf, buflen, "Bad argument");}

        case REGEX_ERROR_NOMATCH:           {Format(buf, buflen, "No match was found");}
        case REGEX_ERROR_NULL:              {Format(buf, buflen, "Null");}
        case REGEX_ERROR_BADOPTION:         {Format(buf, buflen, "Bad Option");}
        case REGEX_ERROR_BADMAGIC:          {Format(buf, buflen, "Bad Magic");}
        case REGEX_ERROR_UNKNOWN_OPCODE:    {Format(buf, buflen, "Unknown OpCode");}
        case REGEX_ERROR_NOMEMORY:          {Format(buf, buflen, "No Memory");}
        case REGEX_ERROR_NOSUBSTRING:       {Format(buf, buflen, "No substring");}
        case REGEX_ERROR_MATCHLIMIT:        {Format(buf, buflen, "Match limit");}
        case REGEX_ERROR_CALLOUT:           {Format(buf, buflen, "Callout");} // Never used by PCRE itself
        case REGEX_ERROR_BADUTF8:           {Format(buf, buflen, "Bad UTF8");}
        case REGEX_ERROR_BADUTF8_OFFSET:    {Format(buf, buflen, "Bad UTF8 offset");}
        case REGEX_ERROR_PARTIAL:           {Format(buf, buflen, "Partial");}
        case REGEX_ERROR_BADPARTIAL:        {Format(buf, buflen, "Bad Partial");}
        case REGEX_ERROR_INTERNAL:          {Format(buf, buflen, "Internal error");}
        case REGEX_ERROR_BADCOUNT:          {Format(buf, buflen, "Bad count");}
        case REGEX_ERROR_DFA_UITEM:         {Format(buf, buflen, "DFA UItem");}
        case REGEX_ERROR_DFA_UCOND:         {Format(buf, buflen, "DFA UCOND");}
        case REGEX_ERROR_DFA_UMLIMIT:       {Format(buf, buflen, "DFA UMLIMIT");}
        case REGEX_ERROR_DFA_WSSIZE:        {Format(buf, buflen, "DFA WSSIZE");}
        case REGEX_ERROR_DFA_RECURSE:       {Format(buf, buflen, "DFA recurse");}
        case REGEX_ERROR_RECURSIONLIMIT:    {Format(buf, buflen, "Recursion Limit");}
        case REGEX_ERROR_NULLWSLIMIT:       {Format(buf, buflen, "NULL WSLIMIT");}  /* No longer actually used */
        case REGEX_ERROR_BADNEWLINE:        {Format(buf, buflen, "Bad newline");}
        case REGEX_ERROR_BADOFFSET:         {Format(buf, buflen, "Bad offset");}
        case REGEX_ERROR_SHORTUTF8:         {Format(buf, buflen, "Short UFT8");}
        case REGEX_ERROR_RECURSELOOP:       {Format(buf, buflen, "Recurse loop");}
        case REGEX_ERROR_JIT_STACKLIMIT:    {Format(buf, buflen, "JIT Stacklimit");}
        case REGEX_ERROR_BADMODE:           {Format(buf, buflen, "Bad mode");}
        case REGEX_ERROR_BADENDIANNESS:     {Format(buf, buflen, "Bad endianness");}
        case REGEX_ERROR_DFA_BADRESTART:    {Format(buf, buflen, "DFA Bad Restart");}
        case REGEX_ERROR_JIT_BADOPTION:     {Format(buf, buflen, "JIT bad option");}
        case REGEX_ERROR_BADLENGTH:         {Format(buf, buflen, "Bad length");}

        default: {Format(buf, buflen, "Unknown Error");}
    }

    // Yeah I know this is terrible, and it's entirely because I'm not certain how string assignments work. If this were C I would
    // make a normal char* string and make it point to different text depending on the case

    return 0;
}