source: zephyr.c @ a870319

release-1.10
Last change on this file since a870319 was bbe7d4a, checked in by Anders Kaseorg <andersk@mit.edu>, 11 years ago
owl_zephyr_loadsubs: Don’t leak memory on error opening ~/.zephyr.subs Found by cppcheck. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 39.7 KB
Line 
1#include "owl.h"
2#include <stdio.h>
3#include <sys/stat.h>
4
5#ifdef HAVE_LIBZEPHYR
6static GSource *owl_zephyr_event_source_new(int fd);
7
8static gboolean owl_zephyr_event_prepare(GSource *source, int *timeout);
9static gboolean owl_zephyr_event_check(GSource *source);
10static gboolean owl_zephyr_event_dispatch(GSource *source, GSourceFunc callback, gpointer user_data);
11
12static GList *deferred_subs = NULL;
13
14typedef struct _owl_sub_list {                            /* noproto */
15  ZSubscription_t *subs;
16  int nsubs;
17} owl_sub_list;
18
19Code_t ZResetAuthentication(void);
20
21static GSourceFuncs zephyr_event_funcs = {
22  owl_zephyr_event_prepare,
23  owl_zephyr_event_check,
24  owl_zephyr_event_dispatch,
25  NULL
26};
27#endif
28
29#define HM_SVC_FALLBACK         htons((unsigned short) 2104)
30
31static char *owl_zephyr_dotfile(const char *name, const char *input)
32{
33  if (input != NULL)
34    return g_strdup(input);
35  else
36    return g_build_filename(owl_global_get_homedir(&g), name, NULL);
37}
38
39#ifdef HAVE_LIBZEPHYR
40void owl_zephyr_initialize(void)
41{
42  Code_t ret;
43  struct servent *sp;
44  struct sockaddr_in sin;
45  ZNotice_t req;
46  GIOChannel *channel;
47
48  /*
49   * Code modified from libzephyr's ZhmStat.c
50   *
51   * Modified to add the fd to our select loop, rather than hanging
52   * until we get an ack.
53   */
54
55  if ((ret = ZOpenPort(NULL)) != ZERR_NONE) {
56    owl_function_error("Error opening Zephyr port: %s", error_message(ret));
57    return;
58  }
59
60  (void) memset(&sin, 0, sizeof(struct sockaddr_in));
61
62  sp = getservbyname(HM_SVCNAME, "udp");
63
64  sin.sin_port = (sp) ? sp->s_port : HM_SVC_FALLBACK;
65  sin.sin_family = AF_INET;
66
67  sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
68
69  (void) memset(&req, 0, sizeof(req));
70  req.z_kind = STAT;
71  req.z_port = 0;
72  req.z_class = zstr(HM_STAT_CLASS);
73  req.z_class_inst = zstr(HM_STAT_CLIENT);
74  req.z_opcode = zstr(HM_GIMMESTATS);
75  req.z_sender = zstr("");
76  req.z_recipient = zstr("");
77  req.z_default_format = zstr("");
78  req.z_message_len = 0;
79
80  if ((ret = ZSetDestAddr(&sin)) != ZERR_NONE) {
81    owl_function_error("Initializing Zephyr: %s", error_message(ret));
82    return;
83  }
84
85  if ((ret = ZSendNotice(&req, ZNOAUTH)) != ZERR_NONE) {
86    owl_function_error("Initializing Zephyr: %s", error_message(ret));
87    return;
88  }
89
90  channel = g_io_channel_unix_new(ZGetFD());
91  g_io_add_watch(channel, G_IO_IN | G_IO_ERR | G_IO_HUP,
92                 &owl_zephyr_finish_initialization, NULL);
93  g_io_channel_unref(channel);
94}
95
96gboolean owl_zephyr_finish_initialization(GIOChannel *source, GIOCondition condition, void *data) {
97  Code_t code;
98  char *perl;
99  GSource *event_source;
100
101  ZClosePort();
102
103  if ((code = ZInitialize()) != ZERR_NONE) {
104    owl_function_error("Initializing Zephyr: %s", error_message(code));
105    return FALSE;
106  }
107
108  if ((code = ZOpenPort(NULL)) != ZERR_NONE) {
109    owl_function_error("Initializing Zephyr: %s", error_message(code));
110    return FALSE;
111  }
112
113  event_source = owl_zephyr_event_source_new(ZGetFD());
114  g_source_attach(event_source, NULL);
115  g_source_unref(event_source);
116
117  owl_global_set_havezephyr(&g);
118
119  if(g.load_initial_subs) {
120    owl_zephyr_load_initial_subs();
121  }
122  while(deferred_subs != NULL) {
123    owl_sub_list *subs = deferred_subs->data;
124    owl_function_debugmsg("Loading %d deferred subs.", subs->nsubs);
125    owl_zephyr_loadsubs_helper(subs->subs, subs->nsubs);
126    deferred_subs = g_list_delete_link(deferred_subs, deferred_subs);
127    g_free(subs);
128  }
129
130  /* zlog in if we need to */
131  if (owl_global_is_startuplogin(&g)) {
132    owl_function_debugmsg("startup: doing zlog in");
133    owl_zephyr_zlog_in();
134  }
135  /* check pseudo-logins if we need to */
136  if (owl_global_is_pseudologins(&g)) {
137    owl_function_debugmsg("startup: checking pseudo-logins");
138    owl_function_zephyr_buddy_check(0);
139  }
140
141  perl = owl_perlconfig_execute("BarnOwl::Zephyr::_zephyr_startup()");
142  g_free(perl);
143  return FALSE;
144}
145
146void owl_zephyr_load_initial_subs(void) {
147  int ret_sd, ret_bd, ret_u;
148
149  owl_function_debugmsg("startup: loading initial zephyr subs");
150
151  /* load default subscriptions */
152  ret_sd = owl_zephyr_loaddefaultsubs();
153
154  /* load Barnowl default subscriptions */
155  ret_bd = owl_zephyr_loadbarnowldefaultsubs();
156
157  /* load subscriptions from subs file */
158  ret_u = owl_zephyr_loadsubs(NULL, 0);
159
160  if (ret_sd || ret_bd || ret_u) {
161    owl_function_error("Error loading zephyr subscriptions");
162  }
163
164  /* load login subscriptions */
165  if (owl_global_is_loginsubs(&g)) {
166    owl_function_debugmsg("startup: loading login subs");
167    owl_function_loadloginsubs(NULL);
168  }
169}
170#else
171void owl_zephyr_initialize(void)
172{
173}
174#endif
175
176
177int owl_zephyr_shutdown(void)
178{
179#ifdef HAVE_LIBZEPHYR
180  if(owl_global_is_havezephyr(&g)) {
181    unsuball();
182    ZClosePort();
183  }
184#endif
185  return 0;
186}
187
188int owl_zephyr_zpending(void)
189{
190#ifdef HAVE_LIBZEPHYR
191  Code_t code;
192  if(owl_global_is_havezephyr(&g)) {
193    if((code = ZPending()) < 0) {
194      owl_function_debugmsg("Error (%s) in ZPending()\n",
195                            error_message(code));
196      return 0;
197    }
198    return code;
199  }
200#endif
201  return 0;
202}
203
204int owl_zephyr_zqlength(void)
205{
206#ifdef HAVE_LIBZEPHYR
207  Code_t code;
208  if(owl_global_is_havezephyr(&g)) {
209    if((code = ZQLength()) < 0) {
210      owl_function_debugmsg("Error (%s) in ZQLength()\n",
211                            error_message(code));
212      return 0;
213    }
214    return code;
215  }
216#endif
217  return 0;
218}
219
220const char *owl_zephyr_get_realm(void)
221{
222#ifdef HAVE_LIBZEPHYR
223  if (owl_global_is_havezephyr(&g))
224    return(ZGetRealm());
225#endif
226  return "";
227}
228
229const char *owl_zephyr_get_sender(void)
230{
231#ifdef HAVE_LIBZEPHYR
232  if (owl_global_is_havezephyr(&g))
233    return(ZGetSender());
234#endif
235  return "";
236}
237
238#ifdef HAVE_LIBZEPHYR
239int owl_zephyr_loadsubs_helper(ZSubscription_t subs[], int count)
240{
241  int ret = 0;
242  Code_t code;
243
244  if (owl_global_is_havezephyr(&g)) {
245    int i;
246    /* sub without defaults */
247    code = ZSubscribeToSansDefaults(subs, count, 0);
248    if (code != ZERR_NONE) {
249      owl_function_error("Error subscribing to zephyr notifications: %s",
250                         error_message(code));
251      ret=-2;
252    }
253
254    /* free stuff */
255    for (i=0; i<count; i++) {
256      g_free(subs[i].zsub_class);
257      g_free(subs[i].zsub_classinst);
258      g_free(subs[i].zsub_recipient);
259    }
260
261    g_free(subs);
262  } else {
263    owl_sub_list *s = g_new(owl_sub_list, 1);
264    s->subs = subs;
265    s->nsubs = count;
266    deferred_subs = g_list_append(deferred_subs, s);
267  }
268
269  return ret;
270}
271#endif
272
273/* Load zephyr subscriptions from 'filename'.  If 'filename' is NULL,
274 * the default file $HOME/.zephyr.subs will be used.
275 *
276 * Returns 0 on success.  If the file does not exist, return -1 if
277 * 'error_on_nofile' is 1, otherwise return 0.  Return -1 if the file
278 * exists but can not be read.  Return -2 if there is a failure from
279 * zephyr to load the subscriptions.
280 */
281int owl_zephyr_loadsubs(const char *filename, int error_on_nofile)
282{
283#ifdef HAVE_LIBZEPHYR
284  FILE *file;
285  char *tmp, *start;
286  char *buffer = NULL;
287  char *subsfile;
288  ZSubscription_t *subs;
289  int subSize = 1024;
290  int count;
291  struct stat statbuff;
292
293  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
294
295  if (stat(subsfile, &statbuff) != 0) {
296    g_free(subsfile);
297    if (error_on_nofile == 1)
298      return -1;
299    return 0;
300  }
301
302  ZResetAuthentication();
303  count = 0;
304  file = fopen(subsfile, "r");
305  g_free(subsfile);
306  if (!file)
307    return -1;
308
309  subs = g_new(ZSubscription_t, subSize);
310  while (owl_getline(&buffer, file)) {
311    if (buffer[0] == '#' || buffer[0] == '\n')
312        continue;
313
314    if (buffer[0] == '-')
315      start = buffer + 1;
316    else
317      start = buffer;
318
319    if (count >= subSize) {
320      subSize *= 2;
321      subs = g_renew(ZSubscription_t, subs, subSize);
322    }
323   
324    /* add it to the list of subs */
325    if ((tmp = strtok(start, ",\n\r")) == NULL)
326      continue;
327    subs[count].zsub_class = g_strdup(tmp);
328    if ((tmp=strtok(NULL, ",\n\r")) == NULL)
329      continue;
330    subs[count].zsub_classinst = g_strdup(tmp);
331    if ((tmp = strtok(NULL, " \t\n\r")) == NULL)
332      continue;
333    subs[count].zsub_recipient = g_strdup(tmp);
334
335    /* if it started with '-' then add it to the global punt list, and
336     * remove it from the list of subs. */
337    if (buffer[0] == '-') {
338      owl_function_zpunt(subs[count].zsub_class, subs[count].zsub_classinst, subs[count].zsub_recipient, 0);
339      g_free(subs[count].zsub_class);
340      g_free(subs[count].zsub_classinst);
341      g_free(subs[count].zsub_recipient);
342    } else {
343      count++;
344    }
345  }
346  fclose(file);
347  if (buffer)
348    g_free(buffer);
349
350  return owl_zephyr_loadsubs_helper(subs, count);
351#else
352  return 0;
353#endif
354}
355
356/* Load default Barnowl subscriptions
357 *
358 * Returns 0 on success.
359 * Return -2 if there is a failure from zephyr to load the subscriptions.
360 */
361int owl_zephyr_loadbarnowldefaultsubs(void)
362{
363#ifdef HAVE_LIBZEPHYR
364  ZSubscription_t *subs;
365  int subSize = 10; /* Max Barnowl default subs we allow */
366  int count, ret;
367
368  subs = g_new(ZSubscription_t, subSize);
369  ZResetAuthentication();
370  count=0;
371
372  subs[count].zsub_class=g_strdup("message");
373  subs[count].zsub_classinst=g_strdup("*");
374  subs[count].zsub_recipient=g_strdup("%me%");
375  count++;
376
377  ret = owl_zephyr_loadsubs_helper(subs, count);
378  return(ret);
379#else
380  return(0);
381#endif
382}
383
384int owl_zephyr_loaddefaultsubs(void)
385{
386#ifdef HAVE_LIBZEPHYR
387  Code_t ret;
388
389  if (owl_global_is_havezephyr(&g)) {
390    ZSubscription_t subs[10];
391
392    ret = ZSubscribeTo(subs, 0, 0);
393    if (ret != ZERR_NONE) {
394      owl_function_error("Error subscribing to default zephyr notifications: %s.",
395                           error_message(ret));
396      return(-1);
397    }
398  }
399  return(0);
400#else
401  return(0);
402#endif
403}
404
405int owl_zephyr_loadloginsubs(const char *filename)
406{
407#ifdef HAVE_LIBZEPHYR
408  FILE *file;
409  ZSubscription_t *subs;
410  int numSubs = 100;
411  char *subsfile;
412  char *buffer = NULL;
413  int count;
414  struct stat statbuff;
415
416  subs = g_new(ZSubscription_t, numSubs);
417  subsfile = owl_zephyr_dotfile(".anyone", filename);
418
419  if (stat(subsfile, &statbuff) == -1) {
420    g_free(subs);
421    g_free(subsfile);
422    return 0;
423  }
424
425  ZResetAuthentication();
426  count = 0;
427  file = fopen(subsfile, "r");
428  g_free(subsfile);
429  if (file) {
430    while (owl_getline_chomp(&buffer, file)) {
431      if (buffer[0] == '\0' || buffer[0] == '#')
432        continue;
433
434      if (count == numSubs) {
435        numSubs *= 2;
436        subs = g_renew(ZSubscription_t, subs, numSubs);
437      }
438
439      subs[count].zsub_class = g_strdup("login");
440      subs[count].zsub_recipient = g_strdup("*");
441      subs[count].zsub_classinst = long_zuser(buffer);
442
443      count++;
444    }
445    fclose(file);
446  } else {
447    return 0;
448  }
449  g_free(buffer);
450
451  return owl_zephyr_loadsubs_helper(subs, count);
452#else
453  return 0;
454#endif
455}
456
457void unsuball(void)
458{
459#if HAVE_LIBZEPHYR
460  Code_t ret;
461
462  ZResetAuthentication();
463  ret = ZCancelSubscriptions(0);
464  if (ret != ZERR_NONE)
465    owl_function_error("Zephyr: Cancelling subscriptions: %s",
466                       error_message(ret));
467#endif
468}
469
470int owl_zephyr_sub(const char *class, const char *inst, const char *recip)
471{
472#ifdef HAVE_LIBZEPHYR
473  ZSubscription_t subs[5];
474  Code_t ret;
475
476  subs[0].zsub_class=zstr(class);
477  subs[0].zsub_classinst=zstr(inst);
478  subs[0].zsub_recipient=zstr(recip);
479
480  ZResetAuthentication();
481  ret = ZSubscribeTo(subs, 1, 0);
482  if (ret != ZERR_NONE) {
483    owl_function_error("Error subbing to <%s,%s,%s>: %s",
484                       class, inst, recip,
485                       error_message(ret));
486    return(-2);
487  }
488  return(0);
489#else
490  return(0);
491#endif
492}
493
494
495int owl_zephyr_unsub(const char *class, const char *inst, const char *recip)
496{
497#ifdef HAVE_LIBZEPHYR
498  ZSubscription_t subs[5];
499  Code_t ret;
500
501  subs[0].zsub_class=zstr(class);
502  subs[0].zsub_classinst=zstr(inst);
503  subs[0].zsub_recipient=zstr(recip);
504
505  ZResetAuthentication();
506  ret = ZUnsubscribeTo(subs, 1, 0);
507  if (ret != ZERR_NONE) {
508    owl_function_error("Error unsubbing from <%s,%s,%s>: %s",
509                       class, inst, recip,
510                       error_message(ret));
511    return(-2);
512  }
513  return(0);
514#else
515  return(0);
516#endif
517}
518
519#ifdef HAVE_LIBZEPHYR
520const char *owl_zephyr_first_raw_field(const ZNotice_t *n)
521{
522  if (n->z_message_len == 0)
523    return NULL;
524  return n->z_message;
525}
526
527const char *owl_zephyr_next_raw_field(const ZNotice_t *n, const char *f)
528{
529  const char *end = n->z_message + n->z_message_len;
530  f = memchr(f, '\0', end - f);
531  if (f == NULL)
532    return NULL;
533  return f + 1;
534}
535
536const char *owl_zephyr_get_raw_field(const ZNotice_t *n, int j)
537{
538  int i;
539  const char *f;
540  for (i = 1, f = owl_zephyr_first_raw_field(n); i < j && f != NULL;
541       i++, f = owl_zephyr_next_raw_field(n, f))
542    ;
543  return f;
544}
545
546CALLER_OWN char *owl_zephyr_field(const ZNotice_t *n, const char *f)
547{
548  if (f == NULL)
549    return g_strdup("");
550  return g_strndup(f, n->z_message + n->z_message_len - f);
551}
552
553CALLER_OWN char *owl_zephyr_field_as_utf8(const ZNotice_t *n, const char *f)
554{
555  char *tmp = owl_zephyr_field(n, f);
556  char *out = owl_validate_or_convert(tmp);
557  g_free(tmp);
558  return out;
559}
560
561CALLER_OWN char *owl_zephyr_get_field(const ZNotice_t *n, int j)
562{
563  return owl_zephyr_field(n, owl_zephyr_get_raw_field(n, j));
564}
565
566CALLER_OWN char *owl_zephyr_get_field_as_utf8(const ZNotice_t *n, int j)
567{
568  return owl_zephyr_field_as_utf8(n, owl_zephyr_get_raw_field(n, j));
569}
570#else
571const char *owl_zephyr_first_raw_field(const void *n)
572{
573  return NULL;
574}
575
576const char *owl_zephyr_next_raw_field(const void *n, const char *f)
577{
578  return NULL;
579}
580
581const char *owl_zephyr_get_raw_field(const void *n, int j)
582{
583  return NULL;
584}
585
586CALLER_OWN char *owl_zephyr_field(const void *n, const char *f)
587{
588  return g_strdup("");
589}
590
591CALLER_OWN char *owl_zephyr_field_as_utf8(const void *n, const char *f)
592{
593  return g_strdup("");
594}
595
596CALLER_OWN char *owl_zephyr_get_field(const void *n, int j)
597{
598  return g_strdup("");
599}
600
601CALLER_OWN char *owl_zephyr_get_field_as_utf8(const void *n, int j)
602{
603  return owl_zephyr_field(n, owl_zephyr_get_raw_field(n, j));
604}
605#endif
606
607
608#ifdef HAVE_LIBZEPHYR
609int owl_zephyr_get_num_fields(const ZNotice_t *n)
610{
611  int i;
612  const char *f;
613  for (i = 0, f = owl_zephyr_first_raw_field(n); f != NULL;
614       i++, f = owl_zephyr_next_raw_field(n, f))
615    ;
616  return i;
617}
618#else
619int owl_zephyr_get_num_fields(const void *n)
620{
621  return(0);
622}
623#endif
624
625#ifdef HAVE_LIBZEPHYR
626/* return a pointer to the message, place the message length in k
627 * caller must free the return
628 */
629CALLER_OWN char *owl_zephyr_get_message(const ZNotice_t *n, const owl_message *m)
630{
631#define OWL_NFIELDS     5
632  int i;
633  char *fields[OWL_NFIELDS + 1];
634  char *msg = NULL;
635
636  /* don't let ping messages have a body */
637  if (!strcasecmp(n->z_opcode, "ping")) {
638    return(g_strdup(""));
639  }
640
641  for(i = 0; i < OWL_NFIELDS; i++)
642    fields[i + 1] = owl_zephyr_get_field(n, i + 1);
643
644  /* deal with MIT NOC messages */
645  if (!strcasecmp(n->z_default_format, "@center(@bold(NOC Message))\n\n@bold(Sender:) $1 <$sender>\n@bold(Time:  ) $time\n\n@italic($opcode service on $instance $3.) $4\n")) {
646
647    msg = g_strdup_printf("%s service on %s %s\n%s", n->z_opcode, n->z_class_inst, fields[3], fields[4]);
648  }
649  /* deal with MIT Discuss messages */
650  else if (!strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3 ($5)\nSubject: $4") ||
651           !strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3\nSubject: $4")) {
652   
653    msg = g_strdup_printf("New transaction [%s] entered in %s\nFrom: %s (%s)\nSubject: %s",
654                          fields[1], fields[2], fields[3], fields[5], fields[4]);
655  }
656  /* deal with MIT Moira messages */
657  else if (!strcasecmp(n->z_default_format, "MOIRA $instance on $fromhost:\n $message\n")) {
658    msg = g_strdup_printf("MOIRA %s on %s: %s",
659                          n->z_class_inst,
660                          owl_message_get_hostname(m),
661                          fields[1]);
662  } else {
663    if (owl_zephyr_get_num_fields(n) == 1)
664      msg = g_strdup(fields[1]);
665    else
666      msg = g_strdup(fields[2]);
667  }
668
669  for (i = 0; i < OWL_NFIELDS; i++)
670    g_free(fields[i + 1]);
671
672  return msg;
673}
674#endif
675
676#ifdef HAVE_LIBZEPHYR
677const char *owl_zephyr_get_zsig(const ZNotice_t *n, int *k)
678{
679  /* return a pointer to the zsig if there is one */
680
681  /* message length 0? No zsig */
682  if (n->z_message_len==0) {
683    *k=0;
684    return("");
685  }
686
687  /* If there's only one field, no zsig */
688  if (owl_zephyr_get_num_fields(n) == 1) {
689    *k=0;
690    return("");
691  }
692
693  /* Everything else is field 1 */
694  *k=strlen(n->z_message);
695  return(n->z_message);
696}
697#else
698const char *owl_zephyr_get_zsig(const void *n, int *k)
699{
700  return("");
701}
702#endif
703
704int send_zephyr(const char *opcode, const char *zsig, const char *class, const char *instance, const char *recipient, const char *message)
705{
706#ifdef HAVE_LIBZEPHYR
707  Code_t ret;
708  ZNotice_t notice;
709  char *zsender = NULL;
710   
711  memset(&notice, 0, sizeof(notice));
712
713  ZResetAuthentication();
714
715  if (!zsig) zsig="";
716 
717  notice.z_kind=ACKED;
718  notice.z_port=0;
719#ifdef ZCHARSET_UTF_8
720  notice.z_charset = ZCHARSET_UTF_8;
721#endif
722  notice.z_class=zstr(class);
723  notice.z_class_inst=zstr(instance);
724  if (!strcmp(recipient, "@")) {
725    notice.z_recipient=zstr("");
726  } else {
727    notice.z_recipient=zstr(recipient);
728  }
729  if (!owl_zwrite_recip_is_personal(recipient) && *owl_global_get_zsender(&g))
730    notice.z_sender = zsender = long_zuser(owl_global_get_zsender(&g));
731  notice.z_default_format=zstr("http://zephyr.1ts.org/wiki/df");
732  if (opcode) notice.z_opcode=zstr(opcode);
733
734  notice.z_message_len=strlen(zsig)+1+strlen(message);
735  notice.z_message=g_new(char, notice.z_message_len+10);
736  strcpy(notice.z_message, zsig);
737  memcpy(notice.z_message+strlen(zsig)+1, message, strlen(message));
738
739  /* ret=ZSendNotice(&notice, ZAUTH); */
740  ret=ZSrvSendNotice(&notice, ZAUTH, send_zephyr_helper);
741 
742  /* free then check the return */
743  g_free(notice.z_message);
744  ZFreeNotice(&notice);
745  g_free(zsender);
746  if (ret != ZERR_NONE) {
747    owl_function_error("Error sending zephyr: %s", error_message(ret));
748    return(ret);
749  }
750  return(0);
751#else
752  return(0);
753#endif
754}
755
756#ifdef HAVE_LIBZEPHYR
757Code_t send_zephyr_helper(ZNotice_t *notice, char *buf, int len, int wait)
758{
759  return(ZSendPacket(buf, len, 0));
760}
761#endif
762
763void send_ping(const char *to, const char *zclass, const char *zinstance)
764{
765#ifdef HAVE_LIBZEPHYR
766  send_zephyr("PING", "", zclass, zinstance, to, "");
767#endif
768}
769
770#ifdef HAVE_LIBZEPHYR
771void owl_zephyr_handle_ack(const ZNotice_t *retnotice)
772{
773  char *tmp;
774 
775  /* if it's an HMACK ignore it */
776  if (retnotice->z_kind == HMACK) return;
777
778  if (retnotice->z_kind == SERVNAK) {
779    owl_function_error("Authorization failure sending zephyr");
780  } else if ((retnotice->z_kind != SERVACK) || !retnotice->z_message_len) {
781    owl_function_error("Detected server failure while receiving acknowledgement");
782  } else if (!strcmp(retnotice->z_message, ZSRVACK_SENT)) {
783    if (!strcasecmp(retnotice->z_opcode, "ping")) {
784      return;
785    } else {
786      if (strcasecmp(retnotice->z_recipient, ""))
787      { /* personal */
788        tmp=short_zuser(retnotice->z_recipient);
789        if(!strcasecmp(retnotice->z_class, "message") &&
790           !strcasecmp(retnotice->z_class_inst, "personal")) {
791          owl_function_makemsg("Message sent to %s.", tmp);
792        } else if(!strcasecmp(retnotice->z_class, "message")) { /* instanced, but not classed, personal */
793          owl_function_makemsg("Message sent to %s on -i %s\n", tmp, retnotice->z_class_inst);
794        } else { /* classed personal */
795          owl_function_makemsg("Message sent to %s on -c %s -i %s\n", tmp, retnotice->z_class, retnotice->z_class_inst);
796        }
797        g_free(tmp);
798      } else {
799        /* class / instance message */
800          owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst);
801      }
802    }
803  } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) {
804    if (retnotice->z_recipient == NULL
805        || !owl_zwrite_recip_is_personal(retnotice->z_recipient)) {
806      char *buff;
807      owl_function_error("No one subscribed to class %s", retnotice->z_class);
808      buff = g_strdup_printf("Could not send message to class %s: no one subscribed.\n", retnotice->z_class);
809      owl_function_adminmsg("", buff);
810      g_free(buff);
811    } else {
812      char *buff;
813      owl_zwrite zw;
814
815      tmp = short_zuser(retnotice->z_recipient);
816      owl_function_error("%s: Not logged in or subscribing.", tmp);
817      /*
818       * These error messages are often over 80 chars, but users who want to
819       * see the whole thing can scroll to the side, and for those with wide
820       * terminals or who don't care, not splitting saves a line in the UI
821       */
822      if(strcasecmp(retnotice->z_class, "message")) {
823        buff = g_strdup_printf(
824                 "Could not send message to %s: "
825                 "not logged in or subscribing to class %s, instance %s.\n",
826                 tmp,
827                 retnotice->z_class,
828                 retnotice->z_class_inst);
829      } else if(strcasecmp(retnotice->z_class_inst, "personal")) {
830        buff = g_strdup_printf(
831                 "Could not send message to %s: "
832                 "not logged in or subscribing to instance %s.\n",
833                 tmp,
834                 retnotice->z_class_inst);
835      } else {
836        buff = g_strdup_printf(
837                 "Could not send message to %s: "
838                 "not logged in or subscribing to messages.\n",
839                 tmp);
840      }
841      owl_function_adminmsg("", buff);
842
843      memset(&zw, 0, sizeof(zw));
844      zw.class = g_strdup(retnotice->z_class);
845      zw.inst  = g_strdup(retnotice->z_class_inst);
846      zw.realm = g_strdup("");
847      zw.opcode = g_strdup(retnotice->z_opcode);
848      zw.zsig   = g_strdup("");
849      zw.recips = g_ptr_array_new();
850      g_ptr_array_add(zw.recips, g_strdup(retnotice->z_recipient));
851
852      owl_log_outgoing_zephyr_error(&zw, buff);
853
854      owl_zwrite_cleanup(&zw);
855      g_free(buff);
856      g_free(tmp);
857    }
858  } else {
859    owl_function_error("Internal error on ack (%s)", retnotice->z_message);
860  }
861}
862#else
863void owl_zephyr_handle_ack(const void *retnotice)
864{
865}
866#endif
867
868#ifdef HAVE_LIBZEPHYR
869int owl_zephyr_notice_is_ack(const ZNotice_t *n)
870{
871  if (n->z_kind == SERVNAK || n->z_kind == SERVACK || n->z_kind == HMACK) {
872    if (!strcasecmp(n->z_class, LOGIN_CLASS)) return(0);
873    return(1);
874  }
875  return(0);
876}
877#else
878int owl_zephyr_notice_is_ack(const void *n)
879{
880  return(0);
881}
882#endif
883 
884void owl_zephyr_zaway(const owl_message *m)
885{
886#ifdef HAVE_LIBZEPHYR
887  char *tmpbuff, *myuser, *to;
888  owl_zwrite *z;
889 
890  /* bail if it doesn't look like a message we should reply to.  Some
891   * of this defined by the way zaway(1) works
892   */
893  if (strcasecmp(owl_message_get_class(m), "message")) return;
894  if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return;
895  if (!strcasecmp(owl_message_get_sender(m), "")) return;
896  if (!strcasecmp(owl_message_get_opcode(m), "ping")) return;
897  if (!strcasecmp(owl_message_get_opcode(m), "auto")) return;
898  if (!strcasecmp(owl_message_get_zsig(m), "Automated reply:")) return;
899  if (!strcasecmp(owl_message_get_sender(m), ZGetSender())) return;
900  if (owl_message_get_attribute_value(m, "isauto")) return;
901
902  if (owl_global_is_smartstrip(&g)) {
903    to=owl_zephyr_smartstripped_user(owl_message_get_sender(m));
904  } else {
905    to=g_strdup(owl_message_get_sender(m));
906  }
907
908  send_zephyr("",
909              "Automated reply:",
910              owl_message_get_class(m),
911              owl_message_get_instance(m),
912              to,
913              owl_global_get_zaway_msg(&g));
914
915  myuser=short_zuser(to);
916  if (!strcasecmp(owl_message_get_instance(m), "personal")) {
917    tmpbuff = owl_string_build_quoted("zwrite %q", myuser);
918  } else {
919    tmpbuff = owl_string_build_quoted("zwrite -i %q %q", owl_message_get_instance(m), myuser);
920  }
921  g_free(myuser);
922  g_free(to);
923
924  z = owl_zwrite_new_from_line(tmpbuff);
925  g_free(tmpbuff);
926  if (z == NULL) {
927    owl_function_error("Error creating outgoing zephyr.");
928    return;
929  }
930  owl_zwrite_set_message(z, owl_global_get_zaway_msg(&g));
931  owl_zwrite_set_zsig(z, "Automated reply:");
932
933  /* display the message as an admin message in the receive window */
934  owl_function_add_outgoing_zephyrs(z);
935  owl_zwrite_delete(z);
936#endif
937}
938
939#ifdef HAVE_LIBZEPHYR
940void owl_zephyr_hackaway_cr(ZNotice_t *n)
941{
942  /* replace \r's with ' '.  Gross-ish */
943  int i;
944
945  for (i=0; i<n->z_message_len; i++) {
946    if (n->z_message[i]=='\r') {
947      n->z_message[i]=' ';
948    }
949  }
950}
951#endif
952
953CALLER_OWN char *owl_zephyr_zlocate(const char *user, int auth)
954{
955#ifdef HAVE_LIBZEPHYR
956  int ret, numlocs;
957  int one = 1;
958  ZLocations_t locations;
959  char *myuser;
960  char *p, *result;
961
962  ZResetAuthentication();
963  ret = ZLocateUser(zstr(user), &numlocs, auth ? ZAUTH : ZNOAUTH);
964  if (ret != ZERR_NONE)
965    return g_strdup_printf("Error locating user %s: %s\n",
966                           user, error_message(ret));
967
968  myuser = short_zuser(user);
969  if (numlocs == 0) {
970    result = g_strdup_printf("%s: Hidden or not logged in\n", myuser);
971  } else {
972    result = g_strdup("");
973    for (; numlocs; numlocs--) {
974      ZGetLocations(&locations, &one);
975      p = g_strdup_printf("%s%s: %s\t%s\t%s\n",
976                          result, myuser,
977                          locations.host ? locations.host : "?",
978                          locations.tty ? locations.tty : "?",
979                          locations.time ? locations.time : "?");
980      g_free(result);
981      result = p;
982    }
983  }
984  g_free(myuser);
985
986  return result;
987#else
988  return g_strdup("");
989#endif
990}
991
992void owl_zephyr_addsub(const char *filename, const char *class, const char *inst, const char *recip)
993{
994#ifdef HAVE_LIBZEPHYR
995  char *line, *subsfile, *s = NULL;
996  FILE *file;
997  int duplicate = 0;
998
999  line = owl_zephyr_makesubline(class, inst, recip);
1000  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
1001
1002  /* if the file already exists, check to see if the sub is already there */
1003  file = fopen(subsfile, "r");
1004  if (file) {
1005    while (owl_getline(&s, file)) {
1006      if (strcasecmp(s, line) == 0) {
1007        owl_function_error("Subscription already present in %s", subsfile);
1008        duplicate++;
1009      }
1010    }
1011    fclose(file);
1012    g_free(s);
1013  }
1014
1015  if (!duplicate) {
1016    file = fopen(subsfile, "a");
1017    if (file) {
1018      fputs(line, file);
1019      fclose(file);
1020      owl_function_makemsg("Subscription added");
1021    } else {
1022      owl_function_error("Error opening file %s for writing", subsfile);
1023    }
1024  }
1025
1026  g_free(line);
1027#endif
1028}
1029
1030void owl_zephyr_delsub(const char *filename, const char *class, const char *inst, const char *recip)
1031{
1032#ifdef HAVE_LIBZEPHYR
1033  char *line, *subsfile;
1034  int linesdeleted;
1035 
1036  line=owl_zephyr_makesubline(class, inst, recip);
1037  line[strlen(line)-1]='\0';
1038
1039  subsfile = owl_zephyr_dotfile(".zephyr.subs", filename);
1040 
1041  linesdeleted = owl_util_file_deleteline(subsfile, line, 1);
1042  if (linesdeleted > 0) {
1043    owl_function_makemsg("Subscription removed");
1044  } else if (linesdeleted == 0) {
1045    owl_function_error("No subscription present in %s", subsfile);
1046  }
1047  g_free(subsfile);
1048  g_free(line);
1049#endif
1050}
1051
1052/* caller must free the return */
1053CALLER_OWN char *owl_zephyr_makesubline(const char *class, const char *inst, const char *recip)
1054{
1055  return g_strdup_printf("%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip);
1056}
1057
1058
1059void owl_zephyr_zlog_in(void)
1060{
1061#ifdef HAVE_LIBZEPHYR
1062  ZResetAuthentication();
1063
1064  /* ZSetLocation, and store the default value as the current value */
1065  owl_global_set_exposure(&g, owl_global_get_default_exposure(&g));
1066#endif
1067}
1068
1069void owl_zephyr_zlog_out(void)
1070{
1071#ifdef HAVE_LIBZEPHYR
1072  Code_t ret;
1073
1074  ZResetAuthentication();
1075  ret = ZUnsetLocation();
1076  if (ret != ZERR_NONE)
1077    owl_function_error("Error unsetting location: %s", error_message(ret));
1078#endif
1079}
1080
1081void owl_zephyr_addbuddy(const char *name)
1082{
1083  char *filename;
1084  FILE *file;
1085 
1086  filename = owl_zephyr_dotfile(".anyone", NULL);
1087  file = fopen(filename, "a");
1088  g_free(filename);
1089  if (!file) {
1090    owl_function_error("Error opening zephyr buddy file for append");
1091    return;
1092  }
1093  fprintf(file, "%s\n", name);
1094  fclose(file);
1095}
1096
1097void owl_zephyr_delbuddy(const char *name)
1098{
1099  char *filename;
1100
1101  filename = owl_zephyr_dotfile(".anyone", NULL);
1102  owl_util_file_deleteline(filename, name, 0);
1103  g_free(filename);
1104}
1105
1106/* return auth string */
1107#ifdef HAVE_LIBZEPHYR
1108const char *owl_zephyr_get_authstr(const ZNotice_t *n)
1109{
1110
1111  if (!n) return("UNKNOWN");
1112
1113  if (n->z_auth == ZAUTH_FAILED) {
1114    return ("FAILED");
1115  } else if (n->z_auth == ZAUTH_NO) {
1116    return ("NO");
1117  } else if (n->z_auth == ZAUTH_YES) {
1118    return ("YES");
1119  } else {
1120    return ("UNKNOWN");
1121  }           
1122}
1123#else
1124const char *owl_zephyr_get_authstr(const void *n)
1125{
1126  return("");
1127}
1128#endif
1129
1130/* Returns a buffer of subscriptions or an error message.  Caller must
1131 * free the return.
1132 */
1133CALLER_OWN char *owl_zephyr_getsubs(void)
1134{
1135#ifdef HAVE_LIBZEPHYR
1136  Code_t ret;
1137  int num, i, one;
1138  ZSubscription_t sub;
1139  GString *buf;
1140
1141  ret = ZRetrieveSubscriptions(0, &num);
1142  if (ret != ZERR_NONE)
1143    return g_strdup_printf("Zephyr: Requesting subscriptions: %s\n", error_message(ret));
1144  if (num == 0)
1145    return g_strdup("Zephyr: No subscriptions retrieved\n");
1146
1147  buf = g_string_new("");
1148  for (i=0; i<num; i++) {
1149    one = 1;
1150    if ((ret = ZGetSubscriptions(&sub, &one)) != ZERR_NONE) {
1151      ZFlushSubscriptions();
1152      g_string_free(buf, true);
1153      return g_strdup_printf("Zephyr: Getting subscriptions: %s\n", error_message(ret));
1154    } else {
1155      /* g_string_append_printf would be backwards. */
1156      char *tmp = g_strdup_printf("<%s,%s,%s>\n",
1157                                  sub.zsub_class,
1158                                  sub.zsub_classinst,
1159                                  sub.zsub_recipient);
1160      g_string_prepend(buf, tmp);
1161      g_free(tmp);
1162    }
1163  }
1164
1165  ZFlushSubscriptions();
1166  return g_string_free(buf, false);
1167#else
1168  return(g_strdup("Zephyr not available"));
1169#endif
1170}
1171
1172const char *owl_zephyr_get_variable(const char *var)
1173{
1174#ifdef HAVE_LIBZEPHYR
1175  return(ZGetVariable(zstr(var)));
1176#else
1177  return("");
1178#endif
1179}
1180
1181void owl_zephyr_set_locationinfo(const char *host, const char *val)
1182{
1183#ifdef HAVE_LIBZEPHYR
1184  ZInitLocationInfo(zstr(host), zstr(val));
1185#endif
1186}
1187
1188const char *owl_zephyr_normalize_exposure(const char *exposure)
1189{
1190  if (exposure == NULL)
1191    return NULL;
1192#ifdef HAVE_LIBZEPHYR
1193  return ZParseExposureLevel(zstr(exposure));
1194#else
1195  return exposure;
1196#endif
1197}
1198
1199int owl_zephyr_set_default_exposure(const char *exposure)
1200{
1201#ifdef HAVE_LIBZEPHYR
1202  Code_t ret;
1203  if (exposure == NULL)
1204    return -1;
1205  exposure = ZParseExposureLevel(zstr(exposure));
1206  if (exposure == NULL)
1207    return -1;
1208  ret = ZSetVariable(zstr("exposure"), zstr(exposure)); /* ZSetVariable does file I/O */
1209  if (ret != ZERR_NONE) {
1210    owl_function_error("Unable to set default exposure location: %s", error_message(ret));
1211    return -1;
1212  }
1213#endif
1214  return 0;
1215}
1216
1217const char *owl_zephyr_get_default_exposure(void)
1218{
1219#ifdef HAVE_LIBZEPHYR
1220  const char *exposure = ZGetVariable(zstr("exposure")); /* ZGetVariable does file I/O */
1221  if (exposure == NULL)
1222    return EXPOSE_REALMVIS;
1223  exposure = ZParseExposureLevel(zstr(exposure));
1224  if (exposure == NULL) /* The user manually entered an invalid value in ~/.zephyr.vars, or something weird happened. */
1225    return EXPOSE_REALMVIS;
1226  return exposure;
1227#else
1228  return "";
1229#endif
1230}
1231
1232int owl_zephyr_set_exposure(const char *exposure)
1233{
1234#ifdef HAVE_LIBZEPHYR
1235  Code_t ret;
1236  if (exposure == NULL)
1237    return -1;
1238  exposure = ZParseExposureLevel(zstr(exposure));
1239  if (exposure == NULL)
1240    return -1;
1241  ret = ZSetLocation(zstr(exposure));
1242  if (ret != ZERR_NONE
1243#ifdef ZCONST
1244      /* Before zephyr 3.0, ZSetLocation had a bug where, if you were subscribed
1245       * to your own logins, it could wait for the wrong notice and return
1246       * ZERR_INTERNAL when found neither SERVACK nor SERVNAK. Suppress it when
1247       * building against the old ABI. */
1248      && ret != ZERR_INTERNAL
1249#endif
1250     ) {
1251    owl_function_error("Unable to set exposure level: %s.", error_message(ret));
1252    return -1;
1253  }
1254#endif
1255  return 0;
1256}
1257 
1258/* Strip a local realm fron the zephyr user name.
1259 * The caller must free the return
1260 */
1261CALLER_OWN char *short_zuser(const char *in)
1262{
1263  char *ptr = strrchr(in, '@');
1264  if (ptr && (ptr[1] == '\0' || !strcasecmp(ptr+1, owl_zephyr_get_realm()))) {
1265    return g_strndup(in, ptr - in);
1266  }
1267  return g_strdup(in);
1268}
1269
1270/* Append a local realm to the zephyr user name if necessary.
1271 * The caller must free the return.
1272 */
1273CALLER_OWN char *long_zuser(const char *in)
1274{
1275  char *ptr = strrchr(in, '@');
1276  if (ptr) {
1277    if (ptr[1])
1278      return g_strdup(in);
1279    /* Ends in @, so assume default realm. */
1280    return g_strdup_printf("%s%s", in, owl_zephyr_get_realm());
1281  }
1282  return g_strdup_printf("%s@%s", in, owl_zephyr_get_realm());
1283}
1284
1285/* Return the realm of the zephyr user name. Caller does /not/ free the return.
1286 * The string is valid at least as long as the input is.
1287 */
1288const char *zuser_realm(const char *in)
1289{
1290  char *ptr = strrchr(in, '@');
1291  /* If the name has an @ and does not end with @, use that. Otherwise, take
1292   * the default realm. */
1293  return (ptr && ptr[1]) ? (ptr+1) : owl_zephyr_get_realm();
1294}
1295
1296/* strip out the instance from a zsender's principal.  Preserves the
1297 * realm if present.  Leave host/ and daemon/ krb5 principals
1298 * alone. Also leave rcmd. and daemon. krb4 principals alone. The
1299 * caller must free the return.
1300 */
1301CALLER_OWN char *owl_zephyr_smartstripped_user(const char *in)
1302{
1303  char *slash, *dot, *realm, *out;
1304
1305  out = g_strdup(in);
1306
1307  /* bail immeaditly if we don't have to do any work */
1308  slash = strchr(out, '/');
1309  dot = strchr(out, '.');
1310  if (!slash && !dot) {
1311    return(out);
1312  }
1313
1314  if (!strncasecmp(out, OWL_ZEPHYR_NOSTRIP_HOST, strlen(OWL_ZEPHYR_NOSTRIP_HOST)) ||
1315      !strncasecmp(out, OWL_ZEPHYR_NOSTRIP_RCMD, strlen(OWL_ZEPHYR_NOSTRIP_RCMD)) ||
1316      !strncasecmp(out, OWL_ZEPHYR_NOSTRIP_DAEMON5, strlen(OWL_ZEPHYR_NOSTRIP_DAEMON5)) ||
1317      !strncasecmp(out, OWL_ZEPHYR_NOSTRIP_DAEMON4, strlen(OWL_ZEPHYR_NOSTRIP_DAEMON4))) {
1318    return(out);
1319  }
1320
1321  realm = strchr(out, '@');
1322  if (!slash && dot && realm && (dot > realm)) {
1323    /* There's no '/', and the first '.' is in the realm */
1324    return(out);
1325  }
1326
1327  /* remove the realm from out, but hold on to it */
1328  if (realm) realm[0]='\0';
1329
1330  /* strip */
1331  if (slash) slash[0] = '\0';  /* krb5 style user/instance */
1332  else if (dot) dot[0] = '\0'; /* krb4 style user.instance */
1333
1334  /* reattach the realm if we had one */
1335  if (realm) {
1336    strcat(out, "@");
1337    strcat(out, realm+1);
1338  }
1339
1340  return(out);
1341}
1342
1343/* Read the list of users in 'filename' as a .anyone file, and return as a
1344 * GPtrArray of strings.  If 'filename' is NULL, use the default .anyone file
1345 * in the users home directory.  Returns NULL on failure.
1346 */
1347GPtrArray *owl_zephyr_get_anyone_list(const char *filename)
1348{
1349#ifdef HAVE_LIBZEPHYR
1350  char *ourfile, *tmp, *s = NULL;
1351  FILE *f;
1352  GPtrArray *list;
1353
1354  ourfile = owl_zephyr_dotfile(".anyone", filename);
1355
1356  f = fopen(ourfile, "r");
1357  if (!f) {
1358    owl_function_error("Error opening file %s: %s", ourfile, strerror(errno) ? strerror(errno) : "");
1359    g_free(ourfile);
1360    return NULL;
1361  }
1362  g_free(ourfile);
1363
1364  list = g_ptr_array_new();
1365  while (owl_getline_chomp(&s, f)) {
1366    /* ignore comments, blank lines etc. */
1367    if (s[0] == '#' || s[0] == '\0')
1368      continue;
1369
1370    /* ignore from # on */
1371    tmp = strchr(s, '#');
1372    if (tmp)
1373      tmp[0] = '\0';
1374
1375    /* ignore from SPC */
1376    tmp = strchr(s, ' ');
1377    if (tmp)
1378      tmp[0] = '\0';
1379
1380    g_ptr_array_add(list, long_zuser(s));
1381  }
1382  g_free(s);
1383  fclose(f);
1384  return list;
1385#else
1386  return NULL;
1387#endif
1388}
1389
1390#ifdef HAVE_LIBZEPHYR
1391void owl_zephyr_process_pseudologin(ZNotice_t *n)
1392{
1393  owl_message *m;
1394  owl_zbuddylist *zbl;
1395  GList **zaldlist;
1396  GList *zaldptr;
1397  ZAsyncLocateData_t *zald = NULL;
1398  ZLocations_t location;
1399  int numlocs, ret, notify;
1400
1401  /* Find a ZALD to match this notice. */
1402  zaldlist = owl_global_get_zaldlist(&g);
1403  zaldptr = g_list_first(*zaldlist);
1404  while (zaldptr) {
1405    if (ZCompareALDPred(n, zaldptr->data)) {
1406      zald = zaldptr->data;
1407      *zaldlist = g_list_remove(*zaldlist, zaldptr->data);
1408      break;
1409    }
1410    zaldptr = g_list_next(zaldptr);
1411  }
1412  if (zald) {
1413    /* Deal with notice. */
1414    notify = owl_global_get_pseudologin_notify(&g);
1415    zbl = owl_global_get_zephyr_buddylist(&g);
1416    ret = ZParseLocations(n, zald, &numlocs, NULL);
1417    if (ret == ZERR_NONE) {
1418      if (numlocs > 0 && !owl_zbuddylist_contains_user(zbl, zald->user)) {
1419        if (notify) {
1420          numlocs = 1;
1421          ret = ZGetLocations(&location, &numlocs);
1422          if (ret == ZERR_NONE) {
1423            /* Send a PSEUDO LOGIN! */
1424            m = g_new(owl_message, 1);
1425            owl_message_create_pseudo_zlogin(m, 0, zald->user,
1426                                             location.host,
1427                                             location.time,
1428                                             location.tty);
1429            owl_global_messagequeue_addmsg(&g, m);
1430          }
1431          owl_zbuddylist_adduser(zbl, zald->user);
1432          owl_function_debugmsg("owl_function_zephyr_buddy_check: login for %s ", zald->user);
1433        }
1434      } else if (numlocs == 0 && owl_zbuddylist_contains_user(zbl, zald->user)) {
1435        /* Send a PSEUDO LOGOUT! */
1436        if (notify) {
1437          m = g_new(owl_message, 1);
1438          owl_message_create_pseudo_zlogin(m, 1, zald->user, "", "", "");
1439          owl_global_messagequeue_addmsg(&g, m);
1440        }
1441        owl_zbuddylist_deluser(zbl, zald->user);
1442        owl_function_debugmsg("owl_function_zephyr_buddy_check: logout for %s ", zald->user);
1443      }
1444    }
1445    ZFreeALD(zald);
1446    g_free(zald);
1447  }
1448}
1449#else
1450void owl_zephyr_process_pseudologin(void *n)
1451{
1452}
1453#endif
1454
1455gboolean owl_zephyr_buddycheck_timer(void *data)
1456{
1457  if (owl_global_is_pseudologins(&g)) {
1458    owl_function_debugmsg("Doing zephyr buddy check");
1459    owl_function_zephyr_buddy_check(1);
1460  } else {
1461    owl_function_debugmsg("Warning: owl_zephyr_buddycheck_timer call pointless; timer should have been disabled");
1462  }
1463  return TRUE;
1464}
1465
1466/*
1467 * Process zephyrgrams from libzephyr's queue. To prevent starvation,
1468 * process a maximum of OWL_MAX_ZEPHYRGRAMS_TO_PROCESS.
1469 *
1470 * Returns the number of zephyrgrams processed.
1471 */
1472
1473#define OWL_MAX_ZEPHYRGRAMS_TO_PROCESS 20
1474
1475#ifdef HAVE_LIBZEPHYR
1476static int _owl_zephyr_process_events(void)
1477{
1478  int zpendcount=0;
1479  ZNotice_t notice;
1480  Code_t code;
1481  owl_message *m=NULL;
1482
1483  while(owl_zephyr_zpending() && zpendcount < OWL_MAX_ZEPHYRGRAMS_TO_PROCESS) {
1484    if (owl_zephyr_zpending()) {
1485      if ((code = ZReceiveNotice(&notice, NULL)) != ZERR_NONE) {
1486        owl_function_debugmsg("Error: %s while calling ZReceiveNotice\n",
1487                              error_message(code));
1488        continue;
1489      }
1490      zpendcount++;
1491
1492      /* is this an ack from a zephyr we sent? */
1493      if (owl_zephyr_notice_is_ack(&notice)) {
1494        owl_zephyr_handle_ack(&notice);
1495        ZFreeNotice(&notice);
1496        continue;
1497      }
1498
1499      /* if it's a ping and we're not viewing pings then skip it */
1500      if (!owl_global_is_rxping(&g) && !strcasecmp(notice.z_opcode, "ping")) {
1501        ZFreeNotice(&notice);
1502        continue;
1503      }
1504
1505      /* if it is a LOCATE message, it's for pseudologins. */
1506      if (strcmp(notice.z_opcode, LOCATE_LOCATE) == 0) {
1507        owl_zephyr_process_pseudologin(&notice);
1508        ZFreeNotice(&notice);
1509        continue;
1510      }
1511
1512      /* create the new message */
1513      m=g_new(owl_message, 1);
1514      owl_message_create_from_znotice(m, &notice);
1515
1516      owl_global_messagequeue_addmsg(&g, m);
1517    }
1518  }
1519  return zpendcount;
1520}
1521
1522typedef struct { /*noproto*/
1523  GSource source;
1524  GPollFD poll_fd;
1525} owl_zephyr_event_source;
1526
1527static GSource *owl_zephyr_event_source_new(int fd) {
1528  GSource *source;
1529  owl_zephyr_event_source *event_source;
1530
1531  source = g_source_new(&zephyr_event_funcs, sizeof(owl_zephyr_event_source));
1532  event_source = (owl_zephyr_event_source*) source;
1533  event_source->poll_fd.fd = fd;
1534  event_source->poll_fd.events = G_IO_IN | G_IO_HUP | G_IO_ERR;
1535  g_source_add_poll(source, &event_source->poll_fd);
1536
1537  return source;
1538}
1539
1540static gboolean owl_zephyr_event_prepare(GSource *source, int *timeout) {
1541  *timeout = -1;
1542  return owl_zephyr_zqlength() > 0;
1543}
1544
1545static gboolean owl_zephyr_event_check(GSource *source) {
1546  owl_zephyr_event_source *event_source = (owl_zephyr_event_source*)source;
1547  if (event_source->poll_fd.revents & event_source->poll_fd.events)
1548    return owl_zephyr_zpending() > 0;
1549  return FALSE;
1550}
1551
1552static gboolean owl_zephyr_event_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) {
1553  _owl_zephyr_process_events();
1554  return TRUE;
1555}
1556#endif
Note: See TracBrowser for help on using the repository browser.