709966ab991053f437f18f3f064c5d26a887609f
[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 "silc-chatnets.h"
33 #include "silc-cmdqueue.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 char *opt_pkcs = NULL;
45 static int opt_bits = 0;
46
47 static int idletag = -1;
48
49 SilcClient silc_client = NULL;
50 extern SilcClientOperations ops;
51 extern bool silc_debug;
52 extern bool silc_debug_hexdump;
53
54 void silc_expandos_init(void);
55 void silc_expandos_deinit(void);
56
57 void silc_lag_init(void);
58 void silc_lag_deinit(void);
59
60 static int my_silc_scheduler(void)
61 {
62   silc_client_run_one(silc_client);
63   return 1;
64 }
65
66 static CHATNET_REC *create_chatnet(void)
67 {
68   return g_malloc0(sizeof(CHATNET_REC));
69 }
70
71 static SERVER_SETUP_REC *create_server_setup(void)
72 {
73   return g_malloc0(sizeof(SERVER_SETUP_REC));
74 }
75
76 static CHANNEL_SETUP_REC *create_channel_setup(void)
77 {
78   return g_malloc0(sizeof(CHANNEL_SETUP_REC));
79 }
80
81 static SERVER_CONNECT_REC *create_server_connect(void)
82 {
83   return g_malloc0(sizeof(SILC_SERVER_CONNECT_REC));
84 }
85
86 static void destroy_server_connect(SERVER_CONNECT_REC *conn)
87 {
88
89 }
90
91 /* Checks user information and saves them to the config file it they
92    do not exist there already. */
93
94 static void silc_init_userinfo(void)
95 {
96   const char *set, *nick, *user_name;
97   char *str;   
98         
99   /* check if nick/username/realname wasn't read from setup.. */
100   set = settings_get_str("real_name");
101   if (set == NULL || *set == '\0') {
102     str = g_getenv("SILCNAME");
103     if (!str)
104       str = g_getenv("IRCNAME");
105     settings_set_str("real_name",
106                      str != NULL ? str : silc_get_real_name());
107   }
108  
109   /* username */
110   user_name = settings_get_str("user_name");
111   if (user_name == NULL || *user_name == '\0') {
112     str = g_getenv("SILCUSER");
113     if (!str)
114       str = g_getenv("IRCUSER");
115     settings_set_str("user_name",
116                      str != NULL ? str : silc_get_username());
117
118     user_name = settings_get_str("user_name");
119   }
120
121   /* nick */
122   nick = settings_get_str("nick");
123   if (nick == NULL || *nick == '\0') {
124     str = g_getenv("SILCNICK");
125     if (!str)
126       str = g_getenv("IRCNICK");
127     settings_set_str("nick", str != NULL ? str : user_name);
128     
129     nick = settings_get_str("nick");
130   }
131                 
132   /* alternate nick */
133   set = settings_get_str("alternate_nick");
134   if (set == NULL || *set == '\0') {
135     str = g_strconcat(nick, "_", NULL);
136     settings_set_str("alternate_nick", str);
137     g_free(str);
138   }
139
140   /* host name */
141   set = settings_get_str("hostname");
142   if (set == NULL || *set == '\0') {
143     str = g_getenv("SILCHOST");
144     if (!str)
145       str = g_getenv("IRCHOST");
146     if (str != NULL)
147       settings_set_str("hostname", str);
148   }
149 }
150
151 #ifdef SILC_DEBUG
152 static bool i_debug;
153 static bool silc_irssi_debug_print(char *file, char *function, int line,
154                                    char *message, void *context)
155 {
156   printtext(NULL, NULL, MSGLEVEL_CLIENTCRAP,
157             "DEBUG: %s:%d: %s", function, line, message);
158   return TRUE;
159 }
160 #endif
161
162 static void sig_setup_changed(void)
163 {
164 #ifdef SILC_DEBUG
165   bool debug = settings_get_bool("debug");
166   if (debug) {
167     const char *debug_string = settings_get_str("debug_string");
168     i_debug = silc_debug = TRUE;
169     if (strlen(debug_string))
170       silc_log_set_debug_string(debug_string);
171     silc_log_set_debug_callbacks(silc_irssi_debug_print, NULL, NULL, NULL);
172     return;
173   }
174   if (i_debug)
175     silc_debug = FALSE;
176 #endif
177 }
178
179 /* Log callbacks */
180
181 static bool silc_log_misc(SilcLogType type, char *message, void *context)
182 {
183   printtext(NULL, NULL, MSGLEVEL_CLIENTCRAP, "%s: %s", 
184             (type == SILC_LOG_INFO ? "[Info]" :
185              type == SILC_LOG_WARNING ? "[Warning]" : "[Error]"), message);
186   return TRUE;
187 }
188
189 static void silc_nickname_format_parse(const char *nickname,
190                                        char **ret_nickname)
191 {
192   silc_parse_userfqdn(nickname, ret_nickname, NULL);
193 }
194
195 static void silc_register_cipher(SilcClient client, const char *cipher)
196 {
197   int i;
198
199   if (cipher) {
200     for (i = 0; silc_default_ciphers[i].name; i++)
201       if (!strcmp(silc_default_ciphers[i].name, cipher)) {
202         silc_cipher_register(&(silc_default_ciphers[i]));
203         break;
204       }
205     
206     if (!silc_cipher_is_supported(cipher)) {
207       SILC_LOG_ERROR(("Unknown cipher `%s'", cipher));
208       exit(1);
209     }
210   }
211
212   /* Register other defaults */
213   silc_cipher_register_default();
214 }
215
216 static void silc_register_hash(SilcClient client, const char *hash)
217 {
218   int i;
219
220   if (hash) {
221     for (i = 0; silc_default_hash[i].name; i++)
222       if (!strcmp(silc_default_hash[i].name, hash)) {
223         silc_hash_register(&(silc_default_hash[i]));
224         break;
225       }
226     
227     if (!silc_hash_is_supported(hash)) {
228       SILC_LOG_ERROR(("Unknown hash function `%s'", hash));
229       exit(1);
230     }
231   }
232
233   /* Register other defaults */
234   silc_hash_register_default();
235 }
236
237 static void silc_register_hmac(SilcClient client, const char *hmac)
238 {
239   int i;
240
241   if (hmac) {
242     for (i = 0; silc_default_hmacs[i].name; i++)
243       if (!strcmp(silc_default_hmacs[i].name, hmac)) {
244         silc_hmac_register(&(silc_default_hmacs[i]));
245         break;
246       }
247     
248     if (!silc_hmac_is_supported(hmac)) {
249       SILC_LOG_ERROR(("Unknown HMAC `%s'", hmac));
250       exit(1);
251     }
252   }
253
254   /* Register other defaults */
255   silc_hmac_register_default();
256 }
257
258 /* Finalize init. Init finish signal calls this. */
259
260 void silc_opt_callback(poptContext con, 
261                        enum poptCallbackReason reason,
262                        const struct poptOption *opt,
263                        const char *arg, void *data)
264 {
265   if (strcmp(opt->longName, "list-ciphers") == 0) {
266     silc_cipher_register_default();
267     silc_client_list_ciphers();
268     exit(0);
269   }
270
271   if (strcmp(opt->longName, "list-hash-funcs") == 0) {
272     silc_hash_register_default();
273     silc_client_list_hash_funcs();
274     exit(0);
275   }
276
277   if (strcmp(opt->longName, "list-hmacs") == 0) {
278     silc_hmac_register_default();
279     silc_client_list_hmacs();
280     exit(0);
281   }
282
283   if (strcmp(opt->longName, "list-pkcs") == 0) {
284     silc_pkcs_register_default();
285     silc_client_list_pkcs();
286     exit(0);
287   }
288
289   if (strcmp(opt->longName, "debug") == 0) {
290     silc_debug = TRUE;
291     silc_debug_hexdump = TRUE;
292     silc_log_set_debug_string(arg);
293 #ifndef SILC_DEBUG
294     fprintf(stdout, 
295             "Run-time debugging is not enabled. To enable it recompile\n"
296             "the client with --enable-debug configuration option.\n");
297     sleep(1);
298 #endif
299   }
300
301   if (strcmp(opt->longName, "create-key-pair") == 0) {
302     /* Create new key pair and exit */
303     silc_cipher_register_default();
304     silc_pkcs_register_default();
305     silc_hash_register_default();
306     silc_hmac_register_default();
307     silc_create_key_pair(opt_pkcs, opt_bits, NULL, NULL, NULL,
308                          NULL, NULL, NULL, NULL, TRUE);
309     exit(0);
310   }
311
312   if (strcmp(opt->longName, "passphrase-change") == 0) {
313     /* Change the passphrase of the private key file */
314     silc_cipher_register_default();
315     silc_pkcs_register_default();
316     silc_hash_register_default();
317     silc_hmac_register_default();
318     silc_change_private_key_passphrase(arg, NULL, NULL);
319     exit(0);
320   }
321
322   if (strcmp(opt->longName, "show-key") == 0) {
323     /* Dump the key */
324     silc_cipher_register_default();
325     silc_pkcs_register_default();
326     silc_hash_register_default();
327     silc_hmac_register_default();
328     silc_show_public_key((char *)arg);
329     exit(0);
330   }
331 }
332
333 static void sig_init_finished(void)
334 {
335   /* Check ~/.silc directory and public and private keys */
336   if (!silc_client_check_silc_dir())
337     exit(1);
338
339   /* Load public and private key */
340   if (!silc_client_load_keys(silc_client))
341     exit(1);
342
343   /* Initialize the SILC client */
344   if (!silc_client_init(silc_client))
345     exit(1);
346
347   /* register SILC scheduler */
348   idletag = g_timeout_add(5, (GSourceFunc) my_silc_scheduler, NULL);
349 }
350
351 /* Init SILC. Called from src/fe-text/silc.c */
352
353 void silc_core_init(void)
354 {
355   static struct poptOption silc_options[] = {
356     { NULL, '\0', POPT_ARG_CALLBACK, (void *)&silc_opt_callback, '\0', NULL },
357     { "list-ciphers", 0, POPT_ARG_NONE, NULL, 0,
358       "List supported ciphers", NULL },
359     { "list-hash-funcs", 0, POPT_ARG_NONE, NULL, 0,
360       "List supported hash functions", NULL },
361     { "list-hmacs", 0, POPT_ARG_NONE, NULL, 0,
362       "List supported HMACs", NULL },
363     { "list-pkcs", 0, POPT_ARG_NONE, NULL, 0,
364       "List supported PKCSs", NULL },
365 #ifdef SILC_DEBUG
366     { "debug", 'd', POPT_ARG_STRING, NULL, 0,
367       "Enable debugging", "STRING" },
368 #endif /* SILC_DEBUG */
369     { "create-key-pair", 'C', POPT_ARG_NONE, NULL, 0,
370       "Create new public key pair", NULL },
371     { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0,
372       "Set the PKCS of the public key pair (-C)", "PKCS" },
373     { "bits", 0, POPT_ARG_INT, &opt_bits, 0,
374       "Set the length of the public key pair (-C)", "VALUE" },
375     { "passphrase-change", 'P', POPT_ARG_STRING, NULL, 0,
376       "Change the passphrase of private key file", "FILE" },
377     { "show-key", 'S', POPT_ARG_STRING, NULL, 0,
378       "Show the contents of the public key", "FILE" },
379     { NULL, '\0', 0, NULL }
380   };
381
382   CHAT_PROTOCOL_REC *rec;
383   SilcClientParams params;
384   const char *def_cipher, *def_hash, *def_hmac;
385
386   args_register(silc_options);
387
388   /* Settings */
389   settings_add_bool("server", "skip_motd", FALSE);
390   settings_add_str("server", "alternate_nick", NULL);
391   settings_add_bool("server", "use_auto_addr", FALSE);
392   settings_add_str("server", "auto_bind_ip", "");
393   settings_add_str("server", "auto_public_ip", "");
394   settings_add_int("server", "auto_bind_port", 0);
395   settings_add_str("server", "crypto_default_cipher", SILC_DEFAULT_CIPHER);
396   settings_add_str("server", "crypto_default_hash", SILC_DEFAULT_HASH);
397   settings_add_str("server", "crypto_default_hmac", SILC_DEFAULT_HMAC);
398   settings_add_int("server", "key_exchange_timeout_secs", 120);
399   settings_add_int("server", "key_exchange_rekey_secs", 3600);
400   settings_add_int("server", "connauth_request_secs", 2);
401   settings_add_int("server", "heartbeat", 300);
402   settings_add_bool("server", "ignore_message_signatures", FALSE);
403   settings_add_str("server", "session_filename", "session.$chatnet");
404
405   /* Requested Attributes settings */
406   settings_add_bool("silc", "attr_allow", TRUE);
407   settings_add_str("silc", "attr_vcard", "");
408   settings_add_str("silc", "attr_services", "");
409   settings_add_str("silc", "attr_status_mood", "NORMAL");
410   settings_add_str("silc", "attr_status_text", "");
411   settings_add_str("silc", "attr_status_message", NULL);
412   settings_add_str("silc", "attr_preferred_language", "");
413   settings_add_str("silc", "attr_preferred_contact", "CHAT");
414   settings_add_bool("silc", "attr_timezone", TRUE);
415   settings_add_str("silc", "attr_geolocation", "");
416   settings_add_str("silc", "attr_device_info", NULL);
417   settings_add_str("silc", "attr_public_keys", "");
418
419 #ifdef SILC_DEBUG
420   settings_add_bool("debug", "debug", FALSE);
421   settings_add_str("debug", "debug_string", "");
422 #endif
423
424   signal_add("setup changed", (SIGNAL_FUNC) sig_setup_changed);
425   signal_add("irssi init finished", (SIGNAL_FUNC) sig_init_finished);
426
427   silc_init_userinfo();
428
429   /* Initialize client parameters */
430   memset(&params, 0, sizeof(params));
431   strcat(params.nickname_format, "%n@%h%a");
432   params.nickname_parse = silc_nickname_format_parse;
433   params.rekey_secs = settings_get_int("key_exchange_rekey_secs");
434   params.connauth_request_secs = settings_get_int("connauth_request_secs");
435
436   /* Allocate SILC client */
437   silc_client = silc_client_alloc(&ops, &params, NULL, silc_version_string);
438
439   /* Get the ciphers and stuff from config file */
440   def_cipher = settings_get_str("crypto_default_cipher");
441   def_hash = settings_get_str("crypto_default_hash");
442   def_hmac = settings_get_str("crypto_default_hmac");
443   silc_register_cipher(silc_client, def_cipher);
444   silc_register_hash(silc_client, def_hash);
445   silc_register_hmac(silc_client, def_hmac);
446   silc_pkcs_register_default();
447
448   /* Get user information */
449   silc_client->username = g_strdup(settings_get_str("user_name"));
450   silc_client->nickname = g_strdup(settings_get_str("nick"));
451   silc_client->hostname = silc_net_localhost();
452   silc_client->realname = g_strdup(settings_get_str("real_name"));
453
454   silc_log_set_callback(SILC_LOG_INFO, silc_log_misc, NULL);
455   silc_log_set_callback(SILC_LOG_WARNING, silc_log_misc, NULL);
456   silc_log_set_callback(SILC_LOG_ERROR, silc_log_misc, NULL);
457   silc_log_set_callback(SILC_LOG_FATAL, silc_log_misc, NULL);
458
459   /* Register SILC to the irssi */
460   rec = g_new0(CHAT_PROTOCOL_REC, 1);
461   rec->name = "SILC";
462   rec->fullname = "Secure Internet Live Conferencing";
463   rec->chatnet = "silcnet";
464   rec->create_chatnet = create_chatnet;
465   rec->create_server_setup = create_server_setup;
466   rec->create_channel_setup = create_channel_setup;
467   rec->create_server_connect = create_server_connect;
468   rec->destroy_server_connect = destroy_server_connect;
469   rec->server_init_connect = silc_server_init_connect; 
470   rec->server_connect = silc_server_connect;
471   rec->channel_create = (CHANNEL_REC *(*) (SERVER_REC *, const char *, 
472                                            const char *, int))
473     silc_channel_create;
474   rec->query_create = (QUERY_REC *(*) (const char *, const char *, int))
475     silc_query_create;
476   
477   chat_protocol_register(rec);
478   g_free(rec);
479
480   silc_queue_init();
481   silc_server_init();
482   silc_channels_init();
483   silc_queries_init();
484   silc_expandos_init();
485   silc_lag_init();
486   silc_chatnets_init();
487
488   module_register("silc", "core");
489 }
490
491 /* Deinit SILC. Called from src/fe-text/silc.c */
492
493 void silc_core_deinit(void)
494 {
495   if (idletag != -1)
496     g_source_remove(idletag);
497   
498   signal_emit("chat protocol deinit", 1,
499         chat_protocol_find("SILC"));
500   signal_remove("setup changed", (SIGNAL_FUNC) sig_setup_changed);
501   signal_remove("irssi init finished", (SIGNAL_FUNC) sig_init_finished);
502
503   silc_queue_deinit();
504   silc_server_deinit();
505   silc_channels_deinit();
506   silc_queries_deinit();
507   silc_expandos_deinit();
508   silc_lag_deinit();
509   silc_chatnets_deinit();
510   
511   chat_protocol_unregister("SILC");
512   
513   g_free(silc_client->username);
514   g_free(silc_client->realname);
515   silc_free(silc_client->hostname);
516   silc_pkcs_free(silc_client->pkcs);
517   silc_pkcs_private_key_free(silc_client->private_key);
518   silc_pkcs_public_key_free(silc_client->public_key);
519   silc_client_free(silc_client);
520 }