[BACK]Return to auth-options.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/auth-options.c, Revision 1.26.4.1

1.3       deraadt     1: /*
                      2:  * Author: Tatu Ylonen <ylo@cs.hut.fi>
                      3:  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
                      4:  *                    All rights reserved
                      5:  * As far as I am concerned, the code I have written for this software
                      6:  * can be used freely for any purpose.  Any derived versions of this
                      7:  * software must be clearly marked as such, and if the derived work is
                      8:  * incompatible with the protocol description in the RFC file, it must be
                      9:  * called by a name other than "ssh" or "Secure Shell".
                     10:  */
                     11:
1.1       markus     12: #include "includes.h"
1.26.4.1! brad       13: RCSID("$OpenBSD: auth-options.c,v 1.28 2003/06/02 09:17:34 markus Exp $");
1.1       markus     14:
                     15: #include "xmalloc.h"
                     16: #include "match.h"
1.11      markus     17: #include "log.h"
                     18: #include "canohost.h"
1.18      markus     19: #include "channels.h"
1.11      markus     20: #include "auth-options.h"
1.12      markus     21: #include "servconf.h"
1.20      stevesk    22: #include "misc.h"
1.22      provos     23: #include "monitor_wrap.h"
1.24      markus     24: #include "auth.h"
1.1       markus     25:
                     26: /* Flags set authorized_keys flags */
                     27: int no_port_forwarding_flag = 0;
                     28: int no_agent_forwarding_flag = 0;
                     29: int no_x11_forwarding_flag = 0;
                     30: int no_pty_flag = 0;
                     31:
                     32: /* "command=" option. */
                     33: char *forced_command = NULL;
                     34:
                     35: /* "environment=" options. */
                     36: struct envstring *custom_environment = NULL;
                     37:
1.12      markus     38: extern ServerOptions options;
                     39:
1.22      provos     40: void
1.5       markus     41: auth_clear_options(void)
                     42: {
                     43:        no_agent_forwarding_flag = 0;
                     44:        no_port_forwarding_flag = 0;
                     45:        no_pty_flag = 0;
                     46:        no_x11_forwarding_flag = 0;
                     47:        while (custom_environment) {
                     48:                struct envstring *ce = custom_environment;
                     49:                custom_environment = ce->next;
                     50:                xfree(ce->s);
                     51:                xfree(ce);
                     52:        }
                     53:        if (forced_command) {
                     54:                xfree(forced_command);
                     55:                forced_command = NULL;
                     56:        }
1.15      markus     57:        channel_clear_permitted_opens();
1.24      markus     58:        auth_debug_reset();
1.5       markus     59: }
                     60:
1.10      markus     61: /*
                     62:  * return 1 if access is granted, 0 if not.
                     63:  * side effect: sets key option flags
                     64:  */
1.1       markus     65: int
1.12      markus     66: auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum)
1.1       markus     67: {
                     68:        const char *cp;
1.15      markus     69:        int i;
1.5       markus     70:
                     71:        /* reset options */
                     72:        auth_clear_options();
1.13      markus     73:
                     74:        if (!opts)
                     75:                return 1;
1.5       markus     76:
1.12      markus     77:        while (*opts && *opts != ' ' && *opts != '\t') {
1.1       markus     78:                cp = "no-port-forwarding";
1.12      markus     79:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
1.24      markus     80:                        auth_debug_add("Port forwarding disabled.");
1.1       markus     81:                        no_port_forwarding_flag = 1;
1.12      markus     82:                        opts += strlen(cp);
1.1       markus     83:                        goto next_option;
                     84:                }
                     85:                cp = "no-agent-forwarding";
1.12      markus     86:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
1.24      markus     87:                        auth_debug_add("Agent forwarding disabled.");
1.1       markus     88:                        no_agent_forwarding_flag = 1;
1.12      markus     89:                        opts += strlen(cp);
1.1       markus     90:                        goto next_option;
                     91:                }
                     92:                cp = "no-X11-forwarding";
1.12      markus     93:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
1.24      markus     94:                        auth_debug_add("X11 forwarding disabled.");
1.1       markus     95:                        no_x11_forwarding_flag = 1;
1.12      markus     96:                        opts += strlen(cp);
1.1       markus     97:                        goto next_option;
                     98:                }
                     99:                cp = "no-pty";
1.12      markus    100:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
1.24      markus    101:                        auth_debug_add("Pty allocation disabled.");
1.1       markus    102:                        no_pty_flag = 1;
1.12      markus    103:                        opts += strlen(cp);
1.1       markus    104:                        goto next_option;
                    105:                }
                    106:                cp = "command=\"";
