1999-04-28 Per Cederqvist Remove support for the mux protocol. Don't use isc_printf. * src/server/testsuite/lyskomd.0/07.exp: Decrease the all file descriptors by one, now that the server no longer listens for a mux. Test that protocol B is unsupported. * src/server/testsuite/config/unix.exp (muxport): Removed. (lyskomd_start): Don't set "Mux port" in the config file. * src/server/server-config.c (parameters): Removed parameter "Mux port". * doc/lyskomd.texi (Parameters): Removed "Mux port". * src/server/ramkomd.c (listen_mux): Removed. (server_init): Remved the "mux_port" argument. Don't listen for muxes. (initialize): Don't pass the "mux_port" argument to server_init. * src/server/prot-a.c (prot_a_reply): Use isc_putc, isc_putul, isc_flush and prot_a_output_ul instead of mux_printf, mux_flush and mux_putc. (prot_a_parse_packet): Likewise. * src/server/prot-a-send-async.c (async_header): Use isc_putc, isc_putul, prot_a_output_ul and isc_flush instead of mux_printf, mux_putc and mux_flush. (async_trailer): Likewise. (prot_a_async_new_text_old): Likewise. (prot_a_async_new_text): Likewise. (prot_a_async_logout): Likewise. (prot_a_async_new_name): Likewise. (prot_a_async_forced_leave_conf): Likewise. (prot_a_async_login): Likewise. (prot_a_async_send_message): Likewise. (prot_a_async_deleted_text): Likewise. (prot_a_async_new_recipient): Likewise. (prot_a_async_sub_recipient): Likewise. (prot_a_async_new_membership): Likewise. * src/server/prot-a-output.h (prot_a_output_ul): New function. * src/server/prot-a-parse.c (prot_a_get_token): Use isc_puts and isc_flush instead of mux_printf and mux_flush. (prot_a_parse_num_list): Likewise. (prot_a_parse_string): Likewise. * src/server/prot-a-output.c (prot_a_output_ul): New function. (prot_a_output_person): Use prot_a_output_ul, isc_puts, isc_putc and isc_write instead of mux_printf, mux_putc and mux_write. (prot_a_output_membership_type): Likewise. (prot_a_output_membership): Likewise. (prot_a_output_membership_old): Likewise. (prot_a_output_membership_list_old): Likewise. (prot_a_output_membership_list): Likewise. (prot_a_output_conf_list): Likewise. (prot_a_output_conf_no_list): Likewise. (prot_a_output_conference): Likewise. (prot_a_output_conference_old): Likewise. (prot_a_output_uconference): Likewise. (prot_a_output_mark_list): Likewise. (prot_a_output_aux_item_flags): Likewise. (prot_a_output_aux_item): Likewise. (prot_a_output_text_stat_old): Likewise. (prot_a_output_aux_item_list): Likewise. (prot_a_output_who_info_ident): Likewise. (prot_a_output_who_info): Likewise. (prot_a_output_who_info_list): Likewise. (prot_a_output_who_info_ident_list): Likewise. (prot_a_output_who_info_list_old): Likewise. (prot_a_output_session_info): Likewise. (prot_a_output_session_info_ident): Likewise. (prot_a_output_info_old): Likewise. (prot_a_output_string): Likewise. (prot_a_output_priv_bits): Likewise. (prot_a_output_personal_flags): Likewise. (prot_a_output_conf_type): Likewise. (prot_a_output_extended_conf_type): Likewise. (prot_a_output_member_list): Likewise. (prot_a_output_member_list_old): Likewise. (prot_a_output_member): Likewise. (prot_a_output_member_old): Likewise. (prot_a_output_mark): Likewise. (prot_a_output_misc_info): Likewise. (prot_a_output_time): Likewise. (prot_a_output_session_no): Likewise. (prot_a_output_text_no): Likewise. (prot_a_output_conf_z_info): Likewise. (prot_a_output_conf_z_info_list): Likewise. (prot_a_output_version_info): Likewise. (prot_a_output_num_list): Likewise. (prot_a_output_dynamic_session_info): Likewise. (prot_a_output_dynamic_session_info_list): Likewise. (prot_a_output_l2g_iterator_as_text_list): Likewise. (prot_a_output_text_mapping): Likewise. (prot_a_output_memory_info): Likewise. * src/server/param.h (struct kom_par): Removed ip_mux_port, num_ip_mux_port and num_ip_client_port. * src/server/isc-interface.h (ISC_UDGTYPE): Use "struct connection" instead of "struct mux". (ISC_PRINTF_SUPPORT): Don't define it. * src/server/internal-connections.c (init_connection): Use isc_session instead of mux. (kill_client): Likewise. * src/server/connections.h (Connection): Replaced mux with isc_session. * src/server/connections.c (logout_client): Use ISC instead of the removed mux layer. (parse_packet): Likewise. (parse_unparsed): Likewise. (login_request): Likewise. Don't handle muxes. (logout_request): Likewise. (message_request): Likewise. (mux_handle_packet): Removed. (mux_logout): Removed. (mux_parse_unparsed): Removed. (mux_parse_message): Removed. (milli_timevaldiff): New name for former timevaldiff. Return the difference in milliseconds instead of microseconds. (toploop): Use milli_timevaldiff instead of timevaldiff. This is a thousand times better at avoiding overflow. Use isc_puts instead of isc_printf. * src/server/mux.h: File removed. * src/server/mux.c: File removed. * src/server/mux-parse.h: File removed. * src/server/mux-parse.c: File removed. * src/server/Makefile.am (lyskomd_SOURCES): Removed mux-parse.h and mux.h. (MUX): Removed. Removed mux.c and mux-parse.c. (GENOBJS): Removed $(MUX). * doc/mux.proto: File removed. * doc/Makefile.am (EXTRA_DIST): Remove mux.proto. * configure.in: Remove enable_isc_printf -- we no longer need isc_printf. Fix a warning message in the testsuite. * src/server/testsuite/lyskomd.0/admin-cov.exp: Fixed the "unsupported" message: The configure option is named --with-debug-calls, not --enable-debug-calls. 1999-04-25 Per Cederqvist Increase the block size of the l2g structure from 10 to 250. * src/server/local-to-global.h (l2g_set_block_size): New function. * src/server/local-to-global.c (L2G_BLOCKSIZE): Now a static int instead of a define. (l2g_set_block_size): New function, that can be called once to set the block size (l2g_init): Set the block size to 250 unless it has already been set. * src/server/testsuite/test-l2g.c (main): Set the block size to 10. 1999-04-20 Per Cederqvist Two file descriptors were leaked during startup. * src/server/aux-item-def-parse.y (parse_aux_item_definitions): Close the config file once it is read. * src/server/conf-file.c (read_config): Close the config file once it is read. 1999-04-19 Per Cederqvist New parameter: "Client host". * doc/lyskomd.texi (Parameters): Documented "Client host". * src/server/server-config.c (parameters): New parameter: "Client host". * src/server/ramkomd.c (server_init): New argument: host. Bind the specified IP number. (initialize): Pass param.ip_client_host to server_init. * src/server/param.h (struct kom_par): Added ip_client_host. 1999-04-19 Per Cederqvist Test the "% No connections left." message. * src/server/testsuite/lyskomd.0/07.exp: Test what happens when too many clients try to connect at the same time. 1999-04-18 Per Cederqvist More documentation. * doc/lyskomd.texi (Parameters): Documented "lyskomd path", "savecore path", "Normal shutdown time", "Mail after downtime" and "Mail until downtime". * doc/Protocol-A.texi (Protocol Version History): Call 102=set-membership-type was omitted, and later calls was misnumbered. (map-created-texts): Documented. 1999-04-18 Per Cederqvist Removed the last hardcoded configuration from updateLysKOM. * src/server/updateLysKOM.c (savecore): Use param.core_dir and param.savecore_path instead of hardcoding the values. * src/server/server-config.c (parameters): New parameter: "savecore path". (read_configuration): Handle param.savecore_path. * src/server/param.h (struct kom_par): New parameter: savecore_path. 1999-04-17 Per Cederqvist updateLysKOM now reads the configuration file. * src/server/updateLysKOM.c (usage): New function. (checkstatus): Use parameters "Normal shutdown time", "Mail after downtime" and "Mail until downtime" instead of using hard-coded values. Use "mail" instead of "Mail" to send the mail. (main): Read the configuration file. Use parameters "Pid file", "Status file" and "lyskomd path" instead of hard-coded values. * src/server/server-config.c (param): Moved here from various files. (parameters): Added "Normal shutdown time", "Mail after downtime", "Mail until downtime" and "lyskomd path". (read_configuration): Handle param.lyskomd_path. * src/server/ramkomd.c: (param): Moved to server-config.c. * src/server/dbck.c (param): Moved to server-config.c. * src/server/Makefile.am (READ_CONFIG): New variable. (komrunning_SOURCES): Use READ_CONFIG to simplify code. (updateLysKOM_SOURCES): Added READ_CONFIG. * src/server/param.h (struct kom_par): New parameters: lyskomd_path, normal_shutdown_time, downtime_mail_start and downtime_mail_end. * src/server/server-config.c (parameters): Moved a few entries around, so that they fit under the various headings. Fixes to komrunning.c. * src/server/komrunning.c (param): Moved to server-config.c. (create_status): Write the name of the user as the first line of the status file. With luck, that is a valid email address. Handle many simultaneous clients. * src/server/connections.c (login_request): Don't handle the "% No connections left" situation. (toploop): Handle ISC_EVENT_LOGIN_UNRELOCATED by returning a "% No connections left" message and closing the session, the way login_request used to do. * src/server/ramkomd.c (initialize): Warn if getrlimit and sysconf don't agree on the number of possible open files. 1999-04-17 Per Cederqvist Work towards handling more than 250 simultaneous clients. * src/server/ramkomd.c (server_init): Use isc configuration 1006 and isc session configuration 1002. Fill in fd_relocate with PROTECTED_FDS. 1999-04-17 Per Cederqvist Re-implement komrunning in C. * src/server/standalone.c (register_jubel): Dummy implementation. * src/server/dbck.c (register_jubel): Moved to standalone.c. * src/server/dbck-cache.c (kom_info): Moved to standalone.c. * src/server/komrunning.c: New file; a reimplementation of komrunning.sh in C. * src/server/Makefile.am (bin_PROGRAMS): Added komrunning. (komrunning_SOURCES): New variable, which among other files includes komrunning.c. (updateLysKOM_SOURCES): Added pidfile.c. (dbck_SOURCES): Added standalone.c. * run-support/komrunning.sh: Removed. * run-support/Makefile.am (komrunning): Target removed. (bin_SCRIPTS): Removed komrunning. (EXTRA_DIST): Removed komrunning.sh. (MOSTLYCLEANFILES): Removed komrunning. Introduce the "Status file" parameter. * src/server/server-config.c (parameters): Added "Status file". (read_configuration): Handle param.status_file. * src/server/param.h (struct kom_par): Added status_file. * doc/lyskomd.texi (Parameters): Documented "Status file". Move pid file reading to pidfile.c. * src/server/updateLysKOM.c (main): Use pidfile to simplify code. * src/server/pidfile.h (read_pid_file): New function. * src/server/pidfile.c (read_pid_file): New function. 1999-04-15 Per Cederqvist Document 103=local-to-global. * doc/Protocol-A.texi (accept-async): Added the error code long-array. (add-member): Added a comment. (local-to-global): Documented. (The User Area): Register WWW-kom. Test suite improvement. * src/server/testsuite/lyskomd.0/03.exp: Test calls 103 and 104. 1999-04-06 Per Cederqvist Yesterdays changes were incomplete. * src/server/ramkomd.c: Include local-to-global.h. 1999-04-05 Per Cederqvist Explain the Text-Mapping data type. * doc/Protocol-A.texi (LysKOM Data Types): Explain Text-Mapping. 1999-04-05 Per Cederqvist Change the external file format of a Local_to_global. * src/server/testsuite/l2g.0/09.exp: Adjusted to new external format of Local_to_global. * db-crypt/db/lyskomd-data: Adapted to new format of Local_to_global objects. * src/server/local-to-global.c (l2g_read): New file format. (put_ulong): New static function. (l2g_write): New file format. * src/server/testsuite/l2g.0/11.exp: Added lots of test cases for l2g_write. Added statistics to Local_to_global. * src/server/ramkomd.c (dump_exit_statistics): Call dump_l2g_stats. * src/server/local-to-global.h: Comments added and improved. (dump_l2g_stats): New function. * src/server/local-to-global.c (nr_constructs): New static variable, used to gather statistics. Changed all functions to set it where appropriate. (nr_l2gs): Likewise. (nr_l2gs_peak): Likewise. (nr_destructs): Likewise. (nr_clears): Likewise. (nr_copies): Likewise. (nr_joins): Likewise. (nr_joined_blocks): Likewise. (nr_blocks): Likewise. (nr_blocks_peak): Likewise. (nr_blocks_sparse): Likewise. (nr_blocks_sparse_peak): Likewise. (sparse_skip_cost): Likewise. (nr_sparse_compactions): Likewise. (nr_sparsifications): Likewise. (l2g_destruct): Actually fill the destructed object with garbage data, unless NDEBUG is defined. (dump_l2g_stats): New function. Make a lot of functions in ram-output.c static. Increase const awareness. * src/server/ram-output.c (foutput_person_0): Added const qualifier to the person argument. (foutput_person_2): Likewise. (foutput_person): Likewise. (foutput_conference_2): Added const qualifier to the conf_c argument. (foutput_aux_flags): Now static. (foutput_aux_item): Now static. (foutput_aux_item_list): Now static. Added const qualifier to the aux argument. (foutput_membership_type): Now static. (foutput_string): Now static. (foutput_priv_bits): Now static. (foutput_personal_flags): Now static. (foutput_text_list): Now static. (foutput_mark_list): Added const qualifier to the mark_list argument. (foutput_mark): Now static. (foutput_membership_list): Now static. (foutput_time): Now static. (foutput_member_list): Now static. (foutput_member): Now static. (foutput_conf_type): Now static. (foutput_misc_info): Now static. (foutput_ulong): Now static. * src/server/ram-output.h: Track changes in ram-output.c. * src/include/kom-types.h (Text_mapping): The l2g pointer is const. Some minor improvements to memory handling. * src/server/memory.c (free_conference): Call l2g_destruct. (free_person): Likewise. * src/server/conference.c (do_delete_conf): Don't call l2g_clear, since cache_delete_conf will do so. Remove useless compiler warnings. * configure.in: Don't use -Wtraditional and -Wnested-externs. Test suite improvement. * src/server/testsuite/config/unix.exp (lyskomd_death): Collect etc/memory-usage in usage.all. Test suite fix. * src/server/testsuite/config/unix.exp (lyskomd_start): The detection of a server compiled with --with-debug-calls was broken. Test Local_to_global even more. * src/server/testsuite/l2g.0/11.exp: Increase coverage even further. Test l2g_clear. * src/server/local-to-global.h: Comments improved. * src/server/local-to-global.c: Comments improved. 1999-04-05 Per Cederqvist Added range-begin and range-end to Text-Mapping. * doc/Protocol-A.texi (LysKOM Data Types): Added range-begin and range-end to Text-Mapping. * src/server/prot-a-output.c (prot_a_output_text_mapping): Emit range-begin and range-end. * src/server/person.c (map_created_texts): Set result->first to the first text number that the user requested. Don't move it forward if the text has been deleted. * src/server/text.c (local_to_global): Likewise. * src/server/testsuite/lyskomd.0/00.exp: Expect range-begin and range-end in Text-Mappings. 1999-04-04 Per Cederqvist Merge everything from prot-A.txt into Protocol-A.texi and remove prot-A.txt. * doc/prot-A.txt: Removed. Everything in it should now be present in Protocol-A.texi. * doc/Makefile.am (EXTRA_DIST): Removed prot-A.txt. * doc/Protocol-A.texi: Removed all up, next and prev pointers. Makeinfo can figure them out automatically. Fixed proper nesting of nodes, and use @Top, so that this work. Merge everything in prot-A.txt into this document: (Document Revision History): This is going to be revision 10.0 which documents protocol version 10. 9.0 was distributed with lyskomd 1.9.0. 8.0 was distributed with lyskomd 1.8.0. (Protocol Version History): New name for former "Protocol Revision History". Updated the information about version 9. (Protocol Design Principles): Node removed. The "Client-Server Dialog" node contains the same information. (Client-Server Dialog): Specify the LysKOM port in the example. (Simple Data Types): Moved the text about data element separator and call terminator to "Client-Server Dialog". (user-active): Talk more about when clients should send this. (who-is-on-dynamic): Improved the explanation. (get-static-session-info): State that the returned information is immutable. Distribute sigflags.h. * src/server/Makefile.am (lyskomd_SOURCES): Added sigflags.h. 1999-04-03 Per Cederqvist Renam do_sync_db to do_statistics. Use sig_atomic_t instead of Bool for variables set from signal handlers. * src/server/sigflags.h: New file, containing sig_atomic_t flags. * src/server/ramkomd.c: Include "sigflags.h". (sighandler_hup): Use 1 instead of TRUE as value of go_and_die. (sighandler_usr1): Use 1 instead of TRUE as value of do_statistics. Use do_statistics instead of do_sync_db. * src/server/connections.h (go_and_die): Declaration moved to sigflags.h. (do_sync_db): Renamed to do_statistics and moved to sigflags.h. * src/server/connections.c (go_and_die): Now sig_atomic_t instead of Bool. (do_statistics): New name for former do_sync_db. New type: sig_atomic_t instead of Bool. All users of do_sync_db updated. (toploop): Don't call cache_sync when do_statistics is set. * src/server/admin.c (shutdown_kom): Set go_and_die to 1, not TRUE. Cosmetic code cleanup. * src/server/prot-a-parse-arg-c.awk: Insert a blank line between the system includes and the local includes. Remove the empty function cache_sync. Rename cache_sync in dbck to cache_sync_all. * src/server/simple-cache.c (cache_sync): Removed. * src/server/logII.c (log): Call cache_sync_all instead of cache_sync. * src/server/dbck.c (garb_text_file): Call cache_sync_all instead of cache_sync. (main): Likewise. * src/server/dbck-cache.c (cache_sync_all): New name for former cache_sync. * src/server/cache.h (cache_sync): Function removed. Distribution cleanup. * src/server/Makefile.am (EXTRA_DIST): Don't distribute logII.c. * configure.in: Create src/libraries/regex/doc/Makefile and src/libraries/regex/test/Makefile. Documentation fixes. * doc/lyskomdb.texi (Version 0): next-free-num and next-text-num are one greater than the number of existing records. (Version 1): The same error probably exists here. Added comment about it. * doc/lyskomd.texi (Server Configuration File): Markup fixes. (Parameter Types): Markup fixes. (Parameters): Markup fixes. (Aux-Item Definition File): Markup fixes. (Administration): Update the discussion about updateLysKOM, dbck and komrunning. Markup fixes. Make all man pages obsolete. Generate the version number in lyskomd.texi automatically. Make sure that lyskomd.texi and dbck.texi includes everyting that was documented in the man pages. * mkmi: Remove scripts/mdate-sh, which should be generated by automake. * doc/man/dbck.8: All documentation removed. Refer to dbck.info. * doc/man/lyskom.5: Documentation removed. Refer to lyskomdb.info. * doc/man/updateLysKOM.8: All documentation removed. Refer to lyskomd.info. * doc/dbck.texi (Invoking dbck): Mention that dbck with no argument will examine the database without modifying it. (General Options): Document -h (aka --help). (Format Conversion Options): Minor layout fix. (Notes): Typos fixed. (Files): Markup fixes. * doc/Makefile.am: Break long lines. * doc/man/lyskomd.8: All documentation removed. Refer to lyskomd.info. * doc/lyskomd.texi: Include version.texi and use @value{VERSION} instead of hard-coding the value. (Overview): Add Peter Eriksson to the list of signficant contributors. ISC was a piece of very important "enabling technology". (Parameter Types): Mention that all files are absolute if the begin with '/'. (Parameters): Use @var{} instead of @i{}. Markup fixes and other minor typo fixes. The "Log statistics" path is used when the server receives a SIGUSR1 signal -- not a SIGHUP! (Aux-Item Definition File): The file name was wrong. Don't use @i{}. Document the "server" keyword. Mention that permanent aux-items will be deleted when the object they belong to are deleted. (Signals): Removed a note about SIGUSR2 not working on Suns. It should work fine there as well. (Files): Don't use @i{}. (Bugs): There is no detectable memory leak worth noting. 1999-04-03 Per Cederqvist The test cases shouldn't fail just because --with-debug-calls wasn't enabled. * src/server/ramkomd.c (main): Emit a warning message when --with-debug-calls is enabled. * src/server/testsuite/config/unix.exp (lyskomd_start): Look for the warning message about --with-debug-calls, and set debug_calls to a true value if it is found. * src/server/testsuite/lyskomd.0/admin-cov.exp: Don't attempt to use debug calls unless debug_calls is true. 1999-04-02 Per Cederqvist Fix "make clean". * src/server/testsuite/Makefile.am (mostlyclean-local): Remove db and etc. Use automake defaults for the Lex and Yacc files, so that the distribution works. * src/server/Makefile.am (YFLAGS): Set it to "-d" so that we get the .h header file. (EXTRA_DIST): Removed aux-item-def.l and aux-item-def.y. (MAINTAINERCLEANFILES): Removed aux-item-def.tab.h. (lyskomd_SOURCES): Added aux-item-def-parse.y, aux-item-def-parse.h and aux-item-def-scan.l. (DISKOBJS): Removed aux-item-def.tab.c and aux-item-def.lex.c. (aux-item-def.tab.c): Target removed. Rely on automake. (aux-item-def.lex.c): Target removed. Rely on automake. * src/server/aux-item-def-parse.y: Rename hack added. Don't redefine yyin and yylineno, since the Lex file no longer uses "%option prefix". Remove blank lines at end of file. * src/server/aux-item-def-scan.l: Rename hack added. Include aux-item-def-parse.h instead of aux-item-def.tab.h. Don't redefine yylval and yyerror, and don't use "%option prefix" -- this change makes it impossible to have multiple Lex scanners, but on the other hand, it makes it possible to use automake. * src/server/aux-item-def.l: Renamed aux-item-def-scan.l. * src/server/aux-item-def.y: Renamed aux-item-def-parse.y. Added some missing files to the distribution. * doc/Makefile.am (EXTRA_DIST): Added IDEAS. * src/include/Makefile.am (noinst_HEADERS): Added kom-config.h. * src/server/Makefile.am (EXTRA_DIST): Added prot-a-is-legal-fnc.awk. * src/server/testsuite/Makefile.am (EXTRA_DIST): Added renumber.el, l2g.0/*.exp, lyskomd.0/*.exp, lyskomd.0/summarize.sh, lyskomd.0/aux-items.conf, lyskomd.0/aux-items.cov and lyskomd.0/aux-items.leaks. 1999-04-02 Per Cederqvist Make it possible to run "make check" even when not building in srcdir. * src/server/testsuite/config/unix.exp: (lyskomd_start): Run the test suite in the build directory. Look for files relative to $srcdir or top_srcdir so that they are found properly. (aux_item_default_conf_file): Use $top_srcdir to get a full path. * src/server/testsuite/config/leaks.exp: Look for exp files in $srcdir. * src/server/testsuite/lyskomd.0/04.exp: Likewise. * src/server/testsuite/lyskomd.0/05.exp: Likewise. * src/server/testsuite/lyskomd.0/06.exp: Likewise. * src/server/testsuite/lyskomd.0/admin-cov.exp: Likewise. * src/server/testsuite/lyskomd.0/aux-items-cov.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks00.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks01.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks02.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks03.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks04.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks05.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks06.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks07.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks08.exp: Likewise. * src/server/testsuite/lyskomd.0/leaks99.exp: Likewise. Fix broken tests. * src/server/testsuite/lyskomd.0/01.exp: The test could fail due to bad timing. Fixed. Makefile fixes. * src/server/testsuite/config/Makefile.am (EXTRA_DIST): Added leaks.exp. (MOSTLYCLEANFILES): Added lyskomd-config. 1999-03-31 Per Cederqvist Fix bugs in "make dist". * doc/Makefile.am (EXTRA_DIST): Removed Makefile.src. Dead code removal. * src/server/local-to-global.c (find_block_index_key): Blocks can never be completely empty. Code simplified accordingly. (l2g_append): Likewise. (l2gi_next): Likewise. * src/server/ram-parse.c (fparse_info_2): Unreachable code removed. Increase coverage of local-to-global.c. * src/server/testsuite/l2g.0/11.exp: New file. 1999-03-28 Per Cederqvist * TODO: Updated according to priorization made by me and David Byers. 1999-02-06 Per Cederqvist * configure.in: Fixed a syntax error introduced yesterday. 1999-02-05 Per Cederqvist Don't produce meaningless warnings. * configure.in: Remove -Wshadow and -Wcast-qual since they give too many false warnings and are of limited use. Get rid of some warnings. * src/include/kom-types.h (Version_info_internal): const qualifiers added. * src/server/Makefile.am (version-info.c): Added const qualifier to kom_version_info. * src/server/version-info.h (kom_version_info): Added const qualifier. Don't use the wrong member of a union. * src/server/prot-a.c (prot_a_reply): Emit res->membership_list_old, not res->membership_list, when the return type is rt_membership_list_old. Remove the L2g_iterator_as_text_list typedef. * src/server/text.c (get_map): Use L2g_iterator instead of L2g_iterator_as_text_list. * src/server/prot-a-output.h, src/server/prot-a-output.c (prot_a_output_l2g_iterator_as_text_list): Use L2g_iterator instead of L2g_iterator_as_text_list. * src/server/person.c (get_created_texts): Use L2g_iterator instead of L2g_iterator_as_text_list. * src/server/connections.h (Result_holder): The l2g_iterator_as_text_list member is now of type L2g_iterator instead of the typedef L2g_iterator_as_text_list. * src/include/services.h (get_created_texts): Use L2g_iterator instead of L2g_iterator_as_text_list. (get_map): Likewise. * src/include/kom-types.h (L2g_iterator_as_text_list): Typedef removed. 1999-01-18 David Byers * src/server/testsuite/tcpconnect.py (fdset): Accep * src/server/testsuite/config/unix.exp (suspend_client): New function. Suspends reading from lyskomd. (resume_client): New function. Resumes reading. * src/server/testsuite/.cvsignore: Added .da, .bb, .bbg and .da files. * src/libraries/libansi/.cvsignore: Added .da, .bb, .bbg and .da files. * src/libraries/libmisc/.cvsignore: Added .da, .bb, .bbg and .da files. 1999-01-17 David Byers * src/server/conference.c: Don't allow change to forbid_secret if there are secret members. * src/server/testsuite/tcpconnect.py (fdset): Added command #suspend socket to stop the relay from reading from the socket, to simulate a communications failure of sorts. Added #resume socket to reopen communications. 1999-01-16 David Byers * src/server/debug.c: New file. (get_memory_info): Moved here from admin.c. * src/server/Makefile.am (ATOMS): Added debug.c * src/server/person.c (create_person_generic): Don't autologin unless do_auto_login is true (create_person_old): Set do_auto_login to true in call to create_person_generic. (create_person): Set do_auto_login to false in call to create_person_generic. * src/server/connections.c (logout_client): Send async logout if the session is not logged in. 1999-01-15 David Byers * src/server/send-async.c (async_new_name): Send new-name only to clients with the appropriate privileges. * src/server/membership.c (fast_access_perm): Only check priv bits if the viewer is ACTPERS or ACT_P (access_perm): Ditto. * src/server/manipulate.h (ENA_C): New macro. * configure.in: New argument --with-optimization * src/server/conference.c (legal_name): Set err_stat when returning KOM_LONG_STR. * src/server/text.c (do_create_text): Set err_stat when returning KOM_LONG_STR. * src/server/aux-item-def.y: Never add disabled items to the definition list. * src/server/admin.c (send_message): Set err_stat to param.broadcast_len. 1999-01-14 David Byers * src/server/connections.h: Added Memory_info to Res_type and Result_holder to be compiled if DEBUG_CALLS is defined. * src/server/admin.c (debug_info): New function to get memory usage stats. * src/server/prot-a.c (prot_a_reply): Output memory_info * configure.in: Check for mallinfo if we do debug calls. Substitute EFENCE=1 if we use efence. * src/server/session.c (who_is_on): Changed for loops to while loops to deal with new semantics of session 0 and to make the code clearer. (who_is_on_ident): Ditto. (who_is_on_dynamic): Ditto. (who_is_on_old): Ditto. * src/server/internal-connections.c (get_conn_by_number): Always interpred session 0 as the current session. (traverse_connections): Explicit check for session_no == 0 since change in get_conn_by_number. * src/server/session.c (disconnect): disconnect(0) disconnects the current session Did some work on mail import and export (that jsk should have taken care of. Grrrr....) * doc/Protocol-A.texi (Predefined Aux-Item Types): Rewrote documentation for mail import and export aux-items. Wrote a chapter on mail import and export. * run-support/aux-items.conf: Added aux-items for mail import and export. * doc/Protocol-A.texi: Removed all @codes surrounding cross-references since texinfo chokes on them. * doc/hacking.texi (Notes for fncdef.txt): Added notes on fncdef.txt. 1999-01-13 David Byers Handle #ifdef/#endif and empty lines in fncdef.txt * src/server/fncdef.txt: Added debug_info. This call does NOTHING at the moment. It is just a proof of concept. It will do stuff later. * src/server/prot-a-parse-arg-h.awk: Handle #ifdef and #endif and empty lines. * src/server/fnc-def-init.awk: Ditto. * src/server/prot-a-is-legal-fnc.awk: Ditto. * src/server/call-switch.awk: Ditto. * src/server/prot-a-parse-arg-c.awk: Ditto. * src/server/com-h.awk: Ditto. * acconfig.h: Added DEBUG_CALLS * configure.in: Added option --with-efence to link with efence. Added option --with-debug-calls to define DEBUG_CALLS when compiling. Arranged things so we have to put a call number into the fncdef.txt file. This makes call numbers more explicit. It is also possible to have non-contiguous call numbers. * src/server/prot-a.c (prot_a_parse_packet): Use function_index field of connection to access parsers etc. * src/server/connections.c: Added num_fnc_defs * src/server/prot-a-parse-arg-h.awk: Updated for new format. * src/server/connections.c (dump_statistics): Changed the format of the statistics file to output function number before the call number. * src/server/connections.h: New field function_index Added function field to Fnc_descriptor. * src/server/call-switch.awk: Updated for new format in fncdef.txt * src/server/com-h.awk: Updated for new format in fncdef.txt * src/server/prot-a-parse-arg-c.awk: Updated for new format in fncdef.txt. * src/server/prot-a.c (prot_a_is_legal_fnc): Removed hard-coded switch and replaced it with include of prot-a-is-legal-fnc.incl * src/server/prot-a-is-legal-fnc.awk: New function. * src/server/Makefile.am: Add rules for prot-a-is-legal-fnc.incl 1999-01-12 David Byers * src/server/testsuite/lyskomd.0/03.exp: Updated membership tests. * src/server/testsuite/lyskomd.0/05.exp: Updated membership tests. * src/server/membership.c (do_get_membership): Set the position field in the returned structure. (locate_membership_and_position): Removed. (locate_membership): Set the position field in the membership. * src/server/memory.c (init_membership): Init position field. * src/include/kom-types.h: Removed Extended_Membership. Added position field to Membership. * src/server/connections.h: Removed Extended_Membership. * src/server/prot-a.c (prot_a_reply): Removed rt_extended_membership. * src/server/prot-a-output.c (prot_a_output_membership): Output membership position. 1999-01-08 David Byers * db-crypt/db/lyskomd-data: Updated database with keep_commented field. 1999-01-07 David Byers * src/server/person.c (create_person_generic): Initialize keep_commented. * src/server/memory.c (copy_conference): Copy keep_commented. (init_conference): Initialize keep_commented. * src/server/dbck.c (delete_misc): Moved initialization of ready to avoid spurious compiler warning. * src/server/text.c (do_delete_misc): Moved initialization of ready to avoid spurious compiler warning. * src/server/simple-cache.c: Changed sync_next to unsigned to get rid of compiler warnings. (save_one_conf): Output sync_next as unsigned. (save_one_text): Ditto. (init_cache): Move initialization of done, read_text_no and read_conf_no to avoit spurious compiler warning. (init_cache): Initialize c for same reason. * src/server/cache-node.c: Added initializer for s.snapshot in EMPTY_CACHE_NODE. * src/server/cache-node.h: Removed saved_sirty [sic] flag from cache_node. It wasn't used anywhere. * src/include/rcs.h (USE): Use __typeof__ to avoid compiler warnings. This macro only does something when __GCC__ is two or more, in which case __typeof__ exists, so it should be safe. * src/server/server-config.c: Added default_keep_commented to parameters. * src/server/param.h: Added default_keep_commented to kom_par. * src/server/conference.c (do_create_conf): Initialize keep_commented * doc/lyskomd.texi (Parameters): Documented Default keep commented nice. * src/include/services.h: Declare set_keep_commented. * src/server/conference.c (set_keep_commented): New function. * src/server/fncdef.txt: Added set_keep_commented. * src/server/prot-a-output.c (prot_a_output_conference): Output keep_commented after nice. * src/server/ram-parse.c (fparse_conference_2): Parse keep_commented. * src/include/kom-types.h: New field keep_commented. * src/server/ram-output.c (foutput_conference_2): Output keep_commented. 1999-01-01 Per Cederqvist Use NO_TIME instead of 0. * src/server/memory.c (init_membership): Use NO_TIME instead of 0. 1998-12-31 Per Cederqvist Avoid pty buffer size overflow in the test suite. * src/server/testsuite/lyskomd.0/03.exp: Split long lines so that at most approximately 250 bytes are sent via a pty. Many operating systems have a limit of approximately 256 bytes per line. Fix test suite typo. * src/server/testsuite/config/leaks.exp (check_usage): Fixed a typo: it is an error if the number of strings is use change, not if they stay the same. Ignore some generated files. * src/server/testsuite/.cvsignore: Ignore lyskomd.*.base, lyskomd.*.usage and usage-base.tmp. * .cvsignore: Ignore config.h, config.h.in, stamp-h and stamp-h.in. 1998-12-30 David Byers * src/server/aux-items.h: Removed ADD_AUX_ITEM macro. * src/server/aux-items.c (aux_inherit_items): Fixed memory leak. * src/server/ramkomd.c (free_kom_info): New function. (main): Call it so that memory usage reported at end of session is not dependent on the length of the aux-item list attached to kom_info since that messes up testing for memory leaks. * doc/lyskomd.texi: Added this file. Finished writing it too. 1998-12-29 David Byers * src/server/testsuite/config/unix.exp (lyskomd_start): Added optional third argument for stuff to put at the end of the config file. * src/server/prot-a-send-async.c (prot_a_async_new_membership): Send the correct header. * src/server/membership.c (add_member_common): Added calls to send_async_new_membership. (send_async_new_membership): Send message to the right recipients. 1998-12-28 David Byers * src/server/membership.c (add_member_old): Don't set invitation bit here. It is dealt with in add_member_common. (do_change_priority): Don't change priority to zero if we are being called from old functions. Just fake the passive bit. (locate_membership_and_position): Return the correct position of the membership. 1998-12-27 David Byers * doc/Protocol-A.texi (Error Codes): Added invalid-membership-type. 1998-12-26 David Byers * doc/man/lyskomd.8 (value): Documented regexps use collate table. * src/server/param.h: Added regex_use_collate_table. * src/server/server-config.c: Added regexps use collate table. * src/server/regex-match.c (lookup_regexp): Set translation table for regex according to regex_use_collate_table option. * src/server/manipulate.h: New function declaration. * src/server/membership.c (locate_membership_and_position): New function. (locate_membership): Use it. * src/server/person.c (do_query_read_texts): New function. (query_read_texts_old): Use it. (query_read_texts): Use it. * src/server/prot-a-output.h(prot_a_output_extended_membership): New function declaration. * src/server/prot-a-output.c (prot_a_output_extended_membership): New function. * src/server/prot-a.c (prot_a_reply): Added rt_extended_membership. * src/include/kom-types.h: New type Extended_Membership. * src/server/connections.h: Added extended_membership to Result_holder. Added rt_extended_membership to Res_type * src/include/services.h: Declare query_read_texts to take an Extended_Membership * doc/Protocol-A.texi (query-read-texts): Documented that this function returns the position as well as the membership. 1998-12-25 David Byers * README: Updated clients information. * src/server/membership.c (set_membership_type): Removed F-word from comment. Inserted F-abbreviation instead :-) * src/server/conference.c (get_uconf_stat): Removed FIXME after fixing fast_access_perm. * src/server/membership.c (fast_access_perm): Set kom_errno if we can't find the conference conf_no. * src/server/membership.c (do_get_members): Don't filter secret memberships if we have privilege bits set. * doc/Protocol-A.texi (Error Codes): Fixed error in documentation of secret-public 1998-12-24 David Byers * src/server/aux-items.c (system_add_aux_item_list): Call add triggers (check_delete_aux_item_list): Return KOM_AUX_PERM if an item to delete is mission. This is in accordance with the documentation. * src/server/aux-items.h (INFO_OBJECT_TYPE): New constant. 1998-12-23 David Byers * src/server/testsuite/lyskomd.0/03.exp: Updated test 1010 for item 27. Updated test 1017 for asyncs 16, 17 and 18 Updated test 1020 for asyncs 16, 17 and 18 Updated test 1022 for asyncs 16, 17 and 18 Updated test 1024 for asyncs 16, 17 and 18 In test 1032 updated async messages to show the bcc recpt. This is because of the change to make bcc recpts visible to the creator and to all when target is an open conference. Added sleep 2 before test 1310. Otherwise test 1311 may fail since one of the clients has not been idle for long enough (lyskomd is OK.) Updated test 1333 to not show deleted items Similar in 1334, 1335 and 1339. * src/server/testsuite/lyskomd.0/01.exp: Updated query-predefined-aux-items test for item 27 1998-12-22 David Byers * src/server/conf-file.c (MAXLINE): Increased line length limit to 1000 characters 1998-12-22 Per Cederqvist One more test. * src/server/testsuite/lyskomd.0/03.exp: Test call 99. 1998-12-20 Per Cederqvist More tests. * src/server/testsuite/lyskomd.0/03.exp: Test call 95-98. Speed up regexp matching a little. * src/server/regex-match.c (lookup_regexp): Attempt to allocate a fastmap. The invitation bit should not be set when a user himself joins a conference. * src/server/membership.c (add_member_old): Never set the invitation bit when a user adds himself to a conference. Avoid too long lines in the documentation. * doc/Protocol-A.texi (modify-system-info): Remove whitespace to avoid too long lines in the generated info file. 1998-12-17 David Byers * src/server/testsuite/config/Makefile.am (lyskomd-config): Use aux-items.conf in this directory instead of in run-support. * src/server/text.c (modify_text_info): Call commit_aux_item_list. * src/server/conference.c (modify_conf_info): Call commit_auc_item_list. * src/server/admin.c (modify_server_info): Call commit_aux_item_list. * src/server/aux-items.c (commit_aux_item_list): New function to really delete aux_items. 1998-11-14 Per Cederqvist Fixed another uninitialized memory problem: the allow_anon, reserved1, reserved2 and reserved3 bits of the Conf_type was not always properly initialized. * src/server/person.c (create_person_generic): Initialize allow_anon, reserved1, reserved2, and reserved3. * src/server/memory.c (init_conf_type): Initialize allow_anon, reserved1, reserved2, and reserved3. * src/server/prot-a-parse.c (prot_a_parse_conf_type): Let allow_anon default to 1, not 0. We really should have a way to let it default to unset, so that a set-conf-type that only specifies four bits doesn't alter the remaining bits. * src/server/testsuite/lyskomd.0/03.exp: Set allow_anon, and expect it to be set. Test call 92-94. 1998-11-09 Per Cederqvist Fixed an uninitialized memory problem. * src/server/memory.c (init_conference): Initialize highest_aux and expire to 0. * src/server/conference.c (do_create_conf): Initialize expire to 0. Avoid symbols with global linkage. * src/server/aux-items.c (aux_item_triggers): Now static. One more test case. * src/server/testsuite/lyskomd.0/03.exp: Test call 91. 1998-11-09 Per Cederqvist More test cases. * src/server/testsuite/lyskomd.0/03.exp: Test calls 86-90. Minor fixes to the documentation. * doc/Protocol-A.texi (create-text): This call can never generate the error ``anonymous-rejected''. (create-anonymous-text): Avoid too long lines. 1998-10-22 Per Cederqvist More test cases. * src/server/testsuite/config/unix.exp (extracting_expect): New proc. * src/server/testsuite/lyskomd.0/03.exp: Test call 46-85. * src/server/testsuite/renumber.el (renumber-lyskom-send-simple-expect): Handle extracting_expect. Only allow one call to set-client-version. * src/include/kom-errno.h (KOM_CLIENT_IS_CRAZY): Old favourite resurrected. * src/server/session.c (set_client_version): Fail if the client version already was set. Allow set-info with motd_of_lyskom set to 0. * src/server/admin.c (set_info): Allow motd_of_lyskom to be 0. Fixed the error-status of find-previous-text-no. * src/server/text.c (greater): Added const qualifier. (find_previous_text_no): Fixed the returned error status. * src/server/testsuite/lyskomd.0/01.exp: Adjusted to the error status that is now returned by the bug-fixed find_previous_text_no. Documentation fixes and updates. * doc/Protocol-A.texi (send-message): Document that recipient 0 means that the message is sent to all sessions. (get-last-text): Say that this relies on all texts being written in chronological order. (set-client-version): This call can only be used once per session. It will return client-is-crazy if used twice. (get-client-version): This was called "get-client-name". (mark-text): Bogus example fixed. (unmark-text): Bogus example fixed. (lookup-z-name): The want-pers and want-confs arguments were swapped in the function header. (set-info): Document that lyskomd 1.9.0 erroneously returned text-zero if MOTD was 0. 1998-10-17 Per Cederqvist More tests. * src/server/testsuite/lyskomd.0/03.exp: Test call 30-45. Fixed a memory corruption problem. * src/server/memory.c (copy_conference): Fixed a memory corruption problem that was introduced when Local_to_global was introduced. (copy_person): Likewise. (copy_text_stat): Added a const qualifier. Rewritten to decrease the probability that the same kind of bug is introduced here, that is, assign each field separately instead of assigning the entire struct at once. (copy_aux_item_list): Now static. Rewritten as above. (coy_aux_item): Added const qualifier. Rewritten as above. * src/server/kom-memory.h (copy-person): Added const qualifier. (copy_text_stat): Likewise. (copy_aux_item): Likewise. (copy_aux_item_list): Removed (now static). Minor fixes to the documentation. * doc/Protocol-A.texi (Predefined Aux-Item Types): Fixed a Texinfo syntax error. (sync-kom): Fixed bugs in the example. 1998-10-16 Per Cederqvist More tests. * src/server/testsuite/lyskomd.0/03.exp: Test call 27-29, 40. 1998-10-14 Per Cederqvist More test cases. * src/server/testsuite/lyskomd.0/03.exp: Test calls 8-27, 50, 78. * src/server/testsuite/lyskomd.0/summarize.sh: New file. Fixed bug in mark_as_read. * src/server/membership.c (adjust_read): Fixed a fence-post error that was introduced when Local_to_global was introduced. Clarify the documentation. Change the specification of async-leave-conf. * doc/Protocol-A.texi (delete-conf): State the mailboxes can be removed. (get-conf-stat-older): Document the mask argument. (mark-text-old): Document that mark-type 0 is used to remove the mark. (async-leave-conf): This message is always sent to a person when that person ceases to be a member of a conference, whatever the reason is. The protocol specification used to say that it was only sent when a person was forced to leave a conference. The current wording makes more sense, and it was also the implemented behavior, so update the specification rather than the program. 1998-10-12 David Byers * src/libraries/libcommon/Makefile.am (INCLUDES): Added -DSERVER as in src/server 1998-10-11 Jonas S Karlsson Aux-info defined for import/export of emails. These are preliminary. but will be improved. * doc/Protocol-A.texi: email aux-infos x-XXX 1998-10-11 Per Cederqvist Keep an extra copy of the database, just in case. Do some sanity checking when copying file contents. * src/server/simple-cache.c (pre_sync): Store the previous backup file. (copy_file): Abort if we cannot seek or read the file we copy from. Abort if the value we read didn't end in a newline, start with "T ", "C " or "P ", if the identity number in the data isn't what we expected, or if it isn't followed by a space. This change attempts to detect file damage as early as possible. * src/server/server-config.c (parameters): Added "Backup file 2". (read_configuration): Handle backupfile_name_2. * src/server/ramkomd.c (init_data_base): Print backupfile_name_2. * src/server/param.h (struct kom_par): Added backupfile_name_2. * src/server/dbck-cache.c (cache_sync): Store the previous backup file. * doc/man/lyskomd.8: Added "Backup file 2". Allow compaction of the text file even if there are errors in the data base. * src/server/dbck.c (main): Allow -g even if errors occured, but only if the user confirms. 1998-10-11 Per Cederqvist More test cases. * src/server/testsuite/lyskomd.0/03.exp: Test call 4-7. 1998-10-09 Per Cederqvist Commit some Emacs support code for test script writers. * src/server/testsuite/renumber.el: New file. (renumber-lyskom-send-simple-expect): New function. 1998-10-08 Per Cederqvist More test cases. * src/server/testsuite/lyskomd.0/03.exp: Test call 0, 1, 2 and 3. * doc/Protocol-A.texi (login-old): The error-status indicates the person number when invalid-password is returned. 1998-10-08 David Byers * src/server/prot-a-output.c (prot_a_output_membership): Output break_type. * src/server/ram-output.c (foutput_membership_2): Output break_type. * src/server/ram-parse.c (fparse_membership_2): Parse break_type. 1998-10-07 David Byers * src/server/text.c (recp_sent_by): New function. (filter_secret_info): Let the sender of a bcc see a bcc and let bccs to open conferences be visible to all. 1998-10-06 David Byers * src/server/send-async.c (async_new_membership): New function. (async_sub_recipient): Ditto. (async_new_recipient): Ditto. * src/server/prot-a-send-async.c (prot_a_async_new_membership): New function. (prot_a_async_sub_recipient): Ditto. (prot_a_async_new_recipient): Ditto. * src/server/text.c (send_async_add_recipient): New function. (add_recipient): Send async-new-recipient (send_async_sub_recipient): New function. (do_sub_recpt): Send async-sub-recipient. * src/server/membership.c (send_async_new_membership): New function. (add_member_common): Send async-new-membership 1998-10-06 Per Cederqvist Document bcc-recpt. A created person is a member of his mailbox. * doc/Protocol-A.texi (The Misc-Info List): Document blank carbon copies. (create-person-old): Document that the new person will be a member of his letterbox. (create-person): Likewise. Clarify the documentation about accept_async and make the implementation conform to the documentation. * src/server/session.c (accept_async): Don't accept 1, 2, 3, 4 or 10 (which are in the interval [0..ay_dummy_last) but not used). Complain about the first rejected async number, not the last. * doc/Protocol-A.texi (query-async): Added a reference to the currently preselected asynchronous messages, since the example is valid for lyskomd 1.9 but not lyskomd 2.0. (Asynchronous Messages): Encourage clients to use accept-async instead of trusting the defaults. State that the obsolete calls may be non-existing. More test cases. * src/server/testsuite/lyskomd.0/03.exp: New file. * src/server/testsuite/lyskomd.0/01.exp: Use read_versions instead of duplicating code. * src/server/testsuite/config/unix.exp (read_versions): New function, extracted from ../lyskomd.0/01.exp. Makefile improvements. * src/server/testsuite/Makefile.am (MOSTLYCLEANFILES): Added *.sum and *.log. (check-l2g): New name for former target l2g_check. (check-lyskomd): New name for former target lyskomd_check. Remove some unused code. * src/libraries/libcommon/kom-errno.c (kom_perror): Was unused. Removed. * src/include/config.h (kom_errout): Was unused. Removed. 1998-10-04 David Byers * configure.in: Output to include/config.h * src/server/aux-items.c (delete_aux_item_list): Call undelete triggers. * src/server/dbck.c: Moved BUGDECL to top level. * src/server/internal-connections.c (init_connection): Cast in comparisons to get rid of compiler warnings. * src/server/text-garb.c: Moved BUGDECL to top level. * src/server/person.c: Moved BUGDECL to top level. * src/server/conference.c: Moved BUGDECL to top level. * src/server/membership.c (do_change_priority): Only fake the passive flag when fake_passive is true. * src/server/connections.c (dump_statistics): Remove compiler warnings by casting in comparisons. * src/include/kom-types.h: Declared fields of Version_info_internal const to get rid of compiler warnings (plus, it makes sense.) * src/server/simple-cache.c (cached_get_text): Remove compiler warnings by casting in comparisons. * src/include/server/smalloc.h (SMALLOC_MAGIC_FREE): Declare constants as unsigned to avoid compiler warnings. * src/server/ram-parse.c (fparse_string): Remove compiler warnings by casting in comparisons. * src/server/local-to-global.c (find_block): Removed const declarations to get rid of compiler warnings (it was cast away anyway.) * src/libraries/libcommon/kom-errno.c: Include kom-config * src/server/admin.c: Conditionally include config.h * src/server/dbck.c (check_membership): Check duplicated info between member and membership records. Redeclared mship param as non-const. 1998-10-04 Per Cederqvist * TODO: New file. 1998-08-31 Per Cederqvist Added more tests and documentation. * doc/Protocol-A.texi (get-text): Uses the text-zero error code. (get-text-stat-old): Likewise. (get-text-stat): Likewise. * src/server/testsuite/lyskomd.0/02.exp: Added tests for get-text-stat and get-text-stat-old. Check that a text wiht one public and one secret recipient is properly filtered. 1998-08-30 Per Cederqvist query-predefined-aux-items was broken. * src/server/aux-items.c (query_predefined_aux_items): Added a missing statement so that the next link really is followed. Added more tests and documentation. * src/server/testsuite/lyskomd.0/01.exp: Added tests for requests 89-104. * doc/Protocol-A.texi (get-conf-stat): Removed a note that said that only the old bits of the Any-Conf-Type are returned by this call. (Protocol Requests): 47 is obsoleted by 104. (get-created-texts): 47 is obsoleted by 104. (set-membership-type): Document the login-first error code. (local-to-global): Likewise. (map-created-texts): New node. More documentation is needed here. 1998-08-29 Per Cederqvist Introduce Aux-Item-Input in the protocol spec. (It is a subset of Aux-Item.) Don't include aux_no in it. * src/server/testsuite/lyskomd.0/00.exp: Don't send the aux_no field in Aux-Item-Input data. * src/server/prot-a-parse.c (prot_a_parse_aux_item): Don't expect the aux_no field. Leave that field as garbage. * doc/Protocol-A.texi (LysKOM Data Types): Added Aux-Item-Input. Removed the '<10>' indicator in the Text-Stat declaration. (create-text): Use type Aux-Item-Input for input parameters. (create-anonymous-text): Likewise. (create-conf): Likewise. (create-person): Likewise. (modify-text-info): Likewise. (modify-conf-info): Likewise. (modify-system-info): Likewise. Clean up Protocol-A.texi. * doc/Makefile.am (protocol-a.info): Don't allow tabs in the document. * doc/Protocol-A.texi: Write all types as "Foo-Bar", never "Foo-bar". Don't use tabs. (Notation): Be explicit about how types are written. Misc documentation fixes. * doc/Protocol-A.texi (who-is-on-ident): Corrected the return type to ARRAY Who-Info-Ident. (modify-system-info): Changed the type of the times-to-delete argument from the undefined type Number-List to ARRAY Aux-No. (set-info): This accepts an Info-Old, not an Info. 1998-08-29 Per Cederqvist Fixed a memory problem in get_collate_table. * src/server/admin.c (get_collate_table): The result contains garbage on entry, so don't call s_clear() on it. Added more tests and documentation. * src/server/testsuite/lyskomd.0/01.exp: Read $top_srcdir/versions instead of ../version.incl, so the script gets all the versions. Added tests for requests 63-88. * src/server/testsuite/Makefile.am (site.exp): Depends on Makefile. Set top_srcdir, but not srcdir. (srcdir can still be used in the test scripts, since runtest sets it when the --srcdir option is used.) * doc/Protocol-A.texi (LysKOM Data Types): The invisible bit is always set for sessions where no-one is logged on. (who-is-on-dynamic): Likewise. (set-info): The version number was missing from the example. (create-conf): Indentation fixes. 1998-08-28 David Kågedal * doc/Protocol-A.texi: Cleaned up the call definitions. Removed all type synonyms for ARRAY types. Conference had an extra 'type' field. 1998-08-28 Per Cederqvist Added more tests and documentation. * src/server/testsuite/lyskomd.0/01.exp: Added tests for requests 51-62. * doc/Protocol-A.texi (LysKOM Data Types): The order of the elements in Who-Innfo-Old was wrong. The same bug existed at least as far back as in the prot-A.txt file that was distributed with the 1.7.0 server. I find it better to change the documentation than the code. (create-person-old): Document the auto-login feature. (who-is-on): Clarify which sessions that are returned. (get-unread-confs): Clarify that this request may return extra conferences. This request may not be made before you log in. 1998-08-27 Per Cederqvist Added more tests and documentation. * src/server/testsuite/lyskomd.0/01.exp: Added tests for requests 42-50. * doc/Protocol-A.texi (LysKOM Data Types): Removed Member-Old and Member-List-Old. (shutdown-kom): exit-val is an argument to the request, not the result from the request. (get-members-old): Simplified the return value to "ARRAY Pers-No" instead of "Member-List-Old". Explicitly state that the returned list is truncated if there are too few members of the conference. 1998-08-25 Per Cederqvist The request 36=get-info was broken. * src/server/fncdef.txt (get_info_old): Returns an info_old, not an info. Added more tests and documentation. * src/server/testsuite/lyskomd.0/01.exp: Added tests for requests 32-41. * doc/Protocol-A.texi (LysKOM Data Types): Document the aux-item-list part of the Info structure. (who-is-on-old): Document that the returned list contains only sessions that are logged in visibly. 1998-08-25 Per Cederqvist Documentation fixes: async-login was wrong. * doc/Protocol-A.texi (LysKOM Data Types): Added Any-Conf-Type to the type index. (get-text): Never fails with login-first. The no-such-text error is used when the user isn't logged in. (get-text-stat-old): Likewise. (get-text-stat): Likewise. (async-login): This async message includes a session number. More test cases added. * src/server/testsuite/config/unix.exp (any_num): New constant. (lyskomd_start): Increase the timeout around the start of lyskomd, since it can take quite a while on slow computers. * src/server/testsuite/lyskomd.0/01.exp: Added tests of more requests. * src/server/testsuite/lyskomd.0/02.exp: New file. * src/server/testsuite/Makefile.am (lyskomd_check): Added a missing quote character. 1998-08-23 Per Cederqvist Fixed the documentation of 12=lookup-name. * doc/Protocol-A.texi (LysKOM Data Types): Documented Conf-List-Archaic. (lookup-name): This request returns a Conf-List-Archaic, not a Conf-No-List. Added an example. 1998-08-22 Per Cederqvist Document more of the used error codes. * doc/Protocol-A.texi (get-person-stat-old): Added error code `login-first'. (login): Added error code `conference-zero'. (Error Codes): Renamed `illegal-password' to `invalid-password', which is the name the rest of the document uses. More test cases. * src/server/testsuite/lyskomd.0/01.exp: New test suite. * src/server/testsuite/config/unix.exp (lyskomd_start): Create a fresh database before starting lyskomd. * src/server/testsuite/Makefile.am (lyskomd_check): Don't create the database before running the lyskomd tests. Fixed bugs from the Local_to_global introduction. * src/server/membership.c (adjust_read): Fixed a fencepost error that was introduced 1998-07-26. * src/server/ram-output.c (foutput_text_list): Handle empty text lists properly. * src/server/prot-a-output.c (prot_a_output_person): Handle empty Local_to_global structures properly. (prot_a_output_conference): Likewise. (prot_a_output_conference_old): Likewise. * src/server/ram-output.c (foutput_text_list): Handle empty text lists that once was non-empty properly. Added indices to the protocol specification. * doc/Protocol-A.texi: Added a Request Index and a Type Index. Eliminated a race condition in the test case. * src/server/testsuite/config/unix.exp (lyskomd_death): Synchronize with the lyskomd process so that it dies at a proper time. * src/server/ramkomd.c (main): Don't terminate until a confirmation is read on stdin when running under DejaGnu. Implemented map_created_texts. * src/include/services.h (map_created_texts): New function. * src/server/person.c (map_created_texts): New function. * src/server/fncdef.txt: Added map_created_texts. * src/server/prot-a.c (prot_a_is_legal_fnc): Added call_fnc_map_created_texts. * src/server/testsuite/lyskomd.0/00.exp: Added test cases for map_created_texts. 1998-08-16 Per Cederqvist Documented all undocumented Aux-Items. * doc/Protocol-A.texi (Predefined Aux-Item Types): Documented aux-items 13, 14 and 15. 1998-08-14 Per Cederqvist The cache tried to free person, text and conference 0 during server shutdown. * src/server/simple-cache.c (free_all_cache): Don't attempt to access Pers_no, Conf_no or Text_no 0. (get_conf_node): Fail if the argument is less than 1. (get_pers_node): Likewise. (get_text_node): Likewise. (traverse_person): Unused function; don't compile it. * run-support/aux-items.conf (creating-software): New aux-info. 1998-08-10 Per Cederqvist Ported the test suite to DejaGnu 1.2. * src/server/testsuite/config/unix.exp (lyskomd_start): Added missing global declarations. (l2g_start): Likewise. 1998-08-10 Per Cederqvist Typo in a Makefile.am fixed. * src/server/testsuite/config/Makefile.am (lyskomd-config): Added a missing quote. 1998-08-09 Per Cederqvist Fixed bugs in get_created_texts. * src/server/person.c (get_created_texts): Fixed a fencepost error and two other errors, all introduced 1998-07-26. Test suite improvements. * src/server/testsuite/lyskomd.0/00.exp: Added more tests. Added tests for get-created-texts. * src/server/testsuite/l2g.0/10.exp: New file. * src/server/testsuite/config/unix.exp (l2g_stop): Send a quit command to test-l2g, so that we can be sure that the test case doesn't miss some unexpected final output from the test program. (unanchored_expect): Fixed an error message. * src/server/testsuite/test-l2g.c (main): Added 'q' (quit) command. Fixed more bugs in get_map. * src/server/text.c (get_map): Set result.first_local_no correctly if the map in the conference is completely empty. * src/server/prot-a-output.c (prot_a_output_l2g_iterator_as_text_list): Don't forget to emit trailing zeroes in the text-list. Document some previously undocumented behavior of get-map and get-created-texts. * doc/Protocol-A.texi (get-map): Document what happens when attempting to retrieve texts before the start of the map. (get-created-texts): Likewise. The L2g_iterator sometimes iterated past the end of a bounded search. * src/server/local-to-global.c (l2gi_searchsome): Set search_ended correctly when the end is set so that the iterator will loop over nothing, even though later texts exists. Let automake generate the INSTALL file. * README: Include the contents of the INSTALL file. This file needs a major overhaul. * mkmi: Remove INSTALL and expect automake to recreate it. Removed GNU malloc. The integration was poor, to say the least, and it was not generally an improvement to use GNU malloc. * src/server/testsuite/Makefile.am: Removed references to gnumalloc. * src/server/Makefile.am: Removed reference to gnumalloc. * src/libraries/Makefile.am (SUBDIRS): Removed @GNUMALLOC@. * INSTALL: Don't mention GNU malloc. * configure.in: --with-gnu-malloc: flag removed. Don't substitute GNUMALLOC. Don't define USE_GNU_MALLOC or USING_GNU_MALLOC. Don't use the following that was only used because of GNU malloc: SUNOS_LOCALTIME_BUG, getpagesize, memmove, AC_USG. Don't attempt to create src/libraries/gnumalloc/Makefile. * src/libraries/gnumalloc: All files in this directory removed. Added sanity check to local_to_global. * src/server/text.c (local_to_global): Check that the no_of_texts argument isn't larger than 255. 1998-08-08 Per Cederqvist Fixed a protocol error with async_deleted_text. * src/server/prot-a-send-async.c (prot_a_async_deleted_text): Fixed the size in the header. This emits 18 elements, not 16. Minor documentation fixes. * doc/aux-info.doc: Document dont-garb. * doc/Protocol-A.texi: Spell checking performed. Some other minor typos fixed. State that the aux-item read-confirm should only be added after the user has acknowledged that he has read the text. (accept-async): Moved some text that belonged here from the query-async node. The error-status indicates the first offending number, not the index of the first offending number, when unknown-async is returnd. Fixed bugs in get_map and local_to_global. * src/server/text.c (get_map): Fixed a couple of fence errors. (local_to_global): Using first_local_no==0 is an error. Fixed a fence error. * src/server/prot-a-output.c (prot_a_output_text_mapping): Emit "0" or "1", not "48" or "49", as the later-texts-exists flag. Fixed a bug that could cause much too much data to be written. Fixed bugs and made improvements to the test cases for get_map and local_to_global. * src/server/testsuite/lyskomd.0/00.exp: Many bugs fixed. Several tests added. * src/server/testsuite/config/unix.exp (attach): New constant. (line_leader): New variable. (meta_line_leader): New variable. (l2g_start): Set l2g_id, expect_active and expect_always. (fix_expect_after): New proc. (simple_expect): New argument: meta. Handle line leaders. Removed tests for unexpected lines, which should now be handled via expect_active. (unanchored_expect): Added missing quotes. (lyskomd_start): Handle attach. Set expect_active and expect_always to something sane. (client_start): Use tcpconnect.py and line leaders to make it easier to debug the test cases. Set expect_active and expect_always to something sane. (talk_to): Handle l2g. Handle line leaders. Call fix_expect_after. (client_death): New proc. * src/server/testsuite/tcpconnect.py: New file. * src/server/testsuite/Makefile.am (../lyskomd): New target. (lyskomd_check): Depend on ../lyskomd. (site.exp): Added srcdir. (EXTRA_DIST): Added tcpconnect.py. * src/server/Makefile.am (all-recursive check-recursive): Depend on lyskomd. Read the file name of the "Aux-item definition file" from the config file, not from the command line. * src/server/testsuite/config/Makefile.am (lyskomd-config): Added "Aux-item definition file". * src/server/server-config.c (parameters): Added "Aux-item definition file". (AUX_DEF_FILE): Removed. (read_configuration): Handle aux_def_file just like all the other file names. * src/server/ramkomd.c (initialize): Removed the aux_def_file argument. All callers updated. Get the file of the aux_def_file from the config file. (main): Removed the -c and -a options. This reverts the change from Sat Sep 13 15:07:32 1997. It is more consistent to get the file name of the aux-def file from the config file. The -c option was buggy anyhow. * src/server/param.h (struct kom_par): Added aux_def_file. * doc/man/lyskomd.8: Removed the -c and -c flags. Added "Aux-item definition file". * src/include/config.h (AUX_DEF_FILE): Constant removed. Default to sending async_new_text_old and ay_leave_conf, bug not async_new_text, just as the documentation says. * src/server/send-async.c (async_new_text_old): Use prot_a_async_new_text_old, not prot_a_async_new_text. * src/server/async.h (ASYNC_DEFAULT_MESSAGES): Added ay_new_text_old instead of ay_new_text. Added ay_leave_conf. Get rid of some compiler warnings. * src/server/rfc931.c (get_real_username): Mark unused arguments. * src/server/dbck-cache.c (cached_lock_person): Marked unused arguments. (cached_unlock_person): Likewise. (cached_lock_conf): Likewise. (cached_unlock_conf): Likewise. 1998-08-07 Per Cederqvist Merged old uncommitted changes to prot-A.txt. * doc/prot-A.txt: Error code 38=no-connect is no longer used. Documented 85=get-collate-table. Typo fixes. Facilitate testing of Local_to_global with Electric Fence. * src/server/testsuite/config/unix.exp (efence): New constant. (efence_blurb): New proc. (l2g_start): Handle an efence-instrumented test program if the global variable efence is true. Improved the documentation on the config file. * doc/man/lyskomd.8: Documented the values that you can pass to bool config parameters. 1998-08-06 Per Cederqvist Added the beginnings of a test suite for the complete lyskomd binary. * README: Talk a little about the test suite. * src/server/testsuite/Makefile.am (l2g_check): Added --srcdir to the runtest command line. (lyskomd_check): New target. * src/server/testsuite/Makefile.am (check): Added lyskomd_check. * src/server/testsuite/lyskomd.0/00.exp: New file. * src/server/testsuite/config/unix.exp: (hollerith): New constant. (maxint): New constant. (clientport): New constant. (muxport): New constant. (unanchored_expect): Continue with the expect if an unexpected line is detected. (lyskomd_start): New proc. (lyskomd_death): New proc. (client_start): New proc. (talk_to): New proc. (holl): New proc. * src/server/testsuite/config/Makefile.am (noinst_DATA): Added lyskomd-config. (lyskomd-config): New target. Regenerate protocol-a.info automatically. * doc/Makefile.am (protocol-a.info): Added an explicit rule because Automake 1.3 fails to add it automatically. 1998-08-05 Per Cederqvist Fixed the documentation for the local-to-global call. * doc/Protocol-A.texi (LysKOM Data Types): Changed the name of the type Local-To-Global_Result to Text-Mapping. All uses updated. Implemented the local-to-global call. * src/server/fncdef.txt: Added local_to_global. * src/include/services.h (local_to_global): New function. * src/include/kom-types.h (Text_mapping): New type. * src/server/text.c (get_map): Fixed the type of the no_of_texts argument. (local_to_global): New function. * src/server/prot-a.c (prot_a_reply): Handle rt_text_mapping. (prot_a_is_legal_fnc): Handle call_fnc_local_to_global. * src/server/prot-a-output.c (prot_a_output_text_mapping): New function. * src/server/prot-a-output.h: Likewise. * src/server/connections.h (Res_type): Added rt_text_mapping. (Result_holder): Added text_mapping. 1998-08-03 Per Cederqvist Document the local-to-global call. * doc/Protocol-A.texi (Articles): Refer to local-to-global instead of get-map. (LysKOM Data Types): Added subsection titled "Mapping Local to Global Text Numbers". (Protocol Requests): Mark get-map as obsolete, and refer to 103. Added 103=local-to-global. (get-map): This is superseded by local-to-global. (accept-async): Fixed typo. (local-to-global): New node. 1998-08-02 Per Cederqvist Generate and install protocol-a.info. * doc/Makefile.am (info_TEXINFOS): New target. Moved Protocol-A.texi here. (EXTRA_DIST): Moved Protocol-A.texi to info_TEXINFOS. * mkmi: Remove scripts/texinfo.tex and expect automake to regenerate it. Minor syntactic documentation fixes. * doc/Protocol-A.texi: Added @dircategory and @direntry commands. (Protocol Requests): Added set-membership-type to the menu. (set-membership-type): Minor typo fixed. (Top): State that this is a draft, and that the version numbers are wrong. 1998-07-27 Per Cederqvist Fixed a pointer bug in Local_to_global. * src/server/local-to-global.c (join_range): Fixed a bug where a pointer that pointed to the old position of a reallocated block was used. 1998-07-26 Per Cederqvist dbck can now read database format 2. * src/server/dbck-cache.c (init_cache): Handle database format 2. Fix the bootstrap database. * db-crypt/db/lyskomd-data: CONF-RECORD uses the Local_to_global structure. Remove all traces of the Text_list type. * src/include/kom-types.h (Text_list): Removed. * src/server/connections.h (Res_type): Removed rt_text_list. (Result_holder): Removed text_list. * src/server/prot-a-output.h (prot_a_output_text_list): Removed. * src/server/prot-a-output.c (prot_a_output_text_list): Removed. * src/server/prot-a.c (prot_a_reply): Don't attempt to handle rt_text_list. Code cleanup. * src/server/aux-item-def.y: Fixed indentation of include statements. * src/server/aux-item-def.lex.c: No longer kept under version control. Improve documentation. * doc/server.extend: Updated. Start using the Local_to_global structure. * doc/lyskomd-database-format (DATABASE VERSION 2): CONF-RECORD and PERS-RECORD uses the Local_to_global structure. * configure.in: Added AC_C_INLINE. * src/server/text.c (add_text_in_conf): Adjusted to the fact that the texts member of Conference is now a l2g. (do_sub_recpt): Likewise. (set_loc_no): Removed. (adjust_text_list): Removed. (do_delete_text): Adjusted to the fact that the created_texts member of Person is now a l2g. (do_create_text): Likewise. (get_map): The result argument now points to a l2g_iterator_as_text_list instead of a Text_list. Adjusted to the fact that the texts member of Conference is now a l2g. * src/server/simple-cache.c (mark_conference_as_changed): Adjusted to the fact that the texts member of Conference is now a l2g. (setup_small_conf): Likewise. * src/server/ram-parse.h (fparse_text_list): Removed. * src/server/ram-parse.c (fparse_conference_2): Use l2g_read instead of fparse_text_list. (fparse_person_2): Likewise. (fparse_text_list): The result argument now points to a Local_to_global instead of a Text_list. * src/server/ram-output.h (foutput_text_list): The text_list argument is now a pointer to Local_to_global instead of a Text_list. * src/server/ram-output.c (foutput_person_0): Adjusted to new API of foutput_text_list. (foutput_person_2): Use l2g_write instead of foutput_text_list. (foutput_conference_2): Likewise. (foutput_conference_1): Adjusted to new API of foutput_text_list. (foutput_conference_0): Likewise. (foutput_text_list): The text_list argument is now a pointer to Local_to_global instead of a Text_list. The generated output is still the same. (foutput_ulong): Eliminated a future buffer overrun. Cleaned up the code. * src/server/prot-a.c (prot_a_reply): Handle rt_l2g_iterator_as_text_list. * src/server/prot-a-output.h (prot_a_output_l2g_iterator_as_text_list): New function. * src/server/prot-a-output.c (prot_a_output_person): Adjusted to the fact that the created_texts member of Person is now a l2g. (prot_a_output_conference): Adjusted to the fact that the texts member of Conference is now a l2g. (prot_a_output_conference_old): Likewise. (prot_a_output_l2g_iterator_as_text_list): New function which emulates a Text_list. * src/server/person.c (do_delete_pers): Adjusted to the fact that the created_texts member of Person is now a l2g. (get_created_texts): The return value is now an l2g_iterator_as_text_list, not a Text_list. Adjusted to the fact that the created_texts member of Person is now a l2g. * src/server/memory.c (clear_text_list): Removed. (copy_text_list): Removed. (clear_conference): Adjusted to the fact that the texts member of Conference is now a l2g. (init_conference): Likewise. (copy_conference): Likewise. Added const qualifier to the argument. (clear_person): Adjusted to the fact that the created_texts member of Person is now a l2g. (copy_person): Likewise. (init_person): Likewise. (init_text_list): Removed. (copy_aux_item_list): Added const qualifier to the src argument. * src/server/membership.c (add_rec_time): Adjusted to the fact that the texts member of Conference is now a l2g. (adjust_read): Likewise. (mark_as_read): Likewise. (check_membership): Likewise. (set_unread): Likewise. (set_last_read): Likewise. * src/server/kom-memory.h (copy_conference): The argument is const. (copy_aux_item_list): Likewise. (init_text_list): Removed. * src/server/fncdef.txt (get_map): Changed return type from text_list to l2g_iterator_as_text_list. (get_created_texts): Likewise. * src/server/dbck.c (struct delete_list): New struct. (delete_list_append): New static function. (execute_deletions): New static function. (check_misc_infos): Adjusted to the fact that the texts member of Conference is now a l2g. (adjust_text_list): Deleted. (check_created_texts): The "created" argument now points to a Local_to_global. Removed the check for "bad created_texts array" since it can no longer be bad in that way. (check_membership): Adjusted to the fact that the texts member of Conference is now a l2g. (check_texts_in_conf): The "tlist" argument now points to a Local_to_global. Removed the check for "bad created_texts array" since it can no longer be bad in that way. * src/server/dbck-cache.c (cached_get_highest_local_no): Adjusted to the fact that the texts member is now a l2g. (cache_sync): Fixed type in some printf format strings. * src/server/connections.h (Res_type): Added rt_l2g_iterator_as_text_list. (Result_holder): Added l2g_iterator_as_text_list. * src/server/conference.c: (do_delete_conf): Adjusted to the fact that the texts member is now a l2g. * src/server/Makefile.am (DBCK): Added local-to-global.c. (all-recursive, check-recursive): Require libcheck.a to be built. * src/include/services.h (get_created_texts): Changed type of the result to L2g_iterator_as_text_list. (get_map): Likewise. * src/include/kom-types.h (struct l2g_block_info): New forward declaration. (Local_to_global): New type. (L2g_iterator): New type. (L2g_iterator_as_text_list): New type. (Conference): The texts member is now a Local_to_global, not a Text_list. (Person): The created_texts member is now a Local_to_global, not a Text_list. Fixes and improvements to the Local_to_global structure. * src/server/local-to-global.h (L2G_BLOCKSIZE): Moved to local-to-global.c. (L2g_block_info): Likewise. (Local_to_global): Likewise. (l2g_copy): Switched placement of src and dest to match other copy functions in the lyskomd code. Added const qualifier. (l2g_lookup): Added const qualifier to the l2g argument. (l2g_next_key): Likewise. (l2g_compact): Removed. (l2g_first_appendable_key): New function. (l2g_delete_global_in_sorted): New function. (l2g_dump): Switch placement of l2g and file arguments to match other similar functions in the lyskomd code. Added const qualifier. (l2g_write): Likewise. (l2g_read): Likewise. (l2g_searchall): Added const qualifier. (L2g_iterator): Moved to kom-types.h. (l2gi_searchsome): Added const qualifier. (l2gi_begin): New function. (l2gi_end): New function. * src/server/local-to-global.c: Include assert.h. Only include stdlib.h if HAVE_STDLIB_H. Include stdio.h if we didn't get NULL from stdlib.h. Inlucd lyskomd.h and server/smalloc.h. (L2G_BLOCKSIZE): Moved here from local-to-global.h. (struct l2g_block_info): Likewise. (is_dense): New static function. (is_empty): New static function. (key_value): New static function. (sparse_skip_deleted): New static function. (sparse_locate_value): New static function. (sparse_compact): New static function. (add_block): Use srealloc instead of realloc. Don't initialize start -- the caller is responsible for doing so. (delete_block): Use sfree instead of free, and srealloc instead of realloc. (make_sparse): Don't change the value of start, since there is no need to, and make_sparse may now be called on an empty block, which would cause start to be set to a garbage value. (find_block): Added a const qualifier to the return value and l2g argument. Use key_value to simplify code. (find_block_index_key): Added a const qualifier to the l2g argument. Use helper functions to simplify the code. Use sparse_skip_deleted so that the function never returns a deleted key. Never return deleted keys in dense blocks either. (join_range): New static function. (join_blocks): New static function. (l2g_init): Set first_unused to 1. (l2g_clear): Use sfree instead of free. Set first_unused to 1. (l2g_copy): Added const qualifier to the src argument. Simplified code by using helper functions and relying on the fact that calling l2g_append with a Text_no=0 is a no-op. Set first_unused of the copy. (l2g_append): Send a log message and do nothing if an attempt to set a local number lower than first_unused is detected. Set first_unused. Fixed the logic about when to add a new block, when to compact the last block, and when to make it sparse. Simplify code by using the helper functions. (l2g_delete): Don't increase the zeroes counter if a zero is deleted. Delete the entire block if it became empty. Attempt to join this block to its neighbors. Compact the block if it was sparse and contained too many deleted entries. (l2g_lookup): Added const qualifier to the l2g argument. Don't return uninitialized data. Use helper functions to simplify code and make it slightly faster. (l2g_next_key): Added const qualifier to the l2g argument. (l2g_first_appendable_key): New function. (l2g_delete_global_in_sorted): New function. (l2g_compact): Removed. (l2g_dump): Switch placement of l2g and file arguments to match other similar functions in the lyskomd code. Added const qualifier. Dump first_unused. Use helper functions to simplify code. (l2g_read): Switch placement of l2g and file arguments to match other similar functions in the lyskomd code. Read first_unused. Return a success indicator. Detect unexpected EOF conditions. (l2g_write): Switch placement of l2g and file arguments to match other similar functions in the lyskomd code. Write first_unused. Use helper functions to simplify code. (l2gi_searchall): Added const qualifier to the l2g argument. Simplify code by calling l2gi_searchsome instead of duplicating the code. (l2gi_searchsome): Added const qualifier to the l2g argument. Complain if the begin argument is less than 1. Don't forget to initialize search_ended. Set beginval. Giving end==0 means that the iterator should continue to the end of the set. Use helper functions to simplify the code. (l2gi_next): Use helper functions to simplify code. The iterator is unlimited if endval==0. (l2gi_begin): New function. (l2gi_end): New function. Improve the test suite with new tests of the Local_to_global structure. * src/server/testsuite/l2g.0/00.exp: The "C" command now takes the arguments the other way around. Adjust the test case. Comments added. Expect the "u" command to print first_unused. * src/server/testsuite/l2g.0/02.exp: New file. * src/server/testsuite/l2g.0/03.exp: New file. * src/server/testsuite/l2g.0/04.exp: New file. * src/server/testsuite/l2g.0/05.exp: New file. * src/server/testsuite/l2g.0/06.exp: New file. * src/server/testsuite/l2g.0/07.exp: New file. * src/server/testsuite/l2g.0/08.exp: New file. * src/server/testsuite/l2g.0/09.exp: New file. * src/server/testsuite/config/unix.exp (l2g_stop): Added a wait statement to avoid creating zombies. (simple_expect): Added a missing space in a prompt regexp. * src/server/testsuite/test-l2g.c (main): Removed the 'c' command since l2g_compact no longer exists. Added the 'i' command that tests iterators. Adjusted to the new API of l2g_dump, l2g_read and l2g_write. Require an extra trailing newline after the representation l2g_read expects when the 'r' command is used, and produce a corresponding newline with the 'w' command. Renamed the 'p' command to 'w'. 1998-07-19 Per Cederqvist Protocol buglets fixed. * doc/Protocol-A.texi (Membership-Type, Session-Flags): Fixed syntax error in the definition. 1998-07-12 Per Cederqvist Build the program in the test suite. * src/server/ramkomd.c (restart_kom): Moved to log.c. * src/server/log.c (restart_kom): Moved here from ramkomd.c. * src/server/Makefile.am (noinst_LIBRARIES): Added libcheck.a. (libcheck_a_SOURCES): New library, used by the test suite. * src/server/testsuite/Makefile.am (noinst_PROGRAMS): Added test-l2g. (EXTRA_DIST): Removed test-l2g.c. (test_l2g_SOURCES): Added test-l2g.c. (test_l2g_LDADD): Added ../libcheck.a. (../libcheck.a): New target. Removed all old makefile template files. * Makefile.src: Removed. * doc/Makefile.src: Removed. * doc/man/Makefile.src: Removed. * run-support/Makefile.src: Removed. * scripts/Makefile.src: Removed. * src/Makefile.src: Removed. * src/include/Makefile.src: Removed. * src/include/server/Makefile.src: Removed. * src/libraries/Makefile.src: Removed. * src/libraries/gnumalloc/Makefile.src: Removed. * src/libraries/libansi/Makefile.src: Removed. * src/libraries/libcommon/Makefile.src: Removed. * src/libraries/libisc-new/Makefile.src: Removed. * src/libraries/libisc-new/src/Makefile.src: Removed. * src/libraries/libmisc/Makefile.src: Removed. * src/libraries/regex/Makefile.src: Removed. * src/libraries/regex/doc/Makefile.src: Removed. * src/libraries/regex/test/Makefile.src: Removed. * src/server/Makefile.src: Removed. * src/server/testsuite/Makefile.src: Removed. Fixed "make dist". * SERVER-RELEASE: Slightly updated. * src/server/testsuite/config/Makefile.am: New file. * src/server/testsuite/Makefile.am (SUBDIRS): Added config. (EXTRA_DIST): Added .cvsignore and test-l2g.c. (MOSTLYCLEANFILES): Added .gdbinit and site.exp. * src/server/Makefile.am (EXTRA_DIST): Added .cvsignore, ChangeLog.1, Magics, To-do, aux-item-def.l, aux-item-def.y, call-switch.awk, com-h.awk, fnc-def-init.awk, prot-a-parse-arg-c.awk, prot-a-parse-arg-h.awk, fncdef.txt, free.gdb, handle-malloc-dump.el, malloc.gdb, realloc.gdb, trace-mem.gdb and logII.c. (MOSTLYCLEANFILES): Added .gdbinit, call-switch.incl, com.h, fnc-def-init.incl, fncdef-no-str-limit.txt, prot-a-parse-arg.h and version.incl. (MAINTAINERCLEANFILES): Added aux-item-def.tab.h. (lyskomd_SOURCES): Added admin.h, async.h, aux-items.h, cache-node.h, cache.h, conf-file.h, connections.h, end-of-atomic.h, exp.h, internal-connections.h, internal-services.h, isc-interface.h, isc-malloc.h, isc-parse.h, kom-memory.h, local-to-global.h, log.h, lyskomd.h, manipulate.h, minmax.h, mux-parse.h, mux.h, param.h, prot-a-output.h, prot-a-parse.h, prot-a-send-async.h, prot-a.h, ram-output.h, ram-parse.h, rfc931.h, send-async.h, server-config.h, string-malloc.h, text-garb.h, tmp-limits.h and version-info.h. (dbck_SOURCES): Added dbck-cache.h and getopt.h. * src/libraries/libmisc/Makefile.am (EXTRA_DIST): Added ChangeLog.1. * src/libraries/libcommon/Makefile.am (EXTRA_DIST): Added ChangeLog.1. * src/include/Makefile.am (EXTRA_DIST): Added ChangeLog.1. * run-support/Makefile.am (EXTRA_DIST): Added .cvsignore, komrunning.sh and savecore.sh. * doc/man/Makefile.am (EXTRA_DIST): Added $(man_MANS). * doc/prot-A-english.txt: Added a reference to Protocol-A.texi. * doc/Makefile.am (EXTRA_DIST): Added Buggar.fixade, Bugrapporter, LOGG, Protocol-A.texi, aux-info.doc, clients.assigned, cmsltt12.mf, dbck.latexinfo, disc-cache.spec, local-to-global.doc, lyskomd-database-format, mux.proto, prot-A-english.txt and security-levels.txt. * db-crypt/db/Makefile.am (EXTRA_DIST): Added .cvsignore. * db-crypt/Makefile.am (EXTRA_DIST): Added .cvsignore. * configure.in: Generate src/server/testsuite/config/Makefile. * Makefile.am (EXTRA_DIST): Added ChangeLog.1, README.FSF, SERVER-RELEASE, mkmi and versions. Removed obsolete and unused files. * src/server/disk-end-of-atomic.c: Don't include disk-cache.h. * src/server/sync.c: Removed. * src/server/disk-cache.h: Removed. * src/server/cache.c: Removed. * src/server/cache-database.h: Removed. * src/server/cache-database.c: Removed. * scripts/mkmi.m4: Removed. * scripts/makedist.sh: Removed. * doc/libraries: Removed * doc/fileformat: Removed. * doc/elisp-client.user-manual: Removed. * doc/elisp-client.internals: Removed. * doc/Introduktion: Removed. Don't version-control generated files. * src/server/aux-item-def.tab.h: No longer kept under version control. Removed the last traces of zmalloc. * src/libraries/libmisc/Makefile.am (libmisc_a_SOURCES): Removed zmalloc.h. 1998-07-11 Per Cederqvist Install the sample database (unless it was already installed). * configure.in: Generate db-crypt/db/Makefile. * db-crypt/Makefile.am (SUBDIRS): Added db. * db-crypt/db/Makefile.am: New file. Fix compilation outside the source directory. * src/server/Makefile.am (aux-item-def.tab.c): Look for aux-item-def.y in srcdir. 1998-07-10 Per Cederqvist Fix "make install". * run-support/Makefile.am (sysconf_DATA): Added, but empty. (EXTRA_DIST): Added config and aux-items.conf. (komrunning): The current standard names the variable sysconfdir, not etcdir. (savecore): Likewise. (install-data-local): Likewise. Fix the configure script so that --enable-isc-printf is no longer needed. * configure.in: Force enable_isc_printf so that libisc contains the proper things. Some versions of libnsl and/or libsocket are reportedly bogus, so don't link against them unless it is really necessary. * configure.in: Improved checking for -lsocket and -lnsl. 1998-07-09 Per Cederqvist Don't forget src/server/testsuite. * configure.in: Don't forget src/server/testsuite. (USING_GNU_MALLOC): An automake conditional. * src/server/testsuite/test-l2g.c (main): Make it a proper prototype. Avoid problems with signed chars. Fixed typo: use l2g_write, not l2g_print. * src/server/testsuite/Makefile.am: New file. * src/server/Makefile.am (SUBDIRS): New variable; added testsuite. Don't try to compile zmalloc which was removed yesterday. * src/libraries/libmisc/Makefile.am (libmisc_a_SOURCES): Removed zmalloc.c. Build komrunning and savecore. * run-support/Makefile.am: New file. Switch to using automake. * mkmi: Run aclocal, automake and autoconf instead of creating Makefile.in via a m4 script. * configure.in: Move up AC_CONFIG_AUX_DIR so that both automake and autoconf detects it early enough. Remove explicit AC_SUBST of several variables that automake handles automatically, or that was used for functionality that automake provides in different ways: CFLAGS, CPPFLAGS, LDFLAGS, DEPENDFLAGS, INCLUDE_CURRENT, EXTRAARFLAGS, SRCTOPDIR, BUILDTOPDIR. Added call to AM_C_PROTOTYPES. Rely on automakes ability to fix dependencies automatically and handle ARFLAGS properly. Use CMOD_COMPILER_CC_ACCEPTS to check for a lot of warning flags to use. Use CMOD_C_ATTRIBUTE_UNUSED. Use AM_PROG_LEX instead of AC_PROG_LEX. Removed check for sys/select.h, which only isc uses. Added check for values.h. Run configure in src/libraries/libisc-new instead of creating makefiles in that directory. Generate db-crypt/Makefile and run-support/Makefile. Don't version-control files that are generated by aclocal, automake, autoconf or bison. * Makefile.in: No longer kept under version control. * aclocal.m4: Likewise. * configure: Likewise. * doc/Makefile.in: Likewise. * doc/man/Makefile.in: Likewise. * run-support/Makefile.in: Likewise. * scripts/Makefile.in: Likewise. * scripts/install-sh: Likewise. * scripts/mkinstalldirs: Likewise. * src/Makefile.in: Likewise. * src/include/Makefile.in: Likewise. * src/include/server/Makefile.in: Likewise. * src/libraries/Makefile.in: Likewise. * src/libraries/libansi/Makefile.in: Likewise. * src/libraries/libcommon/Makefile.in: Likewise. * src/libraries/libmisc/Makefile.in: Likewise. * src/server/Makefile.in: Likewise. * src/server/aux-item-def.tab.c: Likewise. 1998-07-08 Per Cederqvist Use libisc-0.99. * src/server/isc-interface.h: Include "isc.h" instead of "isc-new.h". (ISC_PRINTF_SUPPORT): Define it. * src/libraries/libisc-new: Replace the old contents with that of isc-0.99. Se src/libraries/libisc-new/ChangeLog for information about any modifications that are made to the library. Added files that automake requires. * AUTHORS: New file. * README-serverrelease: Renamed to README. * README: New name for former README-serverrelease. * acinclude.m4: New file. Contents taken from the old aclocal.m4, but changed to match the contents of libisc. Added new makefile templates for automake. * Makefile.am: New file. * db-crypt/Makefile.am: New file. * doc/Makefile.am: New file. * doc/man/Makefile.am: New file. * scripts/Makefile.am: New file. * src/Makefile.am: New file. * src/include/Makefile.am: New file. * src/include/server/Makefile.am: New file. * src/libraries/Makefile.am: New file. * src/libraries/libansi/Makefile.am: New file. * src/libraries/libcommon/Makefile.am: New file. * src/libraries/libmisc/Makefile.am: New file. * src/server/Makefile.am: New file. Code cleanup for increased portability. * src/libraries/libmisc/pom.c: Use HAVE_VALUES_H instead of __svr4__ and __sparc__ to protect inclusion of . (rcsid): Added a missing const. Improved some variable types and fixed problems with signed chars. * src/server/simple-cache.c (rcsid): Added a missing const. (next_free_num): Changed type from int to Conf_no. (next_text_num): Changed type from int to Text_no. (read_person): Flag unused parameters. (read_conference): Likewise. (read_text_stat): Likewise. (cached_get_text_stat): Adjusted printf format according to the next_text_num change. (init_cache): Likewise. (free_match_table): Renamed a parameter name to avoid warnings from gcc. (build_matching_info): Renamed a local variable name to avoid warnings from gcc. (pre_sync): Use tno_iter and cno_iter instead of i to get all types correct. (post_sync): Likewise. (copy_file): Flag unused parameters. * src/server/ram-parse.c (rcsid): Added a missing const. (fparse_info_0): Now static. (fparse_info_2): Likewise. (fparse_conference_2): Likewise. (fparse_conference_0): Likewise. (fparse_person_0): Likewise. (fparse_person_2): Likewise. (fparse_text_stat_2): Likewise. (fparse_text_stat_0): Likewise. (fparse_conf_list): Changed type of local variable "i" from int to unsigned long. (fparse_text_list): Likewise. * src/server/ram-output.c (foutput_text_list): Changed type of local variable "i" from int to unsigned long. (foutput_time): Renamed a parameter name to avoid warnings from gcc. (rcsid): Added a missing const. * src/server/prot-a-output.c (prot_a_output_conf_list): Changed type of local variable "i" from int to unsigned long. (prot_a_output_text_list): Likewise. (prot_a_output_time): Renamed local variable names to avoid warnings from gcc. (rcsid): Added a missing const. * src/server/local-to-global.c (Local_text_no_iter): New experimental typedef. (l2g_append): Renamed i to ix and changed type to Local_text_no_iter. * src/server/dbck-cache.c: Include dbck-cache.h. (rcsid): Added a missing const. (next_text_num): Changed type from int to Text_no. (TEXT_RANGE): Adjusted printf format for next_text_num change. (VOID_TEXT_RANGE): Likewise. (cache_sync): Changed type of local variable i from int to unsigned long. Removed extern declaration of oformat. Adjusted printf formats for next_text_num change. (init_cache): Removed extern declaration of oformat. Adjusted printf formats for next_text_num change. * src/server/conference.c (do_create_conf): Now static. (do_lookup): Changed type of local variables i and retsize to avoid warnings. Handle overflow a little better and log warning messages if overflow ever occurs. (rcsid): Added a missing const. * src/libraries/libmisc/s-string.c (s_strcmp): Changed type of loop variable from "unsigned int" to "String_size". (s_usr_strcmp): Likewise. (char2digit): Added const qualifier to translate_table. Use an int as argument to isalpha and tolower to avoid problems with signed chars. (rcsid): Added a missing const. * src/server/conf-file.c (assign_text_no): Don't use isdigit unless isascii is true. Use an int as argument to isalpha and isdigit to avoid problems with signed chars. (assign_conf_no): Likewise. (assign_int): Likewise. (rcsid): Added a missing const. Many minor tweaks to remove annoying but harmless warnings from gcc. * src/server/updateLysKOM.c (checkstatus): Now static. * src/server/text.c: Include internal-services.h. (rcsid): Added a missing const. (set_loc_no): Renamed a parameter name to avoid warnings from gcc. (find_recipient): Now static. Removed declaration of errno. * src/server/session.c (get_time): Renamed a parameter name to avoid warnings from gcc. (rcsid): Added a missing const. * src/server/server-config.c (log_param): Flag unused argument. (param_name): Now static. (rcsid): Added a missing const. * src/server/rfc931.c: Include rfc931.h. (get_real_username): Added a const qualifier to the return value. * src/server/rfc931.h (get_real_username): Added a const qualifier to the return value. * src/server/ramkomd.c (rcsid): Added a missing const. (init_data_base): Removed unused argument dir_base. All callers updated. (sighandler_hup): Flag unused argument. (sighandler_quit): Likewise. (sighandler_usr1): Likewise. (sighandler_usr2): Likewise. (go_daemon): Make it a function prototype. (initialize): New static. * src/server/mux.c: (rcsid): Added a missing const. (UCB_printf): Specify the return type in the extern declaration. * src/server/membership.c (do_add_member): Renamed local variable names to avoid warnings from gcc. (do_sub_member): Likewise. (locate_member): Likewise. (check_membership): Likewise. (set_membership_type): Likewise. (rcsid): Added a missing const. * src/server/log.c (rcsid): Added a missing const. (logv): Renamed local variable names to avoid warnings from gcc. (log): Likewise. * src/server/internal-services.h (do_create_conf): Declaration removed. This function is static. * src/server/dbck.c (register_jubel): Flag unused arguments. (locate_member): Renamed local variable names to avoid warnings from gcc. (check_misc_infos): Likewise. (check_created_texts): Likewise. (check_membership): Likewise. (check_texts_in_conf): Likewise. (confirm): Added const qualifier to argument question. (check_member): Likewise. (init_data_base): Removed the unused dbase_dir argument. All callers updated. * src/server/dbck-cache.h (oformat): Declaration added. * src/server/connections.c (login_request): Added a missing const to the realuser local variable. (rcsid): Added a missing const. * src/server/conf-file.h (struct parameter): Added const qualifier to the name and default_val tags. * src/server/aux-items.c: Include services.h. (aux_item_definition_cache_regexp): Now static. (initialize_aux_items): Removed declaration of parse_aux_item_definitions. (aux_item_call_add_triggers): Now static. (aux_item_call_delete_triggers): Now static. (aux_item_call_undelete_triggers): Now static. * src/server/aux-items.h (Aux_item_definition_s): Added const qualifier to the name tag. (Aux_item_trigger_mapping): Likewise. (parse_aux_item_definitions): Declaration added. * src/server/aux-item-def.y: (aux_item_def_typename): Added const qualifier to the return value. (aux_item_def_check_assign): Added const qualifier to the id argument. (aux_item_def_check_trigger): Added const qualifier to the check_name argument. * src/server/admin.c (shutdown_kom): Flag unused arguments. (rcsid): Added a missing const. * src/include/services.h: Renamed a few parameter names to avoid warnings from gcc. * src/server/prot-a-output.h: Likewise. * src/server/ram-output.h: Likewise. * src/libraries/libcommon/parser.h: Likewise. * src/server/manipulate.h: Likewise. * src/libraries/libcommon/kom-errno.c (rcsid): Added a missing const. * src/libraries/libcommon/misc-parser.c: Likewise. * src/libraries/libcommon/parser.c: Likewise. * src/libraries/libmisc/s-collat-tabs.c: Likewise. * src/server/cache-node.c: Likewise. * src/server/disk-end-of-atomic.c: Likewise. * src/server/internal-connections.c: Likewise. * src/server/isc-malloc.c: Likewise. * src/server/isc-parse.c: Likewise. * src/server/memory.c: Likewise. * src/server/mux-parse.c: Likewise. * src/server/person.c: Likewise. * src/server/prot-a-parse.c: Likewise. * src/server/prot-a-send-async.c: Likewise. * src/server/prot-a.c: Likewise. * src/server/ram-smalloc.c: Likewise. * src/server/regex-match.c: Likewise. * src/server/send-async.c: Likewise. * src/server/string-malloc.c: Likewise. * src/server/text-garb.c: Likewise. * src/libraries/libansi/empty.c: Likewise. Remove some old unused files. * src/libraries/libmisc/zmalloc.c: Unused file removed. * src/libraries/libmisc/zmalloc.h: Unused file removed. * src/server/kom-types.c: Empty file removed. * scripts/Summarize-Headers: File removed. * scripts/List-Files: File removed. * src/libraries/libclient/.cvsignore: File removed. * src/libraries/libclient/Makefile.in: File removed. * src/libraries/libclient/async.c: File removed. * src/libraries/libclient/async.h: File removed. * src/libraries/libclient/client-Makefile.in: File removed. * src/libraries/libclient/client-malloc.h: File removed. * src/libraries/libclient/client.c: File removed. * src/libraries/libclient/client.h: File removed. * src/libraries/libclient/input.c: File removed. * src/libraries/libclient/input.h: File removed. * src/libraries/libclient/kom-types.c: File removed. * src/libraries/libclient/output.c: File removed. * src/libraries/libclient/output.h: File removed. * src/libraries/libclient/parse.c: File removed. * src/libraries/libclient/parse.h: File removed. * src/libraries/libclient/send.c: File removed. * src/libraries/libclient/send.h: File removed. * src/libraries/libclient/services.c: File removed. * src/libraries/libclient/services.h: File removed. 1998-07-07 Per Cederqvist Fixed spelling of the config file parameter "Max broadcast length". * src/server/server-config.c (parameters): Fixed mis-spelling of "Max broadcast length". * doc/man/lyskomd.8: Likewise. * doc/Protocol-A.texi: Minor errata. * doc/security-levels.txt: Converted from swascii to latin1. 1998-06-14 David Byers * src/server/membership.c (copy_public_confs): The supervisor of a conference can now see secret parts of member's memberships. (get_members): Ditto. (set_membership_type): Don't allow secret memberships if the conference forbids it. (add_member): Ditto. (add_member): Pretend that addition worked if the person is already a secret member. (do_get_membership): Renamed from get_membership_old. (get_membership_old): New function. (get_membership): Call do_get_membership (do_get_members): Renamed from get_members. (copy_public_confs): New argument want_passive. * src/server/prot-a-output.c (prot_a_output_extended_conf_type): Added output of forbid_secret. * src/server/prot-a-parse.c (prot_a_parse_conf_type): Added parse of forbid_secret. * src/server/ram-parse.c (fparse_conf_type): Added parse of forbid_secret. * src/server/ram-output.c (foutput_conf_type_1): Added output of forbid_secret. * src/include/kom-types.h: Added forbid_secret conf_type. 1998-06-10 David Byers * src/server/membership.c (sub_member): Return KOM_NOT_MEMBER for secret memberships. 1998-06-08 David Byers * src/server/membership.c (set_membership_type): New function. * src/server/prot-a-output.c (prot_a_output_membership): Output added_at. (prot_a_output_member): Output added_at * src/server/membership.c (do_add_member): Set added_at. (get_members): Filter out added_at. * src/server/memory.c (init_membership): Init added_at. * src/server/ram-output.c (foutput_member_2): Added output of added_at. * src/server/ram-parse.c (fparse_member_2): Added parsing of added_at. * src/include/kom-types.h: Added added_at to Membership och Member. * src/server/ram-parse.c (fparse_membership_2): Added parsning of added_at. * src/server/ram-output.c (foutput_membership_2): Added output of added_at. Fri Jan 16 22:51:52 1998 David Byers * src/include/kom-types.h (Aux_item_flags): Added dont_garb. * src/server/text-garb.c (garb_text): Check dont_garb aux-item flag. Mon Sep 22 19:06:05 1997 David Byers * src/server/cache-node.h: New flags: snapshot and synced. Sun Sep 21 21:16:28 1997 David Byers * src/server/memory.c (copy_text_stat): Call copy_aux_item_list. (copy_aux_item_list): New function. (copy_aux_item): New function. (copy_conference): Call copy_aux_item_list. (clear_conference): Free the aux_item_list (init_conference): Init the aux_item_list. (clear_text_stat): Free the aux_item_list. (init_text_stat): Init the aux_item_list. (init_aux_item_list): New function. Sat Sep 13 15:07:32 1997 David Byers * run-support/aux-items.conf: New file. This is the aux-item definition file. * src/server/aux-items.h: New file. Include this when using aux-items. * src/server/aux-items.c: New file. Implements most of the functionality associated with aux-items. * src/server/aux-item-def.l: New file. Implements the scanner for the aux-item definition file parser. * src/server/aux-item-def.y: New file. Implements the aux-item definition file parser. * src/server/text.c: Added support for aux-items. Set err_stat whenever kom_errno is set. (create_text_old): Renamed from create_text. Use do_create_text. (create_text): New RPC function. (create_anonymous_text): New RPC function. (create_anonymous_text_old): Renamed from create_anonymous_text. Use do_create_text. (do_create_text): New function similar to old create_text, but with aux-item support. (count_recipients): Handle bcc-recpt. (find_recipient): Handle bcc-recpt. (do_add_bcc_recpt): New function to add bcc-recipient. (do_delete_misc): Handle bcc_recpt. (do_sub_recpt): Handle bcc_recpt. (sender): Handle bcc_recpt. (is_sender): Handle bcc_recpt. (is_comm_sender): Handle bcc_recpt. (skip_recp): Handle bcc_recpt. (is_member_in_recpt): Handle bcc_recpt. (filter_secret_info): Handle bcc_recpt. (text_read_access): Handle bcc_recpt. (do_delete_text): Handle bcc_recpt. (check_double_subm): Handle bcc_recpt. (check_double_comm): Handle bcc_recpt. (create_text_check_misc): Handle bcc_recpt. (create_text_add_miscs): Handle bcc_recpt. (add_recipient): Handle bcc_recpt. (filter_secret_info): Filter aux-items as well as misc-info. (create_text_add_aux): New function. (send_async_new_text_old): Renamed from send_async_new_text. (send_async_new_text): New function. (get_text_stat_old): Renamed from get_text_stat. (get_text_stat): New RPC function. (modify_text_info): New RPC function. (do_delete_text): Send async deleted text. * src/server/text-garb.c (garb_text): Handle bcc-recpt. * src/server/simple-cache.c: Set err_stat whenever kom_errno is set. (cached_lookup_name): Set kom_errno to KOM_INTERNAL_ERROR is parse() fails. (pre_sync): Write version 2 data file. (cached_delete_conf): Delete conference name from small_conf_arr. (pre_sync): Use foutput_info instead of writing it here. (init_cache): Return KOM_INTERNAL_ERROR on problems with the files. Prettier handling of datafile versions (switch instead of testing for one single version.) Call set_input_format to set the input format. Use fparse_info to read info instead of parsing it here. If we encounter an unknown key, print its offset. * src/server/session.c: Set err_stat whenever kom_errno is set. (accept_async): Return KOM_UNKNOWN_ASYNC if an unknown async message is requested. (login_old): Test wheel bit (test removed from is_supervisor.) (login): Test wheel bit (test removed from is_supervisor.) (disconnect): Test wheel bit (test removed from is_supervisor.) * src/server/server-config.c (parameters): Add max_add_aux and max_delete_aux. (toplevel): Set AUX_DEF_FILE constant. * src/server/send-async.h: Declare new functions in send-async.c * src/server/send-async.c (async_new_text_old): Renamed from async_new_text. (async_new_text): New function to send new new-text async. (async_send_group_message): Return KOM_MESSAGE_NOT_SENT on failure because of no accepting recipient. Return KOM_FEATURE_DISABLED if messages are disabled. Return INTERNAL_ERROR on an internal error. (async_deleted_text): New function to send new deleted-text async. * src/server/regex-match.c (lookup_regexp): Set err_stat when kom_errno is set. * src/server/ramkomd.c: (initialize): Initialize aux-item definitions. (main): Handle -a and -c options, and user-selectable aux-item definition file. * src/server/ram-parse.h: Declare new function in ram-parse.c * src/server/ram-parse.c: Better support for reading different input formats by using solution similar to that in ram-output.c. New variable input_format controls input format. (set_input_format): New function selects input format. (fparse_info_0): New function. (fparse_info_2): New function. (fparse_info): New function. (fparse_conference_2): New function. (fparse_conference_0): New function. (fparse_conference): New function. (fparse_person_0): New function. (fparse_person_2): New function. (fparse_person): New function. (fparse_text_stat_2): New function. (fparse_text_stat_0): New function. (fparse_text_stat): New function. (fparse_aux_item_flags): New function to read aux-item flags. (fparse_aux_item): New function to read an aux-item. (fparse_aux_item_list): New function to read an aux-item-list. (fparse_misc_info): Parse bcc-recpt. * src/server/ram-output.h: Declare new functions in ram-output.c * src/server/ram-output.c: Better support for writing different output formats by using foutput_something_ and a switch in foutput_something. New variable output_format selects output format. (set_output_format): New function to select output format. (foutput_info_0): New function. (foutput_info_2): New function. (foutput_info): New function. (foutput_person_0): New function. (foutput_person_2): New function. (foutput_person): New function. (foutput_conference_2): New function. (foutput_conference): New function. (foutput_text_stat_0): New function. (foutput_text_stat_2): New function. (foutput_text_stat): New function. (foutput_aux_flags): New function to output aux-item flags. (foutput_aux_item): New function to output aux-items. (foutput_aux_item_list): New function to output aux-item-lists. (foutput_misc_info): Output bcc-recpt. * src/server/prot-a.c (prot_a_reply): Added support for new and renamed return types: rt_conference, rt_conference_old, rt_text_stat, rt_text_stat_old, rt_info, rt_info_old. (prot_a_init): Initialize aux_item_list of Connection. (prot_a_destruct): Clear the aux_item_list in Connection. (prot_a_is_legal_fnc): Add support for new and changed RPC calls (see entry for fncdef.txt.) * src/server/prot-a-send-async.h: Declare new functions in prot-a-send-async.c * src/server/prot-a-send-async.c (prot_a_async_new_text_old): Renamed from prot_a_async_new_text. (prot_a_async_new_text): New async message function. (prot_a_async_deleted_text): New async message function. * src/server/prot-a-parse.h: Declare new functions in prot-a-parse.c * src/server/prot-a-parse.c (prot_a_parse_aux_item_flags): New function. (prot_a_parse_aux_item): New function. (prot_a_parse_aux_item_list): New function. (prot_a_parse_misc_info): Parse bcc_recpt info type. * src/server/prot-a-output.h: Declare new functions in prot-a-output.c * src/server/prot-a-output.c (prot_a_output_conference): New output function. (prot_a_output_conference_old): Renamed from old prot_a_output_conference. (prot_a_output_aux_item_flags): New function. (prot_a_output_aux_item): New function. (prot_a_output_text_stat_old): Renamed from prot_a_output_text_stat. (prot_a_output_aux_item_list): New function. (prot_a_output_text_stat): New function. (prot_a_output_info): New function. (prot_a_output_info_old): Renamed from prot_a_output_info. (prot_a_output_misc_info): Output bcc_recpt misc type. * src/server/person.c: Added support for aux-items. Set err_stat whenever kom_errno is set. (create_person_generic): Moved all generic create_person code to this function. (create_person_old): Renamed from create_person, use create_person_generic. (create_person): New RPC function. (set_passwd): Test wheel bit when doing is_supervisor (test removed from is_supervisor.) * src/server/param.h: Added max_delete_aux, max_add_aux to struct kom_par. * src/server/memory.c (free_aux_item_list): New function to free all data in an Aux_item_list. * src/server/membership.c: Set err_stat whenever kom_errno is set. (access_perm): Test wheel bit (test removed from is_supervisor.) (add_member): Test wheel bit (test removed from is_supervisor.) * src/server/manipulate.h: Set err_stat whenever kom_errno is set. Declare is_strictly_supervisor. * src/server/kom-memory.h: Declare free_aux_item_list. * src/server/internal-connections.c (init_connection): Clear aux_item and aux_item_list fields of Connection. Clear aux_item_list field of Info. * src/server/fncdef.txt: Added comments to separate protocol versions. New calls: get_collate_table, create_text, create_anonymous_text, create_conf, create_person, get_text_stat, get_conf_stat, modify_text_info, modify_conf_info, get_info, modify_server_info, query_predefined_aux_items, set_expire. Renamed calls: get_text_stat to get_text_stat_old, get_conf_stat_old to get_conf_stat_older, get_conf_stat to get_conf_stat_old, get_info to get_info_old, create_conf to create_conf_old, create_pers to create_pers_old, create_text to create_text_old, create_anonymous_text to create_anonymous_text_old. * src/server/dbck.c (check_misc_infos): Handle m_bcc_recpt. (is_recipient): Handle bcc_recpt. (main): Use set_output_format to select the output format. * src/server/dbck-cache.c: Set err_stat whenever kom_errno is set. (cache_sync): Use foutput_info instead of outputting the info here. (cache_sync): Call foutput_conference, not foutput_conference_old. ram-output now takes care of selecting the correct version to write. (init_cache): Use fparse_info instead of reading the info here. * src/server/connections.h: (Connection): Add aux_item_list and aux_item. (Res_type): Renamed return types: rt_conference to rt_conference_old. rt_text_stat to rt_text_stat_old, rt_info to rt_info_old. Addet rt_conference, rt_text_stat and rt_info. (Result_holder): Added conference_old, text_stat_old and info_old. * src/server/connections.c: Include kom-memory.h. Set err_stat whenever kom_errno is set. (free_parsed): Free data in aux_item and aux_item_list. * src/server/conference.c: Added support for aux-items. Set err_stat whenever kom_errno is set. (is_strictly_supervisor): New function. (is_supervisor): Use is_strictly_supervisor. Don't test the wheel bit of ACTPERS. (create_conf_generic): Moved generic create_conf code here. (create_conf_old): Renamed from create_conf. Use create_conf_generic. (create_conf): New RPC function. (get_conf_stat): New RPC function. (get_conf_stat_old): Renamed from get_conf_stat (modify_conf_info): New RPC function. (set_expire): New RPC function. * src/server/call-switch.awk: Parse aux_item_list. * src/server/async.h: Added ay_new_text, ay_deleted_text. Renamed old ay_new_text to ay_new_text_old. * src/server/admin.c (modify_server_info): New RPC function. (toplevel): Update initializer for kom_info. (all): Set err_stat whenever kom_errno is set. (get_info): New function. Old get_info is not get_info_old. (get_collate_table): New RPC function. * src/server/Makefile.src: Added the new files to source lists. Rules to build aux-item-parser and scanner added. * src/libraries/libcommon/misc-parser.h: Added m_bcc_recpt to Misc_struct_type. Added bcc_recipient to Misc_info_group struct. * src/include/services.h: Declared all new RPC functions and renamed the now obsolete ones. New functions are: create_person, create_conf, create_text, get_conf_stat, get_text_stat, create_anonymous_text, modify_conf_info, modify_text_info, get_info, modify_server_info, get_collate_table, set_expire, query_predefined_aux_items * src/include/kom-errno.h (KOM_err): Added KOM_ILL_AUX, KOM_AUX_PERM, KOM_UNKNOWN_ASYNC, KOM_INTERNAL_ERROR, KOM_FEATURE_DISABLED, KOM_MESSAGE_NOT_SENT. * src/include/config.h: Added AUX_DEF_FILE. * run-support/Makefile.src: Install aux-items.conf. * doc/man/lyskomd.8: Documented aux-item related settings. * doc/lyskomd-database-format: Documented data file version 2. * doc/Protocol-A.texi: Completed all calls, asynch messages, data structures, error codes. Documented protocol version 10. * db-crypt/db/lyskomd-data: Updated to data file version 2. * configure.in: Check for bison and flex (can't use the regular YACC and LEX tests since we need bison and flex specifically.) * INSTALL: Mention that bison and flex may be needed for installation. Wed Jul 23 22:40:08 1997 Per Cederqvist * src/server/conference.c (get_uconf_stat): Added a comment about a bug that needs to be fixed. Sun Jul 20 16:04:23 1997 Per Cederqvist The regexp code could use the wrong collate table. * src/server/regex-match.c (lookup_regexp): Use DEFAULT_COLLAT_TAB, not swedish_collate_tab. (Reported by David Byers). Fri Jun 6 23:16:28 1997 Per Cederqvist Port to AIX. * src/server/local-to-global.c: Include stdlib.h instead of the non-standard malloc.h. * configure.in: Create src/server/Makefile before src/server/testsuite/Makefile. Sun Dec 29 15:55:44 1996 Per Cederqvist * doc/prot-A.txt: 59=create-anonymous-text, 78=get-uconf-stat, 58=get-last-text and 77=set-last-read are recommended, not experimental. Fixed bug in declaration of Dynamic-Session-Info-List. * src/server/Makefile.in (GENOBJS): Added local-to-global.o. Thu Sep 12 19:14:39 1996 Inge Wallin * local-to-global.h: Added code for an iterator. * local-to-global.c: Added code for an iterator. * kom-types.h: Include some files which are used here. Sun Sep 1 21:32:22 1996 Inge Wallin * (l2g_delete): Delete the block if empty. * local-to-global.c (delete_block): New function * local-to-global.c (l2g_destruct): Don't free blocks. * (l2g_clear): Only free if non-NULL. * (l2g_copy): more efficient code. * local-to-global.h, local-to-global.c (l2g_print): Renamed to l2g_write. * (l2g_read, l2g_write): Now implemented. * log.h: Include stdarg.h if possible. Sun Aug 25 14:47:16 1996 Per Cederqvist * src/server/Makefile.src (GENOBJS): Added local-to-global.o. * src/server/local-to-global.c: New file, written by Inge Wallin. Disconnect spamming clients: * src/server/prot-a-parse.c (prot_a_get_token): Disconnect the client if it attempts to send a token (other than a string) that is longer than 1000 characters. Delete obsolete code: * src/libraries/libcommon/kom-errno.c (kom_perror): Removed KOM_NO_CONNECT. * src/include/kom-errno.h (Kom_err): Removed the unused value KOM_NO_CONNECT. Purify support: * scripts/mkmi.m4 (PURIFY): New make variable. * configure.in: New argument --with-purify enables debugging with Purify. * src/server/Makefile.src (lyskomd): Added $(PURIFY) in front of the link line. (updateLysKOM): Likewise. (dbck): Likewise. * src/server/local-to-global.c: Include , and "s-string.h". (l2g_next_key): Don't dereference memory past the last block! Test suite integration: * configure.in: Generate src/server/testsuite/Makefile. Touch src/server/testsuite/dependencies. * src/server/testsuite/Makefile.src: New file. * mkmi: Added src/server/testsuite/Makefile. * src/server/testsuite/l2g.0/00.exp: New file. * src/server/testsuite/l2g.0/01.exp: New file, containing real data from the map of conference 603 (LysKOM; Elispklientens buggrapporter) in LysLysKOM. * src/server/testsuite/config/unix.exp: New file. * src/server/testsuite/test-l2g.c: New file. * For older changes, see ChangeLog.1, src/include/ChangeLog.1, src/server/ChangeLog.1, src/libraries/libcommon/ChangeLog.1, and src/libraries/libmisc/ChangeLog.1. Starting today, all changes in those directories should be documented in this file. Not that local changes to foreign libraries that are included in this distribution should still be documented in a ChangeLog in their directory, so that somebody who looks at them can see what we have modified. As of this writing, the following ChangeLog files fall into this category: src/libraries/gnumalloc/ChangeLog, src/libraries/libisc-new/src/ChangeLog, src/libraries/regex/ChangeLog and src/libraries/regex/test/ChangeLog.