author | kergoth <kergoth> | 2003-04-22 21:18:03 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-22 21:18:03 (UTC) |
commit | bb8965d31b06ec122a0916d8c5bc4c4b68873a14 (patch) (side-by-side diff) | |
tree | 63a70f536648757440ac38fd003ab10901d439a0 | |
parent | e3ef0f8587b10bf242d8077609988e06a37bcae5 (diff) | |
download | opie-bb8965d31b06ec122a0916d8c5bc4c4b68873a14.zip opie-bb8965d31b06ec122a0916d8c5bc4c4b68873a14.tar.gz opie-bb8965d31b06ec122a0916d8c5bc4c4b68873a14.tar.bz2 |
Alter embeddedkonsole to obey SHELL env var if set, otherwise use the user's default shell, falling back to /bin/sh.
-rw-r--r-- | core/apps/embeddedkonsole/main.cpp | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp index 167b009..91199eb 100644 --- a/core/apps/embeddedkonsole/main.cpp +++ b/core/apps/embeddedkonsole/main.cpp @@ -1,67 +1,79 @@ /* ---------------------------------------------------------------------- */ /* */ /* [main.C] Konsole */ /* */ /* ---------------------------------------------------------------------- */ /* */ /* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de> */ /* */ /* This file is part of Konsole, an X terminal. */ /* */ /* The material contained in here more or less directly orginates from */ /* kvt, which is copyright (c) 1996 by Matthias Ettrich <ettrich@kde.org> */ /* */ /* ---------------------------------------------------------------------- */ /* */ /* Ported Konsole to Qt/Embedded */ /* */ /* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */ /* */ /* -------------------------------------------------------------------------- */ #include "konsole.h" #include <qpe/qpeapplication.h> #include <qfile.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> +#include <pwd.h> +#include <sys/types.h> + /* --| main |------------------------------------------------------ */ int main(int argc, char* argv[]) { if(setuid(getuid()) !=0) qDebug("setuid failed"); if(setgid(getgid()) != 0) qDebug("setgid failed"); // drop privileges QPEApplication a( argc, argv ); // QPEApplication::grabKeyboard(); // for CTRL and ALT qDebug("keyboard grabbed"); #ifdef FAKE_CTRL_AND_ALT qDebug("Fake Ctrl and Alt defined"); QPEApplication::grabKeyboard(); // for CTRL and ALT #endif QStrList tmp; const char* shell = getenv("SHELL"); - if (shell == NULL || *shell == '\0') + + if (shell == NULL || *shell == '\0') { + struct passwd *ent = 0; + uid_t me = getuid(); shell = "/bin/sh"; - // sh is completely broken on familiar. Let's try to get something better - if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) - shell = "/bin/bash"; + while ( (ent = getpwent()) != 0 ) { + if (ent->pw_uid == me) { + if (ent->pw_shell != "") + shell = ent->pw_shell; + break; + } + } + endpwent(); + } if( putenv((char*)"COLORTERM=") !=0) qDebug("putenv failed"); // to trigger mc's color detection Konsole m( "test", shell, tmp, TRUE ); m.setCaption( Konsole::tr("Terminal") ); a.showMainWidget( &m ); return a.exec(); } |