Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_settime.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_settime.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 "client.h"
85 #include "hash.h"
86 #include "ircd.h"
87 #include "ircd_features.h"
88 #include "ircd_reply.h"
89 #include "ircd_snprintf.h"
90 #include "ircd_string.h"
91 #include "list.h"
92 #include "msg.h"
93 #include "numeric.h"
94 #include "numnicks.h"
95 #include "s_user.h"
96 #include "send.h"
97 #include "struct.h"
98
99 #include <assert.h>
100 #include <stdlib.h>
101
102 /*
103  * ms_settime - server message handler
104  *
105  * parv[0] = sender prefix
106  * parv[1] = new time
107  * parv[2] = server name (Only used when sptr is an Oper).
108  */
109 int ms_settime(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
110 {
111   time_t t;
112   long dt;
113   static char tbuf[11];
114   struct DLink *lp;
115
116   if (parc < 2) /* verify argument count */
117     return need_more_params(sptr, "SETTIME");
118
119   t = atoi(parv[1]); /* convert time and compute delta */
120   dt = TStime() - t;
121
122   /* verify value */
123   if (t < OLDEST_TS || dt < -9000000)
124   {
125     if (IsServer(sptr)) /* protocol violation if it's from a server */
126       protocol_violation(sptr, "SETTIME: Bad value (%Tu, delta %l)", t, dt);
127     else
128       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :SETTIME: Bad value (%Tu, "
129                     "delta %l)", sptr, t, dt);
130       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :SETTIME: Bad value", sptr);
131     return 0;
132   }
133
134   /* reset time... */
135   if (feature_bool(FEAT_RELIABLE_CLOCK))
136   {
137     ircd_snprintf(0, tbuf, sizeof(tbuf), "%Tu", TStime());
138     parv[1] = tbuf;
139   }
140
141   if (BadPtr(parv[2])) /* spam the network */
142   {
143     for (lp = cli_serv(&me)->down; lp; lp = lp->next)
144       if (cptr != lp->value.cptr)
145         sendcmdto_prio_one(sptr, CMD_SETTIME, lp->value.cptr, "%s", parv[1]);
146   }
147   else
148   {
149     if (hunt_server_prio_cmd(sptr, CMD_SETTIME, cptr, 1, "%s %C", 2, parc,
150                              parv) != HUNTED_ISME)
151     {
152       /* If the destination was *not* me, but I'm RELIABLE_CLOCK and the
153        * delta is more than 30 seconds off, bounce back a corrected
154        * SETTIME
155        */
156       if (feature_bool(FEAT_RELIABLE_CLOCK) && (dt > 30 || dt < -30))
157         sendcmdto_prio_one(&me, CMD_SETTIME, cptr, "%s %C", parv[1], cptr);
158       return 0;
159     }
160   }
161
162   if (feature_bool(FEAT_RELIABLE_CLOCK))
163   {
164     /* don't apply settime--reliable */
165     if ((dt > 600) || (dt < -600))
166       sendcmdto_serv_butone(&me, CMD_DESYNCH, 0, ":Bad SETTIME from %s: %Tu "
167                             "(delta %l)", cli_name(sptr), t, dt);
168     /* Let user know we're ignoring him */
169     if (IsUser(sptr))
170     {
171       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :clock is not set %ld "
172                     "seconds %s : RELIABLE_CLOCK is defined", sptr,
173                     (dt < 0) ? -dt : dt, (dt < 0) ? "forwards" : "backwards");
174     }
175   }
176   else /* tell opers about time change */
177   {
178     sendto_opmask_butone(0, SNO_OLDSNO, "SETTIME from %s, clock is set %ld "
179                          "seconds %s", cli_name(sptr), (dt < 0) ? -dt : dt,
180                          (dt < 0) ? "forwards" : "backwards");
181     /* Apply time change... */
182     TSoffset -= dt;
183     /* Let the issuing user know what we did... */
184     if (IsUser(sptr))
185     {
186       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :clock is set %ld seconds %s",
187                     sptr, (dt < 0) ? -dt : dt,
188                     (dt < 0) ? "forwards" : "backwards");
189     }
190   }
191
192   return 0;
193 }
194
195 /*
196  * mo_settime - oper message handler
197  *
198  * parv[0] = sender prefix
199  * parv[1] = new time
200  * parv[2] = servername (Only used when sptr is an Oper).
201  */
202 int mo_settime(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
203 {
204   time_t t;
205   long dt;
206   static char tbuf[11];
207
208   /* Must be a global oper */
209   if (!IsOper(sptr))
210     return send_reply(sptr, ERR_NOPRIVILEGES);
211
212   if (parc < 2) /* verify argument count */
213     return need_more_params(sptr, "SETTIME");
214
215   if (parc == 2 && MyUser(sptr)) /* default to me */
216     parv[parc++] = cli_name(&me);
217
218   t = atoi(parv[1]); /* convert the time */
219
220   /* If we're reliable_clock or if the oper specified a 0 time, use current */
221   if (!t || feature_bool(FEAT_RELIABLE_CLOCK))
222   {
223     t = TStime();
224     ircd_snprintf(0, tbuf, sizeof(tbuf), "%Tu", TStime());
225     parv[1] = tbuf;
226   }
227
228   dt = TStime() - t; /* calculate the delta */
229
230   if (t < OLDEST_TS || dt < -9000000) /* verify value */
231   {
232     sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :SETTIME: Bad value", sptr);
233     return 0;
234   }
235
236   /* OK, send the message off to its destination */
237   if (hunt_server_prio_cmd(sptr, CMD_SETTIME, cptr, 1, "%s %C", 2, parc,
238                            parv) != HUNTED_ISME)
239     return 0;
240
241   if (feature_bool(FEAT_RELIABLE_CLOCK)) /* don't apply settime--reliable */
242   {
243     if ((dt > 600) || (dt < -600))
244       sendcmdto_serv_butone(&me, CMD_DESYNCH, 0, ":Bad SETTIME from %s: %Tu "
245                             "(delta %l)", cli_name(sptr), t, dt);
246     if (IsUser(sptr)) /* Let user know we're ignoring him */
247       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :clock is not set %ld seconds "
248                     "%s: RELIABLE_CLOCK is defined", sptr, (dt < 0) ? -dt : dt,
249                     (dt < 0) ? "forward" : "backward");
250   }
251   else /* tell opers about time change */
252   {
253     sendto_opmask_butone(0, SNO_OLDSNO, "SETTIME from %s, clock is set %ld "
254                          "seconds %s", cli_name(sptr), (dt < 0) ? -dt : dt,
255                          (dt < 0) ? "forwards" : "backwards");
256     TSoffset -= dt; /* apply time change */
257     if (IsUser(sptr)) /* let user know what we did */
258       sendcmdto_one(&me, CMD_NOTICE, sptr, "%C :clock is set %ld seconds %s",
259                     sptr, (dt < 0) ? -dt : dt,
260                     (dt < 0) ? "forwards" : "backwards");
261   }
262
263   return 0;
264 }