Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_create.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_create.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
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #if 0
83 /*
84  * No need to include handlers.h here the signatures must match
85  * and we don't need to force a rebuild of all the handlers everytime
86  * we add a new one to the list. --Bleep
87  */
88 #include "handlers.h"
89 #endif /* 0 */
90 #include "channel.h"
91 #include "client.h"
92 #include "hash.h"
93 #include "ircd.h"
94 #include "ircd_reply.h"
95 #include "ircd_string.h"
96 #include "msg.h"
97 #include "numeric.h"
98 #include "numnicks.h"
99 #include "s_debug.h"
100 #include "s_misc.h"
101 #include "s_user.h"
102 #include "send.h"
103
104 #include <assert.h>
105 #include <stdlib.h>
106 #include <string.h>
107
108 /*
109  * ms_create - server message handler
110  */
111 int ms_create(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
112 {
113   time_t chanTS; /* channel creation time */
114   char *p; /* strtok state */
115   char *name; /* channel name */
116   struct Channel *chptr; /* channel */
117   struct JoinBuf join; /* join and create buffers */
118   struct JoinBuf create;
119   struct ModeBuf mbuf; /* a mode buffer */
120   int badop; /* a flag */
121
122   if (IsServer(sptr))
123     return protocol_violation(sptr,"%s tried to CREATE a channel", sptr->name);
124
125   /* sanity checks: Only accept CREATE messages from servers */
126   if (parc < 3 || *parv[2] == '\0')
127     return need_more_params(sptr,"CREATE");
128
129   chanTS = atoi(parv[2]);
130
131   joinbuf_init(&join, sptr, cptr, JOINBUF_TYPE_JOIN, 0, 0);
132   joinbuf_init(&create, sptr, cptr, JOINBUF_TYPE_CREATE, 0, chanTS);
133
134   /* A create that didn't appear during a burst has that servers idea of
135    * the current time.  Use it for lag calculations.
136    */
137   if (!IsBurstOrBurstAck(sptr) && 0 != chanTS &&
138       MAGIC_REMOTE_JOIN_TS != chanTS)
139     sptr->user->server->serv->lag = TStime() - chanTS;
140
141 #if 1
142   /* If this server is >5 minutes fast, squit it */
143   if (TStime() - chanTS<-5*60*60)
144         return exit_client(sptr, sptr, &me, "Timestamp Drift/Bogus TS");
145 #endif
146 #if 0   
147   /* If we recieve a CREATE for a channel from a server before that server
148    * was linked, then it's a HACK
149    */
150   if (MyConnect(sptr) && chanTS<sptr->timestamp+5*60*60)
151         return exit_client(sptr,sptr,"HACK: Bogus TS on CREATE before server link");
152 #endif
153
154   /* For each channel in the comma seperated list: */
155   for (name = ircd_strtok(&p, parv[1], ","); name;
156        name = ircd_strtok(&p, 0, ",")) {
157     badop = 0;
158
159     if (IsLocalChannel(name))
160       continue;
161
162     if ((chptr = FindChannel(name))) {
163       name = chptr->chname;
164
165       /* Check if we need to bounce a mode */
166       if (TStime() - chanTS > TS_LAG_TIME ||
167           (chptr->creationtime && chanTS > chptr->creationtime &&
168            chptr->creationtime != MAGIC_REMOTE_JOIN_TS)) {
169         modebuf_init(&mbuf, sptr, cptr, chptr,
170                      (MODEBUF_DEST_SERVER |  /* Send mode to server */
171                       MODEBUF_DEST_HACK2  |  /* Send a HACK(2) message */
172                       MODEBUF_DEST_BOUNCE)); /* And bounce the mode */
173
174         modebuf_mode_client(&mbuf, MODE_ADD | MODE_CHANOP, sptr);
175
176         modebuf_flush(&mbuf);
177
178         badop = 1;
179       }
180     } else                        /* Channel doesn't exist: create it */
181       chptr = get_channel(sptr, name, CGT_CREATE);
182
183     if (!badop) /* Set/correct TS */
184       chptr->creationtime = chanTS;
185
186     joinbuf_join(badop ? &join : &create, chptr,
187                  (badop || IsModelessChannel(name)) ?
188                  CHFL_DEOPPED : CHFL_CHANOP);
189   }
190
191   joinbuf_flush(&join); /* flush out the joins and creates */
192   joinbuf_flush(&create);
193
194   return 0;
195 }