summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2004-04-07 07:48:07 (UTC)
committer llornkcor <llornkcor>2004-04-07 07:48:07 (UTC)
commita1221f718bb1e9bcb6318dbf3314b9a35891caac (patch) (unidiff)
tree5f230f06f55029ee06954447bcd628002bb6bcec
parentb3447b43b48cb6d720b76a1e9fc46acac6961dc8 (diff)
downloadopie-a1221f718bb1e9bcb6318dbf3314b9a35891caac.zip
opie-a1221f718bb1e9bcb6318dbf3314b9a35891caac.tar.gz
opie-a1221f718bb1e9bcb6318dbf3314b9a35891caac.tar.bz2
respect TERM variable
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/MyPty.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/MyPty.cpp b/core/apps/embeddedkonsole/MyPty.cpp
index d05e31e..4b1ae59 100644
--- a/core/apps/embeddedkonsole/MyPty.cpp
+++ b/core/apps/embeddedkonsole/MyPty.cpp
@@ -107,129 +107,131 @@ void MyPty::setSize(int lines, int columns)
107 107
108void MyPty::donePty() 108void MyPty::donePty()
109{ 109{
110 // This is code from the Qt DumbTerminal example 110 // This is code from the Qt DumbTerminal example
111 int status = 0; 111 int status = 0;
112 112
113 ::close(fd); 113 ::close(fd);
114 114
115 if (cpid) { 115 if (cpid) {
116 kill(cpid, SIGHUP); 116 kill(cpid, SIGHUP);
117 waitpid(cpid, &status, 0); 117 waitpid(cpid, &status, 0);
118 } 118 }
119 119
120 emit done(status); 120 emit done(status);
121} 121}
122 122
123 123
124const char* MyPty::deviceName() 124const char* MyPty::deviceName()
125{ 125{
126 return ttynam; 126 return ttynam;
127} 127}
128 128
129 129
130void MyPty::error() 130void MyPty::error()
131{ 131{
132 // This is code from the Qt DumbTerminal example 132 // This is code from the Qt DumbTerminal example
133 donePty(); 133 donePty();
134} 134}
135 135
136 136
137/*! 137/*!
138 start the client program. 138 start the client program.
139*/ 139*/
140int MyPty::run(const char* cmd, QStrList &, const char*, int) 140int MyPty::run(const char* cmd, QStrList &, const char*, int)
141{ 141{
142 // This is code from the Qt DumbTerminal example 142 // This is code from the Qt DumbTerminal example
143 cpid = fork(); 143 cpid = fork();
144 144
145 if ( !cpid ) { 145 if ( !cpid ) {
146 // child - exec shell on tty 146 // child - exec shell on tty
147 for (int sig = 1; sig < NSIG; sig++) signal(sig,SIG_DFL); 147 for (int sig = 1; sig < NSIG; sig++) signal(sig,SIG_DFL);
148 148
149 // attempt to keep apm driver from killing us on power on/off 149 // attempt to keep apm driver from killing us on power on/off
150 signal(SIGSTOP, SIG_IGN); 150 signal(SIGSTOP, SIG_IGN);
151 signal(SIGCONT, SIG_IGN); 151 signal(SIGCONT, SIG_IGN);
152 signal(SIGTSTP, SIG_IGN); 152 signal(SIGTSTP, SIG_IGN);
153 153
154 int ttyfd = open(ttynam, O_RDWR); 154 int ttyfd = open(ttynam, O_RDWR);
155 dup2(ttyfd, STDIN_FILENO); 155 dup2(ttyfd, STDIN_FILENO);
156 dup2(ttyfd, STDOUT_FILENO); 156 dup2(ttyfd, STDOUT_FILENO);
157 dup2(ttyfd, STDERR_FILENO); 157 dup2(ttyfd, STDERR_FILENO);
158 // should be done with tty, so close it 158 // should be done with tty, so close it
159 close(ttyfd); 159 close(ttyfd);
160 static struct termios ttmode; 160 static struct termios ttmode;
161 if ( setsid() < 0 ) 161 if ( setsid() < 0 )
162 perror( "failed to set process group" ); 162 perror( "failed to set process group" );
163#if defined (TIOCSCTTY) 163#if defined (TIOCSCTTY)
164 // grabbed from APUE by Stevens 164 // grabbed from APUE by Stevens
165 ioctl(STDIN_FILENO, TIOCSCTTY, 0); 165 ioctl(STDIN_FILENO, TIOCSCTTY, 0);
166#endif 166#endif
167 tcgetattr( STDIN_FILENO, &ttmode ); 167 tcgetattr( STDIN_FILENO, &ttmode );
168 ttmode.c_cc[VINTR] = 3; 168 ttmode.c_cc[VINTR] = 3;
169 ttmode.c_cc[VERASE] = 8; 169 ttmode.c_cc[VERASE] = 8;
170 tcsetattr( STDIN_FILENO, TCSANOW, &ttmode ); 170 tcsetattr( STDIN_FILENO, TCSANOW, &ttmode );
171 setenv("TERM","vt100",1); 171
172 if(strlen(getenv("TERM"))<=0)
173 setenv("TERM","vt100",1);
172 setenv("COLORTERM","0",1); 174 setenv("COLORTERM","0",1);
173 175
174 if (getuid() == 0) { 176 if (getuid() == 0) {
175 char msg[] = "WARNING: You are running this shell as root!\n"; 177 char msg[] = "WARNING: You are running this shell as root!\n";
176 write(ttyfd, msg, sizeof(msg)); 178 write(ttyfd, msg, sizeof(msg));
177 } 179 }
178 180
179 QString ccmd = "-"+QFileInfo(cmd).fileName(); //creates a login shell 181 QString ccmd = "-"+QFileInfo(cmd).fileName(); //creates a login shell
180 182
181 execl(cmd, ccmd.latin1(), 0); 183 execl(cmd, ccmd.latin1(), 0);
182 184
183 donePty(); 185 donePty();
184 exit(-1); 186 exit(-1);
185 } 187 }
186 188
187 // parent - continue as a widget 189 // parent - continue as a widget
188 QSocketNotifier* sn_r = new QSocketNotifier(fd,QSocketNotifier::Read,this); 190 QSocketNotifier* sn_r = new QSocketNotifier(fd,QSocketNotifier::Read,this);
189 QSocketNotifier* sn_e = new QSocketNotifier(fd,QSocketNotifier::Exception,this); 191 QSocketNotifier* sn_e = new QSocketNotifier(fd,QSocketNotifier::Exception,this);
190 connect(sn_r,SIGNAL(activated(int)),this,SLOT(readPty())); 192 connect(sn_r,SIGNAL(activated(int)),this,SLOT(readPty()));
191 connect(sn_e,SIGNAL(activated(int)),this,SLOT(error())); 193 connect(sn_e,SIGNAL(activated(int)),this,SLOT(error()));
192 194
193 return 0; 195 return 0;
194} 196}
195 197
196int MyPty::openPty() 198int MyPty::openPty()
197{ 199{
198 // This is code from the Qt DumbTerminal example 200 // This is code from the Qt DumbTerminal example
199 int ptyfd = -1; 201 int ptyfd = -1;
200 202
201#ifdef HAVE_OPENPTY 203#ifdef HAVE_OPENPTY
202 int ttyfd; 204 int ttyfd;
203 if ( openpty(&ptyfd,&ttyfd,ttynam,0,0) ) 205 if ( openpty(&ptyfd,&ttyfd,ttynam,0,0) )
204 ptyfd = -1; 206 ptyfd = -1;
205 else 207 else
206 close(ttyfd); // we open the ttynam ourselves. 208 close(ttyfd); // we open the ttynam ourselves.
207#else 209#else
208 for (const char* c0 = "pqrstuvwxyzabcde"; ptyfd < 0 && *c0 != 0; c0++) { 210 for (const char* c0 = "pqrstuvwxyzabcde"; ptyfd < 0 && *c0 != 0; c0++) {
209 for (const char* c1 = "0123456789abcdef"; ptyfd < 0 && *c1 != 0; c1++) { 211 for (const char* c1 = "0123456789abcdef"; ptyfd < 0 && *c1 != 0; c1++) {
210 sprintf(ptynam,"/dev/pty%c%c",*c0,*c1); 212 sprintf(ptynam,"/dev/pty%c%c",*c0,*c1);
211 sprintf(ttynam,"/dev/tty%c%c",*c0,*c1); 213 sprintf(ttynam,"/dev/tty%c%c",*c0,*c1);
212 if ((ptyfd = ::open(ptynam,O_RDWR)) >= 0) { 214 if ((ptyfd = ::open(ptynam,O_RDWR)) >= 0) {
213 if (geteuid() != 0 && !access(ttynam,R_OK|W_OK) == 0) { 215 if (geteuid() != 0 && !access(ttynam,R_OK|W_OK) == 0) {
214 ::close(ptyfd); 216 ::close(ptyfd);
215 ptyfd = -1; 217 ptyfd = -1;
216 } 218 }
217 } 219 }
218 } 220 }
219 } 221 }
220#endif 222#endif
221 223
222 if ( ptyfd < 0 ) { 224 if ( ptyfd < 0 ) {
223 qApp->exit(1); 225 qApp->exit(1);
224 return -1; 226 return -1;
225 } 227 }
226 228
227 return ptyfd; 229 return ptyfd;
228} 230}
229 231
230/*! 232/*!
231 Create an instance. 233 Create an instance.
232*/ 234*/
233MyPty::MyPty() : cpid(0) 235MyPty::MyPty() : cpid(0)
234{ 236{
235 fd = openPty(); 237 fd = openPty();