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 SilcClientConfig silc_config = NULL;
59 extern SilcClientOperations ops;
60 extern bool silc_debug;
61 extern bool silc_debug_hexdump;
62 #ifdef SILC_SIM
63 /* SIM (SILC Module) table */
64 SilcSimContext **sims = NULL;
65 uint32 sims_count = 0;
66 #endif
67
68 static int my_silc_scheduler(void)
69 {
70   silc_client_run_one(silc_client);
71   return 1;
72 }
73
74 static CHATNET_REC *create_chatnet(void)
75 {
76   return g_malloc0(sizeof(CHATNET_REC));
77 }
78
79 static SERVER_SETUP_REC *create_server_setup(void)
80 {
81   return g_malloc0(sizeof(SERVER_SETUP_REC));
82 }
83
84 static CHANNEL_SETUP_REC *create_channel_setup(void)
85 {
86   return g_malloc0(sizeof(CHANNEL_SETUP_REC));
87 }
88
89 static SERVER_CONNECT_REC *create_server_connect(void)
90 {
91   return g_malloc0(sizeof(SILC_SERVER_CONNECT_REC));
92 }
93
94 /* Checks user information and saves them to the config file it they
95    do not exist there already. */
96
97 static void silc_init_userinfo(void)
98 {
99   const char *set, *nick, *user_name;
100   char *str;   
101         
102   /* check if nick/username/realname wasn't read from setup.. */
103   set = settings_get_str("real_name");
104   if (set == NULL || *set == '\0') {
105     str = g_getenv("SILCNAME");
106     if (!str)
107       str = g_getenv("IRCNAME");
108     settings_set_str("real_name",
109                      str != NULL ? str : g_get_real_name());
110   }
111  
112   /* username */
113   user_name = settings_get_str("user_name");
114   if (user_name == NULL || *user_name == '\0') {
115     str = g_getenv("SILCUSER");
116     if (!str)
117       str = g_getenv("IRCUSER");
118     settings_set_str("user_name",
119                      str != NULL ? str : g_get_user_name());
120     
121     user_name = settings_get_str("user_name");
122   }
123
124   /* nick */
125   nick = settings_get_str("nick");
126   if (nick == NULL || *nick == '\0') {
127     str = g_getenv("SILCNICK");
128     if (!str)
129       str = g_getenv("IRCNICK");
130     settings_set_str("nick", str != NULL ? str : user_name);
131     
132     nick = settings_get_str("nick");
133   }
134                 
135   /* alternate nick */
136   set = settings_get_str("alternate_nick");
137   if (set == NULL || *set == '\0') {
138     if (strlen(nick) < 9)
139       str = g_strconcat(nick, "_", NULL);
140     else { 
141       str = g_strdup(nick);
142       str[strlen(str)-1] = '_';
143     }
144     settings_set_str("alternate_nick", str);
145     g_free(str);
146   }
147
148   /* host name */
149   set = settings_get_str("hostname");
150   if (set == NULL || *set == '\0') {
151     str = g_getenv("SILCHOST");
152     if (!str)
153       str = g_getenv("IRCHOST");
154     if (str != NULL)
155       settings_set_str("hostname", str);
156   }
157 }
158
159 /* Log callbacks */
160
161 static bool silc_log_misc(SilcLogType type, char *message, void *context)
162 {
163   fprintf(stderr, "%s\n", message);
164   return TRUE;
165 }
166
167 /* Init SILC. Called from src/fe-text/silc.c */
168
169 void silc_core_init(void)
170 {
171   static struct poptOption options[] = {
172     { "create-key-pair", 'C', POPT_ARG_NONE, &opt_create_keypair, 0, 
173       "Create new public key pair", NULL },
174     { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0, 
175       "Set the PKCS of the public key pair", "PKCS" },
176     { "bits", 0, POPT_ARG_INT, &opt_bits, 0, 
177       "Set the length of the public key pair", "VALUE" },
178     { "show-key", 'S', POPT_ARG_STRING, &opt_keyfile, 0, 
179       "Show the contents of the public key", "FILE" },
180     { "list-ciphers", 'C', POPT_ARG_NONE, &opt_list_ciphers, 0,
181       "List supported ciphers", NULL },
182     { "list-hash-funcs", 'H', POPT_ARG_NONE, &opt_list_hash, 0,
183       "List supported hash functions", NULL },
184     { "list-hmacs", 'H', POPT_ARG_NONE, &opt_list_hmac, 0,
185       "List supported HMACs", NULL },
186     { "list-pkcs", 'P', POPT_ARG_NONE, &opt_list_pkcs, 0,
187       "List supported PKCSs", NULL },
188     { "debug", 'd', POPT_ARG_STRING, &opt_debug, 0,
189       "Enable debugging", "STRING" },
190     { "version", 'V', POPT_ARG_NONE, &opt_version, 0,
191       "Show version", NULL },
192     { NULL, '\0', 0, NULL }
193   };
194
195   args_register(options);
196 }
197
198 static void silc_nickname_format_parse(const char *nickname,
199                                        char **ret_nickname)
200 {
201   silc_parse_userfqdn(nickname, ret_nickname, NULL);
202 }
203
204 /* Finalize init. Called from src/fe-text/silc.c */
205
206 void silc_core_init_finish(void)
207 {
208   CHAT_PROTOCOL_REC *rec;
209   SilcClientParams params;
210
211   if (opt_create_keypair == TRUE) {
212     /* Create new key pair and exit */
213     silc_cipher_register_default();
214     silc_pkcs_register_default();
215     silc_hash_register_default();
216     silc_hmac_register_default();
217     silc_client_create_key_pair(opt_pkcs, opt_bits, 
218                                 NULL, NULL, NULL, NULL, NULL);
219     exit(0);
220   }
221
222   if (opt_keyfile) {
223     /* Dump the key */
224     silc_cipher_register_default();
225     silc_pkcs_register_default();
226     silc_hash_register_default();
227     silc_hmac_register_default();
228     silc_client_show_key(opt_keyfile);
229     exit(0);
230   }
231
232   if (opt_list_ciphers) {
233     silc_cipher_register_default();
234     silc_client_list_ciphers();
235     exit(0);
236   }
237
238   if (opt_list_hash) {
239     silc_hash_register_default();
240     silc_client_list_hash_funcs();
241     exit(0);
242   }
243
244   if (opt_list_hmac) {
245     silc_hmac_register_default();
246     silc_client_list_hmacs();
247     exit(0);
248   }
249
250   if (opt_list_pkcs) {
251     silc_pkcs_register_default();
252     silc_client_list_pkcs();
253     exit(0);
254   }
255
256   if (opt_version) {
257     printf("SILC Secure Internet Live Conferencing, version %s "
258            "(base: SILC Toolkit %s)\n", silc_dist_version, silc_version);
259     printf("(c) 1997 - 2001 Pekka Riikonen <priikone@silcnet.org>\n");
260     exit(0); 
261   }
262
263   if (opt_debug) {
264     silc_debug = TRUE;
265     silc_debug_hexdump = TRUE;
266     silc_log_set_debug_string(opt_debug);
267     silc_log_set_callback(SILC_LOG_INFO, silc_log_misc, NULL);
268     silc_log_set_callback(SILC_LOG_WARNING, silc_log_misc, NULL);
269     silc_log_set_callback(SILC_LOG_ERROR, silc_log_misc, NULL);
270     silc_log_set_callback(SILC_LOG_FATAL, silc_log_misc, NULL);
271 #ifndef SILC_DEBUG
272     fprintf(stdout, 
273             "Run-time debugging is not enabled. To enable it recompile\n"
274             "the client with --enable-debug configuration option.\n");
275 #endif
276   }
277
278   /* Do some irssi initializing */
279   settings_add_bool("server", "skip_motd", FALSE);
280   settings_add_str("server", "alternate_nick", NULL);
281   
282   /* Initialize the auto_addr variables Is "server" the best choice for
283    * this?  No existing category seems to apply.
284    */
285   settings_add_bool("server", "use_auto_addr", FALSE);
286   settings_add_str("server", "auto_bind_ip", "");
287   settings_add_str("server", "auto_public_ip", "");
288   settings_add_int("server", "auto_bind_port", 0);
289                                 
290   silc_init_userinfo();
291
292   /* Initialize client parameters */
293   memset(&params, 0, sizeof(params));
294   strcat(params.nickname_format, "%n@%h%a");
295   params.nickname_parse = silc_nickname_format_parse;
296
297   /* Allocate SILC client */
298   silc_client = silc_client_alloc(&ops, &params, NULL, silc_version_string);
299
300   /* Load local config file */
301   silc_config = silc_client_config_alloc(SILC_CLIENT_HOME_CONFIG_FILE);
302
303   /* Get user information */
304   silc_client->username = g_strdup(settings_get_str("user_name"));
305   silc_client->nickname = g_strdup(settings_get_str("nick"));
306   silc_client->hostname = silc_net_localhost();
307   silc_client->realname = g_strdup(settings_get_str("real_name"));
308
309   /* Register all configured ciphers, PKCS and hash functions. */
310   if (silc_config) {
311     silc_config->client = silc_client;
312     if (!silc_client_config_register_ciphers(silc_config))
313       silc_cipher_register_default();
314     if (!silc_client_config_register_pkcs(silc_config))
315       silc_pkcs_register_default();
316     if (!silc_client_config_register_hashfuncs(silc_config))
317       silc_hash_register_default();
318     if (!silc_client_config_register_hmacs(silc_config))
319       silc_hmac_register_default();
320   } else {
321     /* Register default ciphers, pkcs, hash funtions and hmacs. */
322     silc_cipher_register_default();
323     silc_pkcs_register_default();
324     silc_hash_register_default();
325     silc_hmac_register_default();
326   }
327
328   /* Check ~/.silc directory and public and private keys */
329   if (silc_client_check_silc_dir() == FALSE) {
330     idletag = -1;
331     return;
332   }
333
334   /* Load public and private key */
335   if (silc_client_load_keys(silc_client) == FALSE) {
336     idletag = -1;
337     return;
338   }
339
340   /* Initialize the SILC client */
341   if (!silc_client_init(silc_client)) {
342     idletag = -1;
343     return;
344   }
345
346   /* Register SILC to the irssi */
347   rec = g_new0(CHAT_PROTOCOL_REC, 1);
348   rec->name = "SILC";
349   rec->fullname = "Secure Internet Live Conferencing";
350   rec->chatnet = "silcnet";
351   rec->create_chatnet = create_chatnet;
352   rec->create_server_setup = create_server_setup;
353   rec->create_channel_setup = create_channel_setup;
354   rec->create_server_connect = create_server_connect;
355   rec->server_connect = (SERVER_REC *(*) (SERVER_CONNECT_REC *))
356     silc_server_connect; 
357   rec->channel_create = (CHANNEL_REC *(*) (SERVER_REC *, const char *, int))
358     silc_channel_create;
359   rec->query_create = (QUERY_REC *(*) (const char *, const char *, int))
360     silc_query_create;
361   
362   chat_protocol_register(rec);
363   g_free(rec);
364
365   silc_server_init();
366   silc_channels_init();
367   silc_queries_init();
368
369   idletag = g_timeout_add(5, (GSourceFunc) my_silc_scheduler, NULL);
370 }
371
372 /* Deinit SILC. Called from src/fe-text/silc.c */
373
374 void silc_core_deinit(void)
375 {
376   if (idletag != -1) {
377     signal_emit("chat protocol deinit", 1,
378                 chat_protocol_find("SILC"));
379     
380     silc_server_deinit();
381     silc_channels_deinit();
382     silc_queries_deinit();
383     
384     chat_protocol_unregister("SILC");
385     
386     g_source_remove(idletag);
387   }
388   
389   g_free(silc_client->username);
390   g_free(silc_client->realname);
391   silc_client_free(silc_client);
392 }