2009-02-19 11:12:29 +03:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2009-05-15 16:23:46 +04:00
|
|
|
* ede-autostart
|
2009-02-19 11:12:29 +03:00
|
|
|
* Part of Equinox Desktop Environment (EDE).
|
|
|
|
* Copyright (c) 2007-2009 EDE Authors.
|
|
|
|
*
|
|
|
|
* This program is licensed under terms of the
|
|
|
|
* GNU General Public License version 2 or newer.
|
|
|
|
* See COPYING for details.
|
|
|
|
*/
|
|
|
|
|
2009-05-15 16:23:46 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2009-02-19 11:12:29 +03:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2009-05-15 16:23:46 +04:00
|
|
|
#include <stdio.h>
|
2009-05-15 17:22:50 +04:00
|
|
|
#include <unistd.h>
|
2009-05-15 16:23:46 +04:00
|
|
|
|
2009-02-19 11:12:29 +03:00
|
|
|
#include <FL/Fl_Pixmap.H>
|
|
|
|
#include <FL/Fl_Check_Browser.H>
|
|
|
|
#include <FL/Fl_Button.H>
|
|
|
|
#include <FL/Fl_Window.H>
|
|
|
|
#include <FL/Fl_Box.H>
|
|
|
|
#include <FL/Fl.H>
|
|
|
|
|
|
|
|
#include <edelib/String.h>
|
|
|
|
#include <edelib/StrUtil.h>
|
|
|
|
#include <edelib/List.h>
|
|
|
|
#include <edelib/Util.h>
|
|
|
|
#include <edelib/DesktopFile.h>
|
|
|
|
#include <edelib/Directory.h>
|
|
|
|
#include <edelib/Nls.h>
|
|
|
|
#include <edelib/Debug.h>
|
|
|
|
#include <edelib/Run.h>
|
2009-05-15 17:22:50 +04:00
|
|
|
#include <edelib/FileTest.h>
|
|
|
|
#include <edelib/MessageBox.h>
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
#include "icons/warning.xpm"
|
|
|
|
|
|
|
|
EDELIB_NS_USING(String)
|
|
|
|
EDELIB_NS_USING(DesktopFile)
|
|
|
|
EDELIB_NS_USING(list)
|
|
|
|
EDELIB_NS_USING(dir_list)
|
|
|
|
EDELIB_NS_USING(system_config_dirs)
|
|
|
|
EDELIB_NS_USING(user_config_dir)
|
|
|
|
EDELIB_NS_USING(str_ends)
|
2009-02-27 17:51:55 +03:00
|
|
|
EDELIB_NS_USING(run_async)
|
2009-05-15 17:22:50 +04:00
|
|
|
EDELIB_NS_USING(ask)
|
|
|
|
EDELIB_NS_USING(file_test)
|
|
|
|
EDELIB_NS_USING(FILE_TEST_IS_REGULAR)
|
|
|
|
EDELIB_NS_USING(FILE_TEST_IS_EXECUTABLE)
|
2009-02-19 11:12:29 +03:00
|
|
|
|
2009-05-15 16:23:46 +04:00
|
|
|
#define CHECK_ARGV(argv, pshort, plong) ((strcmp(argv, pshort) == 0) || (strcmp(argv, plong) == 0))
|
|
|
|
|
2009-02-19 11:12:29 +03:00
|
|
|
#ifdef DEBUG_AUTOSTART_RUN
|
|
|
|
#define AUTOSTART_RUN(s) E_DEBUG("Executing %s\n", s)
|
|
|
|
#else
|
2009-02-27 17:51:55 +03:00
|
|
|
#define AUTOSTART_RUN(s) run_async(s)
|
2009-02-19 11:12:29 +03:00
|
|
|
#endif
|
|
|
|
|
2009-05-15 16:23:46 +04:00
|
|
|
#define AUTOSTART_DIRNAME "/autostart/"
|
|
|
|
|
2009-05-15 17:22:50 +04:00
|
|
|
/* ordered names that will be searched */
|
|
|
|
static const char* autostart_names[] = {
|
|
|
|
".autorun",
|
|
|
|
"autorun",
|
|
|
|
"autorun.sh",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2009-02-19 11:12:29 +03:00
|
|
|
struct DialogEntry {
|
|
|
|
String name;
|
|
|
|
String exec;
|
2009-05-26 17:35:56 +04:00
|
|
|
String comment;
|
2009-02-19 11:12:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef list<String> StringList;
|
|
|
|
typedef list<String>::iterator StringListIter;
|
|
|
|
|
|
|
|
typedef list<DialogEntry*> DialogEntryList;
|
|
|
|
typedef list<DialogEntry*>::iterator DialogEntryListIter;
|
|
|
|
|
|
|
|
static Fl_Window* dialog_win;
|
|
|
|
static Fl_Check_Browser* cbrowser;
|
2009-03-30 19:17:00 +04:00
|
|
|
static Fl_Pixmap warnpix((const char**)warning_xpm);
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
static char* get_basename(const char* path) {
|
|
|
|
char* p = strrchr(path, '/');
|
|
|
|
if(p)
|
|
|
|
return (p + 1);
|
|
|
|
|
|
|
|
return (char*)path;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 'Remove' duplicate entries by looking at their basename
|
|
|
|
* (aka. filename, but ignoring directory path). Item is not actually removed from
|
|
|
|
* the list (will mess up list pointers, but this can be resolved), but data it points
|
|
|
|
* to is cleared, which is a sort of marker to caller to skip it. Dumb yes, but very simple.
|
|
|
|
*
|
|
|
|
* It will use brute force for lookup and 'removal' and (hopfully) it should not have
|
|
|
|
* a large impact on startup since, afaik, no one keeps hundreds of files in autostart
|
|
|
|
* directories (if keeps them, then that issue is not up to this program :-P).
|
|
|
|
*
|
|
|
|
* Alternative would be to sort items (by their basename) and apply consecutive unique on
|
|
|
|
* them, but... is it worth ?
|
|
|
|
*/
|
|
|
|
static void unique_by_basename(StringList& lst) {
|
|
|
|
if(lst.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
StringListIter first, last, first1, last1;
|
|
|
|
first = lst.begin();
|
|
|
|
last = lst.end();
|
|
|
|
|
|
|
|
if(first == last)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const char* p1, *p2;
|
|
|
|
for(; first != last; ++first) {
|
|
|
|
for(first1 = lst.begin(), last1 = lst.end(); first1 != last1; ++first1) {
|
|
|
|
p1 = (*first).c_str();
|
|
|
|
p2 = (*first1).c_str();
|
|
|
|
|
|
|
|
if(first != first1 && strcmp(get_basename(p1), get_basename(p2)) == 0)
|
|
|
|
(*first1).clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void entry_list_run_clear(DialogEntryList& l, bool run) {
|
|
|
|
DialogEntryListIter dit = l.begin(), dit_end = l.end();
|
|
|
|
for(; dit != dit_end; ++dit) {
|
|
|
|
if(run)
|
|
|
|
AUTOSTART_RUN((*dit)->exec.c_str());
|
|
|
|
delete *dit;
|
|
|
|
}
|
|
|
|
|
|
|
|
l.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dialog_runsel_cb(Fl_Widget*, void* e) {
|
|
|
|
DialogEntryList* lst = (DialogEntryList*)e;
|
|
|
|
E_ASSERT(lst->size() == (unsigned int)cbrowser->nitems() && "Size mismatch in local list and browser widget");
|
|
|
|
|
|
|
|
DialogEntryListIter it = lst->begin();
|
|
|
|
for(int i = 1; i <= cbrowser->nitems(); i++, ++it) {
|
|
|
|
if(cbrowser->checked(i))
|
|
|
|
AUTOSTART_RUN((*it)->exec.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog_win->hide();
|
|
|
|
entry_list_run_clear(*lst, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dialog_runall_cb(Fl_Widget*, void* e) {
|
|
|
|
DialogEntryList* lst = (DialogEntryList*)e;
|
|
|
|
E_ASSERT(lst->size() == (unsigned int)cbrowser->nitems() && "Size mismatch in local list and browser widget");
|
|
|
|
|
|
|
|
dialog_win->hide();
|
|
|
|
entry_list_run_clear(*lst, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dialog_close_cb(Fl_Widget*, void* e) {
|
|
|
|
dialog_win->hide();
|
|
|
|
|
|
|
|
DialogEntryList* lst = (DialogEntryList*)e;
|
|
|
|
entry_list_run_clear(*lst, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void run_autostart_dialog(DialogEntryList& l) {
|
|
|
|
DialogEntryList* ptr = (DialogEntryList*)&l;
|
|
|
|
|
|
|
|
dialog_win = new Fl_Window(370, 305, _("Autostart warning"));
|
|
|
|
dialog_win->begin();
|
|
|
|
Fl_Box* img = new Fl_Box(10, 10, 65, 60);
|
|
|
|
img->image(warnpix);
|
|
|
|
Fl_Box* txt = new Fl_Box(80, 10, 280, 60, _("The following applications are registered for starting. Please chose what to do next"));
|
|
|
|
txt->align(FL_ALIGN_INSIDE | FL_ALIGN_LEFT | FL_ALIGN_WRAP);
|
|
|
|
cbrowser = new Fl_Check_Browser(10, 75, 350, 185);
|
|
|
|
|
|
|
|
DialogEntryListIter it = l.begin(), it_end = l.end();
|
2009-05-26 17:35:56 +04:00
|
|
|
for(; it != it_end; ++it) {
|
|
|
|
if((*it)->comment.empty())
|
|
|
|
cbrowser->add((*it)->name.c_str());
|
|
|
|
else {
|
|
|
|
char buf[256];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s (%s)", (*it)->name.c_str(), (*it)->comment.c_str());
|
|
|
|
cbrowser->add(buf);
|
|
|
|
}
|
|
|
|
}
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
Fl_Button* rsel = new Fl_Button(45, 270, 125, 25, _("Run &selected"));
|
|
|
|
rsel->callback(dialog_runsel_cb, ptr);
|
|
|
|
|
|
|
|
Fl_Button* rall = new Fl_Button(175, 270, 90, 25, _("&Run all"));
|
|
|
|
rall->callback(dialog_runall_cb, ptr);
|
|
|
|
|
|
|
|
Fl_Button* cancel = new Fl_Button(270, 270, 90, 25, _("&Cancel"));
|
|
|
|
cancel->callback(dialog_close_cb, ptr);
|
|
|
|
cancel->take_focus();
|
|
|
|
dialog_win->end();
|
|
|
|
dialog_win->show();
|
|
|
|
|
|
|
|
while(dialog_win->shown())
|
|
|
|
Fl::wait();
|
|
|
|
}
|
|
|
|
|
2009-05-15 16:23:46 +04:00
|
|
|
static void perform_autostart(bool safe) {
|
2009-02-19 11:12:29 +03:00
|
|
|
String adir = edelib::user_config_dir();
|
2009-05-15 16:23:46 +04:00
|
|
|
adir += AUTOSTART_DIRNAME;
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
StringList dfiles, sysdirs, tmp;
|
|
|
|
StringListIter it, it_end, tmp_it, tmp_it_end;
|
|
|
|
|
|
|
|
dir_list(adir.c_str(), dfiles, true);
|
|
|
|
|
|
|
|
system_config_dirs(sysdirs);
|
|
|
|
if(!sysdirs.empty()) {
|
|
|
|
for(it = sysdirs.begin(), it_end = sysdirs.end(); it != it_end; ++it) {
|
2009-05-15 16:23:46 +04:00
|
|
|
*it += AUTOSTART_DIRNAME;
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* append content
|
|
|
|
* FIXME: too much of copying. There should be some way to merge list items
|
|
|
|
* probably via merge() member
|
|
|
|
*/
|
|
|
|
dir_list((*it).c_str(), tmp, true);
|
|
|
|
for(tmp_it = tmp.begin(), tmp_it_end = tmp.end(); tmp_it != tmp_it_end; ++tmp_it)
|
|
|
|
dfiles.push_back(*tmp_it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dfiles.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove duplicates where first one seen have priority to be keept.
|
|
|
|
* This way is required by spec.
|
|
|
|
*
|
|
|
|
* Also handle this case (noted in spec):
|
|
|
|
* if $XDG_CONFIG_HOME/autostart/foo.desktop and $XDG_CONFIG_DIRS/autostart/foo.desktop
|
|
|
|
* exists, but $XDG_CONFIG_HOME/autostart/foo.desktop have 'Hidden = true',
|
|
|
|
* $XDG_CONFIG_DIRS/autostart/foo.autostart is ignored too.
|
|
|
|
*
|
|
|
|
* Latter is implied via unique_by_basename().
|
|
|
|
*/
|
|
|
|
unique_by_basename(dfiles);
|
|
|
|
|
|
|
|
const char* name;
|
2009-05-15 16:23:46 +04:00
|
|
|
char buf[1024];
|
2009-02-19 11:12:29 +03:00
|
|
|
DesktopFile df;
|
|
|
|
DialogEntryList entry_list;
|
|
|
|
|
|
|
|
for(it = dfiles.begin(), it_end = dfiles.end(); it != it_end; ++it) {
|
|
|
|
if((*it).empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
name = (*it).c_str();
|
|
|
|
|
|
|
|
if(!str_ends(name, ".desktop"))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(!df.load(name)) {
|
|
|
|
E_WARNING(E_STRLOC ": Can't load '%s'. Skipping...\n", name);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-10-03 11:24:06 +04:00
|
|
|
/* files marked as hidden must be skipped */
|
2009-02-19 11:12:29 +03:00
|
|
|
if(df.hidden())
|
|
|
|
continue;
|
|
|
|
|
2009-10-03 11:24:06 +04:00
|
|
|
if(!df.exec(buf, sizeof(buf)))
|
2009-02-19 11:12:29 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
DialogEntry* en = new DialogEntry;
|
2009-05-15 16:23:46 +04:00
|
|
|
en->exec = buf;
|
2009-02-19 11:12:29 +03:00
|
|
|
|
|
|
|
/* figure out the name */
|
2009-05-15 16:23:46 +04:00
|
|
|
if(df.name(buf, sizeof(buf)))
|
|
|
|
en->name = buf;
|
2009-02-19 11:12:29 +03:00
|
|
|
else
|
|
|
|
en->name = name;
|
|
|
|
|
2009-05-26 17:35:56 +04:00
|
|
|
/* get the comment */
|
|
|
|
if(df.comment(buf, sizeof(buf)))
|
|
|
|
en->comment = buf;
|
|
|
|
|
2009-02-19 11:12:29 +03:00
|
|
|
entry_list.push_back(en);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(safe)
|
|
|
|
run_autostart_dialog(entry_list);
|
|
|
|
else
|
|
|
|
entry_list_run_clear(entry_list, true);
|
|
|
|
}
|
2009-05-15 16:23:46 +04:00
|
|
|
|
2009-05-15 17:22:50 +04:00
|
|
|
static void perform_autostart_scripts(const char* path) {
|
|
|
|
int i;
|
|
|
|
String name;
|
|
|
|
|
|
|
|
for(i = 0; autostart_names[i]; i++) {
|
|
|
|
name = path;
|
|
|
|
name += E_DIR_SEPARATOR_STR;
|
|
|
|
name += autostart_names[i];
|
|
|
|
|
|
|
|
if(file_test(name.c_str(), FILE_TEST_IS_REGULAR | FILE_TEST_IS_EXECUTABLE)) {
|
|
|
|
if(ask(_("Mounted media at '%s' would like to start some files. "
|
|
|
|
"Content of these files is not checked and could be malicious. "
|
|
|
|
"Would you like to start them?"), path))
|
|
|
|
{
|
|
|
|
/* spec said how we must chdir to the root of the medium */
|
|
|
|
chdir(path);
|
|
|
|
AUTOSTART_RUN(name.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we only match the one file */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-15 16:23:46 +04:00
|
|
|
static void help(void) {
|
|
|
|
puts("Usage: ede-autostart [OPTIONS]");
|
|
|
|
puts("EDE autostart utility");
|
|
|
|
puts("Options:");
|
|
|
|
puts(" -h, --help this help");
|
|
|
|
puts(" -s, --safe show dialog of commands to be executed");
|
|
|
|
puts(" -m, --media [DEST] execute autostart scripts from mounted [DEST]");
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* next_param(int curr, char** argv, int argc) {
|
|
|
|
int j = curr + 1;
|
|
|
|
if(j >= argc)
|
|
|
|
return NULL;
|
|
|
|
if(argv[j][0] == '-')
|
|
|
|
return NULL;
|
|
|
|
return argv[j];
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
if(argc == 1) {
|
|
|
|
perform_autostart(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *a, *media = NULL;
|
|
|
|
bool safe = false;
|
|
|
|
|
|
|
|
for(int i = 1; i < argc; i++) {
|
|
|
|
a = argv[i];
|
|
|
|
if(CHECK_ARGV(a, "-h", "--help")) {
|
|
|
|
help();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(CHECK_ARGV(a, "-s", "--safe")) {
|
|
|
|
safe = true;
|
|
|
|
} else if(CHECK_ARGV(a, "-m", "--media")) {
|
|
|
|
media = next_param(i, argv, argc);
|
|
|
|
if(!media) {
|
|
|
|
puts("Missing media parameter");
|
|
|
|
return 1;
|
|
|
|
}
|
2009-05-15 17:22:50 +04:00
|
|
|
|
|
|
|
i++;
|
2009-05-15 16:23:46 +04:00
|
|
|
} else {
|
|
|
|
printf("Unknown '%s' parameter. Run 'ede-autostart -h' for options\n", a);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(media == NULL)
|
|
|
|
perform_autostart(safe);
|
2009-05-15 17:22:50 +04:00
|
|
|
else
|
|
|
|
perform_autostart_scripts(media);
|
2009-05-15 16:23:46 +04:00
|
|
|
return 0;
|
|
|
|
}
|