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 #include "config.h"
83
84 #include "channel.h"
85 #include "client.h"
86 #include "hash.h"
87 #include "ircd.h"
88 #include "ircd_reply.h"
89 #include "ircd_string.h"
90 #include "msg.h"
91 #include "numeric.h"
92 #include "numnicks.h"
93 #include "s_debug.h"
94 #include "s_misc.h"
95 #include "s_user.h"
96 #include "send.h"
97
98 #include <assert.h>
99 #include <stdlib.h>
100 #include <string.h>
101
102 /*
103  * ms_create - server message handler
104  */
105 int ms_create(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
106 {
107   time_t chanTS; /* channel creation time */
108   char *p; /* strtok state */
109   char *name; /* channel name */
110   struct Channel *chptr; /* channel */
111   struct JoinBuf join; /* join and create buffers */
112   struct JoinBuf create;
113   struct ModeBuf mbuf; /* a mode buffer */
114   int badop; /* a flag */
115
116   if (IsServer(sptr))
117     return protocol_violation(sptr,"%s tried to CREATE a channel", cli_name(sptr));
118
119   /* sanity checks: Only accept CREATE messages from servers */
120   if (parc < 3 || *parv[2] == '\0')
121     return need_more_params(sptr,"CREATE");
122
123   chanTS = atoi(parv[2]);
124
125   joinbuf_init(&join, sptr, cptr, JOINBUF_TYPE_JOIN, 0, 0);
126   joinbuf_init(&create, sptr, cptr, JOINBUF_TYPE_CREATE, 0, chanTS);
127
128   /* A create that didn't appear during a burst has that servers idea of
129    * the current time.  Use it for lag calculations.
130    */
131   if (!IsBurstOrBurstAck(sptr) && 0 != chanTS &&
132       MAGIC_REMOTE_JOIN_TS != chanTS)
133     cli_serv(cli_user(sptr)->server)->lag = TStime() - chanTS;
134
135   /* If this server is >5 minutes fast, squit it */
136   if (TStime() - chanTS<-5*60*60)
137         return exit_client(sptr, sptr, &me, "Timestamp Drift/Bogus TS");
138
139   /* For each channel in the comma seperated list: */
140   for (name = ircd_strtok(&p, parv[1], ","); name;
141        name = ircd_strtok(&p, 0, ",")) {
142     badop = 0;
143
144     if (IsLocalChannel(name))
145       continue;
146
147     if ((chptr = FindChannel(name))) {
148       name = chptr->chname;
149
150       /* Check if we need to bounce a mode */
151       if (TStime() - chanTS > TS_LAG_TIME ||
152           (chptr->creationtime && chanTS > chptr->creationtime &&
153            chptr->creationtime != MAGIC_REMOTE_JOIN_TS)) {
154         modebuf_init(&mbuf, sptr, cptr, chptr,
155                      (MODEBUF_DEST_SERVER |  /* Send mode to server */
156                       MODEBUF_DEST_HACK2  |  /* Send a HACK(2) message */
157                       MODEBUF_DEST_BOUNCE)); /* And bounce the mode */
158
159         modebuf_mode_client(&mbuf, MODE_ADD | MODE_CHANOP, sptr);
160
161         modebuf_flush(&mbuf);
162
163         badop = 1;
164       }
165     } else                        /* Channel doesn't exist: create it */
166       chptr = get_channel(sptr, name, CGT_CREATE);
167
168     if (!badop) /* Set/correct TS */
169       chptr->creationtime = chanTS;
170
171     joinbuf_join(badop ? &join : &create, chptr,
172                  (badop || IsModelessChannel(name)) ?
173                  CHFL_DEOPPED : CHFL_CHANOP);
174   }
175
176   joinbuf_flush(&join); /* flush out the joins and creates */
177   joinbuf_flush(&create);
178
179   return 0;
180 }