-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpam.c
60 lines (47 loc) · 1.11 KB
/
pam.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <security/pam_appl.h>
#include <security/pam_modules.h>
#include <security/pam_ext.h>
#include <u.h>
#include <args.h>
#include <libc.h>
#include <auth.h>
#include <authsrv.h>
#include <libsec.h>
#include "fncs.h"
PAM_EXTERN int
pam_sm_setcred(pam_handle_t *pamh, int flags, int argc, const char **argv )
{
return PAM_SUCCESS;
}
PAM_EXTERN int
pam_sm_acct_mgmt(pam_handle_t *pamh, int flags, int argc, const char **argv)
{
return PAM_SUCCESS;
}
char *authserver;
PAM_EXTERN int
pam_sm_authenticate(pam_handle_t *pamh, int flags, int argc, const char **argv )
{
const char *username;
const char *password;
int fd;
AuthInfo *ai;
if(pam_get_user(pamh, &username, NULL) != PAM_SUCCESS)
return PAM_AUTH_ERR;
if(pam_get_authtok(pamh, PAM_AUTHTOK, &password, NULL) != PAM_SUCCESS)
return PAM_AUTH_ERR;
if(argc != 1)
return PAM_AUTH_ERR;
authserver = argv[0];
fd = unix_dial(authserver, "17019");
if(fd < 0)
return PAM_AUTH_ERR;
ai = p9any(username, password, fd);
close(fd);
if(ai == nil)
return PAM_AUTH_ERR;
return PAM_SUCCESS;
}