32423876f512793b9e4a86a15d47fb96a3d6f08e
[ircu2.10.12-pk.git] / ChangeLog
1 2001-08-31  Kevin L Mitchell  <klmitch@mit.edu>
2
3         * ircd/channel.c: use "%u" to format limit arguments; use
4         strtoul() to process limit arguments in a /mode command--note:
5         most clients seem to truncate the integer, probably because
6         they're using atoi, and perhaps signed ints
7
8 2001-08-17  Kevin L Mitchell  <klmitch@mit.edu>
9
10         * ircd/numnicks.c: include stdlib.h for exit()
11
12         * ircd/ircd_log.c: include stdlib.h for exit()
13
14         * ircd/ircd_events.c: include stdlib.h for exit()
15
16         * ircd/s_stats.c: remove description of /stats v, since it's gone
17
18         * ircd/m_wallops.c (mo_wallops): add "*" to the beginning of
19         /wallops to distinguish wallops from wallusers
20
21         * ircd/m_error.c (mr_error): ignore ERROR from clients that aren't
22         in the "handshake" or "connecting" states--I think the latter will
23         never happen, but...
24
25         * doc/Authors: apply delete's Authors patch
26
27         * RELEASE.NOTES: rewrite RELEASE.NOTES, basing it a little on
28         Braden's version
29
30         * README: rewrite README
31
32 2001-07-31  Kevin L. Mitchell  <klmitch@mit.edu>
33
34         * ircd/s_serv.c (server_estab): remove unused variable split
35
36         * ircd/parse.c: add mr_error to the parse table
37
38         * ircd/m_error.c (mr_error): add mr_error() to handle ERRORs from
39         unregistered connections--if IsUserPort() is true, the ERROR is
40         ignored, otherwise, the message is saved
41
42 2001-07-28  Kevin L. Mitchell  <klmitch@mit.edu>
43
44         * ircd/m_kill.c (ms_kill): another minor typo *sigh*
45
46         * ircd/s_user.c (send_supported): oops, minor typo...
47
48         * ircd/s_user.c: implement send_supported() to send two ISUPPORT
49         messages containing our feature buffers; make register_user() use
50         send_supported()
51
52         * ircd/s_misc.c (exit_client): make sure not to give away a remote
53         server in the ERROR message sent to the client; if the killer is a
54         server, we substitute our name in its place
55
56         * ircd/m_version.c (m_version): use send_supported() to send the
57         ISUPPORT values to the user
58
59         * ircd/m_nick.c: shave nick collision kills here a bit, too, for
60         the same reasons as for m_kill.c
61
62         * ircd/m_kill.c: shave kills a bit so that the results look
63         exactly the same no matter where you are; if we didn't do this, it
64         would be possible to map the network by looking at the differences
65         between kills originating under various circumstances
66
67         * include/supported.h: split the features into two, so as to not
68         bust the parameter count when sending the features list
69
70         * include/s_user.h: declare new send_supported() function to send
71         the ISUPPORT information
72
73 2001-07-27  Kevin L. Mitchell  <klmitch@mit.edu>
74
75         * ircd/s_bsd.c: disable IP (*not* TCP) options to prevent
76         source-routed spoofing attacks; this is only available under
77         u2.10.11, so don't even bother, since no one but testers are using
78         the source base
79
80 2001-07-25  Kevin L. Mitchell  <klmitch@mit.edu>
81
82         * include/ircd_policy.h: enable HEAD_IN_SAND_REMOTE by default
83
84         * ircd/s_err.c: put in a . for reporting link version on /trace,
85         to match what /version does
86
87 2001-07-21  Kevin L. Mitchell  <klmitch@mit.edu>
88
89         * ircd/s_misc.c (exit_client): servers don't understand what the
90         numeric nick ERROR is supposed to mean, so they ignore error
91         messages, resulting in not knowing why we were rejected; use
92         sendcmdto_one for servers and sendrawto_one for clients
93
94 2001-07-17  Kevin L. Mitchell  <klmitch@mit.edu>
95
96         * ircd/m_burst.c (ms_burst): in the case of a modeless channel and
97         a nick collide, a bare BURST may be propagated; adjust the
98         enforced parameter count to accept the bare BURST
99
100 2001-07-12  Kevin L. Mitchell  <klmitch@mit.edu>
101
102         * ircd/s_bsd.c: mark a client as having been IP checked
103
104         * ircd/IPcheck.c (ip_registry_check_remote): remove unneeded
105         second call to SetIPChecked()
106
107 2001-07-11  Kevin L. Mitchell  <klmitch@mit.edu>
108
109         * ircd/engine_poll.c: deal with POLLHUP properly (hopefully)
110
111         * ircd/engine_devpoll.c: deal with POLLHUP properly (hopefully)
112
113 2001-07-09  Kevin L. Mitchell  <klmitch@mit.edu>
114
115         * ircd/os_bsd.c (os_get_rusage): move buf into the two ifdef'd
116         sections so that if neither is used, the declaration of buf will
117         not elicit an "unused variable" warning under NetBSD
118
119         * ircd/m_map.c: include string.h to declare strcpy (fix warnings
120         on alpha)
121
122         * ircd/m_away.c: include string.h to declare strcpy/strlen (fix
123         warnings on alpha)
124
125         * ircd/ircd_log.c: include string.h to declare strcpy/strlen (fix
126         warnings on alpha)
127
128         * ircd/client.c: include string.h to declare memset (fix warnings
129         on alpha)
130
131         * ircd/channel.c: remove unused functions next_overlapped_ban,
132         del_banid, and is_deopped (fix warnings under -O1)
133
134         * ircd/IPcheck.c: include string.h to declare memset/memcpy (fix
135         warnings on alpha)
136
137 2001-06-29  Kevin L. Mitchell  <klmitch@mit.edu>
138
139         * ircd/s_user.c (set_user_mode): clear the snomask if the user
140         isn't supposed to receive server notices anymore
141
142         * ircd/ircd_features.c: change CONFIG_OPERCMDS to default to FALSE
143
144         * configure.in: use AC_MSG_CHECKING/AC_MSG_RESULT when checking
145         installation prefix; default devpoll and kqueue to on (they get
146         turned off if the required headers aren't present)
147
148         * ircd/whocmds.c (do_who): use ircd_snprintf() instead of
149         sprintf_irc(); it's a bit hackish, but it'll do for now
150
151         * ircd/support.c: remove unused #include
152
153         * ircd/send.c: remove unused #include
154
155         * ircd/s_user.c: use ircd_snprintf() instead of sprintf_irc()
156
157         * ircd/s_serv.c: remove unused #include
158
159         * ircd/s_misc.c: use ircd_snprintf() and friends instead of
160         sprintf_irc() and friends
161
162         * ircd/s_err.c: moved atoi_tab[] from ircd/sprintf_irc.c to
163         ircd/s_err.c, which is the only other file to refer to it
164
165         * ircd/s_conf.c (conf_add_deny): use ircd_snprintf() instead of
166         sprintf_irc()
167
168         * ircd/s_bsd.c (connect_server): use ircd_snprintf() instead of
169         sprintf_irc()
170
171         * ircd/s_auth.c: use ircd_snprintf() instead of sprintf_irc()
172
173         * ircd/res.c: use ircd_snprintf() instead of sprintf_irc()
174
175         * ircd/m_version.c: use ircd_snprintf() instead of sprintf_irc()
176
177         * ircd/m_kill.c: use ircd_snprintf() instead of sprintf_irc()
178
179         * ircd/listener.c: use ircd_snprintf() instead of sprintf_irc()
180
181         * ircd/gline.c: use ircd_snprintf() instead of sprintf_irc()
182
183         * ircd/channel.c: don't include sprintf_irc.h; use ircd_snprintf()
184         instead of sprintf_irc()
185
186         * ircd/Makefile.in: remove sprintf_irc.c from sources list; run
187         make depend
188
189         * include/ircd_string.h: remove declaration of sprintf_irc() (what
190         was it doing here anyway?)
191
192         * include/sprintf_irc.h: removed unneeded source file
193
194         * ircd/sprintf_irc.c: removed unneeded source file
195
196         * ircd/s_debug.c (count_memory): remove some dead code
197
198         * ircd/s_auth.c: remove some dead code
199
200         * ircd/res.c (update_list): remove some dead code
201
202         * ircd/m_whowas.c: remove some dead code
203
204         * ircd/m_whois.c: remove some dead code
205
206         * ircd/m_who.c: remove some dead code
207
208         * ircd/m_wallusers.c: remove some dead code
209
210         * ircd/m_wallops.c: remove some dead code
211
212         * ircd/m_wallchops.c: remove some dead code
213
214         * ircd/m_version.c: remove some dead code
215
216         * ircd/m_userip.c: remove some dead code
217
218         * ircd/m_userhost.c: remove some dead code
219
220         * ircd/m_uping.c: remove some dead code
221
222         * ircd/m_trace.c: remove some dead code
223
224         * ircd/m_topic.c: remove some dead code
225
226         * ircd/m_tmpl.c: remove some dead code
227
228         * ircd/m_time.c: remove some dead code
229
230         * ircd/m_squit.c: remove some dead code
231
232         * ircd/m_silence.c: remove some dead code
233
234         * ircd/m_settime.c: remove some dead code
235
236         * ircd/m_set.c: remove some dead code
237
238         * ircd/m_server.c: remove some dead code
239
240         * ircd/m_rpong.c: remove some dead code
241
242         * ircd/m_rping.c: remove some dead code
243
244         * ircd/m_restart.c: remove some dead code
245
246         * ircd/m_reset.c: remove some dead code
247
248         * ircd/m_rehash.c: remove some dead code
249
250         * ircd/m_quit.c: remove some dead code
251
252         * ircd/m_proto.c: remove some dead code
253
254         * ircd/m_privs.c: remove some dead code
255
256         * ircd/m_privmsg.c: remove some dead code
257
258         * ircd/m_pong.c: remove some dead code
259
260         * ircd/m_ping.c: remove some dead code
261
262         * ircd/m_pass.c: remove some dead code
263
264         * ircd/m_part.c: remove some dead code
265
266         * ircd/m_opmode.c: remove some dead code
267
268         * ircd/m_oper.c: remove some dead code
269
270         * ircd/m_notice.c: remove some dead code
271
272         * ircd/m_nick.c: remove some dead code
273
274         * ircd/m_map.c: remove some dead code
275
276         * ircd/m_lusers.c: remove some dead code
277
278         * ircd/m_list.c: remove some dead code
279
280         * ircd/m_links.c: remove some dead code
281
282         * ircd/m_kill.c: remove some dead code
283
284         * ircd/m_kick.c: remove some dead code
285
286         * ircd/m_jupe.c: remove some dead code
287
288         * ircd/m_join.c: remove some dead code
289
290         * ircd/m_ison.c: remove some dead code
291
292         * ircd/m_invite.c: remove some dead code
293
294         * ircd/m_info.c: remove some dead code
295
296         * ircd/m_help.c: remove some dead code
297
298         * ircd/m_gline.c: remove some dead code
299
300         * ircd/m_get.c: remove some dead code
301
302         * ircd/m_error.c: remove some dead code
303
304         * ircd/m_endburst.c: remove some dead code
305
306         * ircd/m_die.c: remove some dead code
307
308         * ircd/m_desynch.c: remove some dead code
309
310         * ircd/m_destruct.c: remove some dead code
311
312         * ircd/m_defaults.c: remove some dead code
313
314         * ircd/m_create.c: remove some dead code, along with an #if 1
315
316         * ircd/m_cprivmsg.c: remove some dead code
317
318         * ircd/m_connect.c: remove some dead code
319
320         * ircd/m_close.c: remove some dead code
321
322         * ircd/m_clearmode.c: remove some dead code
323
324         * ircd/m_burst.c: remove some dead code
325
326         * ircd/m_away.c: remove some dead code
327
328         * ircd/m_admin.c: remove some dead code
329
330         * ircd/listener.c (accept_connection): remove some dead code
331
332         * ircd/ircd_reply.c (need_more_params): remove some dead code
333
334         * ircd/channel.c (add_banid): remove some dead code
335
336         * include/support.h: remove some dead code
337
338         * include/querycmds.h: remove some dead code
339
340         * doc/readme.chroot: document how to do chroot operation
341
342 2001-06-28  Kevin L. Mitchell  <klmitch@mit.edu>
343
344         * ircd/Makefile.in: tune for VPATH builds/installs; add a rule to
345         force bin directory to be created if necessary prior to
346         installation; run make depend
347
348         * doc/Makefile.in (install): tune for VPATH installs by cd'ing to
349         the ${srcdir}
350
351         * Makefile.in: tune to detect Makefile.in changes in
352         subdirectories and to create installation directory indicated by
353         ${prefix}
354
355         * ircd/whocmds.c (count_users): routine to count the number of
356         users matching a given user@host mask
357
358         * ircd/s_err.c: add error messages for ERR_LONGMASK,
359         ERR_TOOMANYUSERS, and ERR_MASKTOOWIDE
360
361         * ircd/m_gline.c: look for and advance past '!' flag on G-lines
362         from operators; only set GLINE_OPERFORCE flag if oper has the
363         PRIV_WIDE_GLINE privilege
364
365         * ircd/ircd_features.c: add GLINEMAXUSERCOUNT, which is the
366         maximum number of users a G-line can impact before it has to be
367         forced; OPER_WIDE_GLINE, to allow operators to use ! to force a
368         wide G-line to be set; and LOCOP_WIDE_GLINE, to allow local
369         operators to use ! to force a wide G-line to be set
370
371         * ircd/gline.c: make make_gline() be called with separate user and
372         host arguments, and not call canon_userhost() directly; implement
373         gline_checkmask() to verify that a host mask is acceptable; move
374         BADCHAN check up in gline_add(), and check passed-in mask under
375         certain circumstances for acceptability; fix call to
376         sendto_opmask_butone() to handle separation of userhost into user
377         and host in gline_add(); update call to make_gline()
378
379         * ircd/client.c: use FEAT_OPER_WIDE_GLINE and
380         FEAT_LOCOP_WIDE_GLINE to set PRIV_WIDE_GLINE for an operator; add
381         PRIV_WIDE_GLINE to privtab[] for client_report_privs()
382
383         * include/whocmds.h (count_users): declare routine to count users
384         matching a given user@host mask
385
386         * include/numeric.h: added three new error returns: ERR_LONGMASK
387         -- mask can't be formatted into a buffer; ERR_TOOMANYUSERS -- too
388         many users would be impacted by the mask; ERR_MASKTOOWIDE -- mask
389         contains wildcards in the wrong places
390
391         * include/ircd_features.h: add FEAT_GLINEMAXUSERCOUNT,
392         FEAT_OPER_WIDE_GLINE, and FEAT_LOCOP_WIDE_GLINE
393
394         * include/gline.h (GLINE_OPERFORCE): provides a way for m_gline()
395         to signal to gline_add() that the operator attempted to force the
396         G-line to be set
397
398         * include/client.h (PRIV_WIDE_GLINE): new privilege for operators
399
400         * doc/readme.gline: update to document new "!" prefix to a G-line
401         user@host mask
402
403         * doc/readme.features: document GLINEMAXUSERCOUNT,
404         OPER_WIDE_GLINE, and LOCOP_WIDE_GLINE
405
406         * doc/example.conf: update to mention new features along with
407         their defaults
408
409 2001-06-27  Kevin L. Mitchell  <klmitch@mit.edu>
410
411         * doc/example.conf: updated example.conf from Braden
412         <dbtem@yahoo.com>
413
414         * include/supported.h: forward-port from pl15
415
416 2001-06-25  Kevin L. Mitchell  <klmitch@mit.edu>
417
418         * ircd/whocmds.c: include ircd_policy.h and implement
419         HEAD_IN_SAND_WHO_OPCOUNT--forward-port from pl15
420
421         * ircd/m_whois.c: forward-port of the idle-time hiding code from
422         pl15; this also required passing parc into do_whois(), which also
423         meant passing parc into do_wilds()--*sigh*
424
425         * include/ircd_policy.h: add a couple more HEAD_IN_SAND
426         #define's--WHOIS_IDLETIME and WHO_HOPCOUNT
427
428 2001-06-22  Kevin L. Mitchell  <klmitch@mit.edu>
429
430         * tools/wrapper.c: add a wrapper program that can be used to
431         adjust file descriptor limits and root directories; program must
432         be run as root--NOT SETUID!--and given appropriate -u arguments
433
434         * doc/readme.log: documentation of how to configure logging
435
436         * doc/readme.features: documentation of each feature (except for
437         logging)
438
439 2001-06-21  Kevin L. Mitchell  <klmitch@mit.edu>
440
441         * Makefile.in (config): add a deprecation notice with a pointer to
442         tools/transition
443
444         * tools/transition: shell script to convert old compile-time
445         options into new compile-time options and appropriate F-lines
446
447         * tools/mkchroot: shell-script to prepare the chroot area by
448         copying over all the necessary libraries so they can be found
449
450 2001-06-20  Kevin L. Mitchell  <klmitch@mit.edu>
451
452         * INSTALL: partial update of INSTALL for u2.10.11 release...
453
454 2001-06-14  Kevin L. Mitchell  <klmitch@mit.edu>
455
456         * ircd/table_gen.c (makeTables): finally got tired of the
457         "overflow in implicit conversion" warning, so just got rid of it
458         by explicitly casting UCHAR_MAX to a (default) char; diffs show no
459         differences in the tables generated
460
461 2001-06-11  Kevin L. Mitchell  <klmitch@mit.edu>
462
463         * ircd/send.c (sendcmdto_match_butone): don't let the server crash
464         if a client is in the STAT_CONNECTING status
465
466 2001-06-10  Kevin L. Mitchell  <klmitch@mit.edu>
467
468         * ircd/send.c: remove unused vsendcmdto_one(), consolidating it
469         into sendcmdto_one(); define new sendcmdto_prio_one(), which
470         places the message into the priority queue
471
472         * ircd/s_user.c (hunt_server_prio_cmd): definition of
473         hunt_server_prio_cmd(), which simply calls sendcmdto_prio_one()
474         instead of sendcmdto_one()
475
476         * ircd/m_settime.c: use sendcmdto_prio_one() and
477         hunt_server_prio_cmd() to send SETTIME
478
479         * ircd/m_server.c: use sendcmdto_prio_one() to send SETTIME
480
481         * include/send.h: removed declaration for unused vsendcmdto_one();
482         added a declaration for sendcmdto_prio_one()
483
484         * include/s_user.h: declare hunt_server_prio_cmd(), which calls
485         sendcmdto_prio_one()
486
487         * ircd/send.c (sendcmdto_flag_butone): oops; /wallops should be
488         put in the server's priority queue, too...
489
490         * ircd/ircd.c: don't check LPATH for accessibility at all
491
492 2001-06-08  Kevin L. Mitchell  <klmitch@mit.edu>
493
494         * ircd/s_serv.c (server_estab): send a +h flag in our SERVER
495         command if we're configured as a hub; send individual server flags
496         in SERVER commands
497
498         * ircd/s_bsd.c (completed_connection): send a +h flag in our
499         SERVER command if we're configured as a hub
500
501         * ircd/m_server.c: implement parv[7] as a mode-like string; +h
502         sets the FLAGS_HUB flag for a server; +s sets the FLAGS_SERVICE
503         flag for a server; +hs sets both flags; also modify CMD_SERVER
504         format string to send the flags
505
506         * include/client.h: define two new flags, FLAGS_HUB and
507         FLAGS_SERVICE to mark services and hubs as such; define testing
508         macros, setting macros
509
510         * ircd/s_user.c: remove deprecated struct Gline* argument to
511         register_user(); remove GLINE rebroadcast; do not send GLINE
512         acknowledgement parameter to NICK; do not look for GLINE
513         acknowledgement parameter to NICK while parsing
514
515         * ircd/s_serv.c (server_estab): remove deprecated struct Jupe*
516         argument to server_estab(); do not send JUPE/GLINE acknowledgement
517         parameters for SERVER or NICK
518
519         * ircd/m_user.c (m_user): remove deprecated argument to
520         register_user()
521
522         * ircd/m_server.c: remove deprecated argument to server_estab();
523         remove documentation comment regarding JUPE acknowledgement
524         parameter to SERVER; remove JUPE rebroadcast
525
526         * ircd/m_pong.c (mr_pong): remove deprecated argument to
527         register_user()
528
529         * ircd/m_nick.c: remove documentation comment regarding GLINE
530         acknowledgement parameter to NICK
531
532         * ircd/jupe.c: use user's real name in JUPE server notices if
533         HEAD_IN_SAND_SNOTICES is defined
534
535         * ircd/ircd.c: remove deprecated chroot() code; remove deprecated
536         setuid code; correct ancient DEBUG vs DEBUGMODE typo
537
538         * ircd/gline.c: use user's real name in GLINE server notices if
539         HEAD_IN_SAND_SNOTICES is defined
540
541         * ircd/channel.c (modebuf_flush_int): make apparent source be
542         local server, not oper's server; use user's real name in hack
543         notices and DESYNC notices if HEAD_IN_SAND_SNOTICES is defined
544
545         * include/s_user.h: remove struct Gline pre-declaration; remove
546         deprecated struct Gline argument from register_user()
547
548         * include/s_serv.h: remove struct Jupe pre-declaration; remove
549         deprecated struct Jupe argument from server_estab()
550
551 2001-06-07  Kevin L. Mitchell  <klmitch@mit.edu>
552
553         * ircd/s_stats.c (hunt_stats): forward-port from pl15 of all the
554         changes required to control remote stats
555
556         * ircd/s_numeric.c (do_numeric): rewrite numeric origins if
557         recipient is not an operator and HEAD_IN_SAND_REWRITE is defined
558         [forward-port from pl15]
559
560         * ircd/m_whowas.c (m_whowas): report server name only if requester
561         is an operator [forward-port from pl15]
562
563         * ircd/m_whois.c (do_whois): /whois <mynick> now correctly reports
564         my server; if HEAD_IN_SAND_REMOTE is 1, ignore the middle argument
565         and obtain the report from the user's server [forward-port from
566         pl15]
567
568         * ircd/m_who.c: add missing include for ircd_policy.h
569         [forward-port from pl15]
570
571         * ircd/m_version.c (m_version): require oper access for remote
572         /version if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
573
574         * ircd/m_time.c (m_time): require oper access for remote /time if
575         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
576
577         * ircd/m_stats.c: pass extra argument to hunt_stats(); correct
578         missing semicolon [forward-port from pl15]
579
580         * ircd/m_nick.c (ms_nick): hide the origin of certain collision
581         kills [forward-port from pl15]
582
583         * ircd/m_motd.c (m_motd): require oper access for remote /motd if
584         HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
585
586         * ircd/m_lusers.c (m_lusers): require oper access for remote
587         /lusers if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
588
589         * ircd/m_burst.c (ms_burst): server-added bans are stored using
590         local server name, to hide remote server names; modes also are to
591         originate from the local server [forward-port from pl15]
592
593         * ircd/m_admin.c (m_admin): require oper access for remote /admin
594         if HEAD_IN_SAND_REMOTE is 1 [forward-port from pl15]
595
596         * ircd/channel.c (add_banid): if a server is adding a ban, use my
597         server name to hide the remote server's name [forward-port from
598         pl15]
599
600         * ircd/Makefile.in: ran make depend
601
602         * include/s_stats.h: hunt_stats() has to have an extra argument to
603         support the forward-port from pl15
604
605         * include/ircd_policy.h: #define HEAD_IN_SAND_STATS_P; add
606         HEAD_IN_SAND_{BANWHO,REWRITE,REMOTE} [forward-port from pl15]
607
608         * ircd/engine_poll.c (engine_loop): remove bogus assert that I
609         forgot to check in the events branch
610
611 2001-06-06  Kevin L. Mitchell  <klmitch@mit.edu>
612
613         * ircd/res.c (init_resolver): don't start DNS expires with a 0
614         relative timeout--if the server starts slow, timeouts could be
615         messy...there's probably a better solution, but this'll do for now
616
617         * ircd/os_solaris.c: _XOPEN_SOURCE doesn't get along with Solaris
618         headers very well; include stropts.h; define an os_set_tos()
619
620         * ircd/os_generic.c (os_set_tos): added an os_set_tos() for
621         os_generic.c
622
623         * ircd/ircd.c: if there are no C-lines, we don't want to have a
624         timer that expires at the absolute time of 0--it kinda blocks all
625         the other timers!
626
627         * ircd/engine_devpoll.c: some includes for open(); declare errcode
628         and codesize in engine_loop()
629
630         * ircd/list.c (free_client): remove bogus check on timer active
631         flag
632
633         * ircd/s_auth.c: pull out destruction code in
634         auth_timeout_request() into an externally-visible
635         destroy_auth_request(); manage cli_auth pointer in client
636         structure; use it for an extra assertion check
637
638         * ircd/list.c: include s_auth.h for destroy_auth_request(); add
639         debugging notices to show flow when deallocating
640         connections/clients; call destroy_auth_request() when free'ing a
641         client that has an auth outstanding; don't free the connection if
642         the process timer is unmarked but still active
643
644         * ircd/ircd_events.c: set GEN_ACTIVE when initializing a generator
645         and reset it before calling the event handler for an ET_DESTROY
646         event
647
648         * include/s_auth.h (destroy_auth_request): declare
649         destroy_auth_request(), which can be used to destroy an
650         outstanding auth request if a client socket goes away before the
651         auth exchange is completed
652
653         * include/ircd_events.h: add an active flag to keep track of
654         whether or not particular generators are active, for the
655         convenience of functions using the API
656
657         * include/client.h: add a pointer for auth requests to struct
658         Connection so we can kill outstanding auth requests if a client
659         socket closes unexpectedly
660
661         * ircd/s_bsd.c: cli_connect() could become 0 during the course of
662         the sock or timer callback; take that into account in the assert
663
664         * ircd/list.c: add magic number checking and setting--magic
665         numbers are zero'd on frees to detect double-frees; add back
666         setting of cli_from() to 0 to break the back-link from the struct
667         Connection (duh)
668
669         * ircd/ircd.c: set me's magic number correctly
670
671         * include/client.h: define magic numbers and accessor/verifier
672         macros
673
674         * ircd/list.c: assert that dealloc_client() is called with
675         cli_connect(cptr) == 0; set cli_connect(cptr) to 0 before calling
676         dealloc_client(); don't mess with cli_from(cptr)
677
678         * ircd/s_bsd.c: only attempt to dealloc a connection if the
679         associated client has already been destroyed, or at least delinked
680
681 2001-06-05  Kevin L. Mitchell  <klmitch@mit.edu>
682
683         * ircd/list.c (free_client): only try to delete the socket when
684         the fd hasn't already been closed, avoiding a double-free
685
686         * ircd/list.c (free_connection): make sure the client is really
687         gone before doing away with the connection
688
689         * ircd/s_bsd.c: record that socket has been added in con_freeflag
690         field; queue a socket_del() as soon as the socket is close()'d;
691         use con_freeflag & FREEFLAG_TIMER instead of con_timer; clear
692         FREEFLAG_SOCKET on ET_DESTROY event in client_sock_callback(),
693         then dealloc the connection if safe; mark socket as dead when
694         there's a read error or EOF; clear FREEFLAG_TIMER flag upon entry
695         to client_timer_callback(); dealloc connection if safe upon
696         ET_DESTROY event in client_timer_callback()
697
698         * ircd/list.c: use con_freeflag instead of con_timer; only dealloc
699         the connection if both socket and timer have been destroyed;
700         destroy both socket and timer explicitly and carefully
701
702         * include/client.h: replace the con_timer field with a
703         con_freeflag field, to indicate what still needs freeing; define
704         the freeflags
705
706         * ircd/engine_select.c (engine_loop): duh...sockList[i] could
707         become 0
708
709         * ircd/engine_devpoll.c (engine_loop): duh...sockList[i] could
710         become 0
711
712         * ircd/s_bsd.c: add some extra assertions to try to track down a
713         corruption problem
714
715         * ircd/engine_select.c (engine_loop): add an extra assert to try
716         to track down a corruption problem
717
718         * ircd/engine_poll.c (engine_loop): add an extra assert to try to
719         track down a corruption problem
720
721         * ircd/engine_kqueue.c (engine_loop): add an extra assert to try
722         to track down a corruption problem
723
724         * ircd/engine_devpoll.c (engine_loop): skip slots that have become
725         empty during processing; add an extra assert to try to track down
726         a corruption problem
727
728         * ircd/engine_kqueue.c (engine_delete): make sure to zero deleted
729         entries
730
731 2001-06-04  Kevin L. Mitchell  <klmitch@mit.edu>
732
733         * ircd/s_bsd.c (client_sock_callback): client is no longer
734         blocked, so we must mark it as unblocked
735
736         * ircd/engine_select.c: add Debug() calls galore; add handling for
737         SS_NOTSOCK; use a dummy sock variable to keep things from
738         disappearing on us; correct timeout calculation; update nfds for
739         efficiency
740
741         * ircd/engine_poll.c: use new debugging level (DEBUG_ENGINE);
742         remove a spurious "if (sock)" which will always be true; update
743         nfds for efficiency
744
745         * ircd/engine_kqueue.c: add Debug() calls galore; add handling for
746         SS_NOTSOCK (just in case); correct timeout calculation
747
748         * ircd/engine_devpoll.c: add Debug() calls galore; add handling
749         for SS_NOTSOCK; correct timeout calculation; add EAGAIN handling
750
751         * include/s_debug.h (DEBUG_ENGINE): add new debugging level;
752         pretty-indent numbers
753
754         * ircd/engine_poll.c (engine_loop): break out SS_NOTSOCK
755         case--it's not a socket; the check for writability is most likely
756         not needed, but present for completeness
757
758 2001-05-24  Kevin L. Mitchell  <klmitch@mit.edu>
759
760         * ircd/s_bsd.c: add Debug messages; call read_packet() even if the
761         no newline flag is set; call read_packet() when the timer expires,
762         regardless of what's in the buffer--read_packet() should be able
763         to deal properly
764
765         * ircd/IPcheck.c (ip_registry_connect_succeeded): correct a NOTICE
766         sent to clients to include the client nickname (duh)
767
768         * ircd/ircd_events.c: don't destroy a timer if it's already marked
769         for destruction; replace a missing ! in socket_del()
770
771         * ircd/engine_poll.c (engine_loop): reference a temporary variable
772         so we don't have to worry about sockList[i] going away
773
774         * ircd/s_bsd.c (client_sock_callback): add Debug messages
775
776         * ircd/s_auth.c: add Debug messages all over the place
777
778         * ircd/ircd_events.c: add and edit some Debug messages; add a list
779         of routines to convert some of the enums and flags from numbers
780         into human-readable strings for the Debug messages
781
782         * ircd/engine_poll.c: hack some Debug messages to use the new name
783         conversion routines in ircd_events.c; add an extra assert for a
784         condition that shouldn't ever happen; apparently recv() can return
785         EAGAIN when poll() returns readable--I wonder why...
786
787         * include/ircd_events.h: declare some helper routines under
788         DEBUGMODE
789
790 2001-05-23  Kevin L. Mitchell  <klmitch@mit.edu>
791
792         * ircd/s_bsd.c (client_sock_callback): add an extra assertion
793         check
794
795         * ircd/s_auth.c: add more Debug messages
796
797         * ircd/list.c (make_client): add an extra assertion check
798
799         * ircd/ircd_events.c (socket_events): don't call the engine events
800         changer if we haven't actually made any changes to the event mask
801
802         * ircd/uping.c: add some Debug messages
803
804         * ircd/s_stats.c: document new /STATS e
805
806         * ircd/s_err.c: add RPL_STATSENGINE to report the engine name
807
808         * ircd/s_bsd.c: remove static client_timer variable; in
809         read_packet(), if there's still data in the client's recvQ after
810         parsing, add a 2 second timer (con_proc); fix the ET_DESTROY case
811         of client_sock_callback to handle destroying the timer properly;
812         rewrote client_timer_callback from scratch to be called on an
813         individual client
814
815         * ircd/m_stats.c: add /STATS e to report the engine name
816
817         * ircd/list.c: deal with con_timer field in struct Connection
818         properly; correct a core-level bug in remove_client_from_list--if
819         the client is the only one in the list, we try to update
820         GlobalClientList's cli_prev pointer--not good
821
822         * ircd/ircd.c: remove call to init_client_timer()
823
824         * ircd/engine_poll.c: made Debug messages more uniform by
825         prepending "poll:" to them all; corrected an off-by-one error that
826         caused poll_count to be 1 less than the actual count and removed
827         my work-around; added Debug messages to indicate which socket is
828         being checked and what the results are
829
830         * ircd/Makefile.in: ran a make depend
831
832         * include/s_bsd.h: remove init_client_timer(), since we're doing
833         it differently now
834
835         * include/numeric.h (RPL_STATSENGINE): a stats reply to report the
836         engine name
837
838         * include/ircd_policy.h (HEAD_IN_SAND_STATS_E): turn off /stats e
839         reports for non-opers
840
841         * include/client.h: add con_timer and con_proc fields to struct
842         Connection and define accessor macros--con_timer marks that
843         con_proc contains a valid timer, and con_proc is used to pace user
844         data
845
846         * ircd/s_bsd.c (close_connection): let free_client() destroy the
847         socket
848
849         * ircd/s_auth.c (start_auth): add a Debug call to indicate when
850         auth has begun on a client
851
852         * ircd/ircd_events.c: ensure that event_execute() is called with a
853         non-NULL event; modify event_add() macro to properly zero list
854         bits; modify gen_dequeue() to not try to clip it out of a list
855         it's already been clipped out of; change signal socket
856         initialization to use state SS_NOTSOCK; permit timeout values of
857         0 in add_timer(); add many Debug calls; change socket_del() and
858         timer_del() to always set the GEN_DESTROY flag; use GEN_MARKED in
859         timer_run() instead of GEN_DESTROY so that event_generate() will
860         pass on the events; remove the switch and replace with a simpler
861         if-then-else tree in timer_run(); don't allow destroyed sockets to
862         be destroyed again, nor their states or event masks to be changed
863
864         * ircd/ircd.c: initialize "running" to 1
865
866         * ircd/engine_poll.c: deal with SS_NOTSOCK "sockets"; add Debug
867         messages all over the place; fix a counting problem in
868         engine_add(); turn wait into a signed integer and set it to -1
869         only if timer_next() returns 0; adjust wait time to be relative;
870         don't call gen_ref_dec() if socket disappeared while we were
871         processing it
872
873         * include/ircd_events.h: the pipe for signals is not a socket, so
874         we must mark it as such--added SS_NOTSOCK for that special socket;
875         events won't be generated if GEN_DESTROY is on, so add GEN_MARKED
876         for the benefit of timer_run()
877
878         * configure.in: add --enable-pedantic and --enable-warnings to
879         turn on (and off) -Wall -pedantic in CFLAGS
880
881 2001-05-21  Kevin L. Mitchell  <klmitch@mit.edu>
882
883         * ircd/s_conf.c: change "s_addr" element accesses to "address"
884         element accesses
885
886         * include/s_conf.h: on some systems, "s_addr" is a macro; use
887         "address" instead
888
889 2001-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
890
891         * ircd/engine_kqueue.c: include ircd_alloc.h; set_or_clear returns
892         void in this file; add a missing semi-colon; declare errcode,
893         codesize
894
895         * ircd/uping.c (uping_sender_callback): it's pptr, not uping
896
897         * ircd/s_user.c (register_user): comment out spurious reference to
898         nextping
899
900         * ircd/s_serv.c (server_estab): comment out spurious reference to
901         nextping
902
903         * ircd/s_conf.c (read_configuration_file): comment out spurious
904         reference to nextping and nextconnect
905
906         * ircd/s_bsd.c: comment out some spurious references to formerly
907         global (now non-existant) variables; correct a couple of typos
908
909         * ircd/s_auth.c: pre-declare some functions referenced in the
910         callback; correct a typo
911
912         * ircd/res.c (start_resolver): pass errno value of ENFILE
913
914         * ircd/listener.c (accept_connection): you know your API is messed
915         up when...variables that shouldn't have been global crop up in
916         other files
917
918         * ircd/list.c (free_client): substitution of == for =
919
920         * ircd/ircd_signal.c: include assert.h for assertion checking;
921         check ev_data() to find out what signal generated event
922
923         * ircd/ircd_events.c: some references to the variable "timer"
924         should have been references to the variable "ptr"
925
926         * ircd/engine_select.c: it's struct fd_set, not struct fdset;
927         ev_timer(ev) is already a timer pointer; declare codesize as a
928         size_t to correct signedness issue; use timer_next(), not
929         time_next()
930
931         * ircd/engine_poll.c: ev_timer(ev) is already a timer pointer;
932         select fd out of struct pollfd in assertion checking; declare
933         errcode and codesize; use timer_next(), not time_next()
934
935         * ircd/engine_kqueue.c: ev_timer(ev) is already a timer pointer;
936         use function timer_next(), not time_next()
937
938         * ircd/engine_devpoll.c: ev_timer(ev) is already a timer pointer;
939         use function timer_next(), not time_next()
940
941         * ircd/Makefile.in (IRCD_SRC): add ircd_events.c to the list of
942         compiled sources; do make depend
943
944         * include/list.h: pre-declare struct Connection
945
946         * include/ircd_events.h (gen_ref_inc): cast to the right structure
947         name
948
949         * include/s_auth.h: duh; missing */
950
951 2001-05-10  Kevin L. Mitchell  <klmitch@mit.edu>
952
953         * ircd/send.c: update write events status after sending data or
954         accumulating data to be sent
955
956         * ircd/m_list.c (m_list): update write events status after
957         canceling a running /list
958
959         * ircd/channel.c (list_next_channels): update write events status
960         after listing a few channels
961
962         * ircd/s_bsd.c: extensive changes to update to new events model;
963         remove on_write_unblocked() and the two implementations of
964         read_message(), which have been deprecated by this change
965
966         * ircd/s_auth.c: set the socket events we're interested in for
967         clients; simplify some logic that does the connect_nonb followed
968         by the socket_add
969
970         * ircd/list.c: define free_connection() to free a connection
971         that's become freeable once the struct Socket has been
972         deallocated; fix up free_client() to take this new behavior into
973         account
974
975         * ircd/ircd.c: call init_client_timer()
976
977         * include/s_bsd.h: declare new REGISTER_ERROR_MESSAGE when unable
978         to register connect-in-progress with events system; declare
979         init_client_timer() (HACK!) to preserve rate-limiting behavior
980
981         * include/list.h: declare new free_connection()
982
983         * include/client.h: add a struct Socket to struct Connection
984
985 2001-05-09  Kevin L. Mitchell  <klmitch@mit.edu>
986
987         * ircd/ircd_signal.c: massage the handlers for SIGHUP, SIGINT, and
988         SIGTERM into event callbacks; perform the actions in the
989         callbacks, since they're not called in the context of the signal;
990         set up the signal callbacks in the event engine
991
992         * ircd/ircd_events.c (signal_callback): we're supposed to look for
993         a specific signal; don't generate an event if there is no signal
994         structure for it
995
996         * ircd/ircd.c: nuke nextconnect and nextping and replace them with
997         connect_timer and ping_timer; massage try_connections() and
998         check_pings() into timer callbacks that re-add themselves at the
999         right time; remove ircd.c's "event_loop()"; initialize the event
1000         system and the connect_timer and ping_timer
1001
1002         * ircd/uping.c: correct a couple more typos
1003
1004         * ircd/s_auth.c: rework to use new events system
1005
1006         * ircd/os_solaris.c (os_connect_nonb): update to new interface
1007
1008         * ircd/os_openbsd.c (os_connect_nonb): update to new interface
1009
1010         * ircd/os_linux.c (os_connect_nonb): update to new interface
1011
1012         * ircd/os_generic.c (os_connect_nonb): update to new interface
1013
1014         * ircd/os_bsd.c (os_connect_nonb): update to new interface
1015
1016         * include/s_auth.h: remove deprecated members of struct
1017         AuthRequest, replacing them with struct Socket and struct Timer
1018         structures; add flags to indicate when these structures have been
1019         released by the event system; remove the deprecated
1020         timeout_auth_queries()
1021
1022         * include/ircd_osdep.h (os_connect_nonb): connect could complete
1023         immediately, so change the interface to handle that possibility
1024
1025         * ircd/uping.c (uping_server): noticed and corrected a typo
1026
1027         * ircd/listener.c: set up to use ircd_event's struct Socket by
1028         adding an socket_add() call to inetport(), replacing
1029         free_listener() with socket_del() in close_listener(), and
1030         reworking accept_connection to be called as the callback
1031
1032         * ircd/ircd.c: add a call to IPcheck_init()
1033
1034         * ircd/IPcheck.c: remove IPcheck_expire(); rework
1035         ip_registry_expire() to be called from a timer; write
1036         IPcheck_init() to set up the expiration timer (hard-coded for a
1037         60-second expiration time)
1038
1039         * include/listener.h: add a struct Socket to the struct Listener;
1040         remove accept_connection()
1041
1042         * include/IPcheck.h: add IPcheck_init(), remove IPcheck_expire()
1043
1044 2001-05-08  Kevin L. Mitchell  <klmitch@mit.edu>
1045
1046         * ircd/ircd_events.c: include config.h; use USE_KQUEUE and
1047         USE_DEVPOLL instead of HAVE_KQUEUE and HAVE_DEVPOLL_H
1048
1049         * ircd/engine_select.c: include config.h; set FD_SETSIZE to
1050         MAXCONNECTIONS, not IRCD_FD_SETSIZE...
1051
1052         * ircd/engine_poll.c: include config.h
1053
1054         * ircd/engine_kqueue.c: include config.h
1055
1056         * ircd/engine_devpoll.c: include config.h
1057
1058         * ircd/Makefile.in: include engine sources in compilation and make
1059         depend steps
1060
1061         * configure.in: add checks for enabling the /dev/poll- and
1062         kqueue-based engines
1063
1064         * acconfig.h: add lines for USE_DEVPOLL and USE_KQUEUE
1065
1066         * ircd/Makefile.in: work in the engine sources
1067
1068 2001-05-07  Kevin L. Mitchell  <klmitch@mit.edu>
1069
1070         * ircd/m_settime.c: include ircd_snprintf.h
1071
1072         * ircd/ircd_relay.c: stomp a couple of gcc warnings suggesting
1073         parens around a construct that had both || and &&
1074
1075         * ircd/chkconf.c: #include "config.h" to get some important
1076         definitions
1077
1078         * ircd/Makefile.in: revamp ircd makefile for new build system
1079
1080         * doc/Makefile.in: revamp doc makefile for new build system
1081
1082         * config/*: Removed old build system files
1083
1084         * stamp-h.in: a stamp file
1085
1086         * install-sh: install-sh for new build system
1087
1088         * configure.in: configure.in for new build system
1089
1090         * configure: configure script for new build system (built by
1091         autoconf)
1092
1093         * config.sub: config.sub for new build system
1094
1095         * config.h.in: config.h.in for new build system (built by
1096         autoheader)
1097
1098         * config.guess: config.guess for new build system
1099
1100         * aclocal.m4: aclocal.m4 for new build system (built by aclocal
1101         1.4)
1102
1103         * acinclude.m4: aclocal.m4 macros for new build system
1104
1105         * acconfig.h: config.h skeleton for new build system
1106
1107         * Makefile.in: modify for new build system
1108
1109 2001-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
1110
1111         * ircd/s_err.c: get rid of the last vestiges of TIME_T_FMT
1112
1113         * ircd/m_settime.c: get rid of the last vestiges of TIME_T_FMT
1114
1115         * ircd/m_server.c: get rid of the last vestiges of TIME_T_FMT
1116
1117 2001-05-01  Perry Lorier       <Isomer@coders.net>
1118         * doc/iauth.doc: Protocol for iauth server. (from hybrid).
1119         * doc/linux-poll.patch: Patch to make Linux under 2.2 not deadlock
1120                 when you have far far too many sockets in use.
1121         * {include,ircd}/iauth.c: A start on iauth support.
1122
1123 2001-05-01  Perry Lorier       <Isomer@coders.net>
1124         * ircd/s_err.c: Suggested wording change.
1125         * ircd/s_user.c: Users aren't target limited against +k users.
1126         * ircd/chkconf.c: Made it compile again, who knows if it works, but
1127                 now I can at least make install
1128         * various: Cleanups on m_*.c files.
1129
1130
1131 2001-04-23  Kevin L. Mitchell  <klmitch@mit.edu>
1132
1133         * ircd/s_misc.c (exit_client): make netsplit server notice say the
1134         right thing
1135
1136         * ircd/m_links.c (m_links_redirect): forward-port RPL_ENDOFLINKS
1137         change to make Khaled happy...
1138
1139         * ircd/m_whois.c (do_whois): pull-up of m_whois() fix
1140         (do_whois): duh...
1141
1142 2001-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
1143
1144         * ircd/msgq.c: finally remove the msgq_integrity() hack, as it's
1145         turned up no more bugs
1146
1147         * ircd/ircd.c: use /* */ comments instead of // comments--all the
1148         world's not gcc :(
1149
1150         * ircd/s_conf.c (conf_add_server): use /* */ comments instead of
1151         // comments--all the world's not gcc :(
1152
1153         * ircd/runmalloc.c: finally garbage-collect unused file
1154
1155         * include/runmalloc.h: finally garbage-collect unused file
1156
1157         * ircd/<multiple files>: addition of '#include "config.h"' before
1158         all other includes in most .c files
1159
1160         * include/<multiple files>: remove includes of config.h, which are
1161         now going into the raw .c files
1162
1163 2001-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
1164
1165         * ircd/m_whois.c (do_whois): display proper server name if the
1166         user is looking up himself
1167
1168         * ircd/m_who.c (m_who): disable match by servername or display of
1169         server names by non-opers
1170
1171         * include/ircd_policy.h: add define for
1172         HEAD_IN_SAND_WHO_SERVERNAME to cover full intent of sub-motion 15
1173         of CFV 165
1174
1175 2001-04-18  Kevin L. Mitchell  <klmitch@mit.edu>
1176
1177         * ircd/s_conf.c: keep the $R in memory so we can see it clearly
1178         when we do a /stats k
1179
1180         * ircd/s_user.c (set_user_mode): pull-up of changes to prevent
1181         users from turning on +s and +g
1182
1183         * ircd/s_misc.c (exit_client): pull-up of changes to turn off
1184         net.split notice
1185
1186         * ircd/parse.c: pull-up of changes to disable /trace, /links, and
1187         /map for users
1188
1189         * ircd/m_whois.c (do_whois): pull-up of server name masking for
1190         /whois
1191
1192         * ircd/m_user.c (m_user): removal of umode and snomask defaulting
1193         functions, pull-up
1194
1195         * ircd/m_stats.c (m_stats): pull-up of stats-disabling stuff
1196
1197         * ircd/m_map.c (m_map_redirect): pull-up of m_map_redirect()
1198
1199         * ircd/m_links.c (m_links_redirect): pull-up of m_links_redirect()
1200
1201         * ircd/channel.c (channel_modes): pull-up of channel key display
1202         as *
1203
1204         * include/ircd_policy.h: pull-up of ircd_policy.h
1205
1206         * include/client.h: pull-up of Set/ClearServNotice()
1207
1208         * ircd/gline.c (do_gline): report client name in G-line message
1209         (pull-up)
1210
1211         * ircd/s_user.c (register_user): pull-up--show IP address in some
1212         server notices dealing only with users; report which connection
1213         class has filled up
1214
1215         * ircd/s_stats.c (report_deny_list): use conf->flags &
1216         DENY_FLAGS_IP insteaf of conf->ip_kill
1217
1218         * ircd/m_stats.c (report_klines): use conf->flags & DENY_FLAGS_IP
1219         insteaf of conf->ip_kill
1220
1221         * ircd/s_conf.c: use flags field in struct DenyConf; pull-up of
1222         K-line by real name
1223
1224         * include/s_conf.h: use a flags field in struct DenyConf; define
1225         DENY_FLAGS_FILE, DENY_FLAGS_IP, and DENY_FLAGS_REALNAME for
1226         pull-up of K-line by real name
1227
1228         * ircd/m_trace.c: pull-up of IP show for user connections
1229
1230         * doc/example.conf: pull-up of the realname K-line documentation
1231
1232         * ircd/ircd.c: forward port of pid file advisory locking mechanism
1233
1234 2001-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
1235
1236         * ircd/send.c (sendcmdto_flag_butone): recast to just broadcast to
1237         all servers, rather than to only servers that have +w/+g/whatever
1238         users on them; among other things, this removes that atrocity
1239         known as sentalong[] from this function
1240
1241         * ircd/m_admin.c: must include ircd.h to declare "me"; must
1242         include hash.h to declare FindUser()
1243
1244         * ircd/m_wallusers.c: implementation of WALLUSERS
1245
1246         * ircd/m_desynch.c (ms_desynch): only send DESYNCHs to opers
1247
1248         * ircd/m_wallops.c: only send WALLOPS to opers
1249
1250         * ircd/parse.c: add WALLUSERS command to parser table
1251
1252         * include/handlers.h: declare wallusers handlers
1253
1254         * include/msg.h: add WALLUSERS command
1255
1256         * ircd/send.c (sendcmdto_flag_butone): if FLAGS_OPER is or'd with
1257         flag, send only to appropriate opers
1258
1259 2001-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
1260
1261         * ircd/uping.c: refit to use the new events interface
1262
1263         * ircd/res.c: refit to use the new events interface
1264
1265         * ircd/ircd_events.c: create timer_chg(), which permits a
1266         (non-periodic) timer's expire time to be modified; change the
1267         logic in timer_run() so that timers that were re-added while the
1268         event was being processed will not be destroyed prematurely
1269
1270         * include/uping.h: include the events header, declare some extra
1271         fields in struct UPing, remove timeout value, and define some
1272         flags for marking which cleanup items have yet to be done
1273
1274         * include/ircd_events.h: add a prototype for timer_chg() to change
1275         the expire time of a running timer
1276
1277 2001-03-13 Joseph Bongaarts <foxxe@wtfs.net>
1278         * ircd/os_openbsd.c: Tweaked the openbsd hack a bit.
1279         
1280 2001-03-07  Joseph Bongaarts  <foxxe@wtfs.net>
1281
1282         * config/configure.in: Add check for OpenBSD
1283
1284         * ircd/os_openbsd.c: Add seperate os dep file for openbsd which
1285         differs from generic BSD, particularly in its handling of
1286         _XOPEN_SOURCE.
1287         
1288 2001-02-12  Kevin L. Mitchell  <klmitch@mit.edu>
1289
1290         * ircd/m_gline.c (ms_gline): propagate a G-line that happened to
1291         have been added by a U-lined server, rather than going through the
1292         activate/deactivate logic; propagate G-line removals by U-lined
1293         servers as well
1294
1295         * ircd/gline.c: rename propagate_gline() to gline_propagate();
1296         make gline_propagate() return an int 0 (convenience return); only
1297         update lastmod in gline_activate() and gline_deactivate() if the
1298         current lastmod is non-zero, since 0 lastmod is our flag of a
1299         U-lined server having added a G-line
1300
1301         * include/gline.h (gline_propagate): exporting the G-line
1302         propagation function
1303
1304         * ircd/m_list.c (m_list): duh; permit explicit channel name
1305         specification only when /list gets two arguments ("Kev
1306         #wasteland") rather than when /list gets more than two
1307         arguments--nice braino
1308
1309 2001-01-29  Thomas Helvey <twhelvey1@home.com>
1310
1311         * ircd/ircd_reply.c (need_more_params): fix bug that allowed
1312         unregistered clients to spam opers with protocol violation
1313         messages. Note: the bugfix may have eliminated some useful
1314         protocol violation messages.
1315         Please send protocol violation messages explicitly from the
1316         functions they are discovered in, you have much better context
1317         for the error there and it helps to document the behavior of the
1318         server. This was also a design bug in that it violated the
1319         "A function should do one thing" heuristic. Patching this one
1320         would have resulted in a continuous spawning of other bugs over
1321         the next 3 years, so I killed it. Check around for stuff this
1322         broke and readd the calls to protocol_violation in the functions
1323         that need to send the message.
1324
1325 2001-01-29  Kevin L. Mitchell  <klmitch@mit.edu>
1326
1327         * ircd/channel.c (mode_parse_ban): stopper a tiny leak--if a ban
1328         already existed, then the logic would (attempt to) skip it, but
1329         would not free the ban string; now the ban string is free'd and
1330         the ban count is decremented, releasing the ban for use
1331
1332         * ircd/s_user.c: make send_umode_out() take a prop argument
1333         instead of testing for the PRIV_PROPAGATE privilege itself; fix
1334         set_umode() to use this new argument, calculating it before
1335         calculating the new privileges for a -o'd user
1336
1337         * ircd/m_oper.c (m_oper): pass the new prop argument to
1338         send_umode_out()
1339
1340         * ircd/channel.c (mode_parse_ban): turn off MODE_ADD bit in bans
1341         that we're not actually going to add because they already exist;
1342         test that particular bit before adding to the linked list
1343
1344         * include/s_user.h: add a prop argument to send_umode_out() to
1345         indicate whether or not to propagate the user mode
1346
1347 2001-01-24  Kevin L. Mitchell  <klmitch@mit.edu>
1348
1349         * ircd/msgq.c: ircd_vsnprintf() returns the number of bytes that
1350         it would have written; upper-bound the number to prevent overflows
1351         by proxy; also, tune buffer size given to ircd_vsnprintf() to take
1352         into account the fact that ircd_vsnprintf() already takes the
1353         terminal \0 into account
1354
1355 2001-01-22  Kevin L. Mitchell  <klmitch@mit.edu>
1356
1357         * ircd/msgq.c: add an incredibly ugly hack to attempt to track
1358         down an apparent buffer overflow; remove msgq_map(), since it's no
1359         longer used anywhere; slight tweaks to prevent off-by-one errors,
1360         but these can't explain the problems we've seen
1361
1362         * include/msgq.h: remove msgq_map(), since it's no longer used
1363         anywhere
1364
1365 2001-01-18  Kevin L. Mitchell  <klmitch@mit.edu>
1366
1367         * ircd/s_user.c (set_nick_name): call client_set_privs() after
1368         parsing user modes
1369
1370 2001-01-17  Kevin L. Mitchell  <klmitch@mit.edu>
1371
1372         * ircd/s_bsd.c (read_message): fix a typo in the select version of
1373         read_message()
1374
1375         * ircd/whowas.c (whowas_free): MyFree() is a macro that expects
1376         its argument to be an lvalue, which means we can't use
1377         whowas_clean()'s handy-dandy "return ww" feature
1378
1379         * ircd/ircd_features.c: default LOCOP_KILL to TRUE--oops...
1380
1381 2001-01-16  Kevin L. Mitchell  <klmitch@mit.edu>
1382
1383         * ircd/ircd_events.c (timer_run): it's possible that the timer got
1384         deleted during the callback processing, so don't go to the bother
1385         of requeuing it if the destroy flag is set
1386
1387         * ircd/engine_select.c: define FD_SETSIZE to be IRCD_FD_SETSIZE
1388         out of config.h if this is a *BSD; include errno.h (oops);
1389         decrement error count after an hour using a timer; use FD_SETSIZE
1390         constant instead of IRCD_FD_SETSIZE constant; fill in event
1391         processing code
1392
1393         * ircd/engine_poll.c: include errno.h (oops); decrement error
1394         count after an hour using a timer; fill in event processing code
1395
1396         * ircd/engine_kqueue.c: include errno.h (oops); decrement error
1397         count after an hour using a timer; assert events filter is either
1398         EVFILT_READ or EVFILT_WRITE; fill in event processing code
1399
1400         * ircd/engine_devpoll.c: include errno.h (oops); decrement error
1401         count after an hour using a timer; fill in event processing code
1402
1403 2001-01-15  Kevin L. Mitchell  <klmitch@mit.edu>
1404
1405         * ircd/client.c: fixed feattab; basically, when I changed features
1406         to use small integers specifying bit positions, instead of the
1407         bits themselves, I forgot to update feattab to not | these
1408         privileges together; also fixed a bug in the antiprivs masking
1409         loop in client_set_privs()--last index wouldn't get parsed
1410
1411 2001-01-11  Kevin L. Mitchell  <klmitch@mit.edu>
1412
1413         * ircd/ircd_events.c: call event_generate() with new data
1414         argument; make it set that field in struct Event; make
1415         socket_add() return the value of the eng_add callback
1416
1417         * ircd/engine_select.c: make engine_add() return a
1418         successful/unsuccessful status; add bounds-checking outside of an
1419         assert; use accessor macros; use log_write(), not the deprecated
1420         ircd_log(); add an assert to engine_loop() to double-check for
1421         data structure corruption
1422
1423         * ircd/engine_poll.c: make engine_add() return a
1424         successful/unsuccessful status; add bounds-checking outside of an
1425         assert; use accessor macros; use log_write(), not the deprecated
1426         ircd_log(); add an assert to engine_loop() to double-check for
1427         data structure corruption
1428
1429         * ircd/engine_kqueue.c: implementation of an engine for kqueue()
1430
1431         * ircd/engine_devpoll.c: implementation of an engine for /dev/poll
1432
1433         * include/ircd_events.h: define some accessor macros; add ev_data
1434         to struct Event for certain important data--errno values, for
1435         instance; make EngineAdd callback tell us if it was successful or
1436         not; add extra argument to event_generate(); make socket_add()
1437         return the status from EngineAdd
1438
1439 2001-01-10  Kevin L. Mitchell  <klmitch@mit.edu>
1440
1441         * ircd/ircd_events.c: pass initializer information about how many
1442         total _filedescriptors_ may be opened at once
1443
1444         * ircd/ircd.c: use exported "running" instead of unexported
1445         thisServer.running
1446
1447         * ircd/engine_select.c: implementation of an event engine based on
1448         select()
1449
1450         * ircd/engine_poll.c: implementation of an event engine based on
1451         poll()
1452
1453         * include/ircd_events.h: pass the engine initializer an integer
1454         specifing how many _filedescriptors_ may be opened at once
1455
1456         * include/ircd.h: running has to be exported for the engine_*
1457         event loops
1458
1459 2001-01-09  Kevin L. Mitchell  <klmitch@mit.edu>
1460
1461         * ircd/ircd_events.c: include some needed headers; add some
1462         comments; make evEngines[] const; bundle sig_sock and sig_fd into
1463         a struct named sigInfo; rework struct evInfo to have a queue of
1464         _generators_, and only when threaded; added a gen_init() function
1465         to centralize generator initialization; fix various compile-time
1466         errors; rework event_add() for new queueing scheme and checked for
1467         compile-time errors; add casts where needed; spell evEngines[]
1468         correctly; make engine_name() return const char*
1469
1470         * include/ircd_events.h: type EventCallBack depends on struct
1471         Event, so pre-declare it; put _event_ queue into generators, and
1472         only when threaded; give engine data a union to store both ints
1473         and pointers; make engine name a const; fix gen_ref_dec() macro;
1474         make engine_name() return a const char*
1475
1476         * ircd/ircd_events.c: gen_dequeue() is now exported, so move it
1477         down with the non-static functions; modify event_execute() to use
1478         the new gen_ref_dec() to simplify code; make sure event_generate()
1479         does not generate new events for generators marked for destruction
1480
1481         * include/ircd_events.h: the engines, at least, may need to modify
1482         reference counts to keep generators from going away while
1483         something still points at them, so add reference counter
1484         manipulators and export gen_dequeue() for them
1485
1486         * ircd/ircd_events.c: set up the list of engines to try; set up
1487         the signal struct Socket; rename netInfo to evInfo; move static
1488         functions near the beginning of the file; do away with
1489         signal_signal() (since we no longer keep a signal count ourselves)
1490         and call event_generate() directly from signal_callback--also
1491         renamed some functions; allow signal_callback() to read up to
1492         SIGS_PER_SOCK at once from the signal pipe; add event_init() to
1493         initialize the entire event system; add event_loop() to call the
1494         engine's event loop; initialize new struct GenHeader member,
1495         gh_engdata; remove timer_next(); add socket_add() function to add
1496         a socket; add socket_del() to mark a socket for deletion; add
1497         socket_state() to transition a socket between states; add
1498         socket_events() to set what events we're interested in on the
1499         socket; add engine_name() to retrieve event engine's name
1500
1501         * include/ircd_events.h: add engine data field to struct
1502         GenHeader; rename SOCK_ACTION_REMOVE to SOCK_ACTION_DEL; add a
1503         note about states vs s_events; remove signal count; fold union
1504         Generator back into struct Event; remove count members from struct
1505         Generators; redefine engine callbacks to not take a struct
1506         Engine*; add explanatory comments to callback definitions; add
1507         some engine callbacks to handle operations; remove struct Engine
1508         flag member--can detect single flag from eng_signal member; add
1509         event_init(), event_loop(), engine_name(), and the socket_*()
1510         functions; make timer_next() a macro to avoid a function call
1511
1512 2001-01-08  Kevin L. Mitchell  <klmitch@mit.edu>
1513
1514         * include/ircd_events.h: rename to ircd_events.h, since it handles
1515         events, not just networking stuff; add signal support; more
1516         structural rearrangement
1517
1518         * ircd/ircd_events.c: rename to ircd_events.c, since it handles
1519         events, not just networking stuff; add signal support; more
1520         structural rearrangement
1521
1522 2001-01-07  Kevin L. Mitchell  <klmitch@mit.edu>
1523
1524         * ircd/ircd_network.c: implement timer API; add reference counts
1525         appropriately
1526
1527         * include/ircd_network.h: firm up some pieces of the interface;
1528         split out members everything has into a separate structure; add
1529         reference counts; add timer API
1530
1531 2001-01-06  Kevin L. Mitchell  <klmitch@mit.edu>
1532
1533         * ircd/ircd_network.c: static data and event manipulation
1534         functions for new event processing system
1535
1536         * include/ircd_network.h: data structures for new event processing
1537         system
1538
1539 2001-01-03  Kevin L. Mitchell  <klmitch@mit.edu>
1540
1541         * ircd/whowas.c: Completely re-did the old allocation scheme by
1542         turning it into a linked list, permitting the
1543         NICKNAMEHISTORYLENGTH feature to be changed on the fly
1544
1545         * ircd/s_debug.c (count_memory): use FEAT_NICKNAMEHISTORYLENGTH
1546         feature instead of old #define
1547
1548         * ircd/ircd_features.c: add NICKNAMEHISTORYLENGTH feature as an
1549         integer feature with a notify callback (whowas_realloc)
1550
1551         * ircd/client.c (client_set_privs): second memset was supposed to
1552         be over antiprivs, not privs; thanks, Chris Behrens
1553         <cbehrens@xo.com> for pointing that out...
1554
1555         * include/whowas.h: new elements for an extra linked list in
1556         struct Whowas; a notify function for feature value changes
1557
1558         * include/ircd_features.h: new feature--FEAT_NICKNAMEHISTORYLENGTH
1559
1560         * config/config-sh.in: NICKNAMEHISTORYLENGTH is now a feature
1561
1562 2001-01-02  Kevin L. Mitchell  <klmitch@mit.edu>
1563
1564         * config/config-sh.in: get rid of DEFAULT_LIST_PARAMETER
1565         compile-time option--now in features subsystem
1566
1567         * ircd/motd.c (motd_init): rework motd_init() to be called as the
1568         notify function for MPATH and RPATH features (should probably
1569         split it up a bit, though...)
1570
1571         * ircd/m_privs.c (mo_privs): if called with no parameters, return
1572         privs of the caller, rather than an error
1573
1574         * ircd/m_list.c: pull usage message into its own function; pull
1575         list parameter processing into its own function that does not
1576         modify the contents of the parameter; add list_set_default() to
1577         set the default list parameter (uses the notify hook); rework
1578         m_list() to make use of these functions; removed dead code
1579
1580         * ircd/ircd_log.c (log_feature_mark): make sure to return 0, since
1581         we have no notify handler
1582
1583         * ircd/ircd_features.c: add notify callback for notification of
1584         value changes; give mark callback an int return value to indicate
1585         whether or not to call the notify callback; fix up feature macros
1586         for new notify callback; add DEFAULT_LIST_PARAM feature; rewrite
1587         string handling in feature_set() to deal with def_str being a null
1588         pointer; wrote feature_init() to set up all defaults appropriately
1589
1590         * ircd/ircd.c (main): call feature_init() instead of
1591         feature_mark(), to avoid calling notify functions while setting up
1592         defaults
1593
1594         * ircd/client.c: updated to deal with new privileges structure
1595
1596         * ircd/class.c: updated so init_class() can be called should one
1597         of PINGFREQUENCY, CONNECTFREQUENCY, MAXIMUM_LINKS, or
1598         DEFAULTMAXSENDQLENGTH be changed
1599
1600         * include/ircd_log.h: log_feature_mark() updated to fit with new
1601         API changes
1602
1603         * include/ircd_features.h: added DEFAULT_LIST_PARAM feature and
1604         feature_init() function (found necessary since adding the notify
1605         stuff and notifying motd.c during start-up...before we defined
1606         RPATH!)
1607
1608         * include/client.h: move privs around to enable addition of more
1609         bits if necessary; based on the FD_* macros
1610
1611         * include/channel.h: declare list_set_default (actually located in
1612         m_list.c *blanche*)
1613
1614         * ircd/s_user.c: retrieve MAXSILES and MAXSILELENGTH (now
1615         AVBANLEN*MAXSILES) from features subsystem
1616
1617         * ircd/s_debug.c (debug_serveropts): CMDLINE_CONFIG doesn't go to
1618         anything anymore
1619
1620         * ircd/s_bsd.c: retrieve HANGONGOODLINK and HANGONRETRYDELAY from
1621         the features subsystem
1622
1623         * ircd/s_auth.c (start_auth): NODNS migrated to the features
1624         subsystem
1625
1626         * ircd/random.c: created random_seed_set() function to set seed
1627         value, along with some stuff to make ircrandom() a little more
1628         random--state preserving, xor of time instead of direct usage,
1629         etc.; it's still a pseudo-random number generator, though, and
1630         hopefully I haven't broken the randomness
1631
1632         * ircd/m_version.c: FEATUREVALUES makes use of feature_int() calls
1633
1634         * ircd/m_join.c: use features interface to retrieve
1635         MAXCHANNELSPERUSER
1636
1637         * ircd/ircd_features.c: add NODISP flag for super-secret features;
1638         add a whole bunch of new features migrated over from make config
1639
1640         * ircd/ircd.c: use features interface to retrieve PINGFREQUENCY,
1641         CONNECTTIMEOUT, and TIMESEC
1642
1643         * ircd/client.c (client_get_ping): use features interface to
1644         retrieve PINGFREQUENCY
1645
1646         * ircd/class.c: use features interface to retrieve PINGFREQUENCY,
1647         CONNECTFREQUENCY, MAXIMUM_LINKS, and DEFAULTMAXSENDQLENGTH
1648
1649         * ircd/chkconf.c (DEFAULTMAXSENDQLENGTH): since it's now in the
1650         features subsystem, we have to add something explicit
1651
1652         * ircd/channel.c: use features interface to retrieve
1653         KILLCHASETIMELIMIT, MAXBANLENGTH, MAXBANS, and MAXCHANNELSPERUSER;
1654         note that MAXBANLENGTH is now calculated dynamically from MAXBANS
1655         and AVBANLEN
1656
1657         * ircd/Makefile.in: run make depend
1658
1659         * include/supported.h (FEATURESVALUES): update to reference
1660         feature settings
1661
1662         * include/random.h: add prototype for random_seed_set
1663
1664         * include/ircd_features.h: add several more features
1665
1666         * include/channel.h: move MAXBANS and MAXBANLENGTH into feature
1667         subsystem
1668
1669         * config/config-sh.in: feature-ized some more stuff
1670
1671         * include/motd.h: some new elements in motd.h for motd.c changes
1672
1673         * ircd/motd.c: motd_cache() now searches a list of already cached
1674         MOTD files; saves us from having duplicate caches in memory if
1675         there are two identical T-lines for two different sites...
1676
1677 2001-01-02  Perry Lorier <isomer@coders.net>
1678         * ircd/motd.c: don't core if the motd isn't found.  Bug found by
1679         Amarande.
1680
1681 2001-01-02  Perry Lorier <isomer@coders.net>
1682         * ircd/s_err.c: Added third param to 004 - the channel modes that tage params.  Used by hybrid/epic.
1683         * ircd/s_channels.c: Added fix for msg'ing a -n+m channel - thanks
1684                 to guppy for noticing, and hektik for providing the fix.
1685         * misc others: Minor cleanups, added more protocol_violations, ripped
1686                 out more P09 stuffs, bit more protocol neg stuff.
1687
1688 2000-12-19  Kevin L. Mitchell  <klmitch@mit.edu>
1689
1690         * ircd/m_ison.c (m_ison): Dianora says that ISON has to end with a
1691         space (*sigh* stupid clients...)
1692
1693         * ircd/s_user.c: make WALLOPS_OPER_ONLY a feature managed through
1694         ircd_features.[ch]
1695
1696         * ircd/s_err.c: get rid of GODMODE conditionals
1697
1698         * ircd/s_debug.c (debug_serveropts): switch to using appropriate
1699         calls into the features subsystem for various serveropts
1700         characters
1701
1702         * ircd/s_conf.c (find_conf_entry): get rid of USEONE conditional
1703
1704         * ircd/s_bsd.c: remove GODMODE conditional; use features subsystem
1705         to get value of VIRTUAL_HOST and CLIENT_FLOOD; remove
1706         NOFLOWCONTROL conditional
1707
1708         * ircd/s_auth.c: use features subsystem to determine value of
1709         KILL_IPMISMATCH
1710
1711         * ircd/parse.c: get rid of NOOPER and GODMODE conditionals; use
1712         features subsystem to determine the setting of IDLE_FROM_MSG
1713
1714         * ircd/numnicks.c: get rid of EXTENDED_NUMERICS conditionals
1715
1716         * ircd/motd.c: get value of NODEFAULTMOTD from features subsystem;
1717         use features subsystem to get motd file names
1718
1719         * ircd/m_settime.c: get value of RELIABLE_CLOCK from features
1720         subsystem
1721
1722         * ircd/m_server.c: get rid of CRYPT_LINK_PASSWORD, since it does
1723         us no good; use features subsystem to figure out if we need to do
1724         HUB-type stuff; make TESTNET debugging sendto_opmask_butone's use
1725         the Debug(()) macro instead; get value of RELIABLE_CLOCK from
1726         features subsystem
1727
1728         * ircd/m_privmsg.c: get IDLE_FROM_MSG from the features subsystem
1729
1730         * ircd/m_oper.c: get CRYPT_OPER_PASSWORD from the features
1731         subsystem
1732
1733         * ircd/m_connect.c: get SERVER_PORT from the features subsystem
1734
1735         * ircd/ircd_log.c (log_set_file): fix a bug that kept log files
1736         from getting marked if they were already set to something...
1737
1738         * ircd/ircd_features.c: add a flag to indicates read-only access;
1739         add several new features that used to be compile-time selected
1740
1741         * ircd/ircd.c: grab pidfile out of feature subsystem; don't check
1742         access to motd files (what the heck?); make sure to initialize the
1743         feature subsystem before trying to write the config file
1744
1745         * ircd/dbuf.c: use feature_int() to retrieve BUFFERPOOL settings;
1746         use feature_bool() to figure out if we're using the FERGUSON
1747         flusher
1748
1749         * ircd/Makefile.in: MPATH and RPATH are now done differently, so
1750         remove the clause that creates empty files of that name; also ran
1751         make depend
1752
1753         * include/sys.h: CLIENT_FLOOD is now a feature; unfortunately,
1754         there is no easy way to bounds-check it at present
1755
1756         * include/querycmds.h: make sure ircd_features.h is included; use
1757         feature_str(FEAT_DOMAINNAME) in calls to match()
1758
1759         * include/ircd_features.h: many new features that used to be
1760         compile-time selected
1761
1762         * config/config-sh.in: add * to DOMAINNAME; try also using first
1763         argument to search in /etc/resolv.conf; removed many compile-time
1764         options that now can be configured through the features system
1765
1766 2000-12-18  Kevin L. Mitchell  <klmitch@mit.edu>
1767
1768         * doc/api/log.txt: how to use the logging API
1769
1770         * doc/api/features.txt: how to use the features API
1771
1772         * doc/api/api.txt: how to write API documentation
1773
1774         * include/ircd_features.h: rearranged a couple of features for
1775         neatness purposes
1776
1777         * ircd/ircd_features.c: cleaned up the macros some; rearranged
1778         some code to all go into the switch; rearranged a couple of
1779         features for neatness purposes
1780
1781 2000-12-16  Greg Sikorski <gte@atomicrevs.demon.co.uk>
1782         * ircd/os_bsd.c: Added os_set_tos for BSD users.
1783
1784 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
1785
1786         * ircd/ircd_features.c: Isomer almost got it right; you need to
1787         use F_I(), since it's an integer value, not a boolean value.  The
1788         asserts in feature_int would catch you out...  Also made the F_*
1789         macros take flags
1790
1791         * ircd/s_err.c: define RPL_PRIVS reply
1792
1793         * ircd/parse.c: put new PRIVS command into command table
1794
1795         * ircd/m_privs.c (mo_privs): message handler to report operator
1796         privileges
1797
1798         * ircd/ircd_features.c: declare new features OPER_SET and
1799         LOCOP_SET; redo boolean testing routine to accept TRUE, YES, and
1800         ON for boolean TRUE, and FALSE, NO, and OFF for boolean FALSE
1801
1802         * ircd/client.c: simplify client_set_privs() with a table that
1803         defines what features to test for; add new client_report_privs()
1804
1805         * ircd/Makefile.in: compile new m_privs.c; run make depend
1806
1807         * include/numeric.h (RPL_PRIVS): new reply numeric for displaying
1808         an operator's privileges
1809
1810         * include/msg.h: define new command: PRIVS
1811
1812         * include/ircd_features.h: create new features OPER_SET and
1813         LOCOP_SET for controlling access to /set
1814
1815         * include/handlers.h (mo_privs): declare message handler for
1816         reporting oper privileges
1817
1818         * include/client.h (client_report_privs): declare function to
1819         report what privileges an oper has
1820
1821         * ircd/m_whois.c (do_whois): fix a bug that caused /whois to
1822         report that a user is an oper if the oper doing the /whois had
1823         PRIV_SEE_OPERS
1824
1825 2000-12-17  Isomer <Isomer@coders.net>
1826         * ircd/listener.c: added support for TOS twiddling as a 'feature'.
1827
1828 2000-12-17  Isomer <Isomer@coders.net>
1829         * ircd/os_linux.c: add TOS stuffs
1830
1831         * ircd/listener.c: add TOS stuffs
1832
1833 2000-12-16  Kevin L. Mitchell  <klmitch@mit.edu>
1834
1835         * ircd/whocmds.c (do_who): use HasPriv to determine whether or not
1836         to indicate a user is an oper
1837
1838         * ircd/s_user.c: clear privileges setting when deopping; don't
1839         propagate +o unless user has PRIV_PROPAGATE privilege
1840
1841         * ircd/s_debug.c (debug_serveropts): created debug_serveropts()
1842         function and replaced how the server option string is generated
1843
1844         * ircd/parse.c: remove conditional on CONFIG_OPERCMDS
1845
1846         * ircd/m_whois.c (do_whois): use HasPriv to determine whether or
1847         not to indicate the user is an operator
1848
1849         * ircd/m_who.c: use HasPriv to determine whether or not a user
1850         should be displayed in the list of opers
1851
1852         * ircd/m_version.c: call debug_serveropts() to get server option
1853         string
1854
1855         * ircd/m_userip.c (userip_formatter): use HasPriv to determine
1856         whether or not to show oper status
1857
1858         * ircd/m_userhost.c (userhost_formatter): use HasPriv to determine
1859         whether or not to show oper status
1860
1861         * ircd/m_restart.c (mo_restart): replace ugly #ifdef conditional
1862         checks with HasPriv check; remove dead code
1863
1864         * ircd/m_rehash.c (mo_rehash): replace ugly #ifdef conditional
1865         checks with HasPriv check
1866
1867         * ircd/m_opmode.c (mo_opmode): use HasPriv to check permissions;
1868         use feature_bool to check if disabled
1869
1870         * ircd/m_oper.c (m_oper): set oper priviliges
1871
1872         * ircd/m_mode.c (m_mode): replace #ifdef conditional with HasPriv
1873         check
1874
1875         * ircd/m_kill.c (mo_kill): use HasPriv checks to determine if we
1876         can kill
1877
1878         * ircd/m_kick.c (m_kick): replace #ifdef conditional with HasPriv
1879         check
1880
1881         * ircd/m_jupe.c (mo_jupe): rework permissions checking structure;
1882         use feature_bool to check if disabled
1883
1884         * ircd/m_join.c (m_join): remove BADCHAN conditional; replace
1885         #ifdef conditional with a HasPriv check
1886
1887         * ircd/m_gline.c (mo_gline): rework permissions checking
1888         structure; use feature_bool to check if any part is disabled
1889
1890         * ircd/m_die.c: replace ugly #ifdef conditionals with HasPriv
1891         check; remove dead code
1892
1893         * ircd/m_clearmode.c: use feature_bool() to detect if we're
1894         disabled; use HasPriv to figure out what we're permitted to do;
1895         only allow clearmode on moded channels
1896
1897         * ircd/ircd_features.c: define various features; use HasPriv to
1898         verify permissions to set/reset
1899
1900         * ircd/gline.c (gline_add): use HasPriv instead of #ifdef
1901         conditionals
1902
1903         * ircd/client.c (client_set_privs): function to set an oper's
1904         privileges
1905
1906         * ircd/channel.c: use HasPriv calls instead of #ifdef conditionals
1907
1908         * include/whocmds.h: deconditionalize several macros and
1909         substitute appropriate calls to HasPriv()
1910
1911         * include/s_debug.h: get rid of global serveropts[]; define new
1912         function debug_serveropts() to build that string on the fly
1913
1914         * include/ircd_features.h: define some features
1915
1916         * include/client.h: add privs member to struct Connection; define
1917         various priviledges
1918
1919         * include/channel.h: no longer using IsOperOnLocalChannel; remove
1920         conditional of MAGIC_OPER_OVERRIDE on OPER_WALK_THROUGH_LMODES
1921
1922         * doc/Configure.help: remove help information for deprecated
1923         options
1924
1925         * config/config-sh.in: remove certain deprecated options having to
1926         do with what opers can and cannot do--first stage in moving
1927         compile-time constants into the .conf
1928
1929 2000-12-16  Isomer <Isomer@coders.net>
1930         * ircd/parse.c: detect if the prefix is missing and try and recover
1931         instead of coring.
1932
1933 2000-12-15  Kevin L. Mitchell  <klmitch@mit.edu>
1934
1935         * ircd/ircd_log.c: found and fixed some bugs in the debug logging
1936         code that would sometimes result in the log file not being
1937         reopened--which meant that a user could connect and get the
1938         logging output--oops
1939
1940         * ircd/Makefile.in: run make depend...
1941
1942         * ircd/s_stats.c: get rid of report_feature_list()
1943
1944         * ircd/s_err.c: add the 'bad value' error message, shift error
1945         messages over somewhat
1946
1947         * ircd/s_debug.c (debug_init): call log_debug_init with the
1948         use_tty flag
1949
1950         * ircd/s_conf.c (read_configuration_file): unmark features before
1951         reading the config file, then reset unmarked features after
1952         reading the config file
1953
1954         * ircd/m_stats.c: use feature_report() instead of
1955         report_feature_list()
1956
1957         * ircd/ircd_log.c: fix log_debug_file (bogus assertion); add
1958         special 'mark' flags and use them; add the stuff needed by the
1959         features API
1960
1961         * ircd/ircd_features.c: rework the features API and add gobs of
1962         comments to try to explain what some of these complex functions
1963         are actually doing
1964
1965         * include/s_stats.h: get rid of report_feature_list(); use
1966         feature_report() instead
1967
1968         * include/numeric.h: added a new error message and shifted old
1969         values over some--this is, after all, an alpha
1970
1971         * include/ircd_log.h: log_debug_init now takes an integer to tell
1972         it if it should be using the tty; added a couple of functions
1973         required by the features API
1974
1975         * include/ircd_features.h: add an enum and some more functions to
1976         flesh out the feature API--it should now be possible to put all
1977         those compile-time constants in the config file!
1978
1979         * ircd/send.c: got the direction of the assert incorrect...
1980
1981         * ircd/send.c: implement the efficiency of flush_connections by
1982         creating a linked list of struct Connection's with queued data;
1983         also get rid of flush_sendq_except and make sure to yank
1984         connections out of the list when their sendQs become empty (notice
1985         the assertion in flush_connections!)
1986
1987         * ircd/s_bsd.c (close_connection): must yank the Connection out of
1988         the sendq list
1989
1990         * ircd/list.c (dealloc_connection): must yank the Connection out
1991         of the sendq list
1992
1993         * ircd/dbuf.c (dbuf_put): call flush_connections instead of the
1994         deprecated flush_sendq_except
1995
1996         * ircd/client.c: define a couple new helper functions for sendq
1997         threading--this will make the flush_connections function in send.c
1998         considerably more efficient by creating a linked list of
1999         Connections that have queued data to send
2000
2001         * include/send.h: remove flush_sendq_except, as it's not used
2002         anymore
2003
2004         * include/client.h: declare a couple new helper functions for the
2005         sendq threading system
2006
2007 2000-12-14  Kevin L. Mitchell  <klmitch@mit.edu>
2008
2009         * ircd/m_ison.c (m_ison): Apply Diane Bruce's patch to make ISON
2010         parse all arguments
2011
2012         * ircd/s_debug.c (count_memory): modify to report for clients and
2013         connections, not local clients and remote clients
2014
2015         * ircd/list.c: fiddle with the client-fiddling functions to take
2016         into account the divorce of struct Connection from struct Client
2017
2018         * ircd/ircd.c: define a struct Connection for me, initialize it,
2019         and link it into the right place (ewww, globals!)
2020
2021         * include/client.h: remove CLIENT_{LOCAL,REMOTE}_SIZE; split
2022         struct Client into struct Client and struct Connection; redefine
2023         local-portion accessor macros to go through struct Client to the
2024         struct Connection; define struct Connection accessor macros
2025
2026 2000-12-13  Kevin L. Mitchell  <klmitch@mit.edu>
2027
2028         * ircd/whowas.c: missed a couple of accesses to a struct Client
2029
2030         * ircd/uping.c: missed a couple of accesses to a struct Client
2031
2032         * ircd/send.c: missed a couple of accesses to a struct Client
2033
2034         * ircd/s_user.c: missed a couple of accesses to a struct Client
2035
2036         * ircd/s_misc.c: missed a couple of accesses to a struct Client
2037
2038         * ircd/s_conf.c: missed a couple of accesses to a struct Client
2039
2040         * ircd/s_bsd.c: missed a couple of accesses to a struct Client
2041
2042         * ircd/s_auth.c: missed a couple of accesses to a struct Client
2043
2044         * ircd/res.c: missed a couple of accesses to a struct Client
2045
2046         * ircd/parse.c: missed a couple of accesses to a struct Client
2047
2048         * ircd/m_whois.c: use new accessor macros for struct Client
2049
2050         * ircd/m_who.c: use new accessor macros for struct Client
2051
2052         * ircd/m_wallchops.c: use new accessor macros for struct Client
2053
2054         * ircd/m_version.c: use new accessor macros for struct Client
2055
2056         * ircd/m_userip.c: use new accessor macros for struct Client
2057
2058         * ircd/m_userhost.c: use new accessor macros for struct Client
2059
2060         * ircd/m_user.c: use new accessor macros for struct Client
2061
2062         * ircd/m_uping.c: use new accessor macros for struct Client
2063
2064         * ircd/m_trace.c: use new accessor macros for struct Client
2065
2066         * ircd/m_topic.c: use new accessor macros for struct Client
2067
2068         * ircd/m_time.c: use new accessor macros for struct Client
2069
2070         * ircd/m_stats.c: use new accessor macros for struct Client
2071
2072         * ircd/m_squit.c: use new accessor macros for struct Client
2073
2074         * ircd/m_silence.c: use new accessor macros for struct Client
2075
2076         * ircd/m_server.c: use new accessor macros for struct Client;
2077         remove dead code
2078
2079         * ircd/m_rpong.c: use new accessor macros for struct Client
2080
2081         * ircd/m_rping.c: use new accessor macros for struct Client
2082
2083         * ircd/m_quit.c: use new accessor macros for struct Client
2084
2085         * ircd/m_privmsg.c: use new accessor macros for struct Client
2086
2087         * ircd/m_pong.c: use new accessor macros for struct Client; remove
2088         dead code
2089
2090         * ircd/m_ping.c: use new accessor macros for struct Client
2091
2092         * ircd/m_pass.c: use new accessor macros for struct Client
2093
2094         * ircd/m_part.c: use new accessor macros for struct Client
2095
2096         * ircd/m_oper.c: use new accessor macros for struct Client
2097
2098         * ircd/m_notice.c: use new accessor macros for struct Client
2099
2100         * ircd/m_nick.c: use new accessor macros for struct Client
2101
2102         * ircd/m_names.c: use new accessor macros for struct Client
2103
2104         * ircd/m_mode.c: use new accessor macros for struct Client
2105
2106         * ircd/m_map.c: use new accessor macros for struct Client
2107
2108         * ircd/m_list.c: use new accessor macros for struct Client
2109
2110         * ircd/m_links.c: use new accessor macros for struct Client;
2111         remove some dead code
2112
2113         * ircd/m_kill.c: use new accessor macros for struct Client; remove
2114         some dead code
2115
2116         * ircd/m_kick.c: use new accessor macros for struct Client
2117
2118         * ircd/m_join.c: use new accessor macros for struct Client; remove
2119         some dead code
2120
2121         * ircd/m_ison.c: use new accessor macros for struct Client
2122
2123         * ircd/m_invite.c: use new accessor macros for struct Client
2124
2125         * ircd/m_info.c: use new accessor macros for struct Client
2126
2127         * ircd/m_gline.c: use new accessor macros for struct Client
2128
2129         * ircd/m_error.c: use new accessor macros for struct Client
2130
2131         * ircd/m_create.c: use new accessor macros for struct Client
2132
2133         * ircd/m_connect.c: use new accessor macros for struct Client;
2134         removed some dead code
2135
2136         * ircd/m_burst.c: use new accessor macros for struct Client
2137
2138         * ircd/m_away.c: use new accessor macros for struct Client
2139
2140         * ircd/m_admin.c: use new accessor macros for struct Client
2141
2142         * ircd/hash.c: missed a couple of accesses to a struct Client
2143
2144         * ircd/gline.c: missed a couple of accesses to a struct Client
2145
2146         * ircd/crule.c: missed a couple of accesses to a struct Client
2147
2148         * ircd/class.c: missed an access to a struct Client
2149
2150         * ircd/channel.c: missed a couple of accesses to a struct Client
2151
2152         * ircd/IPcheck.c: missed an access to a struct Client
2153
2154         * include/querycmds.h: fix a couple of stats macros to use
2155         structure accessor macros
2156
2157         * include/client.h: change structure member names to highlight any
2158         places in the code I've missed
2159
2160 2000-12-12  Kevin L. Mitchell  <klmitch@mit.edu>
2161
2162         * ircd/whowas.c: use new struct Client accessor macros
2163
2164         * ircd/whocmds.c: use new struct Client accessor macros
2165
2166         * ircd/send.c: use new struct Client accessor macros
2167
2168         * ircd/s_user.c: use new struct Client accessor macros; removed
2169         some dead code
2170
2171         * ircd/s_serv.c: use new struct Client accessor macros; removed
2172         some dead code
2173
2174         * ircd/s_numeric.c: use new struct Client accessor macros
2175
2176         * ircd/s_misc.c: use new struct Client accessor macros
2177
2178         * ircd/s_debug.c: use new struct Client accessor macros
2179
2180         * ircd/s_conf.c: use new struct Client accessor macros
2181
2182         * ircd/s_bsd.c: use new struct Client accessor macros
2183
2184         * ircd/s_auth.c: use new struct Client accessor macros
2185
2186         * ircd/parse.c: use new struct Client accessor macros
2187
2188         * ircd/packet.c: use new struct Client accessor macros
2189
2190         * ircd/numnicks.c: use new struct Client accessor macros
2191
2192         * ircd/motd.c: use new struct Client accessor macros
2193
2194         * ircd/listener.c: use new struct Client accessor macros
2195
2196         * ircd/list.c: use new struct Client accessor macros
2197
2198         * ircd/jupe.c: use new struct Client accessor macros
2199
2200         * ircd/ircd_snprintf.c: use new struct Client accessor macros
2201
2202         * ircd/ircd_reply.c: use new struct Client accessor macros
2203
2204         * ircd/ircd_relay.c: use new struct Client accessor macros
2205
2206         * ircd/ircd.c: use new struct Client accessor macros
2207
2208         * ircd/gline.c: catch some instances of me.<stuff> I missed
2209         previously
2210
2211         * ircd/client.c: use cli_ instead of con_
2212
2213         * ircd/class.c: use cli_ instead of con_
2214
2215         * ircd/channel.c: use cli_ instead of con_
2216
2217         * ircd/IPcheck.c: use cli_ instead of con_; catch some instances
2218         of me.<stuff> I missed previously
2219
2220         * include/client.h: use cli_ instead of con_...seemed like a good
2221         idea at the time *shrug*
2222
2223 2000-12-11  Kevin L. Mitchell  <klmitch@mit.edu>
2224
2225         * ircd/hash.c: use struct Client accessor macros
2226
2227         * ircd/gline.c: use struct Client accessor macros
2228
2229         * ircd/crule.c: use struct Client accessor macros
2230
2231         * ircd/client.c: use struct Client accessor macros; remove some
2232         dead code
2233
2234         * ircd/class.c: use struct Client accessor macros
2235
2236         * ircd/channel.c: use struct Client accessor macros; remove some
2237         dead code
2238
2239         * ircd/IPcheck.c: use struct Client accessor macros
2240
2241         * include/numnicks.h: use struct Client accessor macros
2242
2243         * include/client.h: first step to divorcing struct Client and
2244         struct Connection--define accessor macros and use them
2245
2246         * ircd/gline.c: When Uworld removed Uworld-set G-lines, only the
2247         uplink would remove them.  This is because the removal protocol
2248         message wasn't being sent to the uplinks.  This is fixed by fixing
2249         propagate_gline() to send the proper number of arguments depending
2250         on whether or not we're adding or deleting the Uworld gline, and
2251         by having gline_deactivate() make sure to turn off the active bit
2252         and call propagate_gline() if it's a Uworld gline
2253
2254 2000-12-10  Kevin L. Mitchell  <klmitch@mit.edu>
2255
2256         * ircd/os_generic.c: make sure IOV_MAX gets defined, just in case
2257
2258         * ircd/os_bsd.c: apparently BSD doesn't have IOV_MAX defined
2259         anywhere intelligent...
2260
2261 2000-12-09  Kevin L. Mitchell  <klmitch@mit.edu>
2262
2263         * ircd/send.c (send_queued): call deliver_it with appropriate
2264         arguments
2265
2266         * ircd/s_serv.c: reorder a couple of headers--cosmetic
2267
2268         * ircd/s_bsd.c (deliver_it): make deliver_it work with a struct
2269         MsgQ
2270
2271         * ircd/os_solaris.c (os_sendv_nonb): function for calling writev
2272         with appropriate iovec
2273
2274         * ircd/os_linux.c (os_sendv_nonb): function for calling writev
2275         with appropriate iovec
2276
2277         * ircd/os_generic.c (os_sendv_nonb): function for calling writev
2278         with appropriate iovec
2279
2280         * ircd/os_bsd.c (os_sendv_nonb): function for calling writev with
2281         appropriate iovec
2282
2283         * ircd/msgq.c (msgq_mapiov): add a len_p argument for totalling up
2284         exactly how much we're trying to write out to the fd
2285
2286         * include/s_bsd.h: make deliver_it take a struct MsgQ
2287
2288         * include/msgq.h: add a len_p argument to msgq_mapiov to help
2289         detect short writes that indicate possible socket blocking
2290
2291         * include/ircd_osdep.h: declare os_sendv_nonb()
2292
2293         * ircd/channel.c (modebuf_mode): don't add empty modes...
2294
2295 2000-12-08  Kevin L. Mitchell  <klmitch@mit.edu>
2296
2297         * include/send.h: add prio argument to send_buffer to select
2298         between normal and priority queues
2299
2300         * ircd/s_user.c (send_user_info): add prio argument to send_buffer
2301         call
2302
2303         * ircd/m_ison.c (m_ison): add prio argument to send_buffer call
2304
2305         * ircd/ircd_reply.c (send_reply): add prio argument to send_buffer
2306         call
2307
2308         * ircd/channel.c (send_channel_modes): add prio argument to
2309         send_buffer call
2310
2311         * ircd/send.c (send_buffer): add a prio argument to select the
2312         priority queue; update send.c functions to use it
2313
2314         * ircd/msgq.c (msgq_add): remove msgq_prio; fold msgq_link and
2315         msgq_add; add a prio argument to msgq_add to select the priority
2316         queue
2317
2318         * include/msgq.h: remove msgq_prio; add a prio argument to
2319         msgq_add
2320
2321         * ircd/send.c: remove sendbuf; remove GODMODE code; switch to
2322         using msgq functions instead of dbuf functions; remove old, dead
2323         sendto_* functions; redo send_buffer to take a struct MsgBuf;
2324         rework sendcmdto_* functions to make use of the new struct MsgBuf
2325
2326         * ircd/s_user.c: remove hunt_server; restructure send_user_info to
2327         make appropriate use of struct MsgBuf
2328
2329         * ircd/s_debug.c (count_memory): count memory used by the MsgQ
2330         system and report it
2331
2332         * ircd/s_conf.c (read_configuration_file): use
2333         sendto_opmask_butone instead of the now dead sendto_op_mask
2334
2335         * ircd/s_bsd.c: switch to using appropriate MsgQLength and other
2336         calls on sendQ
2337
2338         * ircd/parse.c (parse_server): get rid of a piece of GODMODE code
2339
2340         * ircd/msgq.c: add msgq_append and msgq_bufleft; fix a bug in
2341         msgq_clean
2342
2343         * ircd/m_version.c: fix spelling in comments marking dead code
2344
2345         * ircd/m_userip.c (userip_formatter): restructure to make use of
2346         struct MsgBuf
2347
2348         * ircd/m_userhost.c (userhost_formatter): restructure to make use
2349         of struct MsgBuf
2350
2351         * ircd/m_stats.c: use MsgQLength on a sendQ
2352
2353         * ircd/m_settime.c: use MsgQLength instead of DBufLength on a
2354         sendQ; mark a piece of dead code
2355
2356         * ircd/m_names.c: use send_reply instead of sendto_one
2357
2358         * ircd/m_mode.c: use new mode; remove old dead code
2359
2360         * ircd/m_ison.c (m_ison): restructure to make use of struct MsgBuf
2361
2362         * ircd/m_burst.c: use BUFSIZE instead of IRC_BUFSIZE; remove old
2363         dead code
2364
2365         * ircd/listener.c (accept_connection): use sendto_opmask_butone
2366         instead of sendto_op_mask
2367
2368         * ircd/list.c (free_client): use MsgQClear to clear sendQ
2369
2370         * ircd/ircd_reply.c: remove send_error_to_client; restructure
2371         send_reply to make use of struct MsgBuf
2372
2373         * ircd/dbuf.c (dbuf_put): remove argument to flush_sendq_except,
2374         since its no longer used (at least currently)
2375
2376         * ircd/channel.c: restructure send_channel_modes to make use of
2377         struct MsgBuf; remove set_mode, add_token_to_sendbuf, cancel_mode,
2378         and send_hack_notice; use BUFSIZE instead of IRC_BUFSIZE
2379
2380         * ircd/Makefile.in: add msgq.c to list of sources; run make depend
2381
2382         * ircd/IPcheck.c: use sendcmdto_one instead of sendto_one
2383
2384         * include/send.h: send_buffer now takes a struct MsgBuf * instead
2385         of a char *; flush_sendq_except now takes no arguments, as sendq
2386         flushing currently only happens in dbuf.h and sendQ is a struct
2387         MsgQ; remove prototypes for a lot of old sendto_* functions that
2388         aren't used anymore; remove sendbuf and IRC_BUFSIZE--the former is
2389         no longer needed, and the latter is identical to BUFSIZE in
2390         ircd_defs.h
2391
2392         * include/s_user.h: make InfoFormatter take a struct MsgBuf*
2393         instead of a char *; also make it return void, instead of char *
2394
2395         * include/msgq.h: add msgq_append and msgq_bufleft functions
2396
2397         * include/client.h: use a struct MsgQ instead of a struct DBuf for
2398         sendq
2399
2400         * doc/Configure.help: Remove help for compile-time options that
2401         have gone away
2402
2403         * config/config-sh.in: remove CONFIG_NEWMODE
2404
2405         * ircd/m_server.c (mr_server): don't send server IPs in any server
2406         notices
2407
2408         * ircd/msgq.c (msgq_vmake): add \r\n to messages
2409
2410 2000-12-07  Kevin L. Mitchell  <klmitch@mit.edu>
2411
2412         * include/msgq.h: declare the MsgQ API
2413
2414         * ircd/msgq.c: implementation of new MsgQ system
2415
2416 2000-12-06  Kevin L. Mitchell  <klmitch@mit.edu>
2417
2418         * ircd/ircd_features.c: #include was supposed to be for
2419           ircd_features.h, not features.h--missed when I had to do a
2420           rename because of namespace collision
2421
2422 2000-12-05  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2423         * ircd/m_topic.c: Added missing braces that caused all remote
2424           topics to be ignored.
2425
2426 2000-12-04  Kevin L. Mitchell  <klmitch@mit.edu>
2427
2428         * ircd/m_create.c: I'm tired of the exit_client warning :)
2429         (ms_create): discovered that exit_client() was being called with
2430         too few arguments
2431
2432         * ircd/s_misc.c (exit_client): remove all dependance on
2433         FNAME_USERLOG, since that's now gone; log only to LS_USER
2434
2435         * ircd/s_debug.c: USE_SYSLOG no longer means anything
2436
2437         * ircd/m_oper.c (m_oper): no longer log to LS_OPERLOG--we already
2438         log to LS_OPER
2439
2440         * ircd/m_kill.c: no longer conditionalize on SYSLOG_KILL
2441
2442         * ircd/ircd_log.c: remove LS_OPERLOG, LS_USERLOG
2443
2444         * include/ircd_log.h: remove LS_OPERLOG, LS_USERLOG--they serve
2445         the same purpose as LS_USER and LS_OPER
2446
2447         * config/config-sh.in: remove no longer relevant log config
2448         variables
2449
2450         * ircd/uping.c (uping_init): use log_write instead of ircd_log
2451
2452         * ircd/s_misc.c (exit_client): use log_write instead of ircd_log
2453
2454         * ircd/s_conf.c: use log_write instead of ircd_log
2455
2456         * ircd/s_bsd.c (report_error): use log_write instead of ircd_log
2457
2458         * ircd/s_auth.c (timeout_auth_queries): use log_write instead of
2459         ircd_log
2460
2461         * ircd/res.c (send_res_msg): use log_write instead of ircd_log
2462
2463         * ircd/m_who.c: use log_write instead of write_log; no longer
2464         conditionalize on WPATH; mark dead ircd_log calls
2465
2466         * ircd/m_uping.c: mark dead ircd_log call
2467
2468         * ircd/m_server.c (mr_server): use log_write instead of ircd_log
2469
2470         * ircd/m_restart.c: use log_write instead of ircd_log; mark dead
2471         ircd_log calls
2472
2473         * ircd/m_rehash.c (mo_rehash): use log_write instead of ircd_log
2474
2475         * ircd/m_oper.c: use log_write instead of ircd_log; no longer
2476         conditionalize on FNAME_OPERLOG; mark dead ircd_log calls
2477
2478         * ircd/m_kill.c: mark dead ircd_log calls
2479
2480         * ircd/m_connect.c: use log_write instead of ircd_log; mark dead
2481         ircd_log
2482
2483         * ircd/m_clearmode.c: use log_write instead of write_log; no
2484         longer conditionalize on OPATH
2485
2486         * ircd/jupe.c: use log_write instead of write_log; no longer
2487         conditionalize on JPATH
2488
2489         * ircd/ircd_log.c: add USER subsystem; remove ircd_log() compat
2490         function; fix a couple of bugs
2491
2492         * ircd/ircd_alloc.c: fixed a comment
2493
2494         * ircd/ircd.c: use log_write instead of ircd_log; fold server
2495         notice generation in a couple of cases
2496
2497         * ircd/gline.c: use log_write instead of write_log; no longer
2498         conditionalize on GPATH
2499
2500         * ircd/channel.c (modebuf_flush_int): use log_write instead of
2501         write_log; no longer conditionalize on OPATH
2502
2503         * ircd/Makefile.in: run make depend, since dependencies have
2504         changed
2505
2506         * doc/example.conf: add system USER to documentation
2507
2508         * include/ircd_log.h: add system USER; remove old ircd_log()
2509         declarations
2510
2511 2000-12-04  Isomer <isomer@coders.net>
2512         * ircd/m_names.c: Add NAMES_EON to do_names to say add a
2513         'end_of_names' reply when done.
2514         * ircd/m_join.c: use NAMES_EON as mentioned above
2515
2516 2000-12-01  net  <simms@LUCIDA.QC.CA>
2517
2518         * ircd/motd.c: add a freelist for struct Motds
2519
2520 2000-11-30  Kevin L. Mitchell  <klmitch@mit.edu>
2521
2522         * ircd/s_stats.c (report_feature_list): report features--only
2523         local opers can see logging configuration, since it doesn't really
2524         mean anything to users
2525
2526         * ircd/s_err.c: add reply messages for new feature subsystem
2527
2528         * ircd/s_conf.c: add F lines to .conf
2529
2530         * ircd/parse.c: add the message descriptions for /set, /reset, and
2531         /get
2532
2533         * ircd/m_stats.c: add /stats f
2534
2535         * ircd/m_set.c (mo_set): implement /set
2536
2537         * ircd/m_reset.c (mo_reset): implement /reset
2538
2539         * ircd/m_rehash.c: /rehash m now flushes MOTD cache, and /rehash l
2540         reopens log files (for log file rotation)
2541
2542         * ircd/m_get.c (mo_get): implement /get
2543
2544         * ircd/ircd_log.c: use int instead of void return value; add
2545         log_report_features() and log_canon(); fix a function that
2546         disappears if DEBUGMODE not #define'd
2547
2548         * ircd/ircd_features.c: functions to manipulate feature settings
2549         either from the config file or with the new /set, /reset, and /get
2550         commands
2551
2552         * ircd/Makefile.in: add new .c files, run make depend
2553
2554         * include/s_stats.h: declare report_feature_list() (/stats f
2555         handler)
2556
2557         * include/numeric.h: add RPL_STATSFLINE, RPL_FEATURE,
2558         ERR_NOFEATURE, ERR_BADLOGTYPE, ERR_BADLOGSYS, and ERR_BADLOGVALUE
2559         reply numerics
2560
2561         * include/msg.h: add defines for SET, RESET, and GET
2562
2563         * include/ircd_log.h: add a function to canonicalize subsystem
2564         names; change some void return values to int
2565
2566         * include/ircd_features.h: new features subsystem handles all the
2567         manipulation of special features, like log files
2568
2569         * include/handlers.h: declare new mo_{s,res,g}et message handlers
2570         for fiddling with features run-time
2571
2572         * include/client.h (SNO_DEFAULT): don't set SNO_DEBUG by default;
2573         seemed like a good idea at the time...
2574
2575         * doc/example.conf: document new F lines
2576
2577 2000-11-29  Kevin L. Mitchell  <klmitch@mit.edu>
2578
2579         * ircd/s_debug.c: rewrite debug_init() and vdebug() in terms of
2580         new logging functions, which have special support for the debug
2581         log; added loop detection to vdebug(), so that I can
2582         sendto_opmask_butone() from log_vwrite() without incurring another
2583         call to vdebug()
2584
2585         * ircd/s_conf.c (rehash): call log_reopen() from rehash routine;
2586         this allows log file rotations
2587
2588         * ircd/m_kill.c: call log_write_kill() instead of ircd_log_kill()
2589
2590         * ircd/ircd_log.c: much more work fleshing out the interface;
2591         removed old interface; included backwards-compat ircd_log()
2592         function that logs to subsystem LS_OLDLOG
2593
2594         * ircd/ircd.c: switch to new log_init()/log_close()/log_reopen()
2595         functions
2596
2597         * include/ircd_log.h: include stdarg.h for va_list; move ordering
2598         warning to top of file; fill out LogSys enum; declare new
2599         log_debug_init(), log_vwrite(), log_write_kill(), and
2600         log_[sg]et_*() functions; add flags argument to log_write();
2601         defined flags to inhibit various logging actions
2602
2603         * include/client.h: added support for new SNO_DEBUG, enabled only
2604         if DEBUGMODE is defined
2605
2606 2000-11-28  Kevin L. Mitchell  <klmitch@mit.edu>
2607
2608         * ircd/ircd_log.c: make sure the various LOG_* constants are
2609         defined (probably not needed, since #include <syslog.h> isn't
2610         conditional); various static data needed for the new logging
2611         functions; definitions of new logging functions
2612
2613         * include/ircd_log.h: new LogSys enum, declarations for part of
2614         new logging API
2615
2616         * ircd/motd.c: we were setting type to MOTD_CLASS unconditionally,
2617         which was of course stupid; switched to using switch/case in
2618         initialization in motd_create(); zero the MotdList.other pointer
2619         from motd_clear()
2620
2621         * ircd/ircd.c (main): motd_init() has to come before init_conf(),
2622         or we overwrite init_conf()'s hard work with respect to T-lines
2623
2624 2000-11-27  Kevin L. Mitchell  <klmitch@mit.edu>
2625
2626         * ircd/s_stats.c: comment out report_motd_list and include a
2627         reference to motd_report()
2628
2629         * ircd/s_conf.c: rip out the old MOTD manipulation functions; call
2630         motd_add() from the conf parser; call motd_clear() from the rehash
2631         routine; remove the no longer needed memory clearing and reloading
2632         stuff from the rehash service routine
2633
2634         * ircd/motd.c: loads new API, including static internal functions
2635         to do allocation/deallocation, etc.
2636
2637         * ircd/m_stats.c: use new motd_report() instead of
2638         report_motd_list()
2639
2640         * ircd/m_motd.c: use new syntax for motd_send()
2641
2642         * ircd/ircd.c: use new motd_init() function
2643
2644         * ircd/Makefile.in (SRC): forgot to add motd.c to SRC in
2645         Makefile.(in); also ran make depend
2646
2647         * include/motd.h: don't need config.h, but now do need time.h;
2648         define new structures and constants; redefine old API and define
2649         new functions
2650
2651 2000-11-22  Kevin L. Mitchell  <klmitch@mit.edu>
2652
2653         * ircd/s_user.c (register_user): use motd_signon() instead of
2654         calling m_motd; much cleaner this way
2655
2656         * ircd/motd.c: write the new motd_* stuff to make MOTD handling
2657         less of a crock
2658
2659         * ircd/m_motd.c: rewrite m{,s}_motd to call out to new motd_*
2660         functions
2661
2662         * include/motd.h: define new MOTD API stuff
2663
2664 2000-11-20  Kevin L. Mitchell  <klmitch@mit.edu>
2665
2666         * ircd/ircd_reply.c (protocol_violation): rewrite
2667         protocol_violation so it'll actually work
2668
2669         oh, yeah, use %s -> cptr->name, instead of %c -> cptr, so we get
2670         the client's real name in there.
2671
2672         * ircd/m_motd.c (m_motd): Iso's addition of get_client_class(sptr)
2673         resulted in core dumps if NODEFAULTMOTD is defined, because m_motd
2674         gets called from register_user with a NULL sptr.  This is probably
2675         a design problem, but this bandaid will do for now...
2676
2677 2000-11-19  Isomer <isomer@coders.net>
2678         * ircd/ircd_reply.c: added 'protocol_violation', thus alerting us
2679         to problems in the server<->server protocol.
2680
2681         * ircd/m_connect.c: allow remote connects with a port of '0'
2682         meaning to use the port in the config file.
2683
2684         * ircd/m_create.c: Enable hacking protection, lets see how far we
2685         get.
2686
2687         * ircd/m_error.c: The RFC says never accept ERROR from unreg'd
2688         clients, so we don't any more.
2689
2690         * ircd/m_kill.c: The kill path is now made up of numnicks of servers,
2691         and the user@host is displayed of the victim.
2692
2693         * ircd/m_map.c: reloaded 'dump_map'.
2694
2695         * ircd/m_trace.c: allow per class T:
2696
2697         * ircd/m_stats.c: allow local opers /remote stats anywhere on the 'net.
2698
2699 2000-11-17  Isomer <isomer@coders.net>
2700
2701         * ircd/m_topic.c: Fixed bug where we'd only send to clients topics
2702         that were the *same* instead of different.  Oh the embarrasment!
2703
2704         * ircd/IPcheck.c: Merged net's fix.
2705
2706 2000-11-02  Kevin L. Mitchell  <klmitch@mit.edu>
2707
2708         * ircd/m_whois.c: remove compiler warning by adding a newline to
2709         end of file
2710
2711         * ircd/m_names.c: moved the flags up to s_user.h
2712
2713         * ircd/m_join.c: call do_names instead of m_names; restructure
2714         ms_join to never transmute a JOIN into a CREATE, but use the TS in
2715         the JOIN (if present) to timestamp the channel
2716
2717         * ircd/channel.c: send JOINs individually, instead of grouping
2718         them, so that we can send the channel's creation time
2719
2720         * include/s_user.h: declare do_names()
2721
2722 2000-10-30  Isomer <isomer@coders.net>
2723         * ircd/m_oper.c: Fixed warning
2724
2725 2000-10-30  Isomer <isomer@coders.net>
2726         * ircd/m_oper.c: Fixed over agressive cut and no paste
2727
2728 2000-10-30  Isomer <isomer@coders.net>
2729
2730         * ircd/m_topic.c: Restructured, fixed bug where topics on local
2731         channels are propergated (I forget who pointed this out to me, but
2732         thanks anyway).  Also to save bandwidth don't send the topic to
2733         users if the topic is already the same on the server (but still
2734         propergate to other servers).  X/W's "autotopic" feature must
2735         chew a lot of bandwidth, hopefully this will help reduce this.
2736
2737         * doc/rfc1459.rfc: Updated documentation on /topic.
2738
2739         * ircd/listener.c: snotice warnings about failed accept()'s
2740         potentially warning admins that they're running out of fd's.
2741
2742         * ircd/stats.c, ircd/class.c: Removed /stats v, added number of
2743         people in a class in /stats y
2744
2745         * ircd/m_create.c: Checks for timewarp hacking and squit's
2746         evil servers. (currently disabled)
2747         
2748
2749 2000-10-30  net <simms@lucida.qc.ca>
2750         
2751         * ircd/gline.c: Fixed various bugs Isomer left behind.
2752
2753 2000-10-26  Kevin L. Mitchell  <klmitch@mit.edu>
2754
2755         * ircd/m_join.c (m_join): reply on attempt to join a BADCHANed
2756         channel is now ERR_BANNEDFROMCHAN instead of ERR_BADCHANNAME
2757
2758 2000-10-24  Kevin L. Mitchell  <klmitch@mit.edu>
2759
2760         * ircd/channel.c: ok, now last mode rules; mode +ps will always
2761         result in +s (and won't send a mode if the channel is already +s);
2762         mode +sp will always result in +p; -n+n on a +n channel results in
2763         no mode change; -n+n on a -n channel results in a +n mode change;
2764         etc.
2765
2766 2000-10-23  Kevin L. Mitchell  <klmitch@mit.edu>
2767
2768         * ircd/channel.c: add "add" and "del" elements to ParseState to
2769         avoid not-too-pretty -p+s when +s is sufficient; fix a bug in
2770         mode_parse_limit that caused it to clear all channel modes
2771         prematurely; restructure mode_parse_mode to avoid calling
2772         modebuf_mode too early (ties in with first mentioned change);
2773         better logic for +p/+s mutual exclusivity; initialize "add" and
2774         "del" elements in mode_parse; send simple modes down to
2775         modebuf_mode after the loop in mode_parse
2776
2777 2000-09-28  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2778         * ircd/m_names.c: Fixed a non-lethal logic error that 
2779         triggers an assert() in find_member_link while debugging.
2780         (Spotted by Maniac-).
2781 2000-09-19  Thomas Helvey <helveytw@home.com>
2782         * ircd/s_conf.c: move K:lines to their own list and data
2783         structures, add supporting code.
2784         * ircd/m_stats.c: cleanup stats processing a bit move
2785         kline listing code to a new function, haven't figured
2786         out where it goes yet tho'
2787         * ircd/s_stats.c: added K:line bulk lister
2788         * include/s_conf.h: added new DenyConf struct
2789         * *[ch]: fixeup code that depended on changes
2790
2791 2000-09-17  Thomas Helvey <helveytw@home.com>
2792         * ircd/class.c: encapsulate class list
2793         * include/class.h: clean up classes
2794         * * fixup code that depended on changes
2795
2796 2000-09-17  Thomas Helvey <helveytw@home.com>
2797         * ircd/s_conf.c: add me to local conf
2798         * include/s_conf.h: move CONF_ME macro to chkconf.c
2799         * ircd/s_bsd.c: cleanup initialization, allow virtual host
2800         to be changed by rehash
2801
2802 2000-09-17  Thomas Helvey <helveytw@home.com>
2803         * include/class.h: add missing prototype
2804         * ircd/class.c: make argument to get_conf_class const
2805
2806 2000-09-17  Thomas Helvey <helveytw@home.com>
2807         * ircd/*.c: merged in changes from 2.10.10.pl12, cleanup
2808         merge conflicts.
2809         * ircd/*.h: merged in changes from 2.10.10.pl12, cleanup
2810         merge conflicts
2811
2812 2000-09-16  Thomas Helvey <helveytw@home.com>
2813         * ircd/s_conf.c: add code for server struct
2814         * ircd/client.c: copy of class.c sort of, new file for client
2815         specific operations, will move things here as appropriate,
2816         currently only one function is exported from here.
2817         * ircd/*.c: general logic cleanups, convert negatives to
2818         positives in places.
2819
2820 2000-09-16  Thomas Helvey <helveytw@home.com>
2821         * ircd/s_conf.c: add code for new crule data structs, strip quotes
2822         * ircd/crule.c: clean up scary casting a bit, type safety stuff
2823         * include/s_conf.h: add CRuleConf struct and support, remove
2824         unused constants
2825         * include/crule.h: type safety cleanups
2826         * ircd/*.c: fixup code that depended on stuff I changed
2827
2828 2000-09-15  Thomas Helvey <helveytw@home.com>
2829         * ircd/s_conf.c: start adding code for new conf data structs, changed
2830         listeners, admin line, motd lines, class lines. Move validate_hostent
2831         to resolver. General mayhem.
2832         * include/s_conf.h: new data structs and accessors
2833         * ircd/res.c: move validate_hostent here, rewrite, use regular
2834         expression for validation.
2835         * doc/example.conf: update docs for port
2836
2837 2000-09-14  Thomas Helvey <helveytw@home.com>
2838         * ircd/s_conf.c (conf_init): rewrite conf file parser, start to break
2839         up conf_init into managable chunks.
2840         * ircd/listener.c (set_listener_mask): fix logic bug core dump.
2841         * include/s_conf.h: add new data struct for local info (unwinding the mess).
2842
2843 2000-09-13  Thomas Helvey <helveytw@home.com>
2844         * ircd/list.c: put Clients in free lists, pre-allocate MAXCONNECTIONS
2845         local clients.
2846         * ircd/list.c: put SLinks in free lists
2847         * ircd/channel.c: put Memberships in free lists
2848         * ircd/ircd.c: rearrange initializations a bit in main
2849         Note: With these changes, ircd NEVER frees Clients, SLinks or
2850         Memberships. It will also rarely need to allocate new
2851         ones during net bursts and other disruptions. This should
2852         cut down on memory fragmentation a bit as well.
2853
2854 2000-08-30  Kevin L. Mitchell  <klmitch@mit.edu>
2855
2856         * ircd/m_names.c (do_names): pull-up from do_names fix in
2857         u2.10.10.pl11
2858
2859 2000-07-15  Perry Lorier       <Isomer@coders.net>
2860         * various: IP only k:'s and G:'s now do bit tests instead of two(!) 
2861                  match()'s.  Major Major cpu savings.  Also speed up the
2862                  other case slightly.  As a side effect you can now
2863                  k/Gline *@10.0.0.0/8.  I'll do bans tomorrow, it's nearing
2864                  3am.
2865
2866 2000-07-15  Perry Lorier       <Isomer@coders.net>
2867         * various: Fixed warnings after compiling on an alpha.
2868 2000-07-09  Perry Lorier       <Isomer@coders.net>
2869         * doc/ircd.8: Applied grammitical changes by Liandrin, applied
2870                       changes suggested by various other people.
2871         * ircd/IPcheck.c: More bug fixes.  Current problem appears to be
2872                         that it gets a corrupt entry somehow.
2873 2000-07-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2874         * ircd/m_oper.c: Clean up compiler warning.
2875
2876 2000-07-08  Perry Lorier       <Isomer@coders.net>
2877         * doc/ircd.8: Updated the documentation, it was slightly out of date
2878                       being updated around 1989.
2879         * ircd/m_whois.c: Rewrote for clarity, and probably a bit more speed.
2880                           fixed a few minor glitches.
2881         * doc/rfc1459.unet: Updated.
2882         * ircd/IPcheck.c: Fixed more bugs.
2883         * ircd/s_bsd.c: We now keep track of servers we've conected.
2884
2885 2000-07-02  Perry Lorier       <Isomer@coders.net>
2886         * ircd/s_misc.c: Fixed remote IPcheck bug.  Ok, I'm a moron, so sue
2887                         me.  Thanks to Hektik, thanks thanks thanks thanks
2888                         thanks thanks thanks thanks thank thanks thank thanks
2889
2890 2000-07-01  Perry Lorier       <Isomer@coders.net>
2891         * ircd/s_conf.c: "Fixed" the "bug" where people would "evade" K:'s.
2892         * ircd/s_conf.c, include/IPcheck.h: Fixed compile warnings.
2893
2894 2000-06-22  Perry Lorier       <Isomer@coders.net>
2895         * ircd/IPcheck.c: Large chunks redone.
2896         * ircd/s_conf.c: Changes due to IPcheck - ONE nolonger supported,
2897                         single AND double digit limits are allowed now.
2898         * misc other: Changes to IPcheck.
2899
2900 2000-06-30  Perry Lorier       <Isomer@coders.net>
2901         * ircd/ircd.c: Fix command line parameter bugs.
2902
2903 2000-06-30  Perry Lorier       <Isomer@coders.net>
2904         * ircd/m_kill.c: Fixed bug with LOCAL_KILL_ONLY
2905         * ircd/m_nick.c: Tidied things up.
2906
2907 2000-06-12 Joseph Bongaarts <foxxe@trms.com>
2908         * ircd/m_stats.c: Iso forgot mo_stats when he added /stats v
2909         
2910 2000-05-29  Perry Lorier       <Isomer@coders.net>
2911         * ircd/m_stats.c: add /stats v to do only the last part of the /trace
2912         * ircd/IPcheck.c: Cosmetic change, if we meddle with it enough do
2913                         you think it'll get bored and fix itself?
2914
2915 2000-06-09  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2916
2917         * ircd/m_names.c: Clean up compiler warnings.
2918
2919 2000-06-09  Kevin L. Mitchell  <klmitch@mit.edu>
2920
2921         * ircd/channel.c (mode_parse_client): don't send warning if
2922         there's not enough arguments for a +/-o/v; means the habit of
2923         doing "/mode #channel +oooooo bob" doesn't result in a bunch of
2924         error messages
2925
2926 2000-06-04  Greg Sikorski <gte@atomicrevs.demon.co.uk>
2927
2928         * ircd/m_names.c: Re-factor code to remove unneccessary
2929         GlobalChannelList iteration every time someone joins a channel.
2930
2931 2000-06-02  Kevin L. Mitchell  <klmitch@mit.edu>
2932
2933         * ircd/s_user.c: add struct Gline * argument to register_user;
2934         look up global glines and repropagate them if necessary; send
2935         acknowledgement of gline to remote servers when registering users
2936
2937         * ircd/s_serv.c (server_estab): don't send acknowledgement of
2938         local glines to remote servers; do send gline acknowledgement of
2939         bursted users
2940
2941         * ircd/m_user.c (m_user): pass new struct Gline * argument to
2942         register_user
2943
2944         * ircd/m_pong.c: pass new struct Gline * argument to register_user
2945
2946         * ircd/m_nick.c (ms_nick): document protocol change
2947
2948         * ircd/gline.c: support GLINE_LASTMOD
2949
2950         * include/s_user.h: add struct Gline * argument to register_user
2951
2952         * include/gline.h: add GLINE_LASTMOD to look up non-zero lastmods
2953
2954         * ircd/s_conf.c (find_kill): add unsigned int argument to
2955         gline_lookup()
2956
2957         * ircd/gline.c: add GLINE_GLOBAL to lookup or find only global
2958         glines; add unsigned int argument to gline_lookup()
2959
2960         * include/gline.h: add GLINE_GLOBAL flag; add unsigned int
2961         argument to gline_lookup()
2962
2963         * ircd/m_server.c: Resend jupe only when there is no %<lastmod>
2964         parameter, or when it falls out of bounds: see comments prior to
2965         call to jupe_resend(); call server_estab with struct Jupe
2966         parameter, so that we place the appropriate %<lastmod> in the
2967         appropriate place.
2968
2969         * ircd/s_serv.c (server_estab): send %<lastmod> for introduced
2970         server, as well as for servers when we're sending the BURST
2971
2972         * include/s_serv.h: add a struct Jupe * to the arguments for
2973         server_estab() so that we can send the appropriate lastmod
2974         parameter
2975
2976         * ircd/m_gline.c (ms_gline): actually, this should be the
2977         slightest bit more efficient...
2978
2979         * ircd/m_jupe.c (ms_jupe): actually, this should be the slightest
2980         bit more efficient...
2981
2982         * ircd/m_gline.c (ms_gline): inhibit GLINE processing resends
2983         during netburst
2984
2985         * ircd/m_jupe.c (ms_jupe): inhibit JUPE processing resends during
2986         netburst
2987
2988         * ircd/channel.c (joinbuf_join): really remove user from local
2989         channels
2990
2991 2000-05-29  Perry Lorier       <Isomer@coders.net>
2992         * ircd/m_names.c: Removed redundant space. 
2993         * ircd/s_bsd.c: Fixed incorrect syntax on ERROR line.
2994
2995 2000-05-18  Kevin L. Mitchell  <klmitch@mit.edu>
2996
2997         * ircd/m_burst.c (ms_burst): er...that should have been a ",", not
2998         a " "
2999
3000 2000-05-04  Kevin L. Mitchell  <klmitch@mit.edu>
3001
3002         * ircd/channel.c: replace bogus assertions with returns, which is
3003         logically correct; only wipe out limit/key if they were originally
3004         set in the first place; remove user from channel when doing a
3005         PARTALL; only send MODE +o for user CREATEing channel if user is
3006         not MyUser--CREATE will only be used if the channel did not
3007         originally exist, therefore we can assume no one local is on the
3008         channel anyway, and we don't exactly need for the user to see an
3009         explicit +o for themselves
3010
3011         * doc/readme.gline: describe the syntax of the GLINE command
3012
3013         * doc/readme.jupe: update to reflect a couple of changes to JUPE
3014
3015         * ircd/gline.c: don't propagate local changes
3016
3017         * ircd/jupe.c: don't propagate local changes
3018
3019         * ircd/m_gline.c (mo_gline): force local flag when deactivating
3020         glines with 0 lastmod
3021
3022         * ircd/gline.c (gline_deactivate): G-lines with zero lastmod time
3023         are now removed instead of being deactivated
3024
3025         * ircd/m_gline.c (ms_gline): make G-lines of the form "GLINE *
3026         -<mask>" be accepted
3027
3028         * ircd/channel.c (send_channel_modes): deal with one of the last
3029         vestiges of sendbuf
3030
3031         * ircd/m_burst.c (ms_burst): debugged ban processing; removed
3032         debugging hooks
3033
3034         * ircd/channel.c (modebuf_extract): remove debugging
3035         sendto_opmask_butone calls
3036
3037 2000-05-03  Kevin L. Mitchell  <klmitch@mit.edu>
3038
3039         * ircd/channel.c: support a couple of new flags to support using
3040         mode_parse; fix some bugs with 0 struct ModeBuf *; implementation
3041         of modebuf_extract to extract added flags for use by ms_burst
3042
3043         * include/channel.h: a couple of new flags to support using
3044         mode_parse inside ms_burst
3045
3046         * ircd/m_burst.c (ms_burst): brand new implementation of BURST
3047
3048         * ircd/m_endburst.c: add loop to processing of end_of_burst to
3049         free empty channels after the BURST is over.
3050
3051         * ircd/m_server.c: convert to use new send.c functions--I wanted
3052         to rewrite it from scratch, but the logic's pretty complex; I may
3053         still rewrite it, though...
3054
3055 2000-05-02  Thomas Helvey <tomh@inxpress.net>
3056
3057         * ircd/ircd.c: fix broken header include ordering
3058
3059 2000-05-02  Thomas Helvey <tomh@inxpress.net>
3060         
3061         * ircd/IPcheck.c: cleanups for ZenShadow's cleanups
3062         review emailed privately
3063
3064         * include/IPcheck.h: removed unneeded include
3065
3066 2000-05-02  Kevin L. Mitchell  <klmitch@mit.edu>
3067
3068         * ircd/s_user.c (hunt_server): throw in a comment so I know what
3069         the sendto_one is for
3070
3071         * include/querycmds.h (Count_unknownbecomesclient): convert to
3072         sendto_opmask_butone
3073
3074         * ircd/send.c: start removing dead code
3075
3076         * include/send.h: start removing dead code
3077
3078         * ircd/m_rping.c: convert to sendcmdto_one / send_reply /
3079         hunt_server_cmd
3080
3081         * ircd/m_rpong.c: convert to sendcmdto_one / send_reply
3082
3083 2000-05-01  Kevin L. Mitchell  <klmitch@mit.edu>
3084
3085         * ircd/m_stats.c: convert to sendcmdto_one / send_reply
3086
3087         * ircd/m_kick.c: Completely reimplement m_kick
3088
3089         * ircd/channel.c: send_user_joins removed; it was dead code,
3090         anyway...
3091
3092 2000-05-01  Perry Lorier <isomer@coders.net>
3093         * ircd/m_invite.c: Fix for the rest of m_invite.c, and again.
3094         * ircd/channels.c: My fix for the part problem.  Untested, probably
3095                 won't work.  Can't be much worse than the current problem.
3096                 it'll either work or core, take your pick.
3097
3098
3099 2000-04-30  Perry Lorier <isomer@coders.net>
3100         * config/config-sh.in: Fix for CONNEXIT
3101         * ircd/s_{user,misc}.c: Fix for CONNEXIT
3102         * ircd/m_invite.c: Fix for incorrectly numnickified invite.
3103                         (Kev: Want to come talk to me about this?)
3104
3105 2000-04-30  Steven M. Doyle <steven@doyle.net>
3106         * ircd/ircd.c
3107           - general cleanups and readability enhancements
3108           - rewrite of setuid/chroot code.
3109           - server will no longer run as root
3110           - -DPROFIL compile option removed
3111           - Fixed IPcheck API calls
3112  
3113         * config/config-sh.in
3114           - Fixed up chroot compile options
3115           - Added options for debug and profile compiles
3116  
3117         * config/gen.ircd.Makefile
3118           - Support for new debug/profile options
3119  
3120         * ircd/Makefile.in
3121           - Support for new debug/profile options
3122  
3123         * ircd/ircd_signal.c
3124           - Removed -DPROFIL
3125
3126         * include/IPcheck.h
3127           - Removed old API prototypes, added new ones
3128         
3129         * ircd/IPcheck.c
3130           - Readability cleanups (well, I -think-...)
3131           - Changed IPRegistryEntry.last_connect to a time_t.  The previously
3132             used unsigned short was probably causing interesting things after
3133             a client had been connected longer than about 65,535 seconds...
3134           - Removed old API functions.
3135
3136         * ircd/whocmds.c
3137           - Removed IPcheck.h include
3138         
3139         * Additionally modified IPcheck API calls in:
3140           - ircd/m_nick.c
3141           - ircd/m_auth.c
3142           - ircd/s_bsd.c
3143           - ircd/s_conf.c
3144           - ircd/s_misc.c
3145           - ircd/s_serv.c
3146           - ircd/s_user.c
3147         
3148         
3149 2000-04-30  Perry Lorier <isomer@coders.net>
3150         * ircd/s_bsd.c: Sigh. :)
3151         * ircd/m_mode.c: fix for modeless channels by poptix.
3152
3153 2000-04-29  Kevin L. Mitchell  <klmitch@mit.edu>
3154
3155         * ircd/m_join.c: reimplement JOIN in terms of struct JoinBuf
3156
3157         * ircd/channel.c (clean_channelname): make clean_channelname also
3158         truncate long channel names
3159
3160 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
3161
3162         * ircd/m_create.c: reimplement CREATE in terms of struct JoinBuf
3163
3164         * ircd/channel.c: implemented joinbuf_init, joinbuf_join,
3165         joinbuf_flush
3166
3167         * include/channel.h: definitions and declarations for the struct
3168         JoinBuf abstraction
3169
3170 2000-04-29  Perry Lorier <isomer@coders.net>
3171         * ircd/s_bsd.c: Ok, so I thought I compiled and tested this...
3172
3173 2000-04-29  Perry Lorier <isomer@coders.net>
3174         * ircd/s_bsd.c: Add debugging code to IPcheck
3175
3176 2000-04-28  Kevin L. Mitchell  <klmitch@mit.edu>
3177
3178         * include/ircd_reply.h (SND_EXPLICIT): use instead of RPL_EXPLICIT
3179
3180         * ircd/ircd_reply.c (send_reply): use SND_EXPLICIT instead of
3181         RPL_EXPLICIT
3182
3183         * ircd/m_userhost.c (m_userhost): add a dead code comment
3184
3185         * ircd/m_desynch.c: forgot one...
3186
3187         * ircd/m_rehash.c (mo_rehash): er, duplicates :)
3188
3189         * ircd/m_proto.c (proto_send_supported): just change a comment so
3190         it doesn't show up in my scans
3191
3192         * ircd/ircd_reply.c (send_reply): fix a slight bug...
3193
3194         * ircd/s_numeric.c (do_numeric): use new sendcmdto_* functions,
3195         kinda hackish...
3196
3197         * ircd/parse.c (parse_server): argument wrangling to make
3198         processing in do_numeric a little easier to deal with
3199
3200         * ircd/s_serv.c (server_estab): SERVER should come from
3201         acptr->serv->up, not &me
3202
3203         * ircd/m_lusers.c: accidentally left out sptr for a %C
3204
3205         * ircd/send.c: hack to support doing wallchops...
3206
3207         * ircd/m_whowas.c: convert to new send functions
3208
3209         * ircd/m_whois.c: convert to new send functions
3210
3211         * ircd/m_who.c: convert to new send functions
3212
3213         * ircd/m_wallops.c: convert to new send functions
3214
3215         * ircd/m_wallchops.c: convert to new send functions
3216
3217         * ircd/m_version.c: convert to new send functions
3218
3219         * ircd/m_userip.c: convert to new send functions
3220
3221         * ircd/m_userhost.c: convert to new send functions
3222
3223         * ircd/m_uping.c: convert to new send functions
3224
3225         * ircd/m_trace.c: convert to new send functions
3226
3227         * ircd/m_topic.c: convert to new send functions
3228
3229         * ircd/m_time.c: convert to new send functions
3230
3231         * ircd/m_squit.c: convert to new send functions
3232
3233         * ircd/m_silence.c: convert to new send functions
3234
3235         * ircd/m_settime.c: convert to new send functions
3236
3237         * ircd/m_restart.c: convert to new send functions
3238
3239         * ircd/m_rehash.c: convert to new send functions
3240
3241         * ircd/m_privmsg.c: convert to new send functions
3242
3243         * ircd/m_pong.c: convert to new send functions
3244
3245         * ircd/m_ping.c: convert to new send functions
3246
3247         * ircd/m_pass.c: convert to new send functions
3248
3249         * ircd/m_opmode.c: convert to new send functions
3250
3251         * ircd/m_oper.c: convert to new send functions
3252
3253         * ircd/m_notice.c: convert to new send functions
3254
3255         * ircd/m_nick.c: convert to new send functions
3256
3257         * ircd/m_names.c: convert to new send functions
3258
3259         * ircd/m_motd.c: convert to new send functions
3260
3261         * ircd/m_mode.c: convert to new send functions
3262
3263         * ircd/m_map.c: convert to new send functions
3264
3265         * ircd/m_lusers.c: convert to new send functions
3266
3267         * ircd/m_list.c: convert to new send functions
3268
3269         * ircd/m_links.c: convert to new send functions
3270
3271         * ircd/m_kill.c: convert to new send functions
3272
3273         * ircd/m_jupe.c: convert to new send functions
3274
3275         * ircd/m_invite.c: convert to new send functions
3276
3277         * ircd/m_info.c: convert to new send functions
3278
3279         * ircd/m_help.c: convert to new send functions
3280
3281         * ircd/m_gline.c: convert to new send functions
3282
3283         * ircd/m_error.c: convert to new send functions
3284
3285         * ircd/m_endburst.c: convert to new send functions
3286
3287         * ircd/m_die.c: convert to new send functions
3288
3289         * ircd/m_destruct.c: convert to new send functions
3290
3291         * ircd/m_defaults.c: convert to new send functions
3292
3293         * ircd/m_connect.c: convert to new send functions
3294
3295 2000-04-28  Perry Lorier <isomer@coders.net>
3296         * RELEASE.NOTES: Describe a few more undocumented features.
3297         * config/config-sh.in: change the default paths for logging
3298         and the recommended number of channels.
3299         * include/supported.h: Rearrange slightly, added CHANTYPE's
3300
3301 2000-04-27  Kevin L. Mitchell  <klmitch@mit.edu>
3302
3303         * ircd/m_close.c: convert to send_reply
3304
3305         * ircd/m_clearmode.c: convert to send_reply, sendcmdto_serv_butone
3306
3307         * ircd/m_away.c: convert to send_reply and sendcmdto_serv_butone
3308
3309         * ircd/m_admin.c: convert to send_reply and hunt_server_cmd
3310
3311         * ircd/s_user.c (hunt_server_cmd): new hunt_server replacement
3312         that takes cmd and tok arguments, etc.  NOTE: THIS IMPLEMENTATION
3313         HAS A MAJOR HACK!!!  The whole hunt_server architecture should be
3314         carefully rethought...
3315
3316         * ircd/s_stats.c (hunt_stats): use new hunt_server_cmd
3317
3318         * include/s_user.h: hunt_server_cmd -- replacement for hunt_server
3319
3320         * ircd/s_misc.c: *sigh* 2.10.10 doesn't support squitting by
3321         numeric nick; therefore, we have to use the server name
3322
3323         * ircd/m_squit.c (ms_squit): allow to squit by server numeric nick
3324
3325         * ircd/send.c: fix minor bugs
3326
3327         * ircd/s_user.c (check_target_limit): mark dead code so I filter
3328         it when I grep
3329
3330         * ircd/s_serv.c (exit_new_server): mark dead code so I filter it
3331         when I grep
3332
3333         * ircd/parse.c: mark dead code so I filter it when I grep
3334
3335         * ircd/map.c: mark dead code so I filter it when I grep
3336
3337         * ircd/ircd.c: mark dead code so I filter it when I grep
3338
3339         * ircd/ircd_relay.c: convert over to new sendcmdto_*, send_reply
3340         functions
3341
3342         * ircd/channel.c: mark dead code so I filter it when I grep
3343
3344         * ircd/s_stats.c: use send_reply instead of sendto_one w/rpl_str;
3345         hope I'm not stepping on toes...
3346
3347         * ircd/s_conf.c: more sendto_opmask_butone / send_reply
3348         conversions; use ircd_snprintf in a couple of cases to negate the
3349         possibility of buffer overflow
3350
3351 2000-04-26  Kevin L. Mitchell  <klmitch@mit.edu>
3352
3353         * ircd/channel.c: convert as much as possible to new send
3354         semantics
3355
3356         * ircd/send.c (sendcmdto_common_channels): fix a subtle bug --
3357         test member->user->from->fd, not from->fd
3358
3359         * ircd/gline.c (gline_add): go ahead and add badchans; we just
3360         won't look for them in m_gline; this way, they always work...
3361
3362         * ircd/jupe.c: use ircd_vsnprintf conversion specifiers
3363
3364         * ircd/gline.c: since write_log now uses ircd_vsnprintf, use
3365         ircd_vsnprintf conversion specifiers
3366
3367         * ircd/support.c (write_log): use ircd_vsnprintf for write_log, so
3368         I have my conversion specifiers
3369
3370         * ircd/gline.c (do_gline): use send_reply for ERR_YOUREBANNEDCREEP
3371
3372         * ircd/send.c (sendcmdto_flag_butone): explicitly send WALLOPS to
3373         local users
3374
3375         * ircd/s_serv.c (exit_new_server): rewrite exit_new_server to be a
3376         little less brain-dead
3377
3378         * ircd/s_misc.c: use sendcmdto_one, sendrawto_one, and send_reply
3379
3380         * ircd/s_debug.c: use send_reply with RPL_EXPLICIT for
3381         RPL_STATSDEBUG
3382
3383         * ircd/res.c (cres_mem): use send_reply with RPL_EXPLICIT for
3384         RPL_STATSDEBUG
3385
3386         * ircd/list.c (send_listinfo): use send_reply with RPL_EXPLICIT
3387         for RPL_STATSDEBUG
3388
3389         * ircd/m_pong.c: use RPL_EXPLICIT for ERR_BADPING
3390
3391         * ircd/ircd.c: use RPL_EXPLICIT for ERR_BADPING
3392
3393         * ircd/s_user.c (register_user): use RPL_EXPLICIT for
3394         ERR_INVALIDUSERNAME
3395
3396         * ircd/ircd_reply.c (send_reply): support RPL_EXPLICIT
3397
3398         * include/ircd_reply.h (RPL_EXPLICIT): somewhat of a hack to mark
3399         a numeric as needing to use an explicit pattern, which will be the
3400         first argument in the variable argument list
3401
3402         * ircd/s_user.c: use sendrawto_one instead of sendto_one to send
3403         non-prefixed nospoof PING
3404
3405         * ircd/s_bsd.c: use sendrawto_one instead of sendto_one to send
3406         non-prefixed SERVER login
3407
3408         * ircd/ircd.c (check_pings): fix last sendto_one calls (except for
3409         a numeric usage further up)
3410
3411         * include/send.h: declare sendrawto_one
3412
3413         * ircd/send.c (sendrawto_one): new function to use ONLY for
3414         non-prefixed commands, like PING to client, or PASS/SERVER on
3415         server registration
3416
3417 2000-04-25  Kevin L. Mitchell  <klmitch@mit.edu>
3418
3419         * ircd/ircd_snprintf.c (doprintf): implement %H for possible
3420         future expansion (channel numerics?)
3421
3422         * include/ircd_snprintf.h: added documentation to # to explain use
3423         with %C; added documentation for : to explain use with %C; added
3424         documentation for %H for channels
3425
3426         * ircd/whocmds.c: use send_reply
3427
3428         * ircd/userload.c: use sendcmdto_one
3429
3430         * ircd/uping.c: use sendcmdto_one
3431
3432         * ircd/send.c: use new flags to %C format string; ':' prefixes
3433         client name with a colon for local connects, '#' uses
3434         nick!user@host form for local connects
3435
3436         * ircd/s_user.c: use send_reply, sendto_opmask_butone,
3437         sendcmdto_one, sendcmdto_serv_butone, sendcmdto_flag_butone
3438
3439         * ircd/s_serv.c: use sendcmdto_one, sendto_opmask_butone
3440
3441         * ircd/s_bsd.c: use sendto_opmask_butone, send_reply,
3442         sendcmdto_one
3443
3444         * ircd/s_auth.c: use sendto_opmask_butone
3445
3446         * ircd/res.c: use sendcmdto_one
3447
3448         * ircd/ircd_snprintf.c (doprintf): minor bug fixes and some
3449         debugging assertions
3450
3451 2000-04-24  Kevin L. Mitchell  <klmitch@mit.edu>
3452
3453         * ircd/support.c: dumpcore is no longer used, so get rid of it
3454
3455         * ircd/parse.c: use send_reply, sendcmdto_one
3456
3457         * ircd/map.c: use send_reply
3458
3459         * ircd/listener.c: use send_reply
3460
3461         * ircd/jupe.c: use sendto_opmask_butone, send_reply
3462
3463         * ircd/ircd_reply.c: use send_reply
3464
3465         * ircd/ircd.c: use sendto_opmask_butone
3466
3467         * ircd/gline.c: use sendto_opmask_butone, send_reply
3468
3469         * ircd/ircd_snprintf.c (doprintf): make it deal with incompletely
3470         registered clients; make FLAG_ALT print nick!user@host; make
3471         FLAG_COLON print :blah
3472
3473         * ircd/class.c (report_classes): use send_reply instead of
3474         sendto_one
3475
3476         * ircd/hash.c (m_hash): replace sendto_one with sendcmdto_one
3477
3478         * ircd/IPcheck.c (ip_registry_connect_succeeded): replace
3479         sendto_one with sendcmdto_one
3480
3481 2000-04-21  Kevin L. Mitchell  <klmitch@mit.edu>
3482
3483         * ircd/send.c: clean up logic in sendcmdto_channel_butone; use
3484         MyConnect() instead of IsServer() in sendcmdto_flag_butone; define
3485         sendcmdto_match_butone
3486
3487         * include/send.h: declare sendcmdto_match_butone
3488
3489 2000-04-20  Kevin L. Mitchell  <klmitch@mit.edu>
3490
3491         * ircd/jupe.c: update to use send_reply()
3492
3493         * ircd/gline.c: update to use send_reply()
3494
3495         * include/ircd_reply.h: declare send_reply
3496
3497         * ircd/ircd_reply.c (send_reply): send_error_to_client, but for
3498         replies; uses ircd_snprintf
3499
3500         * ircd/send.c: added comments to redirect searchers to appropriate
3501         sendcmdto_* function; moved new functions to end of file; added
3502         explanatory comments; reordered arguments; defined new functions
3503         mentioned below
3504
3505         * ircd/m_jupe.c: reorder arguments to sendcmdto_* functions
3506
3507         * ircd/m_gline.c: reorder arguments to sendcmdto_* functions
3508
3509         * ircd/jupe.c: reorder arguments to sendcmdto_* functions
3510
3511         * ircd/gline.c: reorder arguments to sendcmdto_* functions
3512
3513         * include/send.h: reorder arguments, add explanatory comments,
3514         declare new functions sendcmdto_flag_butone, sendto_opmask_butone,
3515         and vsendto_opmask_butone
3516
3517 2000-04-19  Kevin L. Mitchell  <klmitch@mit.edu>
3518
3519         * ircd/send.c: define sendcmdto_channel_butone, wrote a simplified
3520         vsendto_op_mask that uses '*' instead of the receiving client
3521         nickname
3522
3523         * include/send.h: declare sendcmdto_channel_butone; takes a skip
3524         argument that allows you to skip (or not to skip) deaf users,
3525         users behind bursting servers, and non channel operators
3526
3527 2000-04-17  Kevin L. Mitchell  <klmitch@mit.edu>
3528
3529         * ircd/send.c: new sendcmdto_channel_butserv -- note that old
3530         sendto_channel_butserv has a subtle bug; also wrote
3531         sendcmdto_common_channels.
3532
3533         * include/send.h: declare new sendcmdto_* functions
3534
3535         * ircd/jupe.c: support local deactivations of jupes
3536
3537         * ircd/gline.c: support local deactivations of glines
3538
3539         * include/jupe.h: JUPE_LDEACT allows jupes to be locally
3540         deactivated; if they aren't locally deactivated, then it slaves to
3541         the net-wide activation status; JupeIsRemActive() tests only
3542         whether the jupe is active everywhere else
3543
3544         * include/gline.h: GLINE_LDEACT allows glines to be locally
3545         deactivated; if they aren't locally deactivated, then it slaves to
3546         the net-wide activation status; GlineIsRemActive() tests only
3547         whether the gline is active everywhere else
3548
3549         * ircd/gline.c: detect overlapping G-lines; if an existing, wider
3550         gline expires after the new one will, we drop the new one,
3551         otherwise we add the G-line after that one (so the wide one will
3552         apply first); if the new one contains an existing G-line and if it
3553         will expire after the existing one, we drop the existing one to
3554         save memory
3555
3556         * ircd/m_gline.c (mo_gline): opers could issue remote local
3557         glines when CONFIG_OPERCMDS was off; fixed
3558
3559 2000-04-16  Kevin L. Mitchell  <klmitch@mit.edu>
3560
3561         * ircd/m_jupe.c (mo_jupe): allow target argument to be dropped if
3562         this is a local JUPE
3563
3564         * ircd/gline.c: add flags argument to gline_activate and
3565         gline_deactivate for future expansion
3566
3567         * ircd/m_gline.c: pass flags to gline_activate and
3568         gline_deactivate
3569
3570         * include/gline.h: add flags argument to gline_activate and
3571         gline_deactivate
3572
3573         * ircd/jupe.c: add flags argument to jupe_activate and
3574         jupe_deactivate for future expansion
3575
3576         * include/jupe.h: add flags argument to jupe_activate and
3577         jupe_deactivate
3578
3579         * ircd/m_jupe.c: pass a flags argument to jupe_add instead of
3580         local, active; pass flags to jupe_activate and jupe_deactivate
3581
3582         * include/gline.h: remove dead code
3583
3584         * ircd/gline.c: make gline expire times relative to CurrentTime,
3585         since that should be monotonically increasing, instead of
3586         TStime(), which can be set backwards, and which can therefore
3587         cause an expire time to increase; make local glines be removed
3588         instead of just deactivated; don't let gline_find() look for
3589         user@host glines if the mask being looked up is a channel mask
3590
3591         * ircd/send.c (vsendcmdto_one): forgot to account for the case
3592         where origin is a server and destination is a user
3593
3594         * ircd/jupe.c: make jupe expire times relative to CurrentTime,
3595         since that should be monotonically increasing, instead of
3596         TStime(), which can be set backwards, and which can therefore
3597         cause an expire time to increase; make local jupes be removed
3598         instead of just deactivated
3599
3600         * ircd/ircd_snprintf.c: d'oh, thanks for catching that; short for
3601         limit is fine.  any other warnings I should know about?
3602
3603 2000-04-15  Thomas Helvey <tomh@inxpress.net>
3604
3605         * ircd/*.c: const correctness and type safety cleanups to
3606         get code to compile with C++ compiler. Still has
3607         signed/unsigned comparison warnings.
3608
3609 2000-04-15  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3610
3611         * ircd/userload.c: change <sys/time.h> include to <time.h> for
3612           portability.
3613
3614 2000-04-14  Kevin L. Mitchell  <klmitch@mit.edu>
3615
3616         * ircd/m_gline.c (mo_gline): d'oh, target isn't a numeric; use %C
3617         and convert acptr...
3618
3619         * ircd/s_user.c: move gline_lookup function call into
3620         register_user, where it'll have a username to lookup!
3621
3622         * ircd/m_gline.c: modify to utilize new sendcmdto_* series of
3623         functions; also stuff send_error_to_client into return clauses
3624
3625         * ircd/m_jupe.c: modify to utilize new sendcmdto_* series of
3626         functions; also use send_error_to_client where that makes sense
3627
3628         * ircd/jupe.c: modify to utilize new sendcmdto_* series of
3629         functions; also use send_error_to_client where that makes sense
3630
3631         * ircd/gline.c: modify to utilize new sendcmdto_* series of
3632         functions; also fix gline_lookup() to deal properly with remote
3633         clients--boy, do struct Client and struct User need to be cleaned
3634         up!
3635
3636         * ircd/ircd_snprintf.c (doprintf): a dest of &me is a server,
3637         too...
3638
3639         * ircd/send.c: wrote sendcmdto_one(), vsendcmdto_one(), and
3640         sendcmdto_serv_butone(), all utilizing the %v conversion of
3641         ircd_snprintf()
3642
3643         * include/send.h: define IRC_BUFSIZE, max size of a message;
3644         declare sendcmdto_one(), vsendcmdto_one(), and
3645         sendcmdto_serv_butone()
3646
3647         * include/msg.h: define all the CMD_* constants needed to utilize
3648         the new sendcmdto_* series of functions
3649
3650         * ircd/Makefile.in (SRC): list ircd_snprintf.c; run make depend
3651
3652         * ircd/gline.c: remove old, dead code.
3653
3654         * ircd/m_gline.c (mo_gline): disallow setting of global G-lines
3655         unless CONFIG_OPERCMDS is enabled; disallow listing of all G-lines
3656         (don't advertise proxies); remove dead code
3657
3658         * ircd/parse.c: oper handler for JUPE only lists jupes unless
3659         CONFIG_OPERCMDS is enabled
3660
3661         * ircd/m_jupe.c (mo_jupe): don't compile mo_jupe() if
3662         CONFIG_OPERCMDS is not enabled; we'll disable it in parse.c
3663
3664         * ircd/m_opmode.c (mo_opmode): if CONFIG_OPERCMDS is not enabled,
3665         always return ERR_DISABLED
3666
3667         * ircd/m_clearmode.c (mo_clearmode): if CONFIG_OPERCMDS is not
3668         enabled, always return ERR_DISABLED
3669
3670         * ircd/s_err.c: add error message to indicate disabled commands
3671
3672         * include/numeric.h (ERR_DISABLED): to indicate disabled commands
3673
3674         * doc/Configure.help: add documentation for CONFIG_OPERCMDS
3675
3676         * config/config-sh.in: add CONFIG_OPERCMDS, default both it and
3677         CONFIG_NEW_MODE to 'y' for now
3678
3679         * ircd/gline.c (gline_list): fix a minor formatting bogon
3680
3681         * BUGS: since I fixed that bug, might as well mark it fixed.
3682
3683         * ircd/m_join.c: look up badchans with GLINE_EXACT
3684
3685         * ircd/m_gline.c: fix parc count problems; look up existing
3686         G-lines with GLINE_EXACT; only set new lastmod when
3687         activating/deactivating existing glines if old lastmod was not 0
3688
3689         * ircd/gline.c: forgot to copy the gline reason over; don't
3690         propagate a gline with 0 lastmod if origin is user; add
3691         GLINE_EXACT to force exact matching of gline mask
3692
3693         * ircd/ircd_snprintf.c (doprintf): forgot to deal with the zero
3694         flag properly
3695
3696         * ircd/s_conf.c (find_kill): gline_find() takes a char *userhost,
3697         but gline_lookup() actually takes a client--d'oh.
3698
3699 2000-04-13  Thomas Helvey <tomh@inxpress.net>
3700         * ircd/IPcheck.c: Back port BLMet's bugfix from 2.10.10
3701
3702 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3703
3704         * ircd/whocmds.c: Don't make idle flag default in /who, to prevent:
3705           "/who * x"
3706           "Gte3 H*iwg Gte@212.49.240.217 :1 :0 I am the one that was."
3707           (Found by Plexus).
3708
3709         * ircd/whocmds.c: Change idle time calc from socket idle to user
3710           idle.
3711
3712 2000-04-13  Kevin L. Mitchell  <klmitch@mit.edu>
3713
3714         * config/aclocal.m4 (unet_CHECK_TYPE_SIZES): check size of void *,
3715         too, for ircd_snprintf.c
3716
3717         * include/ircd_snprintf.h: documentation for ircd_(v)snprintf, in
3718         comments; mostly descended from the Linux manpage for printf, but
3719         also documenting the extensions.
3720
3721         * ircd/ircd_snprintf.c: NULL dest is equivalent to going to a
3722         client; make 'q' be the same as 'L'; remove __inline__; only
3723         define EXTENSION if HAVE_LONG_LONG is defined
3724
3725         * include/handlers.h: declare m_gline()
3726
3727         * ircd/parse.c: gline can be called by users, but it only lists
3728         the glines.
3729
3730         * ircd/s_user.c (set_nick_name): resend gline if a remote server
3731         introduces a glined client
3732
3733         * ircd/s_serv.c (server_estab): burst glines, too
3734
3735         * ircd/gline.c: fix up all the expire times to be offsets;
3736         simplify gline_resend()
3737
3738         * ircd/m_gline.c: begin coding replacements for ms_gline(),
3739         mo_gline(), and m_gline()
3740
3741         * ircd/gline.c (gline_add): allow *@#channel to work correctly;
3742         also, prohibit local BADCHANs if LOCAL_BADCHAN not defined
3743
3744 2000-04-13  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3745
3746         * tools/Bouncer/*: Add comments/documentation/tags.
3747         * tools/Bouncer/*: Add debug defines, make task fork().
3748
3749 2000-04-12  Thomas Helvey <tomh@inxpress.net>
3750         * ircd/s_err.c: Cleanup s_err.c make one table so we
3751         don't have to do anything tricky to get an error string.
3752
3753 2000-04-12  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3754         * Add port bouncer for http (x/w)
3755
3756 2000-04-12  Kevin L. Mitchell  <klmitch@mit.edu>
3757
3758         * ircd/s_conf.c (find_kill): replaced call to find_gline() with a
3759         call to gline_find(); also used GlineReason() instead of direct
3760         reference to structure member
3761
3762         * ircd/m_join.c (m_join): replace bad_channel() calls with calls
3763         to gline_find(name, GLINE_BADCHAN), and also check to see if gline
3764         is active
3765
3766         * ircd/channel.c: nothing seems to be called anywhere...
3767
3768         * ircd/s_err.c: update a couple of replies to dovetail with new
3769         semantics
3770
3771         * ircd/gline.c: begin complete re-implementation of gline.c along
3772         the lines of the final design of jupe.c
3773
3774         * include/gline.h: begin complete re-implementation of gline.c
3775         along the lines of the final design of jupe.c
3776
3777         * ircd/channel.c (mode_process_clients): fix "Deop of +k user on
3778         %s by %s" message...
3779
3780         * ircd/ircd_snprintf.c: my new snprintf()-like functions
3781
3782         * include/ircd_snprintf.h: my new snprintf()-like functions
3783
3784 2000-04-11  Thomas Helvey <tomh@inxpress.net>
3785         * ircd/IPcheck.c: removed old dead code
3786         * ircd/s_user.c (send_user_info): removed non-standard
3787           user not found message for userhost/userip
3788
3789 2000-04-11  Greg Sikorski <gte@atomicrevs.demon.co.uk>
3790
3791         * ircd/s_err.c: Added missing quotes to ERR_DONTCHEAT numeric.
3792         * doc/p10.html: Work on chapter 4.
3793
3794 2000-04-10  Kevin L. Mitchell  <klmitch@mit.edu>
3795
3796         * ircd/channel.c (mode_parse_client): fix coredump on /mode
3797         #foobar +o nosuchnick
3798
3799 2000-04-10  Perry Lorier  <Isomer@coders.net>
3800         * BUGS: Added bug.
3801
3802 2000-04-09  Thomas Helvey <tomh@inxpress.net>
3803         * include/IPcheck.h: fix prototype
3804         * ircd/s_user.c: fix usage of IPcheck_remote_connect
3805         * ircd/IPcheck.c: removed unused args
3806
3807 2000-04-09  Thomas Helvey <tomh@inxpress.net>
3808         * include/IPcheck.h: add proto for IPcheck_expire
3809
3810         * ircd/IPcheck.c: Rewrote
3811
3812         * ircd/ircd.c: Add IPcheck_expire to main message loop
3813
3814         * ircd/s_user.c: Redo target hashing, refactor target code
3815
3816         * include/numeric.h: Cleaned up numerics, added which ones are
3817         in use by other networks and what they are in use for.
3818
3819         * ircd/channel.c: cleaned can_join(), allow anyone through anything
3820         if /invited, simplified the function.  Opers overusing OPEROVERRIDE
3821         will get a message explaining to them not to cheat.
3822
3823         * ircd/m_join.c: cleaned up the various join functions, should be
3824         a lot more efficient.  Still needs work.  Now assumes that s<->s
3825         won't send it a JOIN 0.  Service coders - note this and tread with
3826         care.
3827
3828         * ircd/m_stats.c: added Gte-'s stats doc patch.
3829
3830         * ircd/m_version.c: /version now returns the 005 numeric as well.
3831         as requested by Liandrin.
3832
3833
3834 2000-04-07  Kevin L. Mitchell  <klmitch@mit.edu>
3835
3836         * ircd/m_clearmode.c: add include for support.h for write_log()
3837
3838         * configure: move ircd/crypt/* to tools/*
3839
3840 2000-04-06  Thomas Helvey <tomh@inxpress.net>
3841         * ircd/s_auth.c: Shorten auth connect timeout to 60 seconds
3842           set client host to server alias if connection from localhost
3843
3844 2000-04-06  Perry Lorier <isomer@coders.net>
3845         * ircd/ircd.c: Fix core during pinging (oops)
3846         
3847 2000-04-06  Perry Lorier <isomer@coders.net>
3848         * ircd/send.c: fixed wrong ident being sent to channels bug.
3849         * include/numerics.h: Updated some of the numerics from other
3850         networks.  Flagged some as 'unused' by undernet.
3851
3852 2000-03-30  Perry Lorier <isomer@coders.net>
3853         * ircd/ircd.c: Lets see if this helps the ping problem at all.
3854         * ircd/whocmds.c, /doc/readme.who: Added %l specifier to get idle
3855         time for local clients. (as requested), extended who now returns all
3856         the flags (@+!) so you can tell the complete state of a client.
3857
3858 2000-03-30  Thomas Helvey <tomh@inxpress.net>
3859         * m_rping.c m_rpong.c: add Gte's rping/rpong fixes
3860
3861 2000-03-30  Perry Lorier <isomer@coders.net>
3862         * ircd/parse.c: oops, missed opers.
3863
3864 2000-03-30  Perry Lorier <isomer@coders.net>
3865         * ircd/parse.c: fixed mystifying ping bug thats been plaguing us
3866         for so long.  Remember: m_ping MUST be in the parse array. :)
3867
3868 2000-03-30  Perry Lorier <isomer@coders.net>
3869         * ircd/ircd.c: test in check_pings was wrong.  I move that we
3870         disallow cvs commit after 10pm localtime....
3871
3872 2000-03-30  Perry Lorier <isomer@coders.net>
3873         * ircd/m_pong.c: Fix it for servers too.
3874
3875 2000-03-30  Perry Lorier <isomer@coders.net>
3876         * ircd/m_pong.c: Fix ping timeout bugs
3877
3878 2000-03-30  Perry Lorier <isomer@coders.net>
3879         * ircd/channel.c: Bans had CurrentTime in their when field instead
3880         of TStime()
3881
3882 2000-03-31  Thomas Helvey <tomh@ixpress.net>
3883         * ircd/numnicks.c (SetXYYCapacity): fix for extended
3884         numerics.
3885
3886 2000-03-30  Perry Lorier <isomer@coders.net>
3887         * ircd/m_nick.c: send kills both ways so when we add nick change
3888         on collision we don't desync the network.
3889
3890         * ircd/map.c: Fixup the map a bit more.
3891
3892 2000-03-31  Kevin L. Mitchell  <klmitch@mit.edu>
3893
3894         * ircd/m_clearmode.c (do_clearmode): Log the CLEARMODE to OPATH
3895
3896         * ircd/m_opmode.c: Log the mode changes to OPATH
3897
3898         * ircd/channel.c (modebuf_flush_int): Log the mode changes to
3899         OPATH
3900
3901         * include/channel.h (MODEBUF_DEST_LOG): Log the mode changes to
3902         OPATH
3903
3904         * doc/Configure.help: help text for CONFIG_LOG_OPMODE / OPATH
3905
3906         * config/config-sh.in: added OPATH for opmode log file
3907
3908         * ircd/m_clearmode.c (do_clearmode): updated uses of
3909         modebuf_mode_string() for the new usage
3910
3911         * ircd/channel.c: added flag MODE_FREE and an int argument to
3912         modebuf_mode_string() to indicate that the string must be free'd;
3913         updated calls to modebuf_mode_string() for the new usage; called
3914         collapse(pretty_mask()) on the ban string and use allocated memory
3915         for it; added ban list length accounting; fixed a number of small
3916         bugs in ban processing
3917
3918         * include/channel.h: added flag MODE_FREE and an int argument to
3919         modebuf_mode_string() to indicate that the string must be free'd
3920
3921         * ircd/m_clearmode.c (do_clearmode): made sure clearmode removed
3922         keys and limits that are set
3923
3924 2000-03-30  Perry Lorier <isomer@coders.net>
3925         * ircd/ircd.c: rewrote check_pings() for maintainability
3926         and speed.  Also changed quit msg's so they don't have
3927         redundant nick[host] info in them.
3928
3929         * ircd/send.c: Changed write errors to report what error
3930         occured (if possible).
3931
3932         * ircd/gline.c: added gline comment to the quit.
3933
3934         * ircd/m_server.c: Added suggestions to server quits mentioning
3935         what went wrong so the admin can fix it earlier instead of asking
3936         questions...
3937
3938         * ircd/map.c: Changed m_map() to hide numerics, show a * beside
3939         servers that aren't fully burst yet.  And show '(--s)' for servers
3940         where its not sure.
3941
3942         * doc/example.conf: Fixed wrapped U:
3943
3944 2000-03-30  Kevin L. Mitchell  <klmitch@mit.edu>
3945
3946         * ircd/m_mode.c (ms_mode): implemented a new m_mode in terms of
3947         mode_parse() (version selectable at compile time)
3948
3949         * ircd/m_clearmode.c (mo_clearmode): clean_channelname(parv[1])
3950
3951         * ircd/m_opmode.c (mo_opmode): clean_channelname(parv[1])
3952
3953         * config/config-sh.in: add new config option to enable new m_mode
3954         implementation
3955
3956         * doc/Configure.help: add documentation for new config option
3957         CONFIG_NEW_MODE
3958
3959         * ircd/channel.c (mode_parse_client): /opmode #foobar -o -- 461
3960         MODE -v : Not enough parameters
3961
3962         * ircd/m_clearmode.c (do_clearmode): do_clearmode() would remove
3963         +k and +l even if they weren't set...
3964
3965         * ircd/m_opmode.c: implement the OPMODE command using mode_parse()
3966
3967         * ircd/channel.c: make mode_process_clients() clear the DEOPPED
3968         flag; fix +s+p exclusivity; add MODE_ADD/MODE_DEL to flag list
3969         for; test the 0-th member, not the i-th member, of the client
3970         change state stuff
3971
3972         * ircd/m_clearmode.c (do_clearmode): use the new
3973         mode_invite_clear() function
3974
3975         * ircd/channel.c: cleared up all the compile-time warnings and
3976         errors
3977
3978         * include/channel.h: added declarations for mode_ban_invalidate()
3979         and mode_invite_clear()
3980
3981         * ircd/channel.c: finished mode_parse(), then broke it up into a
3982         dozen or so helper functions to make the code easier to read
3983
3984 2000-03-29  Thomas Helvey <tomh@inxpress.net>
3985         * ircd/ircd.c: refactor server initialization a bit, use
3986         getopt for parsing command line, refactor init_sys, main,
3987         and other bits.
3988
3989         * ircd/s_bsd.c: add functions for initialization to clean
3990         up logic a bit and remove duplicated code.
3991
3992         * include/ircd.h: add struct for server process related
3993         variables.
3994
3995 2000-03-29  Kevin L. Mitchell  <klmitch@mit.edu>
3996
3997         * ircd/channel.c: initial definition of mode_parse(); flags to
3998         prevent doing the same thing multiple times; helper method
3999         send_notoper() to send a "Not oper"/"Not on channel" notice
4000
4001         * include/channel.h: declare mode_parse() and helper flags
4002
4003         * ircd/channel.c (modebuf_flush_int): fiddled with timestamp
4004         sending to match the current action of set_mode() closely enough
4005         that hopefully there won't be major conflicts
4006
4007         * ircd/channel.c (modebuf_flush_int): consolidated the mode string
4008         building logic, reversed the order of the arguments to mode
4009         commands to have '-' preceed '+'
4010
4011 2000-03-29  Thomas Helvey <tomh@inxpress.net>
4012         * ircd/s_bsd.c (add_connection): don't disable socket options
4013         let OS tune itself and allow important performance tweaks to 
4014         work.
4015
4016 2000-03-28  Kevin L. Mitchell  <klmitch@mit.edu>
4017
4018         * ircd/channel.c (modebuf_flush_int): use %d, not %-15d; I got
4019         confused by set_mode, which is doing some really weird logic;
4020         guess what I'm going to rewrite next?  ;)
4021
4022 2000-03-28  Kevin L. Mitchell  <klmitch@emc.com>
4023
4024         * include/channel.h: added MODE_SAVE for the bounds checking stuff
4025         in modebuf_flush
4026
4027         * ircd/channel.c: make modebuf_flush into modebuf_flush_int and
4028         make it do bounds checking on the buffer; all modes are sent only
4029         if the all parameter is 1; modebuf_flush is the exported wrapper
4030
4031         * include/channel.h: add BOUNCE, renumber flags to get a little
4032         more space
4033
4034         * ircd/channel.c (modebuf_flush): don't overload HACK2, add
4035         BOUNCE; send DESYNCH message
4036
4037 2000-03-27  Kevin L. Mitchell  <klmitch@emc.com>
4038
4039         * ircd/m_clearmode.c (do_clearmode): only mark the modes the
4040         channel actually has in effect for deletion
4041
4042         * ircd/channel.c: added explanatory comments to all added
4043         functions; made flushing take place at the correct place even if
4044         the MODEBUF_DEST_DEOP flag is set; rewrote build_string() helper
4045         to bash some stupid bugs; made modebuf_flush() return if ModeBuf
4046         is empty, fixed the apparent source, removed some bogus string
4047         termination code, properly terminate the mode strings, add support
4048         for HACK2 and HACK3, made limit strings not be sent if the limit
4049         is being removed, changed where '+' and '-' come from in sent
4050         strings, added support for DEOP flag, set up bouncing code for
4051         HACK2
4052
4053         * ircd/Makefile.in: ran make depend
4054
4055         * include/channel.h: added new defines for future functionality,
4056         made modebuf_flush() return int so I can use tail recursion
4057
4058         * ircd/m_clearmode.c: add msg.h to includes; other misc cleanups
4059         to make it all compile
4060
4061         * ircd/m_opmode.c: add msg.h to includes...
4062
4063         * ircd/m_clearmode.c: implemented mo_clearchan()/ms_clearchan()
4064
4065         * ircd/channel.c (modebuf_flush): realized I forgot to
4066         nul-terminate addbuf/rembuf properly...
4067
4068         * ircd/m_clearmode.c (do_clearmode): wrote do_clearmode()...
4069
4070         * ircd/channel.c (modebuf_flush): correct sendto_server_butone to
4071         sendto_serv_butone--blah^2
4072
4073         * ircd/send.c (sendto_serv_butone): stupid comments confused me
4074
4075         * ircd/channel.c (modebuf_flush): if there are no mode changes to
4076         propagate, we're done...
4077
4078         * ircd/channel.c (modebuf_flush): duh; it's sendto_server_butone,
4079         not sendto_all_butone
4080
4081         * ircd/m_clearmode.c: define skeleton for m{o,s}_clearmode
4082
4083         * ircd/m_opmode.c: define skeleton for m{o,s}_opmode
4084
4085         * ircd/Makefile.in (SRC): added m_opmode() and m_clearmode() to
4086         the list
4087
4088         * ircd/parse.c: added messages for opmode and clearmode
4089
4090         * include/handlers.h: added declarations for mo_opmode(),
4091         ms_opmode(), mo_clearmode(), and ms_clearmode()
4092
4093         * include/msg.h: define MSG_OPMODE, TOK_OPMODE, MSG_CLEARMODE, and
4094         TOK_CLEARMODE
4095
4096         * include/channel.h (MODEBUF_DEST_OPMODE): Define the
4097         MODEBUF_DEST_OPMODE flag
4098
4099         * ircd/channel.c (modebuf_flush): added new flag,
4100         MODEBUF_DEST_OPMODE; causes channel MODE/HACK(4) notice to appear
4101         to originate from source's server (or source itself, if
4102         IsServer(source)); also causes a server-level MODE to be sent as
4103         OPMODE instead
4104
4105         * include/channel.h: defined MODEBUF_DEST_SERVER,
4106         MODEBUF_DEST_HACK4
4107
4108         * ircd/channel.c: Add another argument to build_string() to handle
4109         numeric nicks; implemented MODEBUF_DEST_SERVER to send MODEs to
4110         servers; implemented MODEBUF_DEST_HACK4 to cause HACK(4) notices
4111         to be sent out
4112
4113 2000-03-27  Perry Lorier <isomer@coders.net>
4114
4115         * ircd/s_bsd.c: fixed missing 'u' typo.
4116
4117 2000-03-26  Kevin L. Mitchell  <klmitch@emc.com>
4118
4119         * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(),
4120         _mode_string(), _mode_client(), _flush(); also implemented a
4121         simple build_string()
4122
4123         * include/channel.h: added definition of ModeBuf, modebuf_*
4124         manipulation functions, and a couple of helper macros
4125
4126 2000-03-24 Thomas Helvey <tomh@inxpress.net>
4127   * numicks.c: convert extended numerics to use original mask version
4128   * numnicks.h: ""
4129   * s_user.c:
4130 2000-03-23 Thomas Helvey <tomh@inxpress.net>
4131   * Merge in changes from production
4132 2000-03-22 Thomas Helvey <tomh@inxpress.net>
4133   * numicks.c: Tweak to numnick generator to reduce possibility of duplicates.
4134   * rfc1459.unet: Add Maniac's documentation for /names 0
4135 * Fix misc. jupe bugs that somehow made it into the tree
4136 * Escape /names 0 to mean /names --Maniac
4137 * Don't core when server asks for info --Maniac 
4138 * Add Kev's jupe patch --Bleep
4139 * Add Maniacs squit patch --Bleep
4140 * Merge in u2_10_10_beta07 changes --Bleep
4141 * Merge in u2_10_10_beta06 changes --Bleep
4142 * Start ircu2.10.11 development, beta branch u2_10_10 --Bleep
4143 #-----------------------------------------------------------------------------