summaryrefslogtreecommitdiff
path: root/core/opie-login/loginwindowimpl.cpp
blob: 3265b469d1fd4a2305bd7cf56a1d8df724bceafc (plain)
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
#include <qapplication.h>
#include <qpushbutton.h>
#include <qlayout.h>
#include <qframe.h>
#include <qlineedit.h>
#include <qtimer.h>
#include <qcombobox.h>
#include <qpixmap.h>
#include <qlabel.h>
#include <qpopupmenu.h>
#include <qmessagebox.h>

#include <qpe/qcopenvelope_qws.h>

#include <opie/odevice.h>

#include <stdio.h>

#include <pwd.h>
#include <grp.h>
#include <unistd.h>
#include <stdlib.h>

#ifdef USEPAM
extern "C" {
#include <security/pam_appl.h>
}
#else
#include <crypt.h>
#include <shadow.h>
#endif

#include "loginwindowimpl.h"
#include "inputmethods.h"

LoginWindowImpl::LoginWindowImpl ( ) : LoginWindow ( 0, "LOGIN-WINDOW", WStyle_Customize | WStyle_NoBorder | WDestructiveClose )
{
	QPopupMenu *pop = new QPopupMenu ( this );
	pop-> insertItem ( tr( "Restart" ), this, SLOT( restart ( )));	
	m_menu-> setPopup ( pop );

	QHBoxLayout *lay = new QHBoxLayout ( m_taskbar, 4, 4 ); 
	m_input = new InputMethods ( m_taskbar );
	lay-> addWidget ( m_input );
	lay-> addStretch ( 10 );
	
	setActiveWindow ( );
	m_password-> setFocus ( );

	m_user-> insertStringList ( getAllUsers ( ));
	
	QTimer::singleShot ( 0, this, SLOT( showIM ( )));
		
	QString opiedir = ::getenv ( "OPIEDIR" );	
	QPixmap bgpix ( opiedir + "/pics/launcher/opie-background.jpg" );
	
	if ( !bgpix. isNull ( ))
		setBackgroundPixmap ( bgpix );
	
	m_caption-> setText ( m_caption-> text ( ) + tr( "<center><h1><u>%1 %2</u></h1></center>" ). arg ( ODevice::inst ( )-> systemString ( )). arg ( ODevice::inst ( )-> systemVersionString ( )));
}

LoginWindowImpl::~LoginWindowImpl ( )
{
}

void LoginWindowImpl::keyPressEvent ( QKeyEvent *e )
{
	switch ( e-> key ( )) {
		case Key_F34: suspend ( );
		              break;
		case Key_F35: backlight ( );
		              break; 
		default     : e-> ignore ( );
		              break;
	}
	LoginWindow::keyPressEvent ( e );
}


void LoginWindowImpl::toggleEchoMode ( bool t )
{
	m_password-> setEchoMode ( t ? QLineEdit::Normal : QLineEdit::Password );
}

QStringList LoginWindowImpl::getAllUsers ( )
{
	struct passwd *pwd;
	QStringList sl;

	while (( pwd = getpwent ( ))) {
		if (( pwd-> pw_uid == 0 ) || ( pwd-> pw_uid >= 500 && pwd-> pw_uid < 65534 ))
			sl << QString ( pwd-> pw_name );
	}		
	
	endpwent ( );
	
	return sl;
}

void LoginWindowImpl::showIM ( )
{
	m_input-> showInputMethod ( );
}

void LoginWindowImpl::restart ( )
{
	qApp-> quit ( );
}

void LoginWindowImpl::suspend ( )
{
	system ( "apm -s" );
	usleep ( 1 * 1000 * 1000 );
	{
		QCopEnvelope e("QPE/System", "setBacklight(int)");
		e << -3; // Force on
	}
}

void LoginWindowImpl::backlight ( )
{
	{
		QCopEnvelope e("QPE/System", "setBacklight(int)");
		e << -2; // toggle
	}
}

#ifdef USEPAM

static const char *_PAM_SERVICE = "xdm";
static const char *PAM_password;

typedef const struct pam_message pam_message_type;

static int PAM_conv( int, pam_message_type **,  struct pam_response **,  void * );

static struct pam_conv PAM_conversation = {
  &PAM_conv,
  NULL
};

//----------------------------------------------------------------------------

static char *COPY_STRING( const char * s ) {
  return (s) ? strdup(s) : (char *)NULL;
}

#define GET_MEM if (reply) realloc(reply, size);\
                     else reply = (struct pam_response *)malloc(size); \
	             if (!reply) return PAM_CONV_ERR; \
	             size += sizeof(struct pam_response)


static int PAM_conv( int num_msg, pam_message_type **msg,
		     struct pam_response **resp,  void *)
{
  int count = 0, replies = 0;
  struct pam_response *reply = NULL;
  int size = sizeof(struct pam_response);
    
