summaryrefslogtreecommitdiff
path: root/core/opie-login/loginapplication.cpp
blob: cd58c479f050c1f09353634857791e130786bfd5 (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
#include <pwd.h>
#include <grp.h>
#include <unistd.h>
#include <stdlib.h>
#include <signal.h>

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

#include "loginapplication.h"

LoginApplication *lApp;

LoginApplication::LoginApplication ( int &argc, char **argv )
	: QPEApplication ( argc, argv, GuiServer )
{
	lApp = this;
}

const char *LoginApplication::s_username = 0;

#ifdef USEPAM

const char *LoginApplication::s_pam_password = 0;

int LoginApplication::pam_helper ( int num_msg, const struct pam_message **msg, struct pam_response **resp, void * )
{
	int replies = 0;
	struct pam_response *reply = 0;
	int size = sizeof( struct pam_response );

	for ( int i = 0; i < num_msg; i++ ) {
		switch ( msg [i]-> msg_style ) {
			case PAM_PROMPT_ECHO_ON: // user name given to PAM already
				return PAM_CONV_ERR;

			case PAM_PROMPT_ECHO_OFF: // wants password
				reply = (struct pam_response *) ::realloc ( reply, size );
				if ( !reply )
					return PAM_CONV_ERR;
				size += sizeof( struct pam_response );

				reply [replies]. resp_retcode = PAM_SUCCESS;
				reply [replies]. resp = ::strdup ( s_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;
}


bool LoginApplication::checkPassword ( const char *user, const char *pass )
{
	static struct pam_conv conv = { &LoginApplication::pam_helper, 0 };

	int pam_error;
	pam_handle_t *pamh = 0;

	pam_error = ::pam_start( "xdm", user, &conv, &pamh );
	if ( pam_error == PAM_SUCCESS ) {
		s_pam_password = pass;
		pam_error = ::pam_authenticate ( pamh, 0 );
		s_pam_password = 0;
	}
	::pam_end ( pamh, pam_error );
	return ( pam_error == PAM_SUCCESS );
}

#else

bool LoginApplication::checkPassword ( 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 LoginApplication::changeIdentity ( )
{
	const char *DEFAULT_LOGIN_PATH      = "/bin:/usr/bin";
	const char *DEFAULT_ROOT_LOGIN_PATH = "/usr/sbin:/bin:/usr/bin:/sbin";

	if ( !s_username )
		return false;
	struct passwd *pw = ::getpwnam ( s_username );
	if ( !pw )
		return false;

	bool fail = false;
	fail |= ( ::initgroups ( pw-> pw_name, pw-> pw_gid ));
	::endgrent ( );
	fail |= ( ::setgid ( pw-> pw_gid ));
	fail |= ( ::setuid ( pw-> pw_uid ));

	fail |= ( ::chdir ( pw-> pw_dir ) && ::chdir ( "/" ));

	fail |= ( ::setenv ( "HOME",    pw-> pw_dir, 1 ));
	fail |= ( ::setenv ( "SHELL",   pw-> pw_shell, 1 ));
	fail |= ( ::setenv ( "USER",    pw-> pw_name, 1 ));
	fail |= ( ::setenv ( "LOGNAME", pw-> pw_name, 1 ));
	fail |= ( ::setenv ( "PATH",    ( pw-> pw_uid ? DEFAULT_LOGIN_PATH : DEFAULT_ROOT_LOGIN_PATH ), 1 ));

	return !fail;
}

bool LoginApplication::login ( )
{
	char *opie = ::getenv ( "OPIEDIR" );
	char *arg = new char [::strlen ( opie ) + 8 + 1];

	::strcpy ( arg, opie );
	::strcat ( arg, "/bin/qpe" );

	// start qpe via a login shell
	::execl ( "/bin/sh", "-sh", "-c", arg, 0 );

	return false;
}

const char *LoginApplication::loginAs ( )
{
	return s_username;
}

void LoginApplication::setLoginAs ( const char *name )
{
	s_username = name;
}

QStringList LoginApplication::allUsers ( )
{
	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 LoginApplication::quitToConsole ( )
{
	QPEApplication::quit ( );
	::kill ( ::getppid ( ), SIGTERM );
}