source: otr.c @ 6ce2240

Last change on this file since 6ce2240 was 6ce2240, checked in by Wilmer van der Gaast <wilmer@…>, at 2010-09-30T06:02:01Z

Merging some fixes from pesco. Adds support for the SMP flavour used by Pidgin
(otr smpq).

  • Property mode set to 100644
File size: 47.7 KB
Line 
1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2010 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/*
8  OTR support (cf. http://www.cypherpunks.ca/otr/)
9 
10  2008, Sven Moritz Hallberg <pesco@khjk.org>
11  (c) and funded by stonedcoder.org
12   
13  files used to store OTR data:
14    <configdir>/<nick>.otr_keys
15    <configdir>/<nick>.otr_fprints
16   
17  top-level todos: (search for TODO for more ;-))
18    integrate otr_load/otr_save with existing storage backends
19    per-account policy settings
20    per-user policy settings
21*/
22
23/*
24  This program is free software; you can redistribute it and/or modify
25  it under the terms of the GNU General Public License as published by
26  the Free Software Foundation; either version 2 of the License, or
27  (at your option) any later version.
28
29  This program is distributed in the hope that it will be useful,
30  but WITHOUT ANY WARRANTY; without even the implied warranty of
31  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  GNU General Public License for more details.
33
34  You should have received a copy of the GNU General Public License with
35  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
36  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
37  Suite 330, Boston, MA  02111-1307  USA
38*/
39
40#include "bitlbee.h"
41#include "irc.h"
42#include "otr.h"
43#include <sys/types.h>
44#include <sys/wait.h>
45#include <unistd.h>
46#include <assert.h>
47#include <signal.h>
48
49
50/** OTR interface routines for the OtrlMessageAppOps struct: **/
51
52OtrlPolicy op_policy(void *opdata, ConnContext *context);
53
54void op_create_privkey(void *opdata, const char *accountname, const char *protocol);
55
56int op_is_logged_in(void *opdata, const char *accountname, const char *protocol,
57        const char *recipient);
58
59void op_inject_message(void *opdata, const char *accountname, const char *protocol,
60        const char *recipient, const char *message);
61
62int op_display_otr_message(void *opdata, const char *accountname, const char *protocol,
63        const char *username, const char *msg);
64
65void op_new_fingerprint(void *opdata, OtrlUserState us, const char *accountname,
66        const char *protocol, const char *username, unsigned char fingerprint[20]);
67
68void op_write_fingerprints(void *opdata);
69
70void op_gone_secure(void *opdata, ConnContext *context);
71
72void op_gone_insecure(void *opdata, ConnContext *context);
73
74void op_still_secure(void *opdata, ConnContext *context, int is_reply);
75
76void op_log_message(void *opdata, const char *message);
77
78int op_max_message_size(void *opdata, ConnContext *context);
79
80const char *op_account_name(void *opdata, const char *account, const char *protocol);
81
82
83/** otr sub-command handlers: **/
84
85static void cmd_otr(irc_t *irc, char **args);
86void cmd_otr_connect(irc_t *irc, char **args);
87void cmd_otr_disconnect(irc_t *irc, char **args);
88void cmd_otr_smp(irc_t *irc, char **args);
89void cmd_otr_smpq(irc_t *irc, char **args);
90void cmd_otr_trust(irc_t *irc, char **args);
91void cmd_otr_info(irc_t *irc, char **args);
92void cmd_otr_keygen(irc_t *irc, char **args);
93void cmd_otr_forget(irc_t *irc, char **args);
94
95const command_t otr_commands[] = {
96        { "connect",     1, &cmd_otr_connect,    0 },
97        { "disconnect",  1, &cmd_otr_disconnect, 0 },
98        { "smp",         2, &cmd_otr_smp,        0 },
99        { "smpq",        3, &cmd_otr_smpq,       0 },
100        { "trust",       6, &cmd_otr_trust,      0 },
101        { "info",        0, &cmd_otr_info,       0 },
102        { "keygen",      1, &cmd_otr_keygen,     0 },
103        { "forget",      2, &cmd_otr_forget,     0 },
104        { NULL }
105};
106
107typedef struct {
108        void *fst;
109        void *snd;
110} pair_t;       
111
112static OtrlMessageAppOps otr_ops;   /* collects interface functions required by OTR */
113
114
115/** misc. helpers/subroutines: **/
116
117/* check whether we are already generating a key for a given account */
118int keygen_in_progress(irc_t *irc, const char *handle, const char *protocol);
119
120/* start background process to generate a (new) key for a given account */
121void otr_keygen(irc_t *irc, const char *handle, const char *protocol);
122
123/* main function for the forked keygen slave */
124void keygen_child_main(OtrlUserState us, int infd, int outfd);
125
126/* mainloop handler for when a keygen finishes */
127gboolean keygen_finish_handler(gpointer data, gint fd, b_input_condition cond);
128
129/* copy the contents of file a to file b, overwriting it if it exists */
130void copyfile(const char *a, const char *b);
131
132/* read one line of input from a stream, excluding trailing newline */
133void myfgets(char *s, int size, FILE *stream);
134
135/* some yes/no handlers */
136void yes_keygen(void *data);
137void yes_forget_fingerprint(void *data);
138void yes_forget_context(void *data);
139void yes_forget_key(void *data);
140
141/* helper to make sure accountname and protocol match the incoming "opdata" */
142struct im_connection *check_imc(void *opdata, const char *accountname,
143        const char *protocol);
144
145/* determine the nick for a given handle/protocol pair
146   returns "handle/protocol" if not found */
147const char *peernick(irc_t *irc, const char *handle, const char *protocol);
148
149/* turn a hexadecimal digit into its numerical value */
150int hexval(char a);
151
152/* determine the irc_user_t for a given handle/protocol pair
153   returns NULL if not found */
154irc_user_t *peeruser(irc_t *irc, const char *handle, const char *protocol);
155
156/* handle SMP TLVs from a received message */
157void otr_handle_smp(struct im_connection *ic, const char *handle, OtrlTLV *tlvs);
158
159/* combined handler for the 'otr smp' and 'otr smpq' commands */
160void otr_initiate_smp(irc_t *irc, const char *nick, const char *question,
161                const char *secret);
162
163/* update op/voice flag of given user according to encryption state and settings
164   returns 0 if neither op_buddies nor voice_buddies is set to "encrypted",
165   i.e. msgstate should be announced seperately */
166int otr_update_modeflags(irc_t *irc, irc_user_t *u);
167
168/* show general info about the OTR subsystem; called by 'otr info' */
169void show_general_otr_info(irc_t *irc);
170
171/* show info about a given OTR context */
172void show_otr_context_info(irc_t *irc, ConnContext *ctx);
173
174/* show the list of fingerprints associated with a given context */
175void show_fingerprints(irc_t *irc, ConnContext *ctx);
176
177/* find a fingerprint by prefix (given as any number of hex strings) */
178Fingerprint *match_fingerprint(irc_t *irc, ConnContext *ctx, const char **args);
179
180/* find a private key by fingerprint prefix (given as any number of hex strings) */
181OtrlPrivKey *match_privkey(irc_t *irc, const char **args);
182
183/* functions to be called for certain events */
184static const struct irc_plugin otr_plugin;
185
186
187/*** routines declared in otr.h: ***/
188
189#ifdef OTR_BI
190#define init_plugin otr_init
191#endif
192
193void init_plugin(void)
194{
195        OTRL_INIT;
196       
197        /* fill global OtrlMessageAppOps */
198        otr_ops.policy = &op_policy;
199        otr_ops.create_privkey = &op_create_privkey;
200        otr_ops.is_logged_in = &op_is_logged_in;
201        otr_ops.inject_message = &op_inject_message;
202        otr_ops.notify = NULL;
203        otr_ops.display_otr_message = &op_display_otr_message;
204        otr_ops.update_context_list = NULL;
205        otr_ops.protocol_name = NULL;
206        otr_ops.protocol_name_free = NULL;
207        otr_ops.new_fingerprint = &op_new_fingerprint;
208        otr_ops.write_fingerprints = &op_write_fingerprints;
209        otr_ops.gone_secure = &op_gone_secure;
210        otr_ops.gone_insecure = &op_gone_insecure;
211        otr_ops.still_secure = &op_still_secure;
212        otr_ops.log_message = &op_log_message;
213        otr_ops.max_message_size = &op_max_message_size;
214        otr_ops.account_name = &op_account_name;
215        otr_ops.account_name_free = NULL;
216       
217        root_command_add( "otr", 1, cmd_otr, 0 );
218        register_irc_plugin( &otr_plugin );
219}
220
221gboolean otr_irc_new(irc_t *irc)
222{
223        set_t *s;
224        GSList *l;
225       
226        irc->otr = g_new0(otr_t, 1);
227        irc->otr->us = otrl_userstate_create();
228       
229        s = set_add( &irc->b->set, "otr_color_encrypted", "true", set_eval_bool, irc );
230       
231        s = set_add( &irc->b->set, "otr_policy", "oppurtunistic", set_eval_list, irc );
232        l = g_slist_prepend( NULL, "never" );
233        l = g_slist_prepend( l, "opportunistic" );
234        l = g_slist_prepend( l, "manual" );
235        l = g_slist_prepend( l, "always" );
236        s->eval_data = l;
237       
238        return TRUE;
239}
240
241void otr_irc_free(irc_t *irc)
242{
243        otr_t *otr = irc->otr;
244        otrl_userstate_free(otr->us);
245        if(otr->keygen) {
246                kill(otr->keygen, SIGTERM);
247                waitpid(otr->keygen, NULL, 0);
248                /* TODO: remove stale keygen tempfiles */
249        }
250        if(otr->to)
251                fclose(otr->to);
252        if(otr->from)
253                fclose(otr->from);
254        while(otr->todo) {
255                kg_t *p = otr->todo;
256                otr->todo = p->next;
257                g_free(p);
258        }
259        g_free(otr);
260}
261
262void otr_load(irc_t *irc)
263{
264        char s[512];
265        account_t *a;
266        gcry_error_t e;
267        gcry_error_t enoent = gcry_error_from_errno(ENOENT);
268        int kg=0;
269
270        g_snprintf(s, 511, "%s%s.otr_keys", global.conf->configdir, irc->user->nick);
271        e = otrl_privkey_read(irc->otr->us, s);
272        if(e && e!=enoent) {
273                irc_usermsg(irc, "otr load: %s: %s", s, gcry_strerror(e));
274        }
275        g_snprintf(s, 511, "%s%s.otr_fprints", global.conf->configdir, irc->user->nick);
276        e = otrl_privkey_read_fingerprints(irc->otr->us, s, NULL, NULL);
277        if(e && e!=enoent) {
278                irc_usermsg(irc, "otr load: %s: %s", s, gcry_strerror(e));
279        }
280       
281        /* check for otr keys on all accounts */
282        for(a=irc->b->accounts; a; a=a->next) {
283                kg = otr_check_for_key(a) || kg;
284        }
285        if(kg) {
286                irc_usermsg(irc, "Notice: "
287                        "The accounts above do not have OTR encryption keys associated with them, yet. "
288                        "These keys are now being generated in the background. "
289                        "You will be notified as they are completed. "
290                        "It is not necessary to wait; "
291                        "BitlBee can be used normally during key generation. "
292                        "You may safely ignore this message if you don't know what OTR is. ;)");
293        }
294}
295
296void otr_save(irc_t *irc)
297{
298        char s[512];
299        gcry_error_t e;
300
301        g_snprintf(s, 511, "%s%s.otr_fprints", global.conf->configdir, irc->user->nick);
302        e = otrl_privkey_write_fingerprints(irc->otr->us, s);
303        if(e) {
304                irc_usermsg(irc, "otr save: %s: %s", s, gcry_strerror(e));
305        }
306        chmod(s, 0600);
307}
308
309void otr_remove(const char *nick)
310{
311        char s[512];
312       
313        g_snprintf(s, 511, "%s%s.otr_keys", global.conf->configdir, nick);
314        unlink(s);
315        g_snprintf(s, 511, "%s%s.otr_fprints", global.conf->configdir, nick);
316        unlink(s);
317}
318
319void otr_rename(const char *onick, const char *nnick)
320{
321        char s[512], t[512];
322       
323        g_snprintf(s, 511, "%s%s.otr_keys", global.conf->configdir, onick);
324        g_snprintf(t, 511, "%s%s.otr_keys", global.conf->configdir, nnick);
325        rename(s,t);
326        g_snprintf(s, 511, "%s%s.otr_fprints", global.conf->configdir, onick);
327        g_snprintf(t, 511, "%s%s.otr_fprints", global.conf->configdir, nnick);
328        rename(s,t);
329}
330
331int otr_check_for_key(account_t *a)
332{
333        irc_t *irc = a->bee->ui_data;
334        OtrlPrivKey *k;
335       
336        /* don't do OTR on certain (not classic IM) protocols, e.g. twitter */
337        if(a->prpl->options & OPT_NOOTR) {
338                return 0;
339        }
340       
341        k = otrl_privkey_find(irc->otr->us, a->user, a->prpl->name);
342        if(k) {
343                irc_usermsg(irc, "otr: %s/%s ready", a->user, a->prpl->name);
344                return 0;
345        } if(keygen_in_progress(irc, a->user, a->prpl->name)) {
346                irc_usermsg(irc, "otr: keygen for %s/%s already in progress", a->user, a->prpl->name);
347                return 0;
348        } else {
349                irc_usermsg(irc, "otr: starting background keygen for %s/%s", a->user, a->prpl->name);
350                otr_keygen(irc, a->user, a->prpl->name);
351                return 1;
352        }
353}
354
355char *otr_filter_msg_in(irc_user_t *iu, char *msg, int flags)
356{
357        int ignore_msg;
358        char *newmsg = NULL;
359        OtrlTLV *tlvs = NULL;
360        char *colormsg;
361        irc_t *irc = iu->irc;
362        struct im_connection *ic = iu->bu->ic;
363       
364        /* don't do OTR on certain (not classic IM) protocols, e.g. twitter */
365        if(ic->acc->prpl->options & OPT_NOOTR) {
366                return msg;
367        }
368       
369        ignore_msg = otrl_message_receiving(irc->otr->us, &otr_ops, ic,
370                ic->acc->user, ic->acc->prpl->name, iu->bu->handle, msg, &newmsg,
371                &tlvs, NULL, NULL);
372
373        otr_handle_smp(ic, iu->bu->handle, tlvs);
374       
375        if(ignore_msg) {
376                /* this was an internal OTR protocol message */
377                return NULL;
378        } else if(!newmsg) {
379                /* this was a non-OTR message */
380                return g_strdup(msg);
381        } else {
382                /* OTR has processed this message */
383                ConnContext *context = otrl_context_find(irc->otr->us, iu->bu->handle,
384                        ic->acc->user, ic->acc->prpl->name, 0, NULL, NULL, NULL);
385                if(context && context->msgstate == OTRL_MSGSTATE_ENCRYPTED &&
386                   set_getbool(&ic->bee->set, "otr_color_encrypted")) {
387                        /* color according to f'print trust */
388                        int color;
389                        const char *trust = context->active_fingerprint->trust;
390                        if(trust && trust[0] != '\0')
391                                color=3;   /* green */
392                        else
393                                color=5;   /* red */
394
395                        if(newmsg[0] == ',') {
396                                /* could be a problem with the color code */
397                                /* insert a space between color spec and message */
398                                colormsg = g_strdup_printf("\x03%.2d %s\x0F", color, newmsg);
399                        } else {
400                                colormsg = g_strdup_printf("\x03%.2d%s\x0F", color, newmsg);
401                        }
402                } else {
403                        colormsg = g_strdup(newmsg);
404                }
405                otrl_message_free(newmsg);
406                return colormsg;
407        }
408}
409
410char *otr_filter_msg_out(irc_user_t *iu, char *msg, int flags)
411{       
412        int st;
413        char *otrmsg = NULL;
414        ConnContext *ctx = NULL;
415        irc_t *irc = iu->irc;
416        struct im_connection *ic = iu->bu->ic;
417
418        /* don't do OTR on certain (not classic IM) protocols, e.g. twitter */
419        if(ic->acc->prpl->options & OPT_NOOTR) {
420                return msg;
421        }
422       
423        st = otrl_message_sending(irc->otr->us, &otr_ops, ic,
424                ic->acc->user, ic->acc->prpl->name, iu->bu->handle,
425                msg, NULL, &otrmsg, NULL, NULL);
426        if(st) {
427                return NULL;
428        }
429
430        ctx = otrl_context_find(irc->otr->us,
431                        iu->bu->handle, ic->acc->user, ic->acc->prpl->name,
432                        1, NULL, NULL, NULL);
433
434        if(otrmsg) {
435                if(!ctx) {
436                        otrl_message_free(otrmsg);
437                        return NULL;
438                }
439                st = otrl_message_fragment_and_send(&otr_ops, ic, ctx,
440                        otrmsg, OTRL_FRAGMENT_SEND_ALL, NULL);
441                otrl_message_free(otrmsg);
442        } else {
443                /* note: otrl_message_sending handles policy, so that if REQUIRE_ENCRYPTION is set,
444                   this case does not occur */
445                return msg;
446        }
447       
448        /* TODO: Error reporting should be done here now (if st!=0), probably. */
449       
450        return NULL;
451}
452
453static const struct irc_plugin otr_plugin =
454{
455        otr_irc_new,
456        otr_irc_free,
457        otr_filter_msg_out,
458        otr_filter_msg_in,
459        otr_load,
460        otr_save,
461        otr_remove,
462};
463
464static void cmd_otr(irc_t *irc, char **args)
465{
466        const command_t *cmd;
467       
468        if(!args[0])
469                return;
470       
471        if(!args[1])
472                return;
473       
474        for(cmd=otr_commands; cmd->command; cmd++) {
475                if(strcmp(cmd->command, args[1]) == 0)
476                        break;
477        }
478       
479        if(!cmd->command) {
480                irc_usermsg(irc, "%s: unknown subcommand \"%s\", see \x02help otr\x02",
481                        args[0], args[1]);
482                return;
483        }
484       
485        if(!args[cmd->required_parameters+1]) {
486                irc_usermsg(irc, "%s %s: not enough arguments (%d req.)",
487                        args[0], args[1], cmd->required_parameters);
488                return;
489        }
490       
491        cmd->execute(irc, args+1);
492}
493
494
495/*** OTR "MessageAppOps" callbacks for global.otr_ui: ***/
496
497OtrlPolicy op_policy(void *opdata, ConnContext *context)
498{
499        struct im_connection *ic = check_imc(opdata, context->accountname, context->protocol);
500        irc_t *irc = ic->bee->ui_data;
501        const char *p;
502       
503        /* policy override during keygen: if we're missing the key for context but are currently
504           generating it, then that's as much as we can do. => temporarily return NEVER. */
505        if(keygen_in_progress(irc, context->accountname, context->protocol) &&
506           !otrl_privkey_find(irc->otr->us, context->accountname, context->protocol))
507                return OTRL_POLICY_NEVER;
508
509        p = set_getstr(&ic->bee->set, "otr_policy");
510        if(!strcmp(p, "never"))
511                return OTRL_POLICY_NEVER;
512        if(!strcmp(p, "opportunistic"))
513                return OTRL_POLICY_OPPORTUNISTIC;
514        if(!strcmp(p, "manual"))
515                return OTRL_POLICY_MANUAL;
516        if(!strcmp(p, "always"))
517                return OTRL_POLICY_ALWAYS;
518       
519        return OTRL_POLICY_OPPORTUNISTIC;
520}
521
522void op_create_privkey(void *opdata, const char *accountname,
523        const char *protocol)
524{
525        struct im_connection *ic = check_imc(opdata, accountname, protocol);
526        irc_t *irc = ic->bee->ui_data;
527       
528        /* will fail silently if keygen already in progress */
529        otr_keygen(irc, accountname, protocol);
530}
531
532int op_is_logged_in(void *opdata, const char *accountname,
533        const char *protocol, const char *recipient)
534{
535        struct im_connection *ic = check_imc(opdata, accountname, protocol);
536        bee_user_t *bu;
537
538        /* lookup the irc_user_t for the given recipient */
539        bu = bee_user_by_handle(ic->bee, ic, recipient);
540        if(bu) {
541                if(bu->flags & BEE_USER_ONLINE)
542                        return 1;
543                else
544                        return 0;
545        } else {
546                return -1;
547        }
548}
549
550void op_inject_message(void *opdata, const char *accountname,
551        const char *protocol, const char *recipient, const char *message)
552{
553        struct im_connection *ic = check_imc(opdata, accountname, protocol);
554        irc_t *irc = ic->bee->ui_data;
555
556        if (strcmp(accountname, recipient) == 0) {
557                /* huh? injecting messages to myself? */
558                irc_usermsg(irc, "note to self: %s", message);
559        } else {
560                /* need to drop some consts here :-( */
561                /* TODO: get flags into op_inject_message?! */
562                ic->acc->prpl->buddy_msg(ic, (char *)recipient, (char *)message, 0);
563                /* ignoring return value :-/ */
564        }
565}
566
567int op_display_otr_message(void *opdata, const char *accountname,
568        const char *protocol, const char *username, const char *message)
569{
570        struct im_connection *ic = check_imc(opdata, accountname, protocol);
571        char *msg = g_strdup(message);
572        irc_t *irc = ic->bee->ui_data;
573
574        strip_html(msg);
575        irc_usermsg(irc, "otr: %s", msg);
576
577        g_free(msg);
578        return 0;
579}
580
581void op_new_fingerprint(void *opdata, OtrlUserState us,
582        const char *accountname, const char *protocol,
583        const char *username, unsigned char fingerprint[20])
584{
585        struct im_connection *ic = check_imc(opdata, accountname, protocol);
586        irc_t *irc = ic->bee->ui_data;
587        char hunam[45];         /* anybody looking? ;-) */
588       
589        otrl_privkey_hash_to_human(hunam, fingerprint);
590        irc_usermsg(irc, "new fingerprint for %s: %s",
591                peernick(irc, username, protocol), hunam);
592}
593
594void op_write_fingerprints(void *opdata)
595{
596        struct im_connection *ic = (struct im_connection *)opdata;
597        irc_t *irc = ic->bee->ui_data;
598
599        otr_save(irc);
600}
601
602void op_gone_secure(void *opdata, ConnContext *context)
603{
604        struct im_connection *ic =
605                check_imc(opdata, context->accountname, context->protocol);
606        irc_user_t *u;
607        irc_t *irc = ic->bee->ui_data;
608        const char *trust;
609
610        u = peeruser(irc, context->username, context->protocol);
611        if(!u) {
612                log_message(LOGLVL_ERROR,
613                        "BUG: otr.c: op_gone_secure: irc_user_t for %s/%s/%s not found!",
614                        context->username, context->protocol, context->accountname);
615                return;
616        }
617       
618        trust = context->active_fingerprint->trust;
619        if(trust && trust[0])
620                u->flags |= IRC_USER_OTR_ENCRYPTED | IRC_USER_OTR_TRUSTED;
621        else
622                u->flags = ( u->flags & ~IRC_USER_OTR_TRUSTED ) | IRC_USER_OTR_ENCRYPTED;
623        if(!otr_update_modeflags(irc, u))
624                irc_usermsg(irc, "conversation with %s is now off the record", u->nick);
625}
626
627void op_gone_insecure(void *opdata, ConnContext *context)
628{
629        struct im_connection *ic =
630                check_imc(opdata, context->accountname, context->protocol);
631        irc_t *irc = ic->bee->ui_data;
632        irc_user_t *u;
633
634        u = peeruser(irc, context->username, context->protocol);
635        if(!u) {
636                log_message(LOGLVL_ERROR,
637                        "BUG: otr.c: op_gone_insecure: irc_user_t for %s/%s/%s not found!",
638                        context->username, context->protocol, context->accountname);
639                return;
640        }
641        u->flags &= ~( IRC_USER_OTR_ENCRYPTED | IRC_USER_OTR_TRUSTED );
642        if(!otr_update_modeflags(irc, u))
643                irc_usermsg(irc, "conversation with %s is now in the clear", u->nick);
644}
645
646void op_still_secure(void *opdata, ConnContext *context, int is_reply)
647{
648        struct im_connection *ic =
649                check_imc(opdata, context->accountname, context->protocol);
650        irc_t *irc = ic->bee->ui_data;
651        irc_user_t *u;
652
653        u = peeruser(irc, context->username, context->protocol);
654        if(!u) {
655                log_message(LOGLVL_ERROR,
656                        "BUG: otr.c: op_still_secure: irc_user_t for %s/%s/%s not found!",
657                        context->username, context->protocol, context->accountname);
658                return;
659        }
660        if(context->active_fingerprint->trust[0])
661                u->flags |= IRC_USER_OTR_ENCRYPTED | IRC_USER_OTR_TRUSTED;
662        else
663                u->flags = ( u->flags & ~IRC_USER_OTR_TRUSTED ) | IRC_USER_OTR_ENCRYPTED;
664        if(!otr_update_modeflags(irc, u))
665                irc_usermsg(irc, "otr connection with %s has been refreshed", u->nick);
666}
667
668void op_log_message(void *opdata, const char *message)
669{
670        char *msg = g_strdup(message);
671       
672        strip_html(msg);
673        log_message(LOGLVL_INFO, "otr: %s", msg);
674        g_free(msg);
675}
676
677int op_max_message_size(void *opdata, ConnContext *context)
678{
679        struct im_connection *ic =
680                check_imc(opdata, context->accountname, context->protocol);
681
682        return ic->acc->prpl->mms;
683}
684
685const char *op_account_name(void *opdata, const char *account, const char *protocol)
686{
687        struct im_connection *ic = (struct im_connection *)opdata;
688        irc_t *irc = ic->bee->ui_data;
689
690        return peernick(irc, account, protocol);
691}
692
693
694/*** OTR sub-command handlers ***/
695
696void cmd_otr_disconnect(irc_t *irc, char **args)
697{
698        irc_user_t *u;
699
700        u = irc_user_by_name(irc, args[1]);
701        if(!u || !u->bu || !u->bu->ic) {
702                irc_usermsg(irc, "%s: unknown user", args[1]);
703                return;
704        }
705       
706        otrl_message_disconnect(irc->otr->us, &otr_ops,
707                u->bu->ic, u->bu->ic->acc->user, u->bu->ic->acc->prpl->name, u->bu->handle);
708       
709        /* for some reason, libotr (3.1.0) doesn't do this itself: */
710        if(u->flags & IRC_USER_OTR_ENCRYPTED) {
711                ConnContext *ctx;
712                ctx = otrl_context_find(irc->otr->us, u->bu->handle, u->bu->ic->acc->user,
713                        u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
714                if(ctx)
715                        op_gone_insecure(u->bu->ic, ctx);
716                else /* huh? */
717                        u->flags &= ( IRC_USER_OTR_ENCRYPTED | IRC_USER_OTR_TRUSTED );
718        }
719}
720
721void cmd_otr_connect(irc_t *irc, char **args)
722{
723        irc_user_t *u;
724
725        u = irc_user_by_name(irc, args[1]);
726        if(!u || !u->bu || !u->bu->ic) {
727                irc_usermsg(irc, "%s: unknown user", args[1]);
728                return;
729        }
730        if(!(u->bu->flags & BEE_USER_ONLINE)) {
731                irc_usermsg(irc, "%s is offline", args[1]);
732                return;
733        }
734       
735        bee_user_msg(irc->b, u->bu, "?OTR?", 0);
736}
737
738void cmd_otr_smp(irc_t *irc, char **args)
739{
740        otr_initiate_smp(irc, args[1], NULL, args[2]);  /* no question */
741}
742
743void cmd_otr_smpq(irc_t *irc, char **args)
744{
745        otr_initiate_smp(irc, args[1], args[2], args[3]);
746}
747
748void cmd_otr_trust(irc_t *irc, char **args)
749{
750        irc_user_t *u;
751        ConnContext *ctx;
752        unsigned char raw[20];
753        Fingerprint *fp;
754        int i,j;
755       
756        u = irc_user_by_name(irc, args[1]);
757        if(!u || !u->bu || !u->bu->ic) {
758                irc_usermsg(irc, "%s: unknown user", args[1]);
759                return;
760        }
761       
762        ctx = otrl_context_find(irc->otr->us, u->bu->handle,
763                u->bu->ic->acc->user, u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
764        if(!ctx) {
765                irc_usermsg(irc, "%s: no otr context with user", args[1]);
766                return;
767        }
768       
769        /* convert given fingerprint to raw representation */
770        for(i=0; i<5; i++) {
771                for(j=0; j<4; j++) {
772                        char *p = args[2+i]+(2*j);
773                        char *q = p+1;
774                        int x, y;
775                       
776                        if(!*p || !*q) {
777                                irc_usermsg(irc, "failed: truncated fingerprint block %d", i+1);
778                                return;
779                        }
780                       
781                        x = hexval(*p);
782                        y = hexval(*q);
783                        if(x<0) {
784                                irc_usermsg(irc, "failed: %d. hex digit of block %d out of range", 2*j+1, i+1);
785                                return;
786                        }
787                        if(y<0) {
788                                irc_usermsg(irc, "failed: %d. hex digit of block %d out of range", 2*j+2, i+1);
789                                return;
790                        }
791
792                        raw[i*4+j] = x*16 + y;
793                }
794        }
795        fp = otrl_context_find_fingerprint(ctx, raw, 0, NULL);
796        if(!fp) {
797                irc_usermsg(irc, "failed: no such fingerprint for %s", args[1]);
798        } else {
799                char *trust = args[7] ? args[7] : "affirmed";
800                otrl_context_set_trust(fp, trust);
801                irc_usermsg(irc, "fingerprint match, trust set to \"%s\"", trust);
802                if(u->flags & IRC_USER_OTR_ENCRYPTED)
803                        u->flags |= IRC_USER_OTR_TRUSTED;
804                otr_update_modeflags(irc, u);
805        }
806}
807
808void cmd_otr_info(irc_t *irc, char **args)
809{
810        if(!args[1]) {
811                show_general_otr_info(irc);
812        } else {
813                char *arg = g_strdup(args[1]);
814                char *myhandle, *handle=NULL, *protocol;
815                ConnContext *ctx;
816               
817                /* interpret arg as 'user/protocol/account' if possible */
818                protocol = strchr(arg, '/');
819                myhandle = NULL;
820                if(protocol) {
821                        *(protocol++) = '\0';
822                        myhandle = strchr(protocol, '/');
823                }
824                if(protocol && myhandle) {
825                        *(myhandle++) = '\0';
826                        handle = arg;
827                        ctx = otrl_context_find(irc->otr->us, handle, myhandle, protocol, 0, NULL, NULL, NULL);
828                        if(!ctx) {
829                                irc_usermsg(irc, "no such context");
830                                g_free(arg);
831                                return;
832                        }
833                } else {
834                        irc_user_t *u = irc_user_by_name(irc, args[1]);
835                        if(!u || !u->bu || !u->bu->ic) {
836                                irc_usermsg(irc, "%s: unknown user", args[1]);
837                                g_free(arg);
838                                return;
839                        }
840                        ctx = otrl_context_find(irc->otr->us, u->bu->handle, u->bu->ic->acc->user,
841                                u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
842                        if(!ctx) {
843                                irc_usermsg(irc, "no otr context with %s", args[1]);
844                                g_free(arg);
845                                return;
846                        }
847                }
848       
849                /* show how we resolved the (nick) argument, if we did */
850                if(handle!=arg) {
851                        irc_usermsg(irc, "%s is %s/%s; we are %s/%s to them", args[1],
852                                ctx->username, ctx->protocol, ctx->accountname, ctx->protocol);
853                }
854                show_otr_context_info(irc, ctx);
855                g_free(arg);
856        }
857}
858
859void cmd_otr_keygen(irc_t *irc, char **args)
860{
861        int i, n;
862        account_t *a;
863       
864        n = atoi(args[1]);
865        if(n<0 || (!n && strcmp(args[1], "0"))) {
866                irc_usermsg(irc, "%s: invalid account number", args[1]);
867                return;
868        }
869       
870        a = irc->b->accounts;
871        for(i=0; i<n && a; i++, a=a->next);
872        if(!a) {
873                irc_usermsg(irc, "%s: no such account", args[1]);
874                return;
875        }
876       
877        if(keygen_in_progress(irc, a->user, a->prpl->name)) {
878                irc_usermsg(irc, "keygen for account %d already in progress", n);
879                return;
880        }
881       
882        if(otrl_privkey_find(irc->otr->us, a->user, a->prpl->name)) {
883                char *s = g_strdup_printf("account %d already has a key, replace it?", n);
884                query_add(irc, NULL, s, yes_keygen, NULL, NULL, a);
885                g_free(s);
886        } else {
887                otr_keygen(irc, a->user, a->prpl->name);
888        }
889}
890
891void yes_forget_fingerprint(void *data)
892{
893        pair_t *p = (pair_t *)data;
894        irc_t *irc = (irc_t *)p->fst;
895        Fingerprint *fp = (Fingerprint *)p->snd;
896
897        g_free(p);
898       
899        if(fp == fp->context->active_fingerprint) {
900                irc_usermsg(irc, "that fingerprint is active, terminate otr connection first");
901                return;
902        }
903               
904        otrl_context_forget_fingerprint(fp, 0);
905}
906
907void yes_forget_context(void *data)
908{
909        pair_t *p = (pair_t *)data;
910        irc_t *irc = (irc_t *)p->fst;
911        ConnContext *ctx = (ConnContext *)p->snd;
912
913        g_free(p);
914       
915        if(ctx->msgstate == OTRL_MSGSTATE_ENCRYPTED) {
916                irc_usermsg(irc, "active otr connection with %s, terminate it first",
917                        peernick(irc, ctx->username, ctx->protocol));
918                return;
919        }
920               
921        if(ctx->msgstate == OTRL_MSGSTATE_FINISHED)
922                otrl_context_force_plaintext(ctx);
923        otrl_context_forget(ctx);
924}
925
926void yes_forget_key(void *data)
927{
928        OtrlPrivKey *key = (OtrlPrivKey *)data;
929       
930        otrl_privkey_forget(key);
931        /* Hm, libotr doesn't seem to offer a function for explicitly /writing/
932           keyfiles. So the key will be back on the next load... */
933        /* TODO: Actually erase forgotten keys from storage? */
934}
935
936void cmd_otr_forget(irc_t *irc, char **args)
937{
938        if(!strcmp(args[1], "fingerprint"))
939        {
940                irc_user_t *u;
941                ConnContext *ctx;
942                Fingerprint *fp;
943                char human[54];
944                char *s;
945                pair_t *p;
946               
947                if(!args[3]) {
948                        irc_usermsg(irc, "otr %s %s: not enough arguments (2 req.)", args[0], args[1]);
949                        return;
950                }
951               
952                /* TODO: allow context specs ("user/proto/account") in 'otr forget fingerprint'? */
953                u = irc_user_by_name(irc, args[2]);
954                if(!u || !u->bu || !u->bu->ic) {
955                        irc_usermsg(irc, "%s: unknown user", args[2]);
956                        return;
957                }
958               
959                ctx = otrl_context_find(irc->otr->us, u->bu->handle, u->bu->ic->acc->user,
960                        u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
961                if(!ctx) {
962                        irc_usermsg(irc, "no otr context with %s", args[2]);
963                        return;
964                }
965               
966                fp = match_fingerprint(irc, ctx, ((const char **)args)+3);
967                if(!fp) {
968                        /* match_fingerprint does error messages */
969                        return;
970                }
971               
972                if(fp == ctx->active_fingerprint) {
973                        irc_usermsg(irc, "that fingerprint is active, terminate otr connection first");
974                        return;
975                }
976               
977                otrl_privkey_hash_to_human(human, fp->fingerprint);
978                s = g_strdup_printf("about to forget fingerprint %s, are you sure?", human);
979                p = g_malloc(sizeof(pair_t));
980                if(!p)
981                        return;
982                p->fst = irc;
983                p->snd = fp;
984                query_add(irc, NULL, s, yes_forget_fingerprint, NULL, NULL, p);
985                g_free(s);
986        }
987       
988        else if(!strcmp(args[1], "context"))
989        {
990                irc_user_t *u;
991                ConnContext *ctx;
992                char *s;
993                pair_t *p;
994               
995                /* TODO: allow context specs ("user/proto/account") in 'otr forget contex'? */
996                u = irc_user_by_name(irc, args[2]);
997                if(!u || !u->bu || !u->bu->ic) {
998                        irc_usermsg(irc, "%s: unknown user", args[2]);
999                        return;
1000                }
1001               
1002                ctx = otrl_context_find(irc->otr->us, u->bu->handle, u->bu->ic->acc->user,
1003                        u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
1004                if(!ctx) {
1005                        irc_usermsg(irc, "no otr context with %s", args[2]);
1006                        return;
1007                }
1008               
1009                if(ctx->msgstate == OTRL_MSGSTATE_ENCRYPTED) {
1010                        irc_usermsg(irc, "active otr connection with %s, terminate it first", args[2]);
1011                        return;
1012                }
1013               
1014                s = g_strdup_printf("about to forget otr data about %s, are you sure?", args[2]);
1015                p = g_malloc(sizeof(pair_t));
1016                if(!p)
1017                        return;
1018                p->fst = irc;
1019                p->snd = ctx;
1020                query_add(irc, NULL, s, yes_forget_context, NULL, NULL, p);
1021                g_free(s);
1022        }
1023       
1024        else if(!strcmp(args[1], "key"))
1025        {
1026                OtrlPrivKey *key;
1027                char *s;
1028               
1029                key = match_privkey(irc, ((const char **)args)+2);
1030                if(!key) {
1031                        /* match_privkey does error messages */
1032                        return;
1033                }
1034               
1035                s = g_strdup_printf("about to forget the private key for %s/%s, are you sure?",
1036                        key->accountname, key->protocol);
1037                query_add(irc, NULL, s, yes_forget_key, NULL, NULL, key);
1038                g_free(s);
1039        }
1040       
1041        else
1042        {
1043                irc_usermsg(irc, "otr %s: unknown subcommand \"%s\", see \x02help otr forget\x02",
1044                        args[0], args[1]);
1045        }
1046}
1047
1048
1049/*** local helpers / subroutines: ***/
1050
1051/* Socialist Millionaires' Protocol */
1052void otr_handle_smp(struct im_connection *ic, const char *handle, OtrlTLV *tlvs)
1053{
1054        irc_t *irc = ic->bee->ui_data;
1055        OtrlUserState us = irc->otr->us;
1056        OtrlMessageAppOps *ops = &otr_ops;
1057        OtrlTLV *tlv = NULL;
1058        ConnContext *context;
1059        NextExpectedSMP nextMsg;
1060        irc_user_t *u;
1061        bee_user_t *bu;
1062
1063        bu = bee_user_by_handle(ic->bee, ic, handle);
1064        if(!bu || !(u = bu->ui_data)) return;
1065        context = otrl_context_find(us, handle,
1066                ic->acc->user, ic->acc->prpl->name, 1, NULL, NULL, NULL);
1067        if(!context) {
1068                /* huh? out of memory or what? */
1069                irc_usermsg(irc, "smp: failed to get otr context for %s", u->nick);
1070                otrl_message_abort_smp(us, ops, u->bu->ic, context);
1071                otrl_sm_state_free(context->smstate);
1072                return;
1073        }
1074        nextMsg = context->smstate->nextExpected;
1075
1076        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP1Q);
1077        if (tlv) {
1078                if (nextMsg != OTRL_SMP_EXPECT1) {
1079                        irc_usermsg(irc, "smp %s: spurious SMP1Q received, aborting", u->nick);
1080                        otrl_message_abort_smp(us, ops, u->bu->ic, context);
1081                        otrl_sm_state_free(context->smstate);
1082                } else {
1083                        char *question = g_strndup((char *)tlv->data, tlv->len);
1084                        irc_usermsg(irc, "smp: initiated by %s with question: \"%s\"", u->nick,
1085                                question);
1086                        irc_usermsg(irc, "smp: respond with \x02otr smp %s <answer>\x02",
1087                                u->nick);
1088                        g_free(question);
1089                        /* smp stays in EXPECT1 until user responds */
1090                }
1091        }
1092        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP1);
1093        if (tlv) {
1094                if (nextMsg != OTRL_SMP_EXPECT1) {
1095                        irc_usermsg(irc, "smp %s: spurious SMP1 received, aborting", u->nick);
1096                        otrl_message_abort_smp(us, ops, u->bu->ic, context);
1097                        otrl_sm_state_free(context->smstate);
1098                } else {
1099                        irc_usermsg(irc, "smp: initiated by %s"
1100                                " - respond with \x02otr smp %s <secret>\x02",
1101                                u->nick, u->nick);
1102                        /* smp stays in EXPECT1 until user responds */
1103                }
1104        }
1105        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP2);
1106        if (tlv) {
1107                if (nextMsg != OTRL_SMP_EXPECT2) {
1108                        irc_usermsg(irc, "smp %s: spurious SMP2 received, aborting", u->nick);
1109                        otrl_message_abort_smp(us, ops, u->bu->ic, context);
1110                        otrl_sm_state_free(context->smstate);
1111                } else {
1112                        /* SMP2 received, otrl_message_receiving will have sent SMP3 */
1113                        context->smstate->nextExpected = OTRL_SMP_EXPECT4;
1114                }
1115        }
1116        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP3);
1117        if (tlv) {
1118                if (nextMsg != OTRL_SMP_EXPECT3) {
1119                        irc_usermsg(irc, "smp %s: spurious SMP3 received, aborting", u->nick);
1120                        otrl_message_abort_smp(us, ops, u->bu->ic, context);
1121                        otrl_sm_state_free(context->smstate);
1122                } else {
1123                        /* SMP3 received, otrl_message_receiving will have sent SMP4 and set fp trust */
1124                        const char *trust = context->active_fingerprint->trust;
1125                        if(!trust || trust[0]=='\0') {
1126                                irc_usermsg(irc, "smp %s: secrets did not match, fingerprint not trusted",
1127                                        u->nick);
1128                        } else {
1129                                irc_usermsg(irc, "smp %s: secrets proved equal, fingerprint trusted",
1130                                        u->nick);
1131                        }
1132                        otrl_sm_state_free(context->smstate);
1133                        /* smp is in back in EXPECT1 */
1134                }
1135        }
1136        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP4);
1137        if (tlv) {
1138                if (nextMsg != OTRL_SMP_EXPECT4) {
1139                        irc_usermsg(irc, "smp %s: spurious SMP4 received, aborting", u->nick);
1140                        otrl_message_abort_smp(us, ops, u->bu->ic, context);
1141                        otrl_sm_state_free(context->smstate);
1142                } else {
1143                        /* SMP4 received, otrl_message_receiving will have set fp trust */
1144                        const char *trust = context->active_fingerprint->trust;
1145                        if(!trust || trust[0]=='\0') {
1146                                irc_usermsg(irc, "smp %s: secrets did not match, fingerprint not trusted",
1147                                        u->nick);
1148                        } else {
1149                                irc_usermsg(irc, "smp %s: secrets proved equal, fingerprint trusted",
1150                                        u->nick);
1151                        }
1152                        otrl_sm_state_free(context->smstate);
1153                        /* smp is in back in EXPECT1 */
1154                }
1155        }
1156        tlv = otrl_tlv_find(tlvs, OTRL_TLV_SMP_ABORT);
1157        if (tlv) {
1158                irc_usermsg(irc, "smp: received abort from %s", u->nick);
1159                otrl_sm_state_free(context->smstate);
1160                /* smp is in back in EXPECT1 */
1161        }
1162}
1163
1164/* combined handler for the 'otr smp' and 'otr smpq' commands */
1165void otr_initiate_smp(irc_t *irc, const char *nick, const char *question,
1166                const char *secret)
1167{
1168        irc_user_t *u;
1169        ConnContext *ctx;
1170
1171        u = irc_user_by_name(irc, nick);
1172        if(!u || !u->bu || !u->bu->ic) {
1173                irc_usermsg(irc, "%s: unknown user", nick);
1174                return;
1175        }
1176        if(!(u->bu->flags & BEE_USER_ONLINE)) {
1177                irc_usermsg(irc, "%s is offline", nick);
1178                return;
1179        }
1180       
1181        ctx = otrl_context_find(irc->otr->us, u->bu->handle,
1182                u->bu->ic->acc->user, u->bu->ic->acc->prpl->name, 0, NULL, NULL, NULL);
1183        if(!ctx || ctx->msgstate != OTRL_MSGSTATE_ENCRYPTED) {
1184                irc_usermsg(irc, "smp: otr inactive with %s, try \x02otr connect"
1185                                " %s\x02", nick, nick);
1186                return;
1187        }
1188
1189        if(ctx->smstate->nextExpected != OTRL_SMP_EXPECT1) {
1190                log_message(LOGLVL_INFO,
1191                        "SMP already in phase %d, sending abort before reinitiating",
1192                        ctx->smstate->nextExpected+1);
1193                otrl_message_abort_smp(irc->otr->us, &otr_ops, u->bu->ic, ctx);
1194                otrl_sm_state_free(ctx->smstate);
1195        }
1196       
1197        if(question) {
1198                /* this was 'otr smpq', just initiate */
1199                irc_usermsg(irc, "smp: initiating with %s...", u->nick);
1200                otrl_message_initiate_smp_q(irc->otr->us, &otr_ops, u->bu->ic, ctx,
1201                        question, (unsigned char *)secret, strlen(secret));
1202                /* smp is now in EXPECT2 */
1203        } else {
1204                /* this was 'otr smp', initiate or reply */
1205                /* warning: the following assumes that smstates are cleared whenever an SMP
1206                   is completed or aborted! */ 
1207                if(ctx->smstate->secret == NULL) {
1208                        irc_usermsg(irc, "smp: initiating with %s...", u->nick);
1209                        otrl_message_initiate_smp(irc->otr->us, &otr_ops,
1210                                u->bu->ic, ctx, (unsigned char *)secret, strlen(secret));
1211                        /* smp is now in EXPECT2 */
1212                } else {
1213                        /* if we're still in EXPECT1 but smstate is initialized, we must have
1214                           received the SMP1, so let's issue a response */
1215                        irc_usermsg(irc, "smp: responding to %s...", u->nick);
1216                        otrl_message_respond_smp(irc->otr->us, &otr_ops,
1217                                u->bu->ic, ctx, (unsigned char *)secret, strlen(secret));
1218                        /* smp is now in EXPECT3 */
1219                }
1220        }
1221}
1222
1223/* helper to assert that account and protocol names given to ops below always
1224   match the im_connection passed through as opdata */
1225struct im_connection *check_imc(void *opdata, const char *accountname,
1226        const char *protocol)
1227{
1228        struct im_connection *ic = (struct im_connection *)opdata;
1229
1230        if (strcmp(accountname, ic->acc->user) != 0) {
1231                log_message(LOGLVL_WARNING,
1232                        "otr: internal account name mismatch: '%s' vs '%s'",
1233                        accountname, ic->acc->user);
1234        }
1235        if (strcmp(protocol, ic->acc->prpl->name) != 0) {
1236                log_message(LOGLVL_WARNING,
1237                        "otr: internal protocol name mismatch: '%s' vs '%s'",
1238                        protocol, ic->acc->prpl->name);
1239        }
1240       
1241        return ic;
1242}
1243
1244irc_user_t *peeruser(irc_t *irc, const char *handle, const char *protocol)
1245{
1246        GSList *l;
1247       
1248        for(l=irc->b->users; l; l = l->next) {
1249                bee_user_t *bu = l->data;
1250                struct prpl *prpl;
1251                if(!bu->ui_data || !bu->ic || !bu->handle)
1252                        continue;
1253                prpl = bu->ic->acc->prpl;
1254                if(strcmp(prpl->name, protocol) == 0
1255                        && prpl->handle_cmp(bu->handle, handle) == 0) {
1256                        return bu->ui_data;
1257                }
1258        }
1259       
1260        return NULL;
1261}
1262
1263int hexval(char a)
1264{
1265        int x=tolower(a);
1266       
1267        if(x>='a' && x<='f')
1268                x = x - 'a' + 10;
1269        else if(x>='0' && x<='9')
1270                x = x - '0';
1271        else
1272                return -1;
1273       
1274        return x;
1275}
1276
1277const char *peernick(irc_t *irc, const char *handle, const char *protocol)
1278{
1279        static char fallback[512];
1280       
1281        irc_user_t *u = peeruser(irc, handle, protocol);
1282        if(u) {
1283                return u->nick;
1284        } else {
1285                g_snprintf(fallback, 511, "%s/%s", handle, protocol);
1286                return fallback;
1287        }
1288}
1289
1290int otr_update_modeflags(irc_t *irc, irc_user_t *u)
1291{
1292        return 1;
1293}
1294
1295void show_fingerprints(irc_t *irc, ConnContext *ctx)
1296{
1297        char human[45];
1298        Fingerprint *fp;
1299        const char *trust;
1300        int count=0;
1301       
1302        for(fp=&ctx->fingerprint_root; fp; fp=fp->next) {
1303                if(!fp->fingerprint)
1304                        continue;
1305                count++;
1306                otrl_privkey_hash_to_human(human, fp->fingerprint);
1307                if(!fp->trust || fp->trust[0] == '\0') {
1308                        trust="untrusted";
1309                } else {
1310                        trust=fp->trust;
1311                }
1312                if(fp == ctx->active_fingerprint) {
1313                        irc_usermsg(irc, "    \x02%s (%s)\x02", human, trust);
1314                } else {
1315                        irc_usermsg(irc, "    %s (%s)", human, trust);
1316                }
1317        }
1318        if(count==0)
1319                irc_usermsg(irc, "    (none)");
1320}
1321
1322Fingerprint *match_fingerprint(irc_t *irc, ConnContext *ctx, const char **args)
1323{
1324        Fingerprint *fp, *fp2;
1325        char human[45];
1326        char prefix[45], *p;
1327        int n;
1328        int i,j;
1329       
1330        /* assemble the args into a prefix in standard "human" form */
1331        n=0;
1332        p=prefix;
1333        for(i=0; args[i]; i++) {
1334                for(j=0; args[i][j]; j++) {
1335                        char c = toupper(args[i][j]);
1336                       
1337                        if(n>=40) {
1338                                irc_usermsg(irc, "too many fingerprint digits given, expected at most 40");
1339                                return NULL;
1340                        }
1341                       
1342                        if( (c>='A' && c<='F') || (c>='0' && c<='9') ) {
1343                                *(p++) = c;
1344                        } else {
1345                                irc_usermsg(irc, "invalid hex digit '%c' in block %d", args[i][j], i+1);
1346                                return NULL;
1347                        }
1348                       
1349                        n++;
1350                        if(n%8 == 0)
1351                                *(p++) = ' ';
1352                }
1353        }
1354        *p = '\0';
1355       
1356        /* find first fingerprint with the given prefix */
1357        n = strlen(prefix);
1358        for(fp=&ctx->fingerprint_root; fp; fp=fp->next) {
1359                if(!fp->fingerprint)
1360                        continue;
1361                otrl_privkey_hash_to_human(human, fp->fingerprint);
1362                if(!strncmp(prefix, human, n))
1363                        break;
1364        }
1365        if(!fp) {
1366                irc_usermsg(irc, "%s: no match", prefix);
1367                return NULL;
1368        }
1369       
1370        /* make sure the match, if any, is unique */
1371        for(fp2=fp->next; fp2; fp2=fp2->next) {
1372                if(!fp2->fingerprint)
1373                        continue;
1374                otrl_privkey_hash_to_human(human, fp2->fingerprint);
1375                if(!strncmp(prefix, human, n))
1376                        break;
1377        }
1378        if(fp2) {
1379                irc_usermsg(irc, "%s: multiple matches", prefix);
1380                return NULL;
1381        }
1382       
1383        return fp;
1384}
1385
1386OtrlPrivKey *match_privkey(irc_t *irc, const char **args)
1387{
1388        OtrlPrivKey *k, *k2;
1389        char human[45];
1390        char prefix[45], *p;
1391        int n;
1392        int i,j;
1393       
1394        /* assemble the args into a prefix in standard "human" form */
1395        n=0;
1396        p=prefix;
1397        for(i=0; args[i]; i++) {
1398                for(j=0; args[i][j]; j++) {
1399                        char c = toupper(args[i][j]);
1400                       
1401                        if(n>=40) {
1402                                irc_usermsg(irc, "too many fingerprint digits given, expected at most 40");
1403                                return NULL;
1404                        }
1405                       
1406                        if( (c>='A' && c<='F') || (c>='0' && c<='9') ) {
1407                                *(p++) = c;
1408                        } else {
1409                                irc_usermsg(irc, "invalid hex digit '%c' in block %d", args[i][j], i+1);
1410                                return NULL;
1411                        }
1412                       
1413                        n++;
1414                        if(n%8 == 0)
1415                                *(p++) = ' ';
1416                }
1417        }
1418        *p = '\0';
1419       
1420        /* find first key which matches the given prefix */
1421        n = strlen(prefix);
1422        for(k=irc->otr->us->privkey_root; k; k=k->next) {
1423                p = otrl_privkey_fingerprint(irc->otr->us, human, k->accountname, k->protocol);
1424                if(!p) /* gah! :-P */
1425                        continue;
1426                if(!strncmp(prefix, human, n))
1427                        break;
1428        }
1429        if(!k) {
1430                irc_usermsg(irc, "%s: no match", prefix);
1431                return NULL;
1432        }
1433       
1434        /* make sure the match, if any, is unique */
1435        for(k2=k->next; k2; k2=k2->next) {
1436                p = otrl_privkey_fingerprint(irc->otr->us, human, k2->accountname, k2->protocol);
1437                if(!p) /* gah! :-P */
1438                        continue;
1439                if(!strncmp(prefix, human, n))
1440                        break;
1441        }
1442        if(k2) {
1443                irc_usermsg(irc, "%s: multiple matches", prefix);
1444                return NULL;
1445        }
1446       
1447        return k;
1448}
1449
1450void show_general_otr_info(irc_t *irc)
1451{
1452        ConnContext *ctx;
1453        OtrlPrivKey *key;
1454        char human[45];
1455        kg_t *kg;
1456
1457        /* list all privkeys (including ones being generated) */
1458        irc_usermsg(irc, "\x1fprivate keys:\x1f");
1459        for(key=irc->otr->us->privkey_root; key; key=key->next) {
1460                const char *hash;
1461               
1462                switch(key->pubkey_type) {
1463                case OTRL_PUBKEY_TYPE_DSA:
1464                        irc_usermsg(irc, "  %s/%s - DSA", key->accountname, key->protocol);
1465                        break;
1466                default:
1467                        irc_usermsg(irc, "  %s/%s - type %d", key->accountname, key->protocol,
1468                                key->pubkey_type);
1469                }
1470
1471                /* No, it doesn't make much sense to search for the privkey again by
1472                   account/protocol, but libotr currently doesn't provide a direct routine
1473                   for hashing a given 'OtrlPrivKey'... */
1474                hash = otrl_privkey_fingerprint(irc->otr->us, human, key->accountname, key->protocol);
1475                if(hash) /* should always succeed */
1476                        irc_usermsg(irc, "    %s", human);
1477        }
1478        if(irc->otr->sent_accountname) {
1479                irc_usermsg(irc, "  %s/%s - DSA", irc->otr->sent_accountname,
1480                        irc->otr->sent_protocol);
1481                irc_usermsg(irc, "    (being generated)");
1482        }
1483        for(kg=irc->otr->todo; kg; kg=kg->next) {
1484                irc_usermsg(irc, "  %s/%s - DSA", kg->accountname, kg->protocol);
1485                irc_usermsg(irc, "    (queued)");
1486        }
1487        if(key == irc->otr->us->privkey_root &&
1488           !irc->otr->sent_accountname &&
1489           kg == irc->otr->todo)
1490                irc_usermsg(irc, "  (none)");
1491
1492        /* list all contexts */
1493        irc_usermsg(irc, "%s", "");
1494        irc_usermsg(irc, "\x1f" "connection contexts:\x1f (bold=currently encrypted)");
1495        for(ctx=irc->otr->us->context_root; ctx; ctx=ctx->next) {\
1496                irc_user_t *u;
1497                char *userstring;
1498               
1499                u = peeruser(irc, ctx->username, ctx->protocol);
1500                if(u)
1501                        userstring = g_strdup_printf("%s/%s/%s (%s)",
1502                                ctx->username, ctx->protocol, ctx->accountname, u->nick);
1503                else
1504                        userstring = g_strdup_printf("%s/%s/%s",
1505                                ctx->username, ctx->protocol, ctx->accountname);
1506               
1507                if(ctx->msgstate == OTRL_MSGSTATE_ENCRYPTED) {
1508                        irc_usermsg(irc, \x02%s\x02", userstring);
1509                } else {
1510                        irc_usermsg(irc, "  %s", userstring);
1511                }
1512               
1513                g_free(userstring);
1514        }
1515        if(ctx == irc->otr->us->context_root)
1516                irc_usermsg(irc, "  (none)");
1517}
1518
1519void show_otr_context_info(irc_t *irc, ConnContext *ctx)
1520{
1521        switch(ctx->otr_offer) {
1522        case OFFER_NOT:
1523                irc_usermsg(irc, "  otr offer status: none sent");
1524                break;
1525        case OFFER_SENT:
1526                irc_usermsg(irc, "  otr offer status: awaiting reply");
1527                break;
1528        case OFFER_ACCEPTED:
1529                irc_usermsg(irc, "  otr offer status: accepted our offer");
1530                break;
1531        case OFFER_REJECTED:
1532                irc_usermsg(irc, "  otr offer status: ignored our offer");
1533                break;
1534        default:
1535                irc_usermsg(irc, "  otr offer status: %d", ctx->otr_offer);
1536        }
1537
1538        switch(ctx->msgstate) {
1539        case OTRL_MSGSTATE_PLAINTEXT:
1540                irc_usermsg(irc, "  connection state: cleartext");
1541                break;
1542        case OTRL_MSGSTATE_ENCRYPTED:
1543                irc_usermsg(irc, "  connection state: encrypted (v%d)", ctx->protocol_version);
1544                break;
1545        case OTRL_MSGSTATE_FINISHED:
1546                irc_usermsg(irc, "  connection state: shut down");
1547                break;
1548        default:
1549                irc_usermsg(irc, "  connection state: %d", ctx->msgstate);
1550        }
1551
1552        irc_usermsg(irc, "  fingerprints: (bold=active)");     
1553        show_fingerprints(irc, ctx);
1554}
1555
1556int keygen_in_progress(irc_t *irc, const char *handle, const char *protocol)
1557{
1558        kg_t *kg;
1559       
1560        if(!irc->otr->sent_accountname || !irc->otr->sent_protocol)
1561                return 0;
1562
1563        /* are we currently working on this key? */
1564        if(!strcmp(handle, irc->otr->sent_accountname) &&
1565           !strcmp(protocol, irc->otr->sent_protocol))
1566                return 1;
1567       
1568        /* do we have it queued for later? */
1569        for(kg=irc->otr->todo; kg; kg=kg->next) {
1570                if(!strcmp(handle, kg->accountname) &&
1571                   !strcmp(protocol, kg->protocol))
1572                        return 1;
1573        }
1574       
1575        return 0;
1576}
1577
1578void otr_keygen(irc_t *irc, const char *handle, const char *protocol)
1579{
1580        /* do nothing if a key for the requested account is already being generated */
1581        if(keygen_in_progress(irc, handle, protocol))
1582                return;
1583
1584        /* see if we already have a keygen child running. if not, start one and put a
1585           handler on its output. */
1586        if(!irc->otr->keygen || waitpid(irc->otr->keygen, NULL, WNOHANG)) {
1587                pid_t p;
1588                int to[2], from[2];
1589                FILE *tof, *fromf;
1590               
1591                if(pipe(to) < 0 || pipe(from) < 0) {
1592                        irc_usermsg(irc, "otr keygen: couldn't create pipe: %s", strerror(errno));
1593                        return;
1594                }
1595               
1596                tof = fdopen(to[1], "w");
1597                fromf = fdopen(from[0], "r");
1598                if(!tof || !fromf) {
1599                        irc_usermsg(irc, "otr keygen: couldn't streamify pipe: %s", strerror(errno));
1600                        return;
1601                }
1602               
1603                p = fork();
1604                if(p<0) {
1605                        irc_usermsg(irc, "otr keygen: couldn't fork: %s", strerror(errno));
1606                        return;
1607                }
1608               
1609                if(!p) {
1610                        /* child process */
1611                        signal(SIGTERM, exit);
1612                        keygen_child_main(irc->otr->us, to[0], from[1]);
1613                        exit(0);
1614                }
1615               
1616                irc->otr->keygen = p;
1617                irc->otr->to = tof;
1618                irc->otr->from = fromf;
1619                irc->otr->sent_accountname = NULL;
1620                irc->otr->sent_protocol = NULL;
1621                irc->otr->todo = NULL;
1622                b_input_add(from[0], B_EV_IO_READ, keygen_finish_handler, irc);
1623        }
1624       
1625        /* is the keygen slave currently working? */
1626        if(irc->otr->sent_accountname) {
1627                /* enqueue our job for later transmission */
1628                kg_t **kg = &irc->otr->todo;
1629                while(*kg)
1630                        kg=&((*kg)->next);
1631                *kg = g_new0(kg_t, 1);
1632                (*kg)->accountname = g_strdup(handle);
1633                (*kg)->protocol = g_strdup(protocol);
1634        } else {
1635                /* send our job over and remember it */
1636                fprintf(irc->otr->to, "%s\n%s\n", handle, protocol);
1637                fflush(irc->otr->to);
1638                irc->otr->sent_accountname = g_strdup(handle);
1639                irc->otr->sent_protocol = g_strdup(protocol);
1640        }
1641}
1642
1643void keygen_child_main(OtrlUserState us, int infd, int outfd)
1644{
1645        FILE *input, *output;
1646        char filename[128], accountname[512], protocol[512];
1647        gcry_error_t e;
1648        int tempfd;
1649       
1650        input = fdopen(infd, "r");
1651        output = fdopen(outfd, "w");
1652       
1653        while(!feof(input) && !ferror(input) && !feof(output) && !ferror(output)) {
1654                myfgets(accountname, 512, input);
1655                myfgets(protocol, 512, input);
1656               
1657                strncpy(filename, "/tmp/bitlbee-XXXXXX", 128);
1658                tempfd = mkstemp(filename);
1659                close(tempfd);
1660
1661                e = otrl_privkey_generate(us, filename, accountname, protocol);
1662                if(e) {
1663                        fprintf(output, "\n");  /* this means failure */
1664                        fprintf(output, "otr keygen: %s\n", gcry_strerror(e));
1665                        unlink(filename);
1666                } else {
1667                        fprintf(output, "%s\n", filename);
1668                        fprintf(output, "otr keygen for %s/%s complete\n", accountname, protocol);
1669                }
1670                fflush(output);
1671        }
1672       
1673        fclose(input);
1674        fclose(output);
1675}
1676
1677gboolean keygen_finish_handler(gpointer data, gint fd, b_input_condition cond)
1678{
1679        irc_t *irc = (irc_t *)data;
1680        char filename[512], msg[512];
1681
1682        myfgets(filename, 512, irc->otr->from);
1683        myfgets(msg, 512, irc->otr->from);
1684       
1685        irc_usermsg(irc, "%s", msg);
1686        if(filename[0]) {
1687                char *kf = g_strdup_printf("%s%s.otr_keys", global.conf->configdir, irc->user->nick);
1688                char *tmp = g_strdup_printf("%s.new", kf);
1689                copyfile(filename, tmp);
1690                unlink(filename);
1691                rename(tmp,kf);
1692                otrl_privkey_read(irc->otr->us, kf);
1693                g_free(kf);
1694                g_free(tmp);
1695        }
1696       
1697        /* forget this job */
1698        g_free(irc->otr->sent_accountname);
1699        g_free(irc->otr->sent_protocol);
1700        irc->otr->sent_accountname = NULL;
1701        irc->otr->sent_protocol = NULL;
1702       
1703        /* see if there are any more in the queue */
1704        if(irc->otr->todo) {
1705                kg_t *p = irc->otr->todo;
1706                /* send the next one over */
1707                fprintf(irc->otr->to, "%s\n%s\n", p->accountname, p->protocol);
1708                fflush(irc->otr->to);
1709                irc->otr->sent_accountname = p->accountname;
1710                irc->otr->sent_protocol = p->protocol;
1711                irc->otr->todo = p->next;
1712                g_free(p);
1713                return TRUE;   /* keep watching */
1714        } else {
1715                /* okay, the slave is idle now, so kill him */
1716                fclose(irc->otr->from);
1717                fclose(irc->otr->to);
1718                irc->otr->from = irc->otr->to = NULL;
1719                kill(irc->otr->keygen, SIGTERM);
1720                waitpid(irc->otr->keygen, NULL, 0);
1721                irc->otr->keygen = 0;
1722                return FALSE;  /* unregister ourselves */
1723        }
1724}
1725
1726void copyfile(const char *a, const char *b)
1727{
1728        int fda, fdb;
1729        int n;
1730        char buf[1024];
1731       
1732        fda = open(a, O_RDONLY);
1733        fdb = open(b, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1734       
1735        while((n=read(fda, buf, 1024)) > 0)
1736                write(fdb, buf, n);
1737       
1738        close(fda);
1739        close(fdb);     
1740}
1741
1742void myfgets(char *s, int size, FILE *stream)
1743{
1744        if(!fgets(s, size, stream)) {
1745                s[0] = '\0';
1746        } else {
1747                int n = strlen(s);
1748                if(n>0 && s[n-1] == '\n')
1749                        s[n-1] = '\0';
1750        }
1751}
1752
1753void yes_keygen(void *data)
1754{
1755        account_t *acc = (account_t *)data;
1756        irc_t *irc = acc->bee->ui_data;
1757       
1758        if(keygen_in_progress(irc, acc->user, acc->prpl->name)) {
1759                irc_usermsg(irc, "keygen for %s/%s already in progress",
1760                        acc->user, acc->prpl->name);
1761        } else {
1762                irc_usermsg(irc, "starting background keygen for %s/%s",
1763                        acc->user, acc->prpl->name);
1764                irc_usermsg(irc, "you will be notified when it completes");
1765                otr_keygen(irc, acc->user, acc->prpl->name);
1766        }
1767}
Note: See TracBrowser for help on using the repository browser.