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