1.12      markus    107:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
                    108:                        opts += strlen(cp);
                    109:                        forced_command = xmalloc(strlen(opts) + 1);
1.1       markus    110:                        i = 0;
1.12      markus    111:                        while (*opts) {
                    112:                                if (*opts == '"')
1.1       markus    113:                                        break;
1.12      markus    114:                                if (*opts == '\\' && opts[1] == '"') {
                    115:                                        opts += 2;
1.1       markus    116:                                        forced_command[i++] = '"';
                    117:                                        continue;
                    118:                                }
1.12      markus    119:                                forced_command[i++] = *opts++;
1.1       markus    120:                        }
1.12      markus    121:                        if (!*opts) {
1.1       markus    122:                                debug("%.100s, line %lu: missing end quote",
1.10      markus    123:                                    file, linenum);
1.24      markus    124:                                auth_debug_add("%.100s, line %lu: missing end quote",
1.10      markus    125:                                    file, linenum);
1.14      markus    126:                                xfree(forced_command);
                    127:                                forced_command = NULL;
                    128:                                goto bad_option;
1.1       markus    129:                        }
                    130:                        forced_command[i] = 0;
1.24      markus    131:                        auth_debug_add("Forced command: %.900s", forced_command);
1.12      markus    132:                        opts++;
1.1       markus    133:                        goto next_option;
                    134:                }
                    135:                cp = "environment=\"";
1.26      markus    136:                if (options.permit_user_env &&
                    137:                    strncasecmp(opts, cp, strlen(cp)) == 0) {
1.1       markus    138:                        char *s;
                    139:                        struct envstring *new_envstring;
1.15      markus    140:
1.12      markus    141:                        opts += strlen(cp);
                    142:                        s = xmalloc(strlen(opts) + 1);
1.1       markus    143:                        i = 0;
1.12      markus    144:                        while (*opts) {
                    145:                                if (*opts == '"')
1.1       markus    146:                                        break;
1.12      markus    147:                                if (*opts == '\\' && opts[1] == '"') {
                    148:                                        opts += 2;
1.1       markus    149:                                        s[i++] = '"';
                    150:                                        continue;
                    151:                                }
1.12      markus    152:                                s[i++] = *opts++;
1.1       markus    153:                        }
1.12      markus    154:                        if (!*opts) {
1.1       markus    155:                                debug("%.100s, line %lu: missing end quote",
1.10      markus    156:                                    file, linenum);
1.24      markus    157:                                auth_debug_add("%.100s, line %lu: missing end quote",
1.10      markus    158:                                    file, linenum);
1.14      markus    159:                                xfree(s);
                    160:                                goto bad_option;
1.1       markus    161:                        }
                    162:                        s[i] = 0;
1.24      markus    163:                        auth_debug_add("Adding to environment: %.900s", s);
1.1       markus    164:                        debug("Adding to environment: %.900s", s);
1.12      markus    165:                        opts++;
1.1       markus    166:                        new_envstring = xmalloc(sizeof(struct envstring));
                    167:                        new_envstring->s = s;
                    168:                        new_envstring->next = custom_environment;
                    169:                        custom_environment = new_envstring;
                    170:                        goto next_option;
                    171:                }
                    172:                cp = "from=\"";
1.12      markus    173:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
                    174:                        const char *remote_ip = get_remote_ipaddr();
                    175:                        const char *remote_host = get_canonical_hostname(
1.26.4.1! brad      176:                            options.use_dns);
1.12      markus    177:                        char *patterns = xmalloc(strlen(opts) + 1);
1.15      markus    178:
1.12      markus    179:                        opts += strlen(cp);
1.1       markus    180:                        i = 0;
1.12      markus    181:                        while (*opts) {
                    182:                                if (*opts == '"')
1.1       markus    183:                                        break;
1.12      markus    184:                                if (*opts == '\\' && opts[1] == '"') {
                    185:                                        opts += 2;
1.1       markus    186:                                        patterns[i++] = '"';
                    187:                                        continue;
                    188:                                }
1.12      markus    189:                                patterns[i++] = *opts++;
1.1       markus    190:                        }
1.12      markus    191:                        if (!*opts) {
1.1       markus    192:                                debug("%.100s, line %lu: missing end quote",
1.10      markus    193:                                    file, linenum);
1.24      markus    194:                                auth_debug_add("%.100s, line %lu: missing end quote",
1.10      markus    195:                                    file, linenum);
1.14      markus    196:                                xfree(patterns);
                    197:                                goto bad_option;
1.1       markus    198:                        }
                    199:                        patterns[i] = 0;
