source: otr.c @ 74c9e7f

Last change on this file since 74c9e7f was 74c9e7f, checked in by unknown <pesco@…>, at 2014-02-11T17:31:07Z

fix a segfault when otr-coloring /me messages

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