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
193 static void silc_register_hash(SilcClient client, const char *hash)
194 {
195   int i;
196   
197   for (i = 0; silc_default_hash[i].name; i++)
198     if (!strcmp(silc_default_hash[i].name, hash)) {
199       silc_hash_register(&silc_default_hash[i]);
200       break;
201     }
202   
203   if (!silc_hash_is_supported(hash)) {
204     SILC_LOG_ERROR(("Unknown hash function `%s'", hash));
205     exit(1);
206   }
207 }
208
209 static void silc_register_hmac(SilcClient client, const char *hmac)
210 {
211   int i;
212   
213   for (i = 0; silc_default_hmacs[i].name; i++)
214     if (!strcmp(silc_default_hmacs[i].name, hmac)) {
215       silc_hmac_register(&silc_default_hmacs[i]);
216       break;
217     }
218   
219   if (!silc_hmac_is_supported(hmac)) {
220     SILC_LOG_ERROR(("Unknown HMAC `%s'", hmac));
221     exit(1);
222   }
223 }
224
225 /* Finalize init. Init finish signal calls this. */
226
227 void silc_core_init_finish(SERVER_REC *server)
228 {
229   CHAT_PROTOCOL_REC *rec;
230   SilcClientParams params;
231   const char *def_cipher, *def_hash, *def_hmac;
232
233   if (opt_create_keypair == TRUE) {
234     /* Create new key pair and exit */
235     silc_cipher_register_default();
236     silc_pkcs_register_default();
237     silc_hash_register_default();
238     silc_hmac_register_default();
239     silc_client_create_key_pair(opt_pkcs, opt_bits, 
240                                 NULL, NULL, NULL, NULL, NULL);
241     exit(0);
242   }
243
244   if (opt_keyfile) {
245     /* Dump the key */
246     silc_cipher_register_default();
247     silc_pkcs_register_default();
248     silc_hash_register_default();
249     silc_hmac_register_default();
250     silc_client_show_key(opt_keyfile);
251     exit(0);
252   }
253
254   if (opt_list_ciphers) {
255     silc_cipher_register_default();
256     silc_client_list_ciphers();
257     exit(0);
258   }
259
260   if (opt_list_hash) {
261     silc_hash_register_default();
262     silc_client_list_hash_funcs();
263     exit(0);
264   }
265
266   if (opt_list_hmac) {
267     silc_hmac_register_default();
268     silc_client_list_hmacs();
269     exit(0);
270   }
271
272   if (opt_list_pkcs) {
273     silc_pkcs_register_default();
274     silc_client_list_pkcs();
275     exit(0);
276   }
277
278   if (opt_version) {
279     printf("SILC Secure Internet Live Conferencing, version %s "
280            "(base: SILC Toolkit %s)\n", silc_dist_version, silc_version);
281     printf("(c) 1997 - 2001 Pekka Riikonen <priikone@silcnet.org>\n");
282     exit(0); 
283   }
284
285   if (opt_debug) {
286     silc_debug = TRUE;
287     silc_debug_hexdump = TRUE;
288     silc_log_set_debug_string(opt_debug);
289     silc_log_set_callback(SILC_LOG_INFO, silc_log_misc, NULL);
290     silc_log_set_callback(SILC_LOG_WARNING, silc_log_misc, NULL);
291     silc_log_set_callback(SILC_LOG_ERROR, silc_log_misc, NULL);
292     silc_log_set_callback(SILC_LOG_FATAL, silc_log_misc, NULL);
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 #endif
298   }
299
300   /* Do some irssi initializing */
301   settings_add_bool("server", "skip_motd", FALSE);
302   settings_add_str("server", "alternate_nick", NULL);
303   
304   /* Initialize the auto_addr variables Is "server" the best choice for
305    * this?  No existing category seems to apply.
306    */
307   settings_add_bool("server", "use_auto_addr", FALSE);
308   settings_add_str("server", "auto_bind_ip", "");
309   settings_add_str("server", "auto_public_ip", "");
310   settings_add_int("server", "auto_bind_port", 0);
311                                 
312   silc_init_userinfo();
313
314   /* Initialize client parameters */
315   memset(&params, 0, sizeof(params));
316   strcat(params.nickname_format, "%n@%h%a");
317   params.nickname_parse = silc_nickname_format_parse;
318
319   /* Allocate SILC client */
320   silc_client = silc_client_alloc(&ops, &params, NULL, silc_version_string);
321
322   /* Crypto settings */
323   settings_add_str("server", "crypto_default_cipher", "aes-256-cbc");
324   settings_add_str("server", "crypto_default_hash", "sha1");
325   settings_add_str("server", "crypto_default_hmac", "hmac-sha1-96");
326
327   /* Get the ciphers and stuff from config file */
328   def_cipher = settings_get_str("crypto_default_cipher");
329   def_hash = settings_get_str("crypto_default_hash");
330   def_hmac = settings_get_str("crypto_default_hmac");
331   silc_register_cipher(silc_client, def_cipher);
332   silc_register_hash(silc_client, def_hash);
333   silc_register_hmac(silc_client, def_hmac);
334   silc_pkcs_register_default();
335
336   /* Get user information */
337   silc_client->username = g_strdup(settings_get_str("user_name"));
338   silc_client->nickname = g_strdup(settings_get_str("nick"));
339   silc_client->hostname = silc_net_localhost();
340   silc_client->realname = g_strdup(settings_get_str("real_name"));
341
342   /* Check ~/.silc directory and public and private keys */
343   if (silc_client_check_silc_dir() == FALSE) {
344     idletag = -1;
345     return;
346   }
347
348   /* Load public and private key */
349   if (silc_client_load_keys(silc_client) == FALSE) {
350     idletag = -1;
351     return;
352   }
353
354   /* Initialize the SILC client */
355   if (!silc_client_init(silc_client)) {
356     idletag = -1;
357     return;
358   }
359
360   /* Register SILC to the irssi */
361   rec = g_new0(CHAT_PROTOCOL_REC, 1);
362   rec->name = "SILC";
363   rec->fullname = "Secure Internet Live Conferencing";
364   rec->chatnet = "silcnet";
365   rec->create_chatnet = create_chatnet;
366   rec->create_server_setup = create_server_setup;
367   rec->create_channel_setup = create_channel_setup;
368   rec->create_server_connect = create_server_connect;
369   rec->destroy_server_connect = destroy_server_connect;
370   rec->server_connect = (SERVER_REC *(*) (SERVER_CONNECT_REC *))
371     silc_server_connect; 
372   rec->channel_create = (CHANNEL_REC *(*) (SERVER_REC *, const char *, int))
373     silc_channel_create;
374   rec->query_create = (QUERY_REC *(*) (const char *, const char *, int))
375     silc_query_create;
376   
377   chat_protocol_register(rec);
378   g_free(rec);
379
380   silc_server_init();
381   silc_channels_init();
382   silc_queries_init();
383
384   idletag = g_timeout_add(5, (GSourceFunc) my_silc_scheduler, NULL);
385 }
386
387 /* Init SILC. Called from src/fe-text/silc.c */
388
389 void silc_core_init(void)
390 {
391   static struct poptOption options[] = {
392     { "create-key-pair", 'C', POPT_ARG_NONE, &opt_create_keypair, 0, 
393       "Create new public key pair", NULL },
394     { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0, 
395       "Set the PKCS of the public key pair", "PKCS" },
396     { "bits", 0, POPT_ARG_INT, &opt_bits, 0, 
397       "Set the length of the public key pair", "VALUE" },
398     { "show-key", 'S', POPT_ARG_STRING, &opt_keyfile, 0, 
399       "Show the contents of the public key", "FILE" },
400     { "list-ciphers", 'c', POPT_ARG_NONE, &opt_list_ciphers, 0,
401       "List supported ciphers", NULL },
402     { "list-hash-funcs", 'H', POPT_ARG_NONE, &opt_list_hash, 0,
403       "List supported hash functions", NULL },
404     { "list-hmacs", 'M', POPT_ARG_NONE, &opt_list_hmac, 0,
405       "List supported HMACs", NULL },
406     { "list-pkcs", 'P', POPT_ARG_NONE, &opt_list_pkcs, 0,
407       "List supported PKCSs", NULL },
408     { "debug", 'd', POPT_ARG_STRING, &opt_debug, 0,
409       "Enable debugging", "STRING" },
410     { "version", 'V', POPT_ARG_NONE, &opt_version, 0,
411       "Show version", NULL },
412     { NULL, '\0', 0, NULL }
413   };
414
415   signal_add("irssi init finished", (SIGNAL_FUNC) silc_core_init_finish);
416
417   args_register(options);
418 }
419
420 /* Deinit SILC. Called from src/fe-text/silc.c */
421
422 void silc_core_deinit(void)
423 {
424   if (idletag != -1) {
425     signal_emit("chat protocol deinit", 1,
426                 chat_protocol_find("SILC"));
427     
428     silc_server_deinit();
429     silc_channels_deinit();
430     silc_queries_deinit();
431     
432     chat_protocol_unregister("SILC");
433     
434     g_source_remove(idletag);
435   }
436   
437   g_free(silc_client->username);
438   g_free(silc_client->realname);
439   silc_client_free(silc_client);
440 }