aboutsummaryrefslogtreecommitdiff
path: root/ident/pam.c
blob: ef32c4d199db8db6b7282742b4a128d05fc149d6 (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
/* This file is part of GNU Pies.
   Copyright (C) 2015 Sergey Poznyakoff

   GNU Pies 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; either version 3, or (at your option)
   any later version.

   GNU Pies 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 GNU Pies.  If not, see <http://www.gnu.org/licenses/>. */

#include "ident.h"
#include <grp.h>
#include <security/pam_appl.h>

struct pam_identity_provider_data
{
  char *service;
};

struct pam_cred
{
  const char *user;
  const char *pass;
};

#define COPY_STRING(s) (s) ? strdup(s) : NULL

#define overwrite_and_free(ptr)                 \
    do {                                        \
        char *s = ptr;                          \
        while (*s)                              \
            *s++ = 0;                           \
    }  while (0)

#ifndef PAM_AUTHTOK_RECOVER_ERR
# define PAM_AUTHTOK_RECOVER_ERR PAM_CONV_ERR
#endif

static int
pies_conv (int num_msg, const struct pam_message **msg,
	   struct pam_response **resp, void *appdata_ptr)
{
  int status = PAM_SUCCESS;
  int i;
  struct pam_response *reply = NULL;
  struct pam_cred *cred = appdata_ptr;

  reply = calloc (num_msg, sizeof (*reply));
  if (!reply)
    return PAM_CONV_ERR;

  for (i = 0; i < num_msg && status == PAM_SUCCESS; i++)
    {
      switch (msg[i]->msg_style)
	{
        case PAM_PROMPT_ECHO_ON:
	  reply[i].resp_retcode = PAM_SUCCESS;
	  reply[i].resp = COPY_STRING (cred->user);
	  /* PAM frees resp */
	  break;

        case PAM_PROMPT_ECHO_OFF:
	  if (cred->pass)
	    {
	      reply[i].resp_retcode = PAM_SUCCESS;
	      reply[i].resp = COPY_STRING (cred->pass);
	      /* PAM frees resp */
            } else
	      status = PAM_AUTHTOK_RECOVER_ERR;
          break;

        case PAM_TEXT_INFO:
        case PAM_ERROR_MSG:
	  reply[i].resp_retcode = PAM_SUCCESS;
	  reply[i].resp = NULL;
	  break;

        default:
	  status = PAM_CONV_ERR;
        }
    }

  if (status != PAM_SUCCESS)
    {
      for (i = 0; i < num_msg; i++)
	if (reply[i].resp)
	  {
	    switch (msg[i]->msg_style)
	      {
              case PAM_PROMPT_ECHO_ON:
              case PAM_PROMPT_ECHO_OFF:
		overwrite_and_free (reply[i].resp);
		break;

              case PAM_ERROR_MSG:
              case PAM_TEXT_INFO:
		free (reply[i].resp);
              }
          }
      free (reply);
    } else
      *resp = reply;
    return status;
}

static int
authenticate (pies_identity_provider_t provider,
	      pies_identity_t id, char const *passwd)
{
  struct pam_identity_provider_data *pamdata = provider->data;
  pam_handle_t *pamh;
  int pamerror;
  struct pam_cred cred = { id->username, passwd };
  struct pam_conv pam_conv = { &pies_conv, &cred };
  char const *service = pamdata->service ? pamdata->service : "pies";

  do
    {
      pamerror = pam_start (service, id->username, &pam_conv, &pamh);
      if (pamerror != PAM_SUCCESS)
	break;

      pamerror = pam_authenticate (pamh, 0);
      if (pamerror != PAM_SUCCESS)
	break;

      pamerror = pam_acct_mgmt (pamh, 0);
      if (pamerror != PAM_SUCCESS)
	break;

      pamerror = pam_setcred (pamh, PAM_ESTABLISH_CRED);
    }
  while (0);

  pam_end (pamh, PAM_SUCCESS);

  switch (pamerror)
    {
    case PAM_SUCCESS:
      return 0;
      
    case PAM_AUTH_ERR:
      return -1;
    }
  
  //FIXME _log(L_ERR, 0, "PAM authentication error");
  return -1;
}

static int
is_group_member (pies_identity_provider_t p,
		 pies_identity_t id, char * const * groups)
{
  struct group *gr;
  int result = 0;
  
  setgrent ();
  while ((gr = getgrent ()))
    {
      char **p;

      if (!is_array_member (groups, gr->gr_name))
	continue;
      
      for (p = gr->gr_mem; *p; p++)
	if (strcmp (*p, id->username) == 0)
	  {
	    result = 1;
	    break;
	  }
    }
  endgrent ();
  return result;
}

static struct grecs_keyword pam_kw[] = {
  { "type", "'pam", "Set mechanism type", grecs_type_null },
  { "service", NULL, "Service name",
    grecs_type_string, GRECS_DFLT, NULL,
    offsetof(struct pam_identity_provider_data, service) },
  { NULL }
};

static int
configure (struct grecs_node *node, pies_identity_provider_t provider)
{
  int i;
  struct pam_identity_provider_data *data = xcalloc (1, sizeof (*data));
  provider->data = data;
  for (i = 0; pam_kw[i].ident; i++)
    pam_kw[i].varptr = data;
  if (grecs_tree_process (node->down, pam_kw))
    {
      //FIXME: memory leak
      return -1;
    }
  provider->locus = node->locus;
  return 0;
}

static void
confhelp (void)
{
  static struct grecs_keyword top[] = {
    { "identity-provider", "name: string",
      "Configuration for system identity provider",
      grecs_type_section, GRECS_INAC, NULL, 0, NULL, NULL,
      pam_kw },
    { NULL }
  };
  grecs_print_statement_array (top, 1, 0, stdout);
}

struct pies_identity_mechanism pam_identity_mechanism = {
  "pam",
  authenticate,  
  is_group_member,
  NULL,
  configure,
  confhelp
};

  
  

Return to:

Send suggestions and report system problems to the System administrator.