updates.
[silc.git] / apps / irssi / src / silc / core / silc-core.c
1 /*
2
3   silc-core.c
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #include "module.h"
22 #include "chat-protocols.h"
23 #include "args.h"
24
25 #include "chatnets.h"
26 #include "servers-setup.h"
27 #include "channels-setup.h"
28 #include "silc-servers.h"
29 #include "silc-channels.h"
30 #include "silc-queries.h"
31 #include "silc-nicklist.h"
32 #include "version_internal.h"
33 #include "version.h"
34
35 #include "signals.h"
36 #include "levels.h"
37 #include "settings.h"
38 #include "fe-common/core/printtext.h"
39 #include "fe-common/core/fe-channels.h"
40 #include "fe-common/core/keyboard.h"
41 #include "fe-common/silc/module-formats.h"
42
43 /* Command line option variables */
44 static bool opt_create_keypair = FALSE;
45 static bool opt_list_ciphers = FALSE;
46 static bool opt_list_hash = FALSE;
47 static bool opt_list_hmac = FALSE;
48 static bool opt_list_pkcs = FALSE;
49 static bool opt_version = FALSE;
50 static char *opt_debug = FALSE;
51 static char *opt_pkcs = NULL;
52 static char *opt_keyfile = NULL;
53 static int opt_bits = 0;
54
55 static int idletag;
56
57 SilcClient silc_client = NULL;
58 extern SilcClientOperations ops;
59 extern bool silc_debug;
60 extern bool silc_debug_hexdump;
61 #ifdef SILC_SIM
62 /* SIM (SILC Module) table */
63 SilcSimContext **sims = NULL;
64 uint32 sims_count = 0;
65 #endif
66
67 static int my_silc_scheduler(void)
68 {
69   silc_client_run_one(silc_client);
70   return 1;
71 }
72
73 static CHATNET_REC *create_chatnet(void)
74 {
75   return g_malloc0(sizeof(CHATNET_REC));
76 }
77
78 static SERVER_SETUP_REC *create_server_setup(void)
79 {
80   return g_malloc0(sizeof(SERVER_SETUP_REC));
81 }
82
83 static CHANNEL_SETUP_REC *create_channel_setup(void)
84 {
85   return g_malloc0(sizeof(CHANNEL_SETUP_REC));
86 }
87
88 static SERVER_CONNECT_REC *create_server_connect(void)
89 {
90   return g_malloc0(sizeof(SILC_SERVER_CONNECT_REC));
91 }
92
93 static void destroy_server_connect(SERVER_CONNECT_REC *conn)
94 {
95
96 }
97
98 /* Checks user information and saves them to the config file it they
99    do not exist there already. */
100
101 static void silc_init_userinfo(void)
102 {
103   const char *set, *nick, *user_name;
104   char *str;   
105         
106   /* check if nick/username/realname wasn't read from setup.. */
107   set = settings_get_str("real_name");
108   if (set == NULL || *set == '\0') {
109     str = g_getenv("SILCNAME");
110     if (!str)
111       str = g_getenv("IRCNAME");
112     settings_set_str("real_name",
113                      str != NULL ? str : g_get_real_name());
114   }
115  
116   /* username */
117   user_name = settings_get_str("user_name");
118   if (user_name == NULL || *user_name == '\0') {
119     str = g_getenv("SILCUSER");
120     if (!str)
121       str = g_getenv("IRCUSER");
122     settings_set_str("user_name",
123                      str != NULL ? str : g_get_user_name());
124     
125     user_name = settings_get_str("user_name");
126   }
127
128   /* nick */
129   nick = settings_get_str("nick");
130   if (nick == NULL || *nick == '\0') {
131     str = g_getenv("SILCNICK");
132     if (!str)
133       str = g_getenv("IRCNICK");
134     settings_set_str("nick", str != NULL ? str : user_name);
135     
136     nick = settings_get_str("nick");
137   }
138                 
139   /* alternate nick */
140   set = settings_get_str("alternate_nick");
141   if (set == NULL || *set == '\0') {
142     if (strlen(nick) < 9)
143       str = g_strconcat(nick, "_", NULL);
144     else { 
145       str = g_strdup(nick);
146       str[strlen(str)-1] = '_';
147     }
148     settings_set_str("alternate_nick", str);
149     g_free(str);
150   }
151
152   /* host name */
153   set = settings_get_str("hostname");
154   if (set == NULL || *set == '\0') {
155     str = g_getenv("SILCHOST");
156     if (!str)
157       str = g_getenv("IRCHOST");
158     if (str != NULL)
159       settings_set_str("hostname", str);
160   }
161 }
162
163 /* Log callbacks */
164
165 static bool silc_log_misc(SilcLogType type, char *message, void *context)
166 {
167   fprintf(stderr, "%s\n", message);
168   return TRUE;
169 }
170
171 static void silc_nickname_format_parse(const char *nickname,
172                                        char **ret_nickname)
173 {
174   silc_parse_userfqdn(nickname, ret_nickname, NULL);
175 }
176
177 static void silc_register_cipher(SilcClient client, const char *cipher)
178 {
179   int i;
180   
181   for (i = 0; silc_default_ciphers[i].name; i++)
182     if (!strcmp(silc_default_ciphers[i].name, cipher)) {
183       silc_cipher_register(&silc_default_ciphers[i]);
184       break;
185     }
186
187   if (!silc_cipher_is_supported(cipher)) {
188     SILC_LOG_ERROR(("Unknown cipher `%s'", cipher));
189     exit(1);
190   }
191
192   /* Register other defaults */
193   silc_cipher_register_default();
194 }
195
196 static void silc_register_hash(SilcClient client, const char *hash)
197 {
198   int i;
199   
200   for (i = 0; silc_default_hash[i].name; i++)
201     if (!strcmp(silc_default_hash[i].name, hash)) {
202       silc_hash_register(&silc_default_hash[i]);
203       break;
204     }
205   
206   if (!silc_hash_is_supported(hash)) {
207     SILC_LOG_ERROR(("Unknown hash function `%s'", hash));
208     exit(1);
209   }
210
211   /* Register other defaults */
212   silc_hash_register_default();
213 }
214
215 static void silc_register_hmac(SilcClient client, const char *hmac)
216 {
217   int i;
218   
219   for (i = 0; silc_default_hmacs[i].name; i++)
220     if (!strcmp(silc_default_hmacs[i].name, hmac)) {
221       silc_hmac_register(&silc_default_hmacs[i]);
222       break;
223     }
224   
225   if (!silc_hmac_is_supported(hmac)) {
226     SILC_LOG_ERROR(("Unknown HMAC `%s'", hmac));
227     exit(1);
228   }
229
230   /* Register other defaults */
231   silc_hmac_register_default();
232 }
233
234 /* Finalize init. Init finish signal calls this. */
235
236 void silc_core_init_finish(SERVER_REC *server)
237 {
238   CHAT_PROTOCOL_REC *rec;
239   SilcClientParams params;
240   const char *def_cipher, *def_hash, *def_hmac;
241
242   if (opt_create_keypair == TRUE) {
243     /* Create new key pair and exit */
244     silc_cipher_register_default();
245     silc_pkcs_register_default();
246     silc_hash_register_default();
247     silc_hmac_register_default();
248     silc_client_create_key_pair(opt_pkcs, opt_bits, 
249                                 NULL, NULL, NULL, NULL, NULL);
250     exit(0);
251   }
252
253   if (opt_keyfile) {
254     /* Dump the key */
255     silc_cipher_register_default();
256     silc_pkcs_register_default();
257     silc_hash_register_default();
258     silc_hmac_register_default();
259     silc_client_show_key(opt_keyfile);
260     exit(0);
261   }
262
263   if (opt_list_ciphers) {
264     silc_cipher_register_default();
265     silc_client_list_ciphers();
266     exit(0);
267   }
268
269   if (opt_list_hash) {
270     silc_hash_register_default();
271     silc_client_list_hash_funcs();
272     exit(0);
273   }
274
275   if (opt_list_hmac) {
276     silc_hmac_register_default();
277     silc_client_list_hmacs();
278     exit(0);
279   }
280
281   if (opt_list_pkcs) {
282     silc_pkcs_register_default();
283     silc_client_list_pkcs();
284     exit(0);
285   }
286
287   if (opt_version) {
288     printf("SILC Secure Internet Live Conferencing, version %s "
289            "(base: SILC Toolkit %s)\n", silc_dist_version, silc_version);
290     printf("(c) 1997 - 2001 Pekka Riikonen <priikone@silcnet.org>\n");
291     exit(0); 
292   }
293
294   if (opt_debug) {
295     silc_debug = TRUE;
296     silc_debug_hexdump = TRUE;
297     silc_log_set_debug_string(opt_debug);
298     silc_log_set_callback(SILC_LOG_INFO, silc_log_misc, NULL);
299     silc_log_set_callback(SILC_LOG_WARNING, silc_log_misc, NULL);
300     silc_log_set_callback(SILC_LOG_ERROR, silc_log_misc, NULL);
301     silc_log_set_callback(SILC_LOG_FATAL, silc_log_misc, NULL);
302 #ifndef SILC_DEBUG
303     fprintf(stdout, 
304             "Run-time debugging is not enabled. To enable it recompile\n"
305             "the client with --enable-debug configuration option.\n");
306 #endif
307   }
308
309   /* Do some irssi initializing */
310   settings_add_bool("server", "skip_motd", FALSE);
311   settings_add_str("server", "alternate_nick", NULL);
312   
313   /* Initialize the auto_addr variables Is "server" the best choice for
314    * this?  No existing category seems to apply.
315    */
316   settings_add_bool("server", "use_auto_addr", FALSE);
317   settings_add_str("server", "auto_bind_ip", "");
318   settings_add_str("server", "auto_public_ip", "");
319   settings_add_int("server", "auto_bind_port", 0);
320                                 
321   silc_init_userinfo();
322
323   /* Initialize client parameters */
324   memset(&params, 0, sizeof(params));
325   strcat(params.nickname_format, "%n@%h%a");
326   params.nickname_parse = silc_nickname_format_parse;
327
328   /* Allocate SILC client */
329   silc_client = silc_client_alloc(&ops, &params, NULL, silc_version_string);
330
331   /* Crypto settings */
332   settings_add_str("server", "crypto_default_cipher", "aes-256-cbc");
333   settings_add_str("server", "crypto_default_hash", "sha1");
334   settings_add_str("server", "crypto_default_hmac", "hmac-sha1-96");
335
336   /* Get the ciphers and stuff from config file */
337   def_cipher = settings_get_str("crypto_default_cipher");
338   def_hash = settings_get_str("crypto_default_hash");
339   def_hmac = settings_get_str("crypto_default_hmac");
340   silc_register_cipher(silc_client, def_cipher);
341   silc_register_hash(silc_client, def_hash);
342   silc_register_hmac(silc_client, def_hmac);
343   silc_pkcs_register_default();
344
345   /* Get user information */
346   silc_client->username = g_strdup(settings_get_str("user_name"));
347   silc_client->nickname = g_strdup(settings_get_str("nick"));
348   silc_client->hostname = silc_net_localhost();
349   silc_client->realname = g_strdup(settings_get_str("real_name"));
350
351   /* Check ~/.silc directory and public and private keys */
352   if (silc_client_check_silc_dir() == FALSE) {
353     idletag = -1;
354     return;
355   }
356
357   /* Load public and private key */
358   if (silc_client_load_keys(silc_client) == FALSE) {
359     idletag = -1;
360     return;
361   }
362
363   /* Initialize the SILC client */
364   if (!silc_client_init(silc_client)) {
365     idletag = -1;
366     return;
367   }
368
369   /* Register SILC to the irssi */
370   rec = g_new0(CHAT_PROTOCOL_REC, 1);
371   rec->name = "SILC";
372   rec->fullname = "Secure Internet Live Conferencing";
373   rec->chatnet = "silcnet";
374   rec->create_chatnet = create_chatnet;
375   rec->create_server_setup = create_server_setup;
376   rec->create_channel_setup = create_channel_setup;
377   rec->create_server_connect = create_server_connect;
378   rec->destroy_server_connect = destroy_server_connect;
379   rec->server_connect = (SERVER_REC *(*) (SERVER_CONNECT_REC *))
380     silc_server_connect; 
381   rec->channel_create = (CHANNEL_REC *(*) (SERVER_REC *, const char *, int))
382     silc_channel_create;
383   rec->query_create = (QUERY_REC *(*) (const char *, const char *, int))
384     silc_query_create;
385   
386   chat_protocol_register(rec);
387   g_free(rec);
388
389   silc_server_init();
390   silc_channels_init();
391   silc_queries_init();
392
393   idletag = g_timeout_add(5, (GSourceFunc) my_silc_scheduler, NULL);
394 }
395
396 /* Init SILC. Called from src/fe-text/silc.c */
397
398 void silc_core_init(void)
399 {
400   static struct poptOption options[] = {
401     { "create-key-pair", 'C', POPT_ARG_NONE, &opt_create_keypair, 0, 
402       "Create new public key pair", NULL },
403     { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0, 
404       "Set the PKCS of the public key pair", "PKCS" },
405     { "bits", 0, POPT_ARG_INT, &opt_bits, 0, 
406       "Set the length of the public key pair", "VALUE" },
407     { "show-key", 'S', POPT_ARG_STRING, &opt_keyfile, 0, 
408       "Show the contents of the public key", "FILE" },
409     { "list-ciphers", 'c', POPT_ARG_NONE, &opt_list_ciphers, 0,
410       "List supported ciphers", NULL },
411     { "list-hash-funcs", 'H', POPT_ARG_NONE, &opt_list_hash, 0,
412       "List supported hash functions", NULL },
413     { "list-hmacs", 'M', POPT_ARG_NONE, &opt_list_hmac, 0,
414       "List supported HMACs", NULL },
415     { "list-pkcs", 'P', POPT_ARG_NONE, &opt_list_pkcs, 0,
416       "List supported PKCSs", NULL },
417     { "debug", 'd', POPT_ARG_STRING, &opt_debug, 0,
418       "Enable debugging", "STRING" },
419     { "version", 'V', POPT_ARG_NONE, &opt_version, 0,
420       "Show version", NULL },
421     { NULL, '\0', 0, NULL }
422   };
423
424   signal_add("irssi init finished", (SIGNAL_FUNC) silc_core_init_finish);
425
426   args_register(options);
427 }
428
429 /* Deinit SILC. Called from src/fe-text/silc.c */
430
431 void silc_core_deinit(void)
432 {
433   if (idletag != -1) {
434     signal_emit("chat protocol deinit", 1,
435                 chat_protocol_find("SILC"));
436     
437     silc_server_deinit();
438     silc_channels_deinit();
439     silc_queries_deinit();
440     
441     chat_protocol_unregister("SILC");
442     
443     g_source_remove(idletag);
444   }
445   
446   g_free(silc_client->username);
447   g_free(silc_client->realname);
448   silc_client_free(silc_client);
449 }