pndevmapperd: support multiple charge devices
[pandora-libraries.git] / apps / pndnotifyd.c
1
2 /* pndnotifyd - a daemon whose job is to monitor searchpaths for app changes (appearing, disappearing, changing).
3  * If a change is found, the discovery code is invoked and apps registered for the launchers to see
4  *
5  */
6
7 #include <stdio.h>     // for stdio
8 #include <unistd.h>    // for exit()
9 #include <stdlib.h>    // for exit()
10 #define __USE_GNU /* for strcasestr */
11 #include <string.h>
12 #include <time.h>      // for time()
13 #include <ctype.h>     // for isdigit()
14 #include <sys/types.h> // for umask
15 #include <sys/stat.h>  // for umask
16 #include <dirent.h>    // for opendir()
17 #include <signal.h>    // for sigaction
18
19 #include "pnd_conf.h"
20 #include "pnd_container.h"
21 #include "pnd_apps.h"
22 #include "pnd_notify.h"
23 #include "../lib/pnd_pathiter.h"
24 #include "pnd_discovery.h"
25 #include "pnd_locate.h"
26 #include "pnd_pxml.h"
27 #include "pnd_utility.h"
28 #include "pnd_desktop.h"
29 #include "pnd_logger.h"
30 #include "pnd_dbusnotify.h"
31 #include "pnd_pndfiles.h"
32
33 // this piece of code was simpler once; but need to grow it a bit and in a rush
34 // moving all these to globals rather than refactor the code a bit; tsk tsk..
35
36 // op mode; emitting stdout or no?
37 static unsigned char g_daemon_mode = 0;
38
39 typedef enum {
40   pndn_debug = 0,
41   pndn_rem,          // will set default log level to here, so 'debug' is omitted
42   pndn_warning,
43   pndn_error,
44   pndn_none
45 } pndnotify_loglevels_e;
46
47 // like discotest
48 char *configpath;
49 char *overridespath;
50 // daemon stuff
51 char *searchpath = NULL;
52 char *notifypath = NULL;
53 time_t createtime = 0; // all 'new' .destops are created at or after this time; prev are old.
54 // dotfiles; this used to be a single pai .. now two pairs, a little unwieldy; pnd_box it up?
55 char *desktop_dotdesktoppath = NULL;
56 char *desktop_iconpath = NULL;
57 char *desktop_appspath = NULL;
58 char *menu_dotdesktoppath = NULL;
59 char *menu_iconpath = NULL;
60 char *menu_appspath = NULL;
61 char *info_dotdesktoppath = NULL;
62 // pnd runscript
63 char *run_searchpath; // searchpath to find pnd_run.sh
64 char *run_script;     // name of pnd_run.sh script from config
65 char *pndrun;         // full path to located pnd_run.sh
66 char *pndhup = NULL;  // full path to located pnd_hup.sh
67 // default username
68 char g_username [ 128 ]; // since we have to wait for login (!!), store username here
69 // notifier handle
70 pnd_notify_handle nh = 0;
71 pnd_dbusnotify_handle dbh = 0;
72 unsigned char g_info_p = 0; // spit out info .desktops
73
74 // constants
75 #define PNDNOTIFYD_LOGLEVEL "pndnotifyd.loglevel"
76 #define PNDLOCKNAME "pndnotifyd-disco.lock"
77
78 // decl's
79 void consume_configuration ( void );
80 void setup_notifications ( void );
81 void sigint_handler ( int n );
82 void sighup_handler ( int n );
83 void process_discoveries ( pnd_box_handle applist, char *emitdesktoppath, char *emiticonpath );
84 unsigned char perform_discoveries ( char *appspath, char *overridespath,
85                                     char *emitdesktoppath, char *emiticonpath );
86
87 int main ( int argc, char *argv[] ) {
88   // behaviour
89   unsigned char scanonlaunch = 1;
90   unsigned int interval_secs = 5;
91   int logall = -1; // -1 means normal logging rules; >=0 means log all!
92   // misc
93   int i;
94
95   /* iterate across args
96    */
97   for ( i = 1; i < argc; i++ ) {
98
99     if ( argv [ i ][ 0 ] == '-' && argv [ i ][ 1 ] == 'd' ) {
100       //printf ( "Going daemon mode. Silent running.\n" );
101       g_daemon_mode = 1;
102     } else if ( isdigit ( argv [ i ][ 0 ] ) ) {
103       interval_secs = atoi ( argv [ i ] );
104     } else if ( argv [ i ][ 0 ] == '-' && argv [ i ][ 1 ] == 'n' ) {
105       scanonlaunch = 0;
106     } else if ( argv [ i ][ 0 ] == '-' && argv [ i ][ 1 ] == 'l' ) {
107
108       if ( isdigit ( argv [ i ][ 2 ] ) ) {
109         unsigned char x = atoi ( argv [ i ] + 2 );
110         if ( x >= 0 &&
111              x < pndn_none )
112         {
113           logall = x;
114         }
115       } else {
116         logall = 0;
117       }
118
119     } else {
120       printf ( "%s [-d] [-l] [##]\n", argv [ 0 ] );
121       printf ( "-d\tDaemon mode; detach from terminal, chdir to /tmp, suppress output. Optional.\n" );
122       printf ( "-n\tDo not scan on launch; default is to run a scan for apps when %s is invoked.\n", argv [ 0 ] );
123       printf ( "-l#\tLog-it; -l is 0-and-up (or all), and -l2 means 2-and-up (not all); l[0-3] for now. Log goes to /tmp/pndnotifyd.log\n" );
124       printf ( "##\tA numeric value is interpreted as number of seconds between checking for filesystem changes. Default %u.\n",
125                interval_secs );
126       printf ( "Signal: HUP the process to force reload of configuration and reset the notifier watch paths\n" );
127       exit ( 0 );
128     }
129
130   } // for
131
132   /* enable logging?
133    */
134   pnd_log_set_pretext ( "pndnotifyd" );
135   pnd_log_set_flush ( 1 );
136
137   if ( logall == -1 ) {
138     // standard logging; non-daemon versus daemon
139
140     if ( g_daemon_mode ) {
141       // nada
142     } else {
143       pnd_log_set_filter ( pndn_rem );
144       pnd_log_to_stdout();
145     }
146
147   } else {
148     FILE *f;
149
150     f = fopen ( "/tmp/pndnotifyd.log", "w" );
151
152     if ( f ) {
153       pnd_log_set_filter ( logall );
154       pnd_log_to_stream ( f );
155       pnd_log ( pndn_rem, "logall mode - logging to /tmp/pndnotifyd.log\n" );
156     }
157
158     if ( logall == pndn_debug ) {
159       pnd_log_set_buried_logging ( 1 ); // log the shit out of it
160       pnd_log ( pndn_rem, "logall mode 0 - turned on buried logging\n" );
161     }
162
163   } // logall
164
165   pnd_log ( pndn_rem, "%s built %s %s", argv [ 0 ], __DATE__, __TIME__ );
166
167   pnd_log ( pndn_rem, "log level starting as %u", pnd_log_get_filter() );
168
169   pnd_log ( pndn_rem, "Interval between checks is %u seconds\n", interval_secs );
170
171   // check if inotify is awake yet; if not, try waiting for awhile to see if it does
172   pnd_log ( pndn_rem, "Starting INOTIFY test; should be instant, but may take awhile...\n" );
173
174   if ( ! pnd_notify_wait_until_ready ( 120 /* seconds */ ) ) {
175     pnd_log ( pndn_error, "ERROR: INOTIFY refuses to be useful and quite awhile has passed. Bailing out.\n" );
176     return ( -1 );
177   }
178
179   pnd_log ( pndn_rem, "INOTIFY seems to be useful, whew.\n" );
180
181   // basic daemon set up
182   if ( g_daemon_mode ) {
183
184     // set a CWD somewhere else
185 #if 0
186     chdir ( "/tmp" );
187 #endif
188
189     // detach from terminal
190     if ( ( i = fork() ) < 0 ) {
191       pnd_log ( pndn_error, "ERROR: Couldn't fork()\n" );
192       exit ( i );
193     }
194     if ( i ) {
195       exit ( 0 ); // exit parent
196     }
197     setsid();
198
199     // umask
200     umask ( 022 ); // emitted files can be rwxr-xr-x
201
202   } // set up daemon
203
204   // wait for a user to be logged in - we should probably get hupped when a user logs in, so we can handle
205   // log-out and back in again, with SDs popping in and out between..
206   pnd_log ( pndn_rem, "Checking to see if a user is logged in\n" );
207   while ( 1 ) {
208     if ( pnd_check_login ( g_username, 127 ) ) {
209       break;
210     }
211     pnd_log ( pndn_debug, "  No one logged in yet .. spinning.\n" );
212     sleep ( 2 );
213   } // spin
214   pnd_log ( pndn_rem, "Looks like user '%s' is in, continue.\n", g_username );
215
216   /* parse configs
217    */
218
219   consume_configuration();
220
221   /* startup
222    */
223
224   pnd_log ( pndn_rem, "PXML overrides searchpath is '%s'\n", overridespath );
225   pnd_log ( pndn_rem, "Notify searchpath is '%s'\n", notifypath );
226
227   pnd_log ( pndn_rem, "Desktop apps ---------------------------------\n" );
228   pnd_log ( pndn_rem, "Apps searchpath is '%s'\n", desktop_appspath );
229   pnd_log ( pndn_rem, ".desktop files emit to '%s'\n", desktop_dotdesktoppath );
230   pnd_log ( pndn_rem, ".desktop icon files emit to '%s'\n", desktop_iconpath );
231
232   pnd_log ( pndn_rem, "Menu apps ---------------------------------\n" );
233   pnd_log ( pndn_rem, "Apps searchpath is '%s'\n", menu_appspath );
234   pnd_log ( pndn_rem, ".desktop files emit to '%s'\n", menu_dotdesktoppath );
235   pnd_log ( pndn_rem, ".desktop icon files emit to '%s'\n", menu_iconpath );
236   pnd_log ( pndn_rem, ".desktop info files emit to '%s'\n", info_dotdesktoppath ? info_dotdesktoppath : "n/a" );
237
238   /* set up signal handler
239    */
240   sigset_t ss;
241   sigemptyset ( &ss );
242
243   struct sigaction siggy;
244   siggy.sa_handler = sighup_handler;
245   siggy.sa_mask = ss; /* implicitly blocks the origin signal */
246   siggy.sa_flags = 0; /* don't need anything */
247
248   sigaction ( SIGHUP, &siggy, NULL );
249
250   siggy.sa_handler = sigint_handler;
251   sigaction ( SIGINT, &siggy, NULL );
252
253   /* set up notifies
254    */
255
256   // if we're gong to scan on launch, it'll set things right up and then set up notifications.
257   // if no scan on launch, we need to set the notif's up now.
258   //if ( ! scanonlaunch ) {
259   setup_notifications();
260   //}
261
262   dbh = pnd_dbusnotify_init();
263
264   /* daemon main loop
265    */
266   unsigned char watch_inotify, watch_dbus;
267   while ( 1 ) {
268
269     watch_dbus = 0;
270     watch_inotify = 0;
271
272     if ( dbh ) {
273       watch_dbus = pnd_dbusnotify_rediscover_p ( dbh );
274     }
275
276     if ( ! watch_dbus && nh ) {
277       watch_inotify = pnd_notify_rediscover_p ( nh );
278     }
279
280     // need to rediscover?
281     if ( scanonlaunch || watch_inotify || watch_dbus ) {
282
283       // by this point, the watched directories have notified us that something of relevent
284       // has occurred; we should be clever, but we're not, so just re-brute force the
285       // discovery and spit out .desktop files..
286       pnd_log ( pndn_rem, "------------------------------------------------------\n" );
287
288       pnd_log ( pndn_rem, "System changes detected in dbus or watched paths .. performing re-discover!\n" );
289
290       // if this was a forced scan, lets not do that next iteration
291       if ( scanonlaunch ) {
292         pnd_log ( pndn_rem, "scan-on-first-launch detected an event\n" );
293         scanonlaunch = 0;
294       }
295
296       if ( watch_inotify ) {
297         pnd_log ( pndn_rem, "inotify detected an event\n" );
298       }
299
300       if ( watch_dbus ) {
301         pnd_log ( pndn_rem, "dbusnotify detected an event\n" );
302         pnd_notify_shutdown ( nh );
303         nh = 0;
304       }
305
306       if ( time ( NULL ) - createtime <= 2 ) {
307         pnd_log ( pndn_rem, "Rediscovery request comes to soon after previous discovery; skipping.\n" );
308         sleep ( interval_secs );
309         continue;
310       }
311
312       pnd_log ( pndn_rem, "------------------------------------------------------\n" );
313
314       createtime = time ( NULL ); // all 'new' .destops are created at or after this time; prev are old.
315
316       /* run the discovery
317        */
318
319       // do some 'locking'
320       pnd_log ( pndn_rem, "creating lockfile %s", PNDLOCKNAME );
321       if ( ! pnd_lock ( PNDLOCKNAME ) ) {
322         // problem .. well, too bad, we need to do this .. proceed!
323       }
324
325       // scan..
326       pnd_log ( pndn_rem, "  Scanning desktop paths----------------------------\n" );
327       if ( ! perform_discoveries ( desktop_appspath, overridespath, desktop_dotdesktoppath, desktop_iconpath ) ) {
328         pnd_log ( pndn_rem, "    No applications found in desktop search path\n" );
329       }
330
331       if ( menu_appspath && menu_dotdesktoppath && menu_iconpath ) {
332         pnd_log ( pndn_rem, "  Scanning menu paths----------------------------\n" );
333         if ( ! perform_discoveries ( menu_appspath, overridespath, menu_dotdesktoppath, menu_iconpath ) ) {
334           pnd_log ( pndn_rem, "    No applications found in menu search path\n" );
335         }
336       }
337
338       // unlock
339       pnd_log ( pndn_rem, "clearing lockfile %s", PNDLOCKNAME );
340       pnd_unlock ( PNDLOCKNAME );
341
342       // if we've got a hup script located, lets invoke it
343       if ( pndhup ) {
344         pnd_log ( pndn_rem, "Invoking hup script '%s'.\n", pndhup );
345         pnd_exec_no_wait_1 ( pndhup, NULL );
346       }
347
348       // since its entirely likely new directories have been found (ie: SD with a directory structure was inserted)
349       // we should re-apply watches to catch all these new directories; ie: user might use on-device browser to
350       // drop in new applications, or use the shell to juggle them around, or any number of activities.
351       if ( watch_dbus ) {
352         setup_notifications();
353       }
354
355     } // need to rediscover?
356
357     // lets not eat up all the CPU
358     // should use an alarm or select() or something -- I mean really, why aren't I putting interval_secs into
359     // the select() call above in pnd_notify_whatsitcalled()? -- but lets not break this right before release shall we
360     // NOTE: Oh right, I remember now -- inotify will spam when a card is inserted, and it will not be instantaneoous..
361     // the events will dribble in over a second. So this sleep is a lame trick that generally works. I really should
362     // do select(), and then when it returns just spin for a couple seconds slurping up events until no more and a thresh-hold
363     // time is hit, but this will do for now. I suck.
364     sleep ( interval_secs );
365
366   } // while
367
368   /* shutdown
369    */
370   pnd_notify_shutdown ( nh );
371   pnd_dbusnotify_shutdown ( dbh );
372
373   return ( 0 );
374 }
375
376 void consume_configuration ( void ) {
377
378   // attempt to fetch a sensible default searchpath for configs
379   configpath = pnd_conf_query_searchpath();
380
381   // attempt to fetch the apps config to pick up a searchpath
382   pnd_conf_handle apph;
383
384   apph = pnd_conf_fetch_by_id ( pnd_conf_apps, configpath );
385
386   if ( apph ) {
387
388     overridespath = pnd_conf_get_as_char ( apph, PND_PXML_OVERRIDE_KEY );
389
390     if ( ! overridespath ) {
391       overridespath = PND_PXML_OVERRIDE_SEARCHPATH;
392     }
393
394     notifypath = pnd_conf_get_as_char ( apph, PND_APPS_NOTIFY_KEY );
395
396     if ( ! notifypath ) {
397       notifypath = PND_APPS_NOTIFYPATH;
398     }
399
400   } else {
401     // couldn't find a useful app search path so use the default
402     overridespath = PND_PXML_OVERRIDE_SEARCHPATH;
403     notifypath = PND_APPS_NOTIFYPATH;
404   }
405
406   // attempt to figure out where to drop dotfiles .. now that we're going
407   // multi-target we see the limit of my rudimentary conf-file parser; should
408   // just parse to an array of targets, rather that hardcoding two, but
409   // on the other hand, don't likely see the need for more than two? (famous
410   // last words.)
411   pnd_conf_handle desktoph;
412
413   desktoph = pnd_conf_fetch_by_id ( pnd_conf_desktop, configpath );
414
415   // for 'desktop' main applications
416   if ( desktoph ) {
417     desktop_dotdesktoppath = pnd_conf_get_as_char ( desktoph, PND_DESKTOP_DOTDESKTOP_PATH_KEY );
418     desktop_iconpath = pnd_conf_get_as_char ( desktoph, PND_DESKTOP_ICONS_PATH_KEY );
419     desktop_appspath = pnd_conf_get_as_char ( desktoph, PND_DESKTOP_SEARCH_KEY );
420     info_dotdesktoppath = pnd_conf_get_as_char ( desktoph, "info.dotdesktoppath" );
421   }
422
423   if ( ! desktop_dotdesktoppath ) {
424     desktop_dotdesktoppath = PND_DESKTOP_DOTDESKTOP_PATH_DEFAULT;
425   }
426
427   if ( ! desktop_iconpath ) {
428     desktop_iconpath = PND_DESKTOP_ICONS_PATH_DEFAULT;
429   }
430
431   if ( ! desktop_appspath ) {
432     desktop_appspath = PND_DESKTOP_SEARCH_PATH_DEFAULT;
433   }
434
435   // for 'menu' applications
436   if ( desktoph ) {
437     menu_dotdesktoppath = pnd_conf_get_as_char ( desktoph, PND_MENU_DOTDESKTOP_PATH_KEY );
438     menu_iconpath = pnd_conf_get_as_char ( desktoph, PND_MENU_ICONS_PATH_KEY );
439     menu_appspath = pnd_conf_get_as_char ( desktoph, PND_MENU_SEARCH_KEY );
440   }
441
442   // info
443   if ( desktoph ) {
444     g_info_p = pnd_conf_get_as_int_d ( desktoph, "info.emit_info", 0 );
445   }
446
447   /* try to locate a runscript and optional hupscript
448    */
449
450   if ( apph ) {
451     run_searchpath = pnd_conf_get_as_char ( apph, PND_PNDRUN_SEARCHPATH_KEY );
452     run_script = pnd_conf_get_as_char ( apph, PND_PNDRUN_KEY );
453     pndrun = NULL;
454
455     if ( ! run_searchpath ) {
456       run_searchpath = PND_APPS_SEARCHPATH;
457       run_script = PND_PNDRUN_FILENAME;
458     }
459
460     if ( pnd_conf_get_as_int ( apph, PNDNOTIFYD_LOGLEVEL ) != PND_CONF_BADNUM ) {
461       if ( pnd_log_do_buried_logging() == 0 ) {
462         pnd_log_set_filter ( pnd_conf_get_as_int ( apph, PNDNOTIFYD_LOGLEVEL ) );
463         pnd_log ( pndn_rem, "config file causes loglevel to change to %u", pnd_log_get_filter() );
464       } else {
465         pnd_log ( pndn_rem, "-l command line suppresses log level change in config file\n" );
466       }
467     }
468
469   } else {
470     run_searchpath = NULL;
471     run_script = NULL;
472     pndrun = PND_PNDRUN_DEFAULT;
473   }
474
475   if ( ! pndrun ) {
476     pndrun = pnd_locate_filename ( run_searchpath, run_script );
477
478     if ( pndrun ) {
479       pndrun = strdup ( pndrun ); // so we don't just use the built in buffer; next locate will overwrite it
480     } else {
481       pndrun = PND_PNDRUN_DEFAULT;
482     }
483
484   }
485
486   if ( desktoph && run_searchpath ) {
487     char *t;
488
489     if ( ( t = pnd_conf_get_as_char ( desktoph, PND_PNDHUP_KEY ) ) ) {
490       pndhup = pnd_locate_filename ( run_searchpath, t );
491
492       if ( pndhup ) {
493         pndhup = strdup ( pndhup ); // so we don't just use the built in buffer; next locate will overwrite it
494       }
495
496 #if 0 // don't enable this; if no key in config, we don't want to bother hupping
497     } else {
498       pndhup = pnd_locate_filename ( run_searchpath, PND_PNDHUP_FILENAME );
499 #endif
500     }
501
502   }
503
504   // debug
505   if ( run_searchpath ) pnd_log ( pndn_rem, "Locating pnd run in %s\n", run_searchpath );
506   if ( run_script ) pnd_log ( pndn_rem, "Locating pnd runscript as %s\n", run_script );
507   if ( pndrun ) pnd_log ( pndn_rem, "pndrun is %s\n", pndrun );
508   if ( pndhup ) {
509     pnd_log ( pndn_rem, "pndhup is %s\n", pndhup );
510   } else {
511     pnd_log ( pndn_rem, "No pndhup found (which is fine.)\n" );
512   }
513
514   /* cheap hack, maybe it'll help when pndnotifyd is coming up before the rest of the system and before
515    * the user is formally logged in
516    */
517   pnd_log ( pndn_rem, "Setting a default $HOME to non-root user\n" );
518
519   // first, try to see if known-username maps to a homedir; if so, just use that!
520   // otherwise, pick first non-root homedir and assume .. or we start blaring .desktops
521   // out to all users like idiots
522   unsigned char got_user_homedir = 0;
523
524   if ( g_username [ 0 ] ) {
525     struct stat homedir;
526     char path [ PATH_MAX ];
527
528     sprintf ( path, "/home/%s", g_username );
529
530     // does this made up path exist?
531     if ( stat ( path, &homedir ) == 0 ) {
532
533       // and its a dir?
534       if ( S_ISDIR(homedir.st_mode) ) {
535         pnd_log ( pndn_rem, "  User [%s] matches path [%s], going with '%s'\n", g_username, path, path );
536         setenv ( "HOME", path, 1 /* overwrite */ );
537         got_user_homedir = 1;
538       } // and its a dir?
539
540     } // guessing a homedirname..
541
542   } // got a username?
543
544   // if guessing a path was no good, just try finding one
545   if ( got_user_homedir == 0 ) {
546     DIR *dir;
547
548     if ( ( dir = opendir ( "/home" ) ) ) {
549       struct dirent *dirent;
550
551       while ( ( dirent = readdir ( dir ) ) ) {
552         pnd_log ( pndn_rem, "  Scanning user homedir '%s'\n", dirent -> d_name );
553
554         // file is a .desktop?
555         if ( dirent -> d_name [ 0 ] == '.' ) {
556           continue;
557         } else if ( strcmp ( dirent -> d_name, "root" ) == 0 ) {
558           continue;
559         }
560
561         // a non-root user is found
562         char buffer [ 200 ];
563         sprintf ( buffer, "/home/%s", dirent -> d_name );
564         pnd_log ( pndn_rem, "  Going with '%s'\n", buffer );
565         setenv ( "HOME", buffer, 1 /* overwrite */ );
566         break;
567
568       } // while iterating through dir listing
569
570       closedir ( dir );
571     } // opendir?
572
573   } // scope
574
575   /* handle globbing or variable substitution
576    */
577   desktop_dotdesktoppath = pnd_expand_tilde ( strdup ( desktop_dotdesktoppath ) );
578   desktop_iconpath = pnd_expand_tilde ( strdup ( desktop_iconpath ) );
579   mkdir ( desktop_dotdesktoppath, 0777 );
580   mkdir ( desktop_iconpath, 0777 );
581
582   if ( info_dotdesktoppath ) {
583     info_dotdesktoppath = pnd_expand_tilde ( strdup ( info_dotdesktoppath ) );
584     mkdir ( info_dotdesktoppath, 0777 );
585   }
586
587   if ( menu_dotdesktoppath ) {
588     menu_dotdesktoppath = pnd_expand_tilde ( strdup ( menu_dotdesktoppath ) );
589     mkdir ( menu_dotdesktoppath, 0777 );
590   }
591   if ( menu_iconpath ) {
592     menu_iconpath = pnd_expand_tilde ( strdup ( menu_iconpath ) );
593     mkdir ( menu_iconpath, 0777 );
594   }
595
596   // done
597   return;
598 }
599
600 void setup_notifications ( void ) {
601   searchpath = notifypath;
602
603   // if this is first time through, we can just set it up; for subsequent times
604   // through, we need to close existing fd and re-open it, since we're too lame
605   // to store the list of watches and 'rm' them
606 #if 1
607   if ( nh ) {
608     pnd_notify_shutdown ( nh );
609     nh = 0;
610   }
611 #endif
612
613   // set up a new set of notifies
614   if ( ! nh ) {
615     nh = pnd_notify_init();
616   }
617
618   if ( ! nh ) {
619     pnd_log ( pndn_rem, "INOTIFY failed to init.\n" );
620     exit ( -1 );
621   }
622
623 #if 0
624   pnd_log ( pndn_rem, "INOTIFY is up.\n" );
625 #endif
626
627   SEARCHPATH_PRE
628   {
629
630     pnd_log ( pndn_rem, "Watching path '%s' and its descendents.\n", buffer );
631     pnd_notify_watch_path ( nh, buffer, PND_NOTIFY_RECURSE );
632
633     //pnd_notify_watch_path ( nh, buffer, 0 /* no recurse */ );
634
635   }
636   SEARCHPATH_POST
637
638 #if 0
639   sleep ( 1 ); // wait for events to trigger?
640
641   // clear out any notifies we just created
642   while ( pnd_notify_rediscover_p ( nh ) ) {
643     usleep ( 100 ); // spin
644   } // while
645 #endif
646
647   return;
648 }
649
650 void sighup_handler ( int n ) {
651
652   pnd_log ( pndn_rem, "---[ SIGHUP received ]---\n" );
653
654   // reparse config files
655   consume_configuration();
656
657   // re set up the notifier watches
658   setup_notifications();
659
660   return;
661 }
662
663 void sigint_handler ( int n ) {
664
665   pnd_log ( pndn_rem, "---[ SIGINT received ]---\n" );
666
667   if ( dbh ) {
668     pnd_dbusnotify_shutdown ( dbh );
669   }
670
671   if ( nh ) {
672     pnd_notify_shutdown ( nh );
673   }
674
675   return;
676 }
677
678 // This very recently was inline code; just slight refactor to functionize it so that it can be
679 // reused in a couple of places. Simple code with simple design quickly became too large for
680 // its simple design; should revisit a lot of these little things..
681 void process_discoveries ( pnd_box_handle applist, char *emitdesktoppath, char *emiticonpath ) {
682   pnd_disco_t *d = pnd_box_get_head ( applist );
683
684   while ( d ) {
685
686     pnd_log ( pndn_rem, "Found app: %s\n", pnd_box_get_key ( d ) );
687
688     // check if icon already exists (from a previous extraction say); if so, we needn't
689     // do it again
690     char existingpath [ FILENAME_MAX ];
691     sprintf ( existingpath, "%s/%s.png", emiticonpath, d -> unique_id /*, d -> subapp_number */ );
692
693     struct stat dirs;
694     if ( stat ( existingpath, &dirs ) == 0 ) {
695       // icon seems to exist, so just crib the location into the .desktop
696
697       pnd_log ( pndn_rem, "  Found icon already existed, so reusing it! %s\n", existingpath );
698
699       if ( d -> icon ) {
700         free ( d -> icon );
701       }
702       d -> icon = strdup ( existingpath );
703
704     } else {
705       // icon seems unreadable or does not exist; lets try to create it..
706
707       pnd_log ( pndn_debug, "  Icon not already present, so trying to write it! %s\n", existingpath );
708
709       // handle same-path icon override for davec :)
710       char ovrfile [ PATH_MAX ];
711       char *fixpxml;
712       sprintf ( ovrfile, "%s/%s", d -> object_path, d -> object_filename );
713       fixpxml = strcasestr ( ovrfile, PND_PACKAGE_FILEEXT );
714       if ( fixpxml ) {
715         strcpy ( fixpxml, ".png" );
716         fixpxml = NULL;
717         struct stat statbuf;
718         if ( stat ( ovrfile, &statbuf ) == 0 ) {
719           d -> icon = strdup ( ovrfile );
720           fixpxml = ovrfile; // !NULL will be the trigger to skip emittinf desktop from .pnd
721         } // stat
722       } // ovr?
723
724       // attempt to create icon files; if successful, alter the disco struct to contain new
725       // path, otherwise leave it alone (since it could be a generic icon reference..)
726       if ( fixpxml == NULL ) {
727         // don't have an same-path override icon, so go fetch something from pnd file
728
729         if ( pnd_emit_icon ( emiticonpath, d ) ) {
730           // success; fix up icon path to new one..
731           if ( d -> icon ) {
732             free ( d -> icon );
733           }
734           d -> icon = strdup ( existingpath );
735         } else {
736           pnd_log ( pndn_debug, "  WARN: Couldn't write out icon %s\n", existingpath );
737         }
738
739       } // got ovr icon already?
740
741     } // icon already exists?
742
743     // create the .desktop file
744     if ( pnd_emit_dotdesktop ( emitdesktoppath, pndrun, d ) ) {
745       // add a watch onto the newly created .desktop?
746 #if 0
747       char buffer [ FILENAME_MAX ];
748       sprintf ( buffer, "%s/%s", emitdesktoppath, d -> unique_id );
749       pnd_notify_watch_path ( nh, buffer, PND_NOTIFY_RECURSE );
750 #endif
751     } else {
752       pnd_log ( pndn_rem, "ERROR: Error creating .desktop file for app: %s\n", pnd_box_get_key ( d ) );
753     }
754
755     // info .desktop
756     if ( g_info_p && info_dotdesktoppath ) {
757       if ( pnd_emit_dotinfo ( info_dotdesktoppath, pndrun, d ) ) {
758         // nada
759       } else {
760         pnd_log ( pndn_rem, "ERROR: Error creating info .desktop file for app: %s\n", pnd_box_get_key ( d ) );
761       }
762     }
763
764     // does this object request any mkdir's?
765     if ( d -> mkdir_sp ) {
766
767       // it would appear it does! but we have to carefully validate these suckers
768       pnd_log ( pndn_rem, "  App %s requests mkdir: %s\n", d -> object_path, d -> mkdir_sp );
769
770       // for each mkdir requested path, do it...
771       char *searchpath = d -> mkdir_sp;
772
773       SEARCHCHUNK_PRE
774       {
775         /* "buffer" now holds each chunk of the searchpath, expanded */
776
777         // WARN: This whole concept could be flawed; what if they represent '..' in some other obscure way (unicode?)
778         // and we end up allowing mkdir's all over the place? The risk really is limited -- once the pnd is here,
779         // if the user _runs it_, it can go nuts, so creating a few dirs isn't all that dangerous...
780         //   HMRF :/
781         // Perhaps I should have a config setting for pndnotifyd to suppress this whole mkdir behaviour?
782
783         // if not containing ".." we allow it
784         if ( strstr ( buffer, ".." )  == NULL ) {
785
786           // determine mountpoint for the file
787           // - we could deduce this from the path (somewhat risky if we assume leading /media/mmcblk1p1 type notation .. could
788           //   be other distributions entirely
789           // - better to scan through mount-list and figure it out.. *sucks*
790           char mountpoint [ PATH_MAX ];
791           if ( pnd_determine_mountpoint ( d -> object_path, mountpoint, PATH_MAX - strlen ( buffer ) - 1 ) == 1 ) {
792
793             strcat ( mountpoint, "/" );
794             strcat ( mountpoint, buffer );
795
796             struct stat t;
797             if ( stat ( mountpoint, &t ) == 0 ) {
798               pnd_log ( pndn_rem, "    Skipping existing mkdir: %s\n", mountpoint );
799             } else {
800               pnd_log ( pndn_rem, "    Attempting create of non-existant path: %s\n", mountpoint );
801               mkdir ( mountpoint, 0777 );
802             }
803
804           } // if figured out the mountpoint
805
806         } // if valid path
807
808       }
809       SEARCHCHUNK_POST
810
811     } // mkdir request
812
813     // next!
814     d = pnd_box_get_next ( d );
815
816   } // while applist
817
818   return;
819 }
820
821 // returns true if any applications were found
822 unsigned char perform_discoveries ( char *appspath, char *overridespath,              // args to do discovery
823                                     char *emitdesktoppath, char *emiticonpath )       // args to do emitting
824 {
825   pnd_box_handle applist;
826
827   pnd_log ( pndn_rem, "perform discovery - apps: %s, overrides: %s\n", appspath, overridespath );
828   pnd_log ( pndn_rem, "                  - emit desktop: %s, icons: %s\n", emitdesktoppath, emiticonpath );
829
830   // attempt to auto-discover applications in the given path
831   applist = pnd_disco_search ( appspath, overridespath );
832
833   if ( applist ) {
834     process_discoveries ( applist, emitdesktoppath, emiticonpath );
835   }
836
837   // run a clean up, to remove any dotdesktop files that we didn't
838   // just now create (that seem to have been created by pndnotifyd
839   // previously.) This allows SD eject (or .pnd remove) to remove
840   // an app from the launcher
841   //   NOTE: Could opendir and iterate across all .desktop files,
842   // removing any that have Source= something else, and that the
843   // app name is not in the list found in applist box above. But
844   // a cheesy simple way right now is to just remove .desktop files
845   // that have a last mod time prior to the time we stored above.
846   {
847     DIR *dir;
848
849     if ( ( dir = opendir ( emitdesktoppath ) ) ) {
850       struct dirent *dirent;
851       struct stat dirs;
852       char buffer [ FILENAME_MAX ];
853
854       while ( ( dirent = readdir ( dir ) ) ) {
855
856         // file is a .desktop?
857         if ( strstr ( dirent -> d_name, ".desktop" ) == NULL ) {
858           continue;
859         }
860
861         // figure out full path
862         sprintf ( buffer, "%s/%s", emitdesktoppath, dirent -> d_name );
863
864         // file was previously created by libpnd; check Source= line
865         // logic: default to 'yes' (in case we can't open the file for some reason)
866         //        if we can open the file, default to no and look for the source flag we added; if
867         //          that matches then we know its libpnd created, otherwise assume not.
868         unsigned char source_libpnd = 1;
869         {
870           char line [ 256 ];
871           FILE *grep = fopen ( buffer, "r" );
872           if ( grep ) {
873             source_libpnd = 0;
874             while ( fgets ( line, 255, grep ) ) {
875               if ( strcasestr ( line, PND_DOTDESKTOP_SOURCE ) ) {
876                 source_libpnd = 2;
877               }
878             } // while
879             fclose ( grep );
880           }
881         }
882         if ( source_libpnd ) {
883 #if 1
884           pnd_log ( pndn_debug,
885                     "File '%s' appears to have been created by libpnd so candidate for delete: %u\n", buffer, source_libpnd );
886 #endif
887         } else {
888 #if 0
889           pnd_log ( pndn_debug, "File '%s' appears NOT to have been created by libpnd, so leave it alone\n", buffer );
890 #endif
891           continue; // skip deleting it
892         }
893
894         // file is 'new'?
895         if ( stat ( buffer, &dirs ) == 0 ) {
896           if ( dirs.st_mtime >= createtime ) {
897 #if 1
898             pnd_log ( pndn_debug, "File '%s' seems 'new', so leave it alone.\n", buffer );
899 #endif
900             continue; // skip deleting it
901           }
902         }
903
904         // by this point, the .desktop file must be 'old' and created by pndnotifyd
905         // previously, so can remove it
906         pnd_log ( pndn_rem, "File '%s' seems nolonger relevent; removing it.\n", dirent -> d_name );
907         unlink ( buffer );
908
909       } // while getting filenames from dir
910
911       closedir ( dir );
912     }
913
914   } // purge old .desktop files
915
916   //WARN: MEMORY LEAK HERE
917   pnd_log ( pndn_debug, "pndnotifyd - memory leak here - perform_discoveries()\n" );
918   if ( applist ) {
919     pnd_box_delete ( applist ); // does not free the disco_t contents!
920   }
921
922   return ( 1 );
923 }