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