From: Pekka Riikonen Date: Sat, 24 Feb 2001 13:31:58 +0000 (+0000) Subject: updates X-Git-Tag: 1.2.beta1~2497 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=d87aca00b57bdd0fb7afad4fcfe3140aa03bac2c;p=runtime.git updates --- diff --git a/public_html/about.html b/public_html/about.html index 1f8e1351..d0e22c3a 100644 --- a/public_html/about.html +++ b/public_html/about.html @@ -7,6 +7,7 @@ align=center> +

About SILC

@@ -14,7 +15,7 @@ align=center> SILC (Secure Internet Live Conferencing) is a protocol which provides secure conferencing services in the Internet over insecure channel. SILC is IRC like software although internally they are very different. -Biggest similiarity between SILC and IRC is that they both provide +Biggest similarity between SILC and IRC is that they both provide conferencing services and that SILC has almost same commands as IRC. Other than that they are nothing alike. Biggest differences are that SILC is secure what IRC is not in any way. The network model is also entirely @@ -71,10 +72,6 @@ See documentation page for more information. Feedback and comments are welcome. You can reach me in the following Address.

-[Note that generally bug reports should not be sent just yet as the -Developer's Version is full of them and the bug hunt has not even started -yet.] -

Pekka Riikonen
priikone@poseidon.pspt.fi

diff --git a/public_html/contribute.html b/public_html/contribute.html index 4d8bdc30..b667d580 100644 --- a/public_html/contribute.html +++ b/public_html/contribute.html @@ -7,6 +7,7 @@ align=center> +

Contributing

@@ -29,8 +30,8 @@ href="docs/CodingStyle">CodingStyle documentation. New code must comply with the coding style conventions described in that document.

-There will be anonymous CVS access as soon as I get around to set it up. -It will be available any day now. +There is anonymous CVS acccess for those who want to participate the +development process. Go see the CVS page. diff --git a/public_html/copying.html b/public_html/copying.html index 98380651..e166f859 100644 --- a/public_html/copying.html +++ b/public_html/copying.html @@ -6,6 +6,7 @@ diff --git a/public_html/download.html b/public_html/download.html index d12012d5..734ce34d 100644 --- a/public_html/download.html +++ b/public_html/download.html @@ -7,25 +7,56 @@ align=center>
+

GNU GENERAL PUBLIC LICENSE

diff --git a/public_html/cvs.html b/public_html/cvs.html new file mode 100644 index 00000000..e9e92a08 --- /dev/null +++ b/public_html/cvs.html @@ -0,0 +1,205 @@ + + + +


+ + + + + +
+ +

+ +

Anonymous CVS Access

+

+Anonymous CVS access is now available to SILC CVS repository. The +repository includes everything related to SILC project; source codes, +documentation and even these web pages. The CVS access is of course public +but it is intended for developers. After you have checked out the SILC +source tree you should read README.CVS file from the source tree or rest +of this web page. + +

+Also note that this is the closest to real time development you can get +thus you cannot expect that the source tree would work or even compile. +While it is our intention that the trunk would always at least compile +there might be situations when it will not. + +


+

Browsing the Source Tree

+

+If you want to browse the source tree using web browser before checking +out the tree with CVS use following link: +

+Web Access to CVS repository + +

+Note that this is not real-time access to the CVS repository. It is +updated once a day. If you want real-time access then checkout the CVS +repository. + +


+

Howto Checkout The Source Tree

+

+The repository can be checked out by using anonymous pserver with CVS. +

+For those who are using sh/ksh/bash the check out is done as follows: +

+

+export CVSROOT=:pserver:silc@silc.pspt.fi:/storage/silc/CVS + +
cvs login +
cvs co silc + +

+For those who are using csh/tcsh the check out is done as follows: +

+

+setenv CVSROOT :pserver:silc@silc.pspt.fi:/storage/silc/CVS + +
cvs login +
cvs co silc + +

+If you don't want to set $CVSROOT environment variable you can set the +path to the cvs as command line options: +

+

+cvs -d:pserver:silc@silc.pspt.fi:/storage/silc/CVS login + +
+cvs -d:pserver:silc@silc.pspt.fi:/storage/silc/CVS co silc + + +

+What ever method you decide to use, after you have done cvs login you will +be prompted for password: +

+

CVS password: silc +

+Type the password "silc" and press Enter. + +

+The actual SILC source tree is checked out using the cvs co silc command, +described above. This command will fetch the source tree and save it into +directory named silc. SILC CVS repository currently does not have any +branches thus this will check out the trunk. The size of the trunk is +currently about 11 MB but will grow in the future. + +


+

What SILC Source Tree Includes

+

+SILC Source tree includes a lot more stuff that appears in public +distribution. The source tree includes, for example, internal scripts, +configuration files, SILC webpages etc. These never appear on a public +distribution. +

+Following directories currently exist in SILC source tree. +

+ +

+  doc/
+
+        Includes all the SILC documentation.  Some of the documentation
+        are generated when distribution is generated.  The automatically
+        generated files must never be commited to CVS.
+
+  includes/
+
+        Includes SILC include files.
+
+  lib/
+
+        Includes SILC libraries.  There maybe libraries on the CVS that
+        does not appear on public distribution.
+
+  public_html/
+
+        Includes the official SILC web pages and everything that relates
+        to them.  This directory never appears on public distribution.
+
+  silc/
+
+        Includes SILC client.  There can be some extra files that will
+        never appear in public distribution, such as, configuration files.
+
+  silcd/
+
+        Includes SILC server.  There can be some extra files that will
+        never appear in public distribution, such as, configuration files.
+
+ + + +


+

Howto Compile SILC Source Tree

+

+After checkout from CVS the SILC source tree must be prepared for +configuration and compilation. To compile the source three, give, +

+ +

+	./prepare
+	./configure --enable-debug
+	make
+
+ + +The ./prepare script is included in to the source tree and it never +appears in public distribution. The script prepares the source tree +by creating configuration scripts and Makefiles. The prepare must be +run every time you make some changes to configuration scripts (however, +making changes to Makefile.am's does not require running ./prepare). + +

+As a developer you should read the ./configure script's help by +giving ./configure --help and study all of its different options. Also, +you should configure the script with --enable-debug option as it +compiles SILC with -g (debugging) option and it enables the +SILC_LOG_DEBUG* scripts. Warning is due here: The debugging produced +by both cilent and server is very heavy, thus it is common to test +the programs as follows: +

+ +

+	./silc -f configfile 2>log
+	./silcd -f configfile 2>log
+
+ + +


+

Howto Clean SILC Source Tree

+

+To entirely clear the source tree to the state after it was checked out +from CVS, give, + +

+	./prepare-clean
+
+ + +This calls `make distclean' plus removes automatically generated files +by hand. It also removes *.log files. However, it will not remove +any other files you might have created. + +


+

Makefiles and configuration files

+

+Developers should never directly write a Makefile. All Makefiles are +always automatically generated by ./prepare and later by ./configure +scripts. Instead, developers must write Makefile.am files. There +are plenty of examples what they should look like. If you change +Makefile.am during development you don't have to run ./prepare, just +run normal make. +

+Configuration files are the files that ./prepare automatically generates +and what will be included into public distribution. ./prepare creates +for example the ./configure script that is not commited to the CVS. +`configure.in' is the file that developers must edit to change ./configure +script. After changing one must run ./prepare. +


+

+ + diff --git a/public_html/docs.html b/public_html/docs.html index 72a042d2..4d640bfb 100644 --- a/public_html/docs.html +++ b/public_html/docs.html @@ -7,6 +7,7 @@ align=center>

+

SILC Documentation

@@ -40,8 +41,8 @@ other Internet Drafts relates very closely to this memo; SILC Packet Protocol [SILC2] and SILC Key Exchange and Authentication Protocols [SILC3].

- -draft-riikonen-silc-spec-00.txt + +draft-riikonen-silc-spec-01.txt


  • SILC Packet Protocol @@ -56,8 +57,8 @@ the contents of the packets. The protocol provides secure binary packet protocol that assures that the contents of the packets are secured and authenticated.

    - -draft-riikonen-silc-pp-00.txt + +draft-riikonen-silc-pp-01.txt


  • SILC Key Exchange and Authentication Protocols @@ -80,8 +81,8 @@ protocol is transparent to the authentication data which means that it can be used to authenticate the user with, for example, passphrase (pre-shared- secret) or public key (and certificate).

    - -draft-riikonen-silc-ke-auth-00.txt + +draft-riikonen-silc-ke-auth-01.txt


  • +

    Download SILC

    -Currently only available version is 06072000 Development Version that is -meant for testing only. Please, read the README and INSTALL files after -downloading for instructions how to install and use SILC. +

    Main Download

    -HTTP: -silc-06072000.tar.gz (1.1 MB) +The latest SILC release is version 20010222. Please, read the README +and INSTALL files after downloading for instructions how to install and +use SILC. +

    +HTTP: +silc-20010222.tar.gz (1.6 MB)
    -FTP: -silc-06072000.tar.gz (1.1 MB) +FTP: +silc-20010222.tar.gz (1.6 MB) +

    +Release changes: Changes +

    +

    +This version has the functional server and router linking +support. People who is running SILC servers and are interested to get the +server linked to the new router on silc.pspt.fi contact +me now.

    + +

    +

    Debian

    +

    +For Debian packages, following site is available, which works with the +Debian APT lines (thanks to P.A. +Knuutila):

    -SILC has been coded and tested under Linux. It has not been tested on -any other Unix platform just yet. + +http://master.debian.org/~pa/silc/ +

    + +

    +

    Mandrake

    +

    +Mandrake RPM packages are available as well +(thanks to Lenny Cartier): +

    + +RPM packages +
    + +SRPM packages

    -Daily snapshots will be available a bit later (after the anonymous CVS -repository has been set up).

    diff --git a/public_html/faq.html b/public_html/faq.html index 39eb90b7..109e3358 100644 --- a/public_html/faq.html +++ b/public_html/faq.html @@ -7,6 +7,7 @@ align=center> +

    Frequently Asked Questions

    @@ -15,7 +16,7 @@ align=center> A: SILC (Secure Internet Live Conferencing) is a protocol which provides secure conferencing services in the Internet over insecure channel. SILC is IRC like although internally they are very different. Biggest - similiarity between SILC and IRC is that they both provide conferencing + similarity between SILC and IRC is that they both provide conferencing services and that SILC has almost same commands as IRC. Other than that they are nothing alike.

    @@ -64,7 +65,7 @@ A: Answer for both question is no. IRC client is in no way compatible Q: Why client/server protocol is based on IRC? Would it be more interesting to implement something extensible and more powerful?
    -A: They are not, none the least. Have you read the protocol specification? +A: They are not, not the least. Have you read the protocol specification? The client superficially resembles IRC client but everything that happens under the hood is nothing alike IRC. SILC could *never* support IRC because the entire network toppology is different diff --git a/public_html/features.html b/public_html/features.html index 91417cb2..0ec9a0f5 100644 --- a/public_html/features.html +++ b/public_html/features.html @@ -7,6 +7,7 @@ align=center> +

    Features

    diff --git a/public_html/history.html b/public_html/history.html index 2a43ec14..ef82601f 100644 --- a/public_html/history.html +++ b/public_html/history.html @@ -7,12 +7,14 @@ align=center> +

    History

    -Even though SILC were just released to the public the idea and the protocol -itself is quite old. I got the idea about SILC in its current form in +Even though SILC were released in summer 2000 to the public the idea and +the protocol itself is quite old. I got the idea about SILC in its +current form in the year 1996 and first lines of codes were written in early 1997. This release is now third rewrite of the SILC. The very first version were written in 1997 and it included SILC client and very very preliminary @@ -64,4 +66,3 @@ already I see a lot that needs rewriting. The development continues. - diff --git a/public_html/index.html b/public_html/index.html index d156db11..1fe92cf9 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -8,25 +8,30 @@


    SILC Logo +

    SILC - Secure Internet Live Conferencing

    Welcome to the Secure Internet Live Conferencing project homepage

    @@ -36,45 +41,37 @@
    + +
    - - - + - + - + - - -
     
     
    -
    -

    SILC 06072000 Development Version Available

    -
    - -The Developer's version 06072000 of SILC is available for testing. Note -that developer's versions are preliminary versions of the software and -they may not compile or work. However, these releases are tested and -they have compiled and worked. Read the README and INSTALL files after -downloading on instructions how to compile and use SILC. -

    -Download: SILC 06072000 Development Version -
    -Changes: SILC 06072000 Changes -

    -

    -


    -

    -
     
     
     
     
    +
    -

    Official Port For SILC Has Been Assigned

    +

    SILC 20010222 Development Version Available

    -

    -IANA has assigned on 06.07.2000 official -port for SILC protocol. The port is TCP 706 and the latest release already -supports this port. +The new Developer's version 20010222 of SILC is available for testing. +Read the README and INSTALL files after downloading for instructions how +to compile and use SILC. Report bugs to the +SILC development mailing list. +

    +

    +This version has the functional server and router linking +support. People who is running SILC servers and are interested to get the +server linked to the new router on silc.pspt.fi contact +me now.

    +

    +Download: SILC 20010222 Development Version +
    +Changes: SILC 20010222 Changes


     
     
     
     
    +

    SILC Server Available For Testing

    @@ -82,28 +79,28 @@ supports this port.

    There is SILC server up and running that can be tested. Just give command /server silc.pspt.fi to connect to the server. There may be some action -on channel #silc so you might want to give command /join #silc. To get -into action just say hello. +on channel #silc (unless everybody is sleeping) so you might want to give +command /join #silc.

    -Note the old server on port 334 is not running anymore. The new server -is running on port 706, please update your SILC client. +Available servers: silc.pspt.fi on port 706 is SILC Router and +silc.pspt.fi on port 707 is normal SILC server connected to the router. +Both are available for free use.


     
     
     
     
    +

    Developers Wanted For SILC Project

    SILC Project needs developers who would like to contribute their time, skills and ideas to the project. SILC still has a long road ahead before -the first official stable release. We need C coders, technical writers -(to write documentation) and web administrator to take over these web pages. -Feel free to start narrowing down the TODO list. +the first official stable release.

    If You would like to contribute to SILC project please contact me at: priikone@poseidon.pspt.fi @@ -112,80 +109,17 @@ If You would like to contribute to SILC project please contact me at:

     
     
    -
    -

    SILC Project Started

    -
    - -The Press release: -

    -New Open Source project called Secure Internet Live Conferencing (SILC) -has been started. Initial development version of the software is -available for testing. -

    -SILC (Secure Internet Live Conferencing) is a protocol which provides -secure conferencing services in the Internet over insecure channel. -SILC is IRC like software although internally they are very different. -Biggest similiarity between SILC and IRC is that they both provide -conferencing services and that SILC has almost same commands as IRC. -Other -than that they are nothing alike. Biggest differences are that SILC is -secure what IRC is not in any way. The network model is also entirely -different compared to IRC. -

    -SILC is an open source (or freeware) project and it has been released -under the GNU General Public Licence. The SILC is free to use and -everyone -is free to distribute and change the SILC under the terms of the GNU GPL. -While there is no guarantee for the product SILC has been tried make -as secure as possible. Developers are needed and everyone is free to -contribute their time, skills and ideas for the project. -

    -Official SILC Project home page: -http://silc.pspt.fi -

    -SILC Development Version is available for download from following addresses: -

    -HTTP: -silc-28062000.tar.gz (1.1 MB) -
    -FTP: -silc-28062000.tar.gz (1.1 MB) -

    -The SILC protocol specification is available from following addresses: -

    -HTTP: -http://silc.pspt.fi/docs.html -
    -FTP: -ftp://silc.pspt.fi/pub/silc/ -

    -Author's contact information: -

    -Pekka Riikonen -priikone@poseidon.pspt.fi -
    -Home page: -http://poseidon.pspt.fi/~priikone/english/ -

    -

    -


    -

    -


    + Webpage by Pekka Riikonen priikone@poseidon.pspt.fi
    Logos automagically generated with GIMP
    [ ] hits since June 12 2000
    -Last updated: -Thu Jul 6 12:51:08 EEST 2000
    diff --git a/public_html/lists.html b/public_html/lists.html new file mode 100644 index 00000000..dd3c2abe --- /dev/null +++ b/public_html/lists.html @@ -0,0 +1,35 @@ + + + +


    + + + + + +
    + +

    + +

    Public SILC Mailing Lists

    +

    +Available since: Sat Jul 22 17:23:48 EEST 2000 +

    + +There is currently one mailing list available. The mailing list is the +main SILC development mailing list. To subscribe to the mailing list visit +the following link and follow the instructions on the web page. +

    + +SILC-devel mailing list + +

    +After you have subscribed as instructed on the web site you will receive +email for further instructions. To send email to the list the email must +be destined to: silc-devel@lists.sourceforge.net address. + +


    +

    + + diff --git a/public_html/todo.html b/public_html/todo.html index 97ba3e04..94c0aaf8 100644 --- a/public_html/todo.html +++ b/public_html/todo.html @@ -7,11 +7,13 @@ align=center>

    +

    TODO

    +
     TODO
     ====
     
    @@ -96,10 +98,6 @@ TODO In SILC Client
        Currently there cannot be private keys for channels.  Normal channel
        keys (generated by server) are used.  This is required by the protocol.
     
    - o Public and private key generation is now done everytime the program
    -   is run.  Now, this is only for testing period as I've been lazy to
    -   do it any better for now.  This must be fixed.
    -
      o I guess, public key authentication (when connecting to a server)
        is not working currently.  It is just matter of loading the keys
        from file and using them (see corresponding code in server, it should
    @@ -127,12 +125,6 @@ TODO In SILC Client
        be implemented (See corresponding code from server).  Error handling
        in the KE protocol is also in pretty bad shape in client.
     
    - o Configuration file loading from global and from local dirs.  This
    -   is currently missing and I guess the global is only used.  Old SILC
    -   version (in 1997) had ~./silc directory that I guess should be done
    -   now as well.  The code for handling those exists but not in current
    -   source tree.
    -
      o Configuration file format - could be better.
     
      o Write help files for commands.  Nice format for the help files should
    @@ -153,7 +145,7 @@ TODO In SILC Server
        own resolver stuff (through scheduler, if possible without writing
        too much own stuff) or use threads.
     
    - o Lenght of the packet processing timeouts needs to be checked whether
    + o Length of the packet processing timeouts needs to be checked whether
        they are too short or too long.  I haven't really tested whether they
        are suitable.  They should be tested on high load which I haven't done
        at all yet.
    @@ -161,17 +153,9 @@ TODO In SILC Server
      o INVITE command must set the channel's invite list if channel is 
        invite-only channel.
     
    - o Public and private key generation is now done everytime the program
    -   is run.  Now, this is only for testing period as I've been lazy to
    -   do it any better for now.  This must be fixed.
    -
      o Server says that it is able to listen on multiple ports but currently
        that is bogus.  It can, but internals are for single server.
     
    - o Command lagging must implemented.  Those commands (all currently) that
    -   has the LAG flag set they must not be allowed to be executed more than
    -   once, say, in 2 seconds.
    -
      o Command flag usage in general is not implemented yet.
     
      o Client history must be implemented.  Protocol says that server must
    @@ -182,10 +166,6 @@ TODO In SILC Server
     
      o Protocol execution timeouts are hard coded, should be configurable.
     
    - o Channel message sending routines uses a lot of common code.  Should
    -   create a common function for those instead of writing the same code
    -   again everytime, as done now.
    -
      o serverutil.c I guess should be created for util-like functions that
        now resides in server.c, which is getting too big.
     
    @@ -219,11 +199,6 @@ TODO In SILC Server
     TODO In SILC Libraries
     ======================
     
    - o Public key verification in SKE (SILC Key Exchange) protocol is missing,
    -   thus currently we trust on all public keys.  This probably doesn't cause
    -   bad problems but the mechanism of verifying it from local database
    -   (from files) needs to be done (it can open man-in-the-middle-attacks).
    -
      o Implement PFS (Perfect Forward Secrecy) flag in SKE (and in client and
        server, actually).  If PFS is set, re-key must cause new key exchange.
        This is required by the SILC protocol.
    @@ -241,10 +216,6 @@ TODO In SILC Libraries
        I've done now is bad and should be removed as soon as possible (or 
        the protocol should then state the method of how they should be done).
     
    - o SILC public key file type is bad.  I'd like to see PEM encoded files.
    -   I have public domain code for base64 encoding but it needs to be 
    -   rewritten.
    -
      o Slow ciphers should be removed.  I think we don't need more than
        the AES finalists plus blowfish and RC5.
     
    @@ -300,9 +271,6 @@ TODO In SILC Libraries
        (silclog.[ch] in core).  The actual output of logs should be done
        by callback function in the application not in lib.
     
    - o I don't like the ID cache system currenly implemented.  Ugly and
    -   not so good.  Must be rewritten very soon.
    -
      o All allocations and freeing needs to be checked for memory leaks.
     
      o silc_buffer_[un]format() needs to be made more stable as it may