ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/core/m_server.c
Revision: 3473
Committed: Sun May 4 15:40:26 2014 UTC (12 years, 2 months ago) by michael
Content type: text/x-csrc
File size: 27921 byte(s)
Log Message:
- Renamed general::warn_no_nline to warn_no_connect_block

File Contents

# User Rev Content
1 adx 30 /*
2 michael 2820 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 adx 30 *
4 michael 2820 * Copyright (c) 1997-2014 ircd-hybrid development team
5 adx 30 *
6     * This program is free software; you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19     * USA
20     */
21    
22 michael 2820 /*! \file m_server.c
23     * \brief Includes required functions for processing the SERVER/SID command.
24     * \version $Id$
25     */
26    
27 adx 30 #include "stdinc.h"
28 michael 1011 #include "list.h"
29 michael 2820 #include "client.h"
30 adx 30 #include "event.h"
31 michael 2820 #include "hash.h"
32     #include "irc_string.h"
33     #include "ircd.h"
34     #include "numeric.h"
35     #include "conf.h"
36     #include "log.h"
37 michael 3347 #include "misc.h"
38     #include "server.h"
39     #include "user.h"
40 michael 2820 #include "send.h"
41 adx 30 #include "parse.h"
42 michael 3303 #include "memory.h"
43 adx 30 #include "modules.h"
44    
45    
46 michael 3303 /*
47     * send_tb
48     *
49     * inputs - pointer to Client
50     * - pointer to channel
51     * output - NONE
52     * side effects - Called on a server burst when
53     * server is CAP_TBURST capable
54     */
55     static void
56     send_tb(struct Client *client_p, struct Channel *chptr)
57     {
58     /*
59     * We may also send an empty topic here, but only if topic_time isn't 0,
60     * i.e. if we had a topic that got unset. This is required for syncing
61     * topics properly.
62     *
63     * Imagine the following scenario: Our downlink introduces a channel
64     * to us with a TS that is equal to ours, but the channel topic on
65     * their side got unset while the servers were in splitmode, which means
66     * their 'topic' is newer. They simply wanted to unset it, so we have to
67     * deal with it in a more sophisticated fashion instead of just resetting
68     * it to their old topic they had before. Read m_tburst.c:ms_tburst
69     * for further information -Michael
70     */
71     if (chptr->topic_time)
72     sendto_one(client_p, ":%s TBURST %lu %s %lu %s :%s", me.id,
73     (unsigned long)chptr->channelts, chptr->chname,
74     (unsigned long)chptr->topic_time,
75     chptr->topic_info,
76     chptr->topic);
77     }
78    
79     /* sendnick_TS()
80     *
81     * inputs - client (server) to send nick towards
82     * - client to send nick for
83     * output - NONE
84     * side effects - NICK message is sent towards given client_p
85     */
86 michael 3306 static void
87 michael 3303 sendnick_TS(struct Client *client_p, struct Client *target_p)
88     {
89     char ubuf[IRCD_BUFSIZE] = "";
90    
91     if (!IsClient(target_p))
92     return;
93    
94     send_umode(NULL, target_p, 0, SEND_UMODES, ubuf);
95    
96     if (ubuf[0] == '\0')
97     {
98     ubuf[0] = '+';
99     ubuf[1] = '\0';
100     }
101    
102     if (IsCapable(client_p, CAP_SVS))
103     sendto_one(client_p, ":%s UID %s %d %lu %s %s %s %s %s %s :%s",
104     target_p->servptr->id,
105     target_p->name, target_p->hopcount + 1,
106     (unsigned long) target_p->tsinfo,
107     ubuf, target_p->username, target_p->host,
108     (MyClient(target_p) && IsIPSpoof(target_p)) ?
109     "0" : target_p->sockhost, target_p->id,
110     target_p->svid, target_p->info);
111     else
112     sendto_one(client_p, ":%s UID %s %d %lu %s %s %s %s %s :%s",
113     target_p->servptr->id,
114     target_p->name, target_p->hopcount + 1,
115     (unsigned long) target_p->tsinfo,
116     ubuf, target_p->username, target_p->host,
117     (MyClient(target_p) && IsIPSpoof(target_p)) ?
118     "0" : target_p->sockhost, target_p->id, target_p->info);
119    
120     if (!EmptyString(target_p->certfp))
121     sendto_one(client_p, ":%s CERTFP %s", target_p->id, target_p->certfp);
122    
123     if (target_p->away[0])
124     sendto_one(client_p, ":%s AWAY :%s", target_p->id, target_p->away);
125    
126     }
127    
128     /* burst_members()
129     *
130     * inputs - pointer to server to send members to
131     * - dlink_list pointer to membership list to send
132     * output - NONE
133     * side effects -
134     */
135     static void
136     burst_members(struct Client *client_p, struct Channel *chptr)
137     {
138     struct Client *target_p;
139     struct Membership *ms;
140     dlink_node *ptr;
141    
142     DLINK_FOREACH(ptr, chptr->members.head)
143     {
144     ms = ptr->data;
145     target_p = ms->client_p;
146    
147     if (!HasFlag(target_p, FLAGS_BURSTED))
148     {
149     AddFlag(target_p, FLAGS_BURSTED);
150    
151     if (target_p->from != client_p)
152     sendnick_TS(client_p, target_p);
153     }
154     }
155     }
156    
157     /* burst_all()
158     *
159     * inputs - pointer to server to send burst to
160     * output - NONE
161     * side effects - complete burst of channels/nicks is sent to client_p
162     */
163     static void
164     burst_all(struct Client *client_p)
165     {
166     dlink_node *ptr = NULL;
167    
168     DLINK_FOREACH(ptr, global_channel_list.head)
169     {
170     struct Channel *chptr = ptr->data;
171    
172     if (dlink_list_length(&chptr->members))
173     {
174     burst_members(client_p, chptr);
175     send_channel_modes(client_p, chptr);
176    
177     if (IsCapable(client_p, CAP_TBURST))
178     send_tb(client_p, chptr);
179     }
180     }
181    
182     /* also send out those that are not on any channel
183     */
184     DLINK_FOREACH(ptr, global_client_list.head)
185     {
186     struct Client *target_p = ptr->data;
187    
188     if (!HasFlag(target_p, FLAGS_BURSTED) && target_p->from != client_p)
189     sendnick_TS(client_p, target_p);
190    
191     DelFlag(target_p, FLAGS_BURSTED);
192     }
193    
194     if (IsCapable(client_p, CAP_EOB))
195     sendto_one(client_p, ":%s EOB", me.id);
196     }
197    
198     /* server_burst()
199     *
200     * inputs - struct Client pointer server
201     * -
202     * output - none
203     * side effects - send a server burst
204     * bugs - still too long
205     */
206     static void
207     server_burst(struct Client *client_p)
208     {
209     /* Send it in the shortened format with the TS, if
210     ** it's a TS server; walk the list of channels, sending
211     ** all the nicks that haven't been sent yet for each
212     ** channel, then send the channel itself -- it's less
213     ** obvious than sending all nicks first, but on the
214     ** receiving side memory will be allocated more nicely
215     ** saving a few seconds in the handling of a split
216     ** -orabidoo
217     */
218    
219     burst_all(client_p);
220    
221     /* EOB stuff is now in burst_all */
222     /* Always send a PING after connect burst is done */
223     sendto_one(client_p, "PING :%s", me.id);
224     }
225    
226     /* server_estab()
227     *
228     * inputs - pointer to a struct Client
229     * output -
230     * side effects -
231     */
232 michael 3306 static void
233 michael 3303 server_estab(struct Client *client_p)
234     {
235     struct MaskItem *conf = NULL;
236     char *host;
237     const char *inpath;
238     static char inpath_ip[HOSTLEN * 2 + USERLEN + 6];
239     dlink_node *ptr;
240     #ifdef HAVE_LIBCRYPTO
241     const COMP_METHOD *compression = NULL, *expansion = NULL;
242     #endif
243    
244     assert(client_p);
245    
246     strlcpy(inpath_ip, get_client_name(client_p, SHOW_IP), sizeof(inpath_ip));
247    
248     inpath = get_client_name(client_p, MASK_IP); /* "refresh" inpath with host */
249     host = client_p->name;
250    
251     if ((conf = find_conf_name(&client_p->localClient->confs, host, CONF_SERVER))
252     == NULL)
253     {
254     /* This shouldn't happen, better tell the ops... -A1kmm */
255     sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
256     "Warning: Lost connect{} block "
257     "for server %s(this shouldn't happen)!", host);
258     exit_client(client_p, "Lost connect{} block!");
259     return;
260     }
261    
262     MyFree(client_p->localClient->passwd);
263     client_p->localClient->passwd = NULL;
264    
265     /* Its got identd, since its a server */
266     SetGotId(client_p);
267    
268     /* If there is something in the serv_list, it might be this
269     * connecting server..
270     */
271     if (!ServerInfo.hub && serv_list.head)
272     {
273     if (client_p != serv_list.head->data || serv_list.head->next)
274     {
275     ++ServerStats.is_ref;
276     sendto_one(client_p, "ERROR :I'm a leaf not a hub");
277     exit_client(client_p, "I'm a leaf");
278     return;
279     }
280     }
281    
282     if (IsUnknown(client_p))
283     {
284     sendto_one(client_p, "PASS %s TS %d %s", conf->spasswd, TS_CURRENT, me.id);
285    
286     send_capabilities(client_p, 0);
287    
288     sendto_one(client_p, "SERVER %s 1 :%s%s",
289     me.name, ConfigServerHide.hidden ? "(H) " : "", me.info);
290     }
291    
292     sendto_one(client_p, "SVINFO %d %d 0 :%lu", TS_CURRENT, TS_MIN,
293     (unsigned long)CurrentTime);
294    
295     /* XXX Does this ever happen? I don't think so -db */
296     detach_conf(client_p, CONF_OPER);
297    
298     /* *WARNING*
299     ** In the following code in place of plain server's
300     ** name we send what is returned by get_client_name
301     ** which may add the "sockhost" after the name. It's
302     ** *very* *important* that there is a SPACE between
303     ** the name and sockhost (if present). The receiving
304     ** server will start the information field from this
305     ** first blank and thus puts the sockhost into info.
306     ** ...a bit tricky, but you have been warned, besides
307     ** code is more neat this way... --msa
308     */
309     client_p->servptr = &me;
310    
311     if (IsClosing(client_p))
312     return;
313    
314     SetServer(client_p);
315    
316     /* Some day, all these lists will be consolidated *sigh* */
317     dlinkAdd(client_p, &client_p->lnode, &me.serv->server_list);
318    
319     assert(dlinkFind(&unknown_list, client_p));
320    
321     dlink_move_node(&client_p->localClient->lclient_node,
322     &unknown_list, &serv_list);
323    
324     Count.myserver++;
325    
326     dlinkAdd(client_p, make_dlink_node(), &global_serv_list);
327     hash_add_client(client_p);
328     hash_add_id(client_p);
329    
330     /* doesnt duplicate client_p->serv if allocated this struct already */
331     make_server(client_p);
332    
333     /* fixing eob timings.. -gnp */
334     client_p->localClient->firsttime = CurrentTime;
335    
336     if (find_matching_name_conf(CONF_SERVICE, client_p->name, NULL, NULL, 0))
337     AddFlag(client_p, FLAGS_SERVICE);
338    
339     /* Show the real host/IP to admins */
340     #ifdef HAVE_LIBCRYPTO
341     if (client_p->localClient->fd.ssl)
342     {
343     compression = SSL_get_current_compression(client_p->localClient->fd.ssl);
344     expansion = SSL_get_current_expansion(client_p->localClient->fd.ssl);
345    
346     sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
347     "Link with %s established: [SSL: %s, Compression/Expansion method: %s/%s] (Capabilities: %s)",
348     inpath_ip, ssl_get_cipher(client_p->localClient->fd.ssl),
349     compression ? SSL_COMP_get_name(compression) : "NONE",
350     expansion ? SSL_COMP_get_name(expansion) : "NONE",
351     show_capabilities(client_p));
352     /* Now show the masked hostname/IP to opers */
353     sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
354     "Link with %s established: [SSL: %s, Compression/Expansion method: %s/%s] (Capabilities: %s)",
355     inpath, ssl_get_cipher(client_p->localClient->fd.ssl),
356     compression ? SSL_COMP_get_name(compression) : "NONE",
357     expansion ? SSL_COMP_get_name(expansion) : "NONE",
358     show_capabilities(client_p));
359     ilog(LOG_TYPE_IRCD, "Link with %s established: [SSL: %s, Compression/Expansion method: %s/%s] (Capabilities: %s)",
360     inpath_ip, ssl_get_cipher(client_p->localClient->fd.ssl),
361     compression ? SSL_COMP_get_name(compression) : "NONE",
362     expansion ? SSL_COMP_get_name(expansion) : "NONE",
363     show_capabilities(client_p));
364     }
365     else
366     #endif
367     {
368     sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
369     "Link with %s established: (Capabilities: %s)",
370     inpath_ip, show_capabilities(client_p));
371     /* Now show the masked hostname/IP to opers */
372     sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
373     "Link with %s established: (Capabilities: %s)",
374     inpath, show_capabilities(client_p));
375     ilog(LOG_TYPE_IRCD, "Link with %s established: (Capabilities: %s)",
376     inpath_ip, show_capabilities(client_p));
377     }
378    
379     fd_note(&client_p->localClient->fd, "Server: %s", client_p->name);
380    
381     sendto_server(client_p, NOCAPS, NOCAPS, ":%s SID %s 2 %s :%s%s",
382     me.id, client_p->name, client_p->id,
383     IsHidden(client_p) ? "(H) " : "", client_p->info);
384    
385     /*
386     * Pass on my client information to the new server
387     *
388     * First, pass only servers (idea is that if the link gets
389     * cancelled beacause the server was already there,
390     * there are no NICK's to be cancelled...). Of course,
391     * if cancellation occurs, all this info is sent anyway,
392     * and I guess the link dies when a read is attempted...? --msa
393     *
394     * Note: Link cancellation to occur at this point means
395     * that at least two servers from my fragment are building
396     * up connection this other fragment at the same time, it's
397     * a race condition, not the normal way of operation...
398     *
399     * ALSO NOTE: using the get_client_name for server names--
400     * see previous *WARNING*!!! (Also, original inpath
401     * is destroyed...)
402     */
403     DLINK_FOREACH_PREV(ptr, global_serv_list.tail)
404     {
405     struct Client *target_p = ptr->data;
406    
407     /* target_p->from == target_p for target_p == client_p */
408     if (IsMe(target_p) || target_p->from == client_p)
409     continue;
410    
411     sendto_one(client_p, ":%s SID %s %d %s :%s%s",
412     target_p->servptr->id, target_p->name, target_p->hopcount+1,
413     target_p->id, IsHidden(target_p) ? "(H) " : "",
414     target_p->info);
415    
416     if (HasFlag(target_p, FLAGS_EOB))
417     sendto_one(client_p, ":%s EOB", target_p->id);
418     }
419    
420     server_burst(client_p);
421     }
422    
423 michael 1997 /* set_server_gecos()
424     *
425     * input - pointer to client
426     * output - NONE
427     * side effects - servers gecos field is set
428     */
429     static void
430     set_server_gecos(struct Client *client_p, const char *info)
431     {
432     const char *s = info;
433 adx 30
434 michael 1997 /* check for (H) which is a hidden server */
435     if (!strncmp(s, "(H) ", 4))
436     {
437     SetHidden(client_p);
438     s = s + 4;
439     }
440    
441     if (!EmptyString(s))
442     strlcpy(client_p->info, s, sizeof(client_p->info));
443     else
444     strlcpy(client_p->info, "(Unknown Location)", sizeof(client_p->info));
445     }
446    
447 adx 30 /* mr_server()
448 michael 3096 * parv[0] = command
449 adx 30 * parv[1] = servername
450 michael 3139 * parv[2] = hopcount
451 adx 30 * parv[3] = serverinfo
452     */
453 michael 2820 static int
454 michael 3156 mr_server(struct Client *source_p, int parc, char *parv[])
455 adx 30 {
456 michael 3246 char *name = NULL;
457     struct Client *target_p = NULL;
458 adx 30
459 michael 1178 if (EmptyString(parv[3]))
460 adx 30 {
461 michael 3156 sendto_one(source_p, "ERROR :No servername");
462 michael 3171 exit_client(source_p, "Wrong number of args");
463 michael 2820 return 0;
464 adx 30 }
465    
466     name = parv[1];
467    
468 michael 1118 /*
469     * Reject a direct nonTS server connection if we're TS_ONLY -orabidoo
470 adx 30 */
471 michael 3156 if (!DoesTS(source_p))
472 adx 30 {
473 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
474 michael 1118 "Unauthorized server connection attempt from %s: Non-TS server "
475 michael 3156 "for server %s", get_client_name(source_p, HIDE_IP), name);
476 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
477 michael 1118 "Unauthorized server connection attempt from %s: Non-TS server "
478 michael 3156 "for server %s", get_client_name(source_p, MASK_IP), name);
479 michael 3171 exit_client(source_p, "Non-TS server");
480 michael 2820 return 0;
481 adx 30 }
482    
483 michael 1118 if (!valid_servname(name))
484 adx 30 {
485 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
486 michael 1118 "Unauthorized server connection attempt from %s: Bogus server name "
487 michael 3156 "for server %s", get_client_name(source_p, HIDE_IP), name);
488 michael 1624 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
489 michael 1118 "Unauthorized server connection attempt from %s: Bogus server name "
490 michael 3156 "for server %s", get_client_name(source_p, MASK_IP), name);
491 michael 3171 exit_client(source_p, "Bogus server name");
492 michael 2820 return 0;
493 adx 30 }
494    
495 michael 3156 if (!valid_sid(source_p->id))
496 michael 3148 {
497     sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
498     "Link %s introduced server with bogus server ID %s",
499 michael 3156 get_client_name(source_p, SHOW_IP), source_p->id);
500 michael 3148 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
501     "Link %s introduced server with bogus server ID %s",
502 michael 3156 get_client_name(source_p, MASK_IP), source_p->id);
503     sendto_one(source_p, "ERROR :Bogus server ID introduced");
504 michael 3171 exit_client(source_p, "Bogus server ID intoduced");
505 michael 3148 return 0;
506     }
507    
508 adx 30 /* Now we just have to call check_server and everything should
509     * be check for us... -A1kmm.
510     */
511 michael 3156 switch (check_server(name, source_p))
512 adx 30 {
513     case -1:
514 michael 3473 if (ConfigFileEntry.warn_no_connect_block)
515 adx 30 {
516 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
517 adx 30 "Unauthorized server connection attempt from %s: No entry for "
518 michael 3156 "servername %s", get_client_name(source_p, HIDE_IP), name);
519 adx 30
520 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
521 adx 30 "Unauthorized server connection attempt from %s: No entry for "
522 michael 3156 "servername %s", get_client_name(source_p, MASK_IP), name);
523 adx 30 }
524    
525 michael 3171 exit_client(source_p, "No connect{} block.");
526 michael 2820 return 0;
527 adx 30 /* NOT REACHED */
528     break;
529    
530     case -2:
531 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
532 adx 30 "Unauthorized server connection attempt from %s: Bad password "
533 michael 3156 "for server %s", get_client_name(source_p, HIDE_IP), name);
534 adx 30
535 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
536 adx 30 "Unauthorized server connection attempt from %s: Bad password "
537 michael 3156 "for server %s", get_client_name(source_p, MASK_IP), name);
538 adx 30
539 michael 3171 exit_client(source_p, "Invalid password.");
540 michael 2820 return 0;
541 adx 30 /* NOT REACHED */
542     break;
543    
544     case -3:
545 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
546 adx 30 "Unauthorized server connection attempt from %s: Invalid host "
547 michael 3156 "for server %s", get_client_name(source_p, HIDE_IP), name);
548 adx 30
549 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
550 adx 30 "Unauthorized server connection attempt from %s: Invalid host "
551 michael 3156 "for server %s", get_client_name(source_p, MASK_IP), name);
552 adx 30
553 michael 3171 exit_client(source_p, "Invalid host.");
554 michael 2820 return 0;
555 michael 2228 case -4:
556     sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
557     "Unauthorized server connection attempt from %s: Invalid certificate fingerprint "
558 michael 3156 "for server %s", get_client_name(source_p, HIDE_IP), name);
559 michael 2228
560     sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
561     "Unauthorized server connection attempt from %s: Invalid certificate fingerprint "
562 michael 3156 "for server %s", get_client_name(source_p, MASK_IP), name);
563 michael 2228
564 michael 3171 exit_client(source_p, "Invalid certificate fingerprint.");
565 michael 2820 return 0;
566 adx 30 /* NOT REACHED */
567     break;
568     }
569    
570 michael 2976 if ((target_p = hash_find_server(name)))
571 adx 30 {
572     /* This link is trying feed me a server that I already have
573     * access through another path -- multiple paths not accepted
574     * currently, kill this link immediately!!
575     *
576     * Rather than KILL the link which introduced it, KILL the
577     * youngest of the two links. -avalon
578     *
579     * Definitely don't do that here. This is from an unregistered
580     * connect - A1kmm.
581     */
582 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
583 michael 2976 "Attempt to re-introduce server %s from %s",
584 michael 3156 name, get_client_name(source_p, HIDE_IP));
585 michael 2976 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
586     "Attempt to re-introduce server %s from %s",
587 michael 3156 name, get_client_name(source_p, MASK_IP));
588     sendto_one(source_p, "ERROR :Server already exists.");
589 michael 3171 exit_client(source_p, "Server already exists");
590 michael 2976 return 0;
591     }
592    
593 michael 3156 if ((target_p = hash_find_id(source_p->id)))
594 michael 2976 {
595     sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
596 michael 2820 "Attempt to re-introduce server %s SID %s from %s",
597 michael 3156 name, source_p->id,
598     get_client_name(source_p, HIDE_IP));
599 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
600 michael 2820 "Attempt to re-introduce server %s SID %s from %s",
601 michael 3156 name, source_p->id,
602     get_client_name(source_p, MASK_IP));
603     sendto_one(source_p, "ERROR :Server ID already exists.");
604 michael 3171 exit_client(source_p, "Server ID already exists");
605 michael 2820 return 0;
606 adx 30 }
607    
608     /* XXX If somehow there is a connect in progress and
609     * a connect comes in with same name toss the pending one,
610     * but only if it's not the same client! - Dianora
611     */
612     if ((target_p = find_servconn_in_progress(name)))
613 michael 3156 if (target_p != source_p)
614 michael 3171 exit_client(target_p, "Overridden");
615 adx 30
616     /* if we are connecting (Handshake), we already have the name from the
617 michael 3156 * connect{} block in source_p->name
618 adx 30 */
619 michael 3156 strlcpy(source_p->name, name, sizeof(source_p->name));
620     set_server_gecos(source_p, parv[3]);
621 michael 3190 source_p->hopcount = atoi(parv[2]);
622 michael 3156 server_estab(source_p);
623 michael 2820 return 0;
624 adx 30 }
625    
626     /* ms_sid()
627 michael 3096 * parv[0] = command
628 adx 30 * parv[1] = servername
629 michael 3139 * parv[2] = hopcount
630 adx 30 * parv[3] = sid of new server
631     * parv[4] = serverinfo
632     */
633 michael 2820 static int
634 michael 3156 ms_sid(struct Client *source_p, int parc, char *parv[])
635 adx 30 {
636 michael 3139 dlink_node *ptr = NULL;
637     struct Client *target_p = NULL;
638 michael 3156 struct Client *client_p = source_p->from; /* XXX */
639 michael 3139 const struct MaskItem *conf = NULL;
640 adx 30 int hlined = 0;
641     int llined = 0;
642    
643     /* Just to be sure -A1kmm. */
644     if (!IsServer(source_p))
645 michael 2820 return 0;
646 adx 30
647 michael 1178 if (EmptyString(parv[4]))
648 michael 1118 {
649     sendto_one(client_p, "ERROR :No servername");
650 michael 2820 return 0;
651 michael 1118 }
652 adx 30
653 michael 1118 if (!valid_servname(parv[1]))
654     {
655 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
656 michael 1118 "Link %s introduced server with bogus server name %s",
657     get_client_name(client_p, SHOW_IP), parv[1]);
658 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
659 michael 1118 "Link %s introduced server with bogus server name %s",
660     get_client_name(client_p, MASK_IP), parv[1]);
661     sendto_one(client_p, "ERROR :Bogus server name introduced");
662 michael 3171 exit_client(client_p, "Bogus server name intoduced");
663 michael 2820 return 0;
664 michael 1118 }
665    
666     if (!valid_sid(parv[3]))
667     {
668 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
669 michael 1118 "Link %s introduced server with bogus server ID %s",
670     get_client_name(client_p, SHOW_IP), parv[3]);
671 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
672 michael 1118 "Link %s introduced server with bogus server ID %s",
673     get_client_name(client_p, MASK_IP), parv[3]);
674     sendto_one(client_p, "ERROR :Bogus server ID introduced");
675 michael 3171 exit_client(client_p, "Bogus server ID intoduced");
676 michael 2820 return 0;
677 michael 1118 }
678    
679 adx 30 /* collision on SID? */
680 michael 1118 if ((target_p = hash_find_id(parv[3])))
681 adx 30 {
682 michael 1118 sendto_one(client_p, "ERROR :SID %s already exists", parv[3]);
683 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
684 michael 2820 "Link %s cancelled, SID %s already exists",
685 michael 1118 get_client_name(client_p, SHOW_IP), parv[3]);
686 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
687 michael 2820 "Link %s cancelled, SID %s already exists",
688 michael 1118 client_p->name, parv[3]);
689 michael 3171 exit_client(client_p, "SID Exists");
690 michael 2820 return 0;
691 adx 30 }
692    
693     /* collision on name? */
694 michael 1169 if ((target_p = hash_find_server(parv[1])))
695 adx 30 {
696 michael 1118 sendto_one(client_p, "ERROR :Server %s already exists", parv[1]);
697 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
698 michael 2820 "Link %s cancelled, server %s already exists",
699 michael 1118 get_client_name(client_p, SHOW_IP), parv[1]);
700 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
701 michael 2820 "Link %s cancelled, server %s already exists",
702 michael 1118 client_p->name, parv[1]);
703 michael 3171 exit_client(client_p, "Server Exists");
704 michael 2820 return 0;
705 adx 30 }
706    
707     /* XXX If somehow there is a connect in progress and
708     * a connect comes in with same name toss the pending one,
709     * but only if it's not the same client! - Dianora
710     */
711 michael 1118 if ((target_p = find_servconn_in_progress(parv[1])))
712 adx 30 if (target_p != client_p)
713 michael 3171 exit_client(target_p, "Overridden");
714 adx 30
715 michael 1632 conf = client_p->localClient->confs.head->data;
716 michael 1384
717 adx 30 /* See if the newly found server is behind a guaranteed
718     * leaf. If so, close the link.
719     */
720 michael 1632 DLINK_FOREACH(ptr, conf->leaf_list.head)
721 michael 3139 {
722 michael 1652 if (!match(ptr->data, parv[1]))
723 michael 1529 {
724     llined = 1;
725     break;
726     }
727 michael 3139 }
728 adx 30
729 michael 1632 DLINK_FOREACH(ptr, conf->hub_list.head)
730 michael 3139 {
731 michael 1652 if (!match(ptr->data, parv[1]))
732 michael 1529 {
733     hlined = 1;
734     break;
735     }
736 michael 3139 }
737 michael 1118
738 adx 30 /* Ok, this way this works is
739     *
740     * A server can have a CONF_HUB allowing it to introduce servers
741     * behind it.
742     *
743     * connect {
744     * name = "irc.bighub.net";
745     * hub_mask="*";
746     * ...
747 michael 2820 *
748 adx 30 * That would allow "irc.bighub.net" to introduce anything it wanted..
749     *
750     * However
751     *
752     * connect {
753     * name = "irc.somehub.fi";
754     * hub_mask="*";
755     * leaf_mask="*.edu";
756     *...
757     * Would allow this server in finland to hub anything but
758     * .edu's
759     */
760    
761     /* Ok, check client_p can hub the new server, and make sure it's not a LL */
762 michael 885 if (!hlined)
763 adx 30 {
764     /* OOOPs nope can't HUB */
765 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
766     "Non-Hub link %s introduced %s.",
767 michael 1118 get_client_name(client_p, SHOW_IP), parv[1]);
768 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
769     "Non-Hub link %s introduced %s.",
770 michael 1118 get_client_name(client_p, MASK_IP), parv[1]);
771 michael 3171 exit_client(source_p, "No matching hub_mask.");
772 michael 2820 return 0;
773 adx 30 }
774    
775     /* Check for the new server being leafed behind this HUB */
776     if (llined)
777     {
778     /* OOOPs nope can't HUB this leaf */
779 michael 1618 sendto_realops_flags(UMODE_ALL, L_ADMIN, SEND_NOTICE,
780 michael 2820 "Link %s introduced leafed server %s.",
781 michael 1118 get_client_name(client_p, SHOW_IP), parv[1]);
782 michael 1618 sendto_realops_flags(UMODE_ALL, L_OPER, SEND_NOTICE,
783 michael 2820 "Link %s introduced leafed server %s.",
784 michael 1118 get_client_name(client_p, MASK_IP), parv[1]);
785 michael 3171 exit_client(client_p, "Leafed Server.");
786 michael 2820 return 0;
787 adx 30 }
788    
789     target_p = make_client(client_p);
790     make_server(target_p);
791 michael 3190 target_p->hopcount = atoi(parv[2]);
792 michael 1118 target_p->servptr = source_p;
793 adx 30
794 michael 1118 strlcpy(target_p->name, parv[1], sizeof(target_p->name));
795     strlcpy(target_p->id, parv[3], sizeof(target_p->id));
796 adx 30
797 michael 1533 set_server_gecos(target_p, parv[4]);
798 adx 30 SetServer(target_p);
799    
800 michael 1632 if (HasFlag(source_p, FLAGS_SERVICE) || find_matching_name_conf(CONF_SERVICE, target_p->name, NULL, NULL, 0))
801 michael 1219 AddFlag(target_p, FLAGS_SERVICE);
802 michael 1157
803 michael 1118 dlinkAdd(target_p, &target_p->node, &global_client_list);
804     dlinkAdd(target_p, make_dlink_node(), &global_serv_list);
805     dlinkAdd(target_p, &target_p->lnode, &target_p->servptr->serv->server_list);
806 adx 30
807     hash_add_client(target_p);
808     hash_add_id(target_p);
809    
810 michael 3135 sendto_server(client_p, NOCAPS, NOCAPS, ":%s SID %s %d %s :%s%s",
811 michael 3192 source_p->id, target_p->name, target_p->hopcount + 1,
812 michael 1527 target_p->id, IsHidden(target_p) ? "(H) " : "", target_p->info);
813 michael 1618 sendto_realops_flags(UMODE_EXTERNAL, L_ALL, SEND_NOTICE,
814 michael 1118 "Server %s being introduced by %s",
815 adx 30 target_p->name, source_p->name);
816 michael 2820 return 0;
817 adx 30 }
818    
819 michael 2820 static struct Message server_msgtab =
820     {
821 michael 1569 "SERVER", 0, 0, 4, MAXPARA, MFLG_SLOW, 0,
822 michael 3135 { mr_server, m_registered, m_ignore, m_ignore, m_registered, m_ignore }
823 michael 1230 };
824    
825 michael 2820 static struct Message sid_msgtab =
826     {
827 michael 1230 "SID", 0, 0, 5, MAXPARA, MFLG_SLOW, 0,
828 michael 2820 { m_ignore, m_ignore, ms_sid, m_ignore, m_ignore, m_ignore }
829 michael 1230 };
830    
831     static void
832     module_init(void)
833     {
834     mod_add_cmd(&sid_msgtab);
835     mod_add_cmd(&server_msgtab);
836     }
837    
838     static void
839     module_exit(void)
840     {
841     mod_del_cmd(&sid_msgtab);
842     mod_del_cmd(&server_msgtab);
843     }
844    
845 michael 2820 struct module module_entry =
846     {
847 michael 1230 .node = { NULL, NULL, NULL },
848     .name = NULL,
849     .version = "$Revision$",
850     .handle = NULL,
851     .modinit = module_init,
852     .modexit = module_exit,
853     .flags = MODULE_FLAG_CORE
854     };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision