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 void silc_log_info(char *message)
162 {
163   fprintf(stderr, "%s\n", message);
164 }
165
166 static void silc_log_warning(char *message)
167 {
168   fprintf(stderr, "%s\n", message);
169 }
170
171 static void silc_log_error(char *message)
172 {
173   fprintf(stderr, "%s\n", message);
174 }
175
176 /* Init SILC. Called from src/fe-text/silc.c */
177
178 void silc_core_init(void)
179 {
180   static struct poptOption options[] = {
181     { "create-key-pair", 'C', POPT_ARG_NONE, &opt_create_keypair, 0, 
182       "Create new public key pair", NULL },
183     { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0, 
184       "Set the PKCS of the public key pair", "PKCS" },
185     { "bits", 0, POPT_ARG_INT, &opt_bits, 0, 
186       "Set the length of the public key pair", "VALUE" },
187     { "show-key", 'S', POPT_ARG_STRING, &opt_keyfile, 0, 
188       "Show the contents of the public key", "FILE" },
189     { "list-ciphers", 'C', POPT_ARG_NONE, &opt_list_ciphers, 0,
190       "List supported ciphers", NULL },
191     { "list-hash-funcs", 'H', POPT_ARG_NONE, &opt_list_hash, 0,
192       "List supported hash functions", NULL },
193     { "list-hmacs", 'H', POPT_ARG_NONE, &opt_list_hmac, 0,
194       "List supported HMACs", NULL },
195     { "list-pkcs", 'P', POPT_ARG_NONE, &opt_list_pkcs, 0,
196       "List supported PKCSs", NULL },
197     { "debug", 'd', POPT_ARG_STRING, &opt_debug, 0,
198       "Enable debugging", "STRING" },
199     { "version", 'V', POPT_ARG_NONE, &opt_version, 0,
200       "Show version", NULL },
201     { NULL, '\0', 0, NULL }
202   };
203
204   args_register(options);
205 }
206
207 static void silc_nickname_format_parse(const char *nickname,
208                                        char **ret_nickname)
209 {
210   silc_parse_userfqdn(nickname, ret_nickname, NULL);
211 }
212
213 /* Finalize init. Called from src/fe-text/silc.c */
214
215 void silc_core_init_finish(void)
216 {
217   CHAT_PROTOCOL_REC *rec;
218   SilcClientParams params;
219
220   if (opt_create_keypair == TRUE) {
221     /* Create new key pair and exit */
222     silc_cipher_register_default();
223     silc_pkcs_register_default();
224     silc_hash_register_default();
225     silc_hmac_register_default();
226     silc_client_create_key_pair(opt_pkcs, opt_bits, 
227                                 NULL, NULL, NULL, NULL, NULL);
228     exit(0);
229   }
230
231   if (opt_keyfile) {
232     /* Dump the key */
233     silc_cipher_register_default();
234     silc_pkcs_register_default();
235     silc_hash_register_default();
236     silc_hmac_register_default();
237     silc_client_show_key(opt_keyfile);
238     exit(0);
239   }
240
241   if (opt_list_ciphers) {
242     silc_cipher_register_default();
243     silc_client_list_ciphers();
244     exit(0);
245   }
246
247   if (opt_list_hash) {
248     silc_hash_register_default();
249     silc_client_list_hash_funcs();
250     exit(0);
251   }
252
253   if (opt_list_hmac) {
254     silc_hmac_register_default();
255     silc_client_list_hmacs();
256     exit(0);
257   }
258
259   if (opt_list_pkcs) {
260     silc_pkcs_register_default();
261     silc_client_list_pkcs();
262     exit(0);
263   }
264
265   if (opt_version) {
266     printf("SILC Secure Internet Live Conferencing, version %s "
267            "(base: SILC Toolkit %s)\n", silc_dist_version, silc_version);
268     printf("(c) 1997 - 2001 Pekka Riikonen <priikone@silcnet.org>\n");
269     exit(0); 
270   }
271
272   if (opt_debug) {
273     silc_debug = TRUE;
274     silc_debug_hexdump = TRUE;
275     silc_log_set_debug_string(opt_debug);
276     silc_log_set_callbacks(silc_log_info, silc_log_warning,
277                            silc_log_error, NULL);
278 #ifndef SILC_DEBUG
279     fprintf(stdout, 
280             "Run-time debugging is not enabled. To enable it recompile\n"
281             "the client with --enable-debug configuration option.\n");
282 #endif
283   }
284
285   /* Do some irssi initializing */
286   settings_add_bool("server", "skip_motd", FALSE);
287   settings_add_str("server", "alternate_nick", NULL);
288   
289   /* Initialize the auto_addr variables Is "server" the best choice for
290    * this?  No existing category seems to apply.
291    */
292   
293   settings_add_bool("server", "use_auto_addr", FALSE);
294   settings_add_str("server", "auto_bind_ip", "");
295   settings_add_str("server", "auto_public_ip", "");
296   settings_add_int("server", "auto_bind_port", 0);
297                                 
298   silc_init_userinfo();
299
300   /* Initialize client parameters */
301   memset(&params, 0, sizeof(params));
302   strcat(params.nickname_format, "%n@%h%a");
303   params.nickname_parse = silc_nickname_format_parse;
304
305   /* Allocate SILC client */
306   silc_client = silc_client_alloc(&ops, &params, NULL, silc_version_string);
307
308   /* Load local config file */
309   silc_config = silc_client_config_alloc(SILC_CLIENT_HOME_CONFIG_FILE);
310
311   /* Get user information */
312   silc_client->username = g_strdup(settings_get_str("user_name"));
313   silc_client->hostname = silc_net_localhost();
314   silc_client->realname = g_strdup(settings_get_str("real_name"));
315
316   /* Register all configured ciphers, PKCS and hash functions. */
317   if (silc_config) {
318     silc_config->client = silc_client;
319     if (!silc_client_config_register_ciphers(silc_config))
320       silc_cipher_register_default();
321     if (!silc_client_config_register_pkcs(silc_config))
322       silc_pkcs_register_default();
323     if (!silc_client_config_register_hashfuncs(silc_config))
324       silc_hash_register_default();
325     if (!silc_client_config_register_hmacs(silc_config))
326       silc_hmac_register_default();
327   } else {
328     /* Register default ciphers, pkcs, hash funtions and hmacs. */
329     silc_cipher_register_default();
330     silc_pkcs_register_default();
331     silc_hash_register_default();
332     silc_hmac_register_default();
333   }
334
335   /* Check ~/.silc directory and public and private keys */
336   if (silc_client_check_silc_dir() == FALSE) {
337     idletag = -1;
338     return;
339   }
340
341   /* Load public and private key */
342   if (silc_client_load_keys(silc_client) == FALSE) {
343     idletag = -1;
344     return;
345   }
346
347   /* Initialize the SILC client */
348   if (!silc_client_init(silc_client)) {
349     idletag = -1;
350     return;
351   }
352
353   /* Register SILC to the irssi */
354   rec = g_new0(CHAT_PROTOCOL_REC, 1);
355   rec->name = "SILC";
356   rec->fullname = "Secure Internet Live Conferencing";
357   rec->chatnet = "silcnet";
358   rec->create_chatnet = create_chatnet;
359   rec->create_server_setup = create_server_setup;
360   rec->create_channel_setup = create_channel_setup;
361   rec->create_server_connect = create_server_connect;
362   rec->server_connect = (SERVER_REC *(*) (SERVER_CONNECT_REC *))
363     silc_server_connect; 
364   rec->channel_create = (CHANNEL_REC *(*) (SERVER_REC *, const char *, int))
365     silc_channel_create;
366   rec->query_create = (QUERY_REC *(*) (const char *, const char *, int))
367     silc_query_create;
368   
369   chat_protocol_register(rec);
370   g_free(rec);
371
372   silc_server_init();
373   silc_channels_init();
374   silc_queries_init();
375
376   idletag = g_timeout_add(5, (GSourceFunc) my_silc_scheduler, NULL);
377 }
378
379 /* Deinit SILC. Called from src/fe-text/silc.c */
380
381 void silc_core_deinit(void)
382 {
383   if (idletag != -1) {
384     signal_emit("chat protocol deinit", 1,
385                 chat_protocol_find("SILC"));
386     
387     silc_server_deinit();
388     silc_channels_deinit();
389     silc_queries_deinit();
390     
391     chat_protocol_unregister("SILC");
392     
393     g_source_remove(idletag);
394   }
395   
396   g_free(silc_client->username);
397   g_free(silc_client->realname);
398   silc_client_free(silc_client);
399 }