]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/core/m_server.c
Use rb_snprintf() in various places.
[irc/rqf/shadowircd.git] / modules / core / m_server.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_server.c: Introduces a server.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
9c2f9ec9 24 * $Id: m_server.c 3291 2007-03-28 14:30:10Z jilles $
212380e3 25 */
26
27#include "stdinc.h"
212380e3 28#include "client.h" /* client struct */
29#include "common.h" /* TRUE bleah */
212380e3 30#include "hash.h" /* add_to_client_hash */
13ae2f4b 31#include "match.h"
212380e3 32#include "ircd.h" /* me */
33#include "numeric.h" /* ERR_xxx */
34#include "s_conf.h" /* struct ConfItem */
35#include "s_newconf.h"
d3455e2c 36#include "logger.h" /* log level defines */
212380e3 37#include "s_serv.h" /* server_estab, check_server */
38#include "s_stats.h" /* ServerStats */
994544c2 39#include "scache.h"
212380e3 40#include "send.h" /* sendto_one */
41#include "msg.h"
42#include "parse.h"
43#include "modules.h"
44
45static int mr_server(struct Client *, struct Client *, int, const char **);
46static int ms_server(struct Client *, struct Client *, int, const char **);
47static int ms_sid(struct Client *, struct Client *, int, const char **);
48
49struct Message server_msgtab = {
50 "SERVER", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
51 {{mr_server, 4}, mg_reg, mg_ignore, {ms_server, 4}, mg_ignore, mg_reg}
52};
53struct Message sid_msgtab = {
54 "SID", 0, 0, 0, MFLG_SLOW,
55 {mg_ignore, mg_reg, mg_ignore, {ms_sid, 5}, mg_ignore, mg_reg}
56};
57
58mapi_clist_av1 server_clist[] = { &server_msgtab, &sid_msgtab, NULL };
59
9c2f9ec9 60DECLARE_MODULE_AV1(server, NULL, NULL, server_clist, NULL, NULL, "$Revision: 3291 $");
212380e3 61
62int bogus_host(const char *host);
212380e3 63static int set_server_gecos(struct Client *, const char *);
64
65/*
66 * mr_server - SERVER message handler
67 * parv[0] = sender prefix
68 * parv[1] = servername
69 * parv[2] = serverinfo/hopcount
70 * parv[3] = serverinfo
71 */
72static int
73mr_server(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
74{
75 char info[REALLEN + 1];
76 const char *name;
77 struct Client *target_p;
78 int hop;
79
80 name = parv[1];
81 hop = atoi(parv[2]);
907468c4 82 rb_strlcpy(info, parv[3], sizeof(info));
212380e3 83
9c2f9ec9 84 if (IsHandshake(client_p) && irccmp(client_p->name, name))
85 {
86 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
87 "Server %s has unexpected name %s",
715b28fe 88 client_p->name, name);
9c2f9ec9 89 ilog(L_SERVER, "Server %s has unexpected name %s",
90 log_client_name(client_p, SHOW_IP), name);
91 exit_client(client_p, client_p, client_p, "Server name mismatch");
92 return 0;
93 }
94
212380e3 95 /*
96 * Reject a direct nonTS server connection if we're TS_ONLY -orabidoo
97 */
98 if(!DoesTS(client_p))
99 {
100 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Link %s dropped, non-TS server",
715b28fe 101 client_p->name);
212380e3 102 exit_client(client_p, client_p, client_p, "Non-TS server");
103 return 0;
104 }
105
106 if(bogus_host(name))
107 {
108 exit_client(client_p, client_p, client_p, "Bogus server name");
109 return 0;
110 }
111
112 /* Now we just have to call check_server and everything should be
113 * check for us... -A1kmm. */
114 switch (check_server(name, client_p))
115 {
116 case -1:
117 if(ConfigFileEntry.warn_no_nline)
118 {
119 sendto_realops_snomask(SNO_GENERAL, L_ALL,
120 "Unauthorised server connection attempt from %s: "
121 "No entry for servername %s",
bdfc9ce6 122 "[@255.255.255.255]", name);
212380e3 123
124 ilog(L_SERVER, "Access denied, no connect block for server %s%s",
125 EmptyString(client_p->name) ? name : "",
126 log_client_name(client_p, SHOW_IP));
127 }
128
129 exit_client(client_p, client_p, client_p, "Invalid servername.");
130 return 0;
131 /* NOT REACHED */
132 break;
133
134 case -2:
fd4ba65e 135 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
212380e3 136 "Unauthorised server connection attempt from %s: "
137 "Bad password for server %s",
bdfc9ce6 138 "[@255.255.255.255]", name);
212380e3 139
140 ilog(L_SERVER, "Access denied, invalid password for server %s%s",
141 EmptyString(client_p->name) ? name : "",
142 log_client_name(client_p, SHOW_IP));
143
144 exit_client(client_p, client_p, client_p, "Invalid password.");
145 return 0;
146 /* NOT REACHED */
147 break;
148
149 case -3:
150 sendto_realops_snomask(SNO_GENERAL, L_ALL,
151 "Unauthorised server connection attempt from %s: "
152 "Invalid host for server %s",
bdfc9ce6 153 "[@255.255.255.255]", name);
212380e3 154
155 ilog(L_SERVER, "Access denied, invalid host for server %s%s",
156 EmptyString(client_p->name) ? name : "",
157 log_client_name(client_p, SHOW_IP));
158
159 exit_client(client_p, client_p, client_p, "Invalid host.");
160 return 0;
161 /* NOT REACHED */
162 break;
163
164 /* servername is > HOSTLEN */
165 case -4:
166 sendto_realops_snomask(SNO_GENERAL, L_ALL,
167 "Invalid servername %s from %s",
bdfc9ce6 168 name, "[@255.255.255.255]");
212380e3 169 ilog(L_SERVER, "Access denied, invalid servername from %s",
170 log_client_name(client_p, SHOW_IP));
171
172 exit_client(client_p, client_p, client_p, "Invalid servername.");
173 return 0;
174 /* NOT REACHED */
175 break;
8db00894 176 case -5:
b717a466
JT
177 sendto_realops_snomask(SNO_GENERAL, L_ALL,
178 "Connection from servername %s requires SSL/TLS but is plaintext",
179 name);
180 ilog(L_SERVER, "Access denied, requires SSL/TLS but is plaintext from %s",
181 log_client_name(client_p, SHOW_IP));
182
183 exit_client(client_p, client_p, client_p, "Access denied, requires SSL/TLS but is plaintext");
8db00894 184 return 0;
212380e3 185 }
186
f037fff4
JT
187 /* require TS6 for direct links */
188 if(!IsCapable(client_p, CAP_TS6))
189 {
190 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
191 "Link %s dropped, TS6 protocol is required", name);
192 exit_client(client_p, client_p, client_p, "Incompatible TS version");
193 return 0;
194 }
195
b0b7de54 196 if((target_p = find_server(NULL, name)))
212380e3 197 {
198 /*
199 * This link is trying feed me a server that I already have
200 * access through another path -- multiple paths not accepted
201 * currently, kill this link immediately!!
202 *
203 * Rather than KILL the link which introduced it, KILL the
204 * youngest of the two links. -avalon
205 *
206 * Definitely don't do that here. This is from an unregistered
207 * connect - A1kmm.
208 */
209 sendto_realops_snomask(SNO_GENERAL, L_ALL,
210 "Attempt to re-introduce server %s from %s",
bdfc9ce6 211 name, "[@255.255.255.255]");
212380e3 212 ilog(L_SERVER, "Attempt to re-introduce server %s from %s",
213 name, log_client_name(client_p, SHOW_IP));
214
215 sendto_one(client_p, "ERROR :Server already exists.");
216 exit_client(client_p, client_p, client_p, "Server Exists");
217 return 0;
218 }
219
220 if(has_id(client_p) && (target_p = find_id(client_p->id)) != NULL)
221 {
fd4ba65e 222 sendto_realops_snomask(SNO_GENERAL, is_remote_connect(client_p) ? L_NETWIDE : L_ALL,
9649981b 223 "Attempt to re-introduce SID %s from %s%s (already in use by %s)",
212380e3 224 client_p->id,
225 EmptyString(client_p->name) ? name : "",
9649981b
JT
226 client_p->name, target_p->name);
227 ilog(L_SERVER, "Attempt to re-introduce SID %s from %s%s (already in use by %s)",
212380e3 228 client_p->id,
229 EmptyString(client_p->name) ? name : "",
9649981b
JT
230 log_client_name(client_p, SHOW_IP),
231 target_p->name);
212380e3 232
233 sendto_one(client_p, "ERROR :SID already exists.");
234 exit_client(client_p, client_p, client_p, "SID Exists");
235 return 0;
236 }
237
238 /*
239 * if we are connecting (Handshake), we already have the name from the
240 * C:line in client_p->name
241 */
242
907468c4 243 rb_strlcpy(client_p->name, name, sizeof(client_p->name));
212380e3 244 set_server_gecos(client_p, info);
245 client_p->hopcount = hop;
246 server_estab(client_p);
247
248 return 0;
249}
250
251/*
252 * ms_server - SERVER message handler
253 * parv[0] = sender prefix
254 * parv[1] = servername
255 * parv[2] = serverinfo/hopcount
256 * parv[3] = serverinfo
257 */
258static int
259ms_server(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
260{
261 char info[REALLEN + 1];
262 /* same size as in s_misc.c */
263 const char *name;
264 struct Client *target_p;
265 struct remote_conf *hub_p;
266 hook_data_client hdata;
267 int hop;
268 int hlined = 0;
269 int llined = 0;
08d11e34 270 rb_dlink_node *ptr;
deb74494 271 char squitreason[160];
212380e3 272
273 name = parv[1];
274 hop = atoi(parv[2]);
907468c4 275 rb_strlcpy(info, parv[3], sizeof(info));
212380e3 276
b0b7de54 277 if((target_p = find_server(NULL, name)))
212380e3 278 {
279 /*
280 * This link is trying feed me a server that I already have
281 * access through another path -- multiple paths not accepted
282 * currently, kill this link immediately!!
283 *
284 * Rather than KILL the link which introduced it, KILL the
285 * youngest of the two links. -avalon
286 *
287 * I think that we should exit the link itself, not the introducer,
288 * and we should always exit the most recently received(i.e. the
289 * one we are receiving this SERVER for. -A1kmm
290 *
291 * You *cant* do this, if you link somewhere, it bursts you a server
292 * that already exists, then sends you a client burst, you squit the
293 * server, but you keep getting the burst of clients on a server that
294 * doesnt exist, although ircd can handle it, its not a realistic
295 * solution.. --fl_
296 */
212380e3 297 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
298 client_p->name, name);
299
5b0a5279 300 rb_snprintf(squitreason, sizeof squitreason,
deb74494
JT
301 "Server %s already exists",
302 name);
303 exit_client(client_p, client_p, &me, squitreason);
212380e3 304 return 0;
305 }
306
307 /*
308 * User nicks never have '.' in them and server names
309 * must always have '.' in them.
310 */
311 if(strchr(name, '.') == NULL)
312 {
313 /*
314 * Server trying to use the same name as a person. Would
315 * cause a fair bit of confusion. Enough to make it hellish
316 * for a while and servers to send stuff to the wrong place.
317 */
318 sendto_one(client_p, "ERROR :Nickname %s already exists!", name);
319 sendto_realops_snomask(SNO_GENERAL, L_ALL,
320 "Link %s cancelled: Server/nick collision on %s",
715b28fe 321 client_p->name, name);
212380e3 322 ilog(L_SERVER, "Link %s cancelled: Server/nick collision on %s",
323 client_p->name, name);
324
325 exit_client(client_p, client_p, client_p, "Nick as Server");
326 return 0;
327 }
328
329 /*
330 * Server is informing about a new server behind
331 * this link. Create REMOTE server structure,
332 * add it to list and propagate word to my other
333 * server links...
334 */
335 if(parc == 1 || EmptyString(info))
336 {
337 sendto_one(client_p, "ERROR :No server info specified for %s", name);
338 return 0;
339 }
340
341 /*
342 * See if the newly found server is behind a guaranteed
343 * leaf. If so, close the link.
344 *
345 */
08d11e34 346 RB_DLINK_FOREACH(ptr, hubleaf_conf_list.head)
212380e3 347 {
348 hub_p = ptr->data;
349
350 if(match(hub_p->server, client_p->name) && match(hub_p->host, name))
351 {
352 if(hub_p->flags & CONF_HUB)
353 hlined++;
354 else
355 llined++;
356 }
357 }
358
359 /* Ok, this way this works is
360 *
361 * A server can have a CONF_HUB allowing it to introduce servers
362 * behind it.
363 *
364 * connect {
365 * name = "irc.bighub.net";
366 * hub_mask="*";
367 * ...
368 *
369 * That would allow "irc.bighub.net" to introduce anything it wanted..
370 *
371 * However
372 *
373 * connect {
374 * name = "irc.somehub.fi";
375 * hub_mask="*";
376 * leaf_mask="*.edu";
377 *...
378 * Would allow this server in finland to hub anything but
379 * .edu's
380 */
381
341504a7 382 /* Ok, check client_p can hub the new server */
212380e3 383 if(!hlined)
384 {
385 /* OOOPs nope can't HUB */
386 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Non-Hub link %s introduced %s.",
715b28fe 387 client_p->name, name);
212380e3 388 ilog(L_SERVER, "Non-Hub link %s introduced %s.",
389 client_p->name, name);
390
391 exit_client(NULL, client_p, &me, "No matching hub_mask.");
392 return 0;
393 }
394
395 /* Check for the new server being leafed behind this HUB */
396 if(llined)
397 {
398 /* OOOPs nope can't HUB this leaf */
399 sendto_realops_snomask(SNO_GENERAL, L_ALL,
400 "Link %s introduced leafed server %s.",
715b28fe 401 client_p->name, name);
212380e3 402 ilog(L_SERVER, "Link %s introduced leafed server %s.",
403 client_p->name, name);
404
405 exit_client(NULL, client_p, &me, "Leafed Server.");
406 return 0;
407 }
408
409
410
411 if(strlen(name) > HOSTLEN)
412 {
413 sendto_realops_snomask(SNO_GENERAL, L_ALL,
414 "Link %s introduced server with invalid servername %s",
715b28fe 415 client_p->name, name);
212380e3 416 ilog(L_SERVER, "Link %s introduced server with invalid servername %s",
417 client_p->name, name);
418
419 exit_client(NULL, client_p, &me, "Invalid servername introduced.");
420 return 0;
421 }
422
423 target_p = make_client(client_p);
424 make_server(target_p);
425 target_p->hopcount = hop;
426
907468c4 427 rb_strlcpy(target_p->name, name, sizeof(target_p->name));
212380e3 428
429 set_server_gecos(target_p, info);
430
212380e3 431 target_p->servptr = source_p;
432
433 SetServer(target_p);
434
bfccb2c0
JT
435 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
436 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
212380e3 437 add_to_client_hash(target_p->name, target_p);
bfccb2c0 438 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
212380e3 439
994544c2
JT
440 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
441
212380e3 442 sendto_server(client_p, NULL, NOCAPS, NOCAPS,
443 ":%s SERVER %s %d :%s%s",
444 source_p->name, target_p->name, target_p->hopcount + 1,
445 IsHidden(target_p) ? "(H) " : "", target_p->info);
446
447 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
448 "Server %s being introduced by %s", target_p->name, source_p->name);
449
450 /* quick, dirty EOB. you know you love it. */
451 sendto_one(target_p, ":%s PING %s %s", get_id(&me, target_p), me.name, target_p->name);
452
453 hdata.client = source_p;
454 hdata.target = target_p;
455 call_hook(h_server_introduced, &hdata);
456
457 return 0;
458}
459
460static int
461ms_sid(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
462{
463 struct Client *target_p;
464 struct remote_conf *hub_p;
465 hook_data_client hdata;
08d11e34 466 rb_dlink_node *ptr;
212380e3 467 int hop;
468 int hlined = 0;
469 int llined = 0;
9649981b 470 char squitreason[160];
212380e3 471
472 hop = atoi(parv[2]);
473
474 /* collision on the name? */
b0b7de54 475 if((target_p = find_server(NULL, parv[1])) != NULL)
212380e3 476 {
212380e3 477 ilog(L_SERVER, "Link %s cancelled, server %s already exists",
478 client_p->name, parv[1]);
479
5b0a5279 480 rb_snprintf(squitreason, sizeof squitreason,
deb74494
JT
481 "Server %s already exists",
482 parv[1]);
483 exit_client(NULL, client_p, &me, squitreason);
212380e3 484 return 0;
485 }
486
487 /* collision on the SID? */
488 if((target_p = find_id(parv[3])) != NULL)
489 {
9649981b
JT
490 sendto_wallops_flags(UMODE_WALLOP, &me,
491 "Link %s cancelled, SID %s for server %s already in use by %s",
492 client_p->name, parv[3], parv[1], target_p->name);
493 sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
494 ":%s WALLOPS :Link %s cancelled, SID %s for server %s already in use by %s",
495 me.id, client_p->name, parv[3], parv[1], target_p->name);
496 ilog(L_SERVER, "Link %s cancelled, SID %s for server %s already in use by %s",
497 client_p->name, parv[3], parv[1], target_p->name);
498
5b0a5279 499 rb_snprintf(squitreason, sizeof squitreason,
9649981b
JT
500 "SID %s for %s already in use by %s",
501 parv[3], parv[1], target_p->name);
502 exit_client(NULL, client_p, &me, squitreason);
212380e3 503 return 0;
504 }
505
506 if(bogus_host(parv[1]) || strlen(parv[1]) > HOSTLEN)
507 {
508 sendto_one(client_p, "ERROR :Invalid servername");
509 sendto_realops_snomask(SNO_GENERAL, L_ALL,
510 "Link %s cancelled, servername %s invalid",
715b28fe 511 client_p->name, parv[1]);
212380e3 512 ilog(L_SERVER, "Link %s cancelled, servername %s invalid",
513 client_p->name, parv[1]);
514
515 exit_client(NULL, client_p, &me, "Bogus server name");
516 return 0;
517 }
518
519 if(!IsDigit(parv[3][0]) || !IsIdChar(parv[3][1]) ||
520 !IsIdChar(parv[3][2]) || parv[3][3] != '\0')
521 {
522 sendto_one(client_p, "ERROR :Invalid SID");
523 sendto_realops_snomask(SNO_GENERAL, L_ALL,
524 "Link %s cancelled, SID %s invalid",
715b28fe 525 client_p->name, parv[3]);
212380e3 526 ilog(L_SERVER, "Link %s cancelled, SID %s invalid",
527 client_p->name, parv[3]);
528
529 exit_client(NULL, client_p, &me, "Bogus SID");
530 return 0;
531 }
532
533 /* for the directly connected server:
534 * H: allows it to introduce a server matching that mask
535 * L: disallows it introducing a server matching that mask
536 */
08d11e34 537 RB_DLINK_FOREACH(ptr, hubleaf_conf_list.head)
212380e3 538 {
539 hub_p = ptr->data;
540
541 if(match(hub_p->server, client_p->name) && match(hub_p->host, parv[1]))
542 {
543 if(hub_p->flags & CONF_HUB)
544 hlined++;
545 else
546 llined++;
547 }
548 }
549
550 /* no matching hub_mask */
551 if(!hlined)
552 {
553 sendto_one(client_p, "ERROR :No matching hub_mask");
554 sendto_realops_snomask(SNO_GENERAL, L_ALL,
555 "Non-Hub link %s introduced %s.",
715b28fe 556 client_p->name, parv[1]);
212380e3 557 ilog(L_SERVER, "Non-Hub link %s introduced %s.",
558 client_p->name, parv[1]);
559 exit_client(NULL, client_p, &me, "No matching hub_mask.");
560 return 0;
561 }
562
563 /* matching leaf_mask */
564 if(llined)
565 {
566 sendto_one(client_p, "ERROR :Matching leaf_mask");
567 sendto_realops_snomask(SNO_GENERAL, L_ALL,
568 "Link %s introduced leafed server %s.",
715b28fe 569 client_p->name, parv[1]);
212380e3 570 ilog(L_SERVER, "Link %s introduced leafed server %s.",
571 client_p->name, parv[1]);
572 exit_client(NULL, client_p, &me, "Leafed Server.");
573 return 0;
574 }
575
576 /* ok, alls good */
577 target_p = make_client(client_p);
578 make_server(target_p);
579
907468c4 580 rb_strlcpy(target_p->name, parv[1], sizeof(target_p->name));
212380e3 581 target_p->hopcount = atoi(parv[2]);
582 strcpy(target_p->id, parv[3]);
583 set_server_gecos(target_p, parv[4]);
584
212380e3 585 target_p->servptr = source_p;
586 SetServer(target_p);
587
bfccb2c0
JT
588 rb_dlinkAddTail(target_p, &target_p->node, &global_client_list);
589 rb_dlinkAddTailAlloc(target_p, &global_serv_list);
212380e3 590 add_to_client_hash(target_p->name, target_p);
591 add_to_id_hash(target_p->id, target_p);
bfccb2c0 592 rb_dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->servers);
212380e3 593
994544c2
JT
594 target_p->serv->nameinfo = scache_connect(target_p->name, target_p->info, IsHidden(target_p));
595
212380e3 596 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
597 ":%s SID %s %d %s :%s%s",
598 source_p->id, target_p->name, target_p->hopcount + 1,
599 target_p->id, IsHidden(target_p) ? "(H) " : "", target_p->info);
212380e3 600
601 sendto_realops_snomask(SNO_EXTERNAL, L_ALL,
602 "Server %s being introduced by %s", target_p->name, source_p->name);
603
604 /* quick, dirty EOB. you know you love it. */
605 sendto_one(target_p, ":%s PING %s %s",
606 get_id(&me, target_p), me.name, get_id(target_p, target_p));
607
608 hdata.client = source_p;
609 hdata.target = target_p;
610 call_hook(h_server_introduced, &hdata);
611
612 return 0;
613}
614
615/* set_server_gecos()
616 *
617 * input - pointer to client
618 * output - none
619 * side effects - servers gecos field is set
620 */
621static int
622set_server_gecos(struct Client *client_p, const char *info)
623{
624 /* check the info for [IP] */
625 if(info[0])
626 {
627 char *p;
628 char *s;
629 char *t;
630
631 s = LOCAL_COPY(info);
632
633 /* we should only check the first word for an ip */
634 if((p = strchr(s, ' ')))
635 *p = '\0';
636
637 /* check for a ] which would symbolise an [IP] */
638 if((t = strchr(s, ']')))
639 {
640 /* set s to after the first space */
641 if(p)
642 s = ++p;
643 else
644 s = NULL;
645 }
646 /* no ], put the space back */
647 else if(p)
648 *p = ' ';
649
650 /* p may have been set to a trailing space, so check s exists and that
651 * it isnt \0 */
652 if(s && (*s != '\0'))
653 {
654 /* a space? if not (H) could be the last part of info.. */
655 if((p = strchr(s, ' ')))
656 *p = '\0';
657
658 /* check for (H) which is a hidden server */
659 if(!strcmp(s, "(H)"))
660 {
661 SetHidden(client_p);
662
663 /* if there was no space.. theres nothing to set info to */
664 if(p)
665 s = ++p;
666 else
667 s = NULL;
668 }
669 else if(p)
670 *p = ' ';
671
672 /* if there was a trailing space, s could point to \0, so check */
673 if(s && (*s != '\0'))
674 {
907468c4 675 rb_strlcpy(client_p->info, s, sizeof(client_p->info));
212380e3 676 return 1;
677 }
678 }
679 }
680
907468c4 681 rb_strlcpy(client_p->info, "(Unknown Location)", sizeof(client_p->info));
212380e3 682
683 return 1;
684}
685
686/*
687 * bogus_host
688 *
689 * inputs - hostname
690 * output - 1 if a bogus hostname input, 0 if its valid
691 * side effects - none
692 */
693int
694bogus_host(const char *host)
695{
696 int bogus_server = 0;
697 const char *s;
698 int dots = 0;
699
700 for(s = host; *s; s++)
701 {
702 if(!IsServChar(*s))
703 {
704 bogus_server = 1;
705 break;
706 }
707 if('.' == *s)
708 ++dots;
709 }
710
711 if(!dots || bogus_server)
712 return 1;
713
714 return 0;
715}