2 * Protocol of online ban list:
5 * GET g_ban_sync_uri?action=ban&hostname=...&ip=xxx.xxx.xxx&duration=nnnn&reason=...................
6 * (IP 1, 2, 3, or 4 octets, 3 octets for example is a /24 mask)
8 * GET g_ban_sync_uri?action=unban&hostname=...&ip=xxx.xxx.xxx
9 * - Querying the ban list
10 * GET g_ban_sync_uri?action=list&hostname=...&servers=xxx.xxx.xxx.xxx;xxx.xxx.xxx.xxx;...
12 * shows the bans from the listed servers, and possibly others.
13 * Format of a ban is ASCII plain text, four lines per ban, delimited by
14 * newline ONLY (no carriage return):
16 * IP address (also 1, 2, 3, or 4 octets, delimited by dot)
17 * time left in seconds
19 * server IP that registered the ban
22 float Ban_Insert(string ip, float bantime, string reason, float dosync);
24 void OnlineBanList_SendBan(string ip, float bantime, string reason)
29 uri = strcat( "action=ban&hostname=", uri_escape(autocvar_hostname));
30 uri = strcat(uri, "&ip=", uri_escape(ip));
31 uri = strcat(uri, "&duration=", ftos(bantime));
32 uri = strcat(uri, "&reason=", uri_escape(reason));
34 n = tokenize_console(autocvar_g_ban_sync_uri);
35 if(n >= MAX_IPBAN_URIS)
37 for(i = 0; i < n; ++i)
39 if(strstrofs(argv(i), "?", 0) >= 0)
40 uri_get(strcat(argv(i), "&", uri), URI_GET_DISCARD); // 0 = "discard" callback target
42 uri_get(strcat(argv(i), "?", uri), URI_GET_DISCARD); // 0 = "discard" callback target
46 void OnlineBanList_SendUnban(string ip)
51 uri = strcat( "action=unban&hostname=", uri_escape(autocvar_hostname));
52 uri = strcat(uri, "&ip=", uri_escape(ip));
54 n = tokenize_console(autocvar_g_ban_sync_uri);
55 if(n >= MAX_IPBAN_URIS)
57 for(i = 0; i < n; ++i)
59 if(strstrofs(argv(i), "?", 0) >= 0)
60 uri_get(strcat(argv(i), "&", uri), URI_GET_DISCARD); // 0 = "discard" callback target
62 uri_get(strcat(argv(i), "?", uri), URI_GET_DISCARD); // 0 = "discard" callback target
66 string OnlineBanList_Servers;
67 float OnlineBanList_Timeout;
68 float OnlineBanList_RequestWaiting[MAX_IPBAN_URIS];
70 void OnlineBanList_URI_Get_Callback(float id, float status, string data)
82 if(id >= MAX_IPBAN_URIS)
84 print("Received ban list for invalid ID\n");
88 tokenize_console(autocvar_g_ban_sync_uri);
91 print("Received ban list from ", uri, ": ");
93 if(OnlineBanList_RequestWaiting[id] == 0)
95 print("rejected (unexpected)\n");
99 OnlineBanList_RequestWaiting[id] = 0;
101 if(time > OnlineBanList_Timeout)
103 print("rejected (too late)\n");
107 syncinterval = autocvar_g_ban_sync_interval;
108 if(syncinterval == 0)
110 print("rejected (syncing disabled)\n");
118 print("error: status is ", ftos(status), "\n");
122 if(substring(data, 0, 1) == "<")
124 print("error: received HTML instead of a ban list\n");
128 if(strstrofs(data, "\r", 0) != -1)
130 print("error: received carriage returns\n");
137 n = tokenizebyseparator(data, "\n");
141 print("error: received invalid item count: ", ftos(n), "\n");
145 print("OK, ", ftos(n / 4), " items\n");
147 for(i = 0; i < n; i += 4)
150 timeleft = stof(argv(i + 1));
151 reason = argv(i + 2);
152 serverip = argv(i + 3);
154 dprint("received ban list item ", ftos(i / 4), ": ip=", ip);
155 dprint(" timeleft=", ftos(timeleft), " reason=", reason);
156 dprint(" serverip=", serverip, "\n");
158 timeleft -= 1.5 * autocvar_g_ban_sync_timeout;
163 if(l != 44) // length 44 is a cryptographic ID
165 for(j = 0; j < l; ++j)
166 if(strstrofs("0123456789.", substring(ip, j, 1), 0) == -1)
168 print("Invalid character ", substring(ip, j, 1), " in IP address ", ip, ". Skipping this ban.\n");
173 if(autocvar_g_ban_sync_trusted_servers_verify)
174 if((strstrofs(strcat(";", OnlineBanList_Servers, ";"), strcat(";", serverip, ";"), 0) == -1))
178 timeleft = min(syncinterval + (OnlineBanList_Timeout - time) + 5, timeleft);
179 // the ban will be prolonged on the next sync
180 // or expire 5 seconds after the next timeout
181 Ban_Insert(ip, timeleft, strcat("ban synced from ", serverip, " at ", uri), 0);
182 print("Ban list syncing: accepted ban of ", ip, " by ", serverip, " at ", uri, ": ");
189 void OnlineBanList_Think()
195 if(autocvar_g_ban_sync_uri == "")
197 if(autocvar_g_ban_sync_interval == 0) // < 0 is okay, it means "sync on level start only"
199 argc = tokenize_console(autocvar_g_ban_sync_trusted_servers);
203 if(OnlineBanList_Servers)
204 strunzone(OnlineBanList_Servers);
205 OnlineBanList_Servers = argv(0);
206 for(i = 1; i < argc; ++i)
207 OnlineBanList_Servers = strcat(OnlineBanList_Servers, ";", argv(i));
208 OnlineBanList_Servers = strzone(OnlineBanList_Servers);
210 uri = strcat( "action=list&hostname=", uri_escape(autocvar_hostname));
211 uri = strcat(uri, "&servers=", uri_escape(OnlineBanList_Servers));
213 OnlineBanList_Timeout = time + autocvar_g_ban_sync_timeout;
215 n = tokenize_console(autocvar_g_ban_sync_uri);
216 if(n >= MAX_IPBAN_URIS)
218 for(i = 0; i < n; ++i)
220 if(OnlineBanList_RequestWaiting[i])
222 OnlineBanList_RequestWaiting[i] = 1;
223 if(strstrofs(argv(i), "?", 0) >= 0)
224 uri_get(strcat(argv(i), "&", uri), URI_GET_IPBAN + i); // 1000 = "banlist" callback target
226 uri_get(strcat(argv(i), "?", uri), URI_GET_IPBAN + i); // 1000 = "banlist" callback target
229 if(autocvar_g_ban_sync_interval > 0)
230 self.nextthink = time + max(60, autocvar_g_ban_sync_interval * 60);
241 string ban_ip[BAN_MAX];
242 float ban_expire[BAN_MAX];
261 for(i = 0; i < ban_count; ++i)
263 if(time > ban_expire[i])
265 out = strcat(out, " ", ban_ip[i]);
266 out = strcat(out, " ", ftos(ban_expire[i] - time));
268 if(strlen(out) <= 1) // no real entries
269 cvar_set("g_banned_list", "");
271 cvar_set("g_banned_list", out);
274 float Ban_Delete(float i)
280 if(ban_expire[i] == 0)
282 if(ban_expire[i] > 0)
284 OnlineBanList_SendUnban(ban_ip[i]);
285 strunzone(ban_ip[i]);
296 for(i = 0; i < ban_count; ++i)
300 n = tokenize_console(autocvar_g_banned_list);
301 if(stof(argv(0)) == 1)
303 ban_count = (n - 1) / 2;
304 for(i = 0; i < ban_count; ++i)
306 ban_ip[i] = strzone(argv(2*i+1));
307 ban_expire[i] = time + stof(argv(2*i+2));
313 e.classname = "bansyncer";
314 e.think = OnlineBanList_Think;
315 e.nextthink = time + 1;
322 for(i = 0; i < ban_count; ++i)
324 if(time > ban_expire[i])
326 msg = strcat("#", ftos(i), ": ");
327 msg = strcat(msg, ban_ip[i], " is still banned for ");
328 msg = strcat(msg, ftos(ban_expire[i] - time), " seconds");
333 float Ban_GetClientIP(entity client)
335 // we can't use tokenizing here, as this is called during ban list parsing
336 float i1, i2, i3, i4;
339 if(client.crypto_keyfp)
340 ban_idfp = client.crypto_idfp;
342 ban_idfp = string_null;
344 s = client.netaddress;
346 i1 = strstrofs(s, ".", 0);
349 i2 = strstrofs(s, ".", i1 + 1);
352 i3 = strstrofs(s, ".", i2 + 1);
355 i4 = strstrofs(s, ".", i3 + 1);
357 s = substring(s, 0, i4);
359 ban_ip1 = substring(s, 0, i1); // 8
360 ban_ip2 = substring(s, 0, i2); // 16
361 ban_ip3 = substring(s, 0, i3); // 24
362 ban_ip4 = strcat1(s); // 32
366 i1 = strstrofs(s, ":", 0);
369 i1 = strstrofs(s, ":", i1 + 1);
372 i2 = strstrofs(s, ":", i1 + 1);
375 i3 = strstrofs(s, ":", i2 + 1);
379 ban_ip1 = strcat(substring(s, 0, i1), "::/32"); // 32
380 ban_ip2 = strcat(substring(s, 0, i2), "::/48"); // 48
381 ban_ip4 = strcat(substring(s, 0, i3), "::/64"); // 64
383 if(i3 - i2 > 3) // means there is more than 2 digits and a : in the range
384 ban_ip3 = strcat(substring(s, 0, i2), ":", substring(s, i2 + 1, i3 - i2 - 3), "00::/56");
386 ban_ip3 = strcat(substring(s, 0, i2), ":0::/56");
391 float Ban_IsClientBanned(entity client, float idx)
393 float i, b, e, ipbanned;
396 if(!Ban_GetClientIP(client))
409 for(i = b; i < e; ++i)
412 if(time > ban_expire[i])
415 if(ban_ip1 == s) ipbanned = TRUE;
416 if(ban_ip2 == s) ipbanned = TRUE;
417 if(ban_ip3 == s) ipbanned = TRUE;
418 if(ban_ip4 == s) ipbanned = TRUE;
419 if(ban_idfp == s) return TRUE;
422 if(!autocvar_g_banned_list_idmode || !ban_idfp)
427 float Ban_MaybeEnforceBan(entity client)
429 if(Ban_IsClientBanned(client, -1))
432 s = strcat("^1NOTE:^7 banned client ", client.netaddress, " just tried to enter\n");
440 string Ban_Enforce(float i, string reason)
445 // Enforce our new ban
447 FOR_EACH_REALCLIENT(e)
448 if(Ban_IsClientBanned(e, i))
453 reason = strcat(reason, ": affects ");
455 reason = strcat(reason, ", ");
456 reason = strcat(reason, e.netname);
458 s = strcat(s, "^1NOTE:^7 banned client ", e.netname, "^7 has to go\n");
466 float Ban_Insert(string ip, float bantime, string reason, float dosync)
473 for(i = 0; i < ban_count; ++i)
477 if(time + bantime > ban_expire[i])
479 ban_expire[i] = time + bantime;
480 dprint(ip, "'s ban has been prolonged to ", ftos(bantime), " seconds from now\n");
483 dprint(ip, "'s ban is still active until ", ftos(ban_expire[i] - time), " seconds from now\n");
486 reason = Ban_Enforce(i, reason);
491 if(substring(reason, 0, 1) != "~") // like IRC: unauthenticated banner
492 OnlineBanList_SendBan(ip, bantime, reason);
497 // do we have a free slot?
498 for(i = 0; i < ban_count; ++i)
499 if(time > ban_expire[i])
501 // no free slot? Then look for the one who would get unbanned next
505 bestscore = ban_expire[i];
506 for(j = 1; j < ban_count; ++j)
508 if(ban_expire[j] < bestscore)
511 bestscore = ban_expire[i];
515 // if we replace someone, will we be banned longer than him (so long-term
516 // bans never get overridden by short-term bans)
518 if(ban_expire[i] > time + bantime)
520 print(ip, " could not get banned due to no free ban slot\n");
523 // okay, insert our new victim as i
525 dprint(ip, " has been banned for ", ftos(bantime), " seconds\n");
526 ban_expire[i] = time + bantime;
527 ban_ip[i] = strzone(ip);
528 ban_count = max(ban_count, i + 1);
532 reason = Ban_Enforce(i, reason);
537 if(substring(reason, 0, 1) != "~") // like IRC: unauthenticated banner
538 OnlineBanList_SendBan(ip, bantime, reason);
543 void Ban_KickBanClient(entity client, float bantime, float masksize, string reason)
545 if(!Ban_GetClientIP(client))
547 sprint(client, strcat("Kickbanned: ", reason, "\n"));
555 Ban_Insert(ban_ip1, bantime, reason, 1);
558 Ban_Insert(ban_ip2, bantime, reason, 1);
561 Ban_Insert(ban_ip3, bantime, reason, 1);
565 Ban_Insert(ban_ip4, bantime, reason, 1);
569 Ban_Insert(ban_idfp, bantime, reason, 1);
571 * not needed, as we enforce the ban in Ban_Insert anyway
573 sprint(client, strcat("Kickbanned: ", reason, "\n"));
578 float GameCommand_Ban(string command)
588 argc = tokenize_console(command);
589 if(argv(0) == "help")
591 print(" kickban # n m p reason - kickban player n for m seconds, using mask size p (1 to 4)\n");
592 print(" ban ip m reason - ban an IP or range (incomplete IP, like 1.2.3) for m seconds\n");
593 print(" bans - list all existing bans\n");
594 print(" unban n - delete the entry #n from the bans list\n");
597 if(argv(0) == "kickban")
599 #define INITARG(c) reasonarg = c
600 #define GETARG(v,d) if((argc > reasonarg) && ((v = stof(argv(reasonarg))) != 0)) ++reasonarg; else v = d
601 #define RESTARG(v) if(argc > reasonarg) v = substring(command, argv_start_index(reasonarg), strlen(command) - argv_start_index(reasonarg)); else v = ""
604 entno = stof(argv(2));
605 if(entno > maxclients || entno < 1)
607 client = edict_num(entno);
610 GETARG(bantime, autocvar_g_ban_default_bantime);
611 GETARG(masksize, autocvar_g_ban_default_masksize);
614 Ban_KickBanClient(client, bantime, masksize, reason);
618 else if(argv(0) == "ban")
626 GETARG(bantime, autocvar_g_ban_default_bantime);
629 Ban_Insert(ip, bantime, reason, 1);
636 else if(argv(0) == "bans")
641 else if(argv(0) == "unban")