| /* |
| * CDDL HEADER START |
| * |
| * The contents of this file are subject to the terms of the |
| * Common Development and Distribution License (the "License"). |
| * You may not use this file except in compliance with the License. |
| * |
| * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| * or http://www.opensolaris.org/os/licensing. |
| * See the License for the specific language governing permissions |
| * and limitations under the License. |
| * |
| * When distributing Covered Code, include this CDDL HEADER in each |
| * file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| * If applicable, add the following below this CDDL HEADER, with the |
| * fields enclosed by brackets "[]" replaced with your own identifying |
| * information: Portions Copyright [yyyy] [name of copyright owner] |
| * |
| * CDDL HEADER END |
| */ |
| /* |
| * Copyright 2007 Sun Microsystems, Inc. All rights reserved. |
| * Use is subject to license terms. |
| */ |
| /* Copyright (c) 1990 Mentat Inc. */ |
| |
| #pragma ident "%Z%%M% %I% %E% SMI" |
| |
| /* |
| * This file contains common code for handling Options Management requests |
| * for SNMP/MIB. |
| */ |
| |
| #include <sys/types.h> |
| #include <sys/stream.h> |
| #include <sys/stropts.h> |
| #include <sys/errno.h> |
| #define _SUN_TPI_VERSION 2 |
| #include <sys/tihdr.h> |
| #include <sys/ddi.h> |
| #include <sys/cmn_err.h> |
| #include <sys/policy.h> |
| |
| #include <sys/socket.h> |
| #include <netinet/in.h> |
| |
| #include <inet/common.h> |
| #include <inet/mi.h> |
| #include <inet/mib2.h> |
| #include <inet/optcom.h> |
| #include <inet/snmpcom.h> |
| |
| #include <inet/ip.h> |
| #include <inet/ip6.h> |
| #include <inet/tcp.h> |
| #include <inet/udp_impl.h> |
| |
| #define DEFAULT_LENGTH sizeof (long) |
| #define DATA_MBLK_SIZE 1024 |
| #define TOAHDR_SIZE (sizeof (struct T_optmgmt_ack) +\ |
| sizeof (struct opthdr)) |
| |
| /* SNMP Option Request Structure */ |
| typedef struct sor_s { |
| int sor_group; |
| int sor_code; /* MIB2 index value */ |
| int sor_size; |
| } sor_t; |
| |
| /* |
| * Validation Table for set requests. |
| */ |
| static sor_t req_arr[] = { |
| { MIB2_IP, 1, sizeof (int) }, |
| { MIB2_IP, 2, sizeof (int) }, |
| { MIB2_IP, 21, sizeof (mib2_ipRouteEntry_t) }, |
| { MIB2_IP, 22, sizeof (mib2_ipNetToMediaEntry_t)}, |
| { MIB2_TCP, 13, sizeof (mib2_tcpConnEntry_t) } |
| }; |
| |
| /* |
| * Binary compatibility to what used to be T_CURRENT in older releases. |
| * Unfortunately, the binary chosen for it was different and used by |
| * T_PARTSUCCESS in the new name space. However T_PARTSUCESS is only |
| * anticiapted in new T_OPTMGM_REQ (and not O_T_OPTMGMT_REQ messages). |
| * Only a test for TBADFLAG which uses one of the MIB option levels |
| * may have trouble with this provision for binary compatibility. |
| */ |
| #define OLD_T_CURRENT 0x100 /* same value as T_PARTSUCCESS */ |
| |
| /* |
| * MIB info returned in data part of M_PROTO msg. All info for a single |
| * request is appended in a chain of mblk's off of the M_PROTO T_OPTMGMT_ACK |
| * ctl buffer. |
| */ |
| int |
| snmp_append_data(mblk_t *mpdata, char *blob, int len) |
| { |
| |
| if (!mpdata) |
| return (0); |
| while (mpdata->b_cont) |
| mpdata = mpdata->b_cont; |
| if (mpdata->b_wptr + len >= mpdata->b_datap->db_lim) { |
| mpdata->b_cont = allocb(DATA_MBLK_SIZE, BPRI_HI); |
| mpdata = mpdata->b_cont; |
| if (!mpdata) |
| return (0); |
| } |
| bcopy(blob, (char *)mpdata->b_wptr, len); |
| mpdata->b_wptr += len; |
| return (1); |
| } |
| |
| /* |
| * Need a form which avoids O(n^2) behavior locating the end of the |
| * chain every time. This is it. |
| */ |
| int |
| snmp_append_data2(mblk_t *mpdata, mblk_t **last_mpp, char *blob, int len) |
| { |
| |
| if (!mpdata) |
| return (0); |
| if (*last_mpp == NULL) { |
| while (mpdata->b_cont) |
| mpdata = mpdata->b_cont; |
| *last_mpp = mpdata; |
| } |
| if ((*last_mpp)->b_wptr + len >= (*last_mpp)->b_datap->db_lim) { |
| (*last_mpp)->b_cont = allocb(DATA_MBLK_SIZE, BPRI_HI); |
| *last_mpp = (*last_mpp)->b_cont; |
| if (!*last_mpp) |
| return (0); |
| } |
| bcopy(blob, (char *)(*last_mpp)->b_wptr, len); |
| (*last_mpp)->b_wptr += len; |
| return (1); |
| } |
| |
| /* |
| * SNMP requests are issued using putmsg() on a stream containing all |
| * relevant modules. The ctl part contains a O_T_OPTMGMT_REQ message, |
| * and the data part is NULL |
| * to process this msg. If snmpcom_req() returns FALSE, then the module |
| * will try optcom_req to see if its some sort of SOCKET or IP option. |
| * snmpcom_req returns TRUE whenever the first option is recognized as |
| * an SNMP request, even if a bad one. |
| * |
| * "get" is done by a single O_T_OPTMGMT_REQ with MGMT_flags set to T_CURRENT. |
| * All modules respond with one or msg's about what they know. Responses |
| * are in T_OPTMGMT_ACK format. The opthdr level/name fields identify what |
| * is begin returned, the len field how big it is (in bytes). The info |
| * itself is in the data portion of the msg. Fixed length info returned |
| * in one msg; each table in a separate msg. |
| * |
| * setfn() returns 1 if things ok, 0 if set request invalid or otherwise |
| * messed up. |
| * |
| * If the passed q is at the bottom of the module chain (q_next == NULL, |
| * a ctl msg with req->name, level, len all zero is sent upstream. This |
| * is and EOD flag to the caller. |
| * |
| * IMPORTANT: |
| * - The msg type is M_PROTO, not M_PCPROTO!!! This is by design, |
| * since multiple messages will be sent to stream head and we want |
| * them queued for reading, not discarded. |
| * - All requests which match a table entry are sent to all get/set functions |
| * of each module. The functions must simply ignore requests not meant |
| * for them: getfn() returns 0, setfn() returns 1. |
| */ |
| boolean_t |
| snmpcom_req(queue_t *q, mblk_t *mp, pfi_t setfn, pfi_t getfn, cred_t *credp) |
| { |
| mblk_t *mpctl; |
| struct opthdr *req; |
| struct opthdr *next_req; |
| struct opthdr *req_end; |
| struct opthdr *req_start; |
| sor_t *sreq; |
| struct T_optmgmt_req *tor = (struct T_optmgmt_req *)mp->b_rptr; |
| struct T_optmgmt_ack *toa; |
| boolean_t pass_to_ip = B_FALSE; |
| |
| if (mp->b_cont) { /* don't deal with multiple mblk's */ |
| freemsg(mp->b_cont); |
| mp->b_cont = (mblk_t *)0; |
| optcom_err_ack(q, mp, TSYSERR, EBADMSG); |
| return (B_TRUE); |
| } |
| if ((mp->b_wptr - mp->b_rptr) < sizeof (struct T_optmgmt_req) || |
| !(req_start = (struct opthdr *)mi_offset_param(mp, |
| tor->OPT_offset, tor->OPT_length))) |
| goto bad_req1; |
| if (! __TPI_OPT_ISALIGNED(req_start)) |
| goto bad_req1; |
| |
| /* |
| * if first option not in the MIB2 or EXPER range, return false so |
| * optcom_req can scope things out. Otherwise it's passed to each |
| * calling module to process or ignore as it sees fit. |
| */ |
| if ((!(req_start->level >= MIB2_RANGE_START && |
| req_start->level <= MIB2_RANGE_END)) && |
| (!(req_start->level >= EXPER_RANGE_START && |
| req_start->level <= EXPER_RANGE_END))) |
| return (B_FALSE); |
| |
| if (setfn == tcp_snmp_set || setfn == udp_snmp_set || |
| getfn == tcp_snmp_get || getfn == udp_snmp_get) |
| pass_to_ip = B_TRUE; |
| |
| switch (tor->MGMT_flags) { |
| |
| case T_NEGOTIATE: |
| if (secpolicy_ip_config(credp, B_FALSE) != 0) { |
| optcom_err_ack(q, mp, TACCES, 0); |
| return (B_TRUE); |
| } |
| req_end = (struct opthdr *)((uchar_t *)req_start + |
| tor->OPT_length); |
| for (req = req_start; req < req_end; req = next_req) { |
| next_req = |
| (struct opthdr *)((uchar_t *)&req[1] + |
| _TPI_ALIGN_OPT(req->len)); |
| if (next_req > req_end) |
| goto bad_req2; |
| for (sreq = req_arr; sreq < A_END(req_arr); sreq++) { |
| if (req->level == sreq->sor_group && |
| req->name == sreq->sor_code) |
| break; |
| } |
| if (sreq >= A_END(req_arr)) |
| goto bad_req3; |
| if (!(*setfn)(q, req->level, req->name, |
| (uchar_t *)&req[1], req->len)) |
| goto bad_req4; |
| } |
| if (q->q_next != NULL) |
| putnext(q, mp); |
| else if (pass_to_ip) |
| ip_output(Q_TO_CONN(q), mp, q, IP_WPUT); |
| else |
| freemsg(mp); |
| return (B_TRUE); |
| |
| case OLD_T_CURRENT: |
| case T_CURRENT: |
| mpctl = allocb(TOAHDR_SIZE, BPRI_MED); |
| if (!mpctl) { |
| optcom_err_ack(q, mp, TSYSERR, ENOMEM); |
| return (B_TRUE); |
| } |
| mpctl->b_cont = allocb(DATA_MBLK_SIZE, BPRI_MED); |
| if (!mpctl->b_cont) { |
| freemsg(mpctl); |
| optcom_err_ack(q, mp, TSYSERR, ENOMEM); |
| return (B_TRUE); |
| } |
| mpctl->b_datap->db_type = M_PROTO; |
| mpctl->b_wptr += TOAHDR_SIZE; |
| toa = (struct T_optmgmt_ack *)mpctl->b_rptr; |
| toa->PRIM_type = T_OPTMGMT_ACK; |
| toa->OPT_offset = sizeof (struct T_optmgmt_ack); |
| toa->OPT_length = sizeof (struct opthdr); |
| toa->MGMT_flags = T_SUCCESS; |
| if (!(*getfn)(q, mpctl)) |
| freemsg(mpctl); |
| /* |
| * all data for this module has now been sent upstream. If |
| * this is bottom module of stream, send up an EOD ctl msg, |
| * otherwise pass onto the next guy for processing. |
| */ |
| if (q->q_next != NULL) { |
| putnext(q, mp); |
| return (B_TRUE); |
| } else if (pass_to_ip) { |
| ip_output(Q_TO_CONN(q), mp, q, IP_WPUT); |
| return (B_TRUE); |
| } |
| if (mp->b_cont) { |
| freemsg(mp->b_cont); |
| mp->b_cont = NULL; |
| } |
| mpctl = reallocb(mp, TOAHDR_SIZE, 1); |
| if (!mpctl) { |
| optcom_err_ack(q, mp, TSYSERR, ENOMEM); |
| return (B_TRUE); |
| } |
| mpctl->b_datap->db_type = M_PROTO; |
| mpctl->b_wptr = mpctl->b_rptr + TOAHDR_SIZE; |
| toa = (struct T_optmgmt_ack *)mpctl->b_rptr; |
| toa->PRIM_type = T_OPTMGMT_ACK; |
| toa->OPT_offset = sizeof (struct T_optmgmt_ack); |
| toa->OPT_length = sizeof (struct opthdr); |
| toa->MGMT_flags = T_SUCCESS; |
| req = (struct opthdr *)&toa[1]; |
| req->level = 0; |
| req->name = 0; |
| req->len = 0; |
| qreply(q, mpctl); |
| return (B_TRUE); |
| |
| default: |
| optcom_err_ack(q, mp, TBADFLAG, 0); |
| return (B_TRUE); |
| } |
| |
| bad_req1:; |
| printf("snmpcom bad_req1\n"); |
| goto bad_req; |
| bad_req2:; |
| printf("snmpcom bad_req2\n"); |
| goto bad_req; |
| bad_req3:; |
| printf("snmpcom bad_req3\n"); |
| goto bad_req; |
| bad_req4:; |
| printf("snmpcom bad_req4\n"); |
| /* FALLTHRU */ |
| bad_req:; |
| optcom_err_ack(q, mp, TBADOPT, 0); |
| return (B_TRUE); |
| |
| } |