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
|
/*
Copyright (c) 2011, 2018 MariaDB Corporation
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <mysql/plugin_auth_common.h>
struct param {
unsigned char buf[10240], *ptr;
};
#include "auth_pam_tool.h"
static int roundtrip(struct param *param, const unsigned char *buf,
int buf_len, unsigned char **pkt)
{
unsigned char b= AP_CONV;
if (write(1, &b, 1) < 1 || write_string(1, buf, buf_len))
return -1;
*pkt= (unsigned char *) param->buf;
return read_string(0, (char *) param->buf, (int) sizeof(param->buf));
}
typedef struct st_mysql_server_auth_info
{
/**
User name as sent by the client and shown in USER().
NULL if the client packet with the user name was not received yet.
*/
char *user_name;
/**
A corresponding column value from the mysql.user table for the
matching account name
*/
char *auth_string;
/**
Matching account name as found in the mysql.user table.
A plugin can override it with another name that will be
used by MySQL for authorization, and shown in CURRENT_USER()
*/
char authenticated_as[MYSQL_USERNAME_LENGTH+1];
} MYSQL_SERVER_AUTH_INFO;
#include "auth_pam_base.c"
int main(int argc __attribute__((unused)), char **argv __attribute__((unused)))
{
struct param param;
MYSQL_SERVER_AUTH_INFO info;
unsigned char field;
int res;
char a_buf[MYSQL_USERNAME_LENGTH + 1 + 1024];
if ((res= setreuid(0, 0)))
fprintf(stderr, "Got error %d from setreuid()\n", (int) errno);
if (read(0, &field, 1) < 1)
return -1;
#ifndef DBUG_OFF
pam_debug= field & 1;
#endif
winbind_hack= field & 2;
PAM_DEBUG((stderr, "PAM: sandbox started [%s].\n", argv[0]));
info.user_name= a_buf;
if ((res= read_string(0, info.user_name, sizeof(a_buf))) < 0)
return -1;
PAM_DEBUG((stderr, "PAM: sandbox username [%s].\n", info.user_name));
info.auth_string= info.user_name + res + 1;
if (read_string(0, info.auth_string, sizeof(a_buf) - 1 - res) < 0)
return -1;
PAM_DEBUG((stderr, "PAM: sandbox auth string [%s].\n", info.auth_string));
if ((res= pam_auth_base(¶m, &info)) != CR_OK)
{
PAM_DEBUG((stderr, "PAM: auth failed, sandbox closed.\n"));
return -1;
}
if (info.authenticated_as[0])
{
PAM_DEBUG((stderr, "PAM: send authenticated_as field.\n"));
field= AP_AUTHENTICATED_AS;
if (write(1, &field, 1) < 1 ||
write_string(1, (unsigned char *) info.authenticated_as,
strlen(info.authenticated_as)))
return -1;
}
PAM_DEBUG((stderr, "PAM: send OK result.\n"));
field= AP_EOF;
if (write(1, &field, 1) != 1)
return -1;
PAM_DEBUG((stderr, "PAM: sandbox closed.\n"));
return 0;
}
|