2 * Copyright (c) 1997 - 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include "krb5_locl.h"
37 __RCSID("$Heimdal: kuserok.c 16048 2005-09-09 10:33:33Z lha $"
40 /* see if principal is mentioned in the filename access file, return
41 TRUE (in result) if so, FALSE otherwise */
43 static krb5_error_code
44 check_one_file(krb5_context context
,
47 krb5_principal principal
,
57 f
= fopen (filename
, "r");
61 /* check type and mode of file */
62 if (fstat(fileno(f
), &st
) != 0) {
66 if (S_ISDIR(st
.st_mode
)) {
70 if (st
.st_uid
!= pwd
->pw_uid
&& st
.st_uid
!= 0) {
74 if ((st
.st_mode
& (S_IWGRP
| S_IWOTH
)) != 0) {
79 while (fgets (buf
, sizeof(buf
), f
) != NULL
) {
81 char *newline
= buf
+ strcspn(buf
, "\n");
83 if(*newline
!= '\n') {
87 while(c
!= EOF
&& c
!= '\n')
89 /* line was too long, so ignore it */
94 ret
= krb5_parse_name (context
, buf
, &tmp
);
97 *result
= krb5_principal_compare (context
, principal
, tmp
);
98 krb5_free_principal (context
, tmp
);
108 static krb5_error_code
109 check_directory(krb5_context context
,
112 krb5_principal principal
,
113 krb5_boolean
*result
)
117 char filename
[MAXPATHLEN
];
118 krb5_error_code ret
= 0;
123 if(lstat(dirname
, &st
) < 0)
126 if (!S_ISDIR(st
.st_mode
))
129 if (st
.st_uid
!= pwd
->pw_uid
&& st
.st_uid
!= 0)
131 if ((st
.st_mode
& (S_IWGRP
| S_IWOTH
)) != 0)
134 if((d
= opendir(dirname
)) == NULL
)
143 if(fstat(fd
, &st2
) < 0) {
147 if(st
.st_dev
!= st2
.st_dev
|| st
.st_ino
!= st2
.st_ino
) {
154 while((dent
= readdir(d
)) != NULL
) {
155 if(strcmp(dent
->d_name
, ".") == 0 ||
156 strcmp(dent
->d_name
, "..") == 0 ||
157 dent
->d_name
[0] == '#' || /* emacs autosave */
158 dent
->d_name
[strlen(dent
->d_name
) - 1] == '~') /* emacs backup */
160 snprintf(filename
, sizeof(filename
), "%s/%s", dirname
, dent
->d_name
);
161 ret
= check_one_file(context
, filename
, pwd
, principal
, result
);
162 if(ret
== 0 && *result
== TRUE
)
164 ret
= 0; /* don't propagate errors upstream */
171 match_local_principals(krb5_context context
,
172 krb5_principal principal
,
176 krb5_realm
*realms
, *r
;
177 krb5_boolean result
= FALSE
;
179 /* multi-component principals can never match */
180 if(krb5_principal_get_comp_string(context
, principal
, 1) != NULL
)
183 ret
= krb5_get_default_realms (context
, &realms
);
187 for (r
= realms
; *r
!= NULL
; ++r
) {
188 if(strcmp(krb5_principal_get_realm(context
, principal
),
191 if(strcmp(krb5_principal_get_comp_string(context
, principal
, 0),
197 krb5_free_host_realm (context
, realms
);
202 * Return TRUE iff `principal' is allowed to login as `luser'.
205 krb5_boolean KRB5_LIB_FUNCTION
206 krb5_kuserok (krb5_context context
,
207 krb5_principal principal
,
214 krb5_boolean result
= FALSE
;
216 krb5_boolean found_file
= FALSE
;
218 #ifdef POSIX_GETPWNAM_R
222 if(getpwnam_r(luser
, &pw
, pwbuf
, sizeof(pwbuf
), &pwd
) != 0)
225 pwd
= getpwnam (luser
);
230 #define KLOGIN "/.k5login"
231 buflen
= strlen(pwd
->pw_dir
) + sizeof(KLOGIN
) + 2; /* 2 for .d */
232 buf
= malloc(buflen
);
235 /* check user's ~/.k5login */
236 strlcpy(buf
, pwd
->pw_dir
, buflen
);
237 strlcat(buf
, KLOGIN
, buflen
);
238 ret
= check_one_file(context
, buf
, pwd
, principal
, &result
);
240 if(ret
== 0 && result
== TRUE
) {
248 strlcat(buf
, ".d", buflen
);
249 ret
= check_directory(context
, buf
, pwd
, principal
, &result
);
251 if(ret
== 0 && result
== TRUE
)
254 if(ret
!= ENOENT
&& ret
!= ENOTDIR
)
257 /* finally if no files exist, allow all principals matching
258 <localuser>@<LOCALREALM> */
259 if(found_file
== FALSE
)
260 return match_local_principals(context
, principal
, luser
);