Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / s_serv.c
1 /*
2  * IRC - Internet Relay Chat, ircd/s_serv.c (formerly ircd/s_msg.c)
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
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 1, or (at your option)
12  * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25 #include "s_serv.h"
26 #include "IPcheck.h"
27 #include "channel.h"
28 #include "client.h"
29 #include "crule.h"
30 #include "gline.h"
31 #include "hash.h"
32 #include "ircd.h"
33 #include "ircd_alloc.h"
34 #include "ircd_reply.h"
35 #include "ircd_string.h"
36 #include "ircd_snprintf.h"
37 #include "ircd_xopen.h"
38 #include "jupe.h"
39 #include "list.h"
40 #include "msg.h"
41 #include "match.h"
42 #include "numeric.h"
43 #include "numnicks.h"
44 #include "parse.h"
45 #include "querycmds.h"
46 #include "s_bsd.h"
47 #include "s_conf.h"
48 #include "s_debug.h"
49 #include "s_misc.h"
50 #include "s_user.h"
51 #include "send.h"
52 #include "sprintf_irc.h"
53 #include "struct.h"
54 #include "sys.h"
55 #include "userload.h"
56
57 #include <assert.h>
58 #include <stdlib.h>
59 #include <string.h>
60
61 unsigned int max_connection_count = 0;
62 unsigned int max_client_count = 0;
63 #if 0
64 int exit_new_server(struct Client* cptr, struct Client* sptr,
65                     const char* host, time_t timestamp, const char* fmt, ...)
66 {
67   va_list vl;
68   char *buf =
69       (char*) MyMalloc(strlen(me.name) + strlen(host) + 22 + strlen(fmt));
70   assert(0 != buf);
71   va_start(vl, fmt);
72   if (!IsServer(sptr))
73     return vexit_client_msg(cptr, cptr, &me, fmt, vl);
74   sprintf_irc(buf, ":%s " TOK_SQUIT " %s " TIME_T_FMT " :", me.name, host, timestamp);
75   strcat(buf, fmt);
76   vsendto_one(cptr, buf, vl); /* XXX DEAD */
77   va_end(vl);
78   MyFree(buf);
79   return 0;
80 }
81 #endif /* 0 */
82
83 int exit_new_server(struct Client *cptr, struct Client *sptr, const char *host,
84                     time_t timestamp, const char *pattern, ...)
85 {
86   struct VarData vd;
87   int retval = 0;
88
89   vd.vd_format = pattern;
90   va_start(vd.vd_args, pattern);
91
92   if (!IsServer(sptr))
93     retval = vexit_client_msg(cptr, cptr, &me, pattern, vd.vd_args);
94   else
95     sendcmdto_one(&me, CMD_SQUIT, cptr, "%s %Tu :%v", host, timestamp, &vd);
96
97   va_end(vd.vd_args);
98
99   return retval;
100 }
101
102 int a_kills_b_too(struct Client *a, struct Client *b)
103 {
104   for (; b != a && b != &me; b = b->serv->up);
105   return (a == b ? 1 : 0);
106 }
107
108 /*
109  * server_estab
110  *
111  * May only be called after a SERVER was received from cptr,
112  * and thus make_server was called, and serv->prot set. --Run
113  */
114 int server_estab(struct Client *cptr, struct ConfItem *aconf,
115                  struct Jupe *ajupe)
116 {
117   struct Client* acptr = 0;
118   const char*    inpath;
119   int split,     i;
120
121   assert(0 != cptr);
122   assert(0 != cptr->local);
123
124   split = (0 != ircd_strcmp(cptr->name, cptr->sockhost)
125       &&   0 != ircd_strncmp(cptr->info, "JUPE", 4));
126   inpath = cptr->name;
127
128   if (IsUnknown(cptr)) {
129     if (aconf->passwd[0])
130       sendrawto_one(cptr, MSG_PASS " :%s", aconf->passwd);
131     /*
132      *  Pass my info to the new server
133      */
134     sendrawto_one(cptr, MSG_SERVER " %s 1 %Tu %Tu J%s %s%s :%s", me.name,
135                   me.serv->timestamp, cptr->serv->timestamp, MAJOR_PROTOCOL,
136                   NumServCap(&me), *me.info ? me.info : "IRCers United");
137   }
138
139   det_confs_butmask(cptr, CONF_LEAF | CONF_HUB | CONF_SERVER | CONF_UWORLD);
140
141   if (!IsHandshake(cptr))
142     hAddClient(cptr);
143   SetServer(cptr);
144   cptr->handler = SERVER_HANDLER;
145   Count_unknownbecomesserver(UserStats);
146
147   release_dns_reply(cptr);
148
149   SetBurst(cptr);
150
151   nextping = CurrentTime;
152
153   /*
154    * NOTE: check for acptr->user == cptr->serv->user is necessary to insure
155    * that we got the same one... bleah
156    */
157   if (cptr->serv->user && *cptr->serv->by &&
158       (acptr = findNUser(cptr->serv->by))) {
159     if (acptr->user == cptr->serv->user) {
160       sendcmdto_one(&me, CMD_NOTICE, acptr, "%C :Link with %s established.",
161                     acptr, inpath);
162     }
163     else {
164       /*
165        * if not the same client, set by to empty string
166        */
167       acptr = 0;
168       *cptr->serv->by = '\0';
169     }
170   }
171
172   sendto_opmask_butone(acptr, SNO_OLDSNO, "Link with %s established.", inpath);
173   cptr->serv->up = &me;
174   cptr->serv->updown = add_dlink(&me.serv->down, cptr);
175   sendto_opmask_butone(0, SNO_NETWORK, "Net junction: %s %s", me.name,
176                        cptr->name);
177   SetJunction(cptr);
178   /*
179    * Old sendto_serv_but_one() call removed because we now
180    * need to send different names to different servers
181    * (domain name matching) Send new server to other servers.
182    */
183   for (i = 0; i <= HighestFd; i++)
184   {
185     if (!(acptr = LocalClientArray[i]) || !IsServer(acptr) ||
186         acptr == cptr || IsMe(acptr))
187       continue;
188     if (!match(me.name, cptr->name))
189       continue;
190     if (ajupe)
191       sendcmdto_one(&me, CMD_SERVER, acptr,
192                     "%s 2 0 %Tu J%02u %s%s 0 %%%Tu :%s", cptr->name,
193                     cptr->serv->timestamp, Protocol(cptr), NumServCap(cptr),
194                     JupeLastMod(ajupe), cptr->info);
195     else
196       sendcmdto_one(&me, CMD_SERVER, acptr,
197                     "%s 2 0 %Tu J%02u %s%s 0 :%s", cptr->name,
198                     cptr->serv->timestamp, Protocol(cptr), NumServCap(cptr),
199                     cptr->info);
200   }
201
202   /*
203    * Pass on my client information to the new server
204    *
205    * First, pass only servers (idea is that if the link gets
206    * cancelled beacause the server was already there,
207    * there are no NICK's to be cancelled...). Of course,
208    * if cancellation occurs, all this info is sent anyway,
209    * and I guess the link dies when a read is attempted...? --msa
210    *
211    * Note: Link cancellation to occur at this point means
212    * that at least two servers from my fragment are building
213    * up connection this other fragment at the same time, it's
214    * a race condition, not the normal way of operation...
215    */
216
217   for (acptr = &me; acptr; acptr = acptr->prev) {
218     /* acptr->from == acptr for acptr == cptr */
219     if (acptr->from == cptr)
220       continue;
221     if (IsServer(acptr)) {
222       const char* protocol_str;
223
224       if (Protocol(acptr) > 9)
225         protocol_str = IsBurst(acptr) ? "J" : "P";
226       else
227         protocol_str = IsBurst(acptr) ? "J0" : "P0";
228
229       if (0 == match(me.name, acptr->name))
230         continue;
231       split = (MyConnect(acptr) && 
232                0 != ircd_strcmp(acptr->name, acptr->sockhost) &&
233                0 != ircd_strncmp(acptr->info, "JUPE", 4));
234       if ((ajupe = jupe_find(acptr->name)) && !JupeIsLocal(ajupe))
235         sendcmdto_one(acptr->serv->up, CMD_SERVER, cptr,
236                       "%s %d 0 %Tu %s%u %s%s 0 %%%Tu :%s", acptr->name,
237                       acptr->hopcount + 1, acptr->serv->timestamp,
238                       protocol_str, Protocol(acptr), NumServCap(acptr),
239                       JupeLastMod(ajupe), acptr->info);
240       else
241         sendcmdto_one(acptr->serv->up, CMD_SERVER, cptr,
242                       "%s %d 0 %Tu %s%u %s%s 0 :%s", acptr->name,
243                       acptr->hopcount + 1, acptr->serv->timestamp,
244                       protocol_str, Protocol(acptr), NumServCap(acptr),
245                       acptr->info);
246     }
247   }
248
249   for (acptr = &me; acptr; acptr = acptr->prev)
250   {
251     /* acptr->from == acptr for acptr == cptr */
252     if (acptr->from == cptr)
253       continue;
254     if (IsUser(acptr))
255     {
256       char xxx_buf[8];
257       char *s = umode_str(acptr);
258       struct Gline *agline = 0;
259       if ((agline = gline_lookup(acptr, GLINE_GLOBAL | GLINE_LASTMOD)))
260         sendcmdto_one(acptr->user->server, CMD_NICK, cptr,
261                       "%s %d %Tu %s %s %s%s%s%%%Tu:%s@%s %s %s%s :%s",
262                       acptr->name, acptr->hopcount + 1, acptr->lastnick,
263                       acptr->user->username, acptr->user->host,
264                       *s ? "+" : "", s, *s ? " " : "",
265                       GlineLastMod(agline), GlineUser(agline),
266                       GlineHost(agline),
267                       inttobase64(xxx_buf, ntohl(acptr->ip.s_addr), 6),
268                       NumNick(acptr), acptr->info);
269       else
270         sendcmdto_one(acptr->user->server, CMD_NICK, cptr,
271                       "%s %d %Tu %s %s %s%s%s%s %s%s :%s",
272                       acptr->name, acptr->hopcount + 1, acptr->lastnick,
273                       acptr->user->username, acptr->user->host,
274                       *s ? "+" : "", s, *s ? " " : "",
275                       inttobase64(xxx_buf, ntohl(acptr->ip.s_addr), 6),
276                       NumNick(acptr), acptr->info);
277     }
278   }
279   /*
280    * Last, send the BURST.
281    * (Or for 2.9 servers: pass all channels plus statuses)
282    */
283   {
284     struct Channel *chptr;
285     for (chptr = GlobalChannelList; chptr; chptr = chptr->next)
286       send_channel_modes(cptr, chptr);
287   }
288   jupe_burst(cptr);
289   gline_burst(cptr);
290   sendcmdto_one(&me, CMD_END_OF_BURST, cptr, "");
291   return 0;
292 }
293