Use the 'canonical user name' for Unix group lookups, not the
[freeradius.git] / src / modules / rlm_unix / rlm_unix.c
1 /*
2  * rlm_unix.c   authentication: Unix user authentication
3  *              accounting:     Functions to write radwtmp file.
4  *              Also contains handler for "Group".
5  *
6  * Version:     $Id$
7  *
8  *   This program is free software; you can redistribute it and/or modify
9  *   it under the terms of the GNU General Public License as published by
10  *   the Free Software Foundation; either version 2 of the License, or
11  *   (at your option) any later version.
12  *
13  *   This program is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with this program; if not, write to the Free Software
20  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * Copyright 2000  The FreeRADIUS server project
23  * Copyright 2000  Jeff Carneal <jeff@apex.net>
24  * Copyright 2000  Alan Curry <pacman@world.std.com>
25  */
26 static const char rcsid[] = "$Id$";
27
28 #include        "autoconf.h"
29 #include        "libradius.h"
30
31 #include        <stdlib.h>
32 #include        <string.h>
33 #include        <grp.h>
34 #include        <pwd.h>
35 #include        <sys/types.h>
36 #include        <sys/stat.h>
37
38 #include "config.h"
39
40 #if HAVE_SHADOW_H
41 #  include      <shadow.h>
42 #endif
43
44 #ifdef OSFC2
45 #  include      <sys/security.h>
46 #  include      <prot.h>
47 #endif
48
49 #ifdef OSFSIA
50 #  include      <sia.h>
51 #  include      <siad.h>
52 #endif
53
54 #include        "radiusd.h"
55 #include        "modules.h"
56 #include        "sysutmp.h"
57 #include        "cache.h"
58 #include        "conffile.h"
59 #include        "compat.h"
60
61 static char trans[64] =
62    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
63 #define ENC(c) trans[c]
64
65 struct unix_instance {
66         int cache_passwd;
67         const char *passwd_file;
68         const char *shadow_file;
69         const char *group_file;
70         const char *radwtmp;
71         int usegroup;
72         struct pwcache *cache;
73         time_t cache_reload;
74         time_t next_reload;
75         time_t last_reload;
76 };
77
78 static CONF_PARSER module_config[] = {
79         /*
80          *      Cache the password by default.
81          */
82         { "cache",    PW_TYPE_BOOLEAN,
83           offsetof(struct unix_instance,cache_passwd), NULL, "no" },
84         { "passwd",   PW_TYPE_STRING_PTR,
85           offsetof(struct unix_instance,passwd_file), NULL,  NULL },
86         { "shadow",   PW_TYPE_STRING_PTR,
87           offsetof(struct unix_instance,shadow_file), NULL,  NULL },
88         { "group",    PW_TYPE_STRING_PTR,
89           offsetof(struct unix_instance,group_file), NULL,   NULL },
90         { "radwtmp",  PW_TYPE_STRING_PTR,
91           offsetof(struct unix_instance,radwtmp), NULL,   "NULL" },
92         { "usegroup", PW_TYPE_BOOLEAN,
93           offsetof(struct unix_instance,usegroup), NULL,     "no" },
94         { "cache_reload", PW_TYPE_INTEGER,
95           offsetof(struct unix_instance,cache_reload), NULL, "600" },
96         
97         { NULL, -1, 0, NULL, NULL }             /* end the list */
98 };
99
100 /*
101  * groupcmp is part of autz. But it uses the data from an auth instance. So
102  * here is where it gets it. By default this will be the first configured
103  * auth instance. That can be changed by putting "usegroup = yes" inside an
104  * auth instance to explicitly bind all Group checks to it.
105  */
106
107 /* binds "Group=" to an instance (a particular passwd file) */
108 static struct unix_instance *group_inst;
109
110 /* Tells if the above binding was explicit (usegroup=yes specified in config
111  * file) or not ("Group=" was bound to the first instance of rlm_unix */
112 static int group_inst_explicit;
113
114 #if HAVE_GETSPNAM
115 #if defined(M_UNIX)
116 static inline const char *get_shadow_name(shadow_pwd_t *spwd) {
117         if (spwd == NULL) return NULL;
118         return (spwd->pw_name);
119 }
120
121 static inline const char *get_shadow_encrypted_pwd(shadow_pwd_t *spwd) {
122         if (spwd == NULL) return NULL;
123         return (spwd->pw_passwd);
124 }
125 #else /* M_UNIX */
126         static inline const char *get_shadow_name(shadow_pwd_t *spwd) {
127                 if (spwd == NULL) return NULL;
128                 return (spwd->sp_namp);
129         }
130         static inline const char *get_shadow_encrypted_pwd(shadow_pwd_t *spwd) {
131                 if (spwd == NULL) return NULL;
132                 return (spwd->sp_pwdp);
133         }
134 #endif  /* M_UNIX */
135 #endif  /* HAVE_GETSPNAM */
136
137 static struct passwd *fgetpwnam(const char *fname, const char *name) {
138         FILE            *file = fopen(fname, "ro");
139         struct passwd   *pwd = NULL;
140
141         if(file == NULL) return NULL;
142         do {
143                 pwd = fgetpwent(file);
144                 if(pwd == NULL) {
145                         fclose(file);
146                         return NULL;
147                 }
148         } while (strcmp(name, pwd->pw_name) != 0);
149
150         fclose(file);
151         return pwd;
152 }
153
154 static struct group *fgetgrnam(const char *fname, const char *name) {
155         FILE            *file = fopen(fname, "ro");
156         struct group    *grp = NULL;
157
158         if(file == NULL) return NULL;
159
160         do {
161                 grp = fgetgrent(file);
162                 if(grp == NULL) {
163                         fclose(file);
164                         return NULL;
165                 }
166         } while(strcmp(name, grp->gr_name) != 0);
167         fclose(file);
168         return grp;
169 }
170
171 #if HAVE_GETSPNAM
172
173 static shadow_pwd_t *fgetspnam(const char *fname, const char *name) {
174         FILE            *file = fopen(fname, "ro");
175         shadow_pwd_t    *spwd = NULL;
176
177         if(file == NULL) return NULL;
178         do {
179                 spwd = fgetspent(file);
180                 if(spwd == NULL) {
181                         fclose(file);
182                         return NULL;
183                 }
184         } while(strcmp(name, get_shadow_name(spwd)) != 0);
185         fclose(file);
186         return spwd;
187 }
188
189 #endif
190
191 /*
192  *      The Group = handler.
193  */
194 static int groupcmp(void *instance, REQUEST *req, VALUE_PAIR *request, VALUE_PAIR *check,
195         VALUE_PAIR *check_pairs, VALUE_PAIR **reply_pairs)
196 {
197         struct passwd   *pwd;
198         struct group    *grp;
199         char            **member;
200         char            *username;
201         int             retval;
202
203         instance = instance;
204         check_pairs = check_pairs;
205         reply_pairs = reply_pairs;
206
207         if (!group_inst) {
208                 radlog(L_ERR, "groupcmp: no group list known.");
209                 return 1;
210         }
211
212         username = (char *)eq->username->strvalue;
213
214         if (group_inst->cache_passwd &&
215             (retval = H_groupcmp(group_inst->cache, check, username)) != -2)
216                 return retval;
217
218         if (group_inst->passwd_file)
219                 pwd = fgetpwnam(group_inst->passwd_file, username);
220         else
221                 pwd = getpwnam(username);
222         if (pwd == NULL)
223                 return -1;
224
225         if (group_inst->group_file)
226                 grp = fgetgrnam(group_inst->group_file, (char *)check->strvalue);
227         else
228                 grp = getgrnam((char *)check->strvalue);
229         if (grp == NULL)
230                 return -1;
231
232         retval = (pwd->pw_gid == grp->gr_gid) ? 0 : -1;
233         if (retval < 0) {
234                 for (member = grp->gr_mem; *member && retval; member++) {
235                         if (strcmp(*member, pwd->pw_name) == 0)
236                                 retval = 0;
237                 }
238         }
239         return retval;
240 }
241
242
243 /*
244  *      FIXME:  We really should have an 'init' which makes
245  *      System auth == Unix
246  */
247 static int unix_init(void)
248 {
249         /* FIXME - delay these until a group file has been read so we know
250          * groupcmp can actually do something */
251         paircompare_register(PW_GROUP, PW_USER_NAME, groupcmp, NULL);
252 #ifdef PW_GROUP_NAME /* compat */
253         paircompare_register(PW_GROUP_NAME, PW_USER_NAME, groupcmp, NULL);
254 #endif
255         return 0;
256 }
257
258 static int unix_instantiate(CONF_SECTION *conf, void **instance)
259 {
260         struct unix_instance *inst;
261
262         /*
263          *      Allocate room for the instance.
264          */
265         inst = *instance = rad_malloc(sizeof(struct unix_instance));
266
267         /*
268          *      Parse the configuration, failing if we can't do so.
269          */
270         if (cf_section_parse(conf, inst, module_config) < 0) {
271                 free(inst);
272                 return -1;
273         }
274
275         if (inst->cache_passwd) {
276                 radlog(L_INFO, "HASH:  Reinitializing hash structures "
277                         "and lists for caching...");
278                 if ((inst->cache = unix_buildpwcache(inst->passwd_file,
279                                                      inst->shadow_file,
280                                                      inst->group_file))==NULL)
281                 {
282                         radlog(L_ERR, "HASH:  unable to create user "
283                                 "hash table.  disable caching and run debugs");
284                         if (inst->passwd_file)
285                                 free((char *) inst->passwd_file);
286                         if (inst->shadow_file)
287                                 free((char *) inst->shadow_file);
288                         if (inst->group_file)
289                                 free((char *) inst->group_file);
290                         if (inst->radwtmp)
291                                 free((char *) inst->radwtmp);
292                         free(inst);
293                         return -1;
294                 }
295
296                 if (inst->cache_reload) {
297                         inst->last_reload = 0;
298                         inst->next_reload = time(NULL) + inst->cache_reload;
299                 }
300         } else {
301                 inst->cache = NULL;
302         }
303
304         if (inst->usegroup) {
305                 if (group_inst_explicit) {
306                         radlog(L_ERR, "Only one group list may be active");
307                 } else {
308                         group_inst = inst;
309                         group_inst_explicit = 1;
310                 }
311         } else if (!group_inst) {
312                 group_inst = inst;
313         }
314 #undef inst
315
316         return 0;
317 }
318
319 /*
320  *      Detach.
321  */
322 static int unix_detach(void *instance)
323 {
324 #define inst ((struct unix_instance *)instance)
325         if (group_inst == inst) {
326                 group_inst = NULL;
327                 group_inst_explicit = 0;
328         }
329         if (inst->passwd_file)
330                 free((char *) inst->passwd_file);
331         if (inst->shadow_file)
332                 free((char *) inst->shadow_file);
333         if (inst->group_file)
334                 free((char *) inst->group_file);
335         if (inst->radwtmp)
336                 free((char *) inst->radwtmp);
337         if (inst->cache) {
338                 unix_freepwcache(inst->cache);
339         }
340 #undef inst
341         free(instance);
342         return 0;
343 }
344
345 static int unix_destroy(void)
346 {
347         paircompare_unregister(PW_GROUP, groupcmp);
348 #ifdef PW_GROUP_NAME
349         paircompare_unregister(PW_GROUP_NAME, groupcmp);
350 #endif
351         return 0;
352 }
353
354
355 /*
356  *      Check the users password against the standard UNIX
357  *      password table.
358  */
359 static int unix_authenticate(void *instance, REQUEST *request)
360 {
361 #define inst ((struct unix_instance *)instance)
362         char *name, *passwd;
363         struct passwd   *pwd;
364         const char      *encrypted_pass;
365         int             ret;
366 #if HAVE_GETSPNAM
367         shadow_pwd_t    *spwd = NULL;
368 #endif
369 #ifdef OSFC2
370         struct pr_passwd *pr_pw;
371 #endif
372 #ifdef OSFSIA
373         char            *info[2];
374         char            *progname = "radius";
375         SIAENTITY       *ent = NULL;
376 #endif
377 #ifdef HAVE_GETUSERSHELL
378         char            *shell;
379 #endif
380
381         /* See if we should refresh the cache */
382         if (inst->cache && inst->cache_reload
383          && (inst->next_reload < request->timestamp)) {
384                 /* Time to refresh, maybe ? */
385                 int must_reload = 0;
386                 struct stat statbuf;
387
388                 DEBUG2("rlm_users : Time to refresh cache.");
389                 /* Check if any of the files has changed */
390                 if (inst->passwd_file
391                  && (stat(inst->passwd_file, &statbuf) != -1)
392                  && (statbuf.st_mtime > inst->last_reload)) {
393                         must_reload++;
394                 }
395
396                 if (inst->shadow_file
397                  && (stat(inst->shadow_file, &statbuf) != -1)
398                  && (statbuf.st_mtime > inst->last_reload)) {
399                         must_reload++;
400                 }
401
402                 if (inst->group_file
403                  && (stat(inst->group_file, &statbuf) != -1)
404                  && (statbuf.st_mtime > inst->last_reload)) {
405                         must_reload++;
406                 }
407
408                 if (must_reload) {
409                         /* Build a new cache to replace old one */
410                         struct pwcache *oldcache;
411                         struct pwcache *newcache = unix_buildpwcache(
412                                                         inst->passwd_file,
413                                                         inst->shadow_file,
414                                                         inst->group_file);
415
416                         if (newcache) {
417                                 oldcache = inst->cache;
418                                 inst->cache = newcache;
419                                 unix_freepwcache(oldcache);
420
421                                 inst->last_reload = time(NULL);
422                         }
423                 } else {
424                         DEBUG2("rlm_users : Files were unchanged. Not reloading.");
425                 }
426
427                 /* Schedule next refresh */
428                 inst->next_reload = time(NULL) + inst->cache_reload;
429         }
430
431         /*
432          *      We can only authenticate user requests which HAVE
433          *      a User-Name attribute.
434          */
435         if (!request->username) {
436                 radlog(L_AUTH, "rlm_unix: Attribute \"User-Name\" is required for authentication.");
437                 return RLM_MODULE_INVALID;
438         }
439
440         /*
441          *      We can only authenticate user requests which HAVE
442          *      a User-Password attribute.
443          */
444         if (!request->password) {
445                 radlog(L_AUTH, "rlm_unix: Attribute \"User-Password\" is required for authentication.");
446                 return RLM_MODULE_INVALID;
447         }
448
449         /*
450          *  Ensure that we're being passed a plain-text password,
451          *  and not anything else.
452          */
453         if (request->password->attribute != PW_PASSWORD) {
454                 radlog(L_AUTH, "rlm_unix: Attribute \"User-Password\" is required for authentication.  Cannot use \"%s\".", request->password->name);
455                 return RLM_MODULE_INVALID;
456         }
457
458         name = (char *)request->username->strvalue;
459         passwd = (char *)request->password->strvalue;
460
461         if (inst->cache_passwd &&
462             (ret = H_unix_pass(inst->cache, name, passwd, &request->reply->vps)) != -2)
463                 return (ret == 0) ? RLM_MODULE_OK : RLM_MODULE_REJECT;
464
465 #ifdef OSFSIA
466         info[0] = progname;
467         info[1] = NULL;
468         if (sia_ses_init (&ent, 1, info, NULL, name, NULL, 0, NULL) !=
469             SIASUCCESS)
470                 return RLM_MODULE_NOTFOUND;
471         if ((ret = sia_ses_authent (NULL, passwd, ent)) != SIASUCCESS) {
472                 if (ret & SIASTOP)
473                         sia_ses_release (&ent);
474                 return RLM_MODULE_NOTFOUND;
475         }
476         if (sia_ses_estab (NULL, ent) == SIASUCCESS) {
477                 sia_ses_release (&ent);
478                 return RLM_MODULE_OK;
479         }
480
481         return RLM_MODULE_NOTFOUND;
482 #else /* OSFSIA */
483 #ifdef OSFC2
484         if ((pr_pw = getprpwnam(name)) == NULL)
485                 return RLM_MODULE_NOTFOUND;
486         encrypted_pass = pr_pw->ufld.fd_encrypt;
487 #else /* OSFC2 */
488         /*
489          *      Get encrypted password from password file
490          *
491          *      If a password file was explicitly specified, use it,
492          *      otherwise, use the system routines to read the
493          *      system password file
494          */
495         if (inst->passwd_file != NULL) {
496                 if ((pwd = fgetpwnam(inst->passwd_file, name)) == NULL)
497                         return RLM_MODULE_NOTFOUND;
498         } else if ((pwd = getpwnam(name)) == NULL) {
499                 return RLM_MODULE_NOTFOUND;
500         }
501         encrypted_pass = pwd->pw_passwd;
502 #endif /* OSFC2 */
503
504 #if HAVE_GETSPNAM
505         /*
506          *      See if there is a shadow password.
507          *
508          *      If a shadow file was explicitly specified, use it,
509          *      otherwise, use the system routines to read the
510          *      system shadow file.
511          *
512          *      Also, if we explicitly specify the password file,
513          *      only query the _system_ shadow file if the encrypted
514          *      password from the passwd file is < 10 characters (i.e.
515          *      a valid password would never crypt() to it).  This will
516          *      prevents users from using NULL password fields as things
517          *      stand right now.
518          */
519         if (inst->shadow_file != NULL) {
520                 if ((spwd = fgetspnam(inst->shadow_file, name)) != NULL)
521                         encrypted_pass = get_shadow_encrypted_pwd(spwd);
522         } else if ((encrypted_pass == NULL) || (strlen(encrypted_pass) < 10)) {
523                 if ((spwd = getspnam(name)) != NULL)
524                         encrypted_pass = get_shadow_encrypted_pwd(spwd);
525         }
526 #endif  /* HAVE_GETSPNAM */
527
528 #ifdef DENY_SHELL
529         /*
530          *      Undocumented temporary compatibility for iphil.NET
531          *      Users with a certain shell are always denied access.
532          */
533         if (strcmp(pwd->pw_shell, DENY_SHELL) == 0) {
534                 radlog(L_AUTH, "rlm_unix: [%s]: invalid shell", name);
535                 return RLM_MODULE_REJECT;
536         }
537 #endif
538
539 #if HAVE_GETUSERSHELL
540         /*
541          *      Check /etc/shells for a valid shell. If that file
542          *      contains /RADIUSD/ANY/SHELL then any shell will do.
543          */
544         while ((shell = getusershell()) != NULL) {
545                 if (strcmp(shell, pwd->pw_shell) == 0 ||
546                     strcmp(shell, "/RADIUSD/ANY/SHELL") == 0) {
547                         break;
548                 }
549         }
550         endusershell();
551         if (shell == NULL) {
552                 radlog(L_AUTH, "rlm_unix: [%s]: invalid shell [%s]",
553                         name, pwd->pw_shell);
554                 return RLM_MODULE_REJECT;
555         }
556 #endif
557
558 #if defined(HAVE_GETSPNAM) && !defined(M_UNIX)
559         /*
560          *      Check if password has expired.
561          */
562         if (spwd && spwd->sp_expire > 0 &&
563             (request->timestamp / 86400) > spwd->sp_expire) {
564                 radlog(L_AUTH, "rlm_unix: [%s]: password has expired", name);
565                 return RLM_MODULE_REJECT;
566         }
567 #endif
568
569 #if defined(__FreeBSD__) || defined(bsdi) || defined(_PWF_EXPIRE)
570         /*
571          *      Check if password has expired.
572          */
573         if ((pwd->pw_expire > 0) &&
574             (request->timestamp > pwd->pw_expire)) {
575                 radlog(L_AUTH, "rlm_unix: [%s]: password has expired", name);
576                 return RLM_MODULE_REJECT;
577         }
578 #endif
579
580 #ifdef OSFC2
581         /*
582          *      Check if account is locked.
583          */
584         if (pr_pw->uflg.fg_lock!=1) {
585                 radlog(L_AUTH, "rlm_unix: [%s]: account locked", name);
586                 return RLM_MODULE_USERLOCK;
587         }
588 #endif /* OSFC2 */
589
590         /*
591          *      We might have a passwordless account.
592          */
593         if (encrypted_pass[0] == 0)
594                 return RLM_MODULE_OK;
595
596         /*
597          *      Check encrypted password.
598          */
599         if (lrad_crypt_check(passwd, encrypted_pass)) {
600                 radlog(L_AUTH, "rlm_unix: [%s]: invalid password", name);
601                 return RLM_MODULE_REJECT;
602         }
603         return RLM_MODULE_OK;
604 #endif /* OSFSIA */
605 #undef inst
606 }
607
608 /*
609  *      UUencode 4 bits base64. We use this to turn a 4 byte field
610  *      (an IP address) into 6 bytes of ASCII. This is used for the
611  *      wtmp file if we didn't find a short name in the naslist file.
612  */
613 static char *uue(void *in)
614 {
615         int i;
616         static unsigned char res[7];
617         unsigned char *data = (unsigned char *)in;
618
619         res[0] = ENC( data[0] >> 2 );
620         res[1] = ENC( ((data[0] << 4) & 060) + ((data[1] >> 4) & 017) );
621         res[2] = ENC( ((data[1] << 2) & 074) + ((data[2] >> 6) & 03) );
622         res[3] = ENC( data[2] & 077 );
623
624         res[4] = ENC( data[3] >> 2 );
625         res[5] = ENC( (data[3] << 4) & 060 );
626         res[6] = 0;
627
628         for(i = 0; i < 6; i++) {
629                 if (res[i] == ' ') res[i] = '`';
630                 if (res[i] < 32 || res[i] > 127)
631                         printf("uue: protocol error ?!\n");
632         }
633         return (char *)res;
634 }
635
636
637 /*
638  *      Unix accounting - write a wtmp file.
639  */
640 static int unix_accounting(void *instance, REQUEST *request)
641 {
642         VALUE_PAIR      *vp;
643         RADCLIENT       *cl;
644         FILE            *fp;
645         struct utmp     ut;
646         time_t          t;
647         char            buf[64];
648         const char      *s;
649         int             delay = 0;
650         int             status = -1;
651         int             nas_address = 0;
652         int             framed_address = 0;
653         int             protocol = -1;
654         int             nas_port = 0;
655         int             port_seen = 0;
656         int             nas_port_type = 0;
657         struct unix_instance *inst = (struct unix_instance *) instance;
658
659         /*
660          *      No radwtmp.  Don't do anything.
661          */
662         if (!inst->radwtmp) {
663                 DEBUG2("rlm_unix: No radwtmp file configured.  Ignoring accounting request.");
664                 return RLM_MODULE_NOOP;
665         }
666
667         /*
668          *      Which type is this.
669          */
670         if ((vp = pairfind(request->packet->vps, PW_ACCT_STATUS_TYPE))==NULL) {
671                 radlog(L_ERR, "rlm_unix: no Accounting-Status-Type attribute in request.");
672                 return RLM_MODULE_NOOP;
673         }
674         status = vp->lvalue;
675
676         /*
677          *      FIXME: handle PW_STATUS_ALIVE like 1.5.4.3 did.
678          */
679         if (status != PW_STATUS_START &&
680             status != PW_STATUS_STOP)
681                 return RLM_MODULE_NOOP;
682
683         /*
684          *      We're only interested in accounting messages
685          *      with a username in it.
686          */
687         if ((vp = pairfind(request->packet->vps, PW_USER_NAME)) == NULL)
688                 return RLM_MODULE_NOOP;
689
690         t = request->timestamp;
691         memset(&ut, 0, sizeof(ut));
692
693         /*
694          *      First, find the interesting attributes.
695          */
696         for (vp = request->packet->vps; vp; vp = vp->next) {
697                 switch (vp->attribute) {
698                         case PW_USER_NAME:
699                                 if (vp->length >= sizeof(ut.ut_name)) {
700                                         memcpy(ut.ut_name, (char *)vp->strvalue, sizeof(ut.ut_name));
701                                 } else {
702                                         strNcpy(ut.ut_name, (char *)vp->strvalue, sizeof(ut.ut_name));
703                                 }
704                                 break;
705                         case PW_LOGIN_IP_HOST:
706                         case PW_FRAMED_IP_ADDRESS:
707                                 framed_address = vp->lvalue;
708                                 break;
709                         case PW_FRAMED_PROTOCOL:
710                                 protocol = vp->lvalue;
711                                 break;
712                         case PW_NAS_IP_ADDRESS:
713                                 nas_address = vp->lvalue;
714                                 break;
715                         case PW_NAS_PORT:
716                                 nas_port = vp->lvalue;
717                                 port_seen = 1;
718                                 break;
719                         case PW_ACCT_DELAY_TIME:
720                                 delay = vp->lvalue;
721                                 break;
722                         case PW_NAS_PORT_TYPE:
723                                 nas_port_type = vp->lvalue;
724                                 break;
725                 }
726         }
727
728         /*
729          *      We don't store !root sessions, or sessions
730          *      where we didn't see a NAS-Port attribute.
731          */
732         if (strncmp(ut.ut_name, "!root", sizeof(ut.ut_name)) == 0 || !port_seen)
733                 return RLM_MODULE_NOOP;
734
735         /*
736          *      If we didn't find out the NAS address, use the
737          *      originator's IP address.
738          */
739         if (nas_address == 0)
740                 nas_address = request->packet->src_ipaddr;
741
742 #ifdef __linux__
743         /*
744          *      Linux has a field for the client address.
745          */
746         ut.ut_addr = framed_address;
747 #endif
748         /*
749          *      We use the tty field to store the terminal servers' port
750          *      and address so that the tty field is unique.
751          */
752         s = "";
753         if ((cl = client_find(nas_address)) != NULL)
754                 s = cl->shortname;
755         if (s == NULL || s[0] == 0) s = uue(&(nas_address));
756         sprintf(buf, "%03d:%s", nas_port, s);
757         strNcpy(ut.ut_line, buf, sizeof(ut.ut_line));
758
759         /*
760          *      We store the dynamic IP address in the hostname field.
761          */
762 #ifdef UT_HOSTSIZE
763         if (framed_address) {
764                 ip_ntoa(buf, framed_address);
765                 strncpy(ut.ut_host, buf, sizeof(ut.ut_host));
766         }
767 #endif
768 #ifdef HAVE_UTMPX_H
769         ut.ut_xtime = t- delay;
770 #else
771         ut.ut_time = t - delay;
772 #endif
773 #ifdef USER_PROCESS
774         /*
775          *      And we can use the ID field to store
776          *      the protocol.
777          */
778         if (protocol == PW_PPP)
779                 strcpy(ut.ut_id, "P");
780         else if (protocol == PW_SLIP)
781                 strcpy(ut.ut_id, "S");
782         else
783                 strcpy(ut.ut_id, "T");
784         ut.ut_type = status == PW_STATUS_STOP ? DEAD_PROCESS : USER_PROCESS;
785 #endif
786         if (status == PW_STATUS_STOP)
787                 ut.ut_name[0] = 0;
788
789         /*
790          *      Write a RADIUS wtmp log file.
791          *
792          *      Try to open the file if we can't, we don't write the
793          *      wtmp file. If we can try to write. If we fail,
794          *      return RLM_MODULE_FAIL ..
795          */
796         if ((fp = fopen(inst->radwtmp, "a")) != NULL) {
797                 if ((fwrite(&ut, sizeof(ut), 1, fp)) != 1) {
798                         fclose(fp);
799                         return RLM_MODULE_FAIL;
800                 }
801                 fclose(fp);
802         } else 
803                 return RLM_MODULE_FAIL;
804
805         return RLM_MODULE_OK;
806 }
807
808 /* globally exported name */
809 module_t rlm_unix = {
810   "System",
811   RLM_TYPE_THREAD_UNSAFE,        /* type: reserved */
812   unix_init,                    /* initialization */
813   unix_instantiate,             /* instantiation */
814   {
815           unix_authenticate,    /* authentication */
816           NULL,                 /* authorization */
817           NULL,                 /* preaccounting */
818           unix_accounting,      /* accounting */
819           NULL,                  /* checksimul */
820           NULL,                 /* pre-proxy */
821           NULL,                 /* post-proxy */
822           NULL                  /* post-auth */
823   },
824   unix_detach,                  /* detach */
825   unix_destroy,                  /* destroy */
826 };
827