1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
|
//
// RiggerApp.m
// RiggerStatusItem
//
// Created by Wouter Wijngaards on 8/29/11.
// Copyright 2011 NLnet Labs. All rights reserved.
//
#include "config.h"
#include "cfg.h"
#include "log.h"
#include "osxattach.h"
#import "RiggerApp.h"
extern char* test_config_file;
/* if true logs trace for debug */
static int verb = 0;
static NSLock* feed_lock = NULL;
/** basically these are the commandline arguments to PanelAlert */
static NSLock* alert_lock;
static struct alert_arg alertinfo;
static char* versioninfo = NULL;
static RiggerApp* mainapp = NULL;
static void cleanup(void)
{
[mainapp dealloc];
}
static void lock_feed_lock(void)
{
[feed_lock lock];
}
static void unlock_feed_lock(void)
{
[feed_lock unlock];
}
static void feed_quit(void)
{
[feed_lock unlock];
/* calls cleanup() atexit */
exit(0);
}
static void feed_update_alert(char* new_version)
{
/* store parameters in threadsafe manner */
[alert_lock lock];
free(versioninfo);
versioninfo = new_version;
[alert_lock unlock];
if(verb) printf("panel update state in attach\n");
[mainapp performSelectorOnMainThread:@selector(PanelUpdateAlert)
withObject:nil waitUntilDone:NO];
}
static void feed_alert(struct alert_arg* a)
{
/* store parameters in threadsafe manner */
[alert_lock lock];
alertinfo = *a;
[alert_lock unlock];
if(verb) printf("panel alert state in attach\n");
[mainapp performSelectorOnMainThread:@selector(PanelAlert)
withObject:nil waitUntilDone:NO];
}
@implementation NowebDelegate
-(BOOL)windowShouldClose:(NSWindow*)sender
{
if(verb) NSLog(@"nowebclose handler");
/* like pressing skip */
mainapp->noweb_asked = 1;
attach_send_skip_http();
return YES;
}
@end /* of NowebDelegate */
@implementation UpdateDelegate
-(BOOL)windowShouldClose:(NSWindow*)sender
{
if(verb) NSLog(@"updateclose handler");
/* like pressing cancel */
attach_send_update_cancel();
return YES;
}
@end /* of UpdateDelegate */
@implementation RiggerApp
-(void)
awakeFromNib
{
char* cfgfile = CONFIGFILE;
if(test_config_file)
cfgfile = test_config_file;
/* Setup the status icon in the tray */
riggeritem = [[[NSStatusBar systemStatusBar]
statusItemWithLength:NSSquareStatusItemLength] retain];
NSBundle* bundle = [NSBundle mainBundle];
/* Note that the icon images are 18x18px in size and are png with
* transparency. This makes the tray icon work on OSX. Other
* sizes do not work. */
icon = [[NSImage alloc] initWithContentsOfFile:
[bundle pathForResource:@"status-icon" ofType:@"png"]];
icon_alert = [[NSImage alloc] initWithContentsOfFile:
[bundle pathForResource:@"status-icon-alert" ofType:@"png"]];
[riggeritem setImage:icon];
/* [riggeritem setAlternateImage:icon_alert]; this would be the highlight image but
* we use the builtin highlight code that uses the alpha channel in the icon */
[riggeritem setMenu:riggermenu];
[riggeritem setToolTip:@"dnssec-trigger"];
/* highlight the icon when the statusmenu is shown */
[riggeritem setHighlightMode:YES];
/* Init */
mainapp = self;
unsafe_asked = 0;
unsafe_should = 0;
noweb_asked = 0;
memset(&alertinfo, 0, sizeof(alertinfo));
alert_lock = [NSLock alloc];
log_ident_set("dnssec-trigger-panel-osx");
log_init(NULL, 0, NULL);
ERR_load_crypto_strings();
ERR_load_SSL_strings();
OpenSSL_add_all_algorithms();
(void)SSL_library_init();
/* Read config */
cfg = cfg_create(cfgfile);
if(!cfg)
fatal_exit("cannot read config file %s", cfgfile);
/* spawn the feed thread */
attach_create();
feed_lock = [NSLock alloc];
feed->lock = &lock_feed_lock;
feed->unlock = &unlock_feed_lock;
feed->quit = &feed_quit;
feed->alert = &feed_alert;
feed->update_alert = &feed_update_alert;
atexit(&cleanup);
[NSThread detachNewThreadSelector:@selector(SpawnFeed:)
toTarget:self withObject:nil];
}
-(void)
dealloc
{
if(verb) printf("dealloc routine\n");
attach_stop();
/* [feed_lock release]; do not dealloc but let system
reclaim these resources, the attach.c:check_for_event may
still need to unlock this feed_lock
free(feed);
*/
[alert_lock release];
[icon release];
[icon_alert release];
free(versioninfo);
[super dealloc];
}
-(void)SpawnFeed:(id)param
{
attach_start(cfg);
}
-(IBAction)Reprobe:(id)sender
{
if(verb) NSLog(@"Reprobe");
attach_send_reprobe();
}
void append_txt(NSTextView* pane, char* str)
{
NSRange range;
range.location = [[pane textStorage] length];
range.length = 0;
NSString* s = [NSString stringWithUTF8String:str];
[pane replaceCharactersInRange: range withString: s];
/* because the string is allocated with convenience function
* no need to [s release]. */
}
-(IBAction)ProbeResults:(id)sender
{
if(verb) NSLog(@"ProbeResults");
/* this is to help us bring a window to the front
* from the hidden app */
[NSApp activateIgnoringOtherApps:YES];
[resultpane setEditable:YES];
NSRange range;
range.location = 0;
range.length = [[resultpane textStorage] length];
[resultpane replaceCharactersInRange: range
withString:@""];
char buf[102400];
fetch_proberesults(buf, sizeof(buf), "\n");
append_txt(resultpane, buf);
[resultpane setEditable:NO];
[resultpane setSelectable:YES];
[resultwindow setLevel:NSScreenSaverWindowLevel + 1];
[resultwindow orderFront:sender];
}
-(IBAction)ProbeResultsOK:(id)sender
{
if(verb) NSLog(@"ProbeResultsOK");
[resultwindow orderOut:sender];
}
-(IBAction)UnsafeInsecure:(id)sender
{
if(verb) NSLog(@"Unsafe:Insecure");
[unsafewindow orderOut:sender];
unsafe_asked = 1;
unsafe_should = 0;
attach_send_insecure(1);
}
-(IBAction)UnsafeDisconnect:(id)sender
{
if(verb) NSLog(@"Unsafe:Disconnect");
[unsafewindow orderOut:sender];
unsafe_asked = 1;
unsafe_should = 0;
attach_send_insecure(0);
}
-(IBAction)HotspotSignon:(id)sender
{
if(verb) NSLog(@"menu-hotspotsignon");
/* this is to help us bring a window to the front
* from the hidden app */
[NSApp activateIgnoringOtherApps:YES];
[hotsignwindow center];
if([hotsignwindow isMiniaturized]) /* without this if(), random win popsup often */
[hotsignwindow deminiaturize:sender];
[hotsignwindow setLevel:NSScreenSaverWindowLevel + 1];
[hotsignwindow orderFront:sender];
}
-(IBAction)HotsignOK:(id)sender
{
if(verb) NSLog(@"hotsign ok");
attach_send_hotspot_signon();
[hotsignwindow orderOut:sender];
unsafe_asked = 1;
unsafe_should = 0;
}
-(IBAction)HotsignCancel:(id)sender
{
if(verb) NSLog(@"hotsign cancel");
[hotsignwindow orderOut:sender];
if(unsafe_should) [mainapp PresentUnsafeDialog];
}
-(IBAction)NowebLogin:(id)sender
{
if(verb) NSLog(@"noweb login");
[nowebwindow orderOut:sender];
noweb_asked = 1;
attach_send_insecure(1);
sleep(1); /* for dns settings to get updated */
run_login();
}
-(IBAction)NowebSkip:(id)sender
{
if(verb) NSLog(@"noweb skip");
[nowebwindow orderOut:sender];
noweb_asked = 1;
attach_send_skip_http();
}
-(void)PresentNowebDialog
{
[nowebwindow center];
if([nowebwindow isMiniaturized]) /* without this if(), random win popsup often */
[nowebwindow deminiaturize:nil];
[nowebwindow setLevel:NSScreenSaverWindowLevel + 1];
[nowebwindow orderFront:nil];
}
-(IBAction)UpdateOK:(id)sender
{
if(verb) NSLog(@"update OK");
[updatewindow orderOut:sender];
attach_send_update_ok();
}
-(IBAction)UpdateCancel:(id)sender
{
if(verb) NSLog(@"update Cancel");
[updatewindow orderOut:sender];
attach_send_update_cancel();
}
-(void)PresentUpdateDialog:(char*)newversion
{
/* set text in updatelabel */
NSString* str;
char update_text[1024];
snprintf(update_text, sizeof(update_text),
"There is a software update available for dnssec-trigger\n"
"from %s to %s.\n"
"Do you wish to install the update now?",
PACKAGE_VERSION, newversion);
/* no need to [str release] because of convenience function */
str = [NSString stringWithUTF8String:update_text];
[updatelabel setStringValue:str];
[updatewindow center];
if([updatewindow isMiniaturized]) /* without this if(), random win popsup often */
[updatewindow deminiaturize:nil];
[updatewindow setLevel:NSScreenSaverWindowLevel + 1];
[updatewindow orderFront:nil];
}
-(BOOL)windowShouldClose:(NSWindow*)sender
{
if(verb) NSLog(@"unsafeclose handler");
/* like pressing disconnect */
unsafe_asked = 1;
unsafe_should = 0;
attach_send_insecure(0);
return YES;
}
-(void)PresentUnsafeDialog
{
unsafe_should = 1;
if([hotsignwindow isVisible])
return; /* wait for hotspot signon question to finish */
[unsafewindow center];
if([unsafewindow isMiniaturized]) /* without this if(), random win popsup often */
[unsafewindow deminiaturize:nil];
[unsafewindow setLevel:NSScreenSaverWindowLevel + 1];
[unsafewindow orderFront:nil];
}
-(void)PanelAlertDanger
{
[riggeritem setImage:icon_alert];
}
-(void)PanelAlertSafe
{
[riggeritem setImage:icon];
}
static void do_danger(void)
{
[mainapp PanelAlertDanger];
}
static void do_safe(void)
{
[mainapp PanelAlertSafe];
}
static void do_ask(void)
{
[mainapp PresentUnsafeDialog];
}
static void do_noweb(void)
{
[mainapp PresentNowebDialog];
}
-(void)PanelAlert
{
NSString* tt;
const char* ctt;
struct alert_arg a;
if(verb) NSLog(@"PanelAlert function");
[alert_lock lock];
a = alertinfo;
[alert_lock unlock];
ctt = state_tooltip(&a);
/* no need to [tt release] because of convenience function */
tt = [NSString stringWithUTF8String:ctt];
[riggeritem setToolTip:tt];
process_state(&a, &unsafe_asked, &noweb_asked, &do_danger, &do_safe, &do_ask,
&do_noweb);
if(!a.now_dark) unsafe_should = 0;
}
-(void)PanelUpdateAlert
{
char* newversion;
if(verb) NSLog(@"PanelAlert function");
[alert_lock lock];
newversion = versioninfo;
versioninfo = NULL;
[alert_lock unlock];
[mainapp PresentUpdateDialog:newversion];
free(newversion);
}
@end
|