1.12      markus    200:                        opts++;
1.19      markus    201:                        if (match_host_and_ip(remote_host, remote_ip,
                    202:                            patterns) != 1) {
                    203:                                xfree(patterns);
1.26.4.1! brad      204:                                logit("Authentication tried for %.100s with "
1.12      markus    205:                                    "correct key but not from a permitted "
                    206:                                    "host (host=%.200s, ip=%.200s).",
                    207:                                    pw->pw_name, remote_host, remote_ip);
1.24      markus    208:                                auth_debug_add("Your host '%.200s' is not "
1.12      markus    209:                                    "permitted to use this key for login.",
                    210:                                    remote_host);
1.1       markus    211:                                /* deny access */
                    212:                                return 0;
                    213:                        }
1.19      markus    214:                        xfree(patterns);
1.1       markus    215:                        /* Host name matches. */
1.15      markus    216:                        goto next_option;
                    217:                }
                    218:                cp = "permitopen=\"";
                    219:                if (strncasecmp(opts, cp, strlen(cp)) == 0) {
1.20      stevesk   220:                        char host[256], sport[6];
1.15      markus    221:                        u_short port;
                    222:                        char *patterns = xmalloc(strlen(opts) + 1);
                    223:
                    224:                        opts += strlen(cp);
                    225:                        i = 0;
                    226:                        while (*opts) {
                    227:                                if (*opts == '"')
                    228:                                        break;
                    229:                                if (*opts == '\\' && opts[1] == '"') {
                    230:                                        opts += 2;
                    231:                                        patterns[i++] = '"';
                    232:                                        continue;
                    233:                                }
                    234:                                patterns[i++] = *opts++;
                    235:                        }
                    236:                        if (!*opts) {
                    237:                                debug("%.100s, line %lu: missing end quote",
                    238:                                    file, linenum);
1.24      markus    239:                                auth_debug_add("%.100s, line %lu: missing end quote",
1.15      markus    240:                                    file, linenum);
                    241:                                xfree(patterns);
                    242:                                goto bad_option;
                    243:                        }
                    244:                        patterns[i] = 0;
                    245:                        opts++;
1.20      stevesk   246:                        if (sscanf(patterns, "%255[^:]:%5[0-9]", host, sport) != 2 &&
                    247:                            sscanf(patterns, "%255[^/]/%5[0-9]", host, sport) != 2) {
                    248:                                debug("%.100s, line %lu: Bad permitopen specification "
                    249:                                    "<%.100s>", file, linenum, patterns);
1.24      markus    250:                                auth_debug_add("%.100s, line %lu: "
1.20      stevesk   251:                                    "Bad permitopen specification", file, linenum);
1.15      markus    252:                                xfree(patterns);
                    253:                                goto bad_option;
                    254:                        }
1.20      stevesk   255:                        if ((port = a2port(sport)) == 0) {
                    256:                                debug("%.100s, line %lu: Bad permitopen port <%.100s>",
                    257:                                    file, linenum, sport);
1.24      markus    258:                                auth_debug_add("%.100s, line %lu: "
1.20      stevesk   259:                                    "Bad permitopen port", file, linenum);
1.15      markus    260:                                xfree(patterns);
                    261:                                goto bad_option;
                    262:                        }
1.16      markus    263:                        if (options.allow_tcp_forwarding)
1.20      stevesk   264:                                channel_add_permitted_opens(host, port);
1.15      markus    265:                        xfree(patterns);
1.1       markus    266:                        goto next_option;
                    267:                }
                    268: next_option:
                    269:                /*
                    270:                 * Skip the comma, and move to the next option
                    271:                 * (or break out if there are no more).
                    272:                 */
1.12      markus    273:                if (!*opts)
1.1       markus    274:                        fatal("Bugs in auth-options.c option processing.");
1.12      markus    275:                if (*opts == ' ' || *opts == '\t')
1.1       markus    276:                        break;          /* End of options. */
1.12      markus    277:                if (*opts != ',')
1.1       markus    278:                        goto bad_option;
1.12      markus    279:                opts++;
1.1       markus    280:                /* Process the next option. */
                    281:        }
1.22      provos    282:
                    283:        if (!use_privsep)
1.24      markus    284:                auth_debug_send();
1.22      provos    285:
1.1       markus    286:        /* grant access */
                    287:        return 1;
                    288:
                    289: bad_option:
1.26.4.1! brad      290:        logit("Bad options in %.100s file, line %lu: %.50s",
1.12      markus    291:            file, linenum, opts);
1.24      markus    292:        auth_debug_add("Bad options in %.100s file, line %lu: %.50s",
1.12      markus    293:            file, linenum, opts);
1.22      provos    294:
                    295:        if (!use_privsep)
1.24      markus    296:                auth_debug_send();
1.22      provos    297:
1.1       markus    298:        /* deny access */
                    299:        return 0;
                    300: }