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