  for( count = 0; count < num_msg; count++ ) {
    switch (msg[count]->msg_style) {
    case PAM_PROMPT_ECHO_ON:
      /* user name given to PAM already */
      return PAM_CONV_ERR;

    case PAM_PROMPT_ECHO_OFF:
      /* wants password */
      GET_MEM;
      reply[replies].resp_retcode = PAM_SUCCESS;
      reply[replies].resp = COPY_STRING(PAM_password);
      replies++;
      /* PAM frees resp */
      break;
    case PAM_TEXT_INFO:
      break;
    default:
      /* unknown or PAM_ERROR_MSG */
      if (reply) free (reply);
      return PAM_CONV_ERR;
    }
  }
  if (reply) *resp = reply;
  return PAM_SUCCESS;
}


static bool pwcheck_PAM( const char *user, const char *password )
{
  bool pw_correct = false;
  int pam_error;
  int pam_return = 0;
  pam_handle_t *pamh = 0;
  PAM_password = password;
  
  pam_error = pam_start( _PAM_SERVICE, user, &PAM_conversation, &pamh );
  if( pam_error == PAM_SUCCESS ) {
    pam_error = pam_authenticate( pamh, 0 );
    if( pam_error == PAM_SUCCESS ) {
      //-- password correct
      pw_correct = true;
      pam_return = PAM_SUCCESS;
    } else {
      pam_return = pam_error;
    }
  } else {
    //  cerr << "PAM error: " << pam_strerror( pamh, pam_error ) << endl;
  }
  pam_end( pamh, pam_return );
  return pw_correct;
}

#else

//----------------------------------------------------------------------------

static bool pwcheck_Unix( const char *user, const char *pass )
{
	char *encrypted, *correct;
	struct passwd *pw;

	if ( !user || !pass )
		return false;
	
	pw = getpwnam ( user );
	
	if ( !pw )
		return false;
	
	if (( strcmp ( pw-> pw_passwd, "x" ) == 0 ) || ( strcmp ( pw-> pw_passwd, "*" ) == 0 )) {
		struct spwd *sp = getspnam ( pw-> pw_name );
		
		if ( !sp )
			return false;
		
		correct = sp-> sp_pwdp;
	}
	else
		correct = pw-> pw_passwd;

	if ( correct == 0 || correct[0] == '\0' )
		return true;

	encrypted = crypt ( pass, correct );
	return ( strcmp ( encrypted, correct ) == 0 );
}

#endif


bool LoginWindowImpl::changeIdentity ( const char *user )
{
	const char *DEFAULT_LOGIN_PATH      = "/bin:/usr/bin";
	const char *DEFAULT_ROOT_LOGIN_PATH = "/usr/sbin:/bin:/usr/bin:/sbin";

	bool fail = false;
	struct passwd *pw = getpwnam ( user );
	
	fail |= ( pw == 0 );
	printf ( "1 %d\n", fail );
	fail |= ( initgroups ( pw-> pw_name, pw-> pw_gid ));
	endgrent ( );
	printf ( "2 %d\n", fail );
	fail |= ( setgid ( pw-> pw_gid ));
	printf ( "3 %d\n", fail );
	fail |= ( setuid ( pw-> pw_uid ));
	
	printf ( "4 %d\n", fail );
	fail |= ( chdir ( pw-> pw_dir ) && chdir ( "/" ));

	printf ( "5 %d\n", fail );
	fail |= ( setenv ( "HOME",    pw-> pw_dir, 1 ));
	printf ( "6 %d\n", fail );
	fail |= ( setenv ( "SHELL",   pw-> pw_shell, 1 ));
	printf ( "7 %d\n", fail );
	fail |= ( setenv ( "USER",    pw-> pw_name, 1 ));
	printf ( "8 %d\n", fail );
	fail |= ( setenv ( "LOGNAME", pw-> pw_name, 1 ));
	printf ( "9 %d\n", fail );
	fail |= ( setenv ( "PATH",    ( pw-> pw_uid ? DEFAULT_LOGIN_PATH : DEFAULT_ROOT_LOGIN_PATH ), 1 ));
	printf ( "10 %d\n", fail );
	
	return !fail;
}

void LoginWindowImpl::login ( )
{
	const char *user = strdup ( m_user-> currentText ( ). local8Bit ( ));	
	const char *pass = strdup ( m_password-> text ( ). local8Bit ( ));
	bool ok;
	
	if ( !user || !user [0] )
		return;
	if ( !pass )
		pass = "";

#if defined( USEPAM )
	ok = pwcheck_PAM ( user, pass );
#else
	ok = pwcheck_Unix ( user, pass );
#endif

	if ( ok ) {
		if ( changeIdentity ( user )) {		
			QString opie = getenv ( "OPIEDIR" );
			opie += "/bin/qpe";
		
			execl ( opie. latin1 ( ), "qpe", 0 );
		
			QMessageBox::critical ( this, tr( "Failure" ), tr( "Could not start OPIE." ));
			restart ( );
		}
		else {
			QMessageBox::critical ( this, tr( "Failure" ), tr( "Could not switch to new user identity" ));
			restart ( );
		}
	}
	else {
		QMessageBox::warning ( this, tr( "Wrong password" ), tr( "The given password is incorrect." ));
		m_password-> clear ( );
	}
}