699f4fb8853942b21b5b84ef406aa11e118c582b
[silc.git] / doc / draft-riikonen-silc-commands-07.nroff
1 .pl 10.0i
2 .po 0
3 .ll 7.2i
4 .lt 7.2i
5 .nr LL 7.2i
6 .nr LT 7.2i
7 .ds LF Riikonen
8 .ds RF FORMFEED[Page %]
9 .ds CF
10 .ds LH Internet Draft
11 .ds RH 15 January 2007
12 .ds CH
13 .na
14 .hy 0
15 .in 0
16 .nf
17 Network Working Group                                        P. Riikonen
18 Internet-Draft
19 draft-riikonen-silc-commands-07.txt                      15 January 2007
20 Expires: 15 July 2007
21
22 .in 3
23
24 .ce 2
25 SILC Commands
26 <draft-riikonen-silc-commands-07.txt>
27
28 .ti 0
29 Status of this Memo
30
31 This document is an Internet-Draft and is in full conformance with
32 all provisions of Section 10 of RFC 2026.  Internet-Drafts are
33 working documents of the Internet Engineering Task Force (IETF), its
34 areas, and its working groups.  Note that other groups may also
35 distribute working documents as Internet-Drafts.
36
37 Internet-Drafts are draft documents valid for a maximum of six months
38 and may be updated, replaced, or obsoleted by other documents at any
39 time.  It is inappropriate to use Internet-Drafts as reference
40 material or to cite them other than as "work in progress."
41
42 The list of current Internet-Drafts can be accessed at
43 http://www.ietf.org/ietf/1id-abstracts.txt
44
45 The list of Internet-Draft Shadow Directories can be accessed at
46 http://www.ietf.org/shadow.html
47
48 The distribution of this memo is unlimited.
49
50
51 .ti 0
52 Abstract
53
54 This memo describes the commands used in the Secure Internet Live
55 Conferencing (SILC) protocol, specified in the Secure Internet Live
56 Conferencing, Protocol Specification [SILC1].  The SILC Commands are
57 very important part of the SILC protocol.  Usually the commands are used
58 by SILC clients to manage the SILC session, but also SILC servers may
59 use the commands.  This memo specifies detailed command messages and
60 command reply messages.
61
62
63
64
65
66
67
68
69 .ti 0
70 Table of Contents
71
72 .nf
73 1 Introduction ..................................................  2
74   1.1 Requirements Terminology ..................................  2
75 2 SILC Commands .................................................  2
76   2.1 SILC Commands Syntax ......................................  4
77   2.2 SILC Command Argument Idioms ..............................  4
78   2.3 SILC Commands List ........................................  5
79   2.4 SILC Command Status Payload ............................... 43
80 3 SILC Status Types ............................................. 44
81 4 Security Considerations ....................................... 51
82 5 References .................................................... 51
83 6 Author's Address .............................................. 52
84 Appendix A ...................................................... 52
85 Full Copyright Statement ........................................ 54
86
87
88 .ti 0
89 1. Introduction
90
91 This document describes the commands used in the Secure Internet Live
92 Conferencing (SILC) protocol, specified in the Secure Internet Live
93 Conferencing, Protocol Specification [SILC1].  This document specifies
94 detailed command messages and command reply messages.
95
96 Commands are very important part on SILC network especially for client
97 which uses commands to operate on the SILC network.  Commands are used
98 to set nickname, join to channel, change modes and many other things.
99
100 See the [SILC1] for the requirements and the restrictions for the usage
101 of the SILC commands.  The [SILC2] defines the command packet type and
102 the Command Payload which is actually used to deliver the commands and
103 command reply messages.
104
105
106 .ti 0
107 1.1 Requirements Terminology
108
109 The keywords MUST, MUST NOT, REQUIRED, SHOULD, SHOULD NOT, RECOMMENDED,
110 MAY, and OPTIONAL, when they appear in this document, are to be
111 interpreted as described in [RFC2119].
112
113
114 .ti 0
115 2 SILC Commands
116
117 .ti 0
118 2.1 SILC Commands Syntax
119
120 This section briefly describes the syntax of the command notions
121 in this document.  Every field in command is separated from each
122 other by whitespaces (` ') indicating that each field is independent
123 argument and each argument MUST have own Command Argument Payload.
124 The number of maximum arguments are defined with each command
125 separately.  The Command Argument Payload is described in [SILC2].
126
127 Every command defines specific number for each argument.  Currently,
128 they are defined in ascending order; first argument has number one
129 (1), second has number two (2) and so on.  This number is set into the
130 Argument Type field in the Command Argument Payload.  This makes it
131 possible to send the arguments in free order as the number MUST be
132 used to identify the type of the argument.  This makes is it also
133 possible to have multiple optional arguments in commands and in
134 command replies.  The number of argument is marked in parentheses
135 before the actual argument.
136
137
138
139 .in 6
140 Example:  Arguments:  (1) <nickname> (2) <username@host>
141 .in 3
142
143
144 Every command replies with Status Payload.  This payload tells the
145 sender of the command whether the command was completed successfully or
146 whether there was an error.  If error occurred the payload includes the
147 error type.  In the next section the Status Payload is not described
148 as it is common to all commands and has been described here.  Commands
149 MAY reply with other arguments as well.  These arguments are command
150 specific and are described in the next section.
151
152 Example command:
153 .in 6
154
155 EXAMPLE_COMMAND
156
157 .in 8
158 Max Arguments:  3
159     Arguments:  (1) <nickname>[@<server>]  (2) <message>
160                 (3) [<count>]
161
162 The command has maximum of 3 arguments.  However, only first
163 and second arguments are mandatory.
164
165 First argument <nickname> is mandatory but may have optional
166 <nickname@server> format as well.  Second argument is mandatory
167 <message> argument.  Third argument is optional <count> argument.
168
169 The numbers in parentheses are the argument specific numbers
170 that specify the type of the argument in Command Argument Payload.
171 The receiver always knows that, say, argument number two (2) is
172 <message> argument, regardless of the ordering of the arguments in
173 the Command Payload.
174
175 Reply messages to the command:
176
177 Max Arguments:  4
178     Arguments:  (1) <Status Payload>  (2) [<channel list>]
179                 (3) <idle time>       (4) [<away message>]
180
181 This command may reply with maximum of 4 arguments.  However,
182 only the first and third arguments are mandatory.  The numbers
183 in the parentheses have the same meaning as in the upper
184 command sending specification.
185
186 Every command reply with <Status Payload>, it is mandatory
187 argument for all command replies and for this reason it is not
188 described in the command reply descriptions.
189
190
191
192 Status messages:
193
194     SILC_STATUS_OK
195     SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
196     SILC_STATUS_ERR_NO_SUCH_NICK
197
198 Every command reply also defines set of status message that it
199 may return inside the <Status Payload>.  All status messages
200 are defined in the section 2.3 SILC Command Status Payload
201 The status messages defined with the command are recommendations.
202 It is possible to return other status messages not listed with
203 the command reply definition.
204 .in 3
205
206
207 .ti 0
208 2.2 SILC Command Argument Idioms
209
210 All commands that has an ID as argument (for example <Client ID>) are
211 actually ID Payloads, defined in [SILC2] that includes the type of the
212 ID, length of the ID and the actual ID data.  This way variable length
213 ID's can be sent as arguments.
214
215 All passphrases that may be sent in commands as arguments MUST be
216 UTF-8 [RFC3629] encoded.  All strings sent as arguments in command and
217 command reply are also UTF-8 encoded, unless otherwise defined.  See
218 the [SILC1] for general UTF-8 definition in SILC protocol.
219
220 All public keys and certificates that are sent as arguments are actually
221 Public Key Payloads [SILC2].  This way it is possible to send different
222 kind of public keys and certificate types as arguments.
223
224
225
226
227 .ti 0
228 2.3 SILC Commands List
229
230 This section lists all SILC commands, however, it is expected that a
231 implementation and especially client implementation has many more
232 commands that has only local affect.  These commands are official
233 SILC commands that has both client and server sides and cannot be
234 characterized as local commands.
235
236 List of all defined commands in SILC follows.
237
238 .in 0
239    0    SILC_COMMAND_NONE
240
241         None.  This is reserved command and MUST NOT be sent.
242
243
244    1    SILC_COMMAND_WHOIS
245
246         Max Arguments:  256
247             Arguments:  (1) [<nickname>[@<server>]]   (2) [<count>]
248                         (3) [<Requested Attributes>]  (4) [<Client ID>]
249                         (n) [...]
250
251         Whois command is used to query various information about specific
252         user.  The user may be requested by their nickname and server name.
253         The query may find multiple matching users as there are no unique
254         nicknames in the SILC.  The <count> option may be given to narrow
255         down the number of accepted results.  If this is not defined there
256         are no limit of accepted results.  The query may also be narrowed
257         down by defining the server name of the nickname.  The <count> is
258         32 bit MSB first order integer.
259
260         It is also possible to search the user by Client ID.  If the
261         <Client ID> is provided server MUST use it as the search value
262         instead of the <nickname>.  It is also possible to define multiple
263         Client ID's to search multiple users sending only one WHOIS
264         command.  In this case the Client ID's are appended as normal
265         arguments.
266
267         The <Requested Attributes> is defined in [ATTRS] and can be used
268         to request various information about the client.  See Appendix A
269         for definition of using these attributes in SILC.  If neither the
270         <nickname> or <Client ID> arguments are present but the attributes
271         are, the server MUST use the attributes to do the searching.  If
272         none of the arguments, <nickname>, <Client ID> and <Requested
273         Attributes> are present, error MUST be retuned.  Server MAY
274         use the <Requested Attributes> to narrow down the search if they
275         present at any time.
276
277         To prevent miss-use of this command wildcards in the nickname
278         or in the server name are not permitted.  It is not allowed
279         to request all users on some server.  The WHOIS requests MUST
280         be based on explicit nickname request.
281
282         The WHOIS request MUST be always sent to the router by normal
283         server so that all users are searched.  However, the server still
284         MUST search its locally connected clients.  The router MUST send
285         this command to the server which owns the requested client, if
286         the router is unable to provide all mandatory information about
287         the client.  That server MUST reply to the command.  Server MUST
288         NOT send whois replies to the client until it has received the
289         reply from its router.
290
291         Reply messages to the command:
292
293         Max Arguments:  11
294             Arguments:  (1) <Status Payload>       (2) <Client ID>
295                         (3) <nickname>[@<server>]  (4) <username@host>
296                         (5) <real name>            (6) [<Channel Payload
297                                                          list>]
298                         (7) [<user mode>]          (8) [<idle time>]
299                         (9) [<fingerprint>]        (10) <channel user
300                                                          mode list>
301                         (11) [<Attributes>]
302
303
304         This command may reply with several command reply messages to
305         form a list of results.  In this case the status payload will
306         include STATUS_LIST_START status in the first reply and
307         STATUS_LIST_END in the last reply to indicate the end of the
308         list.  If there are only one reply the status is set to normal
309         STATUS_OK.  If multiple Client IDs was requested then each found
310         and unfound client MUST cause successful or error reply,
311         respectively.
312
313         The command replies include the Client ID of the nickname,
314         nickname and server name, user name and host name and user's real
315         name.  Client should process these replies only after the last
316         reply has been received with the STATUS_LIST_END status.  If the
317         <count> option were defined in the query there will be only
318         <count> many replies from the server.
319
320         The server returns the list of channels if the client has
321         joined channels.  In this case the list is list of Channel
322         Payloads.  The Mode Mask in the Channel Payload is the channel's
323         mode.  The list is encoded by adding the Channel Payloads one
324         after the other.  Private and secret channels MUST NOT be sent,
325         except if the sender of this command is on those channels, or
326         the sender is server.  The <channel user mode list> MUST also
327         be sent if client is joined channels.  This list includes 32 bit
328         MSB first order values one after the other and each indicate
329         the user's mode on a channel.  The order of these values MUST
330         be same as the channel order in the <Channel Payload list>.
331
332         The server also returns client's user mode, idle time, and the
333         fingerprint of the client's public key.  The <fingerprint> is the
334         binary hash digest of the public key.  The fingerprint MUST NOT
335         be sent if the server has not verified the proof of possession of
336         the corresponding private key.  Server can do this during the
337         SILC Key Exchange protocol.  The <fingerprint> is SHA1 digest.
338
339         The <Attributes> is the reply to the <Requested Attributes>.
340         See the Appendix A for more information.
341
342         Status messages:
343
344             SILC_STATUS_OK
345             SILC_STATUS_LIST_START
346             SILC_STATUS_LIST_END
347             SILC_STATUS_ERR_NO_SUCH_NICK
348             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
349             SILC_STATUS_ERR_WILDCARDS
350             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
351             SILC_STATUS_ERR_TOO_MANY_PARAMS
352
353
354    2    SILC_COMMAND_WHOWAS
355
356         Max Arguments:  2
357             Arguments:  (1) <nickname>[@<server>]  (2) [<count>]
358
359         Whowas.  This command is used to query history information about
360         specific user.  The user may be requested by their nickname and
361         server name.  The query may find multiple matching users as there
362         are no unique nicknames in the SILC.  The <count> option may be
363         given to narrow down the number of accepted results.  If this
364         is not defined there are no limit of accepted results.  The query
365         may also be narrowed down by defining the server name of the
366         nickname.  The <count> is 32 bit MSB first order integer.
367
368         To prevent miss-use of this command wildcards in the nickname
369         or in the server name are not permitted.  The WHOWAS requests MUST
370         be based on specific nickname request.
371
372         The WHOWAS request MUST be always sent to the router by server
373         so that all users are searched.  However, the server still must
374         search its locally connected clients.
375
376         Reply messages to the command:
377
378         Max Arguments:  5
379             Arguments:  (1) <Status Payload>        (2) <Client ID>
380                         (3) <nickname>[@<server>]   (4) <username@host>
381                         (5) [<real name>]
382
383         This command may reply with several command reply messages to form
384         a list of results.  In this case the status payload will include
385         STATUS_LIST_START status in the first reply and STATUS_LIST_END in
386         the last reply to indicate the end of the list.  If there are only
387         one reply the status is set to normal STATUS_OK.
388
389         The command replies with nickname and user name and host name.
390         Every server MUST keep history for some period of time of its
391         locally connected clients.
392
393         Status messages:
394
395             SILC_STATUS_OK
396             SILC_STATUS_LIST_START
397             SILC_STATUS_LIST_END
398             SILC_STATUS_ERR_NO_SUCH_NICK
399             SILC_STATUS_ERR_WILDCARDS
400             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
401             SILC_STATUS_ERR_TOO_MANY_PARAMS
402
403
404    3    SILC_COMMAND_IDENTIFY
405
406         Max Arguments:  256
407             Arguments:  (1) [<nickname>[@<server>]]  (2) [<server name>]
408                         (3) [<channel name>]         (4) [<count>]
409                         (5) [<ID Payload>]           (n) [...]
410
411         Identify command is used to query information about an entity by
412         the entity's name or ID.  This command can be used to query
413         information about clients, servers and channels.
414
415         The query may find multiple matching entities.  The <count> option
416         may be given to narrow down the number of accepted results.  If
417         this is not defined there are no limit of accepted results.  The
418         <count> is 32 bit MSB first order integer.
419
420         It is also possible to search the entity by its ID.  If the
421         <ID Payload> is provided server must use it as the search value
422         instead of the entity's name.  One of the arguments MUST be given.
423         It is also possible to define multiple ID Payloads to search
424         multiple entities sending only one IDENTIFY command.  In this case
425         the ID Payloads are appended as normal arguments.  The type of the
426         entity is defined by the type of the ID Payload.
427
428         To prevent miss-use of this command wildcards in the names are
429         not permitted.  It is not allowed to request for example all users
430         on server.
431
432         Implementations may not want to give interface access to this
433         command as it is hardly a command that would be used by an end
434         user.  However, it must be implemented as it is most likely used
435         with private message sending.
436
437         The IDENTIFY command MUST be always sent to the router by server
438         so that all users are searched.  However, server MUST still search
439         its locally connected clients.
440
441         Reply messages to the command:
442
443         Max Arguments:  4
444             Arguments:  (1) <Status Payload>   (2) <ID Payload>
445                         (3) [<entity's name>]  (4) [<info>]
446
447         This command may reply with several command reply messages to form
448         a list of results.  In this case the status payload will include
449         STATUS_LIST_START status in the first reply and STATUS_LIST_END in
450         the last reply to indicate the end of the list.  If there are only
451         one reply the status is set to normal STATUS_OK.  If multiple Client
452         IDs was requested then each found and unfound client must cause
453         successful or error reply, respectively.
454
455         When querying clients the <entity's name> must include the client's
456         nickname in the following format: nickname[@server].  The
457         <info> must include the client's username and host in the following
458         format: username@host.
459
460         When querying servers the <entity's name> must include the server's
461         full name.  The <info> may be omitted.
462
463         When querying channels the <entity's name> must include the
464         channel's name.  The <info> may be omitted.
465
466         If the <count> option were defined in the query there will be only
467         <count> many replies from the server.
468
469         Status messages:
470
471             SILC_STATUS_OK
472             SILC_STATUS_LIST_START
473             SILC_STATUS_LIST_END
474             SILC_STATUS_ERR_NO_SUCH_NICK
475             SILC_STATUS_ERR_NO_SUCH_SERVER
476             SILC_STATUS_ERR_NO_SUCH_CHANNEL
477             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
478             SILC_STATUS_ERR_NO_SUCH_SERVER_ID
479             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
480             SILC_STATUS_ERR_WILDCARDS
481             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
482             SILC_STATUS_ERR_TOO_MANY_PARAMS
483
484
485    4    SILC_COMMAND_NICK
486
487         Max Arguments:  1
488             Arguments:  (1) <nickname>
489
490         Set/change nickname.  This command is used to set nickname for
491         user.  See [SILC1] for definition of correctly formatted
492         nickname.
493
494         When nickname is changed new Client ID is generated.  Server MUST
495         distribute SILC_NOTIFY_TYPE_NICK_CHANGE to local clients on the
496         channels (if any) the client is joined on.  Then it MUST send
497         SILC_NOTIFY_TYPE_NICK_CHANGE notify to its primary route to
498         notify about nickname and Client ID change.
499
500         Reply messages to the command:
501
502         Max Arguments:  3
503             Arguments:  (1) <Status Payload>  (2) <New ID Payload>
504                         (3) <nickname>
505
506         This command replies always with <New ID Payload> that is
507         generated by the server every time user changes their nickname.
508         Client receiving this payload MUST start using the received
509         Client ID as its current valid Client ID.  The New ID Payload
510         is described in [SILC2].  The <nickname> is the user's new
511         nickname.
512
513         Status messages:
514
515             SILC_STATUS_OK
516             SILC_STATUS_ERR_WILDCARDS
517             SILC_STATUS_ERR_NICKNAME_IN_USE
518             SILC_STATUS_ERR_BAD_NICKNAME
519             SILC_STATUS_ERR_NOT_REGISTERED
520             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
521             SILC_STATUS_ERR_TOO_MANY_PARAMS
522
523
524    5    SILC_COMMAND_LIST
525
526         Max Arguments:  1
527             Arguments:  (1) [<Channel ID>]
528
529         The list command is used to list channels and their topics on the
530         current server.  If the <Channel ID> parameter is used, only the
531         status of that channel is displayed.  Secret channels are not
532         listed at all.  Private channels are listed with status indicating
533         that the channel is private.  Router MAY reply with all channels
534         it knows about.
535
536         Reply messages to the command:
537
538         Max Arguments:  5
539             Arguments:  (1) <Status Payload>  (2) <Channel ID>
540                         (3) <channel>         (4) [<topic>]
541                         (5) [<user count>]
542
543         This command may reply with several command reply messages to form
544         a list of results.  In this case the status payload will include
545         STATUS_LIST_START status in the first reply and STATUS_LIST_END in
546         the last reply to indicate the end of the list.  If there are only
547         one reply the status is set to normal STATUS_OK.
548
549         This command replies with Channel ID, name and the topic of the
550         channel.  If the channel is private channel the <topic> SHOULD
551         include the "*private*" string.
552
553         Status messages:
554
555             SILC_STATUS_OK
556             SILC_STATUS_LIST_START
557             SILC_STATUS_LIST_END
558             SILC_STATUS_ERR_WILDCARDS
559             SILC_STATUS_ERR_NOT_REGISTERED
560             SILC_STATUS_ERR_TOO_MANY_PARAMS
561             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
562             SILC_STATUS_ERR_NO_CHANNEL_ID
563             SILC_STATUS_ERR_NO_SUCH_SERVER
564
565
566    6    SILC_COMMAND_TOPIC
567
568         Max Arguments:  2
569             Arguments:  (1) <Channel ID>  (2) [<topic>]
570
571         This command is used to change or view the topic of a channel.
572         The topic for channel <Channel ID> is returned if there is no
573         <topic> given.  If the <topic> parameter is present, the topic
574         for that channel will be changed, if the channel modes permit
575         this action.
576
577         After setting the topic the server MUST send the notify type
578         SILC_NOTIFY_TYPE_TOPIC_SET to its primary router and then to
579         the channel which topic was changed.
580
581         Reply messages to the command:
582
583         Max Arguments:  2
584             Arguments:  (1) <Status Payload>  (2) <Channel ID>
585                         (3) [<topic>]
586
587         The command may reply with the topic of the channel if it is
588         set.
589
590         Status messages:
591
592             SILC_STATUS_OK
593             SILC_STATUS_ERR_NOT_ON_CHANNEL
594             SILC_STATUS_ERR_WILDCARDS
595             SILC_STATUS_ERR_NOT_REGISTERED
596             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
597             SILC_STATUS_ERR_NO_SUCH_CHANNEL
598             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
599             SILC_STATUS_ERR_NO_CHANNEL_ID
600             SILC_STATUS_ERR_BAD_CHANNEL_ID
601             SILC_STATUS_ERR_TOO_MANY_PARAMS
602             SILC_STATUS_ERR_NO_CHANNEL_PRIV
603
604
605    7    SILC_COMMAND_INVITE
606
607         Max Arguments:  4
608             Arguments:  (1) <Channel ID>       (2) [<Client ID>]
609                         (3) [<add | del>]      (4) [<invite list>]
610
611         This command can be used to invite other clients to join to a
612         channel, and to manage the channel's invite list.  The <Client
613         ID> argument is the target client's ID that is being invited.
614         The <Channel ID> is the Channel ID of the requested channel.
615         The sender of this command MUST be on the channel.  The server
616         MUST also send the notify type SILC_NOTIFY_TYPE_INVITE to its
617         primary router and then to the client indicated by the <Client
618         ID>.
619
620         The <add | del> is an argument of size of 1 byte where 0x00 means
621         adding a client to invite list, and 0x01 means deleting a client
622         from invite list.  The <invite list>, if present, indicates
623         the information to be added to or removed from the invite list.
624         It may include a string for matching clients, public key of a
625         client (Public Key Payload) or Client ID of a client.  The
626         <invite list> is an Argument List Payload.
627
628         The following Argument Types has been defined for invite list
629         Argument Payloads:
630
631           0x01 - Argument is an invite string of following format:
632
633             [<nickname>[@<server>]!][<username>]@[<hostname or IP/MASK>]
634
635             The <hostname> may also be in format of IP/MASK to indicate
636             a network, for example 10.2.1.0/255.255.0.0.
637
638           0x02 - Argument is the public key of a client
639           0x03 - Argument is the Client ID of a client
640
641         If unknown type value is received or there is invalid amount of
642         Argument Payloads present in the list, the command MUST be
643         discarded.  When argument that is to be deleted from the invite
644         list does not exist in the list the argument is ignored.
645
646         When adding to or removing from the invite list the server MUST
647         send the notify type SILC_NOTIFY_TYPE_INVITE to its primary router.
648         When the SILC_CHANNEL_MODE_INVITE is set the client which executes
649         this command MUST have at least channel operator privileges to be
650         able to add to or remove from the invite list.  If this channel
651         mode is not set the list manipulation is allowed for all clients.
652         Wildcards MAY be used with this command.  When this command is
653         used to invite explicit client with <Client ID> the ID MUST be
654         added to the invite list by the server.
655
656         When this command is given with only <Channel ID> argument then
657         the command merely returns the invite list of the channel.   This
658         command MUST fail if the requested channel does not exist, the
659         requested <Client ID> is already on the channel or if the channel
660         is invite only channel and the caller of this command does not
661         have at least channel operator privileges on the channel.
662
663         Reply messages to the command:
664
665         Max Arguments:  3
666             Arguments:  (1) <Status Payload>  (2) <Channel ID>
667                         (3) [<invite list>]
668
669         This command replies with the invite list of the channel if it
670         exists.
671
672         Status messages:
673
674             SILC_STATUS_OK
675             SILC_STATUS_ERR_NOT_REGISTERED
676             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
677             SILC_STATUS_ERR_TOO_MANY_PARAMS
678             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
679             SILC_STATUS_ERR_NO_CLIENT_ID
680             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
681             SILC_STATUS_ERR_NO_CHANNEL_ID
682             SILC_STATUS_ERR_NOT_ON_CHANNEL
683             SILC_STATUS_ERR_USER_ON_CHANNEL
684             SILC_STATUS_ERR_NO_CHANNEL_PRIV
685             SILC_STATUS_ERR_RESOURCE_LIMIT
686
687
688    8    SILC_COMMAND_QUIT
689
690         Max Arguments:  1
691             Arguments:  (1) [<quit message>]
692
693         This command is used by client to end SILC session.  The server
694         must close the connection to a client which sends this command.
695         if <quit message> is given it will be sent to other clients on
696         channel if the client is on channel when quitting.
697
698         Reply messages to the command:
699
700         This command does not reply anything.
701
702
703     9   SILC_COMMAND_KILL
704
705         Max Arguments:  3
706             Arguments:  (1) <Client ID>          (2) [<comment>]
707                         (3) [<auth payload>]
708
709         This command can be used by SILC operators to remove a client from
710         SILC network.  It also can be used by a normal client to remove
711         its own client from network by providing correct authentication
712         data.
713
714         Router operator killing a client:
715
716         The removing has temporary effects and client may reconnect to
717         SILC network.  The <Client ID> is the client to be removed from SILC.
718         The <comment> argument may be provided to give to the removed client
719         some information why it was removed from the network.  The killer
720         MUST have SILC operator privileges.
721
722         When killing a client the router MUST first send notify type
723         SILC_NOTIFY_TYPE_KILLED to all channels the client has joined.
724         The packet MUST NOT be sent to the killed client on the channels.
725         Then, the router MUST send the same notify type to its primary
726         router.  Finally, the router MUST send the same notify type
727         destined directly to the client which was killed.  The killed
728         client MUST also be removed from the invite lists of joined
729         channels if it is explicitly added in the invite lists.
730
731         Normal client killing by authentication:
732
733         When normal client executes this command the <Client ID> is the
734         destination client to be removed from the network.  The client
735         MUST provide the <auth payload> which includes a digital signature
736         that MUST be verified with the public key of the client indicated
737         by <Client ID>.  The <Client ID> MUST be local client to the server.
738         If the signature verification is successful the server sends
739         SILC_NOTIFY_TYPE_SIGNOFF to network and to the destination client.
740         The SILC_NOTIFY_TYPE_KILLED MUST NOT be used in this case.  If the
741         verification fails the destination client remains in network.
742         The hash function used in <auth payload> computing is selected
743         by user or SHA1 otherwise.
744
745         Reply messages to the command:
746
747         Max Arguments:  2
748             Arguments:  (1) <Status Payload>  (2) <Client ID>
749
750         This command returns with the requested Client ID.
751
752         Status messages:
753
754             SILC_STATUS_OK
755             SILC_STATUS_ERR_WILDCARDS
756             SILC_STATUS_ERR_NOT_REGISTERED
757             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
758             SILC_STATUS_ERR_TOO_MANY_PARAMS
759             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
760             SILC_STATUS_ERR_NO_CLIENT_ID
761             SILC_STATUS_ERR_NO_ROUTER_PRIV
762
763
764    10   SILC_COMMAND_INFO
765
766         Max Arguments:  2
767             Arguments:  (1) [<server>]  (2) [<Server ID>]
768
769         This command is used to fetch various information about a server.
770         If <server> argument is specified the command MUST be sent to
771         the requested server.
772
773         If the <Server ID> is specified the server information if fetched
774         by the provided Server ID.  One of the arguments MUST always be
775         present.
776
777         Reply messages to the command:
778
779         Max Arguments:  4
780             Arguments:  (1) <Status Payload>  (2) <Server ID>
781                         (3) <server name>     (4) <string>
782
783         This command replies with the Server ID of the server and a
784         string which tells the information about the server.
785
786         Status messages:
787
788             SILC_STATUS_OK
789             SILC_STATUS_ERR_WILDCARDS
790             SILC_STATUS_ERR_NOT_REGISTERED
791             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
792             SILC_STATUS_ERR_TOO_MANY_PARAMS
793             SILC_STATUS_ERR_NO_SUCH_SERVER
794             SILC_STATUS_ERR_NO_SUCH_SERVER_ID
795             SILC_STATUS_ERR_NO_SERVER_ID
796
797
798    11   SILC_COMMAND_STATS
799
800         Max Arguments:  1
801             Arguments:  (1) <Server ID>
802
803         This command is used to fetch various statistical information
804         from the server indicated by <Server ID>, which is the ID of
805         server where sender is connected to.  Server receiving this
806         command MAY also send this further to its router for fetching
807         other cell and network wide statistics to accompany the reply.
808
809         Reply messages to the command:
810
811         Max Arguments:  3
812             Arguments:  (1) <Status Payload>          (2) <Server ID>
813                         (3) [<statistics structure>]
814
815         This command replies with the Server ID of the server and
816         optional statistics structure which includes 32 bit MSB first
817         ordered integer values to represent various statistical
818         information.  The structure is as follows:
819
820           starttime      - time when server was started
821           uptime         - uptime of the server
822           my clients     - number of locally connected clients
823           my channels    - number of locally created channels
824           my server ops  - number of local server operators
825           my router ops  - number of local router operators
826           cell clients   - number of clients in local cell
827           cell channels  - number of channels in local cell
828           cell servers   - number of servers in local cell
829           clients        - number of client in SILC network
830           channels       - number of channels in SILC network
831           servers        - number of servers in SILC network
832           routers        - number of routers in SILC network
833           server ops     - number of server operators in SILC network
834           router ops     - number of router operators in SILC network
835
836         If some value is unknown it is set to zero (0) value.  The
837         "starttime" is the start time of the server, and is seconds
838         since Epoch (POSIX.1).  The "uptime" is time difference of
839         current time and "starttime" in the server, and is seconds
840         in value.
841
842         Status messages:
843
844             SILC_STATUS_OK
845             SILC_STATUS_ERR_NOT_REGISTERED
846             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
847             SILC_STATUS_ERR_TOO_MANY_PARAMS
848             SILC_STATUS_ERR_NO_SUCH_SERVER_ID
849             SILC_STATUS_ERR_NO_SUCH_SERVER
850             SILC_STATUS_ERR_NO_SERVER_ID
851
852
853    12   SILC_COMMAND_PING
854
855         Max Arguments:  1
856             Arguments:  (1) <Server ID>
857
858         This command is used by client and server to test the communication
859         channel to its server if one suspects that the communication is not
860         working correctly.  The <Server ID> is the ID of the server the
861         sender is connected to.
862
863         Reply messages to the command:
864
865         Max Arguments:  1
866             Arguments:  (1) <Status Payload>
867
868         This command replies only with Status Payload.  Server returns
869         SILC_STATUS_OK in Status Payload if pinging was successful.
870
871
872
873         Status messages:
874
875             SILC_STATUS_OK
876             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
877             SILC_STATUS_ERR_TOO_MANY_PARAMS
878             SILC_STATUS_ERR_NO_SERVER_ID
879             SILC_STATUS_ERR_NO_SUCH_SERVER
880             SILC_STATUS_ERR_NOT_REGISTERED
881
882
883    13   SILC_COMMAND_OPER
884
885         Max Arguments:  2
886             Arguments:  (1) <username>  (2) <authentication payload>
887
888         This command is used by normal client to obtain server operator
889         privileges on some server or router.  Note that router operator
890         has router privileges that supersedes the server operator
891         privileges and this does not obtain those privileges.  Client
892         MUST use SILCOPER command to obtain router level privileges.
893
894         The <username> is the username set in the server configurations
895         as operator.  The <authentication payload> is the data that the
896         client is authenticated against.  It may be passphrase prompted
897         for user on client's screen or it may be public key authentication
898         based on digital signatures.  The public key used to verify the
899         signature should be locally saved in the server, and server should
900         not use public key received during the SKE to verify this signature.
901
902         After changing the mode the server MUST send the notify type
903         SILC_NOTIFY_TYPE_UMODE_CHANGE to its primary router.
904
905         Reply messages to the command:
906
907         Max Arguments:  1
908             Arguments:  (1) <Status Payload>
909
910         This command replies only with Status Payload.
911
912         Status messages:
913
914             SILC_STATUS_OK
915             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
916             SILC_STATUS_ERR_TOO_MANY_PARAMS
917             SILC_STATUS_ERR_NOT_REGISTERED
918             SILC_STATUS_ERR_AUTH_FAILED
919
920
921    14   SILC_COMMAND_JOIN
922
923         Max Arguments:  7
924             Arguments:  (1) <channel>         (2) <Client ID>
925                         (3) [<passphrase>]    (4) [<cipher>]
926                         (5) [<hmac>]          (6) [<founder auth>]
927                         (7) [<channel auth>]
928
929         Join to channel/create new channel.  This command is used to
930         join to a channel.  If the channel does not exist the channel is
931         created.  If server is normal server this command MUST be sent
932         to router which will create the channel.  The channel MAY be
933         protected with passphrase.  If this is the case the passphrase
934         MUST be sent along the join command.  See the [SILC1] for
935         definition of correctly formatted channel name, <channel>.
936
937         The second argument <Client ID> is the Client ID of the client
938         which is joining to the client.  When client sends this command
939         to the server the <Client ID> MUST be the client's own ID.
940
941         Cipher to be used to secure the traffic on the channel MAY be
942         requested by sending the name of the requested <cipher>.  This
943         is used only if the channel does not exist and is created.  If
944         the channel already exists the cipher set previously for the
945         channel will be used to secure the traffic.  The computed MACs
946         of the channel message are produced by the default HMAC or by
947         the <hmac> provided for the command.
948
949         The <founder auth> is Authentication Payload providing the
950         authentication for gaining founder privileges on the channel
951         when joining the channel.  The client may provide this if it
952         knows that it is the founder of the channel and that the
953         SILC_CMODE_FOUNDER_AUTH mode is set on the channel.  The server
954         MUST verify whether the client is able to gain the founder
955         privileges the same way as the client had given the
956         SILC_COMMAND_CUMODE command to gain founder privileges.  The
957         client is still able to join the channel even if the founder
958         privileges could not be gained.  The hash function used with
959         the <founder payload> is selected by user or SHA1 otherwise.
960
961         If the <channel auth> is present and the channel mode
962         SILC_CMODE_CHANNEL_AUTH is set the server MUST verify the
963         <channel auth> with channel public key(s).  If public key that
964         can verify <channel auth> does not exist on the channel public
965         key list the client MUST NOT be allowed to join the channel.
966         Because more than one public key may be set on channel the
967         <channel auth> Authentication Payload's Public Data field
968         MUST include an indication of the public key to be used.  The
969         first 20 bytes of the Public Data field MUST be SHA-1 digest of
970         the public key that must be used in verification.  The digest
971         is the SILC Public Key fingerprint.  Rest of thePublic Data field
972         are set as defined in [SILC1].  This way server can determine from
973         the digest whether that public key exist on the channel and then
974         use that key in verification.  The hash function used with
975         <channel auth> is selected by user or SHA1 otherwise.
976
977         The server MUST check whether the user is allowed to join to
978         the requested channel.  Various modes set to the channel affect
979         the ability of the user to join the channel.  These conditions
980         are:
981
982             o  The user MUST be invited to the channel if the channel
983                is invite-only channel.
984
985             o  The Client ID/nickname/username/host name/public key
986                MUST NOT match any active bans.
987
988             o  The correct passphrase MUST be provided if passphrase
989                is set to the channel, and/or digital signature verification
990                with channel public key MUST be successful if public keys
991                has been set to the channel.
992
993             o  The user count limit, if set, MUST NOT be reached.
994
995         If the client provided correct <founder auth> payload it can
996         override these conditions, except the condition for the passphrase.
997         The correct passphrase MUST be provided even if <founder auth>
998         payload is provided.
999
1000         Reply messages to the command:
1001
1002         Max Arguments:  17
1003             Arguments:  (1) <Status Payload>        (2) <channel>
1004                         (3) <Channel ID>            (4) <Client ID>
1005                         (5) <channel mode mask>     (6) <created>
1006                         (7) [<Channel Key Payload>] (8) [<ban list>]
1007                         (9) [<invite list>]         (10) [<topic>]
1008                         (11) [<hmac>]               (12) <list count>
1009                         (13) <Client ID list>       (14) <client mode list>
1010                         (15) [<founder pubkey>]     (16) [<channel pubkeys>]
1011                         (17) [<user limit>]
1012
1013         This command replies with the channel name requested by the
1014         client, channel ID of the channel and topic of the channel
1015         if it exists.  The <Client ID> is the Client ID which was joined
1016         to the channel.  It also replies with the channel mode mask
1017         which tells all the modes set on the channel.  If the channel
1018         is created the mode mask is zero (0) and <created> is 0x01.
1019         If ban mask and/or invite list is set they are sent as well.
1020         The <user limit> is the user limit on the channel, if one is set.
1021
1022         The <list count>, <Client ID list> and <client mode list> are
1023         the clients currently on the channel and their modes on the
1024         channel.  The <Client ID list> is formed by adding the ID Payloads
1025         one after the other.  The <client mode list> is formed by adding
1026         32 bit MSB first order values one after the other.  The <founder
1027         pubkey> is the public key (or certificate) of the channel founder.
1028         The <channel pubkeys> is Argument List Payload containing the
1029         channel public keys that has been set for the channel.
1030
1031         Client receives the channel key in the reply message as well
1032         inside <Channel Key Payload>.
1033
1034         Status messages:
1035
1036             SILC_STATUS_OK
1037             SILC_STATUS_ERR_WILDCARDS
1038             SILC_STATUS_ERR_NOT_REGISTERED
1039             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1040             SILC_STATUS_ERR_TOO_MANY_PARAMS
1041             SILC_STATUS_ERR_BAD_PASSWORD
1042             SILC_STATUS_ERR_CHANNEL_IS_FULL
1043             SILC_STATUS_ERR_NOT_INVITED
1044             SILC_STATUS_ERR_BANNED_FROM_CHANNEL
1045             SILC_STATUS_ERR_BAD_CHANNEL
1046             SILC_STATUS_ERR_USER_ON_CHANNEL
1047
1048
1049    15   SILC_COMMAND_MOTD
1050
1051         Max Arguments:  1
1052             Arguments:  (1) <server>
1053
1054         This command is used to query the Message of the Day of the server.
1055
1056         Reply messages to the command:
1057
1058         Max Arguments:  3
1059             Arguments:  (1) <Status Payload>  (2) <Server ID>
1060                         (3) [<motd>]
1061
1062         This command replies with the motd message if it exists.
1063
1064         Status messages:
1065
1066             SILC_STATUS_OK
1067             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1068             SILC_STATUS_ERR_TOO_MANY_PARAMS
1069             SILC_STATUS_ERR_NOT_REGISTERED
1070             SILC_STATUS_ERR_NO_SUCH_SERVER
1071
1072
1073    16   SILC_COMMAND_UMODE
1074
1075         Max Arguments:  2
1076             Arguments:  (1) <Client ID>  (2) [<client mode mask>]
1077
1078         This command is used by client to set/unset modes for itself.
1079         However, there are some modes that the client MUST NOT set itself,
1080         but they will be set by server.  However, client MAY unset any
1081         mode.  Modes may be masked together ORing them thus having
1082         several modes set.  Client MUST keep its client mode mask
1083         locally so that the mode setting/unsetting would work without
1084         problems.  Client may change only its own modes.
1085
1086         After changing the mode server MUST send the notify type
1087         SILC_NOTIFY_TYPE_UMODE_CHANGE to its primary router.
1088
1089         The following client modes are defined:
1090
1091            0x00000000    SILC_UMODE_NONE
1092
1093               No specific mode for client.  This is the initial
1094               setting when new client is created.  The client is
1095               normal client and is present in the network.
1096
1097
1098            0x00000001    SILC_UMODE_SERVER_OPERATOR
1099
1100               Marks the user as server operator.  Client MUST NOT
1101               set this mode itself.  Server sets this mode to the
1102               client when client attains the server operator
1103               privileges by SILC_COMMAND_OPER command.  Client
1104               MAY unset the mode itself.
1105
1106
1107            0x00000002    SILC_UMODE_ROUTER_OPERATOR
1108
1109               Marks the user as router (SILC) operator.  Client
1110               MUST NOT set this mode itself.  Router sets this mode
1111               to the client when client attains the router operator
1112               privileges by SILC_COMMAND_SILCOPER command.  Client
1113               MAY unset the mode itself.
1114
1115
1116            0x00000004    SILC_UMODE_GONE
1117
1118               Marks that the user is not currently present in the
1119               SILC Network.  Client MAY set and unset this mode.
1120
1121
1122            0x00000008    SILC_UMODE_INDISPOSED
1123
1124               Marks that the user is currently indisposed and may
1125               not be able to receive any messages, and that user may
1126               not be present in the network.  Client MAY set and
1127               unset this mode.
1128
1129
1130            0x00000010    SILC_UMODE_BUSY
1131
1132               Marks that the user is currently busy and may not
1133               want to receive any messages, and that user may not
1134               be present in the network.  Client MAY set and unset
1135               this mode.
1136
1137
1138            0x00000020    SILC_UMODE_PAGE
1139
1140               User is not currently present or is unable to receive
1141               messages, and prefers to be paged in some mechanism
1142               if the user needs to be reached.  Client MAY set and
1143               unset this mode.
1144
1145
1146            0x00000040    SILC_UMODE_HYPER
1147
1148               Marks that the user is hyper active and is eager to
1149               receive and send messages.   Client MAY set and unset
1150               this mode.
1151
1152
1153            0x00000080    SILC_UMODE_ROBOT
1154
1155               Marks that the client is actually a robot program.
1156               Client MAY set and unset this mode.
1157
1158
1159            0x00000100    SILC_UMODE_ANONYMOUS
1160
1161               Marks that the client is anonymous client.  Server
1162               that specifically is designed for anonymous services
1163               can set and unset this mode.  Client MUST NOT set or
1164               unset this mode itself.  A client with this mode set
1165               would have the username and the hostname information
1166               scrambled by the server which set this mode.
1167
1168
1169            0x00000200    SILC_UMODE_BLOCK_PRIVMSG
1170
1171               Marks that the client wishes to block private
1172               messages sent to the client, unless the Private
1173               Message Key flag is set in the SILC packet header.
1174               If this mode is set server MUST NOT deliver private
1175               messages to the client without the Private Message
1176               Key flag being set.  The Private Message Key flag set
1177               indicates that the private message is protected with
1178               a key shared between the sender and the recipient.
1179
1180               A separate service could provide additional filtering
1181               features for accepting private messages from certain
1182               sender.  However, this document does not specify such
1183               service.
1184
1185               The client MAY set and unset this mode.
1186
1187
1188            0x00000400    SILC_UMODE_DETACHED
1189
1190               Marks that the client is detached from the SILC network.
1191               This means that the actual network connection to the
1192               client is lost but the client entry is still valid.  The
1193               detached client can be resumed at a later time.  This
1194               mode MUST NOT be set by client.  It can only be set when
1195               client has issued command SILC_COMMAND_DETACH.  The server
1196               sets this mode.  This mode cannot be unset with this
1197               command.  It is unset when the client is resuming back to
1198               the network and SILC_PACKET_RESUME_CLIENT packet is
1199               received.
1200
1201               This flag MUST NOT be used to determine whether a packet
1202               can be sent to the client or not.  Only the server that
1203               had the original client connection can make the decision
1204               by knowing that the network connection is not active.
1205               In this case the default case is to discard the packet.
1206
1207
1208            0x00000800    SILC_UMODE_REJECT_WATCHING
1209
1210               Marks that the client rejects that it could be watched
1211               by someone else.  If this mode is set notifications about
1212               this client is not send, even if someone is watching the
1213               same nickname this client has.  Client MAY set and unset
1214               this mode.  Any changes for this client MUST NOT be
1215               notified to any watcher when this mode is set.
1216
1217               A separate service could provide additional filtering
1218               features for rejecting and accepting the watching from
1219               certain users.  However, this document does not specify
1220               such service.
1221
1222
1223            0x00001000    SILC_UMODE_BLOCK_INVITE
1224
1225               Marks that the client wishes to block incoming invite
1226               notifications.  Client MAY set and unset this mode.
1227               When set server does not deliver invite notifications
1228               to the client.  Note that this mode may make it harder
1229               to join invite-only channels.
1230
1231         If the <client mode mask> was not provided this command merely
1232         returns the mode mask to the client.
1233
1234
1235         Reply messages to the command:
1236
1237         Max Arguments:  2
1238             Arguments:  (1) <Status Payload>  (2) <client mode mask>
1239
1240         This command replies with the changed client mode mask that
1241         the client MUST to keep locally.
1242
1243
1244         Status messages:
1245
1246             SILC_STATUS_OK
1247             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1248             SILC_STATUS_ERR_TOO_MANY_PARAMS
1249             SILC_STATUS_ERR_NOT_REGISTERED
1250             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
1251             SILC_STATUS_ERR_BAD_CLIENT_ID
1252             SILC_STATUS_ERR_NOT_YOU
1253             SILC_STATUS_ERR_PERM_DENIED
1254             SILC_STATUS_ERR_UNKNOWN_MODE
1255             SILC_STATUS_ERR_NO_CLIENT_ID
1256
1257
1258    17   SILC_COMMAND_CMODE
1259
1260         Max Arguments:  9
1261             Arguments:  (1) <Channel ID>      (2) [<channel mode mask>]
1262                         (3) [<user limit>]    (4) [<passphrase>]
1263                         (5) [<cipher>]        (6) [<hmac>]
1264                         (7) [<auth payload>]  (8) [<founder pubkey>]
1265                         (9) [<channel pubkey>]
1266
1267         This command is used by client to set or change channel flags on
1268         a channel.  Channel has several modes that set various properties
1269         of a channel.  Modes may be masked together by ORing them thus
1270         having several modes set.  The <Channel ID> is the ID of the
1271         target channel.  The client changing channel mode MUST be on
1272         the same channel and posses sufficient privileges to be able to
1273         change the mode.
1274
1275         When the mode is changed SILC_NOTIFY_TYPE_CMODE_CHANGE notify
1276         type MUST be distributed to the channel.
1277
1278         The following channel modes are defined:
1279
1280            0x00000000    SILC_CMODE_NONE
1281
1282               No specific mode on channel.  This is the default when
1283               channel is created.  This means that channel is just plain
1284               normal channel.
1285
1286
1287            0x00000001    SILC_CMODE_PRIVATE
1288
1289               Channel is private channel.  Private channels are shown
1290               in the channel list listed with SILC_COMMAND_LIST command
1291               with indication that the channel is private.  Also,
1292               client on private channel will no be detected to be on
1293               the channel as the channel is not shown in the client's
1294               currently joined channel list.  Channel founder and
1295               channel operator MAY set/unset this mode.
1296
1297
1298            0x00000002    SILC_CMODE_SECRET
1299
1300               Channel is secret channel.  Secret channels are not shown
1301               in the list listed with SILC_COMMAND_LIST command.  Secret
1302               channels can be considered to be invisible channels.
1303               Channel founder and channel operator MAY set/unset this
1304               mode.
1305
1306
1307            0x00000004    SILC_CMODE_PRIVKEY
1308
1309               Channel uses private channel key to protect the traffic
1310               on the channel.  When this mode is set the client will be
1311               responsible to set the key it wants to use to encrypt and
1312               decrypt the traffic on channel.  Server generated channel
1313               keys are not used at all.  This mode provides additional
1314               security as clients on channel may agree to use private
1315               channel key that even servers do not know.  Naturally,
1316               this requires that every client on the channel knows
1317               the key before hand (it is considered to be pre-shared-
1318               key).  The key material SHOULD be processed as stated
1319               in the [SILC3] in the section Processing the Key Material.
1320
1321               As it is local setting it is possible to have several
1322               private channel keys on one channel.  In this case several
1323               clients can talk on same channel but only those clients
1324               that share the key with the message sender will be able
1325               to hear the talking.  Client SHOULD NOT display those
1326               message for the end user that it is not able to decrypt
1327               when this mode is set.
1328
1329               Only channel founder MAY set/unset this mode.  If this
1330               mode is unset the server will distribute new channel
1331               key to all clients on the channel which will be used
1332               thereafter.
1333
1334
1335            0x00000008    SILC_CMODE_INVITE
1336
1337               Channel is invite only channel.  Client may join to this
1338               channel only if it is invited to the channel.  Channel
1339               founder and channel operator MAY set/unset this mode.
1340
1341
1342            0x00000010    SILC_CMODE_TOPIC
1343
1344               The topic of the channel may only be set by client that
1345               is channel founder or channel operator.  Normal clients
1346               on channel will not be able to set topic when this mode
1347               is set.  Channel founder and channel operator MAY set/
1348               unset this mode.
1349
1350
1351            0x00000020    SILC_CMODE_ULIMIT
1352
1353               User limit has been set to the channel.  New clients
1354               may not join to the channel when the limit set is
1355               reached.  Channel founder and channel operator MAY set/
1356               unset the limit.  The <user limit> argument is the
1357               number of limited users.
1358
1359
1360            0x00000040    SILC_CMODE_PASSPHRASE
1361
1362               Passphrase has been set to the channel.  Client may
1363               join to the channel only if it is able to provide the
1364               correct passphrase.  Setting passphrases to channel
1365               is entirely safe as all commands are protected in the
1366               SILC network.  Only channel founder MAY set/unset
1367               the passphrase.  The <passphrase> argument is the
1368               set passphrase.
1369
1370
1371            0x00000080    SILC_CMODE_CIPHER
1372
1373               Sets specific cipher to be used to protect channel
1374               traffic.  The <cipher> argument is the requested cipher.
1375               When set or unset the server must re-generate new
1376               channel key.  Only channel founder MAY set the cipher of
1377               the channel.  When unset the new key is generated using
1378               default cipher for the channel.
1379
1380
1381            0x00000100    SILC_CMODE_HMAC
1382
1383               Sets specific hmac to be used to compute the MACs of the
1384               channel message.  The <hmac> argument is the requested hmac.
1385               Only channel founder may set the hmac of the channel.
1386
1387
1388            0x00000200    SILC_CMODE_FOUNDER_AUTH
1389
1390               Channel founder may set this mode to be able to regain
1391               channel founder rights even if the client leaves the
1392               channel.  The <auth payload> is the Authentication Payload
1393               consisting of the public key authentication method and the
1394               digital signature for that method.  The passphrase or NONE
1395               authentication methods MUST NOT be accepted.
1396
1397               The server does not save <auth payload> but MUST verify it.
1398               The public key used to verify the payload is the <founder
1399               pubkey> if present, or the public key of the client sending
1400               this command.  If <founder pubkey> is present also that
1401               public key MUST be saved as founder's public key.  This
1402               mode may be set only if the <auth payload> was verified
1403               successfully.  The hash function used with the <auth
1404               payload> is selected by user or SHA1 otherwise.
1405
1406               The public key of the founder is sent in the
1407               SILC_NOTIFY_TYPE_CMODE_CHANGE notify type so that other
1408               routers and servers in the network may save the public key.
1409               This way the founder can reclaim the founder rights back
1410               to the channel from any server in the network.  The founder
1411               rights can be regained by the SILC_CUMODE_FOUNDER channel
1412               user mode, or during joining procedure with the command
1413               SILC_COMMAND_JOIN.
1414
1415               If this mode is already set but the <founder pubkey> is
1416               different the new key will replace the old founder key and
1417               the new key is distributed in the network with the
1418               SILC_NOTIFY_TYPE_CMODE_CHANGE notify.  Only the original
1419               founder may set this mode multiple times and the client
1420               MUST have SILC_CUMODE_FOUNDER mode on the channel.
1421
1422               When this channel mode is set the channel also becomes
1423               permanent.  If all clients leave the channel while this
1424               mode is set the channel MUST NOT be destroyed.  The founder
1425               can reclaim the founder mode back on these empty channels
1426               at any time.  Implementations MAY limit the number of how
1427               many channels a user can own and how long they remain
1428               persistent.
1429
1430
1431            0x00000400    SILC_CMODE_SILENCE_USERS
1432
1433               Channel founder may set this mode to silence normal users
1434               on the channel.  Users with operator privileges are not
1435               affected by this mode.  Messages sent by normal users
1436               are dropped by servers when this mode is set.  This mode
1437               can be used to moderate the channel.  Only channel founder
1438               may set/unset this mode.
1439
1440
1441            0x00000800    SILC_CMODE_SILENCE_OPERS
1442
1443               Channel founder may set this mode to silence operators
1444               on the channel.  When used with SILC_CMODE_SILENCE_USERS
1445               mode this can be used to set the channel in state where only
1446               the founder of the channel may send messages to the channel.
1447               Messages sent by operators are dropped by servers when this
1448               mode is set.  Only channel founder may set/unset this mode.
1449
1450
1451            0x00001000    SILC_CMODE_CHANNEL_AUTH
1452
1453               When this mode is set the channel has one or more public keys
1454               or certificates set, and ability to join the channel requires
1455               a client to provide digital signature that can be successfully
1456               verified with one of the channel public keys.  This mode is
1457               equivalent to the SILC_MODE_PASSPHRASE except that digital
1458               signatures are used to gain access to the channel.  Both
1459               modes MAY be set at the same time.  Channel founder may set
1460               and unset this mode.
1461
1462               The <channel pubkey> argument is an Argument List Payload
1463               where each argument is Public Key Payload including public
1464               key to be added or removed from the channel public key list.
1465               To add a public key to channel this mode is set and the
1466               argument type is 0x00, and the argument is the public key.
1467               To remove a public key from channel public key list the
1468               argument type is 0x01, and the argument is the public key
1469               to be removed from the list.  To remove all public keys at
1470               once this mode is unset.  An implementation MAY limit the
1471               number of public keys that can be set for the channel.
1472               This mode MUST NOT be set if <channel pubkey> is not present
1473               when the mode is set for the first time.  Implementation MAY
1474               add and remove multiple public keys at the same time by
1475               including multiple arguments to the <channel pubkey>
1476               Argument List Payload.
1477
1478
1479         To make the mode system work, client MUST keep the channel mode
1480         mask locally so that the mode setting and unsetting would work
1481         without problems.  The client receives the initial channel mode
1482         mask when it joins to the channel.  When the mode changes on
1483         channel the server MUST distribute the changed channel mode mask
1484         to all clients on the channel by sending the notify type
1485         SILC_NOTIFY_TYPE_CMODE_CHANGE.  The notify type MUST also be sent
1486         to the server's primary router.  If the <channel mode mask> was
1487         not provided this command returns the mode mask, founder key,
1488         channel public key list and the current user limit to the client.
1489
1490         Reply messages to the command:
1491
1492         Max Arguments:  6
1493             Arguments:  (1) <Status Payload>    (2) <Channel ID>
1494                         (3) <channel mode mask> (4) [<founder pubkey>]
1495                         (5) [<channel pubkeys>] (6) [<user limit>]
1496
1497         This command replies with the changed channel mode mask that
1498         client MUST keep locally.  It may also return the channel
1499         founder's public key if it is set.  It may also return list of
1500         channel public keys when the list was altered.  The <channel
1501         pubkeys> is Argument List Payload and each argument includes
1502         one public key.  The <user limit> is the current user limit
1503         on the channel, if one is set.
1504
1505         Status messages:
1506
1507             SILC_STATUS_OK
1508             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1509             SILC_STATUS_ERR_TOO_MANY_PARAMS
1510             SILC_STATUS_ERR_NOT_REGISTERED
1511             SILC_STATUS_ERR_NOT_ON_CHANNEL
1512             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
1513             SILC_STATUS_ERR_BAD_CHANNEL_ID
1514             SILC_STATUS_ERR_NO_CHANNEL_ID
1515             SILC_STATUS_ERR_NO_CHANNEL_PRIV
1516             SILC_STATUS_ERR_NO_CHANNEL_FOPRIV
1517             SILC_STATUS_ERR_UNKNOWN_MODE
1518             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
1519             SILC_STATUS_ERR_AUTH_FAILED
1520
1521
1522    18   SILC_COMMAND_CUMODE
1523
1524         Max Arguments:  4
1525             Arguments:  (1) <Channel ID>    (2) <mode mask>
1526                         (3) <Client ID>     (4) [<auth payload>]
1527
1528         This command is used by client to change channel user modes on
1529         channel.  Users on channel may have some special modes and this
1530         command is used by channel operators to set or change these modes.
1531         The <Channel ID> is the ID of the target channel.  The <mode mask>
1532         is OR'ed mask of modes.  The <Client ID> is the target client.
1533         The client changing channel user modes MUST be on the same channel
1534         as the target client and posses sufficient privileges to be able to
1535         change the mode.
1536
1537         When the mode is changed SILC_NOTIFY_TYPE_CUMODE_CHANGE notify
1538         type is distributed to the channel.
1539
1540         The following channel modes are defined:
1541
1542            0x00000000    SILC_CUMODE_NONE
1543
1544               No specific mode.  This is the normal situation for client.
1545               Also, this is the mode set when removing all modes from
1546               the target client.
1547
1548
1549            0x00000001    SILC_CUMODE_FOUNDER
1550
1551               The client is channel founder of the channel.  Usually this
1552               mode is set only by the server when the channel was created.
1553               However, if the SILC_CMODE_FOUNDER_AUTH channel mode has
1554               been set, the client can claim channel founder privileges
1555               by providing the <auth payload> that the server will use
1556               to authenticate the client.  The public key that server will
1557               use to verify the <auth payload> MUST be the same public key
1558               that was saved when the SILC_CMODE_FOUNDER_AUTH channel
1559               mode was set.  The client MAY remove this mode at any time.
1560
1561
1562            0x00000002    SILC_CUMODE_OPERATOR
1563
1564               Sets channel operator privileges on the channel for a
1565               client on the channel.  Channel founder and channel operator
1566               MAY set/unset this mode.  The client MAY remove this mode
1567               at any time.
1568
1569
1570            0x00000004    SILC_CUMODE_BLOCK_MESSAGES
1571
1572               Marks that the client wishes not to receive any channel
1573               messages sent for the channel.  Client MAY set and unset
1574               this mode to itself.  Client MUST NOT set it to anyone else.
1575               When this mode is set server MUST NOT deliver channel
1576               messages to this client.  Other packets such as channel
1577               key packets are still sent to the client.
1578
1579               A separate service could provide additional filtering
1580               features for accepting channel messages from certain
1581               sender.  However, this document does not specify such
1582               service.
1583
1584
1585            0x00000008    SILC_CUMODE_BLOCK_MESSAGES_USERS
1586
1587               Marks that the client wishes not to receive any channel
1588               messages sent from normal users.  Only messages sent by
1589               channel founder or channel operator is accepted.  Client
1590               MAY set and unset this mode to itself.  Client MUST NOT
1591               set it to anyone else.  When this mode is set server MUST
1592               NOT deliver channel messages that are sent by normal users
1593               to this client.
1594
1595               A separate service could provide additional filtering
1596               features for accepting channel messages from certain
1597               sender.  However, this document does not specify such
1598               service.
1599
1600
1601            0x00000010    SILC_CUMODE_BLOCK_MESSAGES_ROBOTS
1602
1603               Marks that the client wishes not to receive any channel
1604               messages sent from robots.  Messages sent by users with
1605               the SILC_UMODE_ROBOT user mode set are not delivered.
1606               Client MAY set and unset this mode to itself.  Client MUST
1607               NOT set it to anyone else.  When this mode is set server
1608               MUST NOT deliver channel messages that are sent by robots
1609               to this client.
1610
1611
1612            0x00000020    SILC_CUMODE_QUIET
1613
1614               Marks that the client cannot talk on the channel.  This
1615               mode can be set by channel operator or channel founder to
1616               some other user that is not operator or founder.  The
1617               target client MUST NOT unset this mode.  When this mode
1618               is set the server MUST drop messages sent by this client
1619               to the channel.
1620
1621
1622         Reply messages to the command:
1623
1624         Max Arguments:  4
1625             Arguments:  (1) <Status Payload>  (2) <channel user mode mask>
1626                         (3) <Channel ID>      (4) <Client ID>
1627
1628         This command replies with the changed channel user mode mask that
1629         client MUST keep locally. The <Channel ID> is the specified
1630         channel.  The <Client ID> is the target client.
1631
1632         Status messages:
1633
1634             SILC_STATUS_OK
1635             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1636             SILC_STATUS_ERR_TOO_MANY_PARAMS
1637             SILC_STATUS_ERR_NOT_REGISTERED
1638             SILC_STATUS_ERR_NOT_ON_CHANNEL
1639             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
1640             SILC_STATUS_ERR_BAD_CHANNEL_ID
1641             SILC_STATUS_ERR_NO_CHANNEL_ID
1642             SILC_STATUS_ERR_NO_CHANNEL_PRIV
1643             SILC_STATUS_ERR_NO_CHANNEL_FOPRIV
1644             SILC_STATUS_ERR_UNKNOWN_MODE
1645             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
1646             SILC_STATUS_ERR_AUTH_FAILED
1647
1648
1649    19   SILC_COMMAND_KICK
1650
1651         Max Arguments:  3
1652             Arguments:  (1) <Channel ID>      (2) <Client ID>
1653                         (3) [<comment>]
1654
1655         This command is used by channel operators to remove a client from
1656         channel.  The <channel> argument is the channel the client to be
1657         removed is on currently.  Note that the "kicker" must be on the same
1658         channel.  If <comment> is provided it will be sent to the removed
1659         client.
1660
1661         After kicking the client the server MUST send the notify type
1662         SILC_NOTIFY_TYPE_KICKED to the channel and to its primary router.
1663         The client is removed from the channel after sending this notify.
1664         The kicked client MUST be removed from the invite list of the
1665         channel if it is explicitly added in the list.  The channel key
1666         MUST also be re-generated after kicking, unless the
1667         SILC_CMODE_PRIVKEY mode is set.
1668
1669         Reply messages to the command:
1670
1671         Max Arguments:  3
1672             Arguments:  (1) <Status Payload>  (2) <Channel ID>
1673                         (3) <Client ID>
1674
1675         This command returns the Channel ID and Client ID that was kicked
1676         from the channel.
1677
1678         Status messages:
1679
1680             SILC_STATUS_OK
1681             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1682             SILC_STATUS_ERR_TOO_MANY_PARAMS
1683             SILC_STATUS_ERR_NOT_REGISTERED
1684             SILC_STATUS_ERR_NO_SUCH_CHANNEL
1685             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
1686             SILC_STATUS_ERR_NO_CHANNEL_PRIV
1687             SILC_STATUS_ERR_NO_CLIENT_ID
1688
1689
1690
1691    20   SILC_COMMAND_BAN
1692
1693         Max Arguments:  3
1694             Arguments:  (1) <Channel ID>         (2) [<add | del>]
1695                         (3) [<ban list>]
1696
1697         This command is used to manage the ban list of the channel
1698         indicated by the <Channel ID>.  A client that is banned from
1699         channel is no longer able to join the channel.  The client which
1700         is executing this command MUST have at least channel operator
1701         privileges on the channel.
1702
1703         The <add | del> is an argument of size of 1 byte where 0x00 means
1704         adding a client to ban list, and 0x01 means deleting a client
1705         from ban list.  The <ban list>, if present, indicates the
1706         information to be added to or removed from the ban list.  It
1707         may include a string for matching clients, public key of a
1708         client (Public Key Payload) or Client ID of a client.  The
1709         <ban list> is an Argument List Payload.
1710
1711         The following Argument Types has been defined for ban list
1712         Argument Payloads:
1713
1714           0x01 - Argument is an ban string of following format:
1715
1716             [<nickname>[@<server>]!][<username>]@[<hostname or IP/MASK>]
1717
1718             The <hostname> may also be in format of IP/MASK to indicate
1719             a network.
1720
1721           0x02 - Argument is the public key of a client
1722           0x03 - Argument is the Client ID of a client
1723
1724         If unknown type value is received or there is invalid amount of
1725         Argument Payloads present in the list, the command MUST be
1726         discarded.  When argument that is to be deleted from the ban
1727         list does not exist in the list the argument is ignored.
1728
1729         The server MUST send the notify type SILC_NOTIFY_TYPE_BAN to its
1730         primary router after adding to or removing from the ban list.
1731         The wildcards MAY be used with this command.  If this command
1732         is executed without the ban arguments the command merely replies
1733         with the current ban list.
1734
1735         Reply messages to the command:
1736
1737         Max Arguments:  3
1738             Arguments:  (1) <Status Payload>  (2) <Channel ID>
1739                         (3) [<ban list>]
1740
1741         This command replies with the <Channel ID> of the channel and
1742         the current <ban list> of the channel if it exists.
1743
1744         Status messages:
1745
1746             SILC_STATUS_OK
1747             SILC_STATUS_ERR_NOT_REGISTERED
1748             SILC_STATUS_ERR_TOO_MANY_PARAMS
1749             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
1750             SILC_STATUS_ERR_NO_CHANNEL_ID
1751             SILC_STATUS_ERR_NOT_ON_CHANNEL
1752             SILC_STATUS_ERR_NO_CHANNEL_PRIV
1753             SILC_STATUS_ERR_RESOURCE_LIMIT
1754
1755
1756
1757
1758    21   SILC_COMMAND_DETACH
1759
1760         Max Arguments:  0
1761             Arguments:
1762
1763         This command is used to detach from the network.  Client can
1764         send this command to its server to indicate that it will be
1765         detached.  By detaching the client remains in the network but
1766         the actual network connection to the server is closed.  The
1767         client may then later resume the old session back.
1768
1769         When this command is received the server MUST check that the
1770         client is locally connected client, and set the user mode
1771         SILC_UMODE_DETACHED flag.  The SILC_NOTIFY_TYPE_UMODE_CHANGE
1772         MUST be also sent to routers.  The server then sends command
1773         reply to this command and closes the network connection.
1774         The server MUST NOT remove the client from its lists, or send
1775         any signoff notifications for this client.  See the [SILC1]
1776         for detailed information about detaching.
1777
1778         Reply messages to the command:
1779
1780         Max Arguments:  1
1781             Arguments:  (1) <Status Payload>
1782
1783         This command replies only with the status indication.
1784
1785         Status messages:
1786
1787             SILC_STATUS_OK
1788             SILC_STATUS_ERR_NOT_REGISTERED
1789
1790
1791
1792    22   SILC_COMMAND_WATCH
1793
1794         Max Arguments:  4
1795             Arguments:  (1) <Client ID>       (2) [<add nickname>]
1796                         (3) [<del nickname>]  (4) [<public key>]
1797
1798         This command is used to set up a watch for <add nickname>
1799         nickname.  When a user in the network appears with the
1800         nickname, or signoffs the network or user's mode is changed
1801         the client which set up the watch will be notified about
1802         this change.  This can be used to watch for certain nicknames
1803         in the network and receive notifications when for example a
1804         friend appears in the network or leaves the network.
1805
1806         The <del nickname> is a nickname that has been previously
1807         added to watch list and is now removed from it.  Notifications
1808         for that nickname will not be delivered anymore.  The nickname
1809         set to watch MUST NOT include any wildcards.  Note also that a
1810         nickname may match several users since nicknames are not unique.
1811         Implementations MAY set limits for how many nicknames client
1812         can watch.
1813
1814         OPTIONALLY this command may also be set to watch clients' actions
1815         in the network using their public key or certificate.  The
1816         <public key> MAY be present, and it is an Argument List Payload
1817         where each argument is a Public Key Payload including public key
1818         to be added or removed from the watch list.  To To add a public
1819         key to watch list the argument type is 0x00, and the argument is
1820         the public key.  To remove a public key from watch list list the
1821         argument type is 0x01, and the argument is the public key to be
1822         removed from the list.  An implementation MAY limit the number of
1823         public keys that can be set on the watch list.  Implementation MAY
1824         add and remove multiple public keys at the same time by including
1825         multiple arguments to the <public key> Argument List Payload.
1826
1827         The <Client ID> is the Client ID of the sender of this command.
1828
1829         When normal server receives this command from client it
1830         MUST send it to its router.  Router will process the command
1831         and actually keeps the watch list.
1832
1833         Reply messages to the command:
1834
1835         Max Arguments:  1
1836             Arguments:  (1) <Status Payload>
1837
1838         This command replies only with the status indication.
1839
1840         Status messages:
1841
1842             SILC_STATUS_OK
1843             SILC_STATUS_ERR_NOT_REGISTERED
1844             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1845             SILC_STATUS_ERR_TOO_MANY_PARAMS
1846             SILC_STATUS_ERR_BAD_NICKNAME
1847             SILC_STATUS_ERR_WILDCARDS
1848             SILC_STATUS_ERR_RESOURCE_LIMIT
1849             SILC_STATUS_ERR_NO_SUCH_NICK
1850             SILC_STATUS_ERR_NICKNAME_IN_USE
1851
1852
1853    23   SILC_COMMAND_SILCOPER
1854
1855         Max Arguments:  2
1856             Arguments:  (1) <username>  (2) <authentication payload>
1857
1858         This command is used by normal client to obtain router operator
1859         privileges (also known as SILC operator) on the router.  Note
1860         that router operator has privileges that supersedes the server
1861         operator privileges.
1862
1863         The <username> is the username set in the server configurations
1864         as operator.  The <authentication payload> is the data that the
1865         client is authenticated against.  It may be passphrase prompted
1866         for user on client's screen or it may be public key or certificate
1867         authentication data (data signed with private key).  The public
1868         key that router will use to verify the signature found in the
1869         payload should be verified.  It is recommended that the public
1870         key is saved locally in the router and router would not use
1871         any public keys received during the SKE.
1872
1873         Difference between router operator and server operator is that
1874         router operator is able to handle cell level properties while
1875         server operator (even on router server) is able to handle only
1876         local properties, such as, local connections and normal server
1877         administration.  The router operator is also able to use the
1878         SILC_COMMAND_KILL command.
1879
1880         After changing the mode server MUST send the notify type
1881         SILC_NOTIFY_TYPE_UMODE_CHANGE to its primary router.
1882
1883         Reply messages to the command:
1884
1885         Max Arguments:  1
1886             Arguments:  (1) <Status Payload>
1887
1888         This command replies only with Status Payload.
1889
1890         Status messages:
1891
1892             SILC_STATUS_OK
1893             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1894             SILC_STATUS_ERR_TOO_MANY_PARAMS
1895             SILC_STATUS_ERR_NOT_REGISTERED
1896             SILC_STATUS_ERR_AUTH_FAILED
1897
1898
1899
1900
1901    24   SILC_COMMAND_LEAVE
1902
1903         Max Arguments:  1
1904             Arguments:  (1) <Channel ID>
1905
1906         This command is used by client to leave a channel the client is
1907         joined to.
1908
1909         When leaving channel the server MUST send the notify type
1910         SILC_NOTIFY_TYPE_LEAVE to its primary router and to the channel.
1911         The channel key MUST also be re-generated when leaving the channel
1912         and distribute it to all clients still currently on the channel.
1913         The key MUST NOT be re-generated if the SILC_CMODE_PRIVKEY mode
1914         is set.
1915
1916         Reply messages to the command:
1917
1918         Max Arguments:  2
1919             Arguments:  (1) <Status Payload>  (2) <Channel ID>
1920
1921         The <Channel ID> is the ID of left channel.
1922
1923         Status messages:
1924
1925             SILC_STATUS_OK
1926             SILC_STATUS_ERR_NOT_REGISTERED
1927             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1928             SILC_STATUS_ERR_TOO_MANY_PARAMS
1929             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
1930             SILC_STATUS_ERR_BAD_CHANNEL_ID
1931             SILC_STATUS_ERR_NO_CHANNEL_ID
1932
1933
1934    25   SILC_COMMAND_USERS
1935
1936         Max Arguments:  2
1937             Arguments:  (1) [<Channel ID>]  (2) [<channel name>]
1938
1939         This command is used to list user names currently on the requested
1940         channel; either the argument <Channel ID> or the <channel name>.
1941         One of these arguments must be present.  The server MUST resolve
1942         the joined clients and reply with a lists of users on the channel
1943         and with list of user modes on the channel.
1944
1945         If the requested channel is a private or secret channel, this
1946         command MUST NOT send the list of users, except if the sender is
1947         on the channel, or the sender is a server.  Otherwise, error is
1948         returned to the sender.
1949
1950         Reply messages to the command:
1951
1952         Max Arguments:  5
1953             Arguments:  (1) <Status Payload>  (2) <Channel ID>
1954                         (3) <list count>      (4) <Client ID list>
1955                         (5) <client mode list>
1956
1957         This command replies with the Channel ID of the requested channel
1958         Client ID list of the users on the channel and list of their modes.
1959         The Client ID list has Client ID's of all users in the list.  The
1960         <Client ID list> is formed by adding Client ID's one after another.
1961         The <client mode list> is formed by adding client's user modes on
1962         the channel one after another (4 bytes (32 bits) each).  The <list
1963         count> of length of 4 bytes (32 bits), tells the number of entries
1964         in the lists.  Both lists MUST have equal number of entries.
1965
1966         Status messages:
1967
1968             SILC_STATUS_OK
1969             SILC_STATUS_ERR_NOT_REGISTERED
1970             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
1971             SILC_STATUS_ERR_TOO_MANY_PARAMS
1972             SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
1973             SILC_STATUS_ERR_BAD_CHANNEL_ID
1974             SILC_STATUS_ERR_NO_CHANNEL_ID
1975             SILC_STATUS_ERR_NOT_ON_CHANNEL
1976
1977
1978    26   SILC_COMMAND_GETKEY
1979
1980         Max Arguments:  1
1981             Arguments:  (1) <ID Payload>
1982
1983         This command is used to fetch the public key of the client or
1984         server indicated by the <ID Payload>.  The public key is fetched
1985         from the server where to the client is connected.
1986
1987         Reply messages to the command:
1988
1989         Max Arguments:  3
1990             Arguments:  (1) <Status Payload>      (2) <ID Payload>
1991                         (3) [<Public Key Payload>]
1992
1993         This command replies with the client's or server's ID and with
1994         the <Public Key Payload>.
1995
1996         Status messages:
1997
1998             SILC_STATUS_OK
1999             SILC_STATUS_ERR_NOT_REGISTERED
2000             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
2001             SILC_STATUS_ERR_TOO_MANY_PARAMS
2002             SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
2003             SILC_STATUS_ERR_NO_SUCH_SERVER_ID
2004
2005
2006    27   SILC_COMMAND_SERVICE
2007
2008         Max Arguments:  256
2009             Arguments:  (1) [<service name>]    (2) [<auth payload>]
2010                         (n) [...]
2011
2012         This command is used to negotiate a service agreement with a
2013         remote server.  If this command is given without arguments it
2014         MAY return the service list, if it is publicly available.  The
2015         <service name> is a service specific identifier, and the
2016         <auth payload> MAY be used to authenticate the requester to the
2017         remote service.  The authentication to a service may be based
2018         on previous agreement with the requester and the service
2019         provider.  The command MAY also take additional service
2020         specific arguments.
2021
2022         This document does not specify any services.  How the services
2023         are configured and put available in a server is also out of
2024         scope of this document.
2025
2026         This command MAY be used by client to start using some service
2027         in a server, but it also MAY be used by server to negotiate
2028         to start using a service in some other server or router.
2029
2030         After the negotiation is done both of the parties need to know
2031         from the service identifier how the service can be used.  The
2032         service can be considered to be a protocol which both of the
2033         parties need to support.
2034
2035         Reply messages to the command:
2036
2037         Max Arguments:  256
2038             Arguments:  (1) <Status Payload>      (2) [<service list>]
2039                         (3) [<service name>]      (n) [...]
2040
2041
2042         This command MAY reply with the <service list> when command is
2043         given without arguments, and the list is a comma separated list
2044         of service identifiers.  The <service name> is the service that
2045         the sender requested and this is provided when the server has
2046         accepted the sender to use the <service name>.  The command
2047         reply MAY also have additional service specific arguments.
2048
2049         Status messages:
2050
2051             SILC_STATUS_OK
2052             SILC_STATUS_ERR_NOT_REGISTERED
2053             SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
2054             SILC_STATUS_ERR_TOO_MANY_PARAMS
2055             SILC_STATUS_ERR_NO_SUCH_SERVICE
2056             SILC_STATUS_ERR_AUTH_FAILED
2057             SILC_STATUS_ERR_PERM_DENIED
2058
2059
2060
2061    28 - 199
2062
2063         Currently undefined commands.
2064
2065
2066    200 - 254
2067
2068         These commands are reserved for private use and will not be defined
2069         in this document.
2070
2071
2072    255  SILC_COMMAND_MAX
2073
2074         Reserved command.  This must not be sent.
2075 .in 3
2076
2077
2078 .ti 0
2079 2.4 SILC Command Status Payload
2080
2081 Command Status Payload is sent in command reply messages to indicate
2082 the status of the command.  The payload is one of argument in the
2083 command thus this is the data area in Command Argument Payload described
2084 in [SILC2].  The payload is only 2 bytes in length.  The following
2085 diagram represents the Command Status Payload (fields are always in
2086 MSB first order).
2087
2088
2089 .in 21
2090 .nf
2091                      1
2092  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
2093 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2094 |     Status    |     Error     |
2095 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2096 .in 3
2097
2098 .ce
2099 Figure 6:  SILC Command Status Payload
2100
2101
2102 .in 6
2103 o Status (1 byte) - Indicates the status message type,
2104   error, start of list, entry of list or end of list.
2105
2106 o Error (1 byte) - Indicates the error if the Status
2107   field is some list status, which means there are list
2108   of errors.
2109 .in 3
2110
2111 The values in Status and Error fields are set according
2112 the following rules:
2113
2114 .in 6
2115 o If there is single reply and error has not occurred
2116   then Status field includes value SILC_STATUS_OK, and
2117   the Error field MUST be ignored (and set to zero
2118   value).
2119
2120 o If there is single error, then Status field includes
2121   one of the error values, and the Error field MUST be
2122   ignored (and set to zero value).
2123
2124 o If there will be multiple successful command replies
2125   then Status field includes SILC_STATUS_LIST_START,
2126   SILC_STATUS_LIST_ITEM or SILC_STATUS_LIST_END value,
2127   and Error field is set to SILC_STATUS_OK.
2128
2129 o If there are multiple error replies then Status field
2130   includes SILC_STATUS_LIST_START, SILC_STATUS_LIST_ITEM
2131   or SILC_STATUS_LIST_END value, and the Error field
2132   includes the error value.
2133 .in 3
2134
2135 This way it is possible to send single successful or
2136 single error reply, but also multiple successful and
2137 multiple error replies.  Note that it is possible to
2138 send both list of successful replies and list of error
2139 replies at the same time, however in this case the
2140 list of error replies MUST be sent after the successful
2141 replies.  This way the recipient may ignore the multiple
2142 errors if it wishes to do so.  Also note that in this
2143 case the successful and error replies belong to the
2144 same list.
2145
2146 All Status messages are described in the next section.
2147
2148
2149 .ti 0
2150 3 SILC Status Types
2151
2152 Status messages are returned in SILC protocol in command reply
2153 packet and in notify packet.  The SILC_PACKET_COMMAND_REPLY is
2154 the command reply packet and status types are sent inside the
2155 Status Payload as one of command reply argument, as defined in
2156 previous sections.  For SILC_PACKET_NOTIFY packet they can be sent
2157 as defined in [SILC2] for SILC_NOTIFY_TYPE_ERROR type.  The same
2158 types defined in this section are used in both cases.
2159
2160 When returning status messages in the command reply message they
2161 indicate whether the command was executed without errors.  If error
2162 occurred the status indicates which error occurred.  If error
2163 occurred the arguments to the command replies are dictated by the
2164 error type.  If arguments are to be sent, they are defined below
2165 with the error status types.
2166
2167 When sending status messages in SILC_NOTIFY_TYPE_ERROR notify type
2168 they always send some error status.  Usually they are sent to
2169 indicate that error occurred while processing some SILC packet.
2170 Please see the [SILC1] and [SILC2] for more information sending
2171 status types in SILC_NOTIFY_TYPE_ERROR notify.
2172
2173 The Status Types are only numeric values and the receiver must
2174 convert the numeric values into human readable messages if this
2175 is desired in the application.
2176
2177 List of all defined status types:
2178
2179 .in 0
2180    Generic status messages:
2181
2182    0    SILC_STATUS_OK
2183
2184         Ok status.  Everything went Ok.  The status payload maybe
2185         safely ignored in this case.
2186
2187    1    SILC_STATUS_LIST_START
2188
2189         Start of the list.  There will be several command replies and
2190         this reply is the start of the list.
2191
2192    2    SILC_STATUS_LIST_ITEM
2193
2194         Item in the list.  This is one of the item in the list but not the
2195         first or last one.
2196
2197    3    SILC_STATUS_LIST_END
2198
2199         End of the list.  There were several command replies and this
2200         reply is the last of the list.  There won't be other replies
2201         belonging to this list after this one.
2202
2203    4 - 9
2204
2205         Currently undefined and has been reserved for the future.
2206
2207
2208    Error status message:
2209
2210
2211
2212    10   SILC_STATUS_ERR_NO_SUCH_NICK
2213
2214         "No such nickname".  Requested nickname does not exist.
2215          The next argument MUST be the requested nickname.
2216
2217    11   SILC_STATUS_ERR_NO_SUCH_CHANNEL
2218
2219         "No such channel".  Requested channel name does not exist.
2220          The next argument MUST be the requested channel name.
2221
2222    12   SILC_STATUS_ERR_NO_SUCH_SERVER
2223
2224         "No such server".  Requested server name does not exist.
2225          The next argument MUST be the requested server name.
2226
2227    13   SILC_STATUS_ERR_INCOMPLETE_INFORMATION
2228
2229         "Incomplete registration information".  Information remote
2230         sent was incomplete.
2231
2232    14   SILC_STATUS_ERR_NO_RECIPIENT
2233
2234         "No recipient given".  Command required recipient which was
2235         not provided.
2236
2237    15   SILC_STATUS_ERR_UNKNOWN_COMMAND
2238
2239         "Unknown command".  Command sent to server is unknown by the
2240         server.
2241
2242    16   SILC_STATUS_ERR_WILDCARDS
2243
2244         "Wildcards cannot be used".  Wildcards were provided but they
2245         weren't permitted.
2246
2247    17   SILC_STATUS_ERR_NO_CLIENT_ID
2248
2249         "No Client ID given".  Client ID were expected as command
2250         parameter but were not found.
2251
2252    18   SILC_STATUS_ERR_NO_CHANNEL_ID
2253
2254         "No Channel ID given".  Channel ID were expected as command
2255         parameter but were not found.
2256
2257    19   SILC_STATUS_ERR_NO_SERVER_ID
2258
2259         "No Serve ID given".  Server ID were expected as command
2260         parameter but were not found.
2261
2262    20   SILC_STATUS_ERR_BAD_CLIENT_ID
2263
2264         "Bad Client ID".  Client ID provided were erroneous.
2265          The next argument MUST be the provided ID.
2266
2267    21   SILC_STATUS_ERR_BAD_CHANNEL_ID
2268
2269         "Bad Channel ID".  Channel ID provided were erroneous.
2270          The next argument MUST be the provided ID.
2271
2272    22   SILC_STATUS_ERR_NO_SUCH_CLIENT_ID
2273
2274         "No such Client ID".  Client ID provided does not exist.
2275         The unknown Client ID MUST be provided as next argument
2276         in the reply.
2277
2278    23   SILC_STATUS_ERR_NO_SUCH_CHANNEL_ID
2279
2280         "No such Channel ID".  Channel ID provided does not exist.
2281         The unknown Channel ID MUST be provided as next argument
2282         in the reply.
2283
2284    24   SILC_STATUS_ERR_NICKNAME_IN_USE
2285
2286         "Nickname already exists".  Nickname created could not be
2287         registered because number of same nicknames were already set to
2288         maximum.  This is not expected to happen in real life but is
2289         possible to occur.
2290
2291    25   SILC_STATUS_ERR_NOT_ON_CHANNEL
2292
2293         "You are not on that channel".  The command were specified for
2294         channel user is not currently on.  The next argument MUST be the
2295         Channel ID.
2296
2297    26   SILC_STATUS_ERR_USER_NOT_ON_CHANNEL
2298
2299         "They are not on channel".  The requested target client is not
2300         on requested channel.  The next two arguments, in this order,
2301         MUST be the requested Client ID and Channel ID.
2302
2303    27   SILC_STATUS_ERR_USER_ON_CHANNEL
2304
2305         "User already on channel".  User were invited on channel they
2306         already are on.  The next two arguments, in this order, MUST be
2307         the  requested Client ID and Channel ID.
2308
2309    28   SILC_STATUS_ERR_NOT_REGISTERED
2310
2311         "You have not registered".  User executed command that requires
2312         the client to be registered on the server before it may be
2313         executed.
2314
2315    29   SILC_STATUS_ERR_NOT_ENOUGH_PARAMS
2316
2317         "Not enough parameters".  Command requires more parameters
2318         than provided.
2319
2320    30   SILC_STATUS_ERR_TOO_MANY_PARAMS
2321
2322         "Too many parameters".  Too many parameters were provided
2323         for the command.
2324
2325    31   SILC_STATUS_ERR_PERM_DENIED
2326
2327         "Permission denied".  Generic permission denied error status
2328         to indicate disallowed access.
2329
2330    32   SILC_STATUS_ERR_BANNED_FROM_SERVER
2331
2332         "You are banned from this server".  The client tried to register
2333         on server that has explicitly denied this host to connect.
2334
2335    33   SILC_STATUS_ERR_BAD_PASSWORD
2336
2337         "Cannot join channel. Incorrect password".  Password provided for
2338         channel were not accepted.  The next argument MUST be the
2339         Channel ID.
2340
2341    34   SILC_STATUS_ERR_CHANNEL_IS_FULL
2342
2343         "Cannot join channel. Channel is full".  The channel is full
2344         and client cannot be joined to it.  The next argument MUST be
2345         the Channel ID.
2346
2347    35   SILC_STATUS_ERR_NOT_INVITED
2348
2349         "Cannot join channel. You have not been invited".  The channel
2350         is invite only channel and client has not been invited.  The next
2351         argument MUST be the Channel ID.
2352
2353    36   SILC_STATUS_ERR_BANNED_FROM_CHANNEL
2354
2355         "Cannot join channel. You have been banned".  The client has
2356         been banned from the channel.  The next argument MUST be the
2357         Channel ID.
2358
2359    37   SILC_STATUS_ERR_UNKNOWN_MODE
2360
2361         "Unknown mode".  Mode provided by the client were unknown to
2362         the server.
2363
2364    38   SILC_STATUS_ERR_NOT_YOU
2365
2366         "Cannot change mode for other users".  User tried to change
2367         someone else's mode.
2368
2369    39   SILC_STATUS_ERR_NO_CHANNEL_PRIV
2370
2371         "Permission denied. You are not channel operator".  Command may
2372         be executed only by channel operator.  The next argument MUST be
2373         the Channel ID.
2374
2375    40   SILC_STATUS_ERR_NO_CHANNEL_FOPRIV
2376
2377         "Permission denied. You are not channel founder".  Command may
2378         be executed only by channel operator.  The next argument MUST be
2379         the Channel ID.
2380
2381    41   SILC_STATUS_ERR_NO_SERVER_PRIV
2382
2383         "Permission denied. You are not server operator".  Command may
2384         be executed only by server operator.
2385
2386    42   SILC_STATUS_ERR_NO_ROUTER_PRIV
2387
2388         "Permission denied. You are not SILC operator".  Command may be
2389         executed only by router (SILC) operator.
2390
2391    43   SILC_STATUS_ERR_BAD_NICKNAME
2392
2393         "Bad nickname".  Nickname requested contained illegal characters
2394         or were malformed.
2395
2396    44   SILC_STATUS_ERR_BAD_CHANNEL
2397
2398         "Bad channel name".  Channel requested contained illegal characters
2399         or were malformed.
2400
2401    45   SILC_STATUS_ERR_AUTH_FAILED
2402
2403         "Authentication failed".  The authentication data sent as
2404         argument were wrong and thus authentication failed.
2405
2406    46   SILC_STATUS_ERR_UNKOWN_ALGORITHM
2407
2408         "The algorithm was not supported."  The server does not support the
2409         requested algorithm.  The next argument MUST be the algorithm name
2410         string.
2411
2412    47   SILC_STATUS_ERR_NO_SUCH_SERVER_ID
2413
2414         "No such Server ID".  Server ID provided does not exist.
2415         The unknown Server ID MUST be provided as next argument
2416         in the reply.
2417
2418    48   SILC_STATUS_ERR_RESOURCE_LIMIT
2419
2420         "No more resources available".  This can mean that server cannot
2421         or will not accept something due to resource limitations.
2422
2423    49   SILC_STATUS_ERR_NO_SUCH_SERVICE
2424
2425         "Service does not exist".  Requested service identifier is
2426         unknown.  The next argument MUST be the service identifier.
2427
2428    50   SILC_STATUS_ERR_NOT_AUTHENTICATED
2429
2430         "You have not been authenticated".  Remote connection is not
2431         authenticated even though it is supposed to be.
2432
2433    51   SILC_STATUS_ERR_BAD_SERVER_ID
2434
2435         "Server ID is not valid".  Provided server ID is not valid.
2436         The next argument MUST be the provided ID.
2437
2438    52   SILC_STATUS_ERR_KEY_EXCHANGE_FAILED
2439
2440         "Key exchange failed".  Key Exchange protocol failed.
2441
2442    53   SILC_STATUS_ERR_BAD_VERSION
2443
2444         "Bad version".  Protocol or software version mismatch.
2445
2446    54   SILC_STATUS_ERR_TIMEDOUT
2447
2448         "Operation timed out".  Operation or service request timed
2449         out, and thus was not processed.
2450
2451    55   SILC_STATUS_ERR_UNSUPPORTED_PUBLIC_KEY
2452
2453         "Unsupported public key type".  The public key or certificate
2454         type is not supported in this implementation.
2455
2456    56   SILC_STATUS_ERR_OPERATION_ALLOWED
2457
2458         "Operation is not allowed".  A operation, for example a command,
2459         is not allowed or it's execution is not allowed.
2460
2461 .in 3
2462
2463
2464
2465 .ti 0
2466 4 Security Considerations
2467
2468 Security is central to the design of this protocol, and these security
2469 considerations permeate the specification.  Common security considerations
2470 such as keeping private keys truly private and using adequate lengths for
2471 symmetric and asymmetric keys must be followed in order to maintain the
2472 security of this protocol.
2473
2474
2475 .ti 0
2476 5 References
2477
2478 [SILC1]      Riikonen, P., "Secure Internet Live Conferencing (SILC),
2479              Protocol Specification", Internet Draft, January 2007.
2480
2481 [SILC2]      Riikonen, P., "SILC Packet Protocol", Internet Draft,
2482              January 2007.
2483
2484 [SILC3]      Riikonen, P., "SILC Key Exchange and Authentication
2485              Protocols", Internet Draft, January 2007.
2486
2487 [IRC]        Oikarinen, J., and Reed D., "Internet Relay Chat Protocol",
2488              RFC 1459, May 1993.
2489
2490 [IRC-ARCH]   Kalt, C., "Internet Relay Chat: Architecture", RFC 2810,
2491              April 2000.
2492
2493 [IRC-CHAN]   Kalt, C., "Internet Relay Chat: Channel Management", RFC
2494              2811, April 2000.
2495
2496 [IRC-CLIENT] Kalt, C., "Internet Relay Chat: Client Protocol", RFC
2497              2812, April 2000.
2498
2499 [IRC-SERVER] Kalt, C., "Internet Relay Chat: Server Protocol", RFC
2500              2813, April 2000.
2501
2502 [SSH-TRANS]  Ylonen, T., et al, "SSH Transport Layer Protocol",
2503              Internet Draft.
2504
2505 [PGP]        Callas, J., et al, "OpenPGP Message Format", RFC 2440,
2506              November 1998.
2507
2508 [SPKI]       Ellison C., et al, "SPKI Certificate Theory", RFC 2693,
2509              September 1999.
2510
2511 [PKIX-Part1] Housley, R., et al, "Internet X.509 Public Key
2512              Infrastructure, Certificate and CRL Profile", RFC 2459,
2513              January 1999.
2514
2515 [Schneier]   Schneier, B., "Applied Cryptography Second Edition",
2516              John Wiley & Sons, New York, NY, 1996.
2517
2518 [Menezes]    Menezes, A., et al, "Handbook of Applied Cryptography",
2519              CRC Press 1997.
2520
2521 [OAKLEY]     Orman, H., "The OAKLEY Key Determination Protocol",
2522              RFC 2412, November 1998.
2523
2524 [ISAKMP]     Maughan D., et al, "Internet Security Association and
2525              Key Management Protocol (ISAKMP)", RFC 2408, November
2526              1998.
2527
2528 [IKE]        Harkins D., and Carrel D., "The Internet Key Exchange
2529              (IKE)", RFC 2409, November 1998.
2530
2531 [HMAC]       Krawczyk, H., "HMAC: Keyed-Hashing for Message
2532              Authentication", RFC 2104, February 1997.
2533
2534 [PKCS1]      Kalinski, B., and Staddon, J., "PKCS #1 RSA Cryptography
2535              Specifications, Version 2.0", RFC 2437, October 1998.
2536
2537 [RFC2119]    Bradner, S., "Key Words for use in RFCs to Indicate
2538              Requirement Levels", BCP 14, RFC 2119, March 1997.
2539
2540 [RFC3629]    Yergeau, F., "UTF-8, a transformation format of ISO
2541              10646", RFC 3629, November 2003.
2542
2543 [ATTRS]      Riikonen, P., "User Online Presence and Information
2544              Attributes", Internet Draft, May 2002.
2545
2546
2547 .ti 0
2548 6 Author's Address
2549
2550 .nf
2551 Pekka Riikonen
2552 Helsinki
2553 Finland
2554
2555 EMail: priikone@iki.fi
2556
2557
2558 .ti 0
2559 Appendix A
2560
2561 This appendix defines the usage of the <Requested Attributes> argument in
2562 the SILC_COMMAND_WHOIS command.  The attributes are defined in [ATTRS],
2563 and may be used to request additional information about the user.  Since
2564 the information that may be requested using the attributes is something
2565 that server cannot deliver to the sender, it is possible to send the WHOIS
2566 command directly to the destination client whom will then provide the
2567 requested attributes.  This requires the servers to relay the WHOIS
2568 command to the client, and it requires capability for handling the WHOIS
2569 command in the client end.
2570
2571 The <Requested Attributes> MAY include several attributes that are
2572 requested.  The format and encoding of the <Requested Attributes> is as
2573 defined in [ATTRS].  When <Requested Attributes> argument is set the
2574 server MAY process the attributes to see whether it can narrow down
2575 the WHOIS search, for example when searching with a nickname.  The
2576 normal servers MUST process the WHOIS command as normal WHOIS command,
2577 that is to send the command directly to the router.  The router MAY
2578 process the attributes, but it MUST send the command to the server
2579 that owns the requested client.
2580
2581 The server that owns the client and receives the command MUST check
2582 whether the client is detached from the network.  If it is detached,
2583 that is the user mode has the SILC_UMODE_DETACHED mode set, it SHOULD
2584 process the attributes and provide as many of the requested attributes
2585 as possible and then send reply back to the sender.  If the client is
2586 active in the network it MUST send the command to the client for
2587 processing.
2588
2589 The client receiving WHOIS command SHOULD check whether the
2590 <Requested Attributes> argument is set.  If it is not set then the
2591 WHOIS command SHOULD be discarded.  The client processes the requested
2592 attributes and SHOULD reply to each of the requested attribute with
2593 either valid value, or with an indication that the requested attribute
2594 is not known or supported.  This is to be done as defined in [ATTRS].
2595 The client always MUST send a reply to the command when some attributes
2596 were requested.  The client MAY also add additional attributes to the
2597 reply even if they were not requested.  The client MAY also digitally
2598 sign the attributes with ATTRIBUTE_USER_DIGITAL_SIGNATURE as defined
2599 in [ATTRS].  Then the client sends the reply back to the sender of
2600 the command.  The command reply that client assembles does not need
2601 to include any other argument but the <Status Payload> (1), and the
2602 <Attributes> (11).  The server receiving reply from client MUST allow
2603 this sort of command reply for WHOIS command.
2604
2605 The information received from the client MAY be cached in the
2606 server's end.  The caching may be desired for example if the client
2607 can be detached from the network.  This way the server is then able
2608 to provide at least partial information for a requester.  The
2609 server MAY also process the command reply and verify whether the
2610 attributes provided in the reply are actually valid.  If it can do
2611 this, and verify that they indeed are valid values it MAY append
2612 a digital signature at the end of the attributes with the
2613 ATTRIBUTE_SERVER_DIGITAL_SIGNATURE as defined in [ATTRS].  The
2614 server then MUST provide valid WHOIS command reply to the sender
2615 of the command.   Other servers and routers that receive the command
2616 reply en route to the original sender MAY also cache the information.
2617
2618 The client which receives the command reply to the WHOIS command
2619 SHOULD verify the ATTRIBUTE_USER_DIGITAL_SIGNATURE and the
2620 ATTRIBUTE_SERVER_DIGITAL_SIGNATURE if they are provided.
2621
2622
2623 .ti 0
2624 Full Copyright Statement
2625
2626 Copyright (C) The Internet Society (2003). All Rights Reserved.
2627
2628 This document and translations of it may be copied and furnished to
2629 others, and derivative works that comment on or otherwise explain it
2630 or assist in its implementation may be prepared, copied, published
2631 and distributed, in whole or in part, without restriction of any
2632 kind, provided that the above copyright notice and this paragraph are
2633 included on all such copies and derivative works. However, this
2634 document itself may not be modified in any way, such as by removing
2635 the copyright notice or references to the Internet Society or other
2636 Internet organizations, except as needed for the purpose of
2637 developing Internet standards in which case the procedures for
2638 copyrights defined in the Internet Standards process must be
2639 followed, or as required to translate it into languages other than
2640 English.
2641
2642 The limited permissions granted above are perpetual and will not be
2643 revoked by the Internet Society or its successors or assigns.
2644
2645 This document and the information contained herein is provided on an
2646 "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
2647 TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
2648 BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
2649 HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
2650 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.