diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 04:56:44 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-07-04 04:56:44 +0000 |
commit | 60260022eeb9ca1a1e0f25eb51e354433c3566a4 (patch) | |
tree | 77f1141b045650ca4540dd8561bd474c918792cb /match.c | |
parent | bddd551e1143ba2b7bf0cd453c15b97817bc917d (diff) | |
download | openssh-git-60260022eeb9ca1a1e0f25eb51e354433c3566a4.tar.gz |
- markus@cvs.openbsd.org 2001/06/27 04:48:53
[auth.c match.c sshd.8]
tridge@samba.org
Diffstat (limited to 'match.c')
-rw-r--r-- | match.c | 26 |
1 files changed, 25 insertions, 1 deletions
@@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: match.c,v 1.13 2001/06/24 05:25:10 markus Exp $"); +RCSID("$OpenBSD: match.c,v 1.14 2001/06/27 04:48:53 markus Exp $"); #include "match.h" #include "xmalloc.h" @@ -185,6 +185,30 @@ match_host_and_ip(const char *host, const char *ipaddr, } /* + * match user, user@host_or_ip, user@host_or_ip_list against pattern + */ +int +match_user(const char *user, const char *host, const char *ipaddr, + const char *pattern) +{ + char *p, *pat; + int ret; + + if ((p = strchr(pattern,'@')) == NULL) + return match_pattern(user, pattern); + + pat = xstrdup(pattern); + p = strchr(pat, '@'); + *p++ = '\0'; + + if ((ret = match_pattern(user, pat)) == 1) + ret = match_host_and_ip(host, ipaddr, p); + xfree(pat); + + return ret; +} + +/* * Returns first item from client-list that is also supported by server-list, * caller must xfree() returned string. */ |