1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License (the "License"). 6 * You may not use this file except in compliance with the License. 7 * 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9 * or http://www.opensolaris.org/os/licensing. 10 * See the License for the specific language governing permissions 11 * and limitations under the License. 12 * 13 * When distributing Covered Code, include this CDDL HEADER in each 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15 * If applicable, add the following below this CDDL HEADER, with the 16 * fields enclosed by brackets "[]" replaced with your own identifying 17 * information: Portions Copyright [yyyy] [name of copyright owner] 18 * 19 * CDDL HEADER END 20 */ 21 22 /* 23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24 * Use is subject to license terms. 25 */ 26 /* Copyright (c) 1990 Mentat Inc. */ 27 28 #pragma ident "%Z%%M% %I% %E% SMI" 29 30 #include <sys/types.h> 31 #include <sys/stream.h> 32 #include <sys/dlpi.h> 33 #include <sys/stropts.h> 34 #include <sys/sysmacros.h> 35 #include <sys/strsubr.h> 36 #include <sys/strlog.h> 37 #include <sys/strsun.h> 38 #include <sys/zone.h> 39 #define _SUN_TPI_VERSION 2 40 #include <sys/tihdr.h> 41 #include <sys/xti_inet.h> 42 #include <sys/ddi.h> 43 #include <sys/sunddi.h> 44 #include <sys/cmn_err.h> 45 #include <sys/debug.h> 46 #include <sys/kobj.h> 47 #include <sys/modctl.h> 48 #include <sys/atomic.h> 49 #include <sys/policy.h> 50 #include <sys/priv.h> 51 52 #include <sys/systm.h> 53 #include <sys/param.h> 54 #include <sys/kmem.h> 55 #include <sys/sdt.h> 56 #include <sys/socket.h> 57 #include <sys/vtrace.h> 58 #include <sys/isa_defs.h> 59 #include <net/if.h> 60 #include <net/if_arp.h> 61 #include <net/route.h> 62 #include <sys/sockio.h> 63 #include <netinet/in.h> 64 #include <net/if_dl.h> 65 66 #include <inet/common.h> 67 #include <inet/mi.h> 68 #include <inet/mib2.h> 69 #include <inet/nd.h> 70 #include <inet/arp.h> 71 #include <inet/snmpcom.h> 72 #include <inet/kstatcom.h> 73 74 #include <netinet/igmp_var.h> 75 #include <netinet/ip6.h> 76 #include <netinet/icmp6.h> 77 #include <netinet/sctp.h> 78 79 #include <inet/ip.h> 80 #include <inet/ip_impl.h> 81 #include <inet/ip6.h> 82 #include <inet/ip6_asp.h> 83 #include <inet/tcp.h> 84 #include <inet/tcp_impl.h> 85 #include <inet/ip_multi.h> 86 #include <inet/ip_if.h> 87 #include <inet/ip_ire.h> 88 #include <inet/ip_ftable.h> 89 #include <inet/ip_rts.h> 90 #include <inet/optcom.h> 91 #include <inet/ip_ndp.h> 92 #include <inet/ip_listutils.h> 93 #include <netinet/igmp.h> 94 #include <netinet/ip_mroute.h> 95 #include <inet/ipp_common.h> 96 97 #include <net/pfkeyv2.h> 98 #include <inet/ipsec_info.h> 99 #include <inet/sadb.h> 100 #include <inet/ipsec_impl.h> 101 #include <sys/iphada.h> 102 #include <inet/tun.h> 103 #include <inet/ipdrop.h> 104 #include <inet/ip_netinfo.h> 105 106 #include <sys/ethernet.h> 107 #include <net/if_types.h> 108 #include <sys/cpuvar.h> 109 110 #include <ipp/ipp.h> 111 #include <ipp/ipp_impl.h> 112 #include <ipp/ipgpc/ipgpc.h> 113 114 #include <sys/multidata.h> 115 #include <sys/pattr.h> 116 117 #include <inet/ipclassifier.h> 118 #include <inet/sctp_ip.h> 119 #include <inet/sctp/sctp_impl.h> 120 #include <inet/udp_impl.h> 121 #include <sys/sunddi.h> 122 123 #include <sys/tsol/label.h> 124 #include <sys/tsol/tnet.h> 125 126 #include <rpc/pmap_prot.h> 127 128 /* 129 * Values for squeue switch: 130 * IP_SQUEUE_ENTER_NODRAIN: squeue_enter_nodrain 131 * IP_SQUEUE_ENTER: squeue_enter 132 * IP_SQUEUE_FILL: squeue_fill 133 */ 134 int ip_squeue_enter = 2; /* Setable in /etc/system */ 135 136 squeue_func_t ip_input_proc; 137 #define SET_BPREV_FLAG(x) ((mblk_t *)(uintptr_t)(x)) 138 139 #define TCP6 "tcp6" 140 #define TCP "tcp" 141 #define SCTP "sctp" 142 #define SCTP6 "sctp6" 143 144 major_t TCP6_MAJ; 145 major_t TCP_MAJ; 146 major_t SCTP_MAJ; 147 major_t SCTP6_MAJ; 148 149 /* 150 * Setable in /etc/system 151 */ 152 int ip_poll_normal_ms = 100; 153 int ip_poll_normal_ticks = 0; 154 int ip_modclose_ackwait_ms = 3000; 155 156 /* 157 * Structure to represent a linked list of msgblks. Used by ip_snmp_ functions. 158 */ 159 160 struct listptr_s { 161 mblk_t *lp_head; /* pointer to the head of the list */ 162 mblk_t *lp_tail; /* pointer to the tail of the list */ 163 }; 164 165 typedef struct listptr_s listptr_t; 166 167 /* 168 * This is used by ip_snmp_get_mib2_ip_route_media and 169 * ip_snmp_get_mib2_ip6_route_media to carry the lists of return data. 170 */ 171 typedef struct iproutedata_s { 172 uint_t ird_idx; 173 listptr_t ird_route; /* ipRouteEntryTable */ 174 listptr_t ird_netmedia; /* ipNetToMediaEntryTable */ 175 listptr_t ird_attrs; /* ipRouteAttributeTable */ 176 } iproutedata_t; 177 178 /* 179 * Cluster specific hooks. These should be NULL when booted as a non-cluster 180 */ 181 182 /* 183 * Hook functions to enable cluster networking 184 * On non-clustered systems these vectors must always be NULL. 185 * 186 * Hook function to Check ip specified ip address is a shared ip address 187 * in the cluster 188 * 189 */ 190 int (*cl_inet_isclusterwide)(uint8_t protocol, 191 sa_family_t addr_family, uint8_t *laddrp) = NULL; 192 193 /* 194 * Hook function to generate cluster wide ip fragment identifier 195 */ 196 uint32_t (*cl_inet_ipident)(uint8_t protocol, sa_family_t addr_family, 197 uint8_t *laddrp, uint8_t *faddrp) = NULL; 198 199 /* 200 * Synchronization notes: 201 * 202 * IP is a fully D_MP STREAMS module/driver. Thus it does not depend on any 203 * MT level protection given by STREAMS. IP uses a combination of its own 204 * internal serialization mechanism and standard Solaris locking techniques. 205 * The internal serialization is per phyint (no IPMP) or per IPMP group. 206 * This is used to serialize plumbing operations, IPMP operations, certain 207 * multicast operations, most set ioctls, igmp/mld timers etc. 208 * 209 * Plumbing is a long sequence of operations involving message 210 * exchanges between IP, ARP and device drivers. Many set ioctls are typically 211 * involved in plumbing operations. A natural model is to serialize these 212 * ioctls one per ill. For example plumbing of hme0 and qfe0 can go on in 213 * parallel without any interference. But various set ioctls on hme0 are best 214 * serialized. However if the system uses IPMP, the operations are easier if 215 * they are serialized on a per IPMP group basis since IPMP operations 216 * happen across ill's of a group. Thus the lowest common denominator is to 217 * serialize most set ioctls, multicast join/leave operations, IPMP operations 218 * igmp/mld timer operations, and processing of DLPI control messages received 219 * from drivers on a per IPMP group basis. If the system does not employ 220 * IPMP the serialization is on a per phyint basis. This serialization is 221 * provided by the ipsq_t and primitives operating on this. Details can 222 * be found in ip_if.c above the core primitives operating on ipsq_t. 223 * 224 * Lookups of an ipif or ill by a thread return a refheld ipif / ill. 225 * Simiarly lookup of an ire by a thread also returns a refheld ire. 226 * In addition ipif's and ill's referenced by the ire are also indirectly 227 * refheld. Thus no ipif or ill can vanish nor can critical parameters like 228 * the ipif's address or netmask change as long as an ipif is refheld 229 * directly or indirectly. For example an SIOCLIFADDR ioctl that changes the 230 * address of an ipif has to go through the ipsq_t. This ensures that only 231 * 1 such exclusive operation proceeds at any time on the ipif. It then 232 * deletes all ires associated with this ipif, and waits for all refcnts 233 * associated with this ipif to come down to zero. The address is changed 234 * only after the ipif has been quiesced. Then the ipif is brought up again. 235 * More details are described above the comment in ip_sioctl_flags. 236 * 237 * Packet processing is based mostly on IREs and are fully multi-threaded 238 * using standard Solaris MT techniques. 239 * 240 * There are explicit locks in IP to handle: 241 * - The ip_g_head list maintained by mi_open_link() and friends. 242 * 243 * - The reassembly data structures (one lock per hash bucket) 244 * 245 * - conn_lock is meant to protect conn_t fields. The fields actually 246 * protected by conn_lock are documented in the conn_t definition. 247 * 248 * - ire_lock to protect some of the fields of the ire, IRE tables 249 * (one lock per hash bucket). Refer to ip_ire.c for details. 250 * 251 * - ndp_g_lock and nce_lock for protecting NCEs. 252 * 253 * - ill_lock protects fields of the ill and ipif. Details in ip.h 254 * 255 * - ill_g_lock: This is a global reader/writer lock. Protects the following 256 * * The AVL tree based global multi list of all ills. 257 * * The linked list of all ipifs of an ill 258 * * The <ill-ipsq> mapping 259 * * The ipsq->ipsq_phyint_list threaded by phyint_ipsq_next 260 * * The illgroup list threaded by ill_group_next. 261 * * <ill-phyint> association 262 * Insertion/deletion of an ill in the system, insertion/deletion of an ipif 263 * into an ill, changing the <ill-ipsq> mapping of an ill, insertion/deletion 264 * of an ill into the illgrp list, changing the <ill-phyint> assoc of an ill 265 * will all have to hold the ill_g_lock as writer for the actual duration 266 * of the insertion/deletion/change. More details about the <ill-ipsq> mapping 267 * may be found in the IPMP section. 268 * 269 * - ill_lock: This is a per ill mutex. 270 * It protects some members of the ill and is documented below. 271 * It also protects the <ill-ipsq> mapping 272 * It also protects the illgroup list threaded by ill_group_next. 273 * It also protects the <ill-phyint> assoc. 274 * It also protects the list of ipifs hanging off the ill. 275 * 276 * - ipsq_lock: This is a per ipsq_t mutex lock. 277 * This protects all the other members of the ipsq struct except 278 * ipsq_refs and ipsq_phyint_list which are protected by ill_g_lock 279 * 280 * - illgrp_lock: This is a per ill_group mutex lock. 281 * The only thing it protects is the illgrp_ill_schednext member of ill_group 282 * which dictates which is the next ill in an ill_group that is to be chosen 283 * for sending outgoing packets, through creation of an IRE_CACHE that 284 * references this ill. 285 * 286 * - phyint_lock: This is a per phyint mutex lock. Protects just the 287 * phyint_flags 288 * 289 * - ip_g_nd_lock: This is a global reader/writer lock. 290 * Any call to nd_load to load a new parameter to the ND table must hold the 291 * lock as writer. ND_GET/ND_SET routines that read the ND table hold the lock 292 * as reader. 293 * 294 * - ip_addr_avail_lock: This is used to ensure the uniqueness of IP addresses. 295 * This lock is held in ipif_up_done and the ipif is marked IPIF_UP and the 296 * uniqueness check also done atomically. 297 * 298 * - ipsec_capab_ills_lock: This readers/writer lock protects the global 299 * lists of IPsec capable ills (ipsec_capab_ills_{ah,esp}). It is taken 300 * as a writer when adding or deleting elements from these lists, and 301 * as a reader when walking these lists to send a SADB update to the 302 * IPsec capable ills. 303 * 304 * - ill_g_usesrc_lock: This readers/writer lock protects the usesrc 305 * group list linked by ill_usesrc_grp_next. It also protects the 306 * ill_usesrc_ifindex field. It is taken as a writer when a member of the 307 * group is being added or deleted. This lock is taken as a reader when 308 * walking the list/group(eg: to get the number of members in a usesrc group). 309 * Note, it is only necessary to take this lock if the ill_usesrc_grp_next 310 * field is changing state i.e from NULL to non-NULL or vice-versa. For 311 * example, it is not necessary to take this lock in the initial portion 312 * of ip_sioctl_slifusesrc or at all in ip_sioctl_groupname and 313 * ip_sioctl_flags since the these operations are executed exclusively and 314 * that ensures that the "usesrc group state" cannot change. The "usesrc 315 * group state" change can happen only in the latter part of 316 * ip_sioctl_slifusesrc and in ill_delete. 317 * 318 * Changing <ill-phyint>, <ill-ipsq>, <ill-illgroup> assocications. 319 * 320 * To change the <ill-phyint> association, the ill_g_lock must be held 321 * as writer, and the ill_locks of both the v4 and v6 instance of the ill 322 * must be held. 323 * 324 * To change the <ill-ipsq> association the ill_g_lock must be held as writer 325 * and the ill_lock of the ill in question must be held. 326 * 327 * To change the <ill-illgroup> association the ill_g_lock must be held as 328 * writer and the ill_lock of the ill in question must be held. 329 * 330 * To add or delete an ipif from the list of ipifs hanging off the ill, 331 * ill_g_lock (writer) and ill_lock must be held and the thread must be 332 * a writer on the associated ipsq,. 333 * 334 * To add or delete an ill to the system, the ill_g_lock must be held as 335 * writer and the thread must be a writer on the associated ipsq. 336 * 337 * To add or delete an ilm to an ill, the ill_lock must be held and the thread 338 * must be a writer on the associated ipsq. 339 * 340 * Lock hierarchy 341 * 342 * Some lock hierarchy scenarios are listed below. 343 * 344 * ill_g_lock -> conn_lock -> ill_lock -> ipsq_lock 345 * ill_g_lock -> illgrp_lock -> ill_lock 346 * ill_g_lock -> ill_lock(s) -> phyint_lock 347 * ill_g_lock -> ndp_g_lock -> ill_lock -> nce_lock 348 * ill_g_lock -> ip_addr_avail_lock 349 * conn_lock -> irb_lock -> ill_lock -> ire_lock 350 * ill_g_lock -> ip_g_nd_lock 351 * 352 * When more than 1 ill lock is needed to be held, all ill lock addresses 353 * are sorted on address and locked starting from highest addressed lock 354 * downward. 355 * 356 * Mobile-IP scenarios 357 * 358 * irb_lock -> ill_lock -> ire_mrtun_lock 359 * irb_lock -> ill_lock -> ire_srcif_table_lock 360 * 361 * IPsec scenarios 362 * 363 * ipsa_lock -> ill_g_lock -> ill_lock 364 * ipsec_capab_ills_lock -> ill_g_lock -> ill_lock 365 * ipsec_capab_ills_lock -> ipsa_lock 366 * ill_g_usesrc_lock -> ill_g_lock -> ill_lock 367 * 368 * Trusted Solaris scenarios 369 * 370 * igsa_lock -> gcgrp_rwlock -> gcgrp_lock 371 * igsa_lock -> gcdb_lock 372 * gcgrp_rwlock -> ire_lock 373 * gcgrp_rwlock -> gcdb_lock 374 * 375 * 376 * Routing/forwarding table locking notes: 377 * 378 * Lock acquisition order: Radix tree lock, irb_lock. 379 * Requirements: 380 * i. Walker must not hold any locks during the walker callback. 381 * ii Walker must not see a truncated tree during the walk because of any node 382 * deletion. 383 * iii Existing code assumes ire_bucket is valid if it is non-null and is used 384 * in many places in the code to walk the irb list. Thus even if all the 385 * ires in a bucket have been deleted, we still can't free the radix node 386 * until the ires have actually been inactive'd (freed). 387 * 388 * Tree traversal - Need to hold the global tree lock in read mode. 389 * Before dropping the global tree lock, need to either increment the ire_refcnt 390 * to ensure that the radix node can't be deleted. 391 * 392 * Tree add - Need to hold the global tree lock in write mode to add a 393 * radix node. To prevent the node from being deleted, increment the 394 * irb_refcnt, after the node is added to the tree. The ire itself is 395 * added later while holding the irb_lock, but not the tree lock. 396 * 397 * Tree delete - Need to hold the global tree lock and irb_lock in write mode. 398 * All associated ires must be inactive (i.e. freed), and irb_refcnt 399 * must be zero. 400 * 401 * Walker - Increment irb_refcnt before calling the walker callback. Hold the 402 * global tree lock (read mode) for traversal. 403 * 404 * IPSEC notes : 405 * 406 * IP interacts with the IPSEC code (AH/ESP) by tagging a M_CTL message 407 * in front of the actual packet. For outbound datagrams, the M_CTL 408 * contains a ipsec_out_t (defined in ipsec_info.h), which has the 409 * information used by the IPSEC code for applying the right level of 410 * protection. The information initialized by IP in the ipsec_out_t 411 * is determined by the per-socket policy or global policy in the system. 412 * For inbound datagrams, the M_CTL contains a ipsec_in_t (defined in 413 * ipsec_info.h) which starts out with nothing in it. It gets filled 414 * with the right information if it goes through the AH/ESP code, which 415 * happens if the incoming packet is secure. The information initialized 416 * by AH/ESP, is later used by IP(during fanouts to ULP) to see whether 417 * the policy requirements needed by per-socket policy or global policy 418 * is met or not. 419 * 420 * If there is both per-socket policy (set using setsockopt) and there 421 * is also global policy match for the 5 tuples of the socket, 422 * ipsec_override_policy() makes the decision of which one to use. 423 * 424 * For fully connected sockets i.e dst, src [addr, port] is known, 425 * conn_policy_cached is set indicating that policy has been cached. 426 * conn_in_enforce_policy may or may not be set depending on whether 427 * there is a global policy match or per-socket policy match. 428 * Policy inheriting happpens in ip_bind during the ipa_conn_t bind. 429 * Once the right policy is set on the conn_t, policy cannot change for 430 * this socket. This makes life simpler for TCP (UDP ?) where 431 * re-transmissions go out with the same policy. For symmetry, policy 432 * is cached for fully connected UDP sockets also. Thus if policy is cached, 433 * it also implies that policy is latched i.e policy cannot change 434 * on these sockets. As we have the right policy on the conn, we don't 435 * have to lookup global policy for every outbound and inbound datagram 436 * and thus serving as an optimization. Note that a global policy change 437 * does not affect fully connected sockets if they have policy. If fully 438 * connected sockets did not have any policy associated with it, global 439 * policy change may affect them. 440 * 441 * IP Flow control notes: 442 * 443 * Non-TCP streams are flow controlled by IP. On the send side, if the packet 444 * cannot be sent down to the driver by IP, because of a canput failure, IP 445 * does a putq on the conn_wq. This will cause ip_wsrv to run on the conn_wq. 446 * ip_wsrv in turn, inserts the conn in a list of conn's that need to be drained 447 * when the flowcontrol condition subsides. Ultimately STREAMS backenables the 448 * ip_wsrv on the IP module, which in turn does a qenable of the conn_wq of the 449 * first conn in the list of conn's to be drained. ip_wsrv on this conn drains 450 * the queued messages, and removes the conn from the drain list, if all 451 * messages were drained. It also qenables the next conn in the drain list to 452 * continue the drain process. 453 * 454 * In reality the drain list is not a single list, but a configurable number 455 * of lists. The ip_wsrv on the IP module, qenables the first conn in each 456 * list. If the ip_wsrv of the next qenabled conn does not run, because the 457 * stream closes, ip_close takes responsibility to qenable the next conn in 458 * the drain list. The directly called ip_wput path always does a putq, if 459 * it cannot putnext. Thus synchronization problems are handled between 460 * ip_wsrv and ip_close. conn_drain_insert and conn_drain_tail are the only 461 * functions that manipulate this drain list. Furthermore conn_drain_insert 462 * is called only from ip_wsrv, and there can be only 1 instance of ip_wsrv 463 * running on a queue at any time. conn_drain_tail can be simultaneously called 464 * from both ip_wsrv and ip_close. 465 * 466 * IPQOS notes: 467 * 468 * IPQoS Policies are applied to packets using IPPF (IP Policy framework) 469 * and IPQoS modules. IPPF includes hooks in IP at different control points 470 * (callout positions) which direct packets to IPQoS modules for policy 471 * processing. Policies, if present, are global. 472 * 473 * The callout positions are located in the following paths: 474 * o local_in (packets destined for this host) 475 * o local_out (packets orginating from this host ) 476 * o fwd_in (packets forwarded by this m/c - inbound) 477 * o fwd_out (packets forwarded by this m/c - outbound) 478 * Hooks at these callout points can be enabled/disabled using the ndd variable 479 * ip_policy_mask (a bit mask with the 4 LSB indicating the callout positions). 480 * By default all the callout positions are enabled. 481 * 482 * Outbound (local_out) 483 * Hooks are placed in ip_wput_ire and ipsec_out_process. 484 * 485 * Inbound (local_in) 486 * Hooks are placed in ip_proto_input, icmp_inbound, ip_fanout_proto and 487 * TCP and UDP fanout routines. 488 * 489 * Forwarding (in and out) 490 * Hooks are placed in ip_rput_forward and ip_mrtun_forward. 491 * 492 * IP Policy Framework processing (IPPF processing) 493 * Policy processing for a packet is initiated by ip_process, which ascertains 494 * that the classifier (ipgpc) is loaded and configured, failing which the 495 * packet resumes normal processing in IP. If the clasifier is present, the 496 * packet is acted upon by one or more IPQoS modules (action instances), per 497 * filters configured in ipgpc and resumes normal IP processing thereafter. 498 * An action instance can drop a packet in course of its processing. 499 * 500 * A boolean variable, ip_policy, is used in all the fanout routines that can 501 * invoke ip_process for a packet. This variable indicates if the packet should 502 * to be sent for policy processing. The variable is set to B_TRUE by default, 503 * i.e. when the routines are invoked in the normal ip procesing path for a 504 * packet. The two exceptions being ip_wput_local and icmp_inbound_error_fanout; 505 * ip_policy is set to B_FALSE for all the routines called in these two 506 * functions because, in the former case, we don't process loopback traffic 507 * currently while in the latter, the packets have already been processed in 508 * icmp_inbound. 509 * 510 * Zones notes: 511 * 512 * The partitioning rules for networking are as follows: 513 * 1) Packets coming from a zone must have a source address belonging to that 514 * zone. 515 * 2) Packets coming from a zone can only be sent on a physical interface on 516 * which the zone has an IP address. 517 * 3) Between two zones on the same machine, packet delivery is only allowed if 518 * there's a matching route for the destination and zone in the forwarding 519 * table. 520 * 4) The TCP and UDP port spaces are per-zone; that is, two processes in 521 * different zones can bind to the same port with the wildcard address 522 * (INADDR_ANY). 523 * 524 * The granularity of interface partitioning is at the logical interface level. 525 * Therefore, every zone has its own IP addresses, and incoming packets can be 526 * attributed to a zone unambiguously. A logical interface is placed into a zone 527 * using the SIOCSLIFZONE ioctl; this sets the ipif_zoneid field in the ipif_t 528 * structure. Rule (1) is implemented by modifying the source address selection 529 * algorithm so that the list of eligible addresses is filtered based on the 530 * sending process zone. 531 * 532 * The Internet Routing Entries (IREs) are either exclusive to a zone or shared 533 * across all zones, depending on their type. Here is the break-up: 534 * 535 * IRE type Shared/exclusive 536 * -------- ---------------- 537 * IRE_BROADCAST Exclusive 538 * IRE_DEFAULT (default routes) Shared (*) 539 * IRE_LOCAL Exclusive (x) 540 * IRE_LOOPBACK Exclusive 541 * IRE_PREFIX (net routes) Shared (*) 542 * IRE_CACHE Exclusive 543 * IRE_IF_NORESOLVER (interface routes) Exclusive 544 * IRE_IF_RESOLVER (interface routes) Exclusive 545 * IRE_HOST (host routes) Shared (*) 546 * 547 * (*) A zone can only use a default or off-subnet route if the gateway is 548 * directly reachable from the zone, that is, if the gateway's address matches 549 * one of the zone's logical interfaces. 550 * 551 * (x) IRE_LOCAL are handled a bit differently, since for all other entries 552 * in ire_ctable and IRE_INTERFACE, ire_src_addr is what can be used as source 553 * when sending packets using the IRE. For IRE_LOCAL ire_src_addr is the IP 554 * address of the zone itself (the destination). Since IRE_LOCAL is used 555 * for communication between zones, ip_wput_ire has special logic to set 556 * the right source address when sending using an IRE_LOCAL. 557 * 558 * Furthermore, when ip_restrict_interzone_loopback is set (the default), 559 * ire_cache_lookup restricts loopback using an IRE_LOCAL 560 * between zone to the case when L2 would have conceptually looped the packet 561 * back, i.e. the loopback which is required since neither Ethernet drivers 562 * nor Ethernet hardware loops them back. This is the case when the normal 563 * routes (ignoring IREs with different zoneids) would send out the packet on 564 * the same ill (or ill group) as the ill with which is IRE_LOCAL is 565 * associated. 566 * 567 * Multiple zones can share a common broadcast address; typically all zones 568 * share the 255.255.255.255 address. Incoming as well as locally originated 569 * broadcast packets must be dispatched to all the zones on the broadcast 570 * network. For directed broadcasts (e.g. 10.16.72.255) this is not trivial 571 * since some zones may not be on the 10.16.72/24 network. To handle this, each 572 * zone has its own set of IRE_BROADCAST entries; then, broadcast packets are 573 * sent to every zone that has an IRE_BROADCAST entry for the destination 574 * address on the input ill, see conn_wantpacket(). 575 * 576 * Applications in different zones can join the same multicast group address. 577 * For IPv4, group memberships are per-logical interface, so they're already 578 * inherently part of a zone. For IPv6, group memberships are per-physical 579 * interface, so we distinguish IPv6 group memberships based on group address, 580 * interface and zoneid. In both cases, received multicast packets are sent to 581 * every zone for which a group membership entry exists. On IPv6 we need to 582 * check that the target zone still has an address on the receiving physical 583 * interface; it could have been removed since the application issued the 584 * IPV6_JOIN_GROUP. 585 */ 586 587 /* 588 * Squeue Fanout flags: 589 * 0: No fanout. 590 * 1: Fanout across all squeues 591 */ 592 boolean_t ip_squeue_fanout = 0; 593 594 /* 595 * Maximum dups allowed per packet. 596 */ 597 uint_t ip_max_frag_dups = 10; 598 599 #define IS_SIMPLE_IPH(ipha) \ 600 ((ipha)->ipha_version_and_hdr_length == IP_SIMPLE_HDR_VERSION) 601 602 /* RFC1122 Conformance */ 603 #define IP_FORWARD_DEFAULT IP_FORWARD_NEVER 604 605 #define ILL_MAX_NAMELEN LIFNAMSIZ 606 607 static int conn_set_held_ipif(conn_t *, ipif_t **, ipif_t *); 608 609 static mblk_t *ip_wput_attach_llhdr(mblk_t *, ire_t *, ip_proc_t, uint32_t); 610 static void ip_ipsec_out_prepend(mblk_t *, mblk_t *, ill_t *); 611 612 static void icmp_frag_needed(queue_t *, mblk_t *, int, zoneid_t, 613 ip_stack_t *); 614 static void icmp_inbound(queue_t *, mblk_t *, boolean_t, ill_t *, int, 615 uint32_t, boolean_t, boolean_t, ill_t *, zoneid_t); 616 static ipaddr_t icmp_get_nexthop_addr(ipha_t *, ill_t *, zoneid_t, mblk_t *mp); 617 static boolean_t icmp_inbound_too_big(icmph_t *, ipha_t *, ill_t *, zoneid_t, 618 mblk_t *, int, ip_stack_t *); 619 static void icmp_inbound_error_fanout(queue_t *, ill_t *, mblk_t *, 620 icmph_t *, ipha_t *, int, int, boolean_t, boolean_t, 621 ill_t *, zoneid_t); 622 static void icmp_options_update(ipha_t *); 623 static void icmp_param_problem(queue_t *, mblk_t *, uint8_t, zoneid_t, 624 ip_stack_t *); 625 static void icmp_pkt(queue_t *, mblk_t *, void *, size_t, boolean_t, 626 zoneid_t zoneid, ip_stack_t *); 627 static mblk_t *icmp_pkt_err_ok(mblk_t *, ip_stack_t *); 628 static void icmp_redirect(ill_t *, mblk_t *); 629 static void icmp_send_redirect(queue_t *, mblk_t *, ipaddr_t, 630 ip_stack_t *); 631 632 static void ip_arp_news(queue_t *, mblk_t *); 633 static boolean_t ip_bind_insert_ire(mblk_t *, ire_t *, iulp_t *, 634 ip_stack_t *); 635 mblk_t *ip_dlpi_alloc(size_t, t_uscalar_t); 636 char *ip_dot_addr(ipaddr_t, char *); 637 mblk_t *ip_carve_mp(mblk_t **, ssize_t); 638 int ip_close(queue_t *, int); 639 static char *ip_dot_saddr(uchar_t *, char *); 640 static void ip_fanout_proto(queue_t *, mblk_t *, ill_t *, ipha_t *, uint_t, 641 boolean_t, boolean_t, ill_t *, zoneid_t); 642 static void ip_fanout_tcp(queue_t *, mblk_t *, ill_t *, ipha_t *, uint_t, 643 boolean_t, boolean_t, zoneid_t); 644 static void ip_fanout_udp(queue_t *, mblk_t *, ill_t *, ipha_t *, uint32_t, 645 boolean_t, uint_t, boolean_t, boolean_t, ill_t *, zoneid_t); 646 static void ip_lrput(queue_t *, mblk_t *); 647 static void ip_mrtun_forward(ire_t *, ill_t *, mblk_t *); 648 ipaddr_t ip_net_mask(ipaddr_t); 649 void ip_newroute(queue_t *, mblk_t *, ipaddr_t, ill_t *, conn_t *, 650 zoneid_t, ip_stack_t *); 651 static void ip_newroute_ipif(queue_t *, mblk_t *, ipif_t *, ipaddr_t, 652 conn_t *, uint32_t, zoneid_t, ip_opt_info_t *); 653 char *ip_nv_lookup(nv_t *, int); 654 static boolean_t ip_check_for_ipsec_opt(queue_t *, mblk_t *); 655 static int ip_param_get(queue_t *, mblk_t *, caddr_t, cred_t *); 656 static int ip_param_generic_get(queue_t *, mblk_t *, caddr_t, cred_t *); 657 static boolean_t ip_param_register(IDP *ndp, ipparam_t *, size_t, 658 ipndp_t *, size_t); 659 static int ip_param_set(queue_t *, mblk_t *, char *, caddr_t, cred_t *); 660 void ip_rput(queue_t *, mblk_t *); 661 static void ip_rput_dlpi_writer(ipsq_t *dummy_sq, queue_t *q, mblk_t *mp, 662 void *dummy_arg); 663 void ip_rput_forward(ire_t *, ipha_t *, mblk_t *, ill_t *); 664 static int ip_rput_forward_options(mblk_t *, ipha_t *, ire_t *, 665 ip_stack_t *); 666 static boolean_t ip_rput_local_options(queue_t *, mblk_t *, ipha_t *, 667 ire_t *, ip_stack_t *); 668 static boolean_t ip_rput_multimblk_ipoptions(queue_t *, ill_t *, 669 mblk_t *, ipha_t **, ipaddr_t *, ip_stack_t *); 670 static int ip_rput_options(queue_t *, mblk_t *, ipha_t *, ipaddr_t *, 671 ip_stack_t *); 672 static boolean_t ip_rput_fragment(queue_t *, mblk_t **, ipha_t *, uint32_t *, 673 uint16_t *); 674 int ip_snmp_get(queue_t *, mblk_t *); 675 static mblk_t *ip_snmp_get_mib2_ip(queue_t *, mblk_t *, 676 mib2_ipIfStatsEntry_t *, ip_stack_t *); 677 static mblk_t *ip_snmp_get_mib2_ip_traffic_stats(queue_t *, mblk_t *, 678 ip_stack_t *); 679 static mblk_t *ip_snmp_get_mib2_ip6(queue_t *, mblk_t *, ip_stack_t *); 680 static mblk_t *ip_snmp_get_mib2_icmp(queue_t *, mblk_t *, ip_stack_t *ipst); 681 static mblk_t *ip_snmp_get_mib2_icmp6(queue_t *, mblk_t *, ip_stack_t *ipst); 682 static mblk_t *ip_snmp_get_mib2_igmp(queue_t *, mblk_t *, ip_stack_t *ipst); 683 static mblk_t *ip_snmp_get_mib2_multi(queue_t *, mblk_t *, ip_stack_t *ipst); 684 static mblk_t *ip_snmp_get_mib2_ip_addr(queue_t *, mblk_t *, 685 ip_stack_t *ipst); 686 static mblk_t *ip_snmp_get_mib2_ip6_addr(queue_t *, mblk_t *, 687 ip_stack_t *ipst); 688 static mblk_t *ip_snmp_get_mib2_ip_group_src(queue_t *, mblk_t *, 689 ip_stack_t *ipst); 690 static mblk_t *ip_snmp_get_mib2_ip6_group_src(queue_t *, mblk_t *, 691 ip_stack_t *ipst); 692 static mblk_t *ip_snmp_get_mib2_ip_group_mem(queue_t *, mblk_t *, 693 ip_stack_t *ipst); 694 static mblk_t *ip_snmp_get_mib2_ip6_group_mem(queue_t *, mblk_t *, 695 ip_stack_t *ipst); 696 static mblk_t *ip_snmp_get_mib2_virt_multi(queue_t *, mblk_t *, 697 ip_stack_t *ipst); 698 static mblk_t *ip_snmp_get_mib2_multi_rtable(queue_t *, mblk_t *, 699 ip_stack_t *ipst); 700 static mblk_t *ip_snmp_get_mib2_ip_route_media(queue_t *, mblk_t *, 701 ip_stack_t *ipst); 702 static mblk_t *ip_snmp_get_mib2_ip6_route_media(queue_t *, mblk_t *, 703 ip_stack_t *ipst); 704 static void ip_snmp_get2_v4(ire_t *, iproutedata_t *); 705 static void ip_snmp_get2_v6_route(ire_t *, iproutedata_t *); 706 static int ip_snmp_get2_v6_media(nce_t *, iproutedata_t *); 707 int ip_snmp_set(queue_t *, int, int, uchar_t *, int); 708 static boolean_t ip_source_routed(ipha_t *, ip_stack_t *); 709 static boolean_t ip_source_route_included(ipha_t *); 710 static void ip_trash_ire_reclaim_stack(ip_stack_t *); 711 712 static void ip_wput_frag(ire_t *, mblk_t *, ip_pkt_t, uint32_t, uint32_t, 713 zoneid_t, ip_stack_t *); 714 static mblk_t *ip_wput_frag_copyhdr(uchar_t *, int, int, ip_stack_t *); 715 static void ip_wput_local_options(ipha_t *, ip_stack_t *); 716 static int ip_wput_options(queue_t *, mblk_t *, ipha_t *, boolean_t, 717 zoneid_t, ip_stack_t *); 718 719 static void conn_drain_init(ip_stack_t *); 720 static void conn_drain_fini(ip_stack_t *); 721 static void conn_drain_tail(conn_t *connp, boolean_t closing); 722 723 static void conn_walk_drain(ip_stack_t *); 724 static void conn_walk_fanout_table(connf_t *, uint_t, pfv_t, void *, 725 zoneid_t); 726 727 static void *ip_stack_init(netstackid_t stackid, netstack_t *ns); 728 static void ip_stack_shutdown(netstackid_t stackid, void *arg); 729 static void ip_stack_fini(netstackid_t stackid, void *arg); 730 731 static boolean_t conn_wantpacket(conn_t *, ill_t *, ipha_t *, int, 732 zoneid_t); 733 static void ip_arp_done(ipsq_t *dummy_sq, queue_t *q, mblk_t *mp, 734 void *dummy_arg); 735 736 static int ip_forward_set(queue_t *, mblk_t *, char *, caddr_t, cred_t *); 737 738 static int ip_multirt_apply_membership(int (*fn)(conn_t *, boolean_t, 739 ipaddr_t, ipaddr_t, uint_t *, mcast_record_t, ipaddr_t, mblk_t *), ire_t *, 740 conn_t *, boolean_t, ipaddr_t, mcast_record_t, ipaddr_t, mblk_t *); 741 static void ip_multirt_bad_mtu(ire_t *, uint32_t); 742 743 static int ip_cgtp_filter_get(queue_t *, mblk_t *, caddr_t, cred_t *); 744 static int ip_cgtp_filter_set(queue_t *, mblk_t *, char *, 745 caddr_t, cred_t *); 746 extern int ip_squeue_bind_set(queue_t *q, mblk_t *mp, char *value, 747 caddr_t cp, cred_t *cr); 748 extern int ip_squeue_profile_set(queue_t *, mblk_t *, char *, caddr_t, 749 cred_t *); 750 static int ip_input_proc_set(queue_t *q, mblk_t *mp, char *value, 751 caddr_t cp, cred_t *cr); 752 static int ip_int_set(queue_t *, mblk_t *, char *, caddr_t, 753 cred_t *); 754 static int ipmp_hook_emulation_set(queue_t *, mblk_t *, char *, caddr_t, 755 cred_t *); 756 static squeue_func_t ip_squeue_switch(int); 757 758 static void *ip_kstat_init(netstackid_t, ip_stack_t *); 759 static void ip_kstat_fini(netstackid_t, kstat_t *); 760 static int ip_kstat_update(kstat_t *kp, int rw); 761 static void *icmp_kstat_init(netstackid_t); 762 static void icmp_kstat_fini(netstackid_t, kstat_t *); 763 static int icmp_kstat_update(kstat_t *kp, int rw); 764 static void *ip_kstat2_init(netstackid_t, ip_stat_t *); 765 static void ip_kstat2_fini(netstackid_t, kstat_t *); 766 767 static int ip_conn_report(queue_t *, mblk_t *, caddr_t, cred_t *); 768 769 static mblk_t *ip_tcp_input(mblk_t *, ipha_t *, ill_t *, boolean_t, 770 ire_t *, mblk_t *, uint_t, queue_t *, ill_rx_ring_t *); 771 772 static void ip_rput_process_forward(queue_t *, mblk_t *, ire_t *, 773 ipha_t *, ill_t *, boolean_t); 774 ipaddr_t ip_g_all_ones = IP_HOST_MASK; 775 776 /* How long, in seconds, we allow frags to hang around. */ 777 #define IP_FRAG_TIMEOUT 60 778 779 /* 780 * Threshold which determines whether MDT should be used when 781 * generating IP fragments; payload size must be greater than 782 * this threshold for MDT to take place. 783 */ 784 #define IP_WPUT_FRAG_MDT_MIN 32768 785 786 /* Setable in /etc/system only */ 787 int ip_wput_frag_mdt_min = IP_WPUT_FRAG_MDT_MIN; 788 789 static long ip_rput_pullups; 790 int dohwcksum = 1; /* use h/w cksum if supported by the hardware */ 791 792 vmem_t *ip_minor_arena; 793 794 int ip_debug; 795 796 #ifdef DEBUG 797 uint32_t ipsechw_debug = 0; 798 #endif 799 800 /* 801 * Multirouting/CGTP stuff 802 */ 803 cgtp_filter_ops_t *ip_cgtp_filter_ops; /* CGTP hooks */ 804 int ip_cgtp_filter_rev = CGTP_FILTER_REV; /* CGTP hooks version */ 805 boolean_t ip_cgtp_filter; /* Enable/disable CGTP hooks */ 806 807 /* 808 * XXX following really should only be in a header. Would need more 809 * header and .c clean up first. 810 */ 811 extern optdb_obj_t ip_opt_obj; 812 813 ulong_t ip_squeue_enter_unbound = 0; 814 815 /* 816 * Named Dispatch Parameter Table. 817 * All of these are alterable, within the min/max values given, at run time. 818 */ 819 static ipparam_t lcl_param_arr[] = { 820 /* min max value name */ 821 { 0, 1, 0, "ip_respond_to_address_mask_broadcast"}, 822 { 0, 1, 1, "ip_respond_to_echo_broadcast"}, 823 { 0, 1, 1, "ip_respond_to_echo_multicast"}, 824 { 0, 1, 0, "ip_respond_to_timestamp"}, 825 { 0, 1, 0, "ip_respond_to_timestamp_broadcast"}, 826 { 0, 1, 1, "ip_send_redirects"}, 827 { 0, 1, 0, "ip_forward_directed_broadcasts"}, 828 { 0, 10, 0, "ip_debug"}, 829 { 0, 10, 0, "ip_mrtdebug"}, 830 { 5000, 999999999, 60000, "ip_ire_timer_interval" }, 831 { 60000, 999999999, 1200000, "ip_ire_arp_interval" }, 832 { 60000, 999999999, 60000, "ip_ire_redirect_interval" }, 833 { 1, 255, 255, "ip_def_ttl" }, 834 { 0, 1, 0, "ip_forward_src_routed"}, 835 { 0, 256, 32, "ip_wroff_extra" }, 836 { 5000, 999999999, 600000, "ip_ire_pathmtu_interval" }, 837 { 8, 65536, 64, "ip_icmp_return_data_bytes" }, 838 { 0, 1, 1, "ip_path_mtu_discovery" }, 839 { 0, 240, 30, "ip_ignore_delete_time" }, 840 { 0, 1, 0, "ip_ignore_redirect" }, 841 { 0, 1, 1, "ip_output_queue" }, 842 { 1, 254, 1, "ip_broadcast_ttl" }, 843 { 0, 99999, 100, "ip_icmp_err_interval" }, 844 { 1, 99999, 10, "ip_icmp_err_burst" }, 845 { 0, 999999999, 1000000, "ip_reass_queue_bytes" }, 846 { 0, 1, 0, "ip_strict_dst_multihoming" }, 847 { 1, MAX_ADDRS_PER_IF, 256, "ip_addrs_per_if"}, 848 { 0, 1, 0, "ipsec_override_persocket_policy" }, 849 { 0, 1, 1, "icmp_accept_clear_messages" }, 850 { 0, 1, 1, "igmp_accept_clear_messages" }, 851 { 2, 999999999, ND_DELAY_FIRST_PROBE_TIME, 852 "ip_ndp_delay_first_probe_time"}, 853 { 1, 999999999, ND_MAX_UNICAST_SOLICIT, 854 "ip_ndp_max_unicast_solicit"}, 855 { 1, 255, IPV6_MAX_HOPS, "ip6_def_hops" }, 856 { 8, IPV6_MIN_MTU, IPV6_MIN_MTU, "ip6_icmp_return_data_bytes" }, 857 { 0, 1, 0, "ip6_forward_src_routed"}, 858 { 0, 1, 1, "ip6_respond_to_echo_multicast"}, 859 { 0, 1, 1, "ip6_send_redirects"}, 860 { 0, 1, 0, "ip6_ignore_redirect" }, 861 { 0, 1, 0, "ip6_strict_dst_multihoming" }, 862 863 { 1, 8, 3, "ip_ire_reclaim_fraction" }, 864 865 { 0, 999999, 1000, "ipsec_policy_log_interval" }, 866 867 { 0, 1, 1, "pim_accept_clear_messages" }, 868 { 1000, 20000, 2000, "ip_ndp_unsolicit_interval" }, 869 { 1, 20, 3, "ip_ndp_unsolicit_count" }, 870 { 0, 1, 1, "ip6_ignore_home_address_opt" }, 871 { 0, 15, 0, "ip_policy_mask" }, 872 { 1000, 60000, 1000, "ip_multirt_resolution_interval" }, 873 { 0, 255, 1, "ip_multirt_ttl" }, 874 { 0, 1, 1, "ip_multidata_outbound" }, 875 { 0, 3600000, 300000, "ip_ndp_defense_interval" }, 876 { 0, 999999, 60*60*24, "ip_max_temp_idle" }, 877 { 0, 1000, 1, "ip_max_temp_defend" }, 878 { 0, 1000, 3, "ip_max_defend" }, 879 { 0, 999999, 30, "ip_defend_interval" }, 880 { 0, 3600000, 300000, "ip_dup_recovery" }, 881 { 0, 1, 1, "ip_restrict_interzone_loopback" }, 882 { 0, 1, 1, "ip_lso_outbound" }, 883 #ifdef DEBUG 884 { 0, 1, 0, "ip6_drop_inbound_icmpv6" }, 885 #else 886 { 0, 0, 0, "" }, 887 #endif 888 }; 889 890 /* 891 * Extended NDP table 892 * The addresses for the first two are filled in to be ips_ip_g_forward 893 * and ips_ipv6_forward at init time. 894 */ 895 static ipndp_t lcl_ndp_arr[] = { 896 /* getf setf data name */ 897 #define IPNDP_IP_FORWARDING_OFFSET 0 898 { ip_param_generic_get, ip_forward_set, NULL, 899 "ip_forwarding" }, 900 #define IPNDP_IP6_FORWARDING_OFFSET 1 901 { ip_param_generic_get, ip_forward_set, NULL, 902 "ip6_forwarding" }, 903 { ip_ill_report, NULL, NULL, 904 "ip_ill_status" }, 905 { ip_ipif_report, NULL, NULL, 906 "ip_ipif_status" }, 907 { ip_ire_report, NULL, NULL, 908 "ipv4_ire_status" }, 909 { ip_ire_report_mrtun, NULL, NULL, 910 "ipv4_mrtun_ire_status" }, 911 { ip_ire_report_srcif, NULL, NULL, 912 "ipv4_srcif_ire_status" }, 913 { ip_ire_report_v6, NULL, NULL, 914 "ipv6_ire_status" }, 915 { ip_conn_report, NULL, NULL, 916 "ip_conn_status" }, 917 { nd_get_long, nd_set_long, (caddr_t)&ip_rput_pullups, 918 "ip_rput_pullups" }, 919 { ndp_report, NULL, NULL, 920 "ip_ndp_cache_report" }, 921 { ip_srcid_report, NULL, NULL, 922 "ip_srcid_status" }, 923 { ip_param_generic_get, ip_squeue_profile_set, 924 (caddr_t)&ip_squeue_profile, "ip_squeue_profile" }, 925 { ip_param_generic_get, ip_squeue_bind_set, 926 (caddr_t)&ip_squeue_bind, "ip_squeue_bind" }, 927 { ip_param_generic_get, ip_input_proc_set, 928 (caddr_t)&ip_squeue_enter, "ip_squeue_enter" }, 929 { ip_param_generic_get, ip_int_set, 930 (caddr_t)&ip_squeue_fanout, "ip_squeue_fanout" }, 931 #define IPNDP_CGTP_FILTER_OFFSET 16 932 { ip_cgtp_filter_get, ip_cgtp_filter_set, NULL, 933 "ip_cgtp_filter" }, 934 { ip_param_generic_get, ip_int_set, 935 (caddr_t)&ip_soft_rings_cnt, "ip_soft_rings_cnt" }, 936 #define IPNDP_IPMP_HOOK_OFFSET 18 937 { ip_param_generic_get, ipmp_hook_emulation_set, NULL, 938 "ipmp_hook_emulation" }, 939 }; 940 941 /* 942 * Table of IP ioctls encoding the various properties of the ioctl and 943 * indexed based on the last byte of the ioctl command. Occasionally there 944 * is a clash, and there is more than 1 ioctl with the same last byte. 945 * In such a case 1 ioctl is encoded in the ndx table and the remaining 946 * ioctls are encoded in the misc table. An entry in the ndx table is 947 * retrieved by indexing on the last byte of the ioctl command and comparing 948 * the ioctl command with the value in the ndx table. In the event of a 949 * mismatch the misc table is then searched sequentially for the desired 950 * ioctl command. 951 * 952 * Entry: <command> <copyin_size> <flags> <cmd_type> <function> <restart_func> 953 */ 954 ip_ioctl_cmd_t ip_ndx_ioctl_table[] = { 955 /* 000 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 956 /* 001 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 957 /* 002 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 958 /* 003 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 959 /* 004 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 960 /* 005 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 961 /* 006 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 962 /* 007 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 963 /* 008 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 964 /* 009 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 965 966 /* 010 */ { SIOCADDRT, sizeof (struct rtentry), IPI_PRIV, 967 MISC_CMD, ip_siocaddrt, NULL }, 968 /* 011 */ { SIOCDELRT, sizeof (struct rtentry), IPI_PRIV, 969 MISC_CMD, ip_siocdelrt, NULL }, 970 971 /* 012 */ { SIOCSIFADDR, sizeof (struct ifreq), IPI_PRIV | IPI_WR, 972 IF_CMD, ip_sioctl_addr, ip_sioctl_addr_restart }, 973 /* 013 */ { SIOCGIFADDR, sizeof (struct ifreq), IPI_GET_CMD | IPI_REPL, 974 IF_CMD, ip_sioctl_get_addr, NULL }, 975 976 /* 014 */ { SIOCSIFDSTADDR, sizeof (struct ifreq), IPI_PRIV | IPI_WR, 977 IF_CMD, ip_sioctl_dstaddr, ip_sioctl_dstaddr_restart }, 978 /* 015 */ { SIOCGIFDSTADDR, sizeof (struct ifreq), 979 IPI_GET_CMD | IPI_REPL, 980 IF_CMD, ip_sioctl_get_dstaddr, NULL }, 981 982 /* 016 */ { SIOCSIFFLAGS, sizeof (struct ifreq), 983 IPI_PRIV | IPI_WR | IPI_REPL, 984 IF_CMD, ip_sioctl_flags, ip_sioctl_flags_restart }, 985 /* 017 */ { SIOCGIFFLAGS, sizeof (struct ifreq), 986 IPI_MODOK | IPI_GET_CMD | IPI_REPL, 987 IF_CMD, ip_sioctl_get_flags, NULL }, 988 989 /* 018 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 990 /* 019 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 991 992 /* copyin size cannot be coded for SIOCGIFCONF */ 993 /* 020 */ { O_SIOCGIFCONF, 0, IPI_GET_CMD | IPI_REPL, 994 MISC_CMD, ip_sioctl_get_ifconf, NULL }, 995 996 /* 021 */ { SIOCSIFMTU, sizeof (struct ifreq), IPI_PRIV | IPI_WR, 997 IF_CMD, ip_sioctl_mtu, NULL }, 998 /* 022 */ { SIOCGIFMTU, sizeof (struct ifreq), IPI_GET_CMD | IPI_REPL, 999 IF_CMD, ip_sioctl_get_mtu, NULL }, 1000 /* 023 */ { SIOCGIFBRDADDR, sizeof (struct ifreq), 1001 IPI_GET_CMD | IPI_REPL, 1002 IF_CMD, ip_sioctl_get_brdaddr, NULL }, 1003 /* 024 */ { SIOCSIFBRDADDR, sizeof (struct ifreq), IPI_PRIV | IPI_WR, 1004 IF_CMD, ip_sioctl_brdaddr, NULL }, 1005 /* 025 */ { SIOCGIFNETMASK, sizeof (struct ifreq), 1006 IPI_GET_CMD | IPI_REPL, 1007 IF_CMD, ip_sioctl_get_netmask, NULL }, 1008 /* 026 */ { SIOCSIFNETMASK, sizeof (struct ifreq), IPI_PRIV | IPI_WR, 1009 IF_CMD, ip_sioctl_netmask, ip_sioctl_netmask_restart }, 1010 /* 027 */ { SIOCGIFMETRIC, sizeof (struct ifreq), 1011 IPI_GET_CMD | IPI_REPL, 1012 IF_CMD, ip_sioctl_get_metric, NULL }, 1013 /* 028 */ { SIOCSIFMETRIC, sizeof (struct ifreq), IPI_PRIV, 1014 IF_CMD, ip_sioctl_metric, NULL }, 1015 /* 029 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1016 1017 /* See 166-168 below for extended SIOC*XARP ioctls */ 1018 /* 030 */ { SIOCSARP, sizeof (struct arpreq), IPI_PRIV, 1019 MISC_CMD, ip_sioctl_arp, NULL }, 1020 /* 031 */ { SIOCGARP, sizeof (struct arpreq), IPI_GET_CMD | IPI_REPL, 1021 MISC_CMD, ip_sioctl_arp, NULL }, 1022 /* 032 */ { SIOCDARP, sizeof (struct arpreq), IPI_PRIV, 1023 MISC_CMD, ip_sioctl_arp, NULL }, 1024 1025 /* 033 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1026 /* 034 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1027 /* 035 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1028 /* 036 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1029 /* 037 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1030 /* 038 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1031 /* 039 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1032 /* 040 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1033 /* 041 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1034 /* 042 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1035 /* 043 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1036 /* 044 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1037 /* 045 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1038 /* 046 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1039 /* 047 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1040 /* 048 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1041 /* 049 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1042 /* 050 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1043 /* 051 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1044 /* 052 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1045 /* 053 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1046 1047 /* 054 */ { IF_UNITSEL, sizeof (int), IPI_PRIV | IPI_WR | IPI_MODOK, 1048 MISC_CMD, if_unitsel, if_unitsel_restart }, 1049 1050 /* 055 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1051 /* 056 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1052 /* 057 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1053 /* 058 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1054 /* 059 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1055 /* 060 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1056 /* 061 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1057 /* 062 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1058 /* 063 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1059 /* 064 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1060 /* 065 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1061 /* 066 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1062 /* 067 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1063 /* 068 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1064 /* 069 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1065 /* 070 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1066 /* 071 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1067 /* 072 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1068 1069 /* 073 */ { SIOCSIFNAME, sizeof (struct ifreq), 1070 IPI_PRIV | IPI_WR | IPI_MODOK, 1071 IF_CMD, ip_sioctl_sifname, NULL }, 1072 1073 /* 074 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1074 /* 075 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1075 /* 076 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1076 /* 077 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1077 /* 078 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1078 /* 079 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1079 /* 080 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1080 /* 081 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1081 /* 082 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1082 /* 083 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1083 /* 084 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1084 /* 085 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1085 /* 086 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1086 1087 /* 087 */ { SIOCGIFNUM, sizeof (int), IPI_GET_CMD | IPI_REPL, 1088 MISC_CMD, ip_sioctl_get_ifnum, NULL }, 1089 /* 088 */ { SIOCGIFMUXID, sizeof (struct ifreq), IPI_GET_CMD | IPI_REPL, 1090 IF_CMD, ip_sioctl_get_muxid, NULL }, 1091 /* 089 */ { SIOCSIFMUXID, sizeof (struct ifreq), 1092 IPI_PRIV | IPI_WR | IPI_REPL, 1093 IF_CMD, ip_sioctl_muxid, NULL }, 1094 1095 /* Both if and lif variants share same func */ 1096 /* 090 */ { SIOCGIFINDEX, sizeof (struct ifreq), IPI_GET_CMD | IPI_REPL, 1097 IF_CMD, ip_sioctl_get_lifindex, NULL }, 1098 /* Both if and lif variants share same func */ 1099 /* 091 */ { SIOCSIFINDEX, sizeof (struct ifreq), 1100 IPI_PRIV | IPI_WR | IPI_REPL, 1101 IF_CMD, ip_sioctl_slifindex, NULL }, 1102 1103 /* copyin size cannot be coded for SIOCGIFCONF */ 1104 /* 092 */ { SIOCGIFCONF, 0, IPI_GET_CMD | IPI_REPL, 1105 MISC_CMD, ip_sioctl_get_ifconf, NULL }, 1106 /* 093 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1107 /* 094 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1108 /* 095 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1109 /* 096 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1110 /* 097 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1111 /* 098 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1112 /* 099 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1113 /* 100 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1114 /* 101 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1115 /* 102 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1116 /* 103 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1117 /* 104 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1118 /* 105 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1119 /* 106 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1120 /* 107 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1121 /* 108 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1122 /* 109 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1123 1124 /* 110 */ { SIOCLIFREMOVEIF, sizeof (struct lifreq), 1125 IPI_PRIV | IPI_WR | IPI_REPL, 1126 LIF_CMD, ip_sioctl_removeif, 1127 ip_sioctl_removeif_restart }, 1128 /* 111 */ { SIOCLIFADDIF, sizeof (struct lifreq), 1129 IPI_GET_CMD | IPI_PRIV | IPI_WR | IPI_REPL, 1130 LIF_CMD, ip_sioctl_addif, NULL }, 1131 #define SIOCLIFADDR_NDX 112 1132 /* 112 */ { SIOCSLIFADDR, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1133 LIF_CMD, ip_sioctl_addr, ip_sioctl_addr_restart }, 1134 /* 113 */ { SIOCGLIFADDR, sizeof (struct lifreq), 1135 IPI_GET_CMD | IPI_REPL, 1136 LIF_CMD, ip_sioctl_get_addr, NULL }, 1137 /* 114 */ { SIOCSLIFDSTADDR, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1138 LIF_CMD, ip_sioctl_dstaddr, ip_sioctl_dstaddr_restart }, 1139 /* 115 */ { SIOCGLIFDSTADDR, sizeof (struct lifreq), 1140 IPI_GET_CMD | IPI_REPL, 1141 LIF_CMD, ip_sioctl_get_dstaddr, NULL }, 1142 /* 116 */ { SIOCSLIFFLAGS, sizeof (struct lifreq), 1143 IPI_PRIV | IPI_WR | IPI_REPL, 1144 LIF_CMD, ip_sioctl_flags, ip_sioctl_flags_restart }, 1145 /* 117 */ { SIOCGLIFFLAGS, sizeof (struct lifreq), 1146 IPI_GET_CMD | IPI_MODOK | IPI_REPL, 1147 LIF_CMD, ip_sioctl_get_flags, NULL }, 1148 1149 /* 118 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1150 /* 119 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1151 1152 /* 120 */ { O_SIOCGLIFCONF, 0, IPI_GET_CMD, MISC_CMD | IPI_REPL, 1153 ip_sioctl_get_lifconf, NULL }, 1154 /* 121 */ { SIOCSLIFMTU, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1155 LIF_CMD, ip_sioctl_mtu, NULL }, 1156 /* 122 */ { SIOCGLIFMTU, sizeof (struct lifreq), IPI_GET_CMD | IPI_REPL, 1157 LIF_CMD, ip_sioctl_get_mtu, NULL }, 1158 /* 123 */ { SIOCGLIFBRDADDR, sizeof (struct lifreq), 1159 IPI_GET_CMD | IPI_REPL, 1160 LIF_CMD, ip_sioctl_get_brdaddr, NULL }, 1161 /* 124 */ { SIOCSLIFBRDADDR, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1162 LIF_CMD, ip_sioctl_brdaddr, NULL }, 1163 /* 125 */ { SIOCGLIFNETMASK, sizeof (struct lifreq), 1164 IPI_GET_CMD | IPI_REPL, 1165 LIF_CMD, ip_sioctl_get_netmask, NULL }, 1166 /* 126 */ { SIOCSLIFNETMASK, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1167 LIF_CMD, ip_sioctl_netmask, ip_sioctl_netmask_restart }, 1168 /* 127 */ { SIOCGLIFMETRIC, sizeof (struct lifreq), 1169 IPI_GET_CMD | IPI_REPL, 1170 LIF_CMD, ip_sioctl_get_metric, NULL }, 1171 /* 128 */ { SIOCSLIFMETRIC, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1172 LIF_CMD, ip_sioctl_metric, NULL }, 1173 /* 129 */ { SIOCSLIFNAME, sizeof (struct lifreq), 1174 IPI_PRIV | IPI_WR | IPI_MODOK | IPI_REPL, 1175 LIF_CMD, ip_sioctl_slifname, 1176 ip_sioctl_slifname_restart }, 1177 1178 /* 130 */ { SIOCGLIFNUM, sizeof (struct lifnum), IPI_GET_CMD | IPI_REPL, 1179 MISC_CMD, ip_sioctl_get_lifnum, NULL }, 1180 /* 131 */ { SIOCGLIFMUXID, sizeof (struct lifreq), 1181 IPI_GET_CMD | IPI_REPL, 1182 LIF_CMD, ip_sioctl_get_muxid, NULL }, 1183 /* 132 */ { SIOCSLIFMUXID, sizeof (struct lifreq), 1184 IPI_PRIV | IPI_WR | IPI_REPL, 1185 LIF_CMD, ip_sioctl_muxid, NULL }, 1186 /* 133 */ { SIOCGLIFINDEX, sizeof (struct lifreq), 1187 IPI_GET_CMD | IPI_REPL, 1188 LIF_CMD, ip_sioctl_get_lifindex, 0 }, 1189 /* 134 */ { SIOCSLIFINDEX, sizeof (struct lifreq), 1190 IPI_PRIV | IPI_WR | IPI_REPL, 1191 LIF_CMD, ip_sioctl_slifindex, 0 }, 1192 /* 135 */ { SIOCSLIFTOKEN, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1193 LIF_CMD, ip_sioctl_token, NULL }, 1194 /* 136 */ { SIOCGLIFTOKEN, sizeof (struct lifreq), 1195 IPI_GET_CMD | IPI_REPL, 1196 LIF_CMD, ip_sioctl_get_token, NULL }, 1197 /* 137 */ { SIOCSLIFSUBNET, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1198 LIF_CMD, ip_sioctl_subnet, ip_sioctl_subnet_restart }, 1199 /* 138 */ { SIOCGLIFSUBNET, sizeof (struct lifreq), 1200 IPI_GET_CMD | IPI_REPL, 1201 LIF_CMD, ip_sioctl_get_subnet, NULL }, 1202 /* 139 */ { SIOCSLIFLNKINFO, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1203 LIF_CMD, ip_sioctl_lnkinfo, NULL }, 1204 1205 /* 140 */ { SIOCGLIFLNKINFO, sizeof (struct lifreq), 1206 IPI_GET_CMD | IPI_REPL, 1207 LIF_CMD, ip_sioctl_get_lnkinfo, NULL }, 1208 /* 141 */ { SIOCLIFDELND, sizeof (struct lifreq), IPI_PRIV, 1209 LIF_CMD, ip_siocdelndp_v6, NULL }, 1210 /* 142 */ { SIOCLIFGETND, sizeof (struct lifreq), IPI_GET_CMD, 1211 LIF_CMD, ip_siocqueryndp_v6, NULL }, 1212 /* 143 */ { SIOCLIFSETND, sizeof (struct lifreq), IPI_PRIV, 1213 LIF_CMD, ip_siocsetndp_v6, NULL }, 1214 /* 144 */ { SIOCTMYADDR, sizeof (struct sioc_addrreq), IPI_GET_CMD, 1215 MISC_CMD, ip_sioctl_tmyaddr, NULL }, 1216 /* 145 */ { SIOCTONLINK, sizeof (struct sioc_addrreq), IPI_GET_CMD, 1217 MISC_CMD, ip_sioctl_tonlink, NULL }, 1218 /* 146 */ { SIOCTMYSITE, sizeof (struct sioc_addrreq), 0, 1219 MISC_CMD, ip_sioctl_tmysite, NULL }, 1220 /* 147 */ { SIOCGTUNPARAM, sizeof (struct iftun_req), IPI_REPL, 1221 TUN_CMD, ip_sioctl_tunparam, NULL }, 1222 /* 148 */ { SIOCSTUNPARAM, sizeof (struct iftun_req), 1223 IPI_PRIV | IPI_WR, 1224 TUN_CMD, ip_sioctl_tunparam, NULL }, 1225 1226 /* IPSECioctls handled in ip_sioctl_copyin_setup itself */ 1227 /* 149 */ { SIOCFIPSECONFIG, 0, IPI_PRIV, MISC_CMD, NULL, NULL }, 1228 /* 150 */ { SIOCSIPSECONFIG, 0, IPI_PRIV, MISC_CMD, NULL, NULL }, 1229 /* 151 */ { SIOCDIPSECONFIG, 0, IPI_PRIV, MISC_CMD, NULL, NULL }, 1230 /* 152 */ { SIOCLIPSECONFIG, 0, IPI_PRIV, MISC_CMD, NULL, NULL }, 1231 1232 /* 153 */ { SIOCLIFFAILOVER, sizeof (struct lifreq), 1233 IPI_PRIV | IPI_WR | IPI_REPL, 1234 LIF_CMD, ip_sioctl_move, ip_sioctl_move }, 1235 /* 154 */ { SIOCLIFFAILBACK, sizeof (struct lifreq), 1236 IPI_PRIV | IPI_WR | IPI_REPL, 1237 LIF_CMD, ip_sioctl_move, ip_sioctl_move }, 1238 /* 155 */ { SIOCSLIFGROUPNAME, sizeof (struct lifreq), 1239 IPI_PRIV | IPI_WR, 1240 LIF_CMD, ip_sioctl_groupname, ip_sioctl_groupname }, 1241 /* 156 */ { SIOCGLIFGROUPNAME, sizeof (struct lifreq), 1242 IPI_GET_CMD | IPI_REPL, 1243 LIF_CMD, ip_sioctl_get_groupname, NULL }, 1244 /* 157 */ { SIOCGLIFOINDEX, sizeof (struct lifreq), 1245 IPI_GET_CMD | IPI_REPL, 1246 LIF_CMD, ip_sioctl_get_oindex, NULL }, 1247 1248 /* Leave 158-160 unused; used to be SIOC*IFARP ioctls */ 1249 /* 158 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1250 /* 159 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1251 /* 160 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1252 1253 /* 161 */ { SIOCSLIFOINDEX, sizeof (struct lifreq), IPI_PRIV | IPI_WR, 1254 LIF_CMD, ip_sioctl_slifoindex, NULL }, 1255 1256 /* These are handled in ip_sioctl_copyin_setup itself */ 1257 /* 162 */ { SIOCGIP6ADDRPOLICY, 0, IPI_NULL_BCONT, 1258 MISC_CMD, NULL, NULL }, 1259 /* 163 */ { SIOCSIP6ADDRPOLICY, 0, IPI_PRIV | IPI_NULL_BCONT, 1260 MISC_CMD, NULL, NULL }, 1261 /* 164 */ { SIOCGDSTINFO, 0, IPI_GET_CMD, MISC_CMD, NULL, NULL }, 1262 1263 /* 165 */ { SIOCGLIFCONF, 0, IPI_GET_CMD, MISC_CMD | IPI_REPL, 1264 ip_sioctl_get_lifconf, NULL }, 1265 1266 /* 166 */ { SIOCSXARP, sizeof (struct xarpreq), IPI_PRIV, 1267 MISC_CMD, ip_sioctl_xarp, NULL }, 1268 /* 167 */ { SIOCGXARP, sizeof (struct xarpreq), IPI_GET_CMD | IPI_REPL, 1269 MISC_CMD, ip_sioctl_xarp, NULL }, 1270 /* 168 */ { SIOCDXARP, sizeof (struct xarpreq), IPI_PRIV, 1271 MISC_CMD, ip_sioctl_xarp, NULL }, 1272 1273 /* SIOCPOPSOCKFS is not handled by IP */ 1274 /* 169 */ { IPI_DONTCARE /* SIOCPOPSOCKFS */, 0, 0, 0, NULL, NULL }, 1275 1276 /* 170 */ { SIOCGLIFZONE, sizeof (struct lifreq), 1277 IPI_GET_CMD | IPI_REPL, 1278 LIF_CMD, ip_sioctl_get_lifzone, NULL }, 1279 /* 171 */ { SIOCSLIFZONE, sizeof (struct lifreq), 1280 IPI_PRIV | IPI_WR | IPI_REPL, 1281 LIF_CMD, ip_sioctl_slifzone, 1282 ip_sioctl_slifzone_restart }, 1283 /* 172-174 are SCTP ioctls and not handled by IP */ 1284 /* 172 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1285 /* 173 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1286 /* 174 */ { IPI_DONTCARE, 0, 0, 0, NULL, NULL }, 1287 /* 175 */ { SIOCGLIFUSESRC, sizeof (struct lifreq), 1288 IPI_GET_CMD, LIF_CMD, 1289 ip_sioctl_get_lifusesrc, 0 }, 1290 /* 176 */ { SIOCSLIFUSESRC, sizeof (struct lifreq), 1291 IPI_PRIV | IPI_WR, 1292 LIF_CMD, ip_sioctl_slifusesrc, 1293 NULL }, 1294 /* 177 */ { SIOCGLIFSRCOF, 0, IPI_GET_CMD, MISC_CMD, 1295 ip_sioctl_get_lifsrcof, NULL }, 1296 /* 178 */ { SIOCGMSFILTER, sizeof (struct group_filter), IPI_GET_CMD, 1297 MISC_CMD, ip_sioctl_msfilter, NULL }, 1298 /* 179 */ { SIOCSMSFILTER, sizeof (struct group_filter), IPI_WR, 1299 MISC_CMD, ip_sioctl_msfilter, NULL }, 1300 /* 180 */ { SIOCGIPMSFILTER, sizeof (struct ip_msfilter), IPI_GET_CMD, 1301 MISC_CMD, ip_sioctl_msfilter, NULL }, 1302 /* 181 */ { SIOCSIPMSFILTER, sizeof (struct ip_msfilter), IPI_WR, 1303 MISC_CMD, ip_sioctl_msfilter, NULL }, 1304 /* 182 */ { SIOCSIPMPFAILBACK, sizeof (int), IPI_PRIV, MISC_CMD, 1305 ip_sioctl_set_ipmpfailback, NULL } 1306 }; 1307 1308 int ip_ndx_ioctl_count = sizeof (ip_ndx_ioctl_table) / sizeof (ip_ioctl_cmd_t); 1309 1310 ip_ioctl_cmd_t ip_misc_ioctl_table[] = { 1311 { OSIOCGTUNPARAM, sizeof (struct old_iftun_req), 1312 IPI_GET_CMD | IPI_REPL, TUN_CMD, ip_sioctl_tunparam, NULL }, 1313 { OSIOCSTUNPARAM, sizeof (struct old_iftun_req), IPI_PRIV | IPI_WR, 1314 TUN_CMD, ip_sioctl_tunparam, NULL }, 1315 { I_LINK, 0, IPI_PRIV | IPI_WR | IPI_PASS_DOWN, 0, NULL, NULL }, 1316 { I_UNLINK, 0, IPI_PRIV | IPI_WR | IPI_PASS_DOWN, 0, NULL, NULL }, 1317 { I_PLINK, 0, IPI_PRIV | IPI_WR | IPI_PASS_DOWN, 0, NULL, NULL }, 1318 { I_PUNLINK, 0, IPI_PRIV | IPI_WR | IPI_PASS_DOWN, 0, NULL, NULL }, 1319 { ND_GET, 0, IPI_PASS_DOWN, 0, NULL, NULL }, 1320 { ND_SET, 0, IPI_PRIV | IPI_WR | IPI_PASS_DOWN, 0, NULL, NULL }, 1321 { IP_IOCTL, 0, 0, 0, NULL, NULL }, 1322 { SIOCGETVIFCNT, sizeof (struct sioc_vif_req), IPI_REPL | IPI_GET_CMD, 1323 MISC_CMD, mrt_ioctl}, 1324 { SIOCGETSGCNT, sizeof (struct sioc_sg_req), IPI_REPL | IPI_GET_CMD, 1325 MISC_CMD, mrt_ioctl}, 1326 { SIOCGETLSGCNT, sizeof (struct sioc_lsg_req), IPI_REPL | IPI_GET_CMD, 1327 MISC_CMD, mrt_ioctl} 1328 }; 1329 1330 int ip_misc_ioctl_count = 1331 sizeof (ip_misc_ioctl_table) / sizeof (ip_ioctl_cmd_t); 1332 1333 int conn_drain_nthreads; /* Number of drainers reqd. */ 1334 /* Settable in /etc/system */ 1335 /* Defined in ip_ire.c */ 1336 extern uint32_t ip_ire_max_bucket_cnt, ip6_ire_max_bucket_cnt; 1337 extern uint32_t ip_ire_min_bucket_cnt, ip6_ire_min_bucket_cnt; 1338 extern uint32_t ip_ire_mem_ratio, ip_ire_cpu_ratio; 1339 1340 static nv_t ire_nv_arr[] = { 1341 { IRE_BROADCAST, "BROADCAST" }, 1342 { IRE_LOCAL, "LOCAL" }, 1343 { IRE_LOOPBACK, "LOOPBACK" }, 1344 { IRE_CACHE, "CACHE" }, 1345 { IRE_DEFAULT, "DEFAULT" }, 1346 { IRE_PREFIX, "PREFIX" }, 1347 { IRE_IF_NORESOLVER, "IF_NORESOL" }, 1348 { IRE_IF_RESOLVER, "IF_RESOLV" }, 1349 { IRE_HOST, "HOST" }, 1350 { 0 } 1351 }; 1352 1353 nv_t *ire_nv_tbl = ire_nv_arr; 1354 1355 /* Defined in ip_netinfo.c */ 1356 extern ddi_taskq_t *eventq_queue_nic; 1357 1358 /* Simple ICMP IP Header Template */ 1359 static ipha_t icmp_ipha = { 1360 IP_SIMPLE_HDR_VERSION, 0, 0, 0, 0, 0, IPPROTO_ICMP 1361 }; 1362 1363 struct module_info ip_mod_info = { 1364 IP_MOD_ID, IP_MOD_NAME, 1, INFPSZ, 65536, 1024 1365 }; 1366 1367 /* 1368 * Duplicate static symbols within a module confuses mdb; so we avoid the 1369 * problem by making the symbols here distinct from those in udp.c. 1370 */ 1371 1372 static struct qinit iprinit = { 1373 (pfi_t)ip_rput, NULL, ip_open, ip_close, NULL, 1374 &ip_mod_info 1375 }; 1376 1377 static struct qinit ipwinit = { 1378 (pfi_t)ip_wput, (pfi_t)ip_wsrv, ip_open, ip_close, NULL, 1379 &ip_mod_info 1380 }; 1381 1382 static struct qinit iplrinit = { 1383 (pfi_t)ip_lrput, NULL, ip_open, ip_close, NULL, 1384 &ip_mod_info 1385 }; 1386 1387 static struct qinit iplwinit = { 1388 (pfi_t)ip_lwput, NULL, ip_open, ip_close, NULL, 1389 &ip_mod_info 1390 }; 1391 1392 struct streamtab ipinfo = { 1393 &iprinit, &ipwinit, &iplrinit, &iplwinit 1394 }; 1395 1396 #ifdef DEBUG 1397 static boolean_t skip_sctp_cksum = B_FALSE; 1398 #endif 1399 1400 /* 1401 * Prepend the zoneid using an ipsec_out_t for later use by functions like 1402 * ip_rput_v6(), ip_output(), etc. If the message 1403 * block already has a M_CTL at the front of it, then simply set the zoneid 1404 * appropriately. 1405 */ 1406 mblk_t * 1407 ip_prepend_zoneid(mblk_t *mp, zoneid_t zoneid, ip_stack_t *ipst) 1408 { 1409 mblk_t *first_mp; 1410 ipsec_out_t *io; 1411 1412 ASSERT(zoneid != ALL_ZONES); 1413 if (mp->b_datap->db_type == M_CTL) { 1414 io = (ipsec_out_t *)mp->b_rptr; 1415 ASSERT(io->ipsec_out_type == IPSEC_OUT); 1416 io->ipsec_out_zoneid = zoneid; 1417 return (mp); 1418 } 1419 1420 first_mp = ipsec_alloc_ipsec_out(ipst->ips_netstack); 1421 if (first_mp == NULL) 1422 return (NULL); 1423 io = (ipsec_out_t *)first_mp->b_rptr; 1424 /* This is not a secure packet */ 1425 io->ipsec_out_secure = B_FALSE; 1426 io->ipsec_out_zoneid = zoneid; 1427 first_mp->b_cont = mp; 1428 return (first_mp); 1429 } 1430 1431 /* 1432 * Copy an M_CTL-tagged message, preserving reference counts appropriately. 1433 */ 1434 mblk_t * 1435 ip_copymsg(mblk_t *mp) 1436 { 1437 mblk_t *nmp; 1438 ipsec_info_t *in; 1439 1440 if (mp->b_datap->db_type != M_CTL) 1441 return (copymsg(mp)); 1442 1443 in = (ipsec_info_t *)mp->b_rptr; 1444 1445 /* 1446 * Note that M_CTL is also used for delivering ICMP error messages 1447 * upstream to transport layers. 1448 */ 1449 if (in->ipsec_info_type != IPSEC_OUT && 1450 in->ipsec_info_type != IPSEC_IN) 1451 return (copymsg(mp)); 1452 1453 nmp = copymsg(mp->b_cont); 1454 1455 if (in->ipsec_info_type == IPSEC_OUT) { 1456 return (ipsec_out_tag(mp, nmp, 1457 ((ipsec_out_t *)in)->ipsec_out_ns)); 1458 } else { 1459 return (ipsec_in_tag(mp, nmp, 1460 ((ipsec_in_t *)in)->ipsec_in_ns)); 1461 } 1462 } 1463 1464 /* Generate an ICMP fragmentation needed message. */ 1465 static void 1466 icmp_frag_needed(queue_t *q, mblk_t *mp, int mtu, zoneid_t zoneid, 1467 ip_stack_t *ipst) 1468 { 1469 icmph_t icmph; 1470 mblk_t *first_mp; 1471 boolean_t mctl_present; 1472 1473 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 1474 1475 if (!(mp = icmp_pkt_err_ok(mp, ipst))) { 1476 if (mctl_present) 1477 freeb(first_mp); 1478 return; 1479 } 1480 1481 bzero(&icmph, sizeof (icmph_t)); 1482 icmph.icmph_type = ICMP_DEST_UNREACHABLE; 1483 icmph.icmph_code = ICMP_FRAGMENTATION_NEEDED; 1484 icmph.icmph_du_mtu = htons((uint16_t)mtu); 1485 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutFragNeeded); 1486 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDestUnreachs); 1487 icmp_pkt(q, first_mp, &icmph, sizeof (icmph_t), mctl_present, zoneid, 1488 ipst); 1489 } 1490 1491 /* 1492 * icmp_inbound deals with ICMP messages in the following ways. 1493 * 1494 * 1) It needs to send a reply back and possibly delivering it 1495 * to the "interested" upper clients. 1496 * 2) It needs to send it to the upper clients only. 1497 * 3) It needs to change some values in IP only. 1498 * 4) It needs to change some values in IP and upper layers e.g TCP. 1499 * 1500 * We need to accomodate icmp messages coming in clear until we get 1501 * everything secure from the wire. If icmp_accept_clear_messages 1502 * is zero we check with the global policy and act accordingly. If 1503 * it is non-zero, we accept the message without any checks. But 1504 * *this does not mean* that this will be delivered to the upper 1505 * clients. By accepting we might send replies back, change our MTU 1506 * value etc. but delivery to the ULP/clients depends on their policy 1507 * dispositions. 1508 * 1509 * We handle the above 4 cases in the context of IPSEC in the 1510 * following way : 1511 * 1512 * 1) Send the reply back in the same way as the request came in. 1513 * If it came in encrypted, it goes out encrypted. If it came in 1514 * clear, it goes out in clear. Thus, this will prevent chosen 1515 * plain text attack. 1516 * 2) The client may or may not expect things to come in secure. 1517 * If it comes in secure, the policy constraints are checked 1518 * before delivering it to the upper layers. If it comes in 1519 * clear, ipsec_inbound_accept_clear will decide whether to 1520 * accept this in clear or not. In both the cases, if the returned 1521 * message (IP header + 8 bytes) that caused the icmp message has 1522 * AH/ESP headers, it is sent up to AH/ESP for validation before 1523 * sending up. If there are only 8 bytes of returned message, then 1524 * upper client will not be notified. 1525 * 3) Check with global policy to see whether it matches the constaints. 1526 * But this will be done only if icmp_accept_messages_in_clear is 1527 * zero. 1528 * 4) If we need to change both in IP and ULP, then the decision taken 1529 * while affecting the values in IP and while delivering up to TCP 1530 * should be the same. 1531 * 1532 * There are two cases. 1533 * 1534 * a) If we reject data at the IP layer (ipsec_check_global_policy() 1535 * failed), we will not deliver it to the ULP, even though they 1536 * are *willing* to accept in *clear*. This is fine as our global 1537 * disposition to icmp messages asks us reject the datagram. 1538 * 1539 * b) If we accept data at the IP layer (ipsec_check_global_policy() 1540 * succeeded or icmp_accept_messages_in_clear is 1), and not able 1541 * to deliver it to ULP (policy failed), it can lead to 1542 * consistency problems. The cases known at this time are 1543 * ICMP_DESTINATION_UNREACHABLE messages with following code 1544 * values : 1545 * 1546 * - ICMP_FRAGMENTATION_NEEDED : IP adapts to the new value 1547 * and Upper layer rejects. Then the communication will 1548 * come to a stop. This is solved by making similar decisions 1549 * at both levels. Currently, when we are unable to deliver 1550 * to the Upper Layer (due to policy failures) while IP has 1551 * adjusted ire_max_frag, the next outbound datagram would 1552 * generate a local ICMP_FRAGMENTATION_NEEDED message - which 1553 * will be with the right level of protection. Thus the right 1554 * value will be communicated even if we are not able to 1555 * communicate when we get from the wire initially. But this 1556 * assumes there would be at least one outbound datagram after 1557 * IP has adjusted its ire_max_frag value. To make things 1558 * simpler, we accept in clear after the validation of 1559 * AH/ESP headers. 1560 * 1561 * - Other ICMP ERRORS : We may not be able to deliver it to the 1562 * upper layer depending on the level of protection the upper 1563 * layer expects and the disposition in ipsec_inbound_accept_clear(). 1564 * ipsec_inbound_accept_clear() decides whether a given ICMP error 1565 * should be accepted in clear when the Upper layer expects secure. 1566 * Thus the communication may get aborted by some bad ICMP 1567 * packets. 1568 * 1569 * IPQoS Notes: 1570 * The only instance when a packet is sent for processing is when there 1571 * isn't an ICMP client and if we are interested in it. 1572 * If there is a client, IPPF processing will take place in the 1573 * ip_fanout_proto routine. 1574 * 1575 * Zones notes: 1576 * The packet is only processed in the context of the specified zone: typically 1577 * only this zone will reply to an echo request, and only interested clients in 1578 * this zone will receive a copy of the packet. This means that the caller must 1579 * call icmp_inbound() for each relevant zone. 1580 */ 1581 static void 1582 icmp_inbound(queue_t *q, mblk_t *mp, boolean_t broadcast, ill_t *ill, 1583 int sum_valid, uint32_t sum, boolean_t mctl_present, boolean_t ip_policy, 1584 ill_t *recv_ill, zoneid_t zoneid) 1585 { 1586 icmph_t *icmph; 1587 ipha_t *ipha; 1588 int iph_hdr_length; 1589 int hdr_length; 1590 boolean_t interested; 1591 uint32_t ts; 1592 uchar_t *wptr; 1593 ipif_t *ipif; 1594 mblk_t *first_mp; 1595 ipsec_in_t *ii; 1596 ire_t *src_ire; 1597 boolean_t onlink; 1598 timestruc_t now; 1599 uint32_t ill_index; 1600 ip_stack_t *ipst; 1601 1602 ASSERT(ill != NULL); 1603 ipst = ill->ill_ipst; 1604 1605 first_mp = mp; 1606 if (mctl_present) { 1607 mp = first_mp->b_cont; 1608 ASSERT(mp != NULL); 1609 } 1610 1611 ipha = (ipha_t *)mp->b_rptr; 1612 if (ipst->ips_icmp_accept_clear_messages == 0) { 1613 first_mp = ipsec_check_global_policy(first_mp, NULL, 1614 ipha, NULL, mctl_present, ipst->ips_netstack); 1615 if (first_mp == NULL) 1616 return; 1617 } 1618 1619 /* 1620 * On a labeled system, we have to check whether the zone itself is 1621 * permitted to receive raw traffic. 1622 */ 1623 if (is_system_labeled()) { 1624 if (zoneid == ALL_ZONES) 1625 zoneid = tsol_packet_to_zoneid(mp); 1626 if (!tsol_can_accept_raw(mp, B_FALSE)) { 1627 ip1dbg(("icmp_inbound: zone %d can't receive raw", 1628 zoneid)); 1629 BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors); 1630 freemsg(first_mp); 1631 return; 1632 } 1633 } 1634 1635 /* 1636 * We have accepted the ICMP message. It means that we will 1637 * respond to the packet if needed. It may not be delivered 1638 * to the upper client depending on the policy constraints 1639 * and the disposition in ipsec_inbound_accept_clear. 1640 */ 1641 1642 ASSERT(ill != NULL); 1643 1644 BUMP_MIB(&ipst->ips_icmp_mib, icmpInMsgs); 1645 iph_hdr_length = IPH_HDR_LENGTH(ipha); 1646 if ((mp->b_wptr - mp->b_rptr) < (iph_hdr_length + ICMPH_SIZE)) { 1647 /* Last chance to get real. */ 1648 if (!pullupmsg(mp, iph_hdr_length + ICMPH_SIZE)) { 1649 BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors); 1650 freemsg(first_mp); 1651 return; 1652 } 1653 /* Refresh iph following the pullup. */ 1654 ipha = (ipha_t *)mp->b_rptr; 1655 } 1656 /* ICMP header checksum, including checksum field, should be zero. */ 1657 if (sum_valid ? (sum != 0 && sum != 0xFFFF) : 1658 IP_CSUM(mp, iph_hdr_length, 0)) { 1659 BUMP_MIB(&ipst->ips_icmp_mib, icmpInCksumErrs); 1660 freemsg(first_mp); 1661 return; 1662 } 1663 /* The IP header will always be a multiple of four bytes */ 1664 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1665 ip2dbg(("icmp_inbound: type %d code %d\n", icmph->icmph_type, 1666 icmph->icmph_code)); 1667 wptr = (uchar_t *)icmph + ICMPH_SIZE; 1668 /* We will set "interested" to "true" if we want a copy */ 1669 interested = B_FALSE; 1670 switch (icmph->icmph_type) { 1671 case ICMP_ECHO_REPLY: 1672 BUMP_MIB(&ipst->ips_icmp_mib, icmpInEchoReps); 1673 break; 1674 case ICMP_DEST_UNREACHABLE: 1675 if (icmph->icmph_code == ICMP_FRAGMENTATION_NEEDED) 1676 BUMP_MIB(&ipst->ips_icmp_mib, icmpInFragNeeded); 1677 interested = B_TRUE; /* Pass up to transport */ 1678 BUMP_MIB(&ipst->ips_icmp_mib, icmpInDestUnreachs); 1679 break; 1680 case ICMP_SOURCE_QUENCH: 1681 interested = B_TRUE; /* Pass up to transport */ 1682 BUMP_MIB(&ipst->ips_icmp_mib, icmpInSrcQuenchs); 1683 break; 1684 case ICMP_REDIRECT: 1685 if (!ipst->ips_ip_ignore_redirect) 1686 interested = B_TRUE; 1687 BUMP_MIB(&ipst->ips_icmp_mib, icmpInRedirects); 1688 break; 1689 case ICMP_ECHO_REQUEST: 1690 /* 1691 * Whether to respond to echo requests that come in as IP 1692 * broadcasts or as IP multicast is subject to debate 1693 * (what isn't?). We aim to please, you pick it. 1694 * Default is do it. 1695 */ 1696 if (!broadcast && !CLASSD(ipha->ipha_dst)) { 1697 /* unicast: always respond */ 1698 interested = B_TRUE; 1699 } else if (CLASSD(ipha->ipha_dst)) { 1700 /* multicast: respond based on tunable */ 1701 interested = ipst->ips_ip_g_resp_to_echo_mcast; 1702 } else if (broadcast) { 1703 /* broadcast: respond based on tunable */ 1704 interested = ipst->ips_ip_g_resp_to_echo_bcast; 1705 } 1706 BUMP_MIB(&ipst->ips_icmp_mib, icmpInEchos); 1707 break; 1708 case ICMP_ROUTER_ADVERTISEMENT: 1709 case ICMP_ROUTER_SOLICITATION: 1710 break; 1711 case ICMP_TIME_EXCEEDED: 1712 interested = B_TRUE; /* Pass up to transport */ 1713 BUMP_MIB(&ipst->ips_icmp_mib, icmpInTimeExcds); 1714 break; 1715 case ICMP_PARAM_PROBLEM: 1716 interested = B_TRUE; /* Pass up to transport */ 1717 BUMP_MIB(&ipst->ips_icmp_mib, icmpInParmProbs); 1718 break; 1719 case ICMP_TIME_STAMP_REQUEST: 1720 /* Response to Time Stamp Requests is local policy. */ 1721 if (ipst->ips_ip_g_resp_to_timestamp && 1722 /* So is whether to respond if it was an IP broadcast. */ 1723 (!broadcast || ipst->ips_ip_g_resp_to_timestamp_bcast)) { 1724 int tstamp_len = 3 * sizeof (uint32_t); 1725 1726 if (wptr + tstamp_len > mp->b_wptr) { 1727 if (!pullupmsg(mp, wptr + tstamp_len - 1728 mp->b_rptr)) { 1729 BUMP_MIB(ill->ill_ip_mib, 1730 ipIfStatsInDiscards); 1731 freemsg(first_mp); 1732 return; 1733 } 1734 /* Refresh ipha following the pullup. */ 1735 ipha = (ipha_t *)mp->b_rptr; 1736 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1737 wptr = (uchar_t *)icmph + ICMPH_SIZE; 1738 } 1739 interested = B_TRUE; 1740 } 1741 BUMP_MIB(&ipst->ips_icmp_mib, icmpInTimestamps); 1742 break; 1743 case ICMP_TIME_STAMP_REPLY: 1744 BUMP_MIB(&ipst->ips_icmp_mib, icmpInTimestampReps); 1745 break; 1746 case ICMP_INFO_REQUEST: 1747 /* Per RFC 1122 3.2.2.7, ignore this. */ 1748 case ICMP_INFO_REPLY: 1749 break; 1750 case ICMP_ADDRESS_MASK_REQUEST: 1751 if ((ipst->ips_ip_respond_to_address_mask_broadcast || 1752 !broadcast) && 1753 /* TODO m_pullup of complete header? */ 1754 (mp->b_datap->db_lim - wptr) >= IP_ADDR_LEN) 1755 interested = B_TRUE; 1756 BUMP_MIB(&ipst->ips_icmp_mib, icmpInAddrMasks); 1757 break; 1758 case ICMP_ADDRESS_MASK_REPLY: 1759 BUMP_MIB(&ipst->ips_icmp_mib, icmpInAddrMaskReps); 1760 break; 1761 default: 1762 interested = B_TRUE; /* Pass up to transport */ 1763 BUMP_MIB(&ipst->ips_icmp_mib, icmpInUnknowns); 1764 break; 1765 } 1766 /* See if there is an ICMP client. */ 1767 if (ipst->ips_ipcl_proto_fanout[IPPROTO_ICMP].connf_head != NULL) { 1768 /* If there is an ICMP client and we want one too, copy it. */ 1769 mblk_t *first_mp1; 1770 1771 if (!interested) { 1772 ip_fanout_proto(q, first_mp, ill, ipha, 0, mctl_present, 1773 ip_policy, recv_ill, zoneid); 1774 return; 1775 } 1776 first_mp1 = ip_copymsg(first_mp); 1777 if (first_mp1 != NULL) { 1778 ip_fanout_proto(q, first_mp1, ill, ipha, 1779 0, mctl_present, ip_policy, recv_ill, zoneid); 1780 } 1781 } else if (!interested) { 1782 freemsg(first_mp); 1783 return; 1784 } else { 1785 /* 1786 * Initiate policy processing for this packet if ip_policy 1787 * is true. 1788 */ 1789 if (IPP_ENABLED(IPP_LOCAL_IN, ipst) && ip_policy) { 1790 ill_index = ill->ill_phyint->phyint_ifindex; 1791 ip_process(IPP_LOCAL_IN, &mp, ill_index); 1792 if (mp == NULL) { 1793 if (mctl_present) { 1794 freeb(first_mp); 1795 } 1796 BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors); 1797 return; 1798 } 1799 } 1800 } 1801 /* We want to do something with it. */ 1802 /* Check db_ref to make sure we can modify the packet. */ 1803 if (mp->b_datap->db_ref > 1) { 1804 mblk_t *first_mp1; 1805 1806 first_mp1 = ip_copymsg(first_mp); 1807 freemsg(first_mp); 1808 if (!first_mp1) { 1809 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDrops); 1810 return; 1811 } 1812 first_mp = first_mp1; 1813 if (mctl_present) { 1814 mp = first_mp->b_cont; 1815 ASSERT(mp != NULL); 1816 } else { 1817 mp = first_mp; 1818 } 1819 ipha = (ipha_t *)mp->b_rptr; 1820 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1821 wptr = (uchar_t *)icmph + ICMPH_SIZE; 1822 } 1823 switch (icmph->icmph_type) { 1824 case ICMP_ADDRESS_MASK_REQUEST: 1825 ipif = ipif_lookup_remote(ill, ipha->ipha_src, zoneid); 1826 if (ipif == NULL) { 1827 freemsg(first_mp); 1828 return; 1829 } 1830 /* 1831 * outging interface must be IPv4 1832 */ 1833 ASSERT(ipif != NULL && !ipif->ipif_isv6); 1834 icmph->icmph_type = ICMP_ADDRESS_MASK_REPLY; 1835 bcopy(&ipif->ipif_net_mask, wptr, IP_ADDR_LEN); 1836 ipif_refrele(ipif); 1837 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutAddrMaskReps); 1838 break; 1839 case ICMP_ECHO_REQUEST: 1840 icmph->icmph_type = ICMP_ECHO_REPLY; 1841 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutEchoReps); 1842 break; 1843 case ICMP_TIME_STAMP_REQUEST: { 1844 uint32_t *tsp; 1845 1846 icmph->icmph_type = ICMP_TIME_STAMP_REPLY; 1847 tsp = (uint32_t *)wptr; 1848 tsp++; /* Skip past 'originate time' */ 1849 /* Compute # of milliseconds since midnight */ 1850 gethrestime(&now); 1851 ts = (now.tv_sec % (24 * 60 * 60)) * 1000 + 1852 now.tv_nsec / (NANOSEC / MILLISEC); 1853 *tsp++ = htonl(ts); /* Lay in 'receive time' */ 1854 *tsp++ = htonl(ts); /* Lay in 'send time' */ 1855 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutTimestampReps); 1856 break; 1857 } 1858 default: 1859 ipha = (ipha_t *)&icmph[1]; 1860 if ((uchar_t *)&ipha[1] > mp->b_wptr) { 1861 if (!pullupmsg(mp, (uchar_t *)&ipha[1] - mp->b_rptr)) { 1862 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 1863 freemsg(first_mp); 1864 return; 1865 } 1866 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1867 ipha = (ipha_t *)&icmph[1]; 1868 } 1869 if ((IPH_HDR_VERSION(ipha) != IPV4_VERSION)) { 1870 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 1871 freemsg(first_mp); 1872 return; 1873 } 1874 hdr_length = IPH_HDR_LENGTH(ipha); 1875 if (hdr_length < sizeof (ipha_t)) { 1876 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 1877 freemsg(first_mp); 1878 return; 1879 } 1880 if ((uchar_t *)ipha + hdr_length > mp->b_wptr) { 1881 if (!pullupmsg(mp, 1882 (uchar_t *)ipha + hdr_length - mp->b_rptr)) { 1883 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 1884 freemsg(first_mp); 1885 return; 1886 } 1887 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1888 ipha = (ipha_t *)&icmph[1]; 1889 } 1890 switch (icmph->icmph_type) { 1891 case ICMP_REDIRECT: 1892 /* 1893 * As there is no upper client to deliver, we don't 1894 * need the first_mp any more. 1895 */ 1896 if (mctl_present) { 1897 freeb(first_mp); 1898 } 1899 icmp_redirect(ill, mp); 1900 return; 1901 case ICMP_DEST_UNREACHABLE: 1902 if (icmph->icmph_code == ICMP_FRAGMENTATION_NEEDED) { 1903 if (!icmp_inbound_too_big(icmph, ipha, ill, 1904 zoneid, mp, iph_hdr_length, ipst)) { 1905 freemsg(first_mp); 1906 return; 1907 } 1908 /* 1909 * icmp_inbound_too_big() may alter mp. 1910 * Resynch ipha and icmph accordingly. 1911 */ 1912 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 1913 ipha = (ipha_t *)&icmph[1]; 1914 } 1915 /* FALLTHRU */ 1916 default : 1917 /* 1918 * IPQoS notes: Since we have already done IPQoS 1919 * processing we don't want to do it again in 1920 * the fanout routines called by 1921 * icmp_inbound_error_fanout, hence the last 1922 * argument, ip_policy, is B_FALSE. 1923 */ 1924 icmp_inbound_error_fanout(q, ill, first_mp, icmph, 1925 ipha, iph_hdr_length, hdr_length, mctl_present, 1926 B_FALSE, recv_ill, zoneid); 1927 } 1928 return; 1929 } 1930 /* Send out an ICMP packet */ 1931 icmph->icmph_checksum = 0; 1932 icmph->icmph_checksum = IP_CSUM(mp, iph_hdr_length, 0); 1933 if (broadcast || CLASSD(ipha->ipha_dst)) { 1934 ipif_t *ipif_chosen; 1935 /* 1936 * Make it look like it was directed to us, so we don't look 1937 * like a fool with a broadcast or multicast source address. 1938 */ 1939 ipif = ipif_lookup_remote(ill, ipha->ipha_src, zoneid); 1940 /* 1941 * Make sure that we haven't grabbed an interface that's DOWN. 1942 */ 1943 if (ipif != NULL) { 1944 ipif_chosen = ipif_select_source(ipif->ipif_ill, 1945 ipha->ipha_src, zoneid); 1946 if (ipif_chosen != NULL) { 1947 ipif_refrele(ipif); 1948 ipif = ipif_chosen; 1949 } 1950 } 1951 if (ipif == NULL) { 1952 ip0dbg(("icmp_inbound: " 1953 "No source for broadcast/multicast:\n" 1954 "\tsrc 0x%x dst 0x%x ill %p " 1955 "ipif_lcl_addr 0x%x\n", 1956 ntohl(ipha->ipha_src), ntohl(ipha->ipha_dst), 1957 (void *)ill, 1958 ill->ill_ipif->ipif_lcl_addr)); 1959 freemsg(first_mp); 1960 return; 1961 } 1962 ASSERT(ipif != NULL && !ipif->ipif_isv6); 1963 ipha->ipha_dst = ipif->ipif_src_addr; 1964 ipif_refrele(ipif); 1965 } 1966 /* Reset time to live. */ 1967 ipha->ipha_ttl = ipst->ips_ip_def_ttl; 1968 { 1969 /* Swap source and destination addresses */ 1970 ipaddr_t tmp; 1971 1972 tmp = ipha->ipha_src; 1973 ipha->ipha_src = ipha->ipha_dst; 1974 ipha->ipha_dst = tmp; 1975 } 1976 ipha->ipha_ident = 0; 1977 if (!IS_SIMPLE_IPH(ipha)) 1978 icmp_options_update(ipha); 1979 1980 /* 1981 * ICMP echo replies should go out on the same interface 1982 * the request came on as probes used by in.mpathd for detecting 1983 * NIC failures are ECHO packets. We turn-off load spreading 1984 * by setting ipsec_in_attach_if to B_TRUE, which is copied 1985 * to ipsec_out_attach_if by ipsec_in_to_out called later in this 1986 * function. This is in turn handled by ip_wput and ip_newroute 1987 * to make sure that the packet goes out on the interface it came 1988 * in on. If we don't turnoff load spreading, the packets might get 1989 * dropped if there are no non-FAILED/INACTIVE interfaces for it 1990 * to go out and in.mpathd would wrongly detect a failure or 1991 * mis-detect a NIC failure for link failure. As load spreading 1992 * can happen only if ill_group is not NULL, we do only for 1993 * that case and this does not affect the normal case. 1994 * 1995 * We turn off load spreading only on echo packets that came from 1996 * on-link hosts. If the interface route has been deleted, this will 1997 * not be enforced as we can't do much. For off-link hosts, as the 1998 * default routes in IPv4 does not typically have an ire_ipif 1999 * pointer, we can't force MATCH_IRE_ILL in ip_wput/ip_newroute. 2000 * Moreover, expecting a default route through this interface may 2001 * not be correct. We use ipha_dst because of the swap above. 2002 */ 2003 onlink = B_FALSE; 2004 if (icmph->icmph_type == ICMP_ECHO_REPLY && ill->ill_group != NULL) { 2005 /* 2006 * First, we need to make sure that it is not one of our 2007 * local addresses. If we set onlink when it is one of 2008 * our local addresses, we will end up creating IRE_CACHES 2009 * for one of our local addresses. Then, we will never 2010 * accept packets for them afterwards. 2011 */ 2012 src_ire = ire_ctable_lookup(ipha->ipha_dst, 0, IRE_LOCAL, 2013 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 2014 if (src_ire == NULL) { 2015 ipif = ipif_get_next_ipif(NULL, ill); 2016 if (ipif == NULL) { 2017 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2018 freemsg(mp); 2019 return; 2020 } 2021 src_ire = ire_ftable_lookup(ipha->ipha_dst, 0, 0, 2022 IRE_INTERFACE, ipif, NULL, ALL_ZONES, 0, 2023 NULL, MATCH_IRE_ILL | MATCH_IRE_TYPE, ipst); 2024 ipif_refrele(ipif); 2025 if (src_ire != NULL) { 2026 onlink = B_TRUE; 2027 ire_refrele(src_ire); 2028 } 2029 } else { 2030 ire_refrele(src_ire); 2031 } 2032 } 2033 if (!mctl_present) { 2034 /* 2035 * This packet should go out the same way as it 2036 * came in i.e in clear. To make sure that global 2037 * policy will not be applied to this in ip_wput_ire, 2038 * we attach a IPSEC_IN mp and clear ipsec_in_secure. 2039 */ 2040 ASSERT(first_mp == mp); 2041 first_mp = ipsec_in_alloc(B_TRUE, ipst->ips_netstack); 2042 if (first_mp == NULL) { 2043 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2044 freemsg(mp); 2045 return; 2046 } 2047 ii = (ipsec_in_t *)first_mp->b_rptr; 2048 2049 /* This is not a secure packet */ 2050 ii->ipsec_in_secure = B_FALSE; 2051 if (onlink) { 2052 ii->ipsec_in_attach_if = B_TRUE; 2053 ii->ipsec_in_ill_index = 2054 ill->ill_phyint->phyint_ifindex; 2055 ii->ipsec_in_rill_index = 2056 recv_ill->ill_phyint->phyint_ifindex; 2057 } 2058 first_mp->b_cont = mp; 2059 } else if (onlink) { 2060 ii = (ipsec_in_t *)first_mp->b_rptr; 2061 ii->ipsec_in_attach_if = B_TRUE; 2062 ii->ipsec_in_ill_index = ill->ill_phyint->phyint_ifindex; 2063 ii->ipsec_in_rill_index = recv_ill->ill_phyint->phyint_ifindex; 2064 ii->ipsec_in_ns = ipst->ips_netstack; /* No netstack_hold */ 2065 } else { 2066 ii = (ipsec_in_t *)first_mp->b_rptr; 2067 ii->ipsec_in_ns = ipst->ips_netstack; /* No netstack_hold */ 2068 } 2069 ii->ipsec_in_zoneid = zoneid; 2070 ASSERT(zoneid != ALL_ZONES); 2071 if (!ipsec_in_to_out(first_mp, ipha, NULL)) { 2072 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2073 return; 2074 } 2075 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutMsgs); 2076 put(WR(q), first_mp); 2077 } 2078 2079 static ipaddr_t 2080 icmp_get_nexthop_addr(ipha_t *ipha, ill_t *ill, zoneid_t zoneid, mblk_t *mp) 2081 { 2082 conn_t *connp; 2083 connf_t *connfp; 2084 ipaddr_t nexthop_addr = INADDR_ANY; 2085 int hdr_length = IPH_HDR_LENGTH(ipha); 2086 uint16_t *up; 2087 uint32_t ports; 2088 ip_stack_t *ipst = ill->ill_ipst; 2089 2090 up = (uint16_t *)((uchar_t *)ipha + hdr_length); 2091 switch (ipha->ipha_protocol) { 2092 case IPPROTO_TCP: 2093 { 2094 tcph_t *tcph; 2095 2096 /* do a reverse lookup */ 2097 tcph = (tcph_t *)((uchar_t *)ipha + hdr_length); 2098 connp = ipcl_tcp_lookup_reversed_ipv4(ipha, tcph, 2099 TCPS_LISTEN, ipst); 2100 break; 2101 } 2102 case IPPROTO_UDP: 2103 { 2104 uint32_t dstport, srcport; 2105 2106 ((uint16_t *)&ports)[0] = up[1]; 2107 ((uint16_t *)&ports)[1] = up[0]; 2108 2109 /* Extract ports in net byte order */ 2110 dstport = htons(ntohl(ports) & 0xFFFF); 2111 srcport = htons(ntohl(ports) >> 16); 2112 2113 connfp = &ipst->ips_ipcl_udp_fanout[ 2114 IPCL_UDP_HASH(dstport, ipst)]; 2115 mutex_enter(&connfp->connf_lock); 2116 connp = connfp->connf_head; 2117 2118 /* do a reverse lookup */ 2119 while ((connp != NULL) && 2120 (!IPCL_UDP_MATCH(connp, dstport, 2121 ipha->ipha_src, srcport, ipha->ipha_dst) || 2122 !IPCL_ZONE_MATCH(connp, zoneid))) { 2123 connp = connp->conn_next; 2124 } 2125 if (connp != NULL) 2126 CONN_INC_REF(connp); 2127 mutex_exit(&connfp->connf_lock); 2128 break; 2129 } 2130 case IPPROTO_SCTP: 2131 { 2132 in6_addr_t map_src, map_dst; 2133 2134 IN6_IPADDR_TO_V4MAPPED(ipha->ipha_dst, &map_src); 2135 IN6_IPADDR_TO_V4MAPPED(ipha->ipha_src, &map_dst); 2136 ((uint16_t *)&ports)[0] = up[1]; 2137 ((uint16_t *)&ports)[1] = up[0]; 2138 2139 connp = sctp_find_conn(&map_src, &map_dst, ports, 2140 zoneid, ipst->ips_netstack->netstack_sctp); 2141 if (connp == NULL) { 2142 connp = ipcl_classify_raw(mp, IPPROTO_SCTP, 2143 zoneid, ports, ipha, ipst); 2144 } else { 2145 CONN_INC_REF(connp); 2146 SCTP_REFRELE(CONN2SCTP(connp)); 2147 } 2148 break; 2149 } 2150 default: 2151 { 2152 ipha_t ripha; 2153 2154 ripha.ipha_src = ipha->ipha_dst; 2155 ripha.ipha_dst = ipha->ipha_src; 2156 ripha.ipha_protocol = ipha->ipha_protocol; 2157 2158 connfp = &ipst->ips_ipcl_proto_fanout[ 2159 ipha->ipha_protocol]; 2160 mutex_enter(&connfp->connf_lock); 2161 connp = connfp->connf_head; 2162 for (connp = connfp->connf_head; connp != NULL; 2163 connp = connp->conn_next) { 2164 if (IPCL_PROTO_MATCH(connp, 2165 ipha->ipha_protocol, &ripha, ill, 2166 0, zoneid)) { 2167 CONN_INC_REF(connp); 2168 break; 2169 } 2170 } 2171 mutex_exit(&connfp->connf_lock); 2172 } 2173 } 2174 if (connp != NULL) { 2175 if (connp->conn_nexthop_set) 2176 nexthop_addr = connp->conn_nexthop_v4; 2177 CONN_DEC_REF(connp); 2178 } 2179 return (nexthop_addr); 2180 } 2181 2182 /* Table from RFC 1191 */ 2183 static int icmp_frag_size_table[] = 2184 { 32000, 17914, 8166, 4352, 2002, 1496, 1006, 508, 296, 68 }; 2185 2186 /* 2187 * Process received ICMP Packet too big. 2188 * After updating any IRE it does the fanout to any matching transport streams. 2189 * Assumes the message has been pulled up till the IP header that caused 2190 * the error. 2191 * 2192 * Returns B_FALSE on failure and B_TRUE on success. 2193 */ 2194 static boolean_t 2195 icmp_inbound_too_big(icmph_t *icmph, ipha_t *ipha, ill_t *ill, 2196 zoneid_t zoneid, mblk_t *mp, int iph_hdr_length, 2197 ip_stack_t *ipst) 2198 { 2199 ire_t *ire, *first_ire; 2200 int mtu; 2201 int hdr_length; 2202 ipaddr_t nexthop_addr; 2203 2204 ASSERT(icmph->icmph_type == ICMP_DEST_UNREACHABLE && 2205 icmph->icmph_code == ICMP_FRAGMENTATION_NEEDED); 2206 ASSERT(ill != NULL); 2207 2208 hdr_length = IPH_HDR_LENGTH(ipha); 2209 2210 /* Drop if the original packet contained a source route */ 2211 if (ip_source_route_included(ipha)) { 2212 return (B_FALSE); 2213 } 2214 /* 2215 * Verify we have atleast ICMP_MIN_TP_HDR_LENGTH bytes of transport 2216 * header. 2217 */ 2218 if ((uchar_t *)ipha + hdr_length + ICMP_MIN_TP_HDR_LEN > 2219 mp->b_wptr) { 2220 if (!pullupmsg(mp, (uchar_t *)ipha + hdr_length + 2221 ICMP_MIN_TP_HDR_LEN - mp->b_rptr)) { 2222 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2223 ip1dbg(("icmp_inbound_too_big: insufficient hdr\n")); 2224 return (B_FALSE); 2225 } 2226 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2227 ipha = (ipha_t *)&icmph[1]; 2228 } 2229 nexthop_addr = icmp_get_nexthop_addr(ipha, ill, zoneid, mp); 2230 if (nexthop_addr != INADDR_ANY) { 2231 /* nexthop set */ 2232 first_ire = ire_ctable_lookup(ipha->ipha_dst, 2233 nexthop_addr, 0, NULL, ALL_ZONES, MBLK_GETLABEL(mp), 2234 MATCH_IRE_MARK_PRIVATE_ADDR | MATCH_IRE_GW, ipst); 2235 } else { 2236 /* nexthop not set */ 2237 first_ire = ire_ctable_lookup(ipha->ipha_dst, 0, IRE_CACHE, 2238 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 2239 } 2240 2241 if (!first_ire) { 2242 ip1dbg(("icmp_inbound_too_big: no route for 0x%x\n", 2243 ntohl(ipha->ipha_dst))); 2244 return (B_FALSE); 2245 } 2246 /* Check for MTU discovery advice as described in RFC 1191 */ 2247 mtu = ntohs(icmph->icmph_du_mtu); 2248 rw_enter(&first_ire->ire_bucket->irb_lock, RW_READER); 2249 for (ire = first_ire; ire != NULL && ire->ire_addr == ipha->ipha_dst; 2250 ire = ire->ire_next) { 2251 /* 2252 * Look for the connection to which this ICMP message is 2253 * directed. If it has the IP_NEXTHOP option set, then the 2254 * search is limited to IREs with the MATCH_IRE_PRIVATE 2255 * option. Else the search is limited to regular IREs. 2256 */ 2257 if (((ire->ire_marks & IRE_MARK_PRIVATE_ADDR) && 2258 (nexthop_addr != ire->ire_gateway_addr)) || 2259 (!(ire->ire_marks & IRE_MARK_PRIVATE_ADDR) && 2260 (nexthop_addr != INADDR_ANY))) 2261 continue; 2262 2263 mutex_enter(&ire->ire_lock); 2264 if (icmph->icmph_du_zero == 0 && mtu > 68) { 2265 /* Reduce the IRE max frag value as advised. */ 2266 ip1dbg(("Received mtu from router: %d (was %d)\n", 2267 mtu, ire->ire_max_frag)); 2268 ire->ire_max_frag = MIN(ire->ire_max_frag, mtu); 2269 } else { 2270 uint32_t length; 2271 int i; 2272 2273 /* 2274 * Use the table from RFC 1191 to figure out 2275 * the next "plateau" based on the length in 2276 * the original IP packet. 2277 */ 2278 length = ntohs(ipha->ipha_length); 2279 if (ire->ire_max_frag <= length && 2280 ire->ire_max_frag >= length - hdr_length) { 2281 /* 2282 * Handle broken BSD 4.2 systems that 2283 * return the wrong iph_length in ICMP 2284 * errors. 2285 */ 2286 ip1dbg(("Wrong mtu: sent %d, ire %d\n", 2287 length, ire->ire_max_frag)); 2288 length -= hdr_length; 2289 } 2290 for (i = 0; i < A_CNT(icmp_frag_size_table); i++) { 2291 if (length > icmp_frag_size_table[i]) 2292 break; 2293 } 2294 if (i == A_CNT(icmp_frag_size_table)) { 2295 /* Smaller than 68! */ 2296 ip1dbg(("Too big for packet size %d\n", 2297 length)); 2298 ire->ire_max_frag = MIN(ire->ire_max_frag, 576); 2299 ire->ire_frag_flag = 0; 2300 } else { 2301 mtu = icmp_frag_size_table[i]; 2302 ip1dbg(("Calculated mtu %d, packet size %d, " 2303 "before %d", mtu, length, 2304 ire->ire_max_frag)); 2305 ire->ire_max_frag = MIN(ire->ire_max_frag, mtu); 2306 ip1dbg((", after %d\n", ire->ire_max_frag)); 2307 } 2308 /* Record the new max frag size for the ULP. */ 2309 icmph->icmph_du_zero = 0; 2310 icmph->icmph_du_mtu = 2311 htons((uint16_t)ire->ire_max_frag); 2312 } 2313 mutex_exit(&ire->ire_lock); 2314 } 2315 rw_exit(&first_ire->ire_bucket->irb_lock); 2316 ire_refrele(first_ire); 2317 return (B_TRUE); 2318 } 2319 2320 /* 2321 * If the packet in error is Self-Encapsulated, icmp_inbound_error_fanout 2322 * calls this function. 2323 */ 2324 static mblk_t * 2325 icmp_inbound_self_encap_error(mblk_t *mp, int iph_hdr_length, int hdr_length) 2326 { 2327 ipha_t *ipha; 2328 icmph_t *icmph; 2329 ipha_t *in_ipha; 2330 int length; 2331 2332 ASSERT(mp->b_datap->db_type == M_DATA); 2333 2334 /* 2335 * For Self-encapsulated packets, we added an extra IP header 2336 * without the options. Inner IP header is the one from which 2337 * the outer IP header was formed. Thus, we need to remove the 2338 * outer IP header. To do this, we pullup the whole message 2339 * and overlay whatever follows the outer IP header over the 2340 * outer IP header. 2341 */ 2342 2343 if (!pullupmsg(mp, -1)) 2344 return (NULL); 2345 2346 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2347 ipha = (ipha_t *)&icmph[1]; 2348 in_ipha = (ipha_t *)((uchar_t *)ipha + hdr_length); 2349 2350 /* 2351 * The length that we want to overlay is following the inner 2352 * IP header. Subtracting the IP header + icmp header + outer 2353 * IP header's length should give us the length that we want to 2354 * overlay. 2355 */ 2356 length = msgdsize(mp) - iph_hdr_length - sizeof (icmph_t) - 2357 hdr_length; 2358 /* 2359 * Overlay whatever follows the inner header over the 2360 * outer header. 2361 */ 2362 bcopy((uchar_t *)in_ipha, (uchar_t *)ipha, length); 2363 2364 /* Set the wptr to account for the outer header */ 2365 mp->b_wptr -= hdr_length; 2366 return (mp); 2367 } 2368 2369 /* 2370 * Try to pass the ICMP message upstream in case the ULP cares. 2371 * 2372 * If the packet that caused the ICMP error is secure, we send 2373 * it to AH/ESP to make sure that the attached packet has a 2374 * valid association. ipha in the code below points to the 2375 * IP header of the packet that caused the error. 2376 * 2377 * We handle ICMP_FRAGMENTATION_NEEDED(IFN) message differently 2378 * in the context of IPSEC. Normally we tell the upper layer 2379 * whenever we send the ire (including ip_bind), the IPSEC header 2380 * length in ire_ipsec_overhead. TCP can deduce the MSS as it 2381 * has both the MTU (ire_max_frag) and the ire_ipsec_overhead. 2382 * Similarly, we pass the new MTU icmph_du_mtu and TCP does the 2383 * same thing. As TCP has the IPSEC options size that needs to be 2384 * adjusted, we just pass the MTU unchanged. 2385 * 2386 * IFN could have been generated locally or by some router. 2387 * 2388 * LOCAL : *ip_wput_ire -> icmp_frag_needed could have generated this. 2389 * This happens because IP adjusted its value of MTU on an 2390 * earlier IFN message and could not tell the upper layer, 2391 * the new adjusted value of MTU e.g. Packet was encrypted 2392 * or there was not enough information to fanout to upper 2393 * layers. Thus on the next outbound datagram, ip_wput_ire 2394 * generates the IFN, where IPSEC processing has *not* been 2395 * done. 2396 * 2397 * *ip_wput_ire_fragmentit -> ip_wput_frag -> icmp_frag_needed 2398 * could have generated this. This happens because ire_max_frag 2399 * value in IP was set to a new value, while the IPSEC processing 2400 * was being done and after we made the fragmentation check in 2401 * ip_wput_ire. Thus on return from IPSEC processing, 2402 * ip_wput_ipsec_out finds that the new length is > ire_max_frag 2403 * and generates the IFN. As IPSEC processing is over, we fanout 2404 * to AH/ESP to remove the header. 2405 * 2406 * In both these cases, ipsec_in_loopback will be set indicating 2407 * that IFN was generated locally. 2408 * 2409 * ROUTER : IFN could be secure or non-secure. 2410 * 2411 * * SECURE : We use the IPSEC_IN to fanout to AH/ESP if the 2412 * packet in error has AH/ESP headers to validate the AH/ESP 2413 * headers. AH/ESP will verify whether there is a valid SA or 2414 * not and send it back. We will fanout again if we have more 2415 * data in the packet. 2416 * 2417 * If the packet in error does not have AH/ESP, we handle it 2418 * like any other case. 2419 * 2420 * * NON_SECURE : If the packet in error has AH/ESP headers, 2421 * we attach a dummy ipsec_in and send it up to AH/ESP 2422 * for validation. AH/ESP will verify whether there is a 2423 * valid SA or not and send it back. We will fanout again if 2424 * we have more data in the packet. 2425 * 2426 * If the packet in error does not have AH/ESP, we handle it 2427 * like any other case. 2428 */ 2429 static void 2430 icmp_inbound_error_fanout(queue_t *q, ill_t *ill, mblk_t *mp, 2431 icmph_t *icmph, ipha_t *ipha, int iph_hdr_length, int hdr_length, 2432 boolean_t mctl_present, boolean_t ip_policy, ill_t *recv_ill, 2433 zoneid_t zoneid) 2434 { 2435 uint16_t *up; /* Pointer to ports in ULP header */ 2436 uint32_t ports; /* reversed ports for fanout */ 2437 ipha_t ripha; /* With reversed addresses */ 2438 mblk_t *first_mp; 2439 ipsec_in_t *ii; 2440 tcph_t *tcph; 2441 conn_t *connp; 2442 ip_stack_t *ipst; 2443 2444 ASSERT(ill != NULL); 2445 2446 ASSERT(recv_ill != NULL); 2447 ipst = recv_ill->ill_ipst; 2448 2449 first_mp = mp; 2450 if (mctl_present) { 2451 mp = first_mp->b_cont; 2452 ASSERT(mp != NULL); 2453 2454 ii = (ipsec_in_t *)first_mp->b_rptr; 2455 ASSERT(ii->ipsec_in_type == IPSEC_IN); 2456 } else { 2457 ii = NULL; 2458 } 2459 2460 switch (ipha->ipha_protocol) { 2461 case IPPROTO_UDP: 2462 /* 2463 * Verify we have at least ICMP_MIN_TP_HDR_LEN bytes of 2464 * transport header. 2465 */ 2466 if ((uchar_t *)ipha + hdr_length + ICMP_MIN_TP_HDR_LEN > 2467 mp->b_wptr) { 2468 if (!pullupmsg(mp, (uchar_t *)ipha + hdr_length + 2469 ICMP_MIN_TP_HDR_LEN - mp->b_rptr)) { 2470 goto discard_pkt; 2471 } 2472 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2473 ipha = (ipha_t *)&icmph[1]; 2474 } 2475 up = (uint16_t *)((uchar_t *)ipha + hdr_length); 2476 2477 /* 2478 * Attempt to find a client stream based on port. 2479 * Note that we do a reverse lookup since the header is 2480 * in the form we sent it out. 2481 * The ripha header is only used for the IP_UDP_MATCH and we 2482 * only set the src and dst addresses and protocol. 2483 */ 2484 ripha.ipha_src = ipha->ipha_dst; 2485 ripha.ipha_dst = ipha->ipha_src; 2486 ripha.ipha_protocol = ipha->ipha_protocol; 2487 ((uint16_t *)&ports)[0] = up[1]; 2488 ((uint16_t *)&ports)[1] = up[0]; 2489 ip2dbg(("icmp_inbound_error: UDP %x:%d to %x:%d: %d/%d\n", 2490 ntohl(ipha->ipha_src), ntohs(up[0]), 2491 ntohl(ipha->ipha_dst), ntohs(up[1]), 2492 icmph->icmph_type, icmph->icmph_code)); 2493 2494 /* Have to change db_type after any pullupmsg */ 2495 DB_TYPE(mp) = M_CTL; 2496 2497 ip_fanout_udp(q, first_mp, ill, &ripha, ports, B_FALSE, 0, 2498 mctl_present, ip_policy, recv_ill, zoneid); 2499 return; 2500 2501 case IPPROTO_TCP: 2502 /* 2503 * Verify we have at least ICMP_MIN_TP_HDR_LEN bytes of 2504 * transport header. 2505 */ 2506 if ((uchar_t *)ipha + hdr_length + ICMP_MIN_TP_HDR_LEN > 2507 mp->b_wptr) { 2508 if (!pullupmsg(mp, (uchar_t *)ipha + hdr_length + 2509 ICMP_MIN_TP_HDR_LEN - mp->b_rptr)) { 2510 goto discard_pkt; 2511 } 2512 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2513 ipha = (ipha_t *)&icmph[1]; 2514 } 2515 /* 2516 * Find a TCP client stream for this packet. 2517 * Note that we do a reverse lookup since the header is 2518 * in the form we sent it out. 2519 */ 2520 tcph = (tcph_t *)((uchar_t *)ipha + hdr_length); 2521 connp = ipcl_tcp_lookup_reversed_ipv4(ipha, tcph, TCPS_LISTEN, 2522 ipst); 2523 if (connp == NULL) 2524 goto discard_pkt; 2525 2526 /* Have to change db_type after any pullupmsg */ 2527 DB_TYPE(mp) = M_CTL; 2528 squeue_fill(connp->conn_sqp, first_mp, tcp_input, 2529 connp, SQTAG_TCP_INPUT_ICMP_ERR); 2530 return; 2531 2532 case IPPROTO_SCTP: 2533 /* 2534 * Verify we have at least ICMP_MIN_TP_HDR_LEN bytes of 2535 * transport header. 2536 */ 2537 if ((uchar_t *)ipha + hdr_length + ICMP_MIN_TP_HDR_LEN > 2538 mp->b_wptr) { 2539 if (!pullupmsg(mp, (uchar_t *)ipha + hdr_length + 2540 ICMP_MIN_TP_HDR_LEN - mp->b_rptr)) { 2541 goto discard_pkt; 2542 } 2543 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2544 ipha = (ipha_t *)&icmph[1]; 2545 } 2546 up = (uint16_t *)((uchar_t *)ipha + hdr_length); 2547 /* 2548 * Find a SCTP client stream for this packet. 2549 * Note that we do a reverse lookup since the header is 2550 * in the form we sent it out. 2551 * The ripha header is only used for the matching and we 2552 * only set the src and dst addresses, protocol, and version. 2553 */ 2554 ripha.ipha_src = ipha->ipha_dst; 2555 ripha.ipha_dst = ipha->ipha_src; 2556 ripha.ipha_protocol = ipha->ipha_protocol; 2557 ripha.ipha_version_and_hdr_length = 2558 ipha->ipha_version_and_hdr_length; 2559 ((uint16_t *)&ports)[0] = up[1]; 2560 ((uint16_t *)&ports)[1] = up[0]; 2561 2562 /* Have to change db_type after any pullupmsg */ 2563 DB_TYPE(mp) = M_CTL; 2564 ip_fanout_sctp(first_mp, recv_ill, &ripha, ports, 0, 2565 mctl_present, ip_policy, zoneid); 2566 return; 2567 2568 case IPPROTO_ESP: 2569 case IPPROTO_AH: { 2570 int ipsec_rc; 2571 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 2572 2573 /* 2574 * We need a IPSEC_IN in the front to fanout to AH/ESP. 2575 * We will re-use the IPSEC_IN if it is already present as 2576 * AH/ESP will not affect any fields in the IPSEC_IN for 2577 * ICMP errors. If there is no IPSEC_IN, allocate a new 2578 * one and attach it in the front. 2579 */ 2580 if (ii != NULL) { 2581 /* 2582 * ip_fanout_proto_again converts the ICMP errors 2583 * that come back from AH/ESP to M_DATA so that 2584 * if it is non-AH/ESP and we do a pullupmsg in 2585 * this function, it would work. Convert it back 2586 * to M_CTL before we send up as this is a ICMP 2587 * error. This could have been generated locally or 2588 * by some router. Validate the inner IPSEC 2589 * headers. 2590 * 2591 * NOTE : ill_index is used by ip_fanout_proto_again 2592 * to locate the ill. 2593 */ 2594 ASSERT(ill != NULL); 2595 ii->ipsec_in_ill_index = 2596 ill->ill_phyint->phyint_ifindex; 2597 ii->ipsec_in_rill_index = 2598 recv_ill->ill_phyint->phyint_ifindex; 2599 DB_TYPE(first_mp->b_cont) = M_CTL; 2600 } else { 2601 /* 2602 * IPSEC_IN is not present. We attach a ipsec_in 2603 * message and send up to IPSEC for validating 2604 * and removing the IPSEC headers. Clear 2605 * ipsec_in_secure so that when we return 2606 * from IPSEC, we don't mistakenly think that this 2607 * is a secure packet came from the network. 2608 * 2609 * NOTE : ill_index is used by ip_fanout_proto_again 2610 * to locate the ill. 2611 */ 2612 ASSERT(first_mp == mp); 2613 first_mp = ipsec_in_alloc(B_TRUE, ipst->ips_netstack); 2614 if (first_mp == NULL) { 2615 freemsg(mp); 2616 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2617 return; 2618 } 2619 ii = (ipsec_in_t *)first_mp->b_rptr; 2620 2621 /* This is not a secure packet */ 2622 ii->ipsec_in_secure = B_FALSE; 2623 first_mp->b_cont = mp; 2624 DB_TYPE(mp) = M_CTL; 2625 ASSERT(ill != NULL); 2626 ii->ipsec_in_ill_index = 2627 ill->ill_phyint->phyint_ifindex; 2628 ii->ipsec_in_rill_index = 2629 recv_ill->ill_phyint->phyint_ifindex; 2630 } 2631 ip2dbg(("icmp_inbound_error: ipsec\n")); 2632 2633 if (!ipsec_loaded(ipss)) { 2634 ip_proto_not_sup(q, first_mp, 0, zoneid, ipst); 2635 return; 2636 } 2637 2638 if (ipha->ipha_protocol == IPPROTO_ESP) 2639 ipsec_rc = ipsecesp_icmp_error(first_mp); 2640 else 2641 ipsec_rc = ipsecah_icmp_error(first_mp); 2642 if (ipsec_rc == IPSEC_STATUS_FAILED) 2643 return; 2644 2645 ip_fanout_proto_again(first_mp, ill, recv_ill, NULL); 2646 return; 2647 } 2648 default: 2649 /* 2650 * The ripha header is only used for the lookup and we 2651 * only set the src and dst addresses and protocol. 2652 */ 2653 ripha.ipha_src = ipha->ipha_dst; 2654 ripha.ipha_dst = ipha->ipha_src; 2655 ripha.ipha_protocol = ipha->ipha_protocol; 2656 ip2dbg(("icmp_inbound_error: proto %d %x to %x: %d/%d\n", 2657 ripha.ipha_protocol, ntohl(ipha->ipha_src), 2658 ntohl(ipha->ipha_dst), 2659 icmph->icmph_type, icmph->icmph_code)); 2660 if (ipha->ipha_protocol == IPPROTO_ENCAP) { 2661 ipha_t *in_ipha; 2662 2663 if ((uchar_t *)ipha + hdr_length + sizeof (ipha_t) > 2664 mp->b_wptr) { 2665 if (!pullupmsg(mp, (uchar_t *)ipha + 2666 hdr_length + sizeof (ipha_t) - 2667 mp->b_rptr)) { 2668 goto discard_pkt; 2669 } 2670 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2671 ipha = (ipha_t *)&icmph[1]; 2672 } 2673 /* 2674 * Caller has verified that length has to be 2675 * at least the size of IP header. 2676 */ 2677 ASSERT(hdr_length >= sizeof (ipha_t)); 2678 /* 2679 * Check the sanity of the inner IP header like 2680 * we did for the outer header. 2681 */ 2682 in_ipha = (ipha_t *)((uchar_t *)ipha + hdr_length); 2683 if ((IPH_HDR_VERSION(in_ipha) != IPV4_VERSION)) { 2684 goto discard_pkt; 2685 } 2686 if (IPH_HDR_LENGTH(in_ipha) < sizeof (ipha_t)) { 2687 goto discard_pkt; 2688 } 2689 /* Check for Self-encapsulated tunnels */ 2690 if (in_ipha->ipha_src == ipha->ipha_src && 2691 in_ipha->ipha_dst == ipha->ipha_dst) { 2692 2693 mp = icmp_inbound_self_encap_error(mp, 2694 iph_hdr_length, hdr_length); 2695 if (mp == NULL) 2696 goto discard_pkt; 2697 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 2698 ipha = (ipha_t *)&icmph[1]; 2699 hdr_length = IPH_HDR_LENGTH(ipha); 2700 /* 2701 * The packet in error is self-encapsualted. 2702 * And we are finding it further encapsulated 2703 * which we could not have possibly generated. 2704 */ 2705 if (ipha->ipha_protocol == IPPROTO_ENCAP) { 2706 goto discard_pkt; 2707 } 2708 icmp_inbound_error_fanout(q, ill, first_mp, 2709 icmph, ipha, iph_hdr_length, hdr_length, 2710 mctl_present, ip_policy, recv_ill, zoneid); 2711 return; 2712 } 2713 } 2714 if ((ipha->ipha_protocol == IPPROTO_ENCAP || 2715 ipha->ipha_protocol == IPPROTO_IPV6) && 2716 icmph->icmph_code == ICMP_FRAGMENTATION_NEEDED && 2717 ii != NULL && 2718 ii->ipsec_in_loopback && 2719 ii->ipsec_in_secure) { 2720 /* 2721 * For IP tunnels that get a looped-back 2722 * ICMP_FRAGMENTATION_NEEDED message, adjust the 2723 * reported new MTU to take into account the IPsec 2724 * headers protecting this configured tunnel. 2725 * 2726 * This allows the tunnel module (tun.c) to blindly 2727 * accept the MTU reported in an ICMP "too big" 2728 * message. 2729 * 2730 * Non-looped back ICMP messages will just be 2731 * handled by the security protocols (if needed), 2732 * and the first subsequent packet will hit this 2733 * path. 2734 */ 2735 icmph->icmph_du_mtu = htons(ntohs(icmph->icmph_du_mtu) - 2736 ipsec_in_extra_length(first_mp)); 2737 } 2738 /* Have to change db_type after any pullupmsg */ 2739 DB_TYPE(mp) = M_CTL; 2740 2741 ip_fanout_proto(q, first_mp, ill, &ripha, 0, mctl_present, 2742 ip_policy, recv_ill, zoneid); 2743 return; 2744 } 2745 /* NOTREACHED */ 2746 discard_pkt: 2747 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 2748 drop_pkt:; 2749 ip1dbg(("icmp_inbound_error_fanout: drop pkt\n")); 2750 freemsg(first_mp); 2751 } 2752 2753 /* 2754 * Common IP options parser. 2755 * 2756 * Setup routine: fill in *optp with options-parsing state, then 2757 * tail-call ipoptp_next to return the first option. 2758 */ 2759 uint8_t 2760 ipoptp_first(ipoptp_t *optp, ipha_t *ipha) 2761 { 2762 uint32_t totallen; /* total length of all options */ 2763 2764 totallen = ipha->ipha_version_and_hdr_length - 2765 (uint8_t)((IP_VERSION << 4) + IP_SIMPLE_HDR_LENGTH_IN_WORDS); 2766 totallen <<= 2; 2767 optp->ipoptp_next = (uint8_t *)(&ipha[1]); 2768 optp->ipoptp_end = optp->ipoptp_next + totallen; 2769 optp->ipoptp_flags = 0; 2770 return (ipoptp_next(optp)); 2771 } 2772 2773 /* 2774 * Common IP options parser: extract next option. 2775 */ 2776 uint8_t 2777 ipoptp_next(ipoptp_t *optp) 2778 { 2779 uint8_t *end = optp->ipoptp_end; 2780 uint8_t *cur = optp->ipoptp_next; 2781 uint8_t opt, len, pointer; 2782 2783 /* 2784 * If cur > end already, then the ipoptp_end or ipoptp_next pointer 2785 * has been corrupted. 2786 */ 2787 ASSERT(cur <= end); 2788 2789 if (cur == end) 2790 return (IPOPT_EOL); 2791 2792 opt = cur[IPOPT_OPTVAL]; 2793 2794 /* 2795 * Skip any NOP options. 2796 */ 2797 while (opt == IPOPT_NOP) { 2798 cur++; 2799 if (cur == end) 2800 return (IPOPT_EOL); 2801 opt = cur[IPOPT_OPTVAL]; 2802 } 2803 2804 if (opt == IPOPT_EOL) 2805 return (IPOPT_EOL); 2806 2807 /* 2808 * Option requiring a length. 2809 */ 2810 if ((cur + 1) >= end) { 2811 optp->ipoptp_flags |= IPOPTP_ERROR; 2812 return (IPOPT_EOL); 2813 } 2814 len = cur[IPOPT_OLEN]; 2815 if (len < 2) { 2816 optp->ipoptp_flags |= IPOPTP_ERROR; 2817 return (IPOPT_EOL); 2818 } 2819 optp->ipoptp_cur = cur; 2820 optp->ipoptp_len = len; 2821 optp->ipoptp_next = cur + len; 2822 if (cur + len > end) { 2823 optp->ipoptp_flags |= IPOPTP_ERROR; 2824 return (IPOPT_EOL); 2825 } 2826 2827 /* 2828 * For the options which require a pointer field, make sure 2829 * its there, and make sure it points to either something 2830 * inside this option, or the end of the option. 2831 */ 2832 switch (opt) { 2833 case IPOPT_RR: 2834 case IPOPT_TS: 2835 case IPOPT_LSRR: 2836 case IPOPT_SSRR: 2837 if (len <= IPOPT_OFFSET) { 2838 optp->ipoptp_flags |= IPOPTP_ERROR; 2839 return (opt); 2840 } 2841 pointer = cur[IPOPT_OFFSET]; 2842 if (pointer - 1 > len) { 2843 optp->ipoptp_flags |= IPOPTP_ERROR; 2844 return (opt); 2845 } 2846 break; 2847 } 2848 2849 /* 2850 * Sanity check the pointer field based on the type of the 2851 * option. 2852 */ 2853 switch (opt) { 2854 case IPOPT_RR: 2855 case IPOPT_SSRR: 2856 case IPOPT_LSRR: 2857 if (pointer < IPOPT_MINOFF_SR) 2858 optp->ipoptp_flags |= IPOPTP_ERROR; 2859 break; 2860 case IPOPT_TS: 2861 if (pointer < IPOPT_MINOFF_IT) 2862 optp->ipoptp_flags |= IPOPTP_ERROR; 2863 /* 2864 * Note that the Internet Timestamp option also 2865 * contains two four bit fields (the Overflow field, 2866 * and the Flag field), which follow the pointer 2867 * field. We don't need to check that these fields 2868 * fall within the length of the option because this 2869 * was implicitely done above. We've checked that the 2870 * pointer value is at least IPOPT_MINOFF_IT, and that 2871 * it falls within the option. Since IPOPT_MINOFF_IT > 2872 * IPOPT_POS_OV_FLG, we don't need the explicit check. 2873 */ 2874 ASSERT(len > IPOPT_POS_OV_FLG); 2875 break; 2876 } 2877 2878 return (opt); 2879 } 2880 2881 /* 2882 * Use the outgoing IP header to create an IP_OPTIONS option the way 2883 * it was passed down from the application. 2884 */ 2885 int 2886 ip_opt_get_user(const ipha_t *ipha, uchar_t *buf) 2887 { 2888 ipoptp_t opts; 2889 const uchar_t *opt; 2890 uint8_t optval; 2891 uint8_t optlen; 2892 uint32_t len = 0; 2893 uchar_t *buf1 = buf; 2894 2895 buf += IP_ADDR_LEN; /* Leave room for final destination */ 2896 len += IP_ADDR_LEN; 2897 bzero(buf1, IP_ADDR_LEN); 2898 2899 /* 2900 * OK to cast away const here, as we don't store through the returned 2901 * opts.ipoptp_cur pointer. 2902 */ 2903 for (optval = ipoptp_first(&opts, (ipha_t *)ipha); 2904 optval != IPOPT_EOL; 2905 optval = ipoptp_next(&opts)) { 2906 int off; 2907 2908 opt = opts.ipoptp_cur; 2909 optlen = opts.ipoptp_len; 2910 switch (optval) { 2911 case IPOPT_SSRR: 2912 case IPOPT_LSRR: 2913 2914 /* 2915 * Insert ipha_dst as the first entry in the source 2916 * route and move down the entries on step. 2917 * The last entry gets placed at buf1. 2918 */ 2919 buf[IPOPT_OPTVAL] = optval; 2920 buf[IPOPT_OLEN] = optlen; 2921 buf[IPOPT_OFFSET] = optlen; 2922 2923 off = optlen - IP_ADDR_LEN; 2924 if (off < 0) { 2925 /* No entries in source route */ 2926 break; 2927 } 2928 /* Last entry in source route */ 2929 bcopy(opt + off, buf1, IP_ADDR_LEN); 2930 off -= IP_ADDR_LEN; 2931 2932 while (off > 0) { 2933 bcopy(opt + off, 2934 buf + off + IP_ADDR_LEN, 2935 IP_ADDR_LEN); 2936 off -= IP_ADDR_LEN; 2937 } 2938 /* ipha_dst into first slot */ 2939 bcopy(&ipha->ipha_dst, 2940 buf + off + IP_ADDR_LEN, 2941 IP_ADDR_LEN); 2942 buf += optlen; 2943 len += optlen; 2944 break; 2945 2946 case IPOPT_COMSEC: 2947 case IPOPT_SECURITY: 2948 /* if passing up a label is not ok, then remove */ 2949 if (is_system_labeled()) 2950 break; 2951 /* FALLTHROUGH */ 2952 default: 2953 bcopy(opt, buf, optlen); 2954 buf += optlen; 2955 len += optlen; 2956 break; 2957 } 2958 } 2959 done: 2960 /* Pad the resulting options */ 2961 while (len & 0x3) { 2962 *buf++ = IPOPT_EOL; 2963 len++; 2964 } 2965 return (len); 2966 } 2967 2968 /* 2969 * Update any record route or timestamp options to include this host. 2970 * Reverse any source route option. 2971 * This routine assumes that the options are well formed i.e. that they 2972 * have already been checked. 2973 */ 2974 static void 2975 icmp_options_update(ipha_t *ipha) 2976 { 2977 ipoptp_t opts; 2978 uchar_t *opt; 2979 uint8_t optval; 2980 ipaddr_t src; /* Our local address */ 2981 ipaddr_t dst; 2982 2983 ip2dbg(("icmp_options_update\n")); 2984 src = ipha->ipha_src; 2985 dst = ipha->ipha_dst; 2986 2987 for (optval = ipoptp_first(&opts, ipha); 2988 optval != IPOPT_EOL; 2989 optval = ipoptp_next(&opts)) { 2990 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 2991 opt = opts.ipoptp_cur; 2992 ip2dbg(("icmp_options_update: opt %d, len %d\n", 2993 optval, opts.ipoptp_len)); 2994 switch (optval) { 2995 int off1, off2; 2996 case IPOPT_SSRR: 2997 case IPOPT_LSRR: 2998 /* 2999 * Reverse the source route. The first entry 3000 * should be the next to last one in the current 3001 * source route (the last entry is our address). 3002 * The last entry should be the final destination. 3003 */ 3004 off1 = IPOPT_MINOFF_SR - 1; 3005 off2 = opt[IPOPT_OFFSET] - IP_ADDR_LEN - 1; 3006 if (off2 < 0) { 3007 /* No entries in source route */ 3008 ip1dbg(( 3009 "icmp_options_update: bad src route\n")); 3010 break; 3011 } 3012 bcopy((char *)opt + off2, &dst, IP_ADDR_LEN); 3013 bcopy(&ipha->ipha_dst, (char *)opt + off2, IP_ADDR_LEN); 3014 bcopy(&dst, &ipha->ipha_dst, IP_ADDR_LEN); 3015 off2 -= IP_ADDR_LEN; 3016 3017 while (off1 < off2) { 3018 bcopy((char *)opt + off1, &src, IP_ADDR_LEN); 3019 bcopy((char *)opt + off2, (char *)opt + off1, 3020 IP_ADDR_LEN); 3021 bcopy(&src, (char *)opt + off2, IP_ADDR_LEN); 3022 off1 += IP_ADDR_LEN; 3023 off2 -= IP_ADDR_LEN; 3024 } 3025 opt[IPOPT_OFFSET] = IPOPT_MINOFF_SR; 3026 break; 3027 } 3028 } 3029 } 3030 3031 /* 3032 * Process received ICMP Redirect messages. 3033 */ 3034 static void 3035 icmp_redirect(ill_t *ill, mblk_t *mp) 3036 { 3037 ipha_t *ipha; 3038 int iph_hdr_length; 3039 icmph_t *icmph; 3040 ipha_t *ipha_err; 3041 ire_t *ire; 3042 ire_t *prev_ire; 3043 ire_t *save_ire; 3044 ipaddr_t src, dst, gateway; 3045 iulp_t ulp_info = { 0 }; 3046 int error; 3047 ip_stack_t *ipst; 3048 3049 ASSERT(ill != NULL); 3050 ipst = ill->ill_ipst; 3051 3052 ipha = (ipha_t *)mp->b_rptr; 3053 iph_hdr_length = IPH_HDR_LENGTH(ipha); 3054 if (((mp->b_wptr - mp->b_rptr) - iph_hdr_length) < 3055 sizeof (icmph_t) + IP_SIMPLE_HDR_LENGTH) { 3056 BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors); 3057 freemsg(mp); 3058 return; 3059 } 3060 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 3061 ipha_err = (ipha_t *)&icmph[1]; 3062 src = ipha->ipha_src; 3063 dst = ipha_err->ipha_dst; 3064 gateway = icmph->icmph_rd_gateway; 3065 /* Make sure the new gateway is reachable somehow. */ 3066 ire = ire_route_lookup(gateway, 0, 0, IRE_INTERFACE, NULL, NULL, 3067 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 3068 /* 3069 * Make sure we had a route for the dest in question and that 3070 * that route was pointing to the old gateway (the source of the 3071 * redirect packet.) 3072 */ 3073 prev_ire = ire_route_lookup(dst, 0, src, 0, NULL, NULL, ALL_ZONES, 3074 NULL, MATCH_IRE_GW, ipst); 3075 /* 3076 * Check that 3077 * the redirect was not from ourselves 3078 * the new gateway and the old gateway are directly reachable 3079 */ 3080 if (!prev_ire || 3081 !ire || 3082 ire->ire_type == IRE_LOCAL) { 3083 BUMP_MIB(&ipst->ips_icmp_mib, icmpInBadRedirects); 3084 freemsg(mp); 3085 if (ire != NULL) 3086 ire_refrele(ire); 3087 if (prev_ire != NULL) 3088 ire_refrele(prev_ire); 3089 return; 3090 } 3091 3092 /* 3093 * Should we use the old ULP info to create the new gateway? From 3094 * a user's perspective, we should inherit the info so that it 3095 * is a "smooth" transition. If we do not do that, then new 3096 * connections going thru the new gateway will have no route metrics, 3097 * which is counter-intuitive to user. From a network point of 3098 * view, this may or may not make sense even though the new gateway 3099 * is still directly connected to us so the route metrics should not 3100 * change much. 3101 * 3102 * But if the old ire_uinfo is not initialized, we do another 3103 * recursive lookup on the dest using the new gateway. There may 3104 * be a route to that. If so, use it to initialize the redirect 3105 * route. 3106 */ 3107 if (prev_ire->ire_uinfo.iulp_set) { 3108 bcopy(&prev_ire->ire_uinfo, &ulp_info, sizeof (iulp_t)); 3109 } else { 3110 ire_t *tmp_ire; 3111 ire_t *sire; 3112 3113 tmp_ire = ire_ftable_lookup(dst, 0, gateway, 0, NULL, &sire, 3114 ALL_ZONES, 0, NULL, 3115 (MATCH_IRE_RECURSIVE | MATCH_IRE_GW | MATCH_IRE_DEFAULT), 3116 ipst); 3117 if (sire != NULL) { 3118 bcopy(&sire->ire_uinfo, &ulp_info, sizeof (iulp_t)); 3119 /* 3120 * If sire != NULL, ire_ftable_lookup() should not 3121 * return a NULL value. 3122 */ 3123 ASSERT(tmp_ire != NULL); 3124 ire_refrele(tmp_ire); 3125 ire_refrele(sire); 3126 } else if (tmp_ire != NULL) { 3127 bcopy(&tmp_ire->ire_uinfo, &ulp_info, 3128 sizeof (iulp_t)); 3129 ire_refrele(tmp_ire); 3130 } 3131 } 3132 if (prev_ire->ire_type == IRE_CACHE) 3133 ire_delete(prev_ire); 3134 ire_refrele(prev_ire); 3135 /* 3136 * TODO: more precise handling for cases 0, 2, 3, the latter two 3137 * require TOS routing 3138 */ 3139 switch (icmph->icmph_code) { 3140 case 0: 3141 case 1: 3142 /* TODO: TOS specificity for cases 2 and 3 */ 3143 case 2: 3144 case 3: 3145 break; 3146 default: 3147 freemsg(mp); 3148 BUMP_MIB(&ipst->ips_icmp_mib, icmpInBadRedirects); 3149 ire_refrele(ire); 3150 return; 3151 } 3152 /* 3153 * Create a Route Association. This will allow us to remember that 3154 * someone we believe told us to use the particular gateway. 3155 */ 3156 save_ire = ire; 3157 ire = ire_create( 3158 (uchar_t *)&dst, /* dest addr */ 3159 (uchar_t *)&ip_g_all_ones, /* mask */ 3160 (uchar_t *)&save_ire->ire_src_addr, /* source addr */ 3161 (uchar_t *)&gateway, /* gateway addr */ 3162 NULL, /* no in_srcaddr */ 3163 &save_ire->ire_max_frag, /* max frag */ 3164 NULL, /* Fast Path header */ 3165 NULL, /* no rfq */ 3166 NULL, /* no stq */ 3167 IRE_HOST, 3168 NULL, 3169 NULL, 3170 NULL, 3171 0, 3172 0, 3173 0, 3174 (RTF_DYNAMIC | RTF_GATEWAY | RTF_HOST), 3175 &ulp_info, 3176 NULL, 3177 NULL, 3178 ipst); 3179 3180 if (ire == NULL) { 3181 freemsg(mp); 3182 ire_refrele(save_ire); 3183 return; 3184 } 3185 error = ire_add(&ire, NULL, NULL, NULL, B_FALSE); 3186 ire_refrele(save_ire); 3187 atomic_inc_32(&ipst->ips_ip_redirect_cnt); 3188 3189 if (error == 0) { 3190 ire_refrele(ire); /* Held in ire_add_v4 */ 3191 /* tell routing sockets that we received a redirect */ 3192 ip_rts_change(RTM_REDIRECT, dst, gateway, IP_HOST_MASK, 0, src, 3193 (RTF_DYNAMIC | RTF_GATEWAY | RTF_HOST), 0, 3194 (RTA_DST | RTA_GATEWAY | RTA_NETMASK | RTA_AUTHOR), ipst); 3195 } 3196 3197 /* 3198 * Delete any existing IRE_HOST type redirect ires for this destination. 3199 * This together with the added IRE has the effect of 3200 * modifying an existing redirect. 3201 */ 3202 prev_ire = ire_ftable_lookup(dst, 0, src, IRE_HOST, NULL, NULL, 3203 ALL_ZONES, 0, NULL, (MATCH_IRE_GW | MATCH_IRE_TYPE), ipst); 3204 if (prev_ire != NULL) { 3205 if (prev_ire ->ire_flags & RTF_DYNAMIC) 3206 ire_delete(prev_ire); 3207 ire_refrele(prev_ire); 3208 } 3209 3210 freemsg(mp); 3211 } 3212 3213 /* 3214 * Generate an ICMP parameter problem message. 3215 */ 3216 static void 3217 icmp_param_problem(queue_t *q, mblk_t *mp, uint8_t ptr, zoneid_t zoneid, 3218 ip_stack_t *ipst) 3219 { 3220 icmph_t icmph; 3221 boolean_t mctl_present; 3222 mblk_t *first_mp; 3223 3224 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 3225 3226 if (!(mp = icmp_pkt_err_ok(mp, ipst))) { 3227 if (mctl_present) 3228 freeb(first_mp); 3229 return; 3230 } 3231 3232 bzero(&icmph, sizeof (icmph_t)); 3233 icmph.icmph_type = ICMP_PARAM_PROBLEM; 3234 icmph.icmph_pp_ptr = ptr; 3235 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutParmProbs); 3236 icmp_pkt(q, first_mp, &icmph, sizeof (icmph_t), mctl_present, zoneid, 3237 ipst); 3238 } 3239 3240 /* 3241 * Build and ship an IPv4 ICMP message using the packet data in mp, and 3242 * the ICMP header pointed to by "stuff". (May be called as writer.) 3243 * Note: assumes that icmp_pkt_err_ok has been called to verify that 3244 * an icmp error packet can be sent. 3245 * Assigns an appropriate source address to the packet. If ipha_dst is 3246 * one of our addresses use it for source. Otherwise pick a source based 3247 * on a route lookup back to ipha_src. 3248 * Note that ipha_src must be set here since the 3249 * packet is likely to arrive on an ill queue in ip_wput() which will 3250 * not set a source address. 3251 */ 3252 static void 3253 icmp_pkt(queue_t *q, mblk_t *mp, void *stuff, size_t len, 3254 boolean_t mctl_present, zoneid_t zoneid, ip_stack_t *ipst) 3255 { 3256 ipaddr_t dst; 3257 icmph_t *icmph; 3258 ipha_t *ipha; 3259 uint_t len_needed; 3260 size_t msg_len; 3261 mblk_t *mp1; 3262 ipaddr_t src; 3263 ire_t *ire; 3264 mblk_t *ipsec_mp; 3265 ipsec_out_t *io = NULL; 3266 boolean_t xmit_if_on = B_FALSE; 3267 3268 if (mctl_present) { 3269 /* 3270 * If it is : 3271 * 3272 * 1) a IPSEC_OUT, then this is caused by outbound 3273 * datagram originating on this host. IPSEC processing 3274 * may or may not have been done. Refer to comments above 3275 * icmp_inbound_error_fanout for details. 3276 * 3277 * 2) a IPSEC_IN if we are generating a icmp_message 3278 * for an incoming datagram destined for us i.e called 3279 * from ip_fanout_send_icmp. 3280 */ 3281 ipsec_info_t *in; 3282 ipsec_mp = mp; 3283 mp = ipsec_mp->b_cont; 3284 3285 in = (ipsec_info_t *)ipsec_mp->b_rptr; 3286 ipha = (ipha_t *)mp->b_rptr; 3287 3288 ASSERT(in->ipsec_info_type == IPSEC_OUT || 3289 in->ipsec_info_type == IPSEC_IN); 3290 3291 if (in->ipsec_info_type == IPSEC_IN) { 3292 /* 3293 * Convert the IPSEC_IN to IPSEC_OUT. 3294 */ 3295 if (!ipsec_in_to_out(ipsec_mp, ipha, NULL)) { 3296 BUMP_MIB(&ipst->ips_ip_mib, 3297 ipIfStatsOutDiscards); 3298 return; 3299 } 3300 io = (ipsec_out_t *)ipsec_mp->b_rptr; 3301 } else { 3302 ASSERT(in->ipsec_info_type == IPSEC_OUT); 3303 io = (ipsec_out_t *)in; 3304 if (io->ipsec_out_xmit_if) 3305 xmit_if_on = B_TRUE; 3306 /* 3307 * Clear out ipsec_out_proc_begin, so we do a fresh 3308 * ire lookup. 3309 */ 3310 io->ipsec_out_proc_begin = B_FALSE; 3311 } 3312 ASSERT(zoneid == io->ipsec_out_zoneid); 3313 ASSERT(zoneid != ALL_ZONES); 3314 } else { 3315 /* 3316 * This is in clear. The icmp message we are building 3317 * here should go out in clear. 3318 * 3319 * Pardon the convolution of it all, but it's easier to 3320 * allocate a "use cleartext" IPSEC_IN message and convert 3321 * it than it is to allocate a new one. 3322 */ 3323 ipsec_in_t *ii; 3324 ASSERT(DB_TYPE(mp) == M_DATA); 3325 ipsec_mp = ipsec_in_alloc(B_TRUE, ipst->ips_netstack); 3326 if (ipsec_mp == NULL) { 3327 freemsg(mp); 3328 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 3329 return; 3330 } 3331 ii = (ipsec_in_t *)ipsec_mp->b_rptr; 3332 3333 /* This is not a secure packet */ 3334 ii->ipsec_in_secure = B_FALSE; 3335 /* 3336 * For trusted extensions using a shared IP address we can 3337 * send using any zoneid. 3338 */ 3339 if (zoneid == ALL_ZONES) 3340 ii->ipsec_in_zoneid = GLOBAL_ZONEID; 3341 else 3342 ii->ipsec_in_zoneid = zoneid; 3343 ipsec_mp->b_cont = mp; 3344 ipha = (ipha_t *)mp->b_rptr; 3345 /* 3346 * Convert the IPSEC_IN to IPSEC_OUT. 3347 */ 3348 if (!ipsec_in_to_out(ipsec_mp, ipha, NULL)) { 3349 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 3350 return; 3351 } 3352 io = (ipsec_out_t *)ipsec_mp->b_rptr; 3353 } 3354 3355 /* Remember our eventual destination */ 3356 dst = ipha->ipha_src; 3357 3358 ire = ire_route_lookup(ipha->ipha_dst, 0, 0, (IRE_LOCAL|IRE_LOOPBACK), 3359 NULL, NULL, zoneid, NULL, MATCH_IRE_TYPE, ipst); 3360 if (ire != NULL && 3361 (ire->ire_zoneid == zoneid || ire->ire_zoneid == ALL_ZONES)) { 3362 src = ipha->ipha_dst; 3363 } else if (!xmit_if_on) { 3364 if (ire != NULL) 3365 ire_refrele(ire); 3366 ire = ire_route_lookup(dst, 0, 0, 0, NULL, NULL, zoneid, NULL, 3367 (MATCH_IRE_DEFAULT|MATCH_IRE_RECURSIVE|MATCH_IRE_ZONEONLY), 3368 ipst); 3369 if (ire == NULL) { 3370 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 3371 freemsg(ipsec_mp); 3372 return; 3373 } 3374 src = ire->ire_src_addr; 3375 } else { 3376 ipif_t *ipif = NULL; 3377 ill_t *ill; 3378 /* 3379 * This must be an ICMP error coming from 3380 * ip_mrtun_forward(). The src addr should 3381 * be equal to the IP-addr of the outgoing 3382 * interface. 3383 */ 3384 if (io == NULL) { 3385 /* This is not a IPSEC_OUT type control msg */ 3386 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 3387 freemsg(ipsec_mp); 3388 return; 3389 } 3390 ill = ill_lookup_on_ifindex(io->ipsec_out_ill_index, B_FALSE, 3391 NULL, NULL, NULL, NULL, ipst); 3392 if (ill != NULL) { 3393 ipif = ipif_get_next_ipif(NULL, ill); 3394 ill_refrele(ill); 3395 } 3396 if (ipif == NULL) { 3397 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 3398 freemsg(ipsec_mp); 3399 return; 3400 } 3401 src = ipif->ipif_src_addr; 3402 ipif_refrele(ipif); 3403 } 3404 3405 if (ire != NULL) 3406 ire_refrele(ire); 3407 3408 /* 3409 * Check if we can send back more then 8 bytes in addition 3410 * to the IP header. We will include as much as 64 bytes. 3411 */ 3412 len_needed = IPH_HDR_LENGTH(ipha); 3413 if (ipha->ipha_protocol == IPPROTO_ENCAP && 3414 (uchar_t *)ipha + len_needed + 1 <= mp->b_wptr) { 3415 len_needed += IPH_HDR_LENGTH(((uchar_t *)ipha + len_needed)); 3416 } 3417 len_needed += ipst->ips_ip_icmp_return; 3418 msg_len = msgdsize(mp); 3419 if (msg_len > len_needed) { 3420 (void) adjmsg(mp, len_needed - msg_len); 3421 msg_len = len_needed; 3422 } 3423 mp1 = allocb(sizeof (icmp_ipha) + len, BPRI_HI); 3424 if (mp1 == NULL) { 3425 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutErrors); 3426 freemsg(ipsec_mp); 3427 return; 3428 } 3429 /* 3430 * On an unlabeled system, dblks don't necessarily have creds. 3431 */ 3432 ASSERT(!is_system_labeled() || DB_CRED(mp) != NULL); 3433 if (DB_CRED(mp) != NULL) 3434 mblk_setcred(mp1, DB_CRED(mp)); 3435 mp1->b_cont = mp; 3436 mp = mp1; 3437 ASSERT(ipsec_mp->b_datap->db_type == M_CTL && 3438 ipsec_mp->b_rptr == (uint8_t *)io && 3439 io->ipsec_out_type == IPSEC_OUT); 3440 ipsec_mp->b_cont = mp; 3441 3442 /* 3443 * Set ipsec_out_icmp_loopback so we can let the ICMP messages this 3444 * node generates be accepted in peace by all on-host destinations. 3445 * If we do NOT assume that all on-host destinations trust 3446 * self-generated ICMP messages, then rework here, ip6.c, and spd.c. 3447 * (Look for ipsec_out_icmp_loopback). 3448 */ 3449 io->ipsec_out_icmp_loopback = B_TRUE; 3450 3451 ipha = (ipha_t *)mp->b_rptr; 3452 mp1->b_wptr = (uchar_t *)ipha + (sizeof (icmp_ipha) + len); 3453 *ipha = icmp_ipha; 3454 ipha->ipha_src = src; 3455 ipha->ipha_dst = dst; 3456 ipha->ipha_ttl = ipst->ips_ip_def_ttl; 3457 msg_len += sizeof (icmp_ipha) + len; 3458 if (msg_len > IP_MAXPACKET) { 3459 (void) adjmsg(mp, IP_MAXPACKET - msg_len); 3460 msg_len = IP_MAXPACKET; 3461 } 3462 ipha->ipha_length = htons((uint16_t)msg_len); 3463 icmph = (icmph_t *)&ipha[1]; 3464 bcopy(stuff, icmph, len); 3465 icmph->icmph_checksum = 0; 3466 icmph->icmph_checksum = IP_CSUM(mp, (int32_t)sizeof (ipha_t), 0); 3467 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutMsgs); 3468 put(q, ipsec_mp); 3469 } 3470 3471 /* 3472 * Determine if an ICMP error packet can be sent given the rate limit. 3473 * The limit consists of an average frequency (icmp_pkt_err_interval measured 3474 * in milliseconds) and a burst size. Burst size number of packets can 3475 * be sent arbitrarely closely spaced. 3476 * The state is tracked using two variables to implement an approximate 3477 * token bucket filter: 3478 * icmp_pkt_err_last - lbolt value when the last burst started 3479 * icmp_pkt_err_sent - number of packets sent in current burst 3480 */ 3481 boolean_t 3482 icmp_err_rate_limit(ip_stack_t *ipst) 3483 { 3484 clock_t now = TICK_TO_MSEC(lbolt); 3485 uint_t refilled; /* Number of packets refilled in tbf since last */ 3486 /* Guard against changes by loading into local variable */ 3487 uint_t err_interval = ipst->ips_ip_icmp_err_interval; 3488 3489 if (err_interval == 0) 3490 return (B_FALSE); 3491 3492 if (ipst->ips_icmp_pkt_err_last > now) { 3493 /* 100HZ lbolt in ms for 32bit arch wraps every 49.7 days */ 3494 ipst->ips_icmp_pkt_err_last = 0; 3495 ipst->ips_icmp_pkt_err_sent = 0; 3496 } 3497 /* 3498 * If we are in a burst update the token bucket filter. 3499 * Update the "last" time to be close to "now" but make sure 3500 * we don't loose precision. 3501 */ 3502 if (ipst->ips_icmp_pkt_err_sent != 0) { 3503 refilled = (now - ipst->ips_icmp_pkt_err_last)/err_interval; 3504 if (refilled > ipst->ips_icmp_pkt_err_sent) { 3505 ipst->ips_icmp_pkt_err_sent = 0; 3506 } else { 3507 ipst->ips_icmp_pkt_err_sent -= refilled; 3508 ipst->ips_icmp_pkt_err_last += refilled * err_interval; 3509 } 3510 } 3511 if (ipst->ips_icmp_pkt_err_sent == 0) { 3512 /* Start of new burst */ 3513 ipst->ips_icmp_pkt_err_last = now; 3514 } 3515 if (ipst->ips_icmp_pkt_err_sent < ipst->ips_ip_icmp_err_burst) { 3516 ipst->ips_icmp_pkt_err_sent++; 3517 ip1dbg(("icmp_err_rate_limit: %d sent in burst\n", 3518 ipst->ips_icmp_pkt_err_sent)); 3519 return (B_FALSE); 3520 } 3521 ip1dbg(("icmp_err_rate_limit: dropped\n")); 3522 return (B_TRUE); 3523 } 3524 3525 /* 3526 * Check if it is ok to send an IPv4 ICMP error packet in 3527 * response to the IPv4 packet in mp. 3528 * Free the message and return null if no 3529 * ICMP error packet should be sent. 3530 */ 3531 static mblk_t * 3532 icmp_pkt_err_ok(mblk_t *mp, ip_stack_t *ipst) 3533 { 3534 icmph_t *icmph; 3535 ipha_t *ipha; 3536 uint_t len_needed; 3537 ire_t *src_ire; 3538 ire_t *dst_ire; 3539 3540 if (!mp) 3541 return (NULL); 3542 ipha = (ipha_t *)mp->b_rptr; 3543 if (ip_csum_hdr(ipha)) { 3544 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsInCksumErrs); 3545 freemsg(mp); 3546 return (NULL); 3547 } 3548 src_ire = ire_ctable_lookup(ipha->ipha_dst, 0, IRE_BROADCAST, 3549 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 3550 dst_ire = ire_ctable_lookup(ipha->ipha_src, 0, IRE_BROADCAST, 3551 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 3552 if (src_ire != NULL || dst_ire != NULL || 3553 CLASSD(ipha->ipha_dst) || 3554 CLASSD(ipha->ipha_src) || 3555 (ntohs(ipha->ipha_fragment_offset_and_flags) & IPH_OFFSET)) { 3556 /* Note: only errors to the fragment with offset 0 */ 3557 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDrops); 3558 freemsg(mp); 3559 if (src_ire != NULL) 3560 ire_refrele(src_ire); 3561 if (dst_ire != NULL) 3562 ire_refrele(dst_ire); 3563 return (NULL); 3564 } 3565 if (ipha->ipha_protocol == IPPROTO_ICMP) { 3566 /* 3567 * Check the ICMP type. RFC 1122 sez: don't send ICMP 3568 * errors in response to any ICMP errors. 3569 */ 3570 len_needed = IPH_HDR_LENGTH(ipha) + ICMPH_SIZE; 3571 if (mp->b_wptr - mp->b_rptr < len_needed) { 3572 if (!pullupmsg(mp, len_needed)) { 3573 BUMP_MIB(&ipst->ips_icmp_mib, icmpInErrors); 3574 freemsg(mp); 3575 return (NULL); 3576 } 3577 ipha = (ipha_t *)mp->b_rptr; 3578 } 3579 icmph = (icmph_t *) 3580 (&((char *)ipha)[IPH_HDR_LENGTH(ipha)]); 3581 switch (icmph->icmph_type) { 3582 case ICMP_DEST_UNREACHABLE: 3583 case ICMP_SOURCE_QUENCH: 3584 case ICMP_TIME_EXCEEDED: 3585 case ICMP_PARAM_PROBLEM: 3586 case ICMP_REDIRECT: 3587 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDrops); 3588 freemsg(mp); 3589 return (NULL); 3590 default: 3591 break; 3592 } 3593 } 3594 /* 3595 * If this is a labeled system, then check to see if we're allowed to 3596 * send a response to this particular sender. If not, then just drop. 3597 */ 3598 if (is_system_labeled() && !tsol_can_reply_error(mp)) { 3599 ip2dbg(("icmp_pkt_err_ok: can't respond to packet\n")); 3600 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDrops); 3601 freemsg(mp); 3602 return (NULL); 3603 } 3604 if (icmp_err_rate_limit(ipst)) { 3605 /* 3606 * Only send ICMP error packets every so often. 3607 * This should be done on a per port/source basis, 3608 * but for now this will suffice. 3609 */ 3610 freemsg(mp); 3611 return (NULL); 3612 } 3613 return (mp); 3614 } 3615 3616 /* 3617 * Generate an ICMP redirect message. 3618 */ 3619 static void 3620 icmp_send_redirect(queue_t *q, mblk_t *mp, ipaddr_t gateway, ip_stack_t *ipst) 3621 { 3622 icmph_t icmph; 3623 3624 /* 3625 * We are called from ip_rput where we could 3626 * not have attached an IPSEC_IN. 3627 */ 3628 ASSERT(mp->b_datap->db_type == M_DATA); 3629 3630 if (!(mp = icmp_pkt_err_ok(mp, ipst))) { 3631 return; 3632 } 3633 3634 bzero(&icmph, sizeof (icmph_t)); 3635 icmph.icmph_type = ICMP_REDIRECT; 3636 icmph.icmph_code = 1; 3637 icmph.icmph_rd_gateway = gateway; 3638 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutRedirects); 3639 /* Redirects sent by router, and router is global zone */ 3640 icmp_pkt(q, mp, &icmph, sizeof (icmph_t), B_FALSE, GLOBAL_ZONEID, ipst); 3641 } 3642 3643 /* 3644 * Generate an ICMP time exceeded message. 3645 */ 3646 void 3647 icmp_time_exceeded(queue_t *q, mblk_t *mp, uint8_t code, zoneid_t zoneid, 3648 ip_stack_t *ipst) 3649 { 3650 icmph_t icmph; 3651 boolean_t mctl_present; 3652 mblk_t *first_mp; 3653 3654 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 3655 3656 if (!(mp = icmp_pkt_err_ok(mp, ipst))) { 3657 if (mctl_present) 3658 freeb(first_mp); 3659 return; 3660 } 3661 3662 bzero(&icmph, sizeof (icmph_t)); 3663 icmph.icmph_type = ICMP_TIME_EXCEEDED; 3664 icmph.icmph_code = code; 3665 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutTimeExcds); 3666 icmp_pkt(q, first_mp, &icmph, sizeof (icmph_t), mctl_present, zoneid, 3667 ipst); 3668 } 3669 3670 /* 3671 * Generate an ICMP unreachable message. 3672 */ 3673 void 3674 icmp_unreachable(queue_t *q, mblk_t *mp, uint8_t code, zoneid_t zoneid, 3675 ip_stack_t *ipst) 3676 { 3677 icmph_t icmph; 3678 mblk_t *first_mp; 3679 boolean_t mctl_present; 3680 3681 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 3682 3683 if (!(mp = icmp_pkt_err_ok(mp, ipst))) { 3684 if (mctl_present) 3685 freeb(first_mp); 3686 return; 3687 } 3688 3689 bzero(&icmph, sizeof (icmph_t)); 3690 icmph.icmph_type = ICMP_DEST_UNREACHABLE; 3691 icmph.icmph_code = code; 3692 BUMP_MIB(&ipst->ips_icmp_mib, icmpOutDestUnreachs); 3693 ip2dbg(("send icmp destination unreachable code %d\n", code)); 3694 icmp_pkt(q, first_mp, (char *)&icmph, sizeof (icmph_t), mctl_present, 3695 zoneid, ipst); 3696 } 3697 3698 /* 3699 * Attempt to start recovery of an IPv4 interface that's been shut down as a 3700 * duplicate. As long as someone else holds the address, the interface will 3701 * stay down. When that conflict goes away, the interface is brought back up. 3702 * This is done so that accidental shutdowns of addresses aren't made 3703 * permanent. Your server will recover from a failure. 3704 * 3705 * For DHCP, recovery is not done in the kernel. Instead, it's handled by a 3706 * user space process (dhcpagent). 3707 * 3708 * Recovery completes if ARP reports that the address is now ours (via 3709 * AR_CN_READY). In that case, we go to ip_arp_excl to finish the operation. 3710 * 3711 * This function is entered on a timer expiry; the ID is in ipif_recovery_id. 3712 */ 3713 static void 3714 ipif_dup_recovery(void *arg) 3715 { 3716 ipif_t *ipif = arg; 3717 ill_t *ill = ipif->ipif_ill; 3718 mblk_t *arp_add_mp; 3719 mblk_t *arp_del_mp; 3720 area_t *area; 3721 ip_stack_t *ipst = ill->ill_ipst; 3722 3723 ipif->ipif_recovery_id = 0; 3724 3725 /* 3726 * No lock needed for moving or condemned check, as this is just an 3727 * optimization. 3728 */ 3729 if (ill->ill_arp_closing || !(ipif->ipif_flags & IPIF_DUPLICATE) || 3730 (ipif->ipif_flags & IPIF_POINTOPOINT) || 3731 (ipif->ipif_state_flags & (IPIF_MOVING | IPIF_CONDEMNED))) { 3732 /* No reason to try to bring this address back. */ 3733 return; 3734 } 3735 3736 if ((arp_add_mp = ipif_area_alloc(ipif)) == NULL) 3737 goto alloc_fail; 3738 3739 if (ipif->ipif_arp_del_mp == NULL) { 3740 if ((arp_del_mp = ipif_ared_alloc(ipif)) == NULL) 3741 goto alloc_fail; 3742 ipif->ipif_arp_del_mp = arp_del_mp; 3743 } 3744 3745 /* Setting the 'unverified' flag restarts DAD */ 3746 area = (area_t *)arp_add_mp->b_rptr; 3747 area->area_flags = ACE_F_PERMANENT | ACE_F_PUBLISH | ACE_F_MYADDR | 3748 ACE_F_UNVERIFIED; 3749 putnext(ill->ill_rq, arp_add_mp); 3750 return; 3751 3752 alloc_fail: 3753 /* 3754 * On allocation failure, just restart the timer. Note that the ipif 3755 * is down here, so no other thread could be trying to start a recovery 3756 * timer. The ill_lock protects the condemned flag and the recovery 3757 * timer ID. 3758 */ 3759 freemsg(arp_add_mp); 3760 mutex_enter(&ill->ill_lock); 3761 if (ipst->ips_ip_dup_recovery > 0 && ipif->ipif_recovery_id == 0 && 3762 !(ipif->ipif_state_flags & IPIF_CONDEMNED)) { 3763 ipif->ipif_recovery_id = timeout(ipif_dup_recovery, ipif, 3764 MSEC_TO_TICK(ipst->ips_ip_dup_recovery)); 3765 } 3766 mutex_exit(&ill->ill_lock); 3767 } 3768 3769 /* 3770 * This is for exclusive changes due to ARP. Either tear down an interface due 3771 * to AR_CN_FAILED and AR_CN_BOGON, or bring one up for successful recovery. 3772 */ 3773 /* ARGSUSED */ 3774 static void 3775 ip_arp_excl(ipsq_t *ipsq, queue_t *rq, mblk_t *mp, void *dummy_arg) 3776 { 3777 ill_t *ill = rq->q_ptr; 3778 arh_t *arh; 3779 ipaddr_t src; 3780 ipif_t *ipif; 3781 char ibuf[LIFNAMSIZ + 10]; /* 10 digits for logical i/f number */ 3782 char hbuf[MAC_STR_LEN]; 3783 char sbuf[INET_ADDRSTRLEN]; 3784 const char *failtype; 3785 boolean_t bring_up; 3786 ip_stack_t *ipst = ill->ill_ipst; 3787 3788 switch (((arcn_t *)mp->b_rptr)->arcn_code) { 3789 case AR_CN_READY: 3790 failtype = NULL; 3791 bring_up = B_TRUE; 3792 break; 3793 case AR_CN_FAILED: 3794 failtype = "in use"; 3795 bring_up = B_FALSE; 3796 break; 3797 default: 3798 failtype = "claimed"; 3799 bring_up = B_FALSE; 3800 break; 3801 } 3802 3803 arh = (arh_t *)mp->b_cont->b_rptr; 3804 bcopy((char *)&arh[1] + arh->arh_hlen, &src, IP_ADDR_LEN); 3805 3806 /* Handle failures due to probes */ 3807 if (src == 0) { 3808 bcopy((char *)&arh[1] + 2 * arh->arh_hlen + IP_ADDR_LEN, &src, 3809 IP_ADDR_LEN); 3810 } 3811 3812 (void) strlcpy(ibuf, ill->ill_name, sizeof (ibuf)); 3813 (void) mac_colon_addr((uint8_t *)(arh + 1), arh->arh_hlen, hbuf, 3814 sizeof (hbuf)); 3815 (void) ip_dot_addr(src, sbuf); 3816 for (ipif = ill->ill_ipif; ipif != NULL; ipif = ipif->ipif_next) { 3817 3818 if ((ipif->ipif_flags & IPIF_POINTOPOINT) || 3819 ipif->ipif_lcl_addr != src) { 3820 continue; 3821 } 3822 3823 /* 3824 * If we failed on a recovery probe, then restart the timer to 3825 * try again later. 3826 */ 3827 if (!bring_up && (ipif->ipif_flags & IPIF_DUPLICATE) && 3828 !(ipif->ipif_flags & (IPIF_DHCPRUNNING|IPIF_TEMPORARY)) && 3829 ill->ill_net_type == IRE_IF_RESOLVER && 3830 !(ipif->ipif_state_flags & IPIF_CONDEMNED) && 3831 ipst->ips_ip_dup_recovery > 0 && 3832 ipif->ipif_recovery_id == 0) { 3833 ipif->ipif_recovery_id = timeout(ipif_dup_recovery, 3834 ipif, MSEC_TO_TICK(ipst->ips_ip_dup_recovery)); 3835 continue; 3836 } 3837 3838 /* 3839 * If what we're trying to do has already been done, then do 3840 * nothing. 3841 */ 3842 if (bring_up == ((ipif->ipif_flags & IPIF_UP) != 0)) 3843 continue; 3844 3845 if (ipif->ipif_id != 0) { 3846 (void) snprintf(ibuf + ill->ill_name_length - 1, 3847 sizeof (ibuf) - ill->ill_name_length + 1, ":%d", 3848 ipif->ipif_id); 3849 } 3850 if (failtype == NULL) { 3851 cmn_err(CE_NOTE, "recovered address %s on %s", sbuf, 3852 ibuf); 3853 } else { 3854 cmn_err(CE_WARN, "%s has duplicate address %s (%s " 3855 "by %s); disabled", ibuf, sbuf, failtype, hbuf); 3856 } 3857 3858 if (bring_up) { 3859 ASSERT(ill->ill_dl_up); 3860 /* 3861 * Free up the ARP delete message so we can allocate 3862 * a fresh one through the normal path. 3863 */ 3864 freemsg(ipif->ipif_arp_del_mp); 3865 ipif->ipif_arp_del_mp = NULL; 3866 if (ipif_resolver_up(ipif, Res_act_initial) != 3867 EINPROGRESS) { 3868 ipif->ipif_addr_ready = 1; 3869 (void) ipif_up_done(ipif); 3870 } 3871 continue; 3872 } 3873 3874 mutex_enter(&ill->ill_lock); 3875 ASSERT(!(ipif->ipif_flags & IPIF_DUPLICATE)); 3876 ipif->ipif_flags |= IPIF_DUPLICATE; 3877 ill->ill_ipif_dup_count++; 3878 mutex_exit(&ill->ill_lock); 3879 /* 3880 * Already exclusive on the ill; no need to handle deferred 3881 * processing here. 3882 */ 3883 (void) ipif_down(ipif, NULL, NULL); 3884 ipif_down_tail(ipif); 3885 mutex_enter(&ill->ill_lock); 3886 if (!(ipif->ipif_flags & (IPIF_DHCPRUNNING|IPIF_TEMPORARY)) && 3887 ill->ill_net_type == IRE_IF_RESOLVER && 3888 !(ipif->ipif_state_flags & IPIF_CONDEMNED) && 3889 ipst->ips_ip_dup_recovery > 0) { 3890 ipif->ipif_recovery_id = timeout(ipif_dup_recovery, 3891 ipif, MSEC_TO_TICK(ipst->ips_ip_dup_recovery)); 3892 } 3893 mutex_exit(&ill->ill_lock); 3894 } 3895 freemsg(mp); 3896 } 3897 3898 /* ARGSUSED */ 3899 static void 3900 ip_arp_defend(ipsq_t *ipsq, queue_t *rq, mblk_t *mp, void *dummy_arg) 3901 { 3902 ill_t *ill = rq->q_ptr; 3903 arh_t *arh; 3904 ipaddr_t src; 3905 ipif_t *ipif; 3906 3907 arh = (arh_t *)mp->b_cont->b_rptr; 3908 bcopy((char *)&arh[1] + arh->arh_hlen, &src, IP_ADDR_LEN); 3909 for (ipif = ill->ill_ipif; ipif != NULL; ipif = ipif->ipif_next) { 3910 if ((ipif->ipif_flags & IPIF_UP) && ipif->ipif_lcl_addr == src) 3911 (void) ipif_resolver_up(ipif, Res_act_defend); 3912 } 3913 freemsg(mp); 3914 } 3915 3916 /* 3917 * News from ARP. ARP sends notification of interesting events down 3918 * to its clients using M_CTL messages with the interesting ARP packet 3919 * attached via b_cont. 3920 * The interesting event from a device comes up the corresponding ARP-IP-DEV 3921 * queue as opposed to ARP sending the message to all the clients, i.e. all 3922 * its ARP-IP-DEV instances. Thus, for AR_CN_ANNOUNCE, we must walk the cache 3923 * table if a cache IRE is found to delete all the entries for the address in 3924 * the packet. 3925 */ 3926 static void 3927 ip_arp_news(queue_t *q, mblk_t *mp) 3928 { 3929 arcn_t *arcn; 3930 arh_t *arh; 3931 ire_t *ire = NULL; 3932 char hbuf[MAC_STR_LEN]; 3933 char sbuf[INET_ADDRSTRLEN]; 3934 ipaddr_t src; 3935 in6_addr_t v6src; 3936 boolean_t isv6 = B_FALSE; 3937 ipif_t *ipif; 3938 ill_t *ill; 3939 ip_stack_t *ipst; 3940 3941 if (CONN_Q(q)) { 3942 conn_t *connp = Q_TO_CONN(q); 3943 3944 ipst = connp->conn_netstack->netstack_ip; 3945 } else { 3946 ill_t *ill = (ill_t *)q->q_ptr; 3947 3948 ipst = ill->ill_ipst; 3949 } 3950 3951 if ((mp->b_wptr - mp->b_rptr) < sizeof (arcn_t) || !mp->b_cont) { 3952 if (q->q_next) { 3953 putnext(q, mp); 3954 } else 3955 freemsg(mp); 3956 return; 3957 } 3958 arh = (arh_t *)mp->b_cont->b_rptr; 3959 /* Is it one we are interested in? */ 3960 if (BE16_TO_U16(arh->arh_proto) == IP6_DL_SAP) { 3961 isv6 = B_TRUE; 3962 bcopy((char *)&arh[1] + (arh->arh_hlen & 0xFF), &v6src, 3963 IPV6_ADDR_LEN); 3964 } else if (BE16_TO_U16(arh->arh_proto) == IP_ARP_PROTO_TYPE) { 3965 bcopy((char *)&arh[1] + (arh->arh_hlen & 0xFF), &src, 3966 IP_ADDR_LEN); 3967 } else { 3968 freemsg(mp); 3969 return; 3970 } 3971 3972 ill = q->q_ptr; 3973 3974 arcn = (arcn_t *)mp->b_rptr; 3975 switch (arcn->arcn_code) { 3976 case AR_CN_BOGON: 3977 /* 3978 * Someone is sending ARP packets with a source protocol 3979 * address that we have published and for which we believe our 3980 * entry is authoritative and (when ill_arp_extend is set) 3981 * verified to be unique on the network. 3982 * 3983 * The ARP module internally handles the cases where the sender 3984 * is just probing (for DAD) and where the hardware address of 3985 * a non-authoritative entry has changed. Thus, these are the 3986 * real conflicts, and we have to do resolution. 3987 * 3988 * We back away quickly from the address if it's from DHCP or 3989 * otherwise temporary and hasn't been used recently (or at 3990 * all). We'd like to include "deprecated" addresses here as 3991 * well (as there's no real reason to defend something we're 3992 * discarding), but IPMP "reuses" this flag to mean something 3993 * other than the standard meaning. 3994 * 3995 * If the ARP module above is not extended (meaning that it 3996 * doesn't know how to defend the address), then we just log 3997 * the problem as we always did and continue on. It's not 3998 * right, but there's little else we can do, and those old ATM 3999 * users are going away anyway. 4000 */ 4001 (void) mac_colon_addr((uint8_t *)(arh + 1), arh->arh_hlen, 4002 hbuf, sizeof (hbuf)); 4003 (void) ip_dot_addr(src, sbuf); 4004 if (isv6) { 4005 ire = ire_cache_lookup_v6(&v6src, ALL_ZONES, NULL, 4006 ipst); 4007 } else { 4008 ire = ire_cache_lookup(src, ALL_ZONES, NULL, ipst); 4009 } 4010 if (ire != NULL && IRE_IS_LOCAL(ire)) { 4011 uint32_t now; 4012 uint32_t maxage; 4013 clock_t lused; 4014 uint_t maxdefense; 4015 uint_t defs; 4016 4017 /* 4018 * First, figure out if this address hasn't been used 4019 * in a while. If it hasn't, then it's a better 4020 * candidate for abandoning. 4021 */ 4022 ipif = ire->ire_ipif; 4023 ASSERT(ipif != NULL); 4024 now = gethrestime_sec(); 4025 maxage = now - ire->ire_create_time; 4026 if (maxage > ipst->ips_ip_max_temp_idle) 4027 maxage = ipst->ips_ip_max_temp_idle; 4028 lused = drv_hztousec(ddi_get_lbolt() - 4029 ire->ire_last_used_time) / MICROSEC + 1; 4030 if (lused >= maxage && (ipif->ipif_flags & 4031 (IPIF_DHCPRUNNING | IPIF_TEMPORARY))) 4032 maxdefense = ipst->ips_ip_max_temp_defend; 4033 else 4034 maxdefense = ipst->ips_ip_max_defend; 4035 4036 /* 4037 * Now figure out how many times we've defended 4038 * ourselves. Ignore defenses that happened long in 4039 * the past. 4040 */ 4041 mutex_enter(&ire->ire_lock); 4042 if ((defs = ire->ire_defense_count) > 0 && 4043 now - ire->ire_defense_time > 4044 ipst->ips_ip_defend_interval) { 4045 ire->ire_defense_count = defs = 0; 4046 } 4047 ire->ire_defense_count++; 4048 ire->ire_defense_time = now; 4049 mutex_exit(&ire->ire_lock); 4050 ill_refhold(ill); 4051 ire_refrele(ire); 4052 4053 /* 4054 * If we've defended ourselves too many times already, 4055 * then give up and tear down the interface(s) using 4056 * this address. Otherwise, defend by sending out a 4057 * gratuitous ARP. 4058 */ 4059 if (defs >= maxdefense && ill->ill_arp_extend) { 4060 (void) qwriter_ip(NULL, ill, q, mp, 4061 ip_arp_excl, CUR_OP, B_FALSE); 4062 } else { 4063 cmn_err(CE_WARN, 4064 "node %s is using our IP address %s on %s", 4065 hbuf, sbuf, ill->ill_name); 4066 /* 4067 * If this is an old (ATM) ARP module, then 4068 * don't try to defend the address. Remain 4069 * compatible with the old behavior. Defend 4070 * only with new ARP. 4071 */ 4072 if (ill->ill_arp_extend) { 4073 (void) qwriter_ip(NULL, ill, q, mp, 4074 ip_arp_defend, CUR_OP, B_FALSE); 4075 } else { 4076 ill_refrele(ill); 4077 } 4078 } 4079 return; 4080 } 4081 cmn_err(CE_WARN, 4082 "proxy ARP problem? Node '%s' is using %s on %s", 4083 hbuf, sbuf, ill->ill_name); 4084 if (ire != NULL) 4085 ire_refrele(ire); 4086 break; 4087 case AR_CN_ANNOUNCE: 4088 if (isv6) { 4089 /* 4090 * For XRESOLV interfaces. 4091 * Delete the IRE cache entry and NCE for this 4092 * v6 address 4093 */ 4094 ip_ire_clookup_and_delete_v6(&v6src, ipst); 4095 /* 4096 * If v6src is a non-zero, it's a router address 4097 * as below. Do the same sort of thing to clean 4098 * out off-net IRE_CACHE entries that go through 4099 * the router. 4100 */ 4101 if (!IN6_IS_ADDR_UNSPECIFIED(&v6src)) { 4102 ire_walk_v6(ire_delete_cache_gw_v6, 4103 (char *)&v6src, ALL_ZONES, ipst); 4104 } 4105 } else { 4106 nce_hw_map_t hwm; 4107 4108 /* 4109 * ARP gives us a copy of any packet where it thinks 4110 * the address has changed, so that we can update our 4111 * caches. We're responsible for caching known answers 4112 * in the current design. We check whether the 4113 * hardware address really has changed in all of our 4114 * entries that have cached this mapping, and if so, we 4115 * blow them away. This way we will immediately pick 4116 * up the rare case of a host changing hardware 4117 * address. 4118 */ 4119 if (src == 0) 4120 break; 4121 hwm.hwm_addr = src; 4122 hwm.hwm_hwlen = arh->arh_hlen; 4123 hwm.hwm_hwaddr = (uchar_t *)(arh + 1); 4124 ndp_walk_common(ipst->ips_ndp4, NULL, 4125 (pfi_t)nce_delete_hw_changed, &hwm, ALL_ZONES); 4126 } 4127 break; 4128 case AR_CN_READY: 4129 /* No external v6 resolver has a contract to use this */ 4130 if (isv6) 4131 break; 4132 /* If the link is down, we'll retry this later */ 4133 if (!(ill->ill_phyint->phyint_flags & PHYI_RUNNING)) 4134 break; 4135 ipif = ipif_lookup_addr(src, ill, ALL_ZONES, NULL, NULL, 4136 NULL, NULL, ipst); 4137 if (ipif != NULL) { 4138 /* 4139 * If this is a duplicate recovery, then we now need to 4140 * go exclusive to bring this thing back up. 4141 */ 4142 if ((ipif->ipif_flags & (IPIF_UP|IPIF_DUPLICATE)) == 4143 IPIF_DUPLICATE) { 4144 ipif_refrele(ipif); 4145 ill_refhold(ill); 4146 (void) qwriter_ip(NULL, ill, q, mp, 4147 ip_arp_excl, CUR_OP, B_FALSE); 4148 return; 4149 } 4150 /* 4151 * If this is the first notice that this address is 4152 * ready, then let the user know now. 4153 */ 4154 if ((ipif->ipif_flags & IPIF_UP) && 4155 !ipif->ipif_addr_ready) { 4156 ipif_mask_reply(ipif); 4157 ip_rts_ifmsg(ipif); 4158 ip_rts_newaddrmsg(RTM_ADD, 0, ipif); 4159 sctp_update_ipif(ipif, SCTP_IPIF_UP); 4160 } 4161 ipif->ipif_addr_ready = 1; 4162 ipif_refrele(ipif); 4163 } 4164 ire = ire_cache_lookup(src, ALL_ZONES, MBLK_GETLABEL(mp), ipst); 4165 if (ire != NULL) { 4166 ire->ire_defense_count = 0; 4167 ire_refrele(ire); 4168 } 4169 break; 4170 case AR_CN_FAILED: 4171 /* No external v6 resolver has a contract to use this */ 4172 if (isv6) 4173 break; 4174 ill_refhold(ill); 4175 (void) qwriter_ip(NULL, ill, q, mp, ip_arp_excl, CUR_OP, 4176 B_FALSE); 4177 return; 4178 } 4179 freemsg(mp); 4180 } 4181 4182 /* 4183 * Create a mblk suitable for carrying the interface index and/or source link 4184 * address. This mblk is tagged as an M_CTL and is sent to ULP. This is used 4185 * when the IP_RECVIF and/or IP_RECVSLLA socket option is set by the user 4186 * application. 4187 */ 4188 mblk_t * 4189 ip_add_info(mblk_t *data_mp, ill_t *ill, uint_t flags, zoneid_t zoneid, 4190 ip_stack_t *ipst) 4191 { 4192 mblk_t *mp; 4193 ip_pktinfo_t *pinfo; 4194 ipha_t *ipha; 4195 struct ether_header *pether; 4196 4197 mp = allocb(sizeof (ip_pktinfo_t), BPRI_MED); 4198 if (mp == NULL) { 4199 ip1dbg(("ip_add_info: allocation failure.\n")); 4200 return (data_mp); 4201 } 4202 4203 ipha = (ipha_t *)data_mp->b_rptr; 4204 pinfo = (ip_pktinfo_t *)mp->b_rptr; 4205 bzero(pinfo, sizeof (ip_pktinfo_t)); 4206 pinfo->ip_pkt_flags = (uchar_t)flags; 4207 pinfo->ip_pkt_ulp_type = IN_PKTINFO; /* Tell ULP what type of info */ 4208 4209 if (flags & (IPF_RECVIF | IPF_RECVADDR)) 4210 pinfo->ip_pkt_ifindex = ill->ill_phyint->phyint_ifindex; 4211 if (flags & IPF_RECVADDR) { 4212 ipif_t *ipif; 4213 ire_t *ire; 4214 4215 /* 4216 * Only valid for V4 4217 */ 4218 ASSERT((ipha->ipha_version_and_hdr_length & 0xf0) == 4219 (IPV4_VERSION << 4)); 4220 4221 ipif = ipif_get_next_ipif(NULL, ill); 4222 if (ipif != NULL) { 4223 /* 4224 * Since a decision has already been made to deliver the 4225 * packet, there is no need to test for SECATTR and 4226 * ZONEONLY. 4227 */ 4228 ire = ire_ctable_lookup(ipha->ipha_dst, 0, 0, ipif, 4229 zoneid, NULL, MATCH_IRE_ILL_GROUP, ipst); 4230 if (ire == NULL) { 4231 /* 4232 * packet must have come on a different 4233 * interface. 4234 * Since a decision has already been made to 4235 * deliver the packet, there is no need to test 4236 * for SECATTR and ZONEONLY. 4237 */ 4238 ire = ire_ctable_lookup(ipha->ipha_dst, 0, 0, 4239 ipif, zoneid, NULL, NULL, ipst); 4240 } 4241 4242 if (ire == NULL) { 4243 /* 4244 * This is either a multicast packet or 4245 * the address has been removed since 4246 * the packet was received. 4247 * Return INADDR_ANY so that normal source 4248 * selection occurs for the response. 4249 */ 4250 4251 pinfo->ip_pkt_match_addr.s_addr = INADDR_ANY; 4252 } else { 4253 ASSERT(ire->ire_type != IRE_CACHE); 4254 pinfo->ip_pkt_match_addr.s_addr = 4255 ire->ire_src_addr; 4256 ire_refrele(ire); 4257 } 4258 ipif_refrele(ipif); 4259 } else { 4260 pinfo->ip_pkt_match_addr.s_addr = INADDR_ANY; 4261 } 4262 } 4263 4264 pether = (struct ether_header *)((char *)ipha 4265 - sizeof (struct ether_header)); 4266 /* 4267 * Make sure the interface is an ethernet type, since this option 4268 * is currently supported only on this type of interface. Also make 4269 * sure we are pointing correctly above db_base. 4270 */ 4271 4272 if ((flags & IPF_RECVSLLA) && 4273 ((uchar_t *)pether >= data_mp->b_datap->db_base) && 4274 (ill->ill_type == IFT_ETHER) && 4275 (ill->ill_net_type == IRE_IF_RESOLVER)) { 4276 4277 pinfo->ip_pkt_slla.sdl_type = IFT_ETHER; 4278 bcopy((uchar_t *)pether->ether_shost.ether_addr_octet, 4279 (uchar_t *)pinfo->ip_pkt_slla.sdl_data, ETHERADDRL); 4280 } else { 4281 /* 4282 * Clear the bit. Indicate to upper layer that IP is not 4283 * sending this ancillary info. 4284 */ 4285 pinfo->ip_pkt_flags = pinfo->ip_pkt_flags & ~IPF_RECVSLLA; 4286 } 4287 4288 mp->b_datap->db_type = M_CTL; 4289 mp->b_wptr += sizeof (ip_pktinfo_t); 4290 mp->b_cont = data_mp; 4291 4292 return (mp); 4293 } 4294 4295 /* 4296 * Latch in the IPsec state for a stream based on the ipsec_in_t passed in as 4297 * part of the bind request. 4298 */ 4299 4300 boolean_t 4301 ip_bind_ipsec_policy_set(conn_t *connp, mblk_t *policy_mp) 4302 { 4303 ipsec_in_t *ii; 4304 4305 ASSERT(policy_mp != NULL); 4306 ASSERT(policy_mp->b_datap->db_type == IPSEC_POLICY_SET); 4307 4308 ii = (ipsec_in_t *)policy_mp->b_rptr; 4309 ASSERT(ii->ipsec_in_type == IPSEC_IN); 4310 4311 connp->conn_policy = ii->ipsec_in_policy; 4312 ii->ipsec_in_policy = NULL; 4313 4314 if (ii->ipsec_in_action != NULL) { 4315 if (connp->conn_latch == NULL) { 4316 connp->conn_latch = iplatch_create(); 4317 if (connp->conn_latch == NULL) 4318 return (B_FALSE); 4319 } 4320 ipsec_latch_inbound(connp->conn_latch, ii); 4321 } 4322 return (B_TRUE); 4323 } 4324 4325 /* 4326 * Upper level protocols (ULP) pass through bind requests to IP for inspection 4327 * and to arrange for power-fanout assist. The ULP is identified by 4328 * adding a single byte at the end of the original bind message. 4329 * A ULP other than UDP or TCP that wishes to be recognized passes 4330 * down a bind with a zero length address. 4331 * 4332 * The binding works as follows: 4333 * - A zero byte address means just bind to the protocol. 4334 * - A four byte address is treated as a request to validate 4335 * that the address is a valid local address, appropriate for 4336 * an application to bind to. This does not affect any fanout 4337 * information in IP. 4338 * - A sizeof sin_t byte address is used to bind to only the local address 4339 * and port. 4340 * - A sizeof ipa_conn_t byte address contains complete fanout information 4341 * consisting of local and remote addresses and ports. In 4342 * this case, the addresses are both validated as appropriate 4343 * for this operation, and, if so, the information is retained 4344 * for use in the inbound fanout. 4345 * 4346 * The ULP (except in the zero-length bind) can append an 4347 * additional mblk of db_type IRE_DB_REQ_TYPE or IPSEC_POLICY_SET to the 4348 * T_BIND_REQ/O_T_BIND_REQ. IRE_DB_REQ_TYPE indicates that the ULP wants 4349 * a copy of the source or destination IRE (source for local bind; 4350 * destination for complete bind). IPSEC_POLICY_SET indicates that the 4351 * policy information contained should be copied on to the conn. 4352 * 4353 * NOTE : Only one of IRE_DB_REQ_TYPE or IPSEC_POLICY_SET can be present. 4354 */ 4355 mblk_t * 4356 ip_bind_v4(queue_t *q, mblk_t *mp, conn_t *connp) 4357 { 4358 ssize_t len; 4359 struct T_bind_req *tbr; 4360 sin_t *sin; 4361 ipa_conn_t *ac; 4362 uchar_t *ucp; 4363 mblk_t *mp1; 4364 boolean_t ire_requested; 4365 boolean_t ipsec_policy_set = B_FALSE; 4366 int error = 0; 4367 int protocol; 4368 ipa_conn_x_t *acx; 4369 4370 ASSERT(!connp->conn_af_isv6); 4371 connp->conn_pkt_isv6 = B_FALSE; 4372 4373 len = MBLKL(mp); 4374 if (len < (sizeof (*tbr) + 1)) { 4375 (void) mi_strlog(q, 1, SL_ERROR|SL_TRACE, 4376 "ip_bind: bogus msg, len %ld", len); 4377 /* XXX: Need to return something better */ 4378 goto bad_addr; 4379 } 4380 /* Back up and extract the protocol identifier. */ 4381 mp->b_wptr--; 4382 protocol = *mp->b_wptr & 0xFF; 4383 tbr = (struct T_bind_req *)mp->b_rptr; 4384 /* Reset the message type in preparation for shipping it back. */ 4385 DB_TYPE(mp) = M_PCPROTO; 4386 4387 connp->conn_ulp = (uint8_t)protocol; 4388 4389 /* 4390 * Check for a zero length address. This is from a protocol that 4391 * wants to register to receive all packets of its type. 4392 */ 4393 if (tbr->ADDR_length == 0) { 4394 /* 4395 * These protocols are now intercepted in ip_bind_v6(). 4396 * Reject protocol-level binds here for now. 4397 * 4398 * For SCTP raw socket, ICMP sends down a bind with sin_t 4399 * so that the protocol type cannot be SCTP. 4400 */ 4401 if (protocol == IPPROTO_TCP || protocol == IPPROTO_AH || 4402 protocol == IPPROTO_ESP || protocol == IPPROTO_SCTP) { 4403 goto bad_addr; 4404 } 4405 4406 /* 4407 * 4408 * The udp module never sends down a zero-length address, 4409 * and allowing this on a labeled system will break MLP 4410 * functionality. 4411 */ 4412 if (is_system_labeled() && protocol == IPPROTO_UDP) 4413 goto bad_addr; 4414 4415 if (connp->conn_mac_exempt) 4416 goto bad_addr; 4417 4418 /* No hash here really. The table is big enough. */ 4419 connp->conn_srcv6 = ipv6_all_zeros; 4420 4421 ipcl_proto_insert(connp, protocol); 4422 4423 tbr->PRIM_type = T_BIND_ACK; 4424 return (mp); 4425 } 4426 4427 /* Extract the address pointer from the message. */ 4428 ucp = (uchar_t *)mi_offset_param(mp, tbr->ADDR_offset, 4429 tbr->ADDR_length); 4430 if (ucp == NULL) { 4431 ip1dbg(("ip_bind: no address\n")); 4432 goto bad_addr; 4433 } 4434 if (!OK_32PTR(ucp)) { 4435 ip1dbg(("ip_bind: unaligned address\n")); 4436 goto bad_addr; 4437 } 4438 /* 4439 * Check for trailing mps. 4440 */ 4441 4442 mp1 = mp->b_cont; 4443 ire_requested = (mp1 != NULL && DB_TYPE(mp1) == IRE_DB_REQ_TYPE); 4444 ipsec_policy_set = (mp1 != NULL && DB_TYPE(mp1) == IPSEC_POLICY_SET); 4445 4446 switch (tbr->ADDR_length) { 4447 default: 4448 ip1dbg(("ip_bind: bad address length %d\n", 4449 (int)tbr->ADDR_length)); 4450 goto bad_addr; 4451 4452 case IP_ADDR_LEN: 4453 /* Verification of local address only */ 4454 error = ip_bind_laddr(connp, mp, *(ipaddr_t *)ucp, 0, 4455 ire_requested, ipsec_policy_set, B_FALSE); 4456 break; 4457 4458 case sizeof (sin_t): 4459 sin = (sin_t *)ucp; 4460 error = ip_bind_laddr(connp, mp, sin->sin_addr.s_addr, 4461 sin->sin_port, ire_requested, ipsec_policy_set, B_TRUE); 4462 break; 4463 4464 case sizeof (ipa_conn_t): 4465 ac = (ipa_conn_t *)ucp; 4466 /* For raw socket, the local port is not set. */ 4467 if (ac->ac_lport == 0) 4468 ac->ac_lport = connp->conn_lport; 4469 /* Always verify destination reachability. */ 4470 error = ip_bind_connected(connp, mp, &ac->ac_laddr, 4471 ac->ac_lport, ac->ac_faddr, ac->ac_fport, ire_requested, 4472 ipsec_policy_set, B_TRUE, B_TRUE); 4473 break; 4474 4475 case sizeof (ipa_conn_x_t): 4476 acx = (ipa_conn_x_t *)ucp; 4477 /* 4478 * Whether or not to verify destination reachability depends 4479 * on the setting of the ACX_VERIFY_DST flag in acx->acx_flags. 4480 */ 4481 error = ip_bind_connected(connp, mp, &acx->acx_conn.ac_laddr, 4482 acx->acx_conn.ac_lport, acx->acx_conn.ac_faddr, 4483 acx->acx_conn.ac_fport, ire_requested, ipsec_policy_set, 4484 B_TRUE, (acx->acx_flags & ACX_VERIFY_DST) != 0); 4485 break; 4486 } 4487 if (error == EINPROGRESS) 4488 return (NULL); 4489 else if (error != 0) 4490 goto bad_addr; 4491 /* 4492 * Pass the IPSEC headers size in ire_ipsec_overhead. 4493 * We can't do this in ip_bind_insert_ire because the policy 4494 * may not have been inherited at that point in time and hence 4495 * conn_out_enforce_policy may not be set. 4496 */ 4497 mp1 = mp->b_cont; 4498 if (ire_requested && connp->conn_out_enforce_policy && 4499 mp1 != NULL && DB_TYPE(mp1) == IRE_DB_REQ_TYPE) { 4500 ire_t *ire = (ire_t *)mp1->b_rptr; 4501 ASSERT(MBLKL(mp1) >= sizeof (ire_t)); 4502 ire->ire_ipsec_overhead = conn_ipsec_length(connp); 4503 } 4504 4505 /* Send it home. */ 4506 mp->b_datap->db_type = M_PCPROTO; 4507 tbr->PRIM_type = T_BIND_ACK; 4508 return (mp); 4509 4510 bad_addr: 4511 /* 4512 * If error = -1 then we generate a TBADADDR - otherwise error is 4513 * a unix errno. 4514 */ 4515 if (error > 0) 4516 mp = mi_tpi_err_ack_alloc(mp, TSYSERR, error); 4517 else 4518 mp = mi_tpi_err_ack_alloc(mp, TBADADDR, 0); 4519 return (mp); 4520 } 4521 4522 /* 4523 * Here address is verified to be a valid local address. 4524 * If the IRE_DB_REQ_TYPE mp is present, a broadcast/multicast 4525 * address is also considered a valid local address. 4526 * In the case of a broadcast/multicast address, however, the 4527 * upper protocol is expected to reset the src address 4528 * to 0 if it sees a IRE_BROADCAST type returned so that 4529 * no packets are emitted with broadcast/multicast address as 4530 * source address (that violates hosts requirements RFC1122) 4531 * The addresses valid for bind are: 4532 * (1) - INADDR_ANY (0) 4533 * (2) - IP address of an UP interface 4534 * (3) - IP address of a DOWN interface 4535 * (4) - valid local IP broadcast addresses. In this case 4536 * the conn will only receive packets destined to 4537 * the specified broadcast address. 4538 * (5) - a multicast address. In this case 4539 * the conn will only receive packets destined to 4540 * the specified multicast address. Note: the 4541 * application still has to issue an 4542 * IP_ADD_MEMBERSHIP socket option. 4543 * 4544 * On error, return -1 for TBADADDR otherwise pass the 4545 * errno with TSYSERR reply. 4546 * 4547 * In all the above cases, the bound address must be valid in the current zone. 4548 * When the address is loopback, multicast or broadcast, there might be many 4549 * matching IREs so bind has to look up based on the zone. 4550 * 4551 * Note: lport is in network byte order. 4552 */ 4553 int 4554 ip_bind_laddr(conn_t *connp, mblk_t *mp, ipaddr_t src_addr, uint16_t lport, 4555 boolean_t ire_requested, boolean_t ipsec_policy_set, 4556 boolean_t fanout_insert) 4557 { 4558 int error = 0; 4559 ire_t *src_ire; 4560 mblk_t *policy_mp; 4561 ipif_t *ipif; 4562 zoneid_t zoneid; 4563 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 4564 4565 if (ipsec_policy_set) { 4566 policy_mp = mp->b_cont; 4567 } 4568 4569 /* 4570 * If it was previously connected, conn_fully_bound would have 4571 * been set. 4572 */ 4573 connp->conn_fully_bound = B_FALSE; 4574 4575 src_ire = NULL; 4576 ipif = NULL; 4577 4578 zoneid = IPCL_ZONEID(connp); 4579 4580 if (src_addr) { 4581 src_ire = ire_route_lookup(src_addr, 0, 0, 0, 4582 NULL, NULL, zoneid, NULL, MATCH_IRE_ZONEONLY, ipst); 4583 /* 4584 * If an address other than 0.0.0.0 is requested, 4585 * we verify that it is a valid address for bind 4586 * Note: Following code is in if-else-if form for 4587 * readability compared to a condition check. 4588 */ 4589 /* LINTED - statement has no consequent */ 4590 if (IRE_IS_LOCAL(src_ire)) { 4591 /* 4592 * (2) Bind to address of local UP interface 4593 */ 4594 } else if (src_ire && src_ire->ire_type == IRE_BROADCAST) { 4595 /* 4596 * (4) Bind to broadcast address 4597 * Note: permitted only from transports that 4598 * request IRE 4599 */ 4600 if (!ire_requested) 4601 error = EADDRNOTAVAIL; 4602 } else { 4603 /* 4604 * (3) Bind to address of local DOWN interface 4605 * (ipif_lookup_addr() looks up all interfaces 4606 * but we do not get here for UP interfaces 4607 * - case (2) above) 4608 * We put the protocol byte back into the mblk 4609 * since we may come back via ip_wput_nondata() 4610 * later with this mblk if ipif_lookup_addr chooses 4611 * to defer processing. 4612 */ 4613 *mp->b_wptr++ = (char)connp->conn_ulp; 4614 if ((ipif = ipif_lookup_addr(src_addr, NULL, zoneid, 4615 CONNP_TO_WQ(connp), mp, ip_wput_nondata, 4616 &error, ipst)) != NULL) { 4617 ipif_refrele(ipif); 4618 } else if (error == EINPROGRESS) { 4619 if (src_ire != NULL) 4620 ire_refrele(src_ire); 4621 return (EINPROGRESS); 4622 } else if (CLASSD(src_addr)) { 4623 error = 0; 4624 if (src_ire != NULL) 4625 ire_refrele(src_ire); 4626 /* 4627 * (5) bind to multicast address. 4628 * Fake out the IRE returned to upper 4629 * layer to be a broadcast IRE. 4630 */ 4631 src_ire = ire_ctable_lookup( 4632 INADDR_BROADCAST, INADDR_ANY, 4633 IRE_BROADCAST, NULL, zoneid, NULL, 4634 (MATCH_IRE_TYPE | MATCH_IRE_ZONEONLY), 4635 ipst); 4636 if (src_ire == NULL || !ire_requested) 4637 error = EADDRNOTAVAIL; 4638 } else { 4639 /* 4640 * Not a valid address for bind 4641 */ 4642 error = EADDRNOTAVAIL; 4643 } 4644 /* 4645 * Just to keep it consistent with the processing in 4646 * ip_bind_v4() 4647 */ 4648 mp->b_wptr--; 4649 } 4650 if (error) { 4651 /* Red Alert! Attempting to be a bogon! */ 4652 ip1dbg(("ip_bind: bad src address 0x%x\n", 4653 ntohl(src_addr))); 4654 goto bad_addr; 4655 } 4656 } 4657 4658 /* 4659 * Allow setting new policies. For example, disconnects come 4660 * down as ipa_t bind. As we would have set conn_policy_cached 4661 * to B_TRUE before, we should set it to B_FALSE, so that policy 4662 * can change after the disconnect. 4663 */ 4664 connp->conn_policy_cached = B_FALSE; 4665 4666 /* 4667 * If not fanout_insert this was just an address verification 4668 */ 4669 if (fanout_insert) { 4670 /* 4671 * The addresses have been verified. Time to insert in 4672 * the correct fanout list. 4673 */ 4674 IN6_IPADDR_TO_V4MAPPED(src_addr, &connp->conn_srcv6); 4675 IN6_IPADDR_TO_V4MAPPED(INADDR_ANY, &connp->conn_remv6); 4676 connp->conn_lport = lport; 4677 connp->conn_fport = 0; 4678 /* 4679 * Do we need to add a check to reject Multicast packets 4680 * 4681 * We need to make sure that the conn_recv is set to a non-null 4682 * value before we insert the conn into the classifier table. 4683 * This is to avoid a race with an incoming packet which does an 4684 * ipcl_classify(). 4685 */ 4686 if (*mp->b_wptr == IPPROTO_TCP) 4687 connp->conn_recv = tcp_conn_request; 4688 error = ipcl_bind_insert(connp, *mp->b_wptr, src_addr, lport); 4689 } 4690 4691 if (error == 0) { 4692 if (ire_requested) { 4693 if (!ip_bind_insert_ire(mp, src_ire, NULL, ipst)) { 4694 error = -1; 4695 /* Falls through to bad_addr */ 4696 } 4697 } else if (ipsec_policy_set) { 4698 if (!ip_bind_ipsec_policy_set(connp, policy_mp)) { 4699 error = -1; 4700 /* Falls through to bad_addr */ 4701 } 4702 } 4703 } else if (connp->conn_ulp == IPPROTO_TCP) { 4704 connp->conn_recv = tcp_input; 4705 } 4706 bad_addr: 4707 if (error != 0) { 4708 if (connp->conn_anon_port) { 4709 (void) tsol_mlp_anon(crgetzone(connp->conn_cred), 4710 connp->conn_mlp_type, connp->conn_ulp, ntohs(lport), 4711 B_FALSE); 4712 } 4713 connp->conn_mlp_type = mlptSingle; 4714 } 4715 if (src_ire != NULL) 4716 IRE_REFRELE(src_ire); 4717 if (ipsec_policy_set) { 4718 ASSERT(policy_mp == mp->b_cont); 4719 ASSERT(policy_mp != NULL); 4720 freeb(policy_mp); 4721 /* 4722 * As of now assume that nothing else accompanies 4723 * IPSEC_POLICY_SET. 4724 */ 4725 mp->b_cont = NULL; 4726 } 4727 return (error); 4728 } 4729 4730 /* 4731 * Verify that both the source and destination addresses 4732 * are valid. If verify_dst is false, then the destination address may be 4733 * unreachable, i.e. have no route to it. Protocols like TCP want to verify 4734 * destination reachability, while tunnels do not. 4735 * Note that we allow connect to broadcast and multicast 4736 * addresses when ire_requested is set. Thus the ULP 4737 * has to check for IRE_BROADCAST and multicast. 4738 * 4739 * Returns zero if ok. 4740 * On error: returns -1 to mean TBADADDR otherwise returns an errno 4741 * (for use with TSYSERR reply). 4742 * 4743 * Note: lport and fport are in network byte order. 4744 */ 4745 int 4746 ip_bind_connected(conn_t *connp, mblk_t *mp, ipaddr_t *src_addrp, 4747 uint16_t lport, ipaddr_t dst_addr, uint16_t fport, 4748 boolean_t ire_requested, boolean_t ipsec_policy_set, 4749 boolean_t fanout_insert, boolean_t verify_dst) 4750 { 4751 ire_t *src_ire; 4752 ire_t *dst_ire; 4753 int error = 0; 4754 int protocol; 4755 mblk_t *policy_mp; 4756 ire_t *sire = NULL; 4757 ire_t *md_dst_ire = NULL; 4758 ire_t *lso_dst_ire = NULL; 4759 ill_t *ill = NULL; 4760 zoneid_t zoneid; 4761 ipaddr_t src_addr = *src_addrp; 4762 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 4763 4764 src_ire = dst_ire = NULL; 4765 protocol = *mp->b_wptr & 0xFF; 4766 4767 /* 4768 * If we never got a disconnect before, clear it now. 4769 */ 4770 connp->conn_fully_bound = B_FALSE; 4771 4772 if (ipsec_policy_set) { 4773 policy_mp = mp->b_cont; 4774 } 4775 4776 zoneid = IPCL_ZONEID(connp); 4777 4778 if (CLASSD(dst_addr)) { 4779 /* Pick up an IRE_BROADCAST */ 4780 dst_ire = ire_route_lookup(ip_g_all_ones, 0, 0, 0, NULL, 4781 NULL, zoneid, MBLK_GETLABEL(mp), 4782 (MATCH_IRE_RECURSIVE | 4783 MATCH_IRE_DEFAULT | MATCH_IRE_RJ_BHOLE | 4784 MATCH_IRE_SECATTR), ipst); 4785 } else { 4786 /* 4787 * If conn_dontroute is set or if conn_nexthop_set is set, 4788 * and onlink ipif is not found set ENETUNREACH error. 4789 */ 4790 if (connp->conn_dontroute || connp->conn_nexthop_set) { 4791 ipif_t *ipif; 4792 4793 ipif = ipif_lookup_onlink_addr(connp->conn_dontroute ? 4794 dst_addr : connp->conn_nexthop_v4, zoneid, ipst); 4795 if (ipif == NULL) { 4796 error = ENETUNREACH; 4797 goto bad_addr; 4798 } 4799 ipif_refrele(ipif); 4800 } 4801 4802 if (connp->conn_nexthop_set) { 4803 dst_ire = ire_route_lookup(connp->conn_nexthop_v4, 0, 4804 0, 0, NULL, NULL, zoneid, MBLK_GETLABEL(mp), 4805 MATCH_IRE_SECATTR, ipst); 4806 } else { 4807 dst_ire = ire_route_lookup(dst_addr, 0, 0, 0, NULL, 4808 &sire, zoneid, MBLK_GETLABEL(mp), 4809 (MATCH_IRE_RECURSIVE | MATCH_IRE_DEFAULT | 4810 MATCH_IRE_PARENT | MATCH_IRE_RJ_BHOLE | 4811 MATCH_IRE_SECATTR), ipst); 4812 } 4813 } 4814 /* 4815 * dst_ire can't be a broadcast when not ire_requested. 4816 * We also prevent ire's with src address INADDR_ANY to 4817 * be used, which are created temporarily for 4818 * sending out packets from endpoints that have 4819 * conn_unspec_src set. If verify_dst is true, the destination must be 4820 * reachable. If verify_dst is false, the destination needn't be 4821 * reachable. 4822 * 4823 * If we match on a reject or black hole, then we've got a 4824 * local failure. May as well fail out the connect() attempt, 4825 * since it's never going to succeed. 4826 */ 4827 if (dst_ire == NULL || dst_ire->ire_src_addr == INADDR_ANY || 4828 (dst_ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE)) || 4829 ((dst_ire->ire_type & IRE_BROADCAST) && !ire_requested)) { 4830 /* 4831 * If we're verifying destination reachability, we always want 4832 * to complain here. 4833 * 4834 * If we're not verifying destination reachability but the 4835 * destination has a route, we still want to fail on the 4836 * temporary address and broadcast address tests. 4837 */ 4838 if (verify_dst || (dst_ire != NULL)) { 4839 if (ip_debug > 2) { 4840 pr_addr_dbg("ip_bind_connected: bad connected " 4841 "dst %s\n", AF_INET, &dst_addr); 4842 } 4843 if (dst_ire == NULL || !(dst_ire->ire_type & IRE_HOST)) 4844 error = ENETUNREACH; 4845 else 4846 error = EHOSTUNREACH; 4847 goto bad_addr; 4848 } 4849 } 4850 4851 /* 4852 * We now know that routing will allow us to reach the destination. 4853 * Check whether Trusted Solaris policy allows communication with this 4854 * host, and pretend that the destination is unreachable if not. 4855 * 4856 * This is never a problem for TCP, since that transport is known to 4857 * compute the label properly as part of the tcp_rput_other T_BIND_ACK 4858 * handling. If the remote is unreachable, it will be detected at that 4859 * point, so there's no reason to check it here. 4860 * 4861 * Note that for sendto (and other datagram-oriented friends), this 4862 * check is done as part of the data path label computation instead. 4863 * The check here is just to make non-TCP connect() report the right 4864 * error. 4865 */ 4866 if (dst_ire != NULL && is_system_labeled() && 4867 !IPCL_IS_TCP(connp) && 4868 tsol_compute_label(DB_CREDDEF(mp, connp->conn_cred), dst_addr, NULL, 4869 connp->conn_mac_exempt, ipst) != 0) { 4870 error = EHOSTUNREACH; 4871 if (ip_debug > 2) { 4872 pr_addr_dbg("ip_bind_connected: no label for dst %s\n", 4873 AF_INET, &dst_addr); 4874 } 4875 goto bad_addr; 4876 } 4877 4878 /* 4879 * If the app does a connect(), it means that it will most likely 4880 * send more than 1 packet to the destination. It makes sense 4881 * to clear the temporary flag. 4882 */ 4883 if (dst_ire != NULL && dst_ire->ire_type == IRE_CACHE && 4884 (dst_ire->ire_marks & IRE_MARK_TEMPORARY)) { 4885 irb_t *irb = dst_ire->ire_bucket; 4886 4887 rw_enter(&irb->irb_lock, RW_WRITER); 4888 dst_ire->ire_marks &= ~IRE_MARK_TEMPORARY; 4889 irb->irb_tmp_ire_cnt--; 4890 rw_exit(&irb->irb_lock); 4891 } 4892 4893 /* 4894 * See if we should notify ULP about LSO/MDT; we do this whether or not 4895 * ire_requested is TRUE, in order to handle active connects; LSO/MDT 4896 * eligibility tests for passive connects are handled separately 4897 * through tcp_adapt_ire(). We do this before the source address 4898 * selection, because dst_ire may change after a call to 4899 * ipif_select_source(). This is a best-effort check, as the 4900 * packet for this connection may not actually go through 4901 * dst_ire->ire_stq, and the exact IRE can only be known after 4902 * calling ip_newroute(). This is why we further check on the 4903 * IRE during LSO/Multidata packet transmission in 4904 * tcp_lsosend()/tcp_multisend(). 4905 */ 4906 if (!ipsec_policy_set && dst_ire != NULL && 4907 !(dst_ire->ire_type & (IRE_LOCAL | IRE_LOOPBACK | IRE_BROADCAST)) && 4908 (ill = ire_to_ill(dst_ire), ill != NULL)) { 4909 if (ipst->ips_ip_lso_outbound && ILL_LSO_CAPABLE(ill)) { 4910 lso_dst_ire = dst_ire; 4911 IRE_REFHOLD(lso_dst_ire); 4912 } else if (ipst->ips_ip_multidata_outbound && 4913 ILL_MDT_CAPABLE(ill)) { 4914 md_dst_ire = dst_ire; 4915 IRE_REFHOLD(md_dst_ire); 4916 } 4917 } 4918 4919 if (dst_ire != NULL && 4920 dst_ire->ire_type == IRE_LOCAL && 4921 dst_ire->ire_zoneid != zoneid && dst_ire->ire_zoneid != ALL_ZONES) { 4922 /* 4923 * If the IRE belongs to a different zone, look for a matching 4924 * route in the forwarding table and use the source address from 4925 * that route. 4926 */ 4927 src_ire = ire_ftable_lookup(dst_addr, 0, 0, 0, NULL, NULL, 4928 zoneid, 0, NULL, 4929 MATCH_IRE_RECURSIVE | MATCH_IRE_DEFAULT | 4930 MATCH_IRE_RJ_BHOLE, ipst); 4931 if (src_ire == NULL) { 4932 error = EHOSTUNREACH; 4933 goto bad_addr; 4934 } else if (src_ire->ire_flags & (RTF_REJECT|RTF_BLACKHOLE)) { 4935 if (!(src_ire->ire_type & IRE_HOST)) 4936 error = ENETUNREACH; 4937 else 4938 error = EHOSTUNREACH; 4939 goto bad_addr; 4940 } 4941 if (src_addr == INADDR_ANY) 4942 src_addr = src_ire->ire_src_addr; 4943 ire_refrele(src_ire); 4944 src_ire = NULL; 4945 } else if ((src_addr == INADDR_ANY) && (dst_ire != NULL)) { 4946 if ((sire != NULL) && (sire->ire_flags & RTF_SETSRC)) { 4947 src_addr = sire->ire_src_addr; 4948 ire_refrele(dst_ire); 4949 dst_ire = sire; 4950 sire = NULL; 4951 } else { 4952 /* 4953 * Pick a source address so that a proper inbound 4954 * load spreading would happen. 4955 */ 4956 ill_t *dst_ill = dst_ire->ire_ipif->ipif_ill; 4957 ipif_t *src_ipif = NULL; 4958 ire_t *ipif_ire; 4959 4960 /* 4961 * Supply a local source address such that inbound 4962 * load spreading happens. 4963 * 4964 * Determine the best source address on this ill for 4965 * the destination. 4966 * 4967 * 1) For broadcast, we should return a broadcast ire 4968 * found above so that upper layers know that the 4969 * destination address is a broadcast address. 4970 * 4971 * 2) If this is part of a group, select a better 4972 * source address so that better inbound load 4973 * balancing happens. Do the same if the ipif 4974 * is DEPRECATED. 4975 * 4976 * 3) If the outgoing interface is part of a usesrc 4977 * group, then try selecting a source address from 4978 * the usesrc ILL. 4979 */ 4980 if ((dst_ire->ire_zoneid != zoneid && 4981 dst_ire->ire_zoneid != ALL_ZONES) || 4982 (!(dst_ire->ire_type & IRE_BROADCAST) && 4983 ((dst_ill->ill_group != NULL) || 4984 (dst_ire->ire_ipif->ipif_flags & IPIF_DEPRECATED) || 4985 (dst_ill->ill_usesrc_ifindex != 0)))) { 4986 /* 4987 * If the destination is reachable via a 4988 * given gateway, the selected source address 4989 * should be in the same subnet as the gateway. 4990 * Otherwise, the destination is not reachable. 4991 * 4992 * If there are no interfaces on the same subnet 4993 * as the destination, ipif_select_source gives 4994 * first non-deprecated interface which might be 4995 * on a different subnet than the gateway. 4996 * This is not desirable. Hence pass the dst_ire 4997 * source address to ipif_select_source. 4998 * It is sure that the destination is reachable 4999 * with the dst_ire source address subnet. 5000 * So passing dst_ire source address to 5001 * ipif_select_source will make sure that the 5002 * selected source will be on the same subnet 5003 * as dst_ire source address. 5004 */ 5005 ipaddr_t saddr = 5006 dst_ire->ire_ipif->ipif_src_addr; 5007 src_ipif = ipif_select_source(dst_ill, 5008 saddr, zoneid); 5009 if (src_ipif != NULL) { 5010 if (IS_VNI(src_ipif->ipif_ill)) { 5011 /* 5012 * For VNI there is no 5013 * interface route 5014 */ 5015 src_addr = 5016 src_ipif->ipif_src_addr; 5017 } else { 5018 ipif_ire = 5019 ipif_to_ire(src_ipif); 5020 if (ipif_ire != NULL) { 5021 IRE_REFRELE(dst_ire); 5022 dst_ire = ipif_ire; 5023 } 5024 src_addr = 5025 dst_ire->ire_src_addr; 5026 } 5027 ipif_refrele(src_ipif); 5028 } else { 5029 src_addr = dst_ire->ire_src_addr; 5030 } 5031 } else { 5032 src_addr = dst_ire->ire_src_addr; 5033 } 5034 } 5035 } 5036 5037 /* 5038 * We do ire_route_lookup() here (and not 5039 * interface lookup as we assert that 5040 * src_addr should only come from an 5041 * UP interface for hard binding. 5042 */ 5043 ASSERT(src_ire == NULL); 5044 src_ire = ire_route_lookup(src_addr, 0, 0, 0, NULL, 5045 NULL, zoneid, NULL, MATCH_IRE_ZONEONLY, ipst); 5046 /* src_ire must be a local|loopback */ 5047 if (!IRE_IS_LOCAL(src_ire)) { 5048 if (ip_debug > 2) { 5049 pr_addr_dbg("ip_bind_connected: bad connected " 5050 "src %s\n", AF_INET, &src_addr); 5051 } 5052 error = EADDRNOTAVAIL; 5053 goto bad_addr; 5054 } 5055 5056 /* 5057 * If the source address is a loopback address, the 5058 * destination had best be local or multicast. 5059 * The transports that can't handle multicast will reject 5060 * those addresses. 5061 */ 5062 if (src_ire->ire_type == IRE_LOOPBACK && 5063 !(IRE_IS_LOCAL(dst_ire) || CLASSD(dst_addr))) { 5064 ip1dbg(("ip_bind_connected: bad connected loopback\n")); 5065 error = -1; 5066 goto bad_addr; 5067 } 5068 5069 /* 5070 * Allow setting new policies. For example, disconnects come 5071 * down as ipa_t bind. As we would have set conn_policy_cached 5072 * to B_TRUE before, we should set it to B_FALSE, so that policy 5073 * can change after the disconnect. 5074 */ 5075 connp->conn_policy_cached = B_FALSE; 5076 5077 /* 5078 * Set the conn addresses/ports immediately, so the IPsec policy calls 5079 * can handle their passed-in conn's. 5080 */ 5081 5082 IN6_IPADDR_TO_V4MAPPED(src_addr, &connp->conn_srcv6); 5083 IN6_IPADDR_TO_V4MAPPED(dst_addr, &connp->conn_remv6); 5084 connp->conn_lport = lport; 5085 connp->conn_fport = fport; 5086 *src_addrp = src_addr; 5087 5088 ASSERT(!(ipsec_policy_set && ire_requested)); 5089 if (ire_requested) { 5090 iulp_t *ulp_info = NULL; 5091 5092 /* 5093 * Note that sire will not be NULL if this is an off-link 5094 * connection and there is not cache for that dest yet. 5095 * 5096 * XXX Because of an existing bug, if there are multiple 5097 * default routes, the IRE returned now may not be the actual 5098 * default route used (default routes are chosen in a 5099 * round robin fashion). So if the metrics for different 5100 * default routes are different, we may return the wrong 5101 * metrics. This will not be a problem if the existing 5102 * bug is fixed. 5103 */ 5104 if (sire != NULL) { 5105 ulp_info = &(sire->ire_uinfo); 5106 } 5107 if (!ip_bind_insert_ire(mp, dst_ire, ulp_info, ipst)) { 5108 error = -1; 5109 goto bad_addr; 5110 } 5111 } else if (ipsec_policy_set) { 5112 if (!ip_bind_ipsec_policy_set(connp, policy_mp)) { 5113 error = -1; 5114 goto bad_addr; 5115 } 5116 } 5117 5118 /* 5119 * Cache IPsec policy in this conn. If we have per-socket policy, 5120 * we'll cache that. If we don't, we'll inherit global policy. 5121 * 5122 * We can't insert until the conn reflects the policy. Note that 5123 * conn_policy_cached is set by ipsec_conn_cache_policy() even for 5124 * connections where we don't have a policy. This is to prevent 5125 * global policy lookups in the inbound path. 5126 * 5127 * If we insert before we set conn_policy_cached, 5128 * CONN_INBOUND_POLICY_PRESENT() check can still evaluate true 5129 * because global policy cound be non-empty. We normally call 5130 * ipsec_check_policy() for conn_policy_cached connections only if 5131 * ipc_in_enforce_policy is set. But in this case, 5132 * conn_policy_cached can get set anytime since we made the 5133 * CONN_INBOUND_POLICY_PRESENT() check and ipsec_check_policy() is 5134 * called, which will make the above assumption false. Thus, we 5135 * need to insert after we set conn_policy_cached. 5136 */ 5137 if ((error = ipsec_conn_cache_policy(connp, B_TRUE)) != 0) 5138 goto bad_addr; 5139 5140 if (fanout_insert) { 5141 /* 5142 * The addresses have been verified. Time to insert in 5143 * the correct fanout list. 5144 * We need to make sure that the conn_recv is set to a non-null 5145 * value before we insert into the classifier table to avoid a 5146 * race with an incoming packet which does an ipcl_classify(). 5147 */ 5148 if (protocol == IPPROTO_TCP) 5149 connp->conn_recv = tcp_input; 5150 error = ipcl_conn_insert(connp, protocol, src_addr, 5151 dst_addr, connp->conn_ports); 5152 } 5153 5154 if (error == 0) { 5155 connp->conn_fully_bound = B_TRUE; 5156 /* 5157 * Our initial checks for LSO/MDT have passed; the IRE is not 5158 * LOCAL/LOOPBACK/BROADCAST, and the link layer seems to 5159 * be supporting LSO/MDT. Pass the IRE, IPC and ILL into 5160 * ip_xxinfo_return(), which performs further checks 5161 * against them and upon success, returns the LSO/MDT info 5162 * mblk which we will attach to the bind acknowledgment. 5163 */ 5164 if (lso_dst_ire != NULL) { 5165 mblk_t *lsoinfo_mp; 5166 5167 ASSERT(ill->ill_lso_capab != NULL); 5168 if ((lsoinfo_mp = ip_lsoinfo_return(lso_dst_ire, connp, 5169 ill->ill_name, ill->ill_lso_capab)) != NULL) 5170 linkb(mp, lsoinfo_mp); 5171 } else if (md_dst_ire != NULL) { 5172 mblk_t *mdinfo_mp; 5173 5174 ASSERT(ill->ill_mdt_capab != NULL); 5175 if ((mdinfo_mp = ip_mdinfo_return(md_dst_ire, connp, 5176 ill->ill_name, ill->ill_mdt_capab)) != NULL) 5177 linkb(mp, mdinfo_mp); 5178 } 5179 } 5180 bad_addr: 5181 if (ipsec_policy_set) { 5182 ASSERT(policy_mp == mp->b_cont); 5183 ASSERT(policy_mp != NULL); 5184 freeb(policy_mp); 5185 /* 5186 * As of now assume that nothing else accompanies 5187 * IPSEC_POLICY_SET. 5188 */ 5189 mp->b_cont = NULL; 5190 } 5191 if (src_ire != NULL) 5192 IRE_REFRELE(src_ire); 5193 if (dst_ire != NULL) 5194 IRE_REFRELE(dst_ire); 5195 if (sire != NULL) 5196 IRE_REFRELE(sire); 5197 if (md_dst_ire != NULL) 5198 IRE_REFRELE(md_dst_ire); 5199 if (lso_dst_ire != NULL) 5200 IRE_REFRELE(lso_dst_ire); 5201 return (error); 5202 } 5203 5204 /* 5205 * Insert the ire in b_cont. Returns false if it fails (due to lack of space). 5206 * Prefers dst_ire over src_ire. 5207 */ 5208 static boolean_t 5209 ip_bind_insert_ire(mblk_t *mp, ire_t *ire, iulp_t *ulp_info, ip_stack_t *ipst) 5210 { 5211 mblk_t *mp1; 5212 ire_t *ret_ire = NULL; 5213 5214 mp1 = mp->b_cont; 5215 ASSERT(mp1 != NULL); 5216 5217 if (ire != NULL) { 5218 /* 5219 * mp1 initialized above to IRE_DB_REQ_TYPE 5220 * appended mblk. Its <upper protocol>'s 5221 * job to make sure there is room. 5222 */ 5223 if ((mp1->b_datap->db_lim - mp1->b_rptr) < sizeof (ire_t)) 5224 return (0); 5225 5226 mp1->b_datap->db_type = IRE_DB_TYPE; 5227 mp1->b_wptr = mp1->b_rptr + sizeof (ire_t); 5228 bcopy(ire, mp1->b_rptr, sizeof (ire_t)); 5229 ret_ire = (ire_t *)mp1->b_rptr; 5230 /* 5231 * Pass the latest setting of the ip_path_mtu_discovery and 5232 * copy the ulp info if any. 5233 */ 5234 ret_ire->ire_frag_flag |= (ipst->ips_ip_path_mtu_discovery) ? 5235 IPH_DF : 0; 5236 if (ulp_info != NULL) { 5237 bcopy(ulp_info, &(ret_ire->ire_uinfo), 5238 sizeof (iulp_t)); 5239 } 5240 ret_ire->ire_mp = mp1; 5241 } else { 5242 /* 5243 * No IRE was found. Remove IRE mblk. 5244 */ 5245 mp->b_cont = mp1->b_cont; 5246 freeb(mp1); 5247 } 5248 5249 return (1); 5250 } 5251 5252 /* 5253 * Carve "len" bytes out of an mblk chain, consuming any we empty, and duping 5254 * the final piece where we don't. Return a pointer to the first mblk in the 5255 * result, and update the pointer to the next mblk to chew on. If anything 5256 * goes wrong (i.e., dupb fails), we waste everything in sight and return a 5257 * NULL pointer. 5258 */ 5259 mblk_t * 5260 ip_carve_mp(mblk_t **mpp, ssize_t len) 5261 { 5262 mblk_t *mp0; 5263 mblk_t *mp1; 5264 mblk_t *mp2; 5265 5266 if (!len || !mpp || !(mp0 = *mpp)) 5267 return (NULL); 5268 /* If we aren't going to consume the first mblk, we need a dup. */ 5269 if (mp0->b_wptr - mp0->b_rptr > len) { 5270 mp1 = dupb(mp0); 5271 if (mp1) { 5272 /* Partition the data between the two mblks. */ 5273 mp1->b_wptr = mp1->b_rptr + len; 5274 mp0->b_rptr = mp1->b_wptr; 5275 /* 5276 * after adjustments if mblk not consumed is now 5277 * unaligned, try to align it. If this fails free 5278 * all messages and let upper layer recover. 5279 */ 5280 if (!OK_32PTR(mp0->b_rptr)) { 5281 if (!pullupmsg(mp0, -1)) { 5282 freemsg(mp0); 5283 freemsg(mp1); 5284 *mpp = NULL; 5285 return (NULL); 5286 } 5287 } 5288 } 5289 return (mp1); 5290 } 5291 /* Eat through as many mblks as we need to get len bytes. */ 5292 len -= mp0->b_wptr - mp0->b_rptr; 5293 for (mp2 = mp1 = mp0; (mp2 = mp2->b_cont) != 0 && len; mp1 = mp2) { 5294 if (mp2->b_wptr - mp2->b_rptr > len) { 5295 /* 5296 * We won't consume the entire last mblk. Like 5297 * above, dup and partition it. 5298 */ 5299 mp1->b_cont = dupb(mp2); 5300 mp1 = mp1->b_cont; 5301 if (!mp1) { 5302 /* 5303 * Trouble. Rather than go to a lot of 5304 * trouble to clean up, we free the messages. 5305 * This won't be any worse than losing it on 5306 * the wire. 5307 */ 5308 freemsg(mp0); 5309 freemsg(mp2); 5310 *mpp = NULL; 5311 return (NULL); 5312 } 5313 mp1->b_wptr = mp1->b_rptr + len; 5314 mp2->b_rptr = mp1->b_wptr; 5315 /* 5316 * after adjustments if mblk not consumed is now 5317 * unaligned, try to align it. If this fails free 5318 * all messages and let upper layer recover. 5319 */ 5320 if (!OK_32PTR(mp2->b_rptr)) { 5321 if (!pullupmsg(mp2, -1)) { 5322 freemsg(mp0); 5323 freemsg(mp2); 5324 *mpp = NULL; 5325 return (NULL); 5326 } 5327 } 5328 *mpp = mp2; 5329 return (mp0); 5330 } 5331 /* Decrement len by the amount we just got. */ 5332 len -= mp2->b_wptr - mp2->b_rptr; 5333 } 5334 /* 5335 * len should be reduced to zero now. If not our caller has 5336 * screwed up. 5337 */ 5338 if (len) { 5339 /* Shouldn't happen! */ 5340 freemsg(mp0); 5341 *mpp = NULL; 5342 return (NULL); 5343 } 5344 /* 5345 * We consumed up to exactly the end of an mblk. Detach the part 5346 * we are returning from the rest of the chain. 5347 */ 5348 mp1->b_cont = NULL; 5349 *mpp = mp2; 5350 return (mp0); 5351 } 5352 5353 /* The ill stream is being unplumbed. Called from ip_close */ 5354 int 5355 ip_modclose(ill_t *ill) 5356 { 5357 5358 boolean_t success; 5359 ipsq_t *ipsq; 5360 ipif_t *ipif; 5361 queue_t *q = ill->ill_rq; 5362 ip_stack_t *ipst = ill->ill_ipst; 5363 clock_t timeout; 5364 5365 /* 5366 * Wait for the ACKs of all deferred control messages to be processed. 5367 * In particular, we wait for a potential capability reset initiated 5368 * in ip_sioctl_plink() to complete before proceeding. 5369 * 5370 * Note: we wait for at most ip_modclose_ackwait_ms (by default 3000 ms) 5371 * in case the driver never replies. 5372 */ 5373 timeout = lbolt + MSEC_TO_TICK(ip_modclose_ackwait_ms); 5374 mutex_enter(&ill->ill_lock); 5375 while (ill->ill_dlpi_pending != DL_PRIM_INVAL) { 5376 if (cv_timedwait(&ill->ill_cv, &ill->ill_lock, timeout) < 0) { 5377 /* Timeout */ 5378 break; 5379 } 5380 } 5381 mutex_exit(&ill->ill_lock); 5382 5383 /* 5384 * Forcibly enter the ipsq after some delay. This is to take 5385 * care of the case when some ioctl does not complete because 5386 * we sent a control message to the driver and it did not 5387 * send us a reply. We want to be able to at least unplumb 5388 * and replumb rather than force the user to reboot the system. 5389 */ 5390 success = ipsq_enter(ill, B_FALSE); 5391 5392 /* 5393 * Open/close/push/pop is guaranteed to be single threaded 5394 * per stream by STREAMS. FS guarantees that all references 5395 * from top are gone before close is called. So there can't 5396 * be another close thread that has set CONDEMNED on this ill. 5397 * and cause ipsq_enter to return failure. 5398 */ 5399 ASSERT(success); 5400 ipsq = ill->ill_phyint->phyint_ipsq; 5401 5402 /* 5403 * Mark it condemned. No new reference will be made to this ill. 5404 * Lookup functions will return an error. Threads that try to 5405 * increment the refcnt must check for ILL_CAN_LOOKUP. This ensures 5406 * that the refcnt will drop down to zero. 5407 */ 5408 mutex_enter(&ill->ill_lock); 5409 ill->ill_state_flags |= ILL_CONDEMNED; 5410 for (ipif = ill->ill_ipif; ipif != NULL; 5411 ipif = ipif->ipif_next) { 5412 ipif->ipif_state_flags |= IPIF_CONDEMNED; 5413 } 5414 /* 5415 * Wake up anybody waiting to enter the ipsq. ipsq_enter 5416 * returns error if ILL_CONDEMNED is set 5417 */ 5418 cv_broadcast(&ill->ill_cv); 5419 mutex_exit(&ill->ill_lock); 5420 5421 /* 5422 * Send all the deferred control messages downstream which came in 5423 * during the small window right before ipsq_enter(). We do this 5424 * without waiting for the ACKs because all the ACKs for M_PROTO 5425 * messages are ignored in ip_rput() when ILL_CONDEMNED is set. 5426 */ 5427 ill_send_all_deferred_mp(ill); 5428 5429 /* 5430 * Shut down fragmentation reassembly. 5431 * ill_frag_timer won't start a timer again. 5432 * Now cancel any existing timer 5433 */ 5434 (void) untimeout(ill->ill_frag_timer_id); 5435 (void) ill_frag_timeout(ill, 0); 5436 5437 /* 5438 * If MOVE was in progress, clear the 5439 * move_in_progress fields also. 5440 */ 5441 if (ill->ill_move_in_progress) { 5442 ILL_CLEAR_MOVE(ill); 5443 } 5444 5445 /* 5446 * Call ill_delete to bring down the ipifs, ilms and ill on 5447 * this ill. Then wait for the refcnts to drop to zero. 5448 * ill_is_quiescent checks whether the ill is really quiescent. 5449 * Then make sure that threads that are waiting to enter the 5450 * ipsq have seen the error returned by ipsq_enter and have 5451 * gone away. Then we call ill_delete_tail which does the 5452 * DL_UNBIND and DL_DETACH with the driver and then qprocsoff. 5453 */ 5454 ill_delete(ill); 5455 mutex_enter(&ill->ill_lock); 5456 while (!ill_is_quiescent(ill)) 5457 cv_wait(&ill->ill_cv, &ill->ill_lock); 5458 while (ill->ill_waiters) 5459 cv_wait(&ill->ill_cv, &ill->ill_lock); 5460 5461 mutex_exit(&ill->ill_lock); 5462 5463 /* 5464 * ill_delete_tail drops reference on ill_ipst, but we need to keep 5465 * it held until the end of the function since the cleanup 5466 * below needs to be able to use the ip_stack_t. 5467 */ 5468 netstack_hold(ipst->ips_netstack); 5469 5470 /* qprocsoff is called in ill_delete_tail */ 5471 ill_delete_tail(ill); 5472 ASSERT(ill->ill_ipst == NULL); 5473 5474 /* 5475 * Walk through all upper (conn) streams and qenable 5476 * those that have queued data. 5477 * close synchronization needs this to 5478 * be done to ensure that all upper layers blocked 5479 * due to flow control to the closing device 5480 * get unblocked. 5481 */ 5482 ip1dbg(("ip_wsrv: walking\n")); 5483 conn_walk_drain(ipst); 5484 5485 mutex_enter(&ipst->ips_ip_mi_lock); 5486 mi_close_unlink(&ipst->ips_ip_g_head, (IDP)ill); 5487 mutex_exit(&ipst->ips_ip_mi_lock); 5488 5489 /* 5490 * credp could be null if the open didn't succeed and ip_modopen 5491 * itself calls ip_close. 5492 */ 5493 if (ill->ill_credp != NULL) 5494 crfree(ill->ill_credp); 5495 5496 mutex_enter(&ill->ill_lock); 5497 ill_nic_info_dispatch(ill); 5498 mutex_exit(&ill->ill_lock); 5499 5500 /* 5501 * Now we are done with the module close pieces that 5502 * need the netstack_t. 5503 */ 5504 netstack_rele(ipst->ips_netstack); 5505 5506 mi_close_free((IDP)ill); 5507 q->q_ptr = WR(q)->q_ptr = NULL; 5508 5509 ipsq_exit(ipsq, B_TRUE, B_TRUE); 5510 5511 return (0); 5512 } 5513 5514 /* 5515 * This is called as part of close() for both IP and UDP 5516 * in order to quiesce the conn. 5517 */ 5518 void 5519 ip_quiesce_conn(conn_t *connp) 5520 { 5521 boolean_t drain_cleanup_reqd = B_FALSE; 5522 boolean_t conn_ioctl_cleanup_reqd = B_FALSE; 5523 boolean_t ilg_cleanup_reqd = B_FALSE; 5524 ip_stack_t *ipst; 5525 5526 ASSERT(!IPCL_IS_TCP(connp)); 5527 ipst = connp->conn_netstack->netstack_ip; 5528 5529 /* 5530 * Mark the conn as closing, and this conn must not be 5531 * inserted in future into any list. Eg. conn_drain_insert(), 5532 * won't insert this conn into the conn_drain_list. 5533 * Similarly ill_pending_mp_add() will not add any mp to 5534 * the pending mp list, after this conn has started closing. 5535 * 5536 * conn_idl, conn_pending_ill, conn_down_pending_ill, conn_ilg 5537 * cannot get set henceforth. 5538 */ 5539 mutex_enter(&connp->conn_lock); 5540 ASSERT(!(connp->conn_state_flags & CONN_QUIESCED)); 5541 connp->conn_state_flags |= CONN_CLOSING; 5542 if (connp->conn_idl != NULL) 5543 drain_cleanup_reqd = B_TRUE; 5544 if (connp->conn_oper_pending_ill != NULL) 5545 conn_ioctl_cleanup_reqd = B_TRUE; 5546 if (connp->conn_ilg_inuse != 0) 5547 ilg_cleanup_reqd = B_TRUE; 5548 mutex_exit(&connp->conn_lock); 5549 5550 if (IPCL_IS_UDP(connp)) 5551 udp_quiesce_conn(connp); 5552 5553 if (conn_ioctl_cleanup_reqd) 5554 conn_ioctl_cleanup(connp); 5555 5556 if (is_system_labeled() && connp->conn_anon_port) { 5557 (void) tsol_mlp_anon(crgetzone(connp->conn_cred), 5558 connp->conn_mlp_type, connp->conn_ulp, 5559 ntohs(connp->conn_lport), B_FALSE); 5560 connp->conn_anon_port = 0; 5561 } 5562 connp->conn_mlp_type = mlptSingle; 5563 5564 /* 5565 * Remove this conn from any fanout list it is on. 5566 * and then wait for any threads currently operating 5567 * on this endpoint to finish 5568 */ 5569 ipcl_hash_remove(connp); 5570 5571 /* 5572 * Remove this conn from the drain list, and do 5573 * any other cleanup that may be required. 5574 * (Only non-tcp streams may have a non-null conn_idl. 5575 * TCP streams are never flow controlled, and 5576 * conn_idl will be null) 5577 */ 5578 if (drain_cleanup_reqd) 5579 conn_drain_tail(connp, B_TRUE); 5580 5581 if (connp->conn_rq == ipst->ips_ip_g_mrouter || 5582 connp->conn_wq == ipst->ips_ip_g_mrouter) 5583 (void) ip_mrouter_done(NULL, ipst); 5584 5585 if (ilg_cleanup_reqd) 5586 ilg_delete_all(connp); 5587 5588 conn_delete_ire(connp, NULL); 5589 5590 /* 5591 * Now conn refcnt can increase only thru CONN_INC_REF_LOCKED. 5592 * callers from write side can't be there now because close 5593 * is in progress. The only other caller is ipcl_walk 5594 * which checks for the condemned flag. 5595 */ 5596 mutex_enter(&connp->conn_lock); 5597 connp->conn_state_flags |= CONN_CONDEMNED; 5598 while (connp->conn_ref != 1) 5599 cv_wait(&connp->conn_cv, &connp->conn_lock); 5600 connp->conn_state_flags |= CONN_QUIESCED; 5601 mutex_exit(&connp->conn_lock); 5602 } 5603 5604 /* ARGSUSED */ 5605 int 5606 ip_close(queue_t *q, int flags) 5607 { 5608 conn_t *connp; 5609 5610 TRACE_1(TR_FAC_IP, TR_IP_CLOSE, "ip_close: q %p", q); 5611 5612 /* 5613 * Call the appropriate delete routine depending on whether this is 5614 * a module or device. 5615 */ 5616 if (WR(q)->q_next != NULL) { 5617 /* This is a module close */ 5618 return (ip_modclose((ill_t *)q->q_ptr)); 5619 } 5620 5621 connp = q->q_ptr; 5622 ip_quiesce_conn(connp); 5623 5624 qprocsoff(q); 5625 5626 /* 5627 * Now we are truly single threaded on this stream, and can 5628 * delete the things hanging off the connp, and finally the connp. 5629 * We removed this connp from the fanout list, it cannot be 5630 * accessed thru the fanouts, and we already waited for the 5631 * conn_ref to drop to 0. We are already in close, so 5632 * there cannot be any other thread from the top. qprocsoff 5633 * has completed, and service has completed or won't run in 5634 * future. 5635 */ 5636 ASSERT(connp->conn_ref == 1); 5637 5638 /* 5639 * A conn which was previously marked as IPCL_UDP cannot 5640 * retain the flag because it would have been cleared by 5641 * udp_close(). 5642 */ 5643 ASSERT(!IPCL_IS_UDP(connp)); 5644 5645 if (connp->conn_latch != NULL) { 5646 IPLATCH_REFRELE(connp->conn_latch, connp->conn_netstack); 5647 connp->conn_latch = NULL; 5648 } 5649 if (connp->conn_policy != NULL) { 5650 IPPH_REFRELE(connp->conn_policy, connp->conn_netstack); 5651 connp->conn_policy = NULL; 5652 } 5653 if (connp->conn_ipsec_opt_mp != NULL) { 5654 freemsg(connp->conn_ipsec_opt_mp); 5655 connp->conn_ipsec_opt_mp = NULL; 5656 } 5657 5658 inet_minor_free(ip_minor_arena, connp->conn_dev); 5659 5660 connp->conn_ref--; 5661 ipcl_conn_destroy(connp); 5662 5663 q->q_ptr = WR(q)->q_ptr = NULL; 5664 return (0); 5665 } 5666 5667 int 5668 ip_snmpmod_close(queue_t *q) 5669 { 5670 conn_t *connp = Q_TO_CONN(q); 5671 ASSERT(connp->conn_flags & (IPCL_TCPMOD | IPCL_UDPMOD)); 5672 5673 qprocsoff(q); 5674 5675 if (connp->conn_flags & IPCL_UDPMOD) 5676 udp_close_free(connp); 5677 5678 if (connp->conn_cred != NULL) { 5679 crfree(connp->conn_cred); 5680 connp->conn_cred = NULL; 5681 } 5682 CONN_DEC_REF(connp); 5683 q->q_ptr = WR(q)->q_ptr = NULL; 5684 return (0); 5685 } 5686 5687 /* 5688 * Write side put procedure for TCP module or UDP module instance. TCP/UDP 5689 * as a module is only used for MIB browsers that push TCP/UDP over IP or ARP. 5690 * The only supported primitives are T_SVR4_OPTMGMT_REQ and T_OPTMGMT_REQ. 5691 * M_FLUSH messages and ioctls are only passed downstream; we don't flush our 5692 * queues as we never enqueue messages there and we don't handle any ioctls. 5693 * Everything else is freed. 5694 */ 5695 void 5696 ip_snmpmod_wput(queue_t *q, mblk_t *mp) 5697 { 5698 conn_t *connp = q->q_ptr; 5699 pfi_t setfn; 5700 pfi_t getfn; 5701 5702 ASSERT(connp->conn_flags & (IPCL_TCPMOD | IPCL_UDPMOD)); 5703 5704 switch (DB_TYPE(mp)) { 5705 case M_PROTO: 5706 case M_PCPROTO: 5707 if ((MBLKL(mp) >= sizeof (t_scalar_t)) && 5708 ((((union T_primitives *)mp->b_rptr)->type == 5709 T_SVR4_OPTMGMT_REQ) || 5710 (((union T_primitives *)mp->b_rptr)->type == 5711 T_OPTMGMT_REQ))) { 5712 /* 5713 * This is the only TPI primitive supported. Its 5714 * handling does not require tcp_t, but it does require 5715 * conn_t to check permissions. 5716 */ 5717 cred_t *cr = DB_CREDDEF(mp, connp->conn_cred); 5718 5719 if (connp->conn_flags & IPCL_TCPMOD) { 5720 setfn = tcp_snmp_set; 5721 getfn = tcp_snmp_get; 5722 } else { 5723 setfn = udp_snmp_set; 5724 getfn = udp_snmp_get; 5725 } 5726 if (!snmpcom_req(q, mp, setfn, getfn, cr)) { 5727 freemsg(mp); 5728 return; 5729 } 5730 } else if ((mp = mi_tpi_err_ack_alloc(mp, TPROTO, ENOTSUP)) 5731 != NULL) 5732 qreply(q, mp); 5733 break; 5734 case M_FLUSH: 5735 case M_IOCTL: 5736 putnext(q, mp); 5737 break; 5738 default: 5739 freemsg(mp); 5740 break; 5741 } 5742 } 5743 5744 /* Return the IP checksum for the IP header at "iph". */ 5745 uint16_t 5746 ip_csum_hdr(ipha_t *ipha) 5747 { 5748 uint16_t *uph; 5749 uint32_t sum; 5750 int opt_len; 5751 5752 opt_len = (ipha->ipha_version_and_hdr_length & 0xF) - 5753 IP_SIMPLE_HDR_LENGTH_IN_WORDS; 5754 uph = (uint16_t *)ipha; 5755 sum = uph[0] + uph[1] + uph[2] + uph[3] + uph[4] + 5756 uph[5] + uph[6] + uph[7] + uph[8] + uph[9]; 5757 if (opt_len > 0) { 5758 do { 5759 sum += uph[10]; 5760 sum += uph[11]; 5761 uph += 2; 5762 } while (--opt_len); 5763 } 5764 sum = (sum & 0xFFFF) + (sum >> 16); 5765 sum = ~(sum + (sum >> 16)) & 0xFFFF; 5766 if (sum == 0xffff) 5767 sum = 0; 5768 return ((uint16_t)sum); 5769 } 5770 5771 /* 5772 * Called when the module is about to be unloaded 5773 */ 5774 void 5775 ip_ddi_destroy(void) 5776 { 5777 tnet_fini(); 5778 5779 sctp_ddi_g_destroy(); 5780 tcp_ddi_g_destroy(); 5781 ipsec_policy_g_destroy(); 5782 ipcl_g_destroy(); 5783 ip_net_g_destroy(); 5784 ip_ire_g_fini(); 5785 inet_minor_destroy(ip_minor_arena); 5786 5787 netstack_unregister(NS_IP); 5788 } 5789 5790 /* 5791 * First step in cleanup. 5792 */ 5793 /* ARGSUSED */ 5794 static void 5795 ip_stack_shutdown(netstackid_t stackid, void *arg) 5796 { 5797 ip_stack_t *ipst = (ip_stack_t *)arg; 5798 5799 #ifdef NS_DEBUG 5800 printf("ip_stack_shutdown(%p, stack %d)\n", (void *)ipst, stackid); 5801 #endif 5802 5803 /* Get rid of loopback interfaces and their IREs */ 5804 ip_loopback_cleanup(ipst); 5805 } 5806 5807 /* 5808 * Free the IP stack instance. 5809 */ 5810 static void 5811 ip_stack_fini(netstackid_t stackid, void *arg) 5812 { 5813 ip_stack_t *ipst = (ip_stack_t *)arg; 5814 int ret; 5815 5816 #ifdef NS_DEBUG 5817 printf("ip_stack_fini(%p, stack %d)\n", (void *)ipst, stackid); 5818 #endif 5819 ipv4_hook_destroy(ipst); 5820 ipv6_hook_destroy(ipst); 5821 ip_net_destroy(ipst); 5822 5823 rw_destroy(&ipst->ips_srcid_lock); 5824 5825 ip_kstat_fini(stackid, ipst->ips_ip_mibkp); 5826 ipst->ips_ip_mibkp = NULL; 5827 icmp_kstat_fini(stackid, ipst->ips_icmp_mibkp); 5828 ipst->ips_icmp_mibkp = NULL; 5829 ip_kstat2_fini(stackid, ipst->ips_ip_kstat); 5830 ipst->ips_ip_kstat = NULL; 5831 bzero(&ipst->ips_ip_statistics, sizeof (ipst->ips_ip_statistics)); 5832 ip6_kstat_fini(stackid, ipst->ips_ip6_kstat); 5833 ipst->ips_ip6_kstat = NULL; 5834 bzero(&ipst->ips_ip6_statistics, sizeof (ipst->ips_ip6_statistics)); 5835 5836 nd_free(&ipst->ips_ip_g_nd); 5837 kmem_free(ipst->ips_param_arr, sizeof (lcl_param_arr)); 5838 ipst->ips_param_arr = NULL; 5839 kmem_free(ipst->ips_ndp_arr, sizeof (lcl_ndp_arr)); 5840 ipst->ips_ndp_arr = NULL; 5841 5842 ip_mrouter_stack_destroy(ipst); 5843 5844 mutex_destroy(&ipst->ips_ip_mi_lock); 5845 rw_destroy(&ipst->ips_ipsec_capab_ills_lock); 5846 rw_destroy(&ipst->ips_ill_g_usesrc_lock); 5847 rw_destroy(&ipst->ips_ip_g_nd_lock); 5848 5849 ret = untimeout(ipst->ips_igmp_timeout_id); 5850 if (ret == -1) { 5851 ASSERT(ipst->ips_igmp_timeout_id == 0); 5852 } else { 5853 ASSERT(ipst->ips_igmp_timeout_id != 0); 5854 ipst->ips_igmp_timeout_id = 0; 5855 } 5856 ret = untimeout(ipst->ips_igmp_slowtimeout_id); 5857 if (ret == -1) { 5858 ASSERT(ipst->ips_igmp_slowtimeout_id == 0); 5859 } else { 5860 ASSERT(ipst->ips_igmp_slowtimeout_id != 0); 5861 ipst->ips_igmp_slowtimeout_id = 0; 5862 } 5863 ret = untimeout(ipst->ips_mld_timeout_id); 5864 if (ret == -1) { 5865 ASSERT(ipst->ips_mld_timeout_id == 0); 5866 } else { 5867 ASSERT(ipst->ips_mld_timeout_id != 0); 5868 ipst->ips_mld_timeout_id = 0; 5869 } 5870 ret = untimeout(ipst->ips_mld_slowtimeout_id); 5871 if (ret == -1) { 5872 ASSERT(ipst->ips_mld_slowtimeout_id == 0); 5873 } else { 5874 ASSERT(ipst->ips_mld_slowtimeout_id != 0); 5875 ipst->ips_mld_slowtimeout_id = 0; 5876 } 5877 ret = untimeout(ipst->ips_ip_ire_expire_id); 5878 if (ret == -1) { 5879 ASSERT(ipst->ips_ip_ire_expire_id == 0); 5880 } else { 5881 ASSERT(ipst->ips_ip_ire_expire_id != 0); 5882 ipst->ips_ip_ire_expire_id = 0; 5883 } 5884 5885 mutex_destroy(&ipst->ips_igmp_timer_lock); 5886 mutex_destroy(&ipst->ips_mld_timer_lock); 5887 mutex_destroy(&ipst->ips_igmp_slowtimeout_lock); 5888 mutex_destroy(&ipst->ips_mld_slowtimeout_lock); 5889 mutex_destroy(&ipst->ips_ip_addr_avail_lock); 5890 rw_destroy(&ipst->ips_ill_g_lock); 5891 5892 ip_ire_fini(ipst); 5893 ip6_asp_free(ipst); 5894 conn_drain_fini(ipst); 5895 ipcl_destroy(ipst); 5896 5897 mutex_destroy(&ipst->ips_ndp4->ndp_g_lock); 5898 mutex_destroy(&ipst->ips_ndp6->ndp_g_lock); 5899 kmem_free(ipst->ips_ndp4, sizeof (ndp_g_t)); 5900 ipst->ips_ndp4 = NULL; 5901 kmem_free(ipst->ips_ndp6, sizeof (ndp_g_t)); 5902 ipst->ips_ndp6 = NULL; 5903 5904 if (ipst->ips_loopback_ksp != NULL) { 5905 kstat_delete_netstack(ipst->ips_loopback_ksp, stackid); 5906 ipst->ips_loopback_ksp = NULL; 5907 } 5908 5909 kmem_free(ipst->ips_phyint_g_list, sizeof (phyint_list_t)); 5910 ipst->ips_phyint_g_list = NULL; 5911 kmem_free(ipst->ips_ill_g_heads, sizeof (ill_g_head_t) * MAX_G_HEADS); 5912 ipst->ips_ill_g_heads = NULL; 5913 5914 kmem_free(ipst, sizeof (*ipst)); 5915 } 5916 5917 /* 5918 * Called when the IP kernel module is loaded into the kernel 5919 */ 5920 void 5921 ip_ddi_init(void) 5922 { 5923 TCP6_MAJ = ddi_name_to_major(TCP6); 5924 TCP_MAJ = ddi_name_to_major(TCP); 5925 SCTP_MAJ = ddi_name_to_major(SCTP); 5926 SCTP6_MAJ = ddi_name_to_major(SCTP6); 5927 5928 ip_input_proc = ip_squeue_switch(ip_squeue_enter); 5929 5930 /* 5931 * For IP and TCP the minor numbers should start from 2 since we have 4 5932 * initial devices: ip, ip6, tcp, tcp6. 5933 */ 5934 if ((ip_minor_arena = inet_minor_create("ip_minor_arena", 5935 INET_MIN_DEV + 2, KM_SLEEP)) == NULL) { 5936 cmn_err(CE_PANIC, 5937 "ip_ddi_init: ip_minor_arena creation failed\n"); 5938 } 5939 5940 ip_poll_normal_ticks = MSEC_TO_TICK_ROUNDUP(ip_poll_normal_ms); 5941 5942 ipcl_g_init(); 5943 ip_ire_g_init(); 5944 ip_net_g_init(); 5945 5946 #ifdef ILL_DEBUG 5947 /* Default cleanup function */ 5948 ip_cleanup_func = ip_thread_exit; 5949 #endif 5950 5951 /* 5952 * We want to be informed each time a stack is created or 5953 * destroyed in the kernel, so we can maintain the 5954 * set of udp_stack_t's. 5955 */ 5956 netstack_register(NS_IP, ip_stack_init, ip_stack_shutdown, 5957 ip_stack_fini); 5958 5959 ipsec_policy_g_init(); 5960 tcp_ddi_g_init(); 5961 sctp_ddi_g_init(); 5962 5963 tnet_init(); 5964 } 5965 5966 /* 5967 * Initialize the IP stack instance. 5968 */ 5969 static void * 5970 ip_stack_init(netstackid_t stackid, netstack_t *ns) 5971 { 5972 ip_stack_t *ipst; 5973 ipparam_t *pa; 5974 ipndp_t *na; 5975 5976 #ifdef NS_DEBUG 5977 printf("ip_stack_init(stack %d)\n", stackid); 5978 #endif 5979 5980 ipst = (ip_stack_t *)kmem_zalloc(sizeof (*ipst), KM_SLEEP); 5981 ipst->ips_netstack = ns; 5982 5983 ipst->ips_ill_g_heads = kmem_zalloc(sizeof (ill_g_head_t) * MAX_G_HEADS, 5984 KM_SLEEP); 5985 ipst->ips_phyint_g_list = kmem_zalloc(sizeof (phyint_list_t), 5986 KM_SLEEP); 5987 ipst->ips_ndp4 = kmem_zalloc(sizeof (ndp_g_t), KM_SLEEP); 5988 ipst->ips_ndp6 = kmem_zalloc(sizeof (ndp_g_t), KM_SLEEP); 5989 mutex_init(&ipst->ips_ndp4->ndp_g_lock, NULL, MUTEX_DEFAULT, NULL); 5990 mutex_init(&ipst->ips_ndp6->ndp_g_lock, NULL, MUTEX_DEFAULT, NULL); 5991 5992 rw_init(&ipst->ips_ip_g_nd_lock, NULL, RW_DEFAULT, NULL); 5993 mutex_init(&ipst->ips_igmp_timer_lock, NULL, MUTEX_DEFAULT, NULL); 5994 ipst->ips_igmp_deferred_next = INFINITY; 5995 mutex_init(&ipst->ips_mld_timer_lock, NULL, MUTEX_DEFAULT, NULL); 5996 ipst->ips_mld_deferred_next = INFINITY; 5997 mutex_init(&ipst->ips_igmp_slowtimeout_lock, NULL, MUTEX_DEFAULT, NULL); 5998 mutex_init(&ipst->ips_mld_slowtimeout_lock, NULL, MUTEX_DEFAULT, NULL); 5999 mutex_init(&ipst->ips_ip_mi_lock, NULL, MUTEX_DEFAULT, NULL); 6000 mutex_init(&ipst->ips_ip_addr_avail_lock, NULL, MUTEX_DEFAULT, NULL); 6001 rw_init(&ipst->ips_ill_g_lock, NULL, RW_DEFAULT, NULL); 6002 rw_init(&ipst->ips_ipsec_capab_ills_lock, NULL, RW_DEFAULT, NULL); 6003 rw_init(&ipst->ips_ill_g_usesrc_lock, NULL, RW_DEFAULT, NULL); 6004 6005 ipcl_init(ipst); 6006 ip_ire_init(ipst); 6007 ip6_asp_init(ipst); 6008 ipif_init(ipst); 6009 conn_drain_init(ipst); 6010 ip_mrouter_stack_init(ipst); 6011 6012 ipst->ips_ip_g_frag_timeout = IP_FRAG_TIMEOUT; 6013 ipst->ips_ip_g_frag_timo_ms = IP_FRAG_TIMEOUT * 1000; 6014 6015 ipst->ips_ip_multirt_log_interval = 1000; 6016 6017 ipst->ips_ip_g_forward = IP_FORWARD_DEFAULT; 6018 ipst->ips_ipv6_forward = IP_FORWARD_DEFAULT; 6019 ipst->ips_ill_index = 1; 6020 6021 ipst->ips_saved_ip_g_forward = -1; 6022 ipst->ips_reg_vif_num = ALL_VIFS; /* Index to Register vif */ 6023 6024 pa = (ipparam_t *)kmem_alloc(sizeof (lcl_param_arr), KM_SLEEP); 6025 ipst->ips_param_arr = pa; 6026 bcopy(lcl_param_arr, ipst->ips_param_arr, sizeof (lcl_param_arr)); 6027 6028 na = (ipndp_t *)kmem_alloc(sizeof (lcl_ndp_arr), KM_SLEEP); 6029 ipst->ips_ndp_arr = na; 6030 bcopy(lcl_ndp_arr, ipst->ips_ndp_arr, sizeof (lcl_ndp_arr)); 6031 ipst->ips_ndp_arr[IPNDP_IP_FORWARDING_OFFSET].ip_ndp_data = 6032 (caddr_t)&ipst->ips_ip_g_forward; 6033 ipst->ips_ndp_arr[IPNDP_IP6_FORWARDING_OFFSET].ip_ndp_data = 6034 (caddr_t)&ipst->ips_ipv6_forward; 6035 ASSERT(strcmp(ipst->ips_ndp_arr[IPNDP_CGTP_FILTER_OFFSET].ip_ndp_name, 6036 "ip_cgtp_filter") == 0); 6037 ipst->ips_ndp_arr[IPNDP_CGTP_FILTER_OFFSET].ip_ndp_data = 6038 (caddr_t)&ip_cgtp_filter; 6039 ASSERT(strcmp(ipst->ips_ndp_arr[IPNDP_IPMP_HOOK_OFFSET].ip_ndp_name, 6040 "ipmp_hook_emulation") == 0); 6041 ipst->ips_ndp_arr[IPNDP_IPMP_HOOK_OFFSET].ip_ndp_data = 6042 (caddr_t)&ipst->ips_ipmp_hook_emulation; 6043 6044 (void) ip_param_register(&ipst->ips_ip_g_nd, 6045 ipst->ips_param_arr, A_CNT(lcl_param_arr), 6046 ipst->ips_ndp_arr, A_CNT(lcl_ndp_arr)); 6047 6048 ipst->ips_ip_mibkp = ip_kstat_init(stackid, ipst); 6049 ipst->ips_icmp_mibkp = icmp_kstat_init(stackid); 6050 ipst->ips_ip_kstat = ip_kstat2_init(stackid, &ipst->ips_ip_statistics); 6051 ipst->ips_ip6_kstat = 6052 ip6_kstat_init(stackid, &ipst->ips_ip6_statistics); 6053 6054 ipst->ips_ipmp_enable_failback = B_TRUE; 6055 6056 ipst->ips_ip_src_id = 1; 6057 rw_init(&ipst->ips_srcid_lock, NULL, RW_DEFAULT, NULL); 6058 6059 ip_net_init(ipst, ns); 6060 ipv4_hook_init(ipst); 6061 ipv6_hook_init(ipst); 6062 6063 return (ipst); 6064 } 6065 6066 /* 6067 * Allocate and initialize a DLPI template of the specified length. (May be 6068 * called as writer.) 6069 */ 6070 mblk_t * 6071 ip_dlpi_alloc(size_t len, t_uscalar_t prim) 6072 { 6073 mblk_t *mp; 6074 6075 mp = allocb(len, BPRI_MED); 6076 if (!mp) 6077 return (NULL); 6078 6079 /* 6080 * DLPIv2 says that DL_INFO_REQ and DL_TOKEN_REQ (the latter 6081 * of which we don't seem to use) are sent with M_PCPROTO, and 6082 * that other DLPI are M_PROTO. 6083 */ 6084 if (prim == DL_INFO_REQ) { 6085 mp->b_datap->db_type = M_PCPROTO; 6086 } else { 6087 mp->b_datap->db_type = M_PROTO; 6088 } 6089 6090 mp->b_wptr = mp->b_rptr + len; 6091 bzero(mp->b_rptr, len); 6092 ((dl_unitdata_req_t *)mp->b_rptr)->dl_primitive = prim; 6093 return (mp); 6094 } 6095 6096 const char * 6097 dlpi_prim_str(int prim) 6098 { 6099 switch (prim) { 6100 case DL_INFO_REQ: return ("DL_INFO_REQ"); 6101 case DL_INFO_ACK: return ("DL_INFO_ACK"); 6102 case DL_ATTACH_REQ: return ("DL_ATTACH_REQ"); 6103 case DL_DETACH_REQ: return ("DL_DETACH_REQ"); 6104 case DL_BIND_REQ: return ("DL_BIND_REQ"); 6105 case DL_BIND_ACK: return ("DL_BIND_ACK"); 6106 case DL_UNBIND_REQ: return ("DL_UNBIND_REQ"); 6107 case DL_OK_ACK: return ("DL_OK_ACK"); 6108 case DL_ERROR_ACK: return ("DL_ERROR_ACK"); 6109 case DL_ENABMULTI_REQ: return ("DL_ENABMULTI_REQ"); 6110 case DL_DISABMULTI_REQ: return ("DL_DISABMULTI_REQ"); 6111 case DL_PROMISCON_REQ: return ("DL_PROMISCON_REQ"); 6112 case DL_PROMISCOFF_REQ: return ("DL_PROMISCOFF_REQ"); 6113 case DL_UNITDATA_REQ: return ("DL_UNITDATA_REQ"); 6114 case DL_UNITDATA_IND: return ("DL_UNITDATA_IND"); 6115 case DL_UDERROR_IND: return ("DL_UDERROR_IND"); 6116 case DL_PHYS_ADDR_REQ: return ("DL_PHYS_ADDR_REQ"); 6117 case DL_PHYS_ADDR_ACK: return ("DL_PHYS_ADDR_ACK"); 6118 case DL_SET_PHYS_ADDR_REQ: return ("DL_SET_PHYS_ADDR_REQ"); 6119 case DL_NOTIFY_REQ: return ("DL_NOTIFY_REQ"); 6120 case DL_NOTIFY_ACK: return ("DL_NOTIFY_ACK"); 6121 case DL_NOTIFY_IND: return ("DL_NOTIFY_IND"); 6122 case DL_CAPABILITY_REQ: return ("DL_CAPABILITY_REQ"); 6123 case DL_CAPABILITY_ACK: return ("DL_CAPABILITY_ACK"); 6124 case DL_CONTROL_REQ: return ("DL_CONTROL_REQ"); 6125 case DL_CONTROL_ACK: return ("DL_CONTROL_ACK"); 6126 default: return ("<unknown primitive>"); 6127 } 6128 } 6129 6130 const char * 6131 dlpi_err_str(int err) 6132 { 6133 switch (err) { 6134 case DL_ACCESS: return ("DL_ACCESS"); 6135 case DL_BADADDR: return ("DL_BADADDR"); 6136 case DL_BADCORR: return ("DL_BADCORR"); 6137 case DL_BADDATA: return ("DL_BADDATA"); 6138 case DL_BADPPA: return ("DL_BADPPA"); 6139 case DL_BADPRIM: return ("DL_BADPRIM"); 6140 case DL_BADQOSPARAM: return ("DL_BADQOSPARAM"); 6141 case DL_BADQOSTYPE: return ("DL_BADQOSTYPE"); 6142 case DL_BADSAP: return ("DL_BADSAP"); 6143 case DL_BADTOKEN: return ("DL_BADTOKEN"); 6144 case DL_BOUND: return ("DL_BOUND"); 6145 case DL_INITFAILED: return ("DL_INITFAILED"); 6146 case DL_NOADDR: return ("DL_NOADDR"); 6147 case DL_NOTINIT: return ("DL_NOTINIT"); 6148 case DL_OUTSTATE: return ("DL_OUTSTATE"); 6149 case DL_SYSERR: return ("DL_SYSERR"); 6150 case DL_UNSUPPORTED: return ("DL_UNSUPPORTED"); 6151 case DL_UNDELIVERABLE: return ("DL_UNDELIVERABLE"); 6152 case DL_NOTSUPPORTED : return ("DL_NOTSUPPORTED "); 6153 case DL_TOOMANY: return ("DL_TOOMANY"); 6154 case DL_NOTENAB: return ("DL_NOTENAB"); 6155 case DL_BUSY: return ("DL_BUSY"); 6156 case DL_NOAUTO: return ("DL_NOAUTO"); 6157 case DL_NOXIDAUTO: return ("DL_NOXIDAUTO"); 6158 case DL_NOTESTAUTO: return ("DL_NOTESTAUTO"); 6159 case DL_XIDAUTO: return ("DL_XIDAUTO"); 6160 case DL_TESTAUTO: return ("DL_TESTAUTO"); 6161 case DL_PENDING: return ("DL_PENDING"); 6162 default: return ("<unknown error>"); 6163 } 6164 } 6165 6166 /* 6167 * Debug formatting routine. Returns a character string representation of the 6168 * addr in buf, of the form xxx.xxx.xxx.xxx. This routine takes the address 6169 * in the form of a ipaddr_t and calls ip_dot_saddr with a pointer. 6170 * 6171 * Once the ndd table-printing interfaces are removed, this can be changed to 6172 * standard dotted-decimal form. 6173 */ 6174 char * 6175 ip_dot_addr(ipaddr_t addr, char *buf) 6176 { 6177 uint8_t *ap = (uint8_t *)&addr; 6178 6179 (void) mi_sprintf(buf, "%03d.%03d.%03d.%03d", 6180 ap[0] & 0xFF, ap[1] & 0xFF, ap[2] & 0xFF, ap[3] & 0xFF); 6181 return (buf); 6182 } 6183 6184 /* 6185 * Write the given MAC address as a printable string in the usual colon- 6186 * separated format. 6187 */ 6188 const char * 6189 mac_colon_addr(const uint8_t *addr, size_t alen, char *buf, size_t buflen) 6190 { 6191 char *bp; 6192 6193 if (alen == 0 || buflen < 4) 6194 return ("?"); 6195 bp = buf; 6196 for (;;) { 6197 /* 6198 * If there are more MAC address bytes available, but we won't 6199 * have any room to print them, then add "..." to the string 6200 * instead. See below for the 'magic number' explanation. 6201 */ 6202 if ((alen == 2 && buflen < 6) || (alen > 2 && buflen < 7)) { 6203 (void) strcpy(bp, "..."); 6204 break; 6205 } 6206 (void) sprintf(bp, "%02x", *addr++); 6207 bp += 2; 6208 if (--alen == 0) 6209 break; 6210 *bp++ = ':'; 6211 buflen -= 3; 6212 /* 6213 * At this point, based on the first 'if' statement above, 6214 * either alen == 1 and buflen >= 3, or alen > 1 and 6215 * buflen >= 4. The first case leaves room for the final "xx" 6216 * number and trailing NUL byte. The second leaves room for at 6217 * least "...". Thus the apparently 'magic' numbers chosen for 6218 * that statement. 6219 */ 6220 } 6221 return (buf); 6222 } 6223 6224 /* 6225 * Send an ICMP error after patching up the packet appropriately. Returns 6226 * non-zero if the appropriate MIB should be bumped; zero otherwise. 6227 */ 6228 static boolean_t 6229 ip_fanout_send_icmp(queue_t *q, mblk_t *mp, uint_t flags, 6230 uint_t icmp_type, uint_t icmp_code, boolean_t mctl_present, 6231 zoneid_t zoneid, ip_stack_t *ipst) 6232 { 6233 ipha_t *ipha; 6234 mblk_t *first_mp; 6235 boolean_t secure; 6236 unsigned char db_type; 6237 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 6238 6239 first_mp = mp; 6240 if (mctl_present) { 6241 mp = mp->b_cont; 6242 secure = ipsec_in_is_secure(first_mp); 6243 ASSERT(mp != NULL); 6244 } else { 6245 /* 6246 * If this is an ICMP error being reported - which goes 6247 * up as M_CTLs, we need to convert them to M_DATA till 6248 * we finish checking with global policy because 6249 * ipsec_check_global_policy() assumes M_DATA as clear 6250 * and M_CTL as secure. 6251 */ 6252 db_type = DB_TYPE(mp); 6253 DB_TYPE(mp) = M_DATA; 6254 secure = B_FALSE; 6255 } 6256 /* 6257 * We are generating an icmp error for some inbound packet. 6258 * Called from all ip_fanout_(udp, tcp, proto) functions. 6259 * Before we generate an error, check with global policy 6260 * to see whether this is allowed to enter the system. As 6261 * there is no "conn", we are checking with global policy. 6262 */ 6263 ipha = (ipha_t *)mp->b_rptr; 6264 if (secure || ipss->ipsec_inbound_v4_policy_present) { 6265 first_mp = ipsec_check_global_policy(first_mp, NULL, 6266 ipha, NULL, mctl_present, ipst->ips_netstack); 6267 if (first_mp == NULL) 6268 return (B_FALSE); 6269 } 6270 6271 if (!mctl_present) 6272 DB_TYPE(mp) = db_type; 6273 6274 if (flags & IP_FF_SEND_ICMP) { 6275 if (flags & IP_FF_HDR_COMPLETE) { 6276 if (ip_hdr_complete(ipha, zoneid, ipst)) { 6277 freemsg(first_mp); 6278 return (B_TRUE); 6279 } 6280 } 6281 if (flags & IP_FF_CKSUM) { 6282 /* 6283 * Have to correct checksum since 6284 * the packet might have been 6285 * fragmented and the reassembly code in ip_rput 6286 * does not restore the IP checksum. 6287 */ 6288 ipha->ipha_hdr_checksum = 0; 6289 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 6290 } 6291 switch (icmp_type) { 6292 case ICMP_DEST_UNREACHABLE: 6293 icmp_unreachable(WR(q), first_mp, icmp_code, zoneid, 6294 ipst); 6295 break; 6296 default: 6297 freemsg(first_mp); 6298 break; 6299 } 6300 } else { 6301 freemsg(first_mp); 6302 return (B_FALSE); 6303 } 6304 6305 return (B_TRUE); 6306 } 6307 6308 /* 6309 * Used to send an ICMP error message when a packet is received for 6310 * a protocol that is not supported. The mblk passed as argument 6311 * is consumed by this function. 6312 */ 6313 void 6314 ip_proto_not_sup(queue_t *q, mblk_t *ipsec_mp, uint_t flags, zoneid_t zoneid, 6315 ip_stack_t *ipst) 6316 { 6317 mblk_t *mp; 6318 ipha_t *ipha; 6319 ill_t *ill; 6320 ipsec_in_t *ii; 6321 6322 ii = (ipsec_in_t *)ipsec_mp->b_rptr; 6323 ASSERT(ii->ipsec_in_type == IPSEC_IN); 6324 6325 mp = ipsec_mp->b_cont; 6326 ipsec_mp->b_cont = NULL; 6327 ipha = (ipha_t *)mp->b_rptr; 6328 /* Get ill from index in ipsec_in_t. */ 6329 ill = ill_lookup_on_ifindex(ii->ipsec_in_ill_index, 6330 (IPH_HDR_VERSION(ipha) == IPV6_VERSION), NULL, NULL, NULL, NULL, 6331 ipst); 6332 if (ill != NULL) { 6333 if (IPH_HDR_VERSION(ipha) == IP_VERSION) { 6334 if (ip_fanout_send_icmp(q, mp, flags, 6335 ICMP_DEST_UNREACHABLE, 6336 ICMP_PROTOCOL_UNREACHABLE, B_FALSE, zoneid, ipst)) { 6337 BUMP_MIB(ill->ill_ip_mib, 6338 ipIfStatsInUnknownProtos); 6339 } 6340 } else { 6341 if (ip_fanout_send_icmp_v6(q, mp, flags, 6342 ICMP6_PARAM_PROB, ICMP6_PARAMPROB_NEXTHEADER, 6343 0, B_FALSE, zoneid, ipst)) { 6344 BUMP_MIB(ill->ill_ip_mib, 6345 ipIfStatsInUnknownProtos); 6346 } 6347 } 6348 ill_refrele(ill); 6349 } else { /* re-link for the freemsg() below. */ 6350 ipsec_mp->b_cont = mp; 6351 } 6352 6353 /* If ICMP delivered, ipsec_mp will be a singleton (b_cont == NULL). */ 6354 freemsg(ipsec_mp); 6355 } 6356 6357 /* 6358 * See if the inbound datagram has had IPsec processing applied to it. 6359 */ 6360 boolean_t 6361 ipsec_in_is_secure(mblk_t *ipsec_mp) 6362 { 6363 ipsec_in_t *ii; 6364 6365 ii = (ipsec_in_t *)ipsec_mp->b_rptr; 6366 ASSERT(ii->ipsec_in_type == IPSEC_IN); 6367 6368 if (ii->ipsec_in_loopback) { 6369 return (ii->ipsec_in_secure); 6370 } else { 6371 return (ii->ipsec_in_ah_sa != NULL || 6372 ii->ipsec_in_esp_sa != NULL || 6373 ii->ipsec_in_decaps); 6374 } 6375 } 6376 6377 /* 6378 * Handle protocols with which IP is less intimate. There 6379 * can be more than one stream bound to a particular 6380 * protocol. When this is the case, normally each one gets a copy 6381 * of any incoming packets. 6382 * 6383 * IPSEC NOTE : 6384 * 6385 * Don't allow a secure packet going up a non-secure connection. 6386 * We don't allow this because 6387 * 6388 * 1) Reply might go out in clear which will be dropped at 6389 * the sending side. 6390 * 2) If the reply goes out in clear it will give the 6391 * adversary enough information for getting the key in 6392 * most of the cases. 6393 * 6394 * Moreover getting a secure packet when we expect clear 6395 * implies that SA's were added without checking for 6396 * policy on both ends. This should not happen once ISAKMP 6397 * is used to negotiate SAs as SAs will be added only after 6398 * verifying the policy. 6399 * 6400 * NOTE : If the packet was tunneled and not multicast we only send 6401 * to it the first match. Unlike TCP and UDP fanouts this doesn't fall 6402 * back to delivering packets to AF_INET6 raw sockets. 6403 * 6404 * IPQoS Notes: 6405 * Once we have determined the client, invoke IPPF processing. 6406 * Policy processing takes place only if the callout_position, IPP_LOCAL_IN, 6407 * is enabled. If we get here from icmp_inbound_error_fanout or ip_wput_local 6408 * ip_policy will be false. 6409 * 6410 * Zones notes: 6411 * Currently only applications in the global zone can create raw sockets for 6412 * protocols other than ICMP. So unlike the broadcast / multicast case of 6413 * ip_fanout_udp(), we only send a copy of the packet to streams in the 6414 * specified zone. For ICMP, this is handled by the callers of icmp_inbound(). 6415 */ 6416 static void 6417 ip_fanout_proto(queue_t *q, mblk_t *mp, ill_t *ill, ipha_t *ipha, uint_t flags, 6418 boolean_t mctl_present, boolean_t ip_policy, ill_t *recv_ill, 6419 zoneid_t zoneid) 6420 { 6421 queue_t *rq; 6422 mblk_t *mp1, *first_mp1; 6423 uint_t protocol = ipha->ipha_protocol; 6424 ipaddr_t dst; 6425 boolean_t one_only; 6426 mblk_t *first_mp = mp; 6427 boolean_t secure; 6428 uint32_t ill_index; 6429 conn_t *connp, *first_connp, *next_connp; 6430 connf_t *connfp; 6431 boolean_t shared_addr; 6432 mib2_ipIfStatsEntry_t *mibptr; 6433 ip_stack_t *ipst = recv_ill->ill_ipst; 6434 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 6435 6436 mibptr = (ill != NULL) ? ill->ill_ip_mib : &ipst->ips_ip_mib; 6437 if (mctl_present) { 6438 mp = first_mp->b_cont; 6439 secure = ipsec_in_is_secure(first_mp); 6440 ASSERT(mp != NULL); 6441 } else { 6442 secure = B_FALSE; 6443 } 6444 dst = ipha->ipha_dst; 6445 /* 6446 * If the packet was tunneled and not multicast we only send to it 6447 * the first match. 6448 */ 6449 one_only = ((protocol == IPPROTO_ENCAP || protocol == IPPROTO_IPV6) && 6450 !CLASSD(dst)); 6451 6452 shared_addr = (zoneid == ALL_ZONES); 6453 if (shared_addr) { 6454 /* 6455 * We don't allow multilevel ports for raw IP, so no need to 6456 * check for that here. 6457 */ 6458 zoneid = tsol_packet_to_zoneid(mp); 6459 } 6460 6461 connfp = &ipst->ips_ipcl_proto_fanout[protocol]; 6462 mutex_enter(&connfp->connf_lock); 6463 connp = connfp->connf_head; 6464 for (connp = connfp->connf_head; connp != NULL; 6465 connp = connp->conn_next) { 6466 if (IPCL_PROTO_MATCH(connp, protocol, ipha, ill, flags, 6467 zoneid) && 6468 (!is_system_labeled() || 6469 tsol_receive_local(mp, &dst, IPV4_VERSION, shared_addr, 6470 connp))) 6471 break; 6472 } 6473 6474 if (connp == NULL || connp->conn_upq == NULL) { 6475 /* 6476 * No one bound to these addresses. Is 6477 * there a client that wants all 6478 * unclaimed datagrams? 6479 */ 6480 mutex_exit(&connfp->connf_lock); 6481 /* 6482 * Check for IPPROTO_ENCAP... 6483 */ 6484 if (protocol == IPPROTO_ENCAP && ipst->ips_ip_g_mrouter) { 6485 /* 6486 * If an IPsec mblk is here on a multicast 6487 * tunnel (using ip_mroute stuff), check policy here, 6488 * THEN ship off to ip_mroute_decap(). 6489 * 6490 * BTW, If I match a configured IP-in-IP 6491 * tunnel, this path will not be reached, and 6492 * ip_mroute_decap will never be called. 6493 */ 6494 first_mp = ipsec_check_global_policy(first_mp, connp, 6495 ipha, NULL, mctl_present, ipst->ips_netstack); 6496 if (first_mp != NULL) { 6497 if (mctl_present) 6498 freeb(first_mp); 6499 ip_mroute_decap(q, mp, ill); 6500 } /* Else we already freed everything! */ 6501 } else { 6502 /* 6503 * Otherwise send an ICMP protocol unreachable. 6504 */ 6505 if (ip_fanout_send_icmp(q, first_mp, flags, 6506 ICMP_DEST_UNREACHABLE, ICMP_PROTOCOL_UNREACHABLE, 6507 mctl_present, zoneid, ipst)) { 6508 BUMP_MIB(mibptr, ipIfStatsInUnknownProtos); 6509 } 6510 } 6511 return; 6512 } 6513 CONN_INC_REF(connp); 6514 first_connp = connp; 6515 6516 /* 6517 * Only send message to one tunnel driver by immediately 6518 * terminating the loop. 6519 */ 6520 connp = one_only ? NULL : connp->conn_next; 6521 6522 for (;;) { 6523 while (connp != NULL) { 6524 if (IPCL_PROTO_MATCH(connp, protocol, ipha, ill, 6525 flags, zoneid) && 6526 (!is_system_labeled() || 6527 tsol_receive_local(mp, &dst, IPV4_VERSION, 6528 shared_addr, connp))) 6529 break; 6530 connp = connp->conn_next; 6531 } 6532 6533 /* 6534 * Copy the packet. 6535 */ 6536 if (connp == NULL || connp->conn_upq == NULL || 6537 (((first_mp1 = dupmsg(first_mp)) == NULL) && 6538 ((first_mp1 = ip_copymsg(first_mp)) == NULL))) { 6539 /* 6540 * No more interested clients or memory 6541 * allocation failed 6542 */ 6543 connp = first_connp; 6544 break; 6545 } 6546 mp1 = mctl_present ? first_mp1->b_cont : first_mp1; 6547 CONN_INC_REF(connp); 6548 mutex_exit(&connfp->connf_lock); 6549 rq = connp->conn_rq; 6550 if (!canputnext(rq)) { 6551 if (flags & IP_FF_RAWIP) { 6552 BUMP_MIB(mibptr, rawipIfStatsInOverflows); 6553 } else { 6554 BUMP_MIB(&ipst->ips_icmp_mib, icmpInOverflows); 6555 } 6556 6557 freemsg(first_mp1); 6558 } else { 6559 /* 6560 * Don't enforce here if we're an actual tunnel - 6561 * let "tun" do it instead. 6562 */ 6563 if (!IPCL_IS_IPTUN(connp) && 6564 (CONN_INBOUND_POLICY_PRESENT(connp, ipss) || 6565 secure)) { 6566 first_mp1 = ipsec_check_inbound_policy 6567 (first_mp1, connp, ipha, NULL, 6568 mctl_present); 6569 } 6570 if (first_mp1 != NULL) { 6571 int in_flags = 0; 6572 /* 6573 * ip_fanout_proto also gets called from 6574 * icmp_inbound_error_fanout, in which case 6575 * the msg type is M_CTL. Don't add info 6576 * in this case for the time being. In future 6577 * when there is a need for knowing the 6578 * inbound iface index for ICMP error msgs, 6579 * then this can be changed. 6580 */ 6581 if (connp->conn_recvif) 6582 in_flags = IPF_RECVIF; 6583 /* 6584 * The ULP may support IP_RECVPKTINFO for both 6585 * IP v4 and v6 so pass the appropriate argument 6586 * based on conn IP version. 6587 */ 6588 if (connp->conn_ip_recvpktinfo) { 6589 if (connp->conn_af_isv6) { 6590 /* 6591 * V6 only needs index 6592 */ 6593 in_flags |= IPF_RECVIF; 6594 } else { 6595 /* 6596 * V4 needs index + 6597 * matching address. 6598 */ 6599 in_flags |= IPF_RECVADDR; 6600 } 6601 } 6602 if ((in_flags != 0) && 6603 (mp->b_datap->db_type != M_CTL)) { 6604 /* 6605 * the actual data will be 6606 * contained in b_cont upon 6607 * successful return of the 6608 * following call else 6609 * original mblk is returned 6610 */ 6611 ASSERT(recv_ill != NULL); 6612 mp1 = ip_add_info(mp1, recv_ill, 6613 in_flags, IPCL_ZONEID(connp), ipst); 6614 } 6615 BUMP_MIB(mibptr, ipIfStatsHCInDelivers); 6616 if (mctl_present) 6617 freeb(first_mp1); 6618 putnext(rq, mp1); 6619 } 6620 } 6621 mutex_enter(&connfp->connf_lock); 6622 /* Follow the next pointer before releasing the conn. */ 6623 next_connp = connp->conn_next; 6624 CONN_DEC_REF(connp); 6625 connp = next_connp; 6626 } 6627 6628 /* Last one. Send it upstream. */ 6629 mutex_exit(&connfp->connf_lock); 6630 6631 /* 6632 * If this packet is coming from icmp_inbound_error_fanout ip_policy 6633 * will be set to false. 6634 */ 6635 if (IPP_ENABLED(IPP_LOCAL_IN, ipst) && ip_policy) { 6636 ill_index = ill->ill_phyint->phyint_ifindex; 6637 ip_process(IPP_LOCAL_IN, &mp, ill_index); 6638 if (mp == NULL) { 6639 CONN_DEC_REF(connp); 6640 if (mctl_present) { 6641 freeb(first_mp); 6642 } 6643 return; 6644 } 6645 } 6646 6647 rq = connp->conn_rq; 6648 if (!canputnext(rq)) { 6649 if (flags & IP_FF_RAWIP) { 6650 BUMP_MIB(mibptr, rawipIfStatsInOverflows); 6651 } else { 6652 BUMP_MIB(&ipst->ips_icmp_mib, icmpInOverflows); 6653 } 6654 6655 freemsg(first_mp); 6656 } else { 6657 if (IPCL_IS_IPTUN(connp)) { 6658 /* 6659 * Tunneled packet. We enforce policy in the tunnel 6660 * module itself. 6661 * 6662 * Send the WHOLE packet up (incl. IPSEC_IN) without 6663 * a policy check. 6664 */ 6665 putnext(rq, first_mp); 6666 CONN_DEC_REF(connp); 6667 return; 6668 } 6669 6670 if ((CONN_INBOUND_POLICY_PRESENT(connp, ipss) || secure)) { 6671 first_mp = ipsec_check_inbound_policy(first_mp, connp, 6672 ipha, NULL, mctl_present); 6673 } 6674 6675 if (first_mp != NULL) { 6676 int in_flags = 0; 6677 6678 /* 6679 * ip_fanout_proto also gets called 6680 * from icmp_inbound_error_fanout, in 6681 * which case the msg type is M_CTL. 6682 * Don't add info in this case for time 6683 * being. In future when there is a 6684 * need for knowing the inbound iface 6685 * index for ICMP error msgs, then this 6686 * can be changed 6687 */ 6688 if (connp->conn_recvif) 6689 in_flags = IPF_RECVIF; 6690 if (connp->conn_ip_recvpktinfo) { 6691 if (connp->conn_af_isv6) { 6692 /* 6693 * V6 only needs index 6694 */ 6695 in_flags |= IPF_RECVIF; 6696 } else { 6697 /* 6698 * V4 needs index + 6699 * matching address. 6700 */ 6701 in_flags |= IPF_RECVADDR; 6702 } 6703 } 6704 if ((in_flags != 0) && 6705 (mp->b_datap->db_type != M_CTL)) { 6706 6707 /* 6708 * the actual data will be contained in 6709 * b_cont upon successful return 6710 * of the following call else original 6711 * mblk is returned 6712 */ 6713 ASSERT(recv_ill != NULL); 6714 mp = ip_add_info(mp, recv_ill, 6715 in_flags, IPCL_ZONEID(connp), ipst); 6716 } 6717 BUMP_MIB(mibptr, ipIfStatsHCInDelivers); 6718 putnext(rq, mp); 6719 if (mctl_present) 6720 freeb(first_mp); 6721 } 6722 } 6723 CONN_DEC_REF(connp); 6724 } 6725 6726 /* 6727 * Fanout for TCP packets 6728 * The caller puts <fport, lport> in the ports parameter. 6729 * 6730 * IPQoS Notes 6731 * Before sending it to the client, invoke IPPF processing. 6732 * Policy processing takes place only if the callout_position, IPP_LOCAL_IN, 6733 * is enabled. If we get here from icmp_inbound_error_fanout or ip_wput_local 6734 * ip_policy is false. 6735 */ 6736 static void 6737 ip_fanout_tcp(queue_t *q, mblk_t *mp, ill_t *recv_ill, ipha_t *ipha, 6738 uint_t flags, boolean_t mctl_present, boolean_t ip_policy, zoneid_t zoneid) 6739 { 6740 mblk_t *first_mp; 6741 boolean_t secure; 6742 uint32_t ill_index; 6743 int ip_hdr_len; 6744 tcph_t *tcph; 6745 boolean_t syn_present = B_FALSE; 6746 conn_t *connp; 6747 ip_stack_t *ipst = recv_ill->ill_ipst; 6748 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 6749 6750 ASSERT(recv_ill != NULL); 6751 6752 first_mp = mp; 6753 if (mctl_present) { 6754 ASSERT(first_mp->b_datap->db_type == M_CTL); 6755 mp = first_mp->b_cont; 6756 secure = ipsec_in_is_secure(first_mp); 6757 ASSERT(mp != NULL); 6758 } else { 6759 secure = B_FALSE; 6760 } 6761 6762 ip_hdr_len = IPH_HDR_LENGTH(mp->b_rptr); 6763 6764 if ((connp = ipcl_classify_v4(mp, IPPROTO_TCP, ip_hdr_len, 6765 zoneid, ipst)) == NULL) { 6766 /* 6767 * No connected connection or listener. Send a 6768 * TH_RST via tcp_xmit_listeners_reset. 6769 */ 6770 6771 /* Initiate IPPf processing, if needed. */ 6772 if (IPP_ENABLED(IPP_LOCAL_IN, ipst)) { 6773 uint32_t ill_index; 6774 ill_index = recv_ill->ill_phyint->phyint_ifindex; 6775 ip_process(IPP_LOCAL_IN, &first_mp, ill_index); 6776 if (first_mp == NULL) 6777 return; 6778 } 6779 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsHCInDelivers); 6780 ip2dbg(("ip_fanout_tcp: no listener; send reset to zone %d\n", 6781 zoneid)); 6782 tcp_xmit_listeners_reset(first_mp, ip_hdr_len, zoneid, 6783 ipst->ips_netstack->netstack_tcp); 6784 return; 6785 } 6786 6787 /* 6788 * Allocate the SYN for the TCP connection here itself 6789 */ 6790 tcph = (tcph_t *)&mp->b_rptr[ip_hdr_len]; 6791 if ((tcph->th_flags[0] & (TH_SYN|TH_ACK|TH_RST|TH_URG)) == TH_SYN) { 6792 if (IPCL_IS_TCP(connp)) { 6793 squeue_t *sqp; 6794 6795 /* 6796 * For fused tcp loopback, assign the eager's 6797 * squeue to be that of the active connect's. 6798 * Note that we don't check for IP_FF_LOOPBACK 6799 * here since this routine gets called only 6800 * for loopback (unlike the IPv6 counterpart). 6801 */ 6802 ASSERT(Q_TO_CONN(q) != NULL); 6803 if (do_tcp_fusion && 6804 !CONN_INBOUND_POLICY_PRESENT(connp, ipss) && 6805 !secure && 6806 !IPP_ENABLED(IPP_LOCAL_IN, ipst) && !ip_policy && 6807 IPCL_IS_TCP(Q_TO_CONN(q))) { 6808 ASSERT(Q_TO_CONN(q)->conn_sqp != NULL); 6809 sqp = Q_TO_CONN(q)->conn_sqp; 6810 } else { 6811 sqp = IP_SQUEUE_GET(lbolt); 6812 } 6813 6814 mp->b_datap->db_struioflag |= STRUIO_EAGER; 6815 DB_CKSUMSTART(mp) = (intptr_t)sqp; 6816 syn_present = B_TRUE; 6817 } 6818 } 6819 6820 if (IPCL_IS_TCP(connp) && IPCL_IS_BOUND(connp) && !syn_present) { 6821 uint_t flags = (unsigned int)tcph->th_flags[0] & 0xFF; 6822 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsHCInDelivers); 6823 if ((flags & TH_RST) || (flags & TH_URG)) { 6824 CONN_DEC_REF(connp); 6825 freemsg(first_mp); 6826 return; 6827 } 6828 if (flags & TH_ACK) { 6829 tcp_xmit_listeners_reset(first_mp, ip_hdr_len, zoneid, 6830 ipst->ips_netstack->netstack_tcp); 6831 CONN_DEC_REF(connp); 6832 return; 6833 } 6834 6835 CONN_DEC_REF(connp); 6836 freemsg(first_mp); 6837 return; 6838 } 6839 6840 if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) || secure) { 6841 first_mp = ipsec_check_inbound_policy(first_mp, connp, ipha, 6842 NULL, mctl_present); 6843 if (first_mp == NULL) { 6844 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsInDiscards); 6845 CONN_DEC_REF(connp); 6846 return; 6847 } 6848 if (IPCL_IS_TCP(connp) && IPCL_IS_BOUND(connp)) { 6849 ASSERT(syn_present); 6850 if (mctl_present) { 6851 ASSERT(first_mp != mp); 6852 first_mp->b_datap->db_struioflag |= 6853 STRUIO_POLICY; 6854 } else { 6855 ASSERT(first_mp == mp); 6856 mp->b_datap->db_struioflag &= 6857 ~STRUIO_EAGER; 6858 mp->b_datap->db_struioflag |= 6859 STRUIO_POLICY; 6860 } 6861 } else { 6862 /* 6863 * Discard first_mp early since we're dealing with a 6864 * fully-connected conn_t and tcp doesn't do policy in 6865 * this case. 6866 */ 6867 if (mctl_present) { 6868 freeb(first_mp); 6869 mctl_present = B_FALSE; 6870 } 6871 first_mp = mp; 6872 } 6873 } 6874 6875 /* 6876 * Initiate policy processing here if needed. If we get here from 6877 * icmp_inbound_error_fanout, ip_policy is false. 6878 */ 6879 if (IPP_ENABLED(IPP_LOCAL_IN, ipst) && ip_policy) { 6880 ill_index = recv_ill->ill_phyint->phyint_ifindex; 6881 ip_process(IPP_LOCAL_IN, &mp, ill_index); 6882 if (mp == NULL) { 6883 CONN_DEC_REF(connp); 6884 if (mctl_present) 6885 freeb(first_mp); 6886 return; 6887 } else if (mctl_present) { 6888 ASSERT(first_mp != mp); 6889 first_mp->b_cont = mp; 6890 } else { 6891 first_mp = mp; 6892 } 6893 } 6894 6895 6896 6897 /* Handle socket options. */ 6898 if (!syn_present && 6899 connp->conn_ip_recvpktinfo && (flags & IP_FF_IPINFO)) { 6900 /* Add header */ 6901 ASSERT(recv_ill != NULL); 6902 /* 6903 * Since tcp does not support IP_RECVPKTINFO for V4, only pass 6904 * IPF_RECVIF. 6905 */ 6906 mp = ip_add_info(mp, recv_ill, IPF_RECVIF, IPCL_ZONEID(connp), 6907 ipst); 6908 if (mp == NULL) { 6909 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsInDiscards); 6910 CONN_DEC_REF(connp); 6911 if (mctl_present) 6912 freeb(first_mp); 6913 return; 6914 } else if (mctl_present) { 6915 /* 6916 * ip_add_info might return a new mp. 6917 */ 6918 ASSERT(first_mp != mp); 6919 first_mp->b_cont = mp; 6920 } else { 6921 first_mp = mp; 6922 } 6923 } 6924 6925 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsHCInDelivers); 6926 if (IPCL_IS_TCP(connp)) { 6927 (*ip_input_proc)(connp->conn_sqp, first_mp, 6928 connp->conn_recv, connp, SQTAG_IP_FANOUT_TCP); 6929 } else { 6930 putnext(connp->conn_rq, first_mp); 6931 CONN_DEC_REF(connp); 6932 } 6933 } 6934 6935 /* 6936 * Deliver a udp packet to the given conn, possibly applying ipsec policy. 6937 * We are responsible for disposing of mp, such as by freemsg() or putnext() 6938 * Caller is responsible for dropping references to the conn, and freeing 6939 * first_mp. 6940 * 6941 * IPQoS Notes 6942 * Before sending it to the client, invoke IPPF processing. Policy processing 6943 * takes place only if the callout_position, IPP_LOCAL_IN, is enabled and 6944 * ip_policy is true. If we get here from icmp_inbound_error_fanout or 6945 * ip_wput_local, ip_policy is false. 6946 */ 6947 static void 6948 ip_fanout_udp_conn(conn_t *connp, mblk_t *first_mp, mblk_t *mp, 6949 boolean_t secure, ill_t *ill, ipha_t *ipha, uint_t flags, ill_t *recv_ill, 6950 boolean_t ip_policy) 6951 { 6952 boolean_t mctl_present = (first_mp != NULL); 6953 uint32_t in_flags = 0; /* set to IP_RECVSLLA and/or IP_RECVIF */ 6954 uint32_t ill_index; 6955 ip_stack_t *ipst = recv_ill->ill_ipst; 6956 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 6957 6958 ASSERT(ill != NULL); 6959 6960 if (mctl_present) 6961 first_mp->b_cont = mp; 6962 else 6963 first_mp = mp; 6964 6965 if (CONN_UDP_FLOWCTLD(connp)) { 6966 BUMP_MIB(ill->ill_ip_mib, udpIfStatsInOverflows); 6967 freemsg(first_mp); 6968 return; 6969 } 6970 6971 if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) || secure) { 6972 first_mp = ipsec_check_inbound_policy(first_mp, connp, ipha, 6973 NULL, mctl_present); 6974 if (first_mp == NULL) { 6975 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 6976 return; /* Freed by ipsec_check_inbound_policy(). */ 6977 } 6978 } 6979 if (mctl_present) 6980 freeb(first_mp); 6981 6982 /* Handle options. */ 6983 if (connp->conn_recvif) 6984 in_flags = IPF_RECVIF; 6985 /* 6986 * UDP supports IP_RECVPKTINFO option for both v4 and v6 so the flag 6987 * passed to ip_add_info is based on IP version of connp. 6988 */ 6989 if (connp->conn_ip_recvpktinfo && (flags & IP_FF_IPINFO)) { 6990 if (connp->conn_af_isv6) { 6991 /* 6992 * V6 only needs index 6993 */ 6994 in_flags |= IPF_RECVIF; 6995 } else { 6996 /* 6997 * V4 needs index + matching address. 6998 */ 6999 in_flags |= IPF_RECVADDR; 7000 } 7001 } 7002 7003 if (connp->conn_recvslla && !(flags & IP_FF_SEND_SLLA)) 7004 in_flags |= IPF_RECVSLLA; 7005 7006 /* 7007 * Initiate IPPF processing here, if needed. Note first_mp won't be 7008 * freed if the packet is dropped. The caller will do so. 7009 */ 7010 if (IPP_ENABLED(IPP_LOCAL_IN, ipst) && ip_policy) { 7011 ill_index = recv_ill->ill_phyint->phyint_ifindex; 7012 ip_process(IPP_LOCAL_IN, &mp, ill_index); 7013 if (mp == NULL) { 7014 return; 7015 } 7016 } 7017 if ((in_flags != 0) && 7018 (mp->b_datap->db_type != M_CTL)) { 7019 /* 7020 * The actual data will be contained in b_cont 7021 * upon successful return of the following call 7022 * else original mblk is returned 7023 */ 7024 ASSERT(recv_ill != NULL); 7025 mp = ip_add_info(mp, recv_ill, in_flags, IPCL_ZONEID(connp), 7026 ipst); 7027 } 7028 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 7029 /* Send it upstream */ 7030 CONN_UDP_RECV(connp, mp); 7031 } 7032 7033 /* 7034 * Fanout for UDP packets. 7035 * The caller puts <fport, lport> in the ports parameter. 7036 * 7037 * If SO_REUSEADDR is set all multicast and broadcast packets 7038 * will be delivered to all streams bound to the same port. 7039 * 7040 * Zones notes: 7041 * Multicast and broadcast packets will be distributed to streams in all zones. 7042 * In the special case where an AF_INET socket binds to 0.0.0.0/<port> and an 7043 * AF_INET6 socket binds to ::/<port>, only the AF_INET socket receives the IPv4 7044 * packets. To maintain this behavior with multiple zones, the conns are grouped 7045 * by zone and the SO_REUSEADDR flag is checked for the first matching conn in 7046 * each zone. If unset, all the following conns in the same zone are skipped. 7047 */ 7048 static void 7049 ip_fanout_udp(queue_t *q, mblk_t *mp, ill_t *ill, ipha_t *ipha, 7050 uint32_t ports, boolean_t broadcast, uint_t flags, boolean_t mctl_present, 7051 boolean_t ip_policy, ill_t *recv_ill, zoneid_t zoneid) 7052 { 7053 uint32_t dstport, srcport; 7054 ipaddr_t dst; 7055 mblk_t *first_mp; 7056 boolean_t secure; 7057 in6_addr_t v6src; 7058 conn_t *connp; 7059 connf_t *connfp; 7060 conn_t *first_connp; 7061 conn_t *next_connp; 7062 mblk_t *mp1, *first_mp1; 7063 ipaddr_t src; 7064 zoneid_t last_zoneid; 7065 boolean_t reuseaddr; 7066 boolean_t shared_addr; 7067 ip_stack_t *ipst; 7068 7069 ASSERT(recv_ill != NULL); 7070 ipst = recv_ill->ill_ipst; 7071 7072 first_mp = mp; 7073 if (mctl_present) { 7074 mp = first_mp->b_cont; 7075 first_mp->b_cont = NULL; 7076 secure = ipsec_in_is_secure(first_mp); 7077 ASSERT(mp != NULL); 7078 } else { 7079 first_mp = NULL; 7080 secure = B_FALSE; 7081 } 7082 7083 /* Extract ports in net byte order */ 7084 dstport = htons(ntohl(ports) & 0xFFFF); 7085 srcport = htons(ntohl(ports) >> 16); 7086 dst = ipha->ipha_dst; 7087 src = ipha->ipha_src; 7088 7089 shared_addr = (zoneid == ALL_ZONES); 7090 if (shared_addr) { 7091 /* 7092 * No need to handle exclusive-stack zones since ALL_ZONES 7093 * only applies to the shared stack. 7094 */ 7095 zoneid = tsol_mlp_findzone(IPPROTO_UDP, dstport); 7096 if (zoneid == ALL_ZONES) 7097 zoneid = tsol_packet_to_zoneid(mp); 7098 } 7099 7100 connfp = &ipst->ips_ipcl_udp_fanout[IPCL_UDP_HASH(dstport, ipst)]; 7101 mutex_enter(&connfp->connf_lock); 7102 connp = connfp->connf_head; 7103 if (!broadcast && !CLASSD(dst)) { 7104 /* 7105 * Not broadcast or multicast. Send to the one (first) 7106 * client we find. No need to check conn_wantpacket() 7107 * since IP_BOUND_IF/conn_incoming_ill does not apply to 7108 * IPv4 unicast packets. 7109 */ 7110 while ((connp != NULL) && 7111 (!IPCL_UDP_MATCH(connp, dstport, dst, srcport, src) || 7112 !IPCL_ZONE_MATCH(connp, zoneid))) { 7113 connp = connp->conn_next; 7114 } 7115 7116 if (connp == NULL || connp->conn_upq == NULL) 7117 goto notfound; 7118 7119 if (is_system_labeled() && 7120 !tsol_receive_local(mp, &dst, IPV4_VERSION, shared_addr, 7121 connp)) 7122 goto notfound; 7123 7124 CONN_INC_REF(connp); 7125 mutex_exit(&connfp->connf_lock); 7126 ip_fanout_udp_conn(connp, first_mp, mp, secure, ill, ipha, 7127 flags, recv_ill, ip_policy); 7128 IP_STAT(ipst, ip_udp_fannorm); 7129 CONN_DEC_REF(connp); 7130 return; 7131 } 7132 7133 /* 7134 * Broadcast and multicast case 7135 * 7136 * Need to check conn_wantpacket(). 7137 * If SO_REUSEADDR has been set on the first we send the 7138 * packet to all clients that have joined the group and 7139 * match the port. 7140 */ 7141 7142 while (connp != NULL) { 7143 if ((IPCL_UDP_MATCH(connp, dstport, dst, srcport, src)) && 7144 conn_wantpacket(connp, ill, ipha, flags, zoneid) && 7145 (!is_system_labeled() || 7146 tsol_receive_local(mp, &dst, IPV4_VERSION, shared_addr, 7147 connp))) 7148 break; 7149 connp = connp->conn_next; 7150 } 7151 7152 if (connp == NULL || connp->conn_upq == NULL) 7153 goto notfound; 7154 7155 first_connp = connp; 7156 /* 7157 * When SO_REUSEADDR is not set, send the packet only to the first 7158 * matching connection in its zone by keeping track of the zoneid. 7159 */ 7160 reuseaddr = first_connp->conn_reuseaddr; 7161 last_zoneid = first_connp->conn_zoneid; 7162 7163 CONN_INC_REF(connp); 7164 connp = connp->conn_next; 7165 for (;;) { 7166 while (connp != NULL) { 7167 if (IPCL_UDP_MATCH(connp, dstport, dst, srcport, src) && 7168 (reuseaddr || connp->conn_zoneid != last_zoneid) && 7169 conn_wantpacket(connp, ill, ipha, flags, zoneid) && 7170 (!is_system_labeled() || 7171 tsol_receive_local(mp, &dst, IPV4_VERSION, 7172 shared_addr, connp))) 7173 break; 7174 connp = connp->conn_next; 7175 } 7176 /* 7177 * Just copy the data part alone. The mctl part is 7178 * needed just for verifying policy and it is never 7179 * sent up. 7180 */ 7181 if (connp == NULL || (((mp1 = dupmsg(mp)) == NULL) && 7182 ((mp1 = copymsg(mp)) == NULL))) { 7183 /* 7184 * No more interested clients or memory 7185 * allocation failed 7186 */ 7187 connp = first_connp; 7188 break; 7189 } 7190 if (connp->conn_zoneid != last_zoneid) { 7191 /* 7192 * Update the zoneid so that the packet isn't sent to 7193 * any more conns in the same zone unless SO_REUSEADDR 7194 * is set. 7195 */ 7196 reuseaddr = connp->conn_reuseaddr; 7197 last_zoneid = connp->conn_zoneid; 7198 } 7199 if (first_mp != NULL) { 7200 ASSERT(((ipsec_info_t *)first_mp->b_rptr)-> 7201 ipsec_info_type == IPSEC_IN); 7202 first_mp1 = ipsec_in_tag(first_mp, NULL, 7203 ipst->ips_netstack); 7204 if (first_mp1 == NULL) { 7205 freemsg(mp1); 7206 connp = first_connp; 7207 break; 7208 } 7209 } else { 7210 first_mp1 = NULL; 7211 } 7212 CONN_INC_REF(connp); 7213 mutex_exit(&connfp->connf_lock); 7214 /* 7215 * IPQoS notes: We don't send the packet for policy 7216 * processing here, will do it for the last one (below). 7217 * i.e. we do it per-packet now, but if we do policy 7218 * processing per-conn, then we would need to do it 7219 * here too. 7220 */ 7221 ip_fanout_udp_conn(connp, first_mp1, mp1, secure, ill, 7222 ipha, flags, recv_ill, B_FALSE); 7223 mutex_enter(&connfp->connf_lock); 7224 /* Follow the next pointer before releasing the conn. */ 7225 next_connp = connp->conn_next; 7226 IP_STAT(ipst, ip_udp_fanmb); 7227 CONN_DEC_REF(connp); 7228 connp = next_connp; 7229 } 7230 7231 /* Last one. Send it upstream. */ 7232 mutex_exit(&connfp->connf_lock); 7233 ip_fanout_udp_conn(connp, first_mp, mp, secure, ill, ipha, flags, 7234 recv_ill, ip_policy); 7235 IP_STAT(ipst, ip_udp_fanmb); 7236 CONN_DEC_REF(connp); 7237 return; 7238 7239 notfound: 7240 7241 mutex_exit(&connfp->connf_lock); 7242 IP_STAT(ipst, ip_udp_fanothers); 7243 /* 7244 * IPv6 endpoints bound to unicast or multicast IPv4-mapped addresses 7245 * have already been matched above, since they live in the IPv4 7246 * fanout tables. This implies we only need to 7247 * check for IPv6 in6addr_any endpoints here. 7248 * Thus we compare using ipv6_all_zeros instead of the destination 7249 * address, except for the multicast group membership lookup which 7250 * uses the IPv4 destination. 7251 */ 7252 IN6_IPADDR_TO_V4MAPPED(ipha->ipha_src, &v6src); 7253 connfp = &ipst->ips_ipcl_udp_fanout[IPCL_UDP_HASH(dstport, ipst)]; 7254 mutex_enter(&connfp->connf_lock); 7255 connp = connfp->connf_head; 7256 if (!broadcast && !CLASSD(dst)) { 7257 while (connp != NULL) { 7258 if (IPCL_UDP_MATCH_V6(connp, dstport, ipv6_all_zeros, 7259 srcport, v6src) && IPCL_ZONE_MATCH(connp, zoneid) && 7260 conn_wantpacket(connp, ill, ipha, flags, zoneid) && 7261 !connp->conn_ipv6_v6only) 7262 break; 7263 connp = connp->conn_next; 7264 } 7265 7266 if (connp != NULL && is_system_labeled() && 7267 !tsol_receive_local(mp, &dst, IPV4_VERSION, shared_addr, 7268 connp)) 7269 connp = NULL; 7270 7271 if (connp == NULL || connp->conn_upq == NULL) { 7272 /* 7273 * No one bound to this port. Is 7274 * there a client that wants all 7275 * unclaimed datagrams? 7276 */ 7277 mutex_exit(&connfp->connf_lock); 7278 7279 if (mctl_present) 7280 first_mp->b_cont = mp; 7281 else 7282 first_mp = mp; 7283 if (ipst->ips_ipcl_proto_fanout[IPPROTO_UDP]. 7284 connf_head != NULL) { 7285 ip_fanout_proto(q, first_mp, ill, ipha, 7286 flags | IP_FF_RAWIP, mctl_present, 7287 ip_policy, recv_ill, zoneid); 7288 } else { 7289 if (ip_fanout_send_icmp(q, first_mp, flags, 7290 ICMP_DEST_UNREACHABLE, 7291 ICMP_PORT_UNREACHABLE, 7292 mctl_present, zoneid, ipst)) { 7293 BUMP_MIB(ill->ill_ip_mib, 7294 udpIfStatsNoPorts); 7295 } 7296 } 7297 return; 7298 } 7299 7300 CONN_INC_REF(connp); 7301 mutex_exit(&connfp->connf_lock); 7302 ip_fanout_udp_conn(connp, first_mp, mp, secure, ill, ipha, 7303 flags, recv_ill, ip_policy); 7304 CONN_DEC_REF(connp); 7305 return; 7306 } 7307 /* 7308 * IPv4 multicast packet being delivered to an AF_INET6 7309 * in6addr_any endpoint. 7310 * Need to check conn_wantpacket(). Note that we use conn_wantpacket() 7311 * and not conn_wantpacket_v6() since any multicast membership is 7312 * for an IPv4-mapped multicast address. 7313 * The packet is sent to all clients in all zones that have joined the 7314 * group and match the port. 7315 */ 7316 while (connp != NULL) { 7317 if (IPCL_UDP_MATCH_V6(connp, dstport, ipv6_all_zeros, 7318 srcport, v6src) && 7319 conn_wantpacket(connp, ill, ipha, flags, zoneid) && 7320 (!is_system_labeled() || 7321 tsol_receive_local(mp, &dst, IPV4_VERSION, shared_addr, 7322 connp))) 7323 break; 7324 connp = connp->conn_next; 7325 } 7326 7327 if (connp == NULL || connp->conn_upq == NULL) { 7328 /* 7329 * No one bound to this port. Is 7330 * there a client that wants all 7331 * unclaimed datagrams? 7332 */ 7333 mutex_exit(&connfp->connf_lock); 7334 7335 if (mctl_present) 7336 first_mp->b_cont = mp; 7337 else 7338 first_mp = mp; 7339 if (ipst->ips_ipcl_proto_fanout[IPPROTO_UDP].connf_head != 7340 NULL) { 7341 ip_fanout_proto(q, first_mp, ill, ipha, 7342 flags | IP_FF_RAWIP, mctl_present, ip_policy, 7343 recv_ill, zoneid); 7344 } else { 7345 /* 7346 * We used to attempt to send an icmp error here, but 7347 * since this is known to be a multicast packet 7348 * and we don't send icmp errors in response to 7349 * multicast, just drop the packet and give up sooner. 7350 */ 7351 BUMP_MIB(ill->ill_ip_mib, udpIfStatsNoPorts); 7352 freemsg(first_mp); 7353 } 7354 return; 7355 } 7356 7357 first_connp = connp; 7358 7359 CONN_INC_REF(connp); 7360 connp = connp->conn_next; 7361 for (;;) { 7362 while (connp != NULL) { 7363 if (IPCL_UDP_MATCH_V6(connp, dstport, 7364 ipv6_all_zeros, srcport, v6src) && 7365 conn_wantpacket(connp, ill, ipha, flags, zoneid) && 7366 (!is_system_labeled() || 7367 tsol_receive_local(mp, &dst, IPV4_VERSION, 7368 shared_addr, connp))) 7369 break; 7370 connp = connp->conn_next; 7371 } 7372 /* 7373 * Just copy the data part alone. The mctl part is 7374 * needed just for verifying policy and it is never 7375 * sent up. 7376 */ 7377 if (connp == NULL || (((mp1 = dupmsg(mp)) == NULL) && 7378 ((mp1 = copymsg(mp)) == NULL))) { 7379 /* 7380 * No more intested clients or memory 7381 * allocation failed 7382 */ 7383 connp = first_connp; 7384 break; 7385 } 7386 if (first_mp != NULL) { 7387 ASSERT(((ipsec_info_t *)first_mp->b_rptr)-> 7388 ipsec_info_type == IPSEC_IN); 7389 first_mp1 = ipsec_in_tag(first_mp, NULL, 7390 ipst->ips_netstack); 7391 if (first_mp1 == NULL) { 7392 freemsg(mp1); 7393 connp = first_connp; 7394 break; 7395 } 7396 } else { 7397 first_mp1 = NULL; 7398 } 7399 CONN_INC_REF(connp); 7400 mutex_exit(&connfp->connf_lock); 7401 /* 7402 * IPQoS notes: We don't send the packet for policy 7403 * processing here, will do it for the last one (below). 7404 * i.e. we do it per-packet now, but if we do policy 7405 * processing per-conn, then we would need to do it 7406 * here too. 7407 */ 7408 ip_fanout_udp_conn(connp, first_mp1, mp1, secure, ill, 7409 ipha, flags, recv_ill, B_FALSE); 7410 mutex_enter(&connfp->connf_lock); 7411 /* Follow the next pointer before releasing the conn. */ 7412 next_connp = connp->conn_next; 7413 CONN_DEC_REF(connp); 7414 connp = next_connp; 7415 } 7416 7417 /* Last one. Send it upstream. */ 7418 mutex_exit(&connfp->connf_lock); 7419 ip_fanout_udp_conn(connp, first_mp, mp, secure, ill, ipha, flags, 7420 recv_ill, ip_policy); 7421 CONN_DEC_REF(connp); 7422 } 7423 7424 /* 7425 * Complete the ip_wput header so that it 7426 * is possible to generate ICMP 7427 * errors. 7428 */ 7429 int 7430 ip_hdr_complete(ipha_t *ipha, zoneid_t zoneid, ip_stack_t *ipst) 7431 { 7432 ire_t *ire; 7433 7434 if (ipha->ipha_src == INADDR_ANY) { 7435 ire = ire_lookup_local(zoneid, ipst); 7436 if (ire == NULL) { 7437 ip1dbg(("ip_hdr_complete: no source IRE\n")); 7438 return (1); 7439 } 7440 ipha->ipha_src = ire->ire_addr; 7441 ire_refrele(ire); 7442 } 7443 ipha->ipha_ttl = ipst->ips_ip_def_ttl; 7444 ipha->ipha_hdr_checksum = 0; 7445 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 7446 return (0); 7447 } 7448 7449 /* 7450 * Nobody should be sending 7451 * packets up this stream 7452 */ 7453 static void 7454 ip_lrput(queue_t *q, mblk_t *mp) 7455 { 7456 mblk_t *mp1; 7457 7458 switch (mp->b_datap->db_type) { 7459 case M_FLUSH: 7460 /* Turn around */ 7461 if (*mp->b_rptr & FLUSHW) { 7462 *mp->b_rptr &= ~FLUSHR; 7463 qreply(q, mp); 7464 return; 7465 } 7466 break; 7467 } 7468 /* Could receive messages that passed through ar_rput */ 7469 for (mp1 = mp; mp1; mp1 = mp1->b_cont) 7470 mp1->b_prev = mp1->b_next = NULL; 7471 freemsg(mp); 7472 } 7473 7474 /* Nobody should be sending packets down this stream */ 7475 /* ARGSUSED */ 7476 void 7477 ip_lwput(queue_t *q, mblk_t *mp) 7478 { 7479 freemsg(mp); 7480 } 7481 7482 /* 7483 * Move the first hop in any source route to ipha_dst and remove that part of 7484 * the source route. Called by other protocols. Errors in option formatting 7485 * are ignored - will be handled by ip_wput_options Return the final 7486 * destination (either ipha_dst or the last entry in a source route.) 7487 */ 7488 ipaddr_t 7489 ip_massage_options(ipha_t *ipha, netstack_t *ns) 7490 { 7491 ipoptp_t opts; 7492 uchar_t *opt; 7493 uint8_t optval; 7494 uint8_t optlen; 7495 ipaddr_t dst; 7496 int i; 7497 ire_t *ire; 7498 ip_stack_t *ipst = ns->netstack_ip; 7499 7500 ip2dbg(("ip_massage_options\n")); 7501 dst = ipha->ipha_dst; 7502 for (optval = ipoptp_first(&opts, ipha); 7503 optval != IPOPT_EOL; 7504 optval = ipoptp_next(&opts)) { 7505 opt = opts.ipoptp_cur; 7506 switch (optval) { 7507 uint8_t off; 7508 case IPOPT_SSRR: 7509 case IPOPT_LSRR: 7510 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 7511 ip1dbg(("ip_massage_options: bad src route\n")); 7512 break; 7513 } 7514 optlen = opts.ipoptp_len; 7515 off = opt[IPOPT_OFFSET]; 7516 off--; 7517 redo_srr: 7518 if (optlen < IP_ADDR_LEN || 7519 off > optlen - IP_ADDR_LEN) { 7520 /* End of source route */ 7521 ip1dbg(("ip_massage_options: end of SR\n")); 7522 break; 7523 } 7524 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 7525 ip1dbg(("ip_massage_options: next hop 0x%x\n", 7526 ntohl(dst))); 7527 /* 7528 * Check if our address is present more than 7529 * once as consecutive hops in source route. 7530 * XXX verify per-interface ip_forwarding 7531 * for source route? 7532 */ 7533 ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, NULL, 7534 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 7535 if (ire != NULL) { 7536 ire_refrele(ire); 7537 off += IP_ADDR_LEN; 7538 goto redo_srr; 7539 } 7540 if (dst == htonl(INADDR_LOOPBACK)) { 7541 ip1dbg(("ip_massage_options: loopback addr in " 7542 "source route!\n")); 7543 break; 7544 } 7545 /* 7546 * Update ipha_dst to be the first hop and remove the 7547 * first hop from the source route (by overwriting 7548 * part of the option with NOP options). 7549 */ 7550 ipha->ipha_dst = dst; 7551 /* Put the last entry in dst */ 7552 off = ((optlen - IP_ADDR_LEN - 3) & ~(IP_ADDR_LEN-1)) + 7553 3; 7554 bcopy(&opt[off], &dst, IP_ADDR_LEN); 7555 7556 ip1dbg(("ip_massage_options: last hop 0x%x\n", 7557 ntohl(dst))); 7558 /* Move down and overwrite */ 7559 opt[IP_ADDR_LEN] = opt[0]; 7560 opt[IP_ADDR_LEN+1] = opt[IPOPT_OLEN] - IP_ADDR_LEN; 7561 opt[IP_ADDR_LEN+2] = opt[IPOPT_OFFSET]; 7562 for (i = 0; i < IP_ADDR_LEN; i++) 7563 opt[i] = IPOPT_NOP; 7564 break; 7565 } 7566 } 7567 return (dst); 7568 } 7569 7570 /* 7571 * This function's job is to forward data to the reverse tunnel (FA->HA) 7572 * after doing a few checks. It is assumed that the incoming interface 7573 * of the packet is always different than the outgoing interface and the 7574 * ire_type of the found ire has to be a non-resolver type. 7575 * 7576 * IPQoS notes 7577 * IP policy is invoked twice for a forwarded packet, once on the read side 7578 * and again on the write side if both, IPP_FWD_IN and IPP_FWD_OUT are 7579 * enabled. 7580 */ 7581 static void 7582 ip_mrtun_forward(ire_t *ire, ill_t *in_ill, mblk_t *mp) 7583 { 7584 ipha_t *ipha; 7585 queue_t *q; 7586 uint32_t pkt_len; 7587 #define rptr ((uchar_t *)ipha) 7588 uint32_t sum; 7589 uint32_t max_frag; 7590 mblk_t *first_mp; 7591 uint32_t ill_index; 7592 ipxmit_state_t pktxmit_state; 7593 ill_t *out_ill; 7594 ip_stack_t *ipst = in_ill->ill_ipst; 7595 7596 ASSERT(ire != NULL); 7597 ASSERT(ire->ire_ipif->ipif_net_type == IRE_IF_NORESOLVER); 7598 ASSERT(ire->ire_stq != NULL); 7599 7600 /* Initiate read side IPPF processing */ 7601 if (IPP_ENABLED(IPP_FWD_IN, ipst)) { 7602 ill_index = in_ill->ill_phyint->phyint_ifindex; 7603 ip_process(IPP_FWD_IN, &mp, ill_index); 7604 if (mp == NULL) { 7605 ip2dbg(("ip_mrtun_forward: inbound pkt " 7606 "dropped during IPPF processing\n")); 7607 return; 7608 } 7609 } 7610 7611 if (((in_ill->ill_flags & ((ill_t *)ire->ire_stq->q_ptr)->ill_flags & 7612 ILLF_ROUTER) == 0) || 7613 (in_ill == (ill_t *)ire->ire_stq->q_ptr)) { 7614 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsForwProhibits); 7615 ip0dbg(("ip_mrtun_forward: Can't forward :" 7616 "forwarding is not turned on\n")); 7617 goto drop_pkt; 7618 } 7619 7620 /* 7621 * Don't forward if the interface is down 7622 */ 7623 if (ire->ire_ipif->ipif_ill->ill_ipif_up_count == 0) { 7624 goto discard_pkt; 7625 } 7626 7627 ipha = (ipha_t *)mp->b_rptr; 7628 pkt_len = ntohs(ipha->ipha_length); 7629 /* Adjust the checksum to reflect the ttl decrement. */ 7630 sum = (int)ipha->ipha_hdr_checksum + IP_HDR_CSUM_TTL_ADJUST; 7631 ipha->ipha_hdr_checksum = (uint16_t)(sum + (sum >> 16)); 7632 if (ipha->ipha_ttl-- <= 1) { 7633 if (ip_csum_hdr(ipha)) { 7634 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsInCksumErrs); 7635 goto drop_pkt; 7636 } 7637 q = ire->ire_stq; 7638 if ((first_mp = allocb(sizeof (ipsec_info_t), 7639 BPRI_HI)) == NULL) { 7640 goto discard_pkt; 7641 } 7642 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsForwProhibits); 7643 ip_ipsec_out_prepend(first_mp, mp, in_ill); 7644 /* Sent by forwarding path, and router is global zone */ 7645 icmp_time_exceeded(q, first_mp, ICMP_TTL_EXCEEDED, 7646 GLOBAL_ZONEID, ipst); 7647 return; 7648 } 7649 7650 /* Get the ill_index of the ILL */ 7651 ill_index = ire->ire_ipif->ipif_ill->ill_phyint->phyint_ifindex; 7652 7653 /* 7654 * This location is chosen for the placement of the forwarding hook 7655 * because at this point we know that we have a path out for the 7656 * packet but haven't yet applied any logic (such as fragmenting) 7657 * that happen as part of transmitting the packet out. 7658 */ 7659 out_ill = ire->ire_ipif->ipif_ill; 7660 7661 DTRACE_PROBE4(ip4__forwarding__start, 7662 ill_t *, in_ill, ill_t *, out_ill, ipha_t *, ipha, mblk_t *, mp); 7663 7664 FW_HOOKS(ipst->ips_ip4_forwarding_event, 7665 ipst->ips_ipv4firewall_forwarding, 7666 in_ill, out_ill, ipha, mp, mp, ipst); 7667 7668 DTRACE_PROBE1(ip4__forwarding__end, mblk_t *, mp); 7669 7670 if (mp == NULL) 7671 return; 7672 pkt_len = ntohs(ipha->ipha_length); 7673 7674 /* 7675 * ip_mrtun_forward is only used by foreign agent to reverse 7676 * tunnel the incoming packet. So it does not do any option 7677 * processing for source routing. 7678 */ 7679 max_frag = ire->ire_max_frag; 7680 if (pkt_len > max_frag) { 7681 /* 7682 * It needs fragging on its way out. We haven't 7683 * verified the header checksum yet. Since we 7684 * are going to put a surely good checksum in the 7685 * outgoing header, we have to make sure that it 7686 * was good coming in. 7687 */ 7688 if (ip_csum_hdr(ipha)) { 7689 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsInCksumErrs); 7690 goto drop_pkt; 7691 } 7692 7693 /* Initiate write side IPPF processing */ 7694 if (IPP_ENABLED(IPP_FWD_OUT, ipst)) { 7695 ip_process(IPP_FWD_OUT, &mp, ill_index); 7696 if (mp == NULL) { 7697 ip2dbg(("ip_mrtun_forward: outbound pkt "\ 7698 "dropped/deferred during ip policy "\ 7699 "processing\n")); 7700 return; 7701 } 7702 } 7703 if ((first_mp = allocb(sizeof (ipsec_info_t), 7704 BPRI_HI)) == NULL) { 7705 goto discard_pkt; 7706 } 7707 ip_ipsec_out_prepend(first_mp, mp, in_ill); 7708 mp = first_mp; 7709 7710 ip_wput_frag(ire, mp, IB_PKT, max_frag, 0, GLOBAL_ZONEID, ipst); 7711 return; 7712 } 7713 7714 ip2dbg(("ip_mrtun_forward: ire type (%d)\n", ire->ire_type)); 7715 7716 ASSERT(ire->ire_ipif != NULL); 7717 7718 DTRACE_PROBE4(ip4__physical__out__start, ill_t *, NULL, 7719 ill_t *, out_ill, ipha_t *, ipha, mblk_t *, mp); 7720 FW_HOOKS(ipst->ips_ip4_physical_out_event, 7721 ipst->ips_ipv4firewall_physical_out, 7722 NULL, out_ill, ipha, mp, mp, ipst); 7723 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, mp); 7724 if (mp == NULL) 7725 return; 7726 7727 /* Now send the packet to the tunnel interface */ 7728 mp->b_prev = SET_BPREV_FLAG(IPP_FWD_OUT); 7729 q = ire->ire_stq; 7730 pktxmit_state = ip_xmit_v4(mp, ire, NULL, B_FALSE); 7731 if ((pktxmit_state == SEND_FAILED) || 7732 (pktxmit_state == LLHDR_RESLV_FAILED)) { 7733 ip2dbg(("ip_mrtun_forward: failed to send packet to ill %p\n", 7734 q->q_ptr)); 7735 } 7736 7737 return; 7738 discard_pkt: 7739 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsInDiscards); 7740 drop_pkt:; 7741 ip2dbg(("ip_mrtun_forward: dropping pkt\n")); 7742 freemsg(mp); 7743 #undef rptr 7744 } 7745 7746 /* 7747 * Fills the ipsec_out_t data structure with appropriate fields and 7748 * prepends it to mp which contains the IP hdr + data that was meant 7749 * to be forwarded. Please note that ipsec_out_info data structure 7750 * is used here to communicate the outgoing ill path at ip_wput() 7751 * for the ICMP error packet. This has nothing to do with ipsec IP 7752 * security. ipsec_out_t is really used to pass the info to the module 7753 * IP where this information cannot be extracted from conn. 7754 * This functions is called by ip_mrtun_forward(). 7755 */ 7756 void 7757 ip_ipsec_out_prepend(mblk_t *first_mp, mblk_t *mp, ill_t *xmit_ill) 7758 { 7759 ipsec_out_t *io; 7760 7761 ASSERT(xmit_ill != NULL); 7762 first_mp->b_datap->db_type = M_CTL; 7763 first_mp->b_wptr += sizeof (ipsec_info_t); 7764 /* 7765 * This is to pass info to ip_wput in absence of conn. 7766 * ipsec_out_secure will be B_FALSE because of this. 7767 * Thus ipsec_out_secure being B_FALSE indicates that 7768 * this is not IPSEC security related information. 7769 */ 7770 bzero(first_mp->b_rptr, sizeof (ipsec_info_t)); 7771 io = (ipsec_out_t *)first_mp->b_rptr; 7772 io->ipsec_out_type = IPSEC_OUT; 7773 io->ipsec_out_len = sizeof (ipsec_out_t); 7774 first_mp->b_cont = mp; 7775 io->ipsec_out_ill_index = 7776 xmit_ill->ill_phyint->phyint_ifindex; 7777 io->ipsec_out_xmit_if = B_TRUE; 7778 io->ipsec_out_ns = xmit_ill->ill_ipst->ips_netstack; 7779 } 7780 7781 /* 7782 * Return the network mask 7783 * associated with the specified address. 7784 */ 7785 ipaddr_t 7786 ip_net_mask(ipaddr_t addr) 7787 { 7788 uchar_t *up = (uchar_t *)&addr; 7789 ipaddr_t mask = 0; 7790 uchar_t *maskp = (uchar_t *)&mask; 7791 7792 #if defined(__i386) || defined(__amd64) 7793 #define TOTALLY_BRAIN_DAMAGED_C_COMPILER 7794 #endif 7795 #ifdef TOTALLY_BRAIN_DAMAGED_C_COMPILER 7796 maskp[0] = maskp[1] = maskp[2] = maskp[3] = 0; 7797 #endif 7798 if (CLASSD(addr)) { 7799 maskp[0] = 0xF0; 7800 return (mask); 7801 } 7802 if (addr == 0) 7803 return (0); 7804 maskp[0] = 0xFF; 7805 if ((up[0] & 0x80) == 0) 7806 return (mask); 7807 7808 maskp[1] = 0xFF; 7809 if ((up[0] & 0xC0) == 0x80) 7810 return (mask); 7811 7812 maskp[2] = 0xFF; 7813 if ((up[0] & 0xE0) == 0xC0) 7814 return (mask); 7815 7816 /* Must be experimental or multicast, indicate as much */ 7817 return ((ipaddr_t)0); 7818 } 7819 7820 /* 7821 * Select an ill for the packet by considering load spreading across 7822 * a different ill in the group if dst_ill is part of some group. 7823 */ 7824 ill_t * 7825 ip_newroute_get_dst_ill(ill_t *dst_ill) 7826 { 7827 ill_t *ill; 7828 7829 /* 7830 * We schedule irrespective of whether the source address is 7831 * INADDR_ANY or not. illgrp_scheduler returns a held ill. 7832 */ 7833 ill = illgrp_scheduler(dst_ill); 7834 if (ill == NULL) 7835 return (NULL); 7836 7837 /* 7838 * For groups with names ip_sioctl_groupname ensures that all 7839 * ills are of same type. For groups without names, ifgrp_insert 7840 * ensures this. 7841 */ 7842 ASSERT(dst_ill->ill_type == ill->ill_type); 7843 7844 return (ill); 7845 } 7846 7847 /* 7848 * Helper function for the IPIF_NOFAILOVER/ATTACH_IF interface attachment case. 7849 */ 7850 ill_t * 7851 ip_grab_attach_ill(ill_t *ill, mblk_t *first_mp, int ifindex, boolean_t isv6, 7852 ip_stack_t *ipst) 7853 { 7854 ill_t *ret_ill; 7855 7856 ASSERT(ifindex != 0); 7857 ret_ill = ill_lookup_on_ifindex(ifindex, isv6, NULL, NULL, NULL, NULL, 7858 ipst); 7859 if (ret_ill == NULL || 7860 (ret_ill->ill_phyint->phyint_flags & PHYI_OFFLINE)) { 7861 if (isv6) { 7862 if (ill != NULL) { 7863 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutDiscards); 7864 } else { 7865 BUMP_MIB(&ipst->ips_ip6_mib, 7866 ipIfStatsOutDiscards); 7867 } 7868 ip1dbg(("ip_grab_attach_ill (IPv6): " 7869 "bad ifindex %d.\n", ifindex)); 7870 } else { 7871 if (ill != NULL) { 7872 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutDiscards); 7873 } else { 7874 BUMP_MIB(&ipst->ips_ip_mib, 7875 ipIfStatsOutDiscards); 7876 } 7877 ip1dbg(("ip_grab_attach_ill (IPv4): " 7878 "bad ifindex %d.\n", ifindex)); 7879 } 7880 if (ret_ill != NULL) 7881 ill_refrele(ret_ill); 7882 freemsg(first_mp); 7883 return (NULL); 7884 } 7885 7886 return (ret_ill); 7887 } 7888 7889 /* 7890 * IPv4 - 7891 * ip_newroute is called by ip_rput or ip_wput whenever we need to send 7892 * out a packet to a destination address for which we do not have specific 7893 * (or sufficient) routing information. 7894 * 7895 * NOTE : These are the scopes of some of the variables that point at IRE, 7896 * which needs to be followed while making any future modifications 7897 * to avoid memory leaks. 7898 * 7899 * - ire and sire are the entries looked up initially by 7900 * ire_ftable_lookup. 7901 * - ipif_ire is used to hold the interface ire associated with 7902 * the new cache ire. But it's scope is limited, so we always REFRELE 7903 * it before branching out to error paths. 7904 * - save_ire is initialized before ire_create, so that ire returned 7905 * by ire_create will not over-write the ire. We REFRELE save_ire 7906 * before breaking out of the switch. 7907 * 7908 * Thus on failures, we have to REFRELE only ire and sire, if they 7909 * are not NULL. 7910 */ 7911 void 7912 ip_newroute(queue_t *q, mblk_t *mp, ipaddr_t dst, ill_t *in_ill, conn_t *connp, 7913 zoneid_t zoneid, ip_stack_t *ipst) 7914 { 7915 areq_t *areq; 7916 ipaddr_t gw = 0; 7917 ire_t *ire = NULL; 7918 mblk_t *res_mp; 7919 ipaddr_t *addrp; 7920 ipaddr_t nexthop_addr; 7921 ipif_t *src_ipif = NULL; 7922 ill_t *dst_ill = NULL; 7923 ipha_t *ipha; 7924 ire_t *sire = NULL; 7925 mblk_t *first_mp; 7926 ire_t *save_ire; 7927 ill_t *attach_ill = NULL; /* Bind to IPIF_NOFAILOVER address */ 7928 ushort_t ire_marks = 0; 7929 boolean_t mctl_present; 7930 ipsec_out_t *io; 7931 mblk_t *saved_mp; 7932 ire_t *first_sire = NULL; 7933 mblk_t *copy_mp = NULL; 7934 mblk_t *xmit_mp = NULL; 7935 ipaddr_t save_dst; 7936 uint32_t multirt_flags = 7937 MULTIRT_CACHEGW | MULTIRT_USESTAMP | MULTIRT_SETSTAMP; 7938 boolean_t multirt_is_resolvable; 7939 boolean_t multirt_resolve_next; 7940 boolean_t do_attach_ill = B_FALSE; 7941 boolean_t ip_nexthop = B_FALSE; 7942 tsol_ire_gw_secattr_t *attrp = NULL; 7943 tsol_gcgrp_t *gcgrp = NULL; 7944 tsol_gcgrp_addr_t ga; 7945 7946 if (ip_debug > 2) { 7947 /* ip1dbg */ 7948 pr_addr_dbg("ip_newroute: dst %s\n", AF_INET, &dst); 7949 } 7950 7951 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 7952 if (mctl_present) { 7953 io = (ipsec_out_t *)first_mp->b_rptr; 7954 ASSERT(io->ipsec_out_type == IPSEC_OUT); 7955 ASSERT(zoneid == io->ipsec_out_zoneid); 7956 ASSERT(zoneid != ALL_ZONES); 7957 } 7958 7959 ipha = (ipha_t *)mp->b_rptr; 7960 7961 /* All multicast lookups come through ip_newroute_ipif() */ 7962 if (CLASSD(dst)) { 7963 ip0dbg(("ip_newroute: CLASSD 0x%x (b_prev %p, b_next %p)\n", 7964 ntohl(dst), (void *)mp->b_prev, (void *)mp->b_next)); 7965 freemsg(first_mp); 7966 return; 7967 } 7968 7969 if (mctl_present && io->ipsec_out_attach_if) { 7970 /* ip_grab_attach_ill returns a held ill */ 7971 attach_ill = ip_grab_attach_ill(NULL, first_mp, 7972 io->ipsec_out_ill_index, B_FALSE, ipst); 7973 7974 /* Failure case frees things for us. */ 7975 if (attach_ill == NULL) 7976 return; 7977 7978 /* 7979 * Check if we need an ire that will not be 7980 * looked up by anybody else i.e. HIDDEN. 7981 */ 7982 if (ill_is_probeonly(attach_ill)) 7983 ire_marks = IRE_MARK_HIDDEN; 7984 } 7985 if (mctl_present && io->ipsec_out_ip_nexthop) { 7986 ip_nexthop = B_TRUE; 7987 nexthop_addr = io->ipsec_out_nexthop_addr; 7988 } 7989 /* 7990 * If this IRE is created for forwarding or it is not for 7991 * traffic for congestion controlled protocols, mark it as temporary. 7992 */ 7993 if (mp->b_prev != NULL || !IP_FLOW_CONTROLLED_ULP(ipha->ipha_protocol)) 7994 ire_marks |= IRE_MARK_TEMPORARY; 7995 7996 /* 7997 * Get what we can from ire_ftable_lookup which will follow an IRE 7998 * chain until it gets the most specific information available. 7999 * For example, we know that there is no IRE_CACHE for this dest, 8000 * but there may be an IRE_OFFSUBNET which specifies a gateway. 8001 * ire_ftable_lookup will look up the gateway, etc. 8002 * Check if in_ill != NULL. If it is true, the packet must be 8003 * from an incoming interface where RTA_SRCIFP is set. 8004 * Otherwise, given ire_ftable_lookup algorithm, only one among routes 8005 * to the destination, of equal netmask length in the forward table, 8006 * will be recursively explored. If no information is available 8007 * for the final gateway of that route, we force the returned ire 8008 * to be equal to sire using MATCH_IRE_PARENT. 8009 * At least, in this case we have a starting point (in the buckets) 8010 * to look for other routes to the destination in the forward table. 8011 * This is actually used only for multirouting, where a list 8012 * of routes has to be processed in sequence. 8013 * 8014 * In the process of coming up with the most specific information, 8015 * ire_ftable_lookup may end up with an incomplete IRE_CACHE entry 8016 * for the gateway (i.e., one for which the ire_nce->nce_state is 8017 * not yet ND_REACHABLE, and is in the middle of arp resolution). 8018 * Two caveats when handling incomplete ire's in ip_newroute: 8019 * - we should be careful when accessing its ire_nce (specifically 8020 * the nce_res_mp) ast it might change underneath our feet, and, 8021 * - not all legacy code path callers are prepared to handle 8022 * incomplete ire's, so we should not create/add incomplete 8023 * ire_cache entries here. (See discussion about temporary solution 8024 * further below). 8025 * 8026 * In order to minimize packet dropping, and to preserve existing 8027 * behavior, we treat this case as if there were no IRE_CACHE for the 8028 * gateway, and instead use the IF_RESOLVER ire to send out 8029 * another request to ARP (this is achieved by passing the 8030 * MATCH_IRE_COMPLETE flag to ire_ftable_lookup). When the 8031 * arp response comes back in ip_wput_nondata, we will create 8032 * a per-dst ire_cache that has an ND_COMPLETE ire. 8033 * 8034 * Note that this is a temporary solution; the correct solution is 8035 * to create an incomplete per-dst ire_cache entry, and send the 8036 * packet out when the gw's nce is resolved. In order to achieve this, 8037 * all packet processing must have been completed prior to calling 8038 * ire_add_then_send. Some legacy code paths (e.g. cgtp) would need 8039 * to be modified to accomodate this solution. 8040 */ 8041 if (in_ill != NULL) { 8042 ire = ire_srcif_table_lookup(dst, IRE_IF_RESOLVER, NULL, 8043 in_ill, MATCH_IRE_TYPE); 8044 } else if (ip_nexthop) { 8045 /* 8046 * The first time we come here, we look for an IRE_INTERFACE 8047 * entry for the specified nexthop, set the dst to be the 8048 * nexthop address and create an IRE_CACHE entry for the 8049 * nexthop. The next time around, we are able to find an 8050 * IRE_CACHE entry for the nexthop, set the gateway to be the 8051 * nexthop address and create an IRE_CACHE entry for the 8052 * destination address via the specified nexthop. 8053 */ 8054 ire = ire_cache_lookup(nexthop_addr, zoneid, 8055 MBLK_GETLABEL(mp), ipst); 8056 if (ire != NULL) { 8057 gw = nexthop_addr; 8058 ire_marks |= IRE_MARK_PRIVATE_ADDR; 8059 } else { 8060 ire = ire_ftable_lookup(nexthop_addr, 0, 0, 8061 IRE_INTERFACE, NULL, NULL, zoneid, 0, 8062 MBLK_GETLABEL(mp), 8063 MATCH_IRE_TYPE | MATCH_IRE_SECATTR, 8064 ipst); 8065 if (ire != NULL) { 8066 dst = nexthop_addr; 8067 } 8068 } 8069 } else if (attach_ill == NULL) { 8070 ire = ire_ftable_lookup(dst, 0, 0, 0, 8071 NULL, &sire, zoneid, 0, MBLK_GETLABEL(mp), 8072 MATCH_IRE_RECURSIVE | MATCH_IRE_DEFAULT | 8073 MATCH_IRE_RJ_BHOLE | MATCH_IRE_PARENT | 8074 MATCH_IRE_SECATTR | MATCH_IRE_COMPLETE, 8075 ipst); 8076 } else { 8077 /* 8078 * attach_ill is set only for communicating with 8079 * on-link hosts. So, don't look for DEFAULT. 8080 */ 8081 ipif_t *attach_ipif; 8082 8083 attach_ipif = ipif_get_next_ipif(NULL, attach_ill); 8084 if (attach_ipif == NULL) { 8085 ill_refrele(attach_ill); 8086 goto icmp_err_ret; 8087 } 8088 ire = ire_ftable_lookup(dst, 0, 0, 0, attach_ipif, 8089 &sire, zoneid, 0, MBLK_GETLABEL(mp), 8090 MATCH_IRE_RJ_BHOLE | MATCH_IRE_ILL | 8091 MATCH_IRE_SECATTR, ipst); 8092 ipif_refrele(attach_ipif); 8093 } 8094 ip3dbg(("ip_newroute: ire_ftable_lookup() " 8095 "returned ire %p, sire %p\n", (void *)ire, (void *)sire)); 8096 8097 /* 8098 * This loop is run only once in most cases. 8099 * We loop to resolve further routes only when the destination 8100 * can be reached through multiple RTF_MULTIRT-flagged ires. 8101 */ 8102 do { 8103 /* Clear the previous iteration's values */ 8104 if (src_ipif != NULL) { 8105 ipif_refrele(src_ipif); 8106 src_ipif = NULL; 8107 } 8108 if (dst_ill != NULL) { 8109 ill_refrele(dst_ill); 8110 dst_ill = NULL; 8111 } 8112 8113 multirt_resolve_next = B_FALSE; 8114 /* 8115 * We check if packets have to be multirouted. 8116 * In this case, given the current <ire, sire> couple, 8117 * we look for the next suitable <ire, sire>. 8118 * This check is done in ire_multirt_lookup(), 8119 * which applies various criteria to find the next route 8120 * to resolve. ire_multirt_lookup() leaves <ire, sire> 8121 * unchanged if it detects it has not been tried yet. 8122 */ 8123 if ((sire != NULL) && (sire->ire_flags & RTF_MULTIRT)) { 8124 ip3dbg(("ip_newroute: starting next_resolution " 8125 "with first_mp %p, tag %d\n", 8126 (void *)first_mp, 8127 MULTIRT_DEBUG_TAGGED(first_mp))); 8128 8129 ASSERT(sire != NULL); 8130 multirt_is_resolvable = 8131 ire_multirt_lookup(&ire, &sire, multirt_flags, 8132 MBLK_GETLABEL(mp), ipst); 8133 8134 ip3dbg(("ip_newroute: multirt_is_resolvable %d, " 8135 "ire %p, sire %p\n", 8136 multirt_is_resolvable, 8137 (void *)ire, (void *)sire)); 8138 8139 if (!multirt_is_resolvable) { 8140 /* 8141 * No more multirt route to resolve; give up 8142 * (all routes resolved or no more 8143 * resolvable routes). 8144 */ 8145 if (ire != NULL) { 8146 ire_refrele(ire); 8147 ire = NULL; 8148 } 8149 } else { 8150 ASSERT(sire != NULL); 8151 ASSERT(ire != NULL); 8152 /* 8153 * We simply use first_sire as a flag that 8154 * indicates if a resolvable multirt route 8155 * has already been found. 8156 * If it is not the case, we may have to send 8157 * an ICMP error to report that the 8158 * destination is unreachable. 8159 * We do not IRE_REFHOLD first_sire. 8160 */ 8161 if (first_sire == NULL) { 8162 first_sire = sire; 8163 } 8164 } 8165 } 8166 if (ire == NULL) { 8167 if (ip_debug > 3) { 8168 /* ip2dbg */ 8169 pr_addr_dbg("ip_newroute: " 8170 "can't resolve %s\n", AF_INET, &dst); 8171 } 8172 ip3dbg(("ip_newroute: " 8173 "ire %p, sire %p, first_sire %p\n", 8174 (void *)ire, (void *)sire, (void *)first_sire)); 8175 8176 if (sire != NULL) { 8177 ire_refrele(sire); 8178 sire = NULL; 8179 } 8180 8181 if (first_sire != NULL) { 8182 /* 8183 * At least one multirt route has been found 8184 * in the same call to ip_newroute(); 8185 * there is no need to report an ICMP error. 8186 * first_sire was not IRE_REFHOLDed. 8187 */ 8188 MULTIRT_DEBUG_UNTAG(first_mp); 8189 freemsg(first_mp); 8190 return; 8191 } 8192 ip_rts_change(RTM_MISS, dst, 0, 0, 0, 0, 0, 0, 8193 RTA_DST, ipst); 8194 if (attach_ill != NULL) 8195 ill_refrele(attach_ill); 8196 goto icmp_err_ret; 8197 } 8198 8199 /* 8200 * When RTA_SRCIFP is used to add a route, then an interface 8201 * route is added in the source interface's routing table. 8202 * If the outgoing interface of this route is of type 8203 * IRE_IF_RESOLVER, then upon creation of the ire, 8204 * ire_nce->nce_res_mp is set to NULL. 8205 * Later, when this route is first used for forwarding 8206 * a packet, ip_newroute() is called 8207 * to resolve the hardware address of the outgoing ipif. 8208 * We do not come here for IRE_IF_NORESOLVER entries in the 8209 * source interface based table. We only come here if the 8210 * outgoing interface is a resolver interface and we don't 8211 * have the ire_nce->nce_res_mp information yet. 8212 * If in_ill is not null that means it is called from 8213 * ip_rput. 8214 */ 8215 8216 ASSERT(ire->ire_in_ill == NULL || 8217 (ire->ire_type == IRE_IF_RESOLVER && 8218 ire->ire_nce != NULL && ire->ire_nce->nce_res_mp == NULL)); 8219 8220 /* 8221 * Verify that the returned IRE does not have either 8222 * the RTF_REJECT or RTF_BLACKHOLE flags set and that the IRE is 8223 * either an IRE_CACHE, IRE_IF_NORESOLVER or IRE_IF_RESOLVER. 8224 */ 8225 if ((ire->ire_flags & (RTF_REJECT | RTF_BLACKHOLE)) || 8226 (ire->ire_type & (IRE_CACHE | IRE_INTERFACE)) == 0) { 8227 if (attach_ill != NULL) 8228 ill_refrele(attach_ill); 8229 goto icmp_err_ret; 8230 } 8231 /* 8232 * Increment the ire_ob_pkt_count field for ire if it is an 8233 * INTERFACE (IF_RESOLVER or IF_NORESOLVER) IRE type, and 8234 * increment the same for the parent IRE, sire, if it is some 8235 * sort of prefix IRE (which includes DEFAULT, PREFIX, HOST 8236 * and HOST_REDIRECT). 8237 */ 8238 if ((ire->ire_type & IRE_INTERFACE) != 0) { 8239 UPDATE_OB_PKT_COUNT(ire); 8240 ire->ire_last_used_time = lbolt; 8241 } 8242 8243 if (sire != NULL) { 8244 gw = sire->ire_gateway_addr; 8245 ASSERT((sire->ire_type & (IRE_CACHETABLE | 8246 IRE_INTERFACE)) == 0); 8247 UPDATE_OB_PKT_COUNT(sire); 8248 sire->ire_last_used_time = lbolt; 8249 } 8250 /* 8251 * We have a route to reach the destination. 8252 * 8253 * 1) If the interface is part of ill group, try to get a new 8254 * ill taking load spreading into account. 8255 * 8256 * 2) After selecting the ill, get a source address that 8257 * might create good inbound load spreading. 8258 * ipif_select_source does this for us. 8259 * 8260 * If the application specified the ill (ifindex), we still 8261 * load spread. Only if the packets needs to go out 8262 * specifically on a given ill e.g. binding to 8263 * IPIF_NOFAILOVER address, then we don't try to use a 8264 * different ill for load spreading. 8265 */ 8266 if (attach_ill == NULL) { 8267 /* 8268 * Don't perform outbound load spreading in the 8269 * case of an RTF_MULTIRT route, as we actually 8270 * typically want to replicate outgoing packets 8271 * through particular interfaces. 8272 */ 8273 if ((sire != NULL) && (sire->ire_flags & RTF_MULTIRT)) { 8274 dst_ill = ire->ire_ipif->ipif_ill; 8275 /* for uniformity */ 8276 ill_refhold(dst_ill); 8277 } else { 8278 /* 8279 * If we are here trying to create an IRE_CACHE 8280 * for an offlink destination and have the 8281 * IRE_CACHE for the next hop and the latter is 8282 * using virtual IP source address selection i.e 8283 * it's ire->ire_ipif is pointing to a virtual 8284 * network interface (vni) then 8285 * ip_newroute_get_dst_ll() will return the vni 8286 * interface as the dst_ill. Since the vni is 8287 * virtual i.e not associated with any physical 8288 * interface, it cannot be the dst_ill, hence 8289 * in such a case call ip_newroute_get_dst_ll() 8290 * with the stq_ill instead of the ire_ipif ILL. 8291 * The function returns a refheld ill. 8292 */ 8293 if ((ire->ire_type == IRE_CACHE) && 8294 IS_VNI(ire->ire_ipif->ipif_ill)) 8295 dst_ill = ip_newroute_get_dst_ill( 8296 ire->ire_stq->q_ptr); 8297 else 8298 dst_ill = ip_newroute_get_dst_ill( 8299 ire->ire_ipif->ipif_ill); 8300 } 8301 if (dst_ill == NULL) { 8302 if (ip_debug > 2) { 8303 pr_addr_dbg("ip_newroute: " 8304 "no dst ill for dst" 8305 " %s\n", AF_INET, &dst); 8306 } 8307 goto icmp_err_ret; 8308 } 8309 } else { 8310 dst_ill = ire->ire_ipif->ipif_ill; 8311 /* for uniformity */ 8312 ill_refhold(dst_ill); 8313 /* 8314 * We should have found a route matching ill as we 8315 * called ire_ftable_lookup with MATCH_IRE_ILL. 8316 * Rather than asserting, when there is a mismatch, 8317 * we just drop the packet. 8318 */ 8319 if (dst_ill != attach_ill) { 8320 ip0dbg(("ip_newroute: Packet dropped as " 8321 "IPIF_NOFAILOVER ill is %s, " 8322 "ire->ire_ipif->ipif_ill is %s\n", 8323 attach_ill->ill_name, 8324 dst_ill->ill_name)); 8325 ill_refrele(attach_ill); 8326 goto icmp_err_ret; 8327 } 8328 } 8329 /* attach_ill can't go in loop. IPMP and CGTP are disjoint */ 8330 if (attach_ill != NULL) { 8331 ill_refrele(attach_ill); 8332 attach_ill = NULL; 8333 do_attach_ill = B_TRUE; 8334 } 8335 ASSERT(dst_ill != NULL); 8336 ip2dbg(("ip_newroute: dst_ill %s\n", dst_ill->ill_name)); 8337 8338 /* 8339 * Pick the best source address from dst_ill. 8340 * 8341 * 1) If it is part of a multipathing group, we would 8342 * like to spread the inbound packets across different 8343 * interfaces. ipif_select_source picks a random source 8344 * across the different ills in the group. 8345 * 8346 * 2) If it is not part of a multipathing group, we try 8347 * to pick the source address from the destination 8348 * route. Clustering assumes that when we have multiple 8349 * prefixes hosted on an interface, the prefix of the 8350 * source address matches the prefix of the destination 8351 * route. We do this only if the address is not 8352 * DEPRECATED. 8353 * 8354 * 3) If the conn is in a different zone than the ire, we 8355 * need to pick a source address from the right zone. 8356 * 8357 * NOTE : If we hit case (1) above, the prefix of the source 8358 * address picked may not match the prefix of the 8359 * destination routes prefix as ipif_select_source 8360 * does not look at "dst" while picking a source 8361 * address. 8362 * If we want the same behavior as (2), we will need 8363 * to change the behavior of ipif_select_source. 8364 */ 8365 ASSERT(src_ipif == NULL); 8366 if ((sire != NULL) && (sire->ire_flags & RTF_SETSRC)) { 8367 /* 8368 * The RTF_SETSRC flag is set in the parent ire (sire). 8369 * Check that the ipif matching the requested source 8370 * address still exists. 8371 */ 8372 src_ipif = ipif_lookup_addr(sire->ire_src_addr, NULL, 8373 zoneid, NULL, NULL, NULL, NULL, ipst); 8374 } 8375 if (src_ipif == NULL) { 8376 ire_marks |= IRE_MARK_USESRC_CHECK; 8377 if ((dst_ill->ill_group != NULL) || 8378 (ire->ire_ipif->ipif_flags & IPIF_DEPRECATED) || 8379 (connp != NULL && ire->ire_zoneid != zoneid && 8380 ire->ire_zoneid != ALL_ZONES) || 8381 (dst_ill->ill_usesrc_ifindex != 0)) { 8382 /* 8383 * If the destination is reachable via a 8384 * given gateway, the selected source address 8385 * should be in the same subnet as the gateway. 8386 * Otherwise, the destination is not reachable. 8387 * 8388 * If there are no interfaces on the same subnet 8389 * as the destination, ipif_select_source gives 8390 * first non-deprecated interface which might be 8391 * on a different subnet than the gateway. 8392 * This is not desirable. Hence pass the dst_ire 8393 * source address to ipif_select_source. 8394 * It is sure that the destination is reachable 8395 * with the dst_ire source address subnet. 8396 * So passing dst_ire source address to 8397 * ipif_select_source will make sure that the 8398 * selected source will be on the same subnet 8399 * as dst_ire source address. 8400 */ 8401 ipaddr_t saddr = ire->ire_ipif->ipif_src_addr; 8402 src_ipif = ipif_select_source(dst_ill, saddr, 8403 zoneid); 8404 if (src_ipif == NULL) { 8405 if (ip_debug > 2) { 8406 pr_addr_dbg("ip_newroute: " 8407 "no src for dst %s ", 8408 AF_INET, &dst); 8409 printf("through interface %s\n", 8410 dst_ill->ill_name); 8411 } 8412 goto icmp_err_ret; 8413 } 8414 } else { 8415 src_ipif = ire->ire_ipif; 8416 ASSERT(src_ipif != NULL); 8417 /* hold src_ipif for uniformity */ 8418 ipif_refhold(src_ipif); 8419 } 8420 } 8421 8422 /* 8423 * Assign a source address while we have the conn. 8424 * We can't have ip_wput_ire pick a source address when the 8425 * packet returns from arp since we need to look at 8426 * conn_unspec_src and conn_zoneid, and we lose the conn when 8427 * going through arp. 8428 * 8429 * NOTE : ip_newroute_v6 does not have this piece of code as 8430 * it uses ip6i to store this information. 8431 */ 8432 if (ipha->ipha_src == INADDR_ANY && 8433 (connp == NULL || !connp->conn_unspec_src)) { 8434 ipha->ipha_src = src_ipif->ipif_src_addr; 8435 } 8436 if (ip_debug > 3) { 8437 /* ip2dbg */ 8438 pr_addr_dbg("ip_newroute: first hop %s\n", 8439 AF_INET, &gw); 8440 } 8441 ip2dbg(("\tire type %s (%d)\n", 8442 ip_nv_lookup(ire_nv_tbl, ire->ire_type), ire->ire_type)); 8443 8444 /* 8445 * The TTL of multirouted packets is bounded by the 8446 * ip_multirt_ttl ndd variable. 8447 */ 8448 if ((sire != NULL) && (sire->ire_flags & RTF_MULTIRT)) { 8449 /* Force TTL of multirouted packets */ 8450 if ((ipst->ips_ip_multirt_ttl > 0) && 8451 (ipha->ipha_ttl > ipst->ips_ip_multirt_ttl)) { 8452 ip2dbg(("ip_newroute: forcing multirt TTL " 8453 "to %d (was %d), dst 0x%08x\n", 8454 ipst->ips_ip_multirt_ttl, ipha->ipha_ttl, 8455 ntohl(sire->ire_addr))); 8456 ipha->ipha_ttl = ipst->ips_ip_multirt_ttl; 8457 } 8458 } 8459 /* 8460 * At this point in ip_newroute(), ire is either the 8461 * IRE_CACHE of the next-hop gateway for an off-subnet 8462 * destination or an IRE_INTERFACE type that should be used 8463 * to resolve an on-subnet destination or an on-subnet 8464 * next-hop gateway. 8465 * 8466 * In the IRE_CACHE case, we have the following : 8467 * 8468 * 1) src_ipif - used for getting a source address. 8469 * 8470 * 2) dst_ill - from which we derive ire_stq/ire_rfq. This 8471 * means packets using this IRE_CACHE will go out on 8472 * dst_ill. 8473 * 8474 * 3) The IRE sire will point to the prefix that is the 8475 * longest matching route for the destination. These 8476 * prefix types include IRE_DEFAULT, IRE_PREFIX, IRE_HOST. 8477 * 8478 * The newly created IRE_CACHE entry for the off-subnet 8479 * destination is tied to both the prefix route and the 8480 * interface route used to resolve the next-hop gateway 8481 * via the ire_phandle and ire_ihandle fields, 8482 * respectively. 8483 * 8484 * In the IRE_INTERFACE case, we have the following : 8485 * 8486 * 1) src_ipif - used for getting a source address. 8487 * 8488 * 2) dst_ill - from which we derive ire_stq/ire_rfq. This 8489 * means packets using the IRE_CACHE that we will build 8490 * here will go out on dst_ill. 8491 * 8492 * 3) sire may or may not be NULL. But, the IRE_CACHE that is 8493 * to be created will only be tied to the IRE_INTERFACE 8494 * that was derived from the ire_ihandle field. 8495 * 8496 * If sire is non-NULL, it means the destination is 8497 * off-link and we will first create the IRE_CACHE for the 8498 * gateway. Next time through ip_newroute, we will create 8499 * the IRE_CACHE for the final destination as described 8500 * above. 8501 * 8502 * In both cases, after the current resolution has been 8503 * completed (or possibly initialised, in the IRE_INTERFACE 8504 * case), the loop may be re-entered to attempt the resolution 8505 * of another RTF_MULTIRT route. 8506 * 8507 * When an IRE_CACHE entry for the off-subnet destination is 8508 * created, RTF_SETSRC and RTF_MULTIRT are inherited from sire, 8509 * for further processing in emission loops. 8510 */ 8511 save_ire = ire; 8512 switch (ire->ire_type) { 8513 case IRE_CACHE: { 8514 ire_t *ipif_ire; 8515 mblk_t *ire_fp_mp; 8516 8517 ASSERT(save_ire->ire_nce->nce_state == ND_REACHABLE); 8518 if (gw == 0) 8519 gw = ire->ire_gateway_addr; 8520 /* 8521 * We need 3 ire's to create a new cache ire for an 8522 * off-link destination from the cache ire of the 8523 * gateway. 8524 * 8525 * 1. The prefix ire 'sire' (Note that this does 8526 * not apply to the conn_nexthop_set case) 8527 * 2. The cache ire of the gateway 'ire' 8528 * 3. The interface ire 'ipif_ire' 8529 * 8530 * We have (1) and (2). We lookup (3) below. 8531 * 8532 * If there is no interface route to the gateway, 8533 * it is a race condition, where we found the cache 8534 * but the interface route has been deleted. 8535 */ 8536 if (ip_nexthop) { 8537 ipif_ire = ire_ihandle_lookup_onlink(ire); 8538 } else { 8539 ipif_ire = 8540 ire_ihandle_lookup_offlink(ire, sire); 8541 } 8542 if (ipif_ire == NULL) { 8543 ip1dbg(("ip_newroute: " 8544 "ire_ihandle_lookup_offlink failed\n")); 8545 goto icmp_err_ret; 8546 } 8547 /* 8548 * XXX We are using the same res_mp 8549 * (DL_UNITDATA_REQ) though the save_ire is not 8550 * pointing at the same ill. 8551 * This is incorrect. We need to send it up to the 8552 * resolver to get the right res_mp. For ethernets 8553 * this may be okay (ill_type == DL_ETHER). 8554 */ 8555 res_mp = save_ire->ire_nce->nce_res_mp; 8556 ire_fp_mp = NULL; 8557 8558 /* 8559 * Check cached gateway IRE for any security 8560 * attributes; if found, associate the gateway 8561 * credentials group to the destination IRE. 8562 */ 8563 if ((attrp = save_ire->ire_gw_secattr) != NULL) { 8564 mutex_enter(&attrp->igsa_lock); 8565 if ((gcgrp = attrp->igsa_gcgrp) != NULL) 8566 GCGRP_REFHOLD(gcgrp); 8567 mutex_exit(&attrp->igsa_lock); 8568 } 8569 8570 ire = ire_create( 8571 (uchar_t *)&dst, /* dest address */ 8572 (uchar_t *)&ip_g_all_ones, /* mask */ 8573 (uchar_t *)&src_ipif->ipif_src_addr, /* src addr */ 8574 (uchar_t *)&gw, /* gateway address */ 8575 NULL, 8576 &save_ire->ire_max_frag, 8577 ire_fp_mp, /* Fast Path header */ 8578 dst_ill->ill_rq, /* recv-from queue */ 8579 dst_ill->ill_wq, /* send-to queue */ 8580 IRE_CACHE, /* IRE type */ 8581 res_mp, 8582 src_ipif, 8583 in_ill, /* incoming ill */ 8584 (sire != NULL) ? 8585 sire->ire_mask : 0, /* Parent mask */ 8586 (sire != NULL) ? 8587 sire->ire_phandle : 0, /* Parent handle */ 8588 ipif_ire->ire_ihandle, /* Interface handle */ 8589 (sire != NULL) ? (sire->ire_flags & 8590 (RTF_SETSRC | RTF_MULTIRT)) : 0, /* flags */ 8591 (sire != NULL) ? 8592 &(sire->ire_uinfo) : &(save_ire->ire_uinfo), 8593 NULL, 8594 gcgrp, 8595 ipst); 8596 8597 if (ire == NULL) { 8598 if (gcgrp != NULL) { 8599 GCGRP_REFRELE(gcgrp); 8600 gcgrp = NULL; 8601 } 8602 ire_refrele(ipif_ire); 8603 ire_refrele(save_ire); 8604 break; 8605 } 8606 8607 /* reference now held by IRE */ 8608 gcgrp = NULL; 8609 8610 ire->ire_marks |= ire_marks; 8611 8612 /* 8613 * Prevent sire and ipif_ire from getting deleted. 8614 * The newly created ire is tied to both of them via 8615 * the phandle and ihandle respectively. 8616 */ 8617 if (sire != NULL) { 8618 IRB_REFHOLD(sire->ire_bucket); 8619 /* Has it been removed already ? */ 8620 if (sire->ire_marks & IRE_MARK_CONDEMNED) { 8621 IRB_REFRELE(sire->ire_bucket); 8622 ire_refrele(ipif_ire); 8623 ire_refrele(save_ire); 8624 break; 8625 } 8626 } 8627 8628 IRB_REFHOLD(ipif_ire->ire_bucket); 8629 /* Has it been removed already ? */ 8630 if (ipif_ire->ire_marks & IRE_MARK_CONDEMNED) { 8631 IRB_REFRELE(ipif_ire->ire_bucket); 8632 if (sire != NULL) 8633 IRB_REFRELE(sire->ire_bucket); 8634 ire_refrele(ipif_ire); 8635 ire_refrele(save_ire); 8636 break; 8637 } 8638 8639 xmit_mp = first_mp; 8640 /* 8641 * In the case of multirouting, a copy 8642 * of the packet is done before its sending. 8643 * The copy is used to attempt another 8644 * route resolution, in a next loop. 8645 */ 8646 if (ire->ire_flags & RTF_MULTIRT) { 8647 copy_mp = copymsg(first_mp); 8648 if (copy_mp != NULL) { 8649 xmit_mp = copy_mp; 8650 MULTIRT_DEBUG_TAG(first_mp); 8651 } 8652 } 8653 ire_add_then_send(q, ire, xmit_mp); 8654 ire_refrele(save_ire); 8655 8656 /* Assert that sire is not deleted yet. */ 8657 if (sire != NULL) { 8658 ASSERT(sire->ire_ptpn != NULL); 8659 IRB_REFRELE(sire->ire_bucket); 8660 } 8661 8662 /* Assert that ipif_ire is not deleted yet. */ 8663 ASSERT(ipif_ire->ire_ptpn != NULL); 8664 IRB_REFRELE(ipif_ire->ire_bucket); 8665 ire_refrele(ipif_ire); 8666 8667 /* 8668 * If copy_mp is not NULL, multirouting was 8669 * requested. We loop to initiate a next 8670 * route resolution attempt, starting from sire. 8671 */ 8672 if (copy_mp != NULL) { 8673 /* 8674 * Search for the next unresolved 8675 * multirt route. 8676 */ 8677 copy_mp = NULL; 8678 ipif_ire = NULL; 8679 ire = NULL; 8680 multirt_resolve_next = B_TRUE; 8681 continue; 8682 } 8683 if (sire != NULL) 8684 ire_refrele(sire); 8685 ipif_refrele(src_ipif); 8686 ill_refrele(dst_ill); 8687 return; 8688 } 8689 case IRE_IF_NORESOLVER: { 8690 /* 8691 * We have what we need to build an IRE_CACHE. 8692 * 8693 * Create a new res_mp with the IP gateway address 8694 * in destination address in the DLPI hdr if the 8695 * physical length is exactly 4 bytes. 8696 */ 8697 if (dst_ill->ill_phys_addr_length == IP_ADDR_LEN) { 8698 uchar_t *addr; 8699 8700 if (gw) 8701 addr = (uchar_t *)&gw; 8702 else 8703 addr = (uchar_t *)&dst; 8704 8705 res_mp = ill_dlur_gen(addr, 8706 dst_ill->ill_phys_addr_length, 8707 dst_ill->ill_sap, 8708 dst_ill->ill_sap_length); 8709 8710 if (res_mp == NULL) { 8711 ip1dbg(("ip_newroute: res_mp NULL\n")); 8712 break; 8713 } 8714 } else if (dst_ill->ill_resolver_mp == NULL) { 8715 ip1dbg(("ip_newroute: dst_ill %p " 8716 "for IF_NORESOLV ire %p has " 8717 "no ill_resolver_mp\n", 8718 (void *)dst_ill, (void *)ire)); 8719 break; 8720 } else { 8721 res_mp = NULL; 8722 } 8723 8724 /* 8725 * TSol note: We are creating the ire cache for the 8726 * destination 'dst'. If 'dst' is offlink, going 8727 * through the first hop 'gw', the security attributes 8728 * of 'dst' must be set to point to the gateway 8729 * credentials of gateway 'gw'. If 'dst' is onlink, it 8730 * is possible that 'dst' is a potential gateway that is 8731 * referenced by some route that has some security 8732 * attributes. Thus in the former case, we need to do a 8733 * gcgrp_lookup of 'gw' while in the latter case we 8734 * need to do gcgrp_lookup of 'dst' itself. 8735 */ 8736 ga.ga_af = AF_INET; 8737 IN6_IPADDR_TO_V4MAPPED(gw != INADDR_ANY ? gw : dst, 8738 &ga.ga_addr); 8739 gcgrp = gcgrp_lookup(&ga, B_FALSE); 8740 8741 ire = ire_create( 8742 (uchar_t *)&dst, /* dest address */ 8743 (uchar_t *)&ip_g_all_ones, /* mask */ 8744 (uchar_t *)&src_ipif->ipif_src_addr, /* src addr */ 8745 (uchar_t *)&gw, /* gateway address */ 8746 NULL, 8747 &save_ire->ire_max_frag, 8748 NULL, /* Fast Path header */ 8749 dst_ill->ill_rq, /* recv-from queue */ 8750 dst_ill->ill_wq, /* send-to queue */ 8751 IRE_CACHE, 8752 res_mp, 8753 src_ipif, 8754 in_ill, /* Incoming ill */ 8755 save_ire->ire_mask, /* Parent mask */ 8756 (sire != NULL) ? /* Parent handle */ 8757 sire->ire_phandle : 0, 8758 save_ire->ire_ihandle, /* Interface handle */ 8759 (sire != NULL) ? sire->ire_flags & 8760 (RTF_SETSRC | RTF_MULTIRT) : 0, /* flags */ 8761 &(save_ire->ire_uinfo), 8762 NULL, 8763 gcgrp, 8764 ipst); 8765 8766 if (dst_ill->ill_phys_addr_length == IP_ADDR_LEN) 8767 freeb(res_mp); 8768 8769 if (ire == NULL) { 8770 if (gcgrp != NULL) { 8771 GCGRP_REFRELE(gcgrp); 8772 gcgrp = NULL; 8773 } 8774 ire_refrele(save_ire); 8775 break; 8776 } 8777 8778 /* reference now held by IRE */ 8779 gcgrp = NULL; 8780 8781 ire->ire_marks |= ire_marks; 8782 8783 /* Prevent save_ire from getting deleted */ 8784 IRB_REFHOLD(save_ire->ire_bucket); 8785 /* Has it been removed already ? */ 8786 if (save_ire->ire_marks & IRE_MARK_CONDEMNED) { 8787 IRB_REFRELE(save_ire->ire_bucket); 8788 ire_refrele(save_ire); 8789 break; 8790 } 8791 8792 /* 8793 * In the case of multirouting, a copy 8794 * of the packet is made before it is sent. 8795 * The copy is used in the next 8796 * loop to attempt another resolution. 8797 */ 8798 xmit_mp = first_mp; 8799 if ((sire != NULL) && 8800 (sire->ire_flags & RTF_MULTIRT)) { 8801 copy_mp = copymsg(first_mp); 8802 if (copy_mp != NULL) { 8803 xmit_mp = copy_mp; 8804 MULTIRT_DEBUG_TAG(first_mp); 8805 } 8806 } 8807 ire_add_then_send(q, ire, xmit_mp); 8808 8809 /* Assert that it is not deleted yet. */ 8810 ASSERT(save_ire->ire_ptpn != NULL); 8811 IRB_REFRELE(save_ire->ire_bucket); 8812 ire_refrele(save_ire); 8813 8814 if (copy_mp != NULL) { 8815 /* 8816 * If we found a (no)resolver, we ignore any 8817 * trailing top priority IRE_CACHE in further 8818 * loops. This ensures that we do not omit any 8819 * (no)resolver. 8820 * This IRE_CACHE, if any, will be processed 8821 * by another thread entering ip_newroute(). 8822 * IRE_CACHE entries, if any, will be processed 8823 * by another thread entering ip_newroute(), 8824 * (upon resolver response, for instance). 8825 * This aims to force parallel multirt 8826 * resolutions as soon as a packet must be sent. 8827 * In the best case, after the tx of only one 8828 * packet, all reachable routes are resolved. 8829 * Otherwise, the resolution of all RTF_MULTIRT 8830 * routes would require several emissions. 8831 */ 8832 multirt_flags &= ~MULTIRT_CACHEGW; 8833 8834 /* 8835 * Search for the next unresolved multirt 8836 * route. 8837 */ 8838 copy_mp = NULL; 8839 save_ire = NULL; 8840 ire = NULL; 8841 multirt_resolve_next = B_TRUE; 8842 continue; 8843 } 8844 8845 /* 8846 * Don't need sire anymore 8847 */ 8848 if (sire != NULL) 8849 ire_refrele(sire); 8850 8851 ipif_refrele(src_ipif); 8852 ill_refrele(dst_ill); 8853 return; 8854 } 8855 case IRE_IF_RESOLVER: 8856 /* 8857 * We can't build an IRE_CACHE yet, but at least we 8858 * found a resolver that can help. 8859 */ 8860 res_mp = dst_ill->ill_resolver_mp; 8861 if (!OK_RESOLVER_MP(res_mp)) 8862 break; 8863 8864 /* 8865 * To be at this point in the code with a non-zero gw 8866 * means that dst is reachable through a gateway that 8867 * we have never resolved. By changing dst to the gw 8868 * addr we resolve the gateway first. 8869 * When ire_add_then_send() tries to put the IP dg 8870 * to dst, it will reenter ip_newroute() at which 8871 * time we will find the IRE_CACHE for the gw and 8872 * create another IRE_CACHE in case IRE_CACHE above. 8873 */ 8874 if (gw != INADDR_ANY) { 8875 /* 8876 * The source ipif that was determined above was 8877 * relative to the destination address, not the 8878 * gateway's. If src_ipif was not taken out of 8879 * the IRE_IF_RESOLVER entry, we'll need to call 8880 * ipif_select_source() again. 8881 */ 8882 if (src_ipif != ire->ire_ipif) { 8883 ipif_refrele(src_ipif); 8884 src_ipif = ipif_select_source(dst_ill, 8885 gw, zoneid); 8886 if (src_ipif == NULL) { 8887 if (ip_debug > 2) { 8888 pr_addr_dbg( 8889 "ip_newroute: no " 8890 "src for gw %s ", 8891 AF_INET, &gw); 8892 printf("through " 8893 "interface %s\n", 8894 dst_ill->ill_name); 8895 } 8896 goto icmp_err_ret; 8897 } 8898 } 8899 save_dst = dst; 8900 dst = gw; 8901 gw = INADDR_ANY; 8902 } 8903 8904 /* 8905 * We obtain a partial IRE_CACHE which we will pass 8906 * along with the resolver query. When the response 8907 * comes back it will be there ready for us to add. 8908 * The ire_max_frag is atomically set under the 8909 * irebucket lock in ire_add_v[46]. 8910 */ 8911 8912 ire = ire_create_mp( 8913 (uchar_t *)&dst, /* dest address */ 8914 (uchar_t *)&ip_g_all_ones, /* mask */ 8915 (uchar_t *)&src_ipif->ipif_src_addr, /* src addr */ 8916 (uchar_t *)&gw, /* gateway address */ 8917 NULL, /* no in_src_addr */ 8918 NULL, /* ire_max_frag */ 8919 NULL, /* Fast Path header */ 8920 dst_ill->ill_rq, /* recv-from queue */ 8921 dst_ill->ill_wq, /* send-to queue */ 8922 IRE_CACHE, 8923 NULL, 8924 src_ipif, /* Interface ipif */ 8925 in_ill, /* Incoming ILL */ 8926 save_ire->ire_mask, /* Parent mask */ 8927 0, 8928 save_ire->ire_ihandle, /* Interface handle */ 8929 0, /* flags if any */ 8930 &(save_ire->ire_uinfo), 8931 NULL, 8932 NULL, 8933 ipst); 8934 8935 if (ire == NULL) { 8936 ire_refrele(save_ire); 8937 break; 8938 } 8939 8940 if ((sire != NULL) && 8941 (sire->ire_flags & RTF_MULTIRT)) { 8942 copy_mp = copymsg(first_mp); 8943 if (copy_mp != NULL) 8944 MULTIRT_DEBUG_TAG(copy_mp); 8945 } 8946 8947 ire->ire_marks |= ire_marks; 8948 8949 /* 8950 * Construct message chain for the resolver 8951 * of the form: 8952 * ARP_REQ_MBLK-->IRE_MBLK-->Packet 8953 * Packet could contain a IPSEC_OUT mp. 8954 * 8955 * NOTE : ire will be added later when the response 8956 * comes back from ARP. If the response does not 8957 * come back, ARP frees the packet. For this reason, 8958 * we can't REFHOLD the bucket of save_ire to prevent 8959 * deletions. We may not be able to REFRELE the bucket 8960 * if the response never comes back. Thus, before 8961 * adding the ire, ire_add_v4 will make sure that the 8962 * interface route does not get deleted. This is the 8963 * only case unlike ip_newroute_v6, ip_newroute_ipif_v6 8964 * where we can always prevent deletions because of 8965 * the synchronous nature of adding IRES i.e 8966 * ire_add_then_send is called after creating the IRE. 8967 */ 8968 ASSERT(ire->ire_mp != NULL); 8969 ire->ire_mp->b_cont = first_mp; 8970 /* Have saved_mp handy, for cleanup if canput fails */ 8971 saved_mp = mp; 8972 mp = copyb(res_mp); 8973 if (mp == NULL) { 8974 /* Prepare for cleanup */ 8975 mp = saved_mp; /* pkt */ 8976 ire_delete(ire); /* ire_mp */ 8977 ire = NULL; 8978 ire_refrele(save_ire); 8979 if (copy_mp != NULL) { 8980 MULTIRT_DEBUG_UNTAG(copy_mp); 8981 freemsg(copy_mp); 8982 copy_mp = NULL; 8983 } 8984 break; 8985 } 8986 linkb(mp, ire->ire_mp); 8987 8988 /* 8989 * Fill in the source and dest addrs for the resolver. 8990 * NOTE: this depends on memory layouts imposed by 8991 * ill_init(). 8992 */ 8993 areq = (areq_t *)mp->b_rptr; 8994 addrp = (ipaddr_t *)((char *)areq + 8995 areq->areq_sender_addr_offset); 8996 if (do_attach_ill) { 8997 /* 8998 * This is bind to no failover case. 8999 * arp packet also must go out on attach_ill. 9000 */ 9001 ASSERT(ipha->ipha_src != NULL); 9002 *addrp = ipha->ipha_src; 9003 } else { 9004 *addrp = save_ire->ire_src_addr; 9005 } 9006 9007 ire_refrele(save_ire); 9008 addrp = (ipaddr_t *)((char *)areq + 9009 areq->areq_target_addr_offset); 9010 *addrp = dst; 9011 /* Up to the resolver. */ 9012 if (canputnext(dst_ill->ill_rq) && 9013 !(dst_ill->ill_arp_closing)) { 9014 putnext(dst_ill->ill_rq, mp); 9015 ire = NULL; 9016 if (copy_mp != NULL) { 9017 /* 9018 * If we found a resolver, we ignore 9019 * any trailing top priority IRE_CACHE 9020 * in the further loops. This ensures 9021 * that we do not omit any resolver. 9022 * IRE_CACHE entries, if any, will be 9023 * processed next time we enter 9024 * ip_newroute(). 9025 */ 9026 multirt_flags &= ~MULTIRT_CACHEGW; 9027 /* 9028 * Search for the next unresolved 9029 * multirt route. 9030 */ 9031 first_mp = copy_mp; 9032 copy_mp = NULL; 9033 /* Prepare the next resolution loop. */ 9034 mp = first_mp; 9035 EXTRACT_PKT_MP(mp, first_mp, 9036 mctl_present); 9037 if (mctl_present) 9038 io = (ipsec_out_t *) 9039 first_mp->b_rptr; 9040 ipha = (ipha_t *)mp->b_rptr; 9041 9042 ASSERT(sire != NULL); 9043 9044 dst = save_dst; 9045 multirt_resolve_next = B_TRUE; 9046 continue; 9047 } 9048 9049 if (sire != NULL) 9050 ire_refrele(sire); 9051 9052 /* 9053 * The response will come back in ip_wput 9054 * with db_type IRE_DB_TYPE. 9055 */ 9056 ipif_refrele(src_ipif); 9057 ill_refrele(dst_ill); 9058 return; 9059 } else { 9060 /* Prepare for cleanup */ 9061 DTRACE_PROBE1(ip__newroute__drop, mblk_t *, 9062 mp); 9063 mp->b_cont = NULL; 9064 freeb(mp); /* areq */ 9065 /* 9066 * this is an ire that is not added to the 9067 * cache. ire_freemblk will handle the release 9068 * of any resources associated with the ire. 9069 */ 9070 ire_delete(ire); /* ire_mp */ 9071 mp = saved_mp; /* pkt */ 9072 ire = NULL; 9073 if (copy_mp != NULL) { 9074 MULTIRT_DEBUG_UNTAG(copy_mp); 9075 freemsg(copy_mp); 9076 copy_mp = NULL; 9077 } 9078 break; 9079 } 9080 default: 9081 break; 9082 } 9083 } while (multirt_resolve_next); 9084 9085 ip1dbg(("ip_newroute: dropped\n")); 9086 /* Did this packet originate externally? */ 9087 if (mp->b_prev) { 9088 mp->b_next = NULL; 9089 mp->b_prev = NULL; 9090 if (in_ill != NULL) { 9091 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsInDiscards); 9092 } else { 9093 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsInDiscards); 9094 } 9095 } else { 9096 if (dst_ill != NULL) { 9097 BUMP_MIB(dst_ill->ill_ip_mib, ipIfStatsOutDiscards); 9098 } else { 9099 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 9100 } 9101 } 9102 ASSERT(copy_mp == NULL); 9103 MULTIRT_DEBUG_UNTAG(first_mp); 9104 freemsg(first_mp); 9105 if (ire != NULL) 9106 ire_refrele(ire); 9107 if (sire != NULL) 9108 ire_refrele(sire); 9109 if (src_ipif != NULL) 9110 ipif_refrele(src_ipif); 9111 if (dst_ill != NULL) 9112 ill_refrele(dst_ill); 9113 return; 9114 9115 icmp_err_ret: 9116 ip1dbg(("ip_newroute: no route\n")); 9117 if (src_ipif != NULL) 9118 ipif_refrele(src_ipif); 9119 if (dst_ill != NULL) 9120 ill_refrele(dst_ill); 9121 if (sire != NULL) 9122 ire_refrele(sire); 9123 /* Did this packet originate externally? */ 9124 if (mp->b_prev) { 9125 mp->b_next = NULL; 9126 mp->b_prev = NULL; 9127 if (in_ill != NULL) { 9128 BUMP_MIB(in_ill->ill_ip_mib, ipIfStatsInNoRoutes); 9129 } else { 9130 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsInNoRoutes); 9131 } 9132 q = WR(q); 9133 } else { 9134 /* 9135 * There is no outgoing ill, so just increment the 9136 * system MIB. 9137 */ 9138 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 9139 /* 9140 * Since ip_wput() isn't close to finished, we fill 9141 * in enough of the header for credible error reporting. 9142 */ 9143 if (ip_hdr_complete(ipha, zoneid, ipst)) { 9144 /* Failed */ 9145 MULTIRT_DEBUG_UNTAG(first_mp); 9146 freemsg(first_mp); 9147 if (ire != NULL) 9148 ire_refrele(ire); 9149 return; 9150 } 9151 } 9152 9153 /* 9154 * At this point we will have ire only if RTF_BLACKHOLE 9155 * or RTF_REJECT flags are set on the IRE. It will not 9156 * generate ICMP_HOST_UNREACHABLE if RTF_BLACKHOLE is set. 9157 */ 9158 if (ire != NULL) { 9159 if (ire->ire_flags & RTF_BLACKHOLE) { 9160 ire_refrele(ire); 9161 MULTIRT_DEBUG_UNTAG(first_mp); 9162 freemsg(first_mp); 9163 return; 9164 } 9165 ire_refrele(ire); 9166 } 9167 if (ip_source_routed(ipha, ipst)) { 9168 icmp_unreachable(q, first_mp, ICMP_SOURCE_ROUTE_FAILED, 9169 zoneid, ipst); 9170 return; 9171 } 9172 icmp_unreachable(q, first_mp, ICMP_HOST_UNREACHABLE, zoneid, ipst); 9173 } 9174 9175 ip_opt_info_t zero_info; 9176 9177 /* 9178 * IPv4 - 9179 * ip_newroute_ipif is called by ip_wput_multicast and 9180 * ip_rput_forward_multicast whenever we need to send 9181 * out a packet to a destination address for which we do not have specific 9182 * routing information. It is used when the packet will be sent out 9183 * on a specific interface. It is also called by ip_wput() when IP_XMIT_IF 9184 * socket option is set or icmp error message wants to go out on a particular 9185 * interface for a unicast packet. 9186 * 9187 * In most cases, the destination address is resolved thanks to the ipif 9188 * intrinsic resolver. However, there are some cases where the call to 9189 * ip_newroute_ipif must take into account the potential presence of 9190 * RTF_SETSRC and/or RTF_MULITRT flags in an IRE_OFFSUBNET ire 9191 * that uses the interface. This is specified through flags, 9192 * which can be a combination of: 9193 * - RTF_SETSRC: if an IRE_OFFSUBNET ire exists that has the RTF_SETSRC 9194 * flag, the resulting ire will inherit the IRE_OFFSUBNET source address 9195 * and flags. Additionally, the packet source address has to be set to 9196 * the specified address. The caller is thus expected to set this flag 9197 * if the packet has no specific source address yet. 9198 * - RTF_MULTIRT: if an IRE_OFFSUBNET ire exists that has the RTF_MULTIRT 9199 * flag, the resulting ire will inherit the flag. All unresolved routes 9200 * to the destination must be explored in the same call to 9201 * ip_newroute_ipif(). 9202 */ 9203 static void 9204 ip_newroute_ipif(queue_t *q, mblk_t *mp, ipif_t *ipif, ipaddr_t dst, 9205 conn_t *connp, uint32_t flags, zoneid_t zoneid, ip_opt_info_t *infop) 9206 { 9207 areq_t *areq; 9208 ire_t *ire = NULL; 9209 mblk_t *res_mp; 9210 ipaddr_t *addrp; 9211 mblk_t *first_mp; 9212 ire_t *save_ire = NULL; 9213 ill_t *attach_ill = NULL; /* Bind to IPIF_NOFAILOVER */ 9214 ipif_t *src_ipif = NULL; 9215 ushort_t ire_marks = 0; 9216 ill_t *dst_ill = NULL; 9217 boolean_t mctl_present; 9218 ipsec_out_t *io; 9219 ipha_t *ipha; 9220 int ihandle = 0; 9221 mblk_t *saved_mp; 9222 ire_t *fire = NULL; 9223 mblk_t *copy_mp = NULL; 9224 boolean_t multirt_resolve_next; 9225 ipaddr_t ipha_dst; 9226 ip_stack_t *ipst = ipif->ipif_ill->ill_ipst; 9227 9228 /* 9229 * CGTP goes in a loop which looks up a new ipif, do an ipif_refhold 9230 * here for uniformity 9231 */ 9232 ipif_refhold(ipif); 9233 9234 /* 9235 * This loop is run only once in most cases. 9236 * We loop to resolve further routes only when the destination 9237 * can be reached through multiple RTF_MULTIRT-flagged ires. 9238 */ 9239 do { 9240 if (dst_ill != NULL) { 9241 ill_refrele(dst_ill); 9242 dst_ill = NULL; 9243 } 9244 if (src_ipif != NULL) { 9245 ipif_refrele(src_ipif); 9246 src_ipif = NULL; 9247 } 9248 multirt_resolve_next = B_FALSE; 9249 9250 ip1dbg(("ip_newroute_ipif: dst 0x%x, if %s\n", ntohl(dst), 9251 ipif->ipif_ill->ill_name)); 9252 9253 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 9254 if (mctl_present) 9255 io = (ipsec_out_t *)first_mp->b_rptr; 9256 9257 ipha = (ipha_t *)mp->b_rptr; 9258 9259 /* 9260 * Save the packet destination address, we may need it after 9261 * the packet has been consumed. 9262 */ 9263 ipha_dst = ipha->ipha_dst; 9264 9265 /* 9266 * If the interface is a pt-pt interface we look for an 9267 * IRE_IF_RESOLVER or IRE_IF_NORESOLVER that matches both the 9268 * local_address and the pt-pt destination address. Otherwise 9269 * we just match the local address. 9270 * NOTE: dst could be different than ipha->ipha_dst in case 9271 * of sending igmp multicast packets over a point-to-point 9272 * connection. 9273 * Thus we must be careful enough to check ipha_dst to be a 9274 * multicast address, otherwise it will take xmit_if path for 9275 * multicast packets resulting into kernel stack overflow by 9276 * repeated calls to ip_newroute_ipif from ire_send(). 9277 */ 9278 if (CLASSD(ipha_dst) && 9279 !(ipif->ipif_ill->ill_flags & ILLF_MULTICAST)) { 9280 goto err_ret; 9281 } 9282 9283 /* 9284 * We check if an IRE_OFFSUBNET for the addr that goes through 9285 * ipif exists. We need it to determine if the RTF_SETSRC and/or 9286 * RTF_MULTIRT flags must be honored. This IRE_OFFSUBNET ire may 9287 * propagate its flags to the new ire. 9288 */ 9289 if (CLASSD(ipha_dst) && (flags & (RTF_MULTIRT | RTF_SETSRC))) { 9290 fire = ipif_lookup_multi_ire(ipif, ipha_dst); 9291 ip2dbg(("ip_newroute_ipif: " 9292 "ipif_lookup_multi_ire(" 9293 "ipif %p, dst %08x) = fire %p\n", 9294 (void *)ipif, ntohl(dst), (void *)fire)); 9295 } 9296 9297 if (mctl_present && io->ipsec_out_attach_if) { 9298 attach_ill = ip_grab_attach_ill(NULL, first_mp, 9299 io->ipsec_out_ill_index, B_FALSE, ipst); 9300 9301 /* Failure case frees things for us. */ 9302 if (attach_ill == NULL) { 9303 ipif_refrele(ipif); 9304 if (fire != NULL) 9305 ire_refrele(fire); 9306 return; 9307 } 9308 9309 /* 9310 * Check if we need an ire that will not be 9311 * looked up by anybody else i.e. HIDDEN. 9312 */ 9313 if (ill_is_probeonly(attach_ill)) { 9314 ire_marks = IRE_MARK_HIDDEN; 9315 } 9316 /* 9317 * ip_wput passes the right ipif for IPIF_NOFAILOVER 9318 * case. 9319 */ 9320 dst_ill = ipif->ipif_ill; 9321 /* attach_ill has been refheld by ip_grab_attach_ill */ 9322 ASSERT(dst_ill == attach_ill); 9323 } else { 9324 /* 9325 * If this is set by IP_XMIT_IF, then make sure that 9326 * ipif is pointing to the same ill as the IP_XMIT_IF 9327 * specified ill. 9328 */ 9329 ASSERT((connp == NULL) || 9330 (connp->conn_xmit_if_ill == NULL) || 9331 (connp->conn_xmit_if_ill == ipif->ipif_ill)); 9332 /* 9333 * If the interface belongs to an interface group, 9334 * make sure the next possible interface in the group 9335 * is used. This encourages load spreading among 9336 * peers in an interface group. 9337 * Note: load spreading is disabled for RTF_MULTIRT 9338 * routes. 9339 */ 9340 if ((flags & RTF_MULTIRT) && (fire != NULL) && 9341 (fire->ire_flags & RTF_MULTIRT)) { 9342 /* 9343 * Don't perform outbound load spreading 9344 * in the case of an RTF_MULTIRT issued route, 9345 * we actually typically want to replicate 9346 * outgoing packets through particular 9347 * interfaces. 9348 */ 9349 dst_ill = ipif->ipif_ill; 9350 ill_refhold(dst_ill); 9351 } else { 9352 dst_ill = ip_newroute_get_dst_ill( 9353 ipif->ipif_ill); 9354 } 9355 if (dst_ill == NULL) { 9356 if (ip_debug > 2) { 9357 pr_addr_dbg("ip_newroute_ipif: " 9358 "no dst ill for dst %s\n", 9359 AF_INET, &dst); 9360 } 9361 goto err_ret; 9362 } 9363 } 9364 9365 /* 9366 * Pick a source address preferring non-deprecated ones. 9367 * Unlike ip_newroute, we don't do any source address 9368 * selection here since for multicast it really does not help 9369 * in inbound load spreading as in the unicast case. 9370 */ 9371 if ((flags & RTF_SETSRC) && (fire != NULL) && 9372 (fire->ire_flags & RTF_SETSRC)) { 9373 /* 9374 * As requested by flags, an IRE_OFFSUBNET was looked up 9375 * on that interface. This ire has RTF_SETSRC flag, so 9376 * the source address of the packet must be changed. 9377 * Check that the ipif matching the requested source 9378 * address still exists. 9379 */ 9380 src_ipif = ipif_lookup_addr(fire->ire_src_addr, NULL, 9381 zoneid, NULL, NULL, NULL, NULL, ipst); 9382 } 9383 if (((ipif->ipif_flags & IPIF_DEPRECATED) || 9384 (connp != NULL && ipif->ipif_zoneid != zoneid && 9385 ipif->ipif_zoneid != ALL_ZONES)) && 9386 (src_ipif == NULL)) { 9387 src_ipif = ipif_select_source(dst_ill, dst, zoneid); 9388 if (src_ipif == NULL) { 9389 if (ip_debug > 2) { 9390 /* ip1dbg */ 9391 pr_addr_dbg("ip_newroute_ipif: " 9392 "no src for dst %s", 9393 AF_INET, &dst); 9394 } 9395 ip1dbg((" through interface %s\n", 9396 dst_ill->ill_name)); 9397 goto err_ret; 9398 } 9399 ipif_refrele(ipif); 9400 ipif = src_ipif; 9401 ipif_refhold(ipif); 9402 } 9403 if (src_ipif == NULL) { 9404 src_ipif = ipif; 9405 ipif_refhold(src_ipif); 9406 } 9407 9408 /* 9409 * Assign a source address while we have the conn. 9410 * We can't have ip_wput_ire pick a source address when the 9411 * packet returns from arp since conn_unspec_src might be set 9412 * and we loose the conn when going through arp. 9413 */ 9414 if (ipha->ipha_src == INADDR_ANY && 9415 (connp == NULL || !connp->conn_unspec_src)) { 9416 ipha->ipha_src = src_ipif->ipif_src_addr; 9417 } 9418 9419 /* 9420 * In case of IP_XMIT_IF, it is possible that the outgoing 9421 * interface does not have an interface ire. 9422 * Example: Thousands of mobileip PPP interfaces to mobile 9423 * nodes. We don't want to create interface ires because 9424 * packets from other mobile nodes must not take the route 9425 * via interface ires to the visiting mobile node without 9426 * going through the home agent, in absence of mobileip 9427 * route optimization. 9428 */ 9429 if (CLASSD(ipha_dst) && (connp == NULL || 9430 connp->conn_xmit_if_ill == NULL) && 9431 infop->ip_opt_ill_index == 0) { 9432 /* ipif_to_ire returns an held ire */ 9433 ire = ipif_to_ire(ipif); 9434 if (ire == NULL) 9435 goto err_ret; 9436 if (ire->ire_flags & (RTF_REJECT | RTF_BLACKHOLE)) 9437 goto err_ret; 9438 /* 9439 * ihandle is needed when the ire is added to 9440 * cache table. 9441 */ 9442 save_ire = ire; 9443 ihandle = save_ire->ire_ihandle; 9444 9445 ip2dbg(("ip_newroute_ipif: ire %p, ipif %p, " 9446 "flags %04x\n", 9447 (void *)ire, (void *)ipif, flags)); 9448 if ((flags & RTF_MULTIRT) && (fire != NULL) && 9449 (fire->ire_flags & RTF_MULTIRT)) { 9450 /* 9451 * As requested by flags, an IRE_OFFSUBNET was 9452 * looked up on that interface. This ire has 9453 * RTF_MULTIRT flag, so the resolution loop will 9454 * be re-entered to resolve additional routes on 9455 * other interfaces. For that purpose, a copy of 9456 * the packet is performed at this point. 9457 */ 9458 fire->ire_last_used_time = lbolt; 9459 copy_mp = copymsg(first_mp); 9460 if (copy_mp) { 9461 MULTIRT_DEBUG_TAG(copy_mp); 9462 } 9463 } 9464 if ((flags & RTF_SETSRC) && (fire != NULL) && 9465 (fire->ire_flags & RTF_SETSRC)) { 9466 /* 9467 * As requested by flags, an IRE_OFFSUBET was 9468 * looked up on that interface. This ire has 9469 * RTF_SETSRC flag, so the source address of the 9470 * packet must be changed. 9471 */ 9472 ipha->ipha_src = fire->ire_src_addr; 9473 } 9474 } else { 9475 ASSERT((connp == NULL) || 9476 (connp->conn_xmit_if_ill != NULL) || 9477 (connp->conn_dontroute) || 9478 infop->ip_opt_ill_index != 0); 9479 /* 9480 * The only ways we can come here are: 9481 * 1) IP_XMIT_IF socket option is set 9482 * 2) ICMP error message generated from 9483 * ip_mrtun_forward() routine and it needs 9484 * to go through the specified ill. 9485 * 3) SO_DONTROUTE socket option is set 9486 * 4) IP_PKTINFO option is passed in as ancillary data. 9487 * In all cases, the new ire will not be added 9488 * into cache table. 9489 */ 9490 ire_marks |= IRE_MARK_NOADD; 9491 } 9492 9493 switch (ipif->ipif_net_type) { 9494 case IRE_IF_NORESOLVER: { 9495 /* We have what we need to build an IRE_CACHE. */ 9496 mblk_t *res_mp; 9497 9498 /* 9499 * Create a new res_mp with the 9500 * IP gateway address as destination address in the 9501 * DLPI hdr if the physical length is exactly 4 bytes. 9502 */ 9503 if (dst_ill->ill_phys_addr_length == IP_ADDR_LEN) { 9504 res_mp = ill_dlur_gen((uchar_t *)&dst, 9505 dst_ill->ill_phys_addr_length, 9506 dst_ill->ill_sap, 9507 dst_ill->ill_sap_length); 9508 } else if (dst_ill->ill_resolver_mp == NULL) { 9509 ip1dbg(("ip_newroute: dst_ill %p " 9510 "for IF_NORESOLV ire %p has " 9511 "no ill_resolver_mp\n", 9512 (void *)dst_ill, (void *)ire)); 9513 break; 9514 } else { 9515 /* use the value set in ip_ll_subnet_defaults */ 9516 res_mp = ill_dlur_gen(NULL, 9517 dst_ill->ill_phys_addr_length, 9518 dst_ill->ill_sap, 9519 dst_ill->ill_sap_length); 9520 } 9521 9522 if (res_mp == NULL) 9523 break; 9524 /* 9525 * The new ire inherits the IRE_OFFSUBNET flags 9526 * and source address, if this was requested. 9527 */ 9528 ire = ire_create( 9529 (uchar_t *)&dst, /* dest address */ 9530 (uchar_t *)&ip_g_all_ones, /* mask */ 9531 (uchar_t *)&src_ipif->ipif_src_addr, /* src addr */ 9532 NULL, /* gateway address */ 9533 NULL, 9534 &ipif->ipif_mtu, 9535 NULL, /* Fast Path header */ 9536 dst_ill->ill_rq, /* recv-from queue */ 9537 dst_ill->ill_wq, /* send-to queue */ 9538 IRE_CACHE, 9539 res_mp, 9540 src_ipif, 9541 NULL, 9542 (save_ire != NULL ? save_ire->ire_mask : 0), 9543 (fire != NULL) ? /* Parent handle */ 9544 fire->ire_phandle : 0, 9545 ihandle, /* Interface handle */ 9546 (fire != NULL) ? 9547 (fire->ire_flags & 9548 (RTF_SETSRC | RTF_MULTIRT)) : 0, 9549 (save_ire == NULL ? &ire_uinfo_null : 9550 &save_ire->ire_uinfo), 9551 NULL, 9552 NULL, 9553 ipst); 9554 9555 freeb(res_mp); 9556 9557 if (ire == NULL) { 9558 if (save_ire != NULL) 9559 ire_refrele(save_ire); 9560 break; 9561 } 9562 9563 ire->ire_marks |= ire_marks; 9564 9565 /* 9566 * If IRE_MARK_NOADD is set then we need to convert 9567 * the max_fragp to a useable value now. This is 9568 * normally done in ire_add_v[46]. We also need to 9569 * associate the ire with an nce (normally would be 9570 * done in ip_wput_nondata()). 9571 * 9572 * Note that IRE_MARK_NOADD packets created here 9573 * do not have a non-null ire_mp pointer. The null 9574 * value of ire_bucket indicates that they were 9575 * never added. 9576 */ 9577 if (ire->ire_marks & IRE_MARK_NOADD) { 9578 uint_t max_frag; 9579 9580 max_frag = *ire->ire_max_fragp; 9581 ire->ire_max_fragp = NULL; 9582 ire->ire_max_frag = max_frag; 9583 9584 if ((ire->ire_nce = ndp_lookup_v4( 9585 ire_to_ill(ire), 9586 (ire->ire_gateway_addr != INADDR_ANY ? 9587 &ire->ire_gateway_addr : &ire->ire_addr), 9588 B_FALSE)) == NULL) { 9589 if (save_ire != NULL) 9590 ire_refrele(save_ire); 9591 break; 9592 } 9593 ASSERT(ire->ire_nce->nce_state == 9594 ND_REACHABLE); 9595 NCE_REFHOLD_TO_REFHOLD_NOTR(ire->ire_nce); 9596 } 9597 9598 /* Prevent save_ire from getting deleted */ 9599 if (save_ire != NULL) { 9600 IRB_REFHOLD(save_ire->ire_bucket); 9601 /* Has it been removed already ? */ 9602 if (save_ire->ire_marks & IRE_MARK_CONDEMNED) { 9603 IRB_REFRELE(save_ire->ire_bucket); 9604 ire_refrele(save_ire); 9605 break; 9606 } 9607 } 9608 9609 ire_add_then_send(q, ire, first_mp); 9610 9611 /* Assert that save_ire is not deleted yet. */ 9612 if (save_ire != NULL) { 9613 ASSERT(save_ire->ire_ptpn != NULL); 9614 IRB_REFRELE(save_ire->ire_bucket); 9615 ire_refrele(save_ire); 9616 save_ire = NULL; 9617 } 9618 if (fire != NULL) { 9619 ire_refrele(fire); 9620 fire = NULL; 9621 } 9622 9623 /* 9624 * the resolution loop is re-entered if this 9625 * was requested through flags and if we 9626 * actually are in a multirouting case. 9627 */ 9628 if ((flags & RTF_MULTIRT) && (copy_mp != NULL)) { 9629 boolean_t need_resolve = 9630 ire_multirt_need_resolve(ipha_dst, 9631 MBLK_GETLABEL(copy_mp), ipst); 9632 if (!need_resolve) { 9633 MULTIRT_DEBUG_UNTAG(copy_mp); 9634 freemsg(copy_mp); 9635 copy_mp = NULL; 9636 } else { 9637 /* 9638 * ipif_lookup_group() calls 9639 * ire_lookup_multi() that uses 9640 * ire_ftable_lookup() to find 9641 * an IRE_INTERFACE for the group. 9642 * In the multirt case, 9643 * ire_lookup_multi() then invokes 9644 * ire_multirt_lookup() to find 9645 * the next resolvable ire. 9646 * As a result, we obtain an new 9647 * interface, derived from the 9648 * next ire. 9649 */ 9650 ipif_refrele(ipif); 9651 ipif = ipif_lookup_group(ipha_dst, 9652 zoneid, ipst); 9653 ip2dbg(("ip_newroute_ipif: " 9654 "multirt dst %08x, ipif %p\n", 9655 htonl(dst), (void *)ipif)); 9656 if (ipif != NULL) { 9657 mp = copy_mp; 9658 copy_mp = NULL; 9659 multirt_resolve_next = B_TRUE; 9660 continue; 9661 } else { 9662 freemsg(copy_mp); 9663 } 9664 } 9665 } 9666 if (ipif != NULL) 9667 ipif_refrele(ipif); 9668 ill_refrele(dst_ill); 9669 ipif_refrele(src_ipif); 9670 return; 9671 } 9672 case IRE_IF_RESOLVER: 9673 /* 9674 * We can't build an IRE_CACHE yet, but at least 9675 * we found a resolver that can help. 9676 */ 9677 res_mp = dst_ill->ill_resolver_mp; 9678 if (!OK_RESOLVER_MP(res_mp)) 9679 break; 9680 9681 /* 9682 * We obtain a partial IRE_CACHE which we will pass 9683 * along with the resolver query. When the response 9684 * comes back it will be there ready for us to add. 9685 * The new ire inherits the IRE_OFFSUBNET flags 9686 * and source address, if this was requested. 9687 * The ire_max_frag is atomically set under the 9688 * irebucket lock in ire_add_v[46]. Only in the 9689 * case of IRE_MARK_NOADD, we set it here itself. 9690 */ 9691 ire = ire_create_mp( 9692 (uchar_t *)&dst, /* dest address */ 9693 (uchar_t *)&ip_g_all_ones, /* mask */ 9694 (uchar_t *)&src_ipif->ipif_src_addr, /* src addr */ 9695 NULL, /* gateway address */ 9696 NULL, /* no in_src_addr */ 9697 (ire_marks & IRE_MARK_NOADD) ? 9698 ipif->ipif_mtu : 0, /* max_frag */ 9699 NULL, /* Fast path header */ 9700 dst_ill->ill_rq, /* recv-from queue */ 9701 dst_ill->ill_wq, /* send-to queue */ 9702 IRE_CACHE, 9703 NULL, /* let ire_nce_init figure res_mp out */ 9704 src_ipif, 9705 NULL, 9706 (save_ire != NULL ? save_ire->ire_mask : 0), 9707 (fire != NULL) ? /* Parent handle */ 9708 fire->ire_phandle : 0, 9709 ihandle, /* Interface handle */ 9710 (fire != NULL) ? /* flags if any */ 9711 (fire->ire_flags & 9712 (RTF_SETSRC | RTF_MULTIRT)) : 0, 9713 (save_ire == NULL ? &ire_uinfo_null : 9714 &save_ire->ire_uinfo), 9715 NULL, 9716 NULL, 9717 ipst); 9718 9719 if (save_ire != NULL) { 9720 ire_refrele(save_ire); 9721 save_ire = NULL; 9722 } 9723 if (ire == NULL) 9724 break; 9725 9726 ire->ire_marks |= ire_marks; 9727 /* 9728 * Construct message chain for the resolver of the 9729 * form: 9730 * ARP_REQ_MBLK-->IRE_MBLK-->Packet 9731 * 9732 * NOTE : ire will be added later when the response 9733 * comes back from ARP. If the response does not 9734 * come back, ARP frees the packet. For this reason, 9735 * we can't REFHOLD the bucket of save_ire to prevent 9736 * deletions. We may not be able to REFRELE the 9737 * bucket if the response never comes back. 9738 * Thus, before adding the ire, ire_add_v4 will make 9739 * sure that the interface route does not get deleted. 9740 * This is the only case unlike ip_newroute_v6, 9741 * ip_newroute_ipif_v6 where we can always prevent 9742 * deletions because ire_add_then_send is called after 9743 * creating the IRE. 9744 * If IRE_MARK_NOADD is set, then ire_add_then_send 9745 * does not add this IRE into the IRE CACHE. 9746 */ 9747 ASSERT(ire->ire_mp != NULL); 9748 ire->ire_mp->b_cont = first_mp; 9749 /* Have saved_mp handy, for cleanup if canput fails */ 9750 saved_mp = mp; 9751 mp = copyb(res_mp); 9752 if (mp == NULL) { 9753 /* Prepare for cleanup */ 9754 mp = saved_mp; /* pkt */ 9755 ire_delete(ire); /* ire_mp */ 9756 ire = NULL; 9757 if (copy_mp != NULL) { 9758 MULTIRT_DEBUG_UNTAG(copy_mp); 9759 freemsg(copy_mp); 9760 copy_mp = NULL; 9761 } 9762 break; 9763 } 9764 linkb(mp, ire->ire_mp); 9765 9766 /* 9767 * Fill in the source and dest addrs for the resolver. 9768 * NOTE: this depends on memory layouts imposed by 9769 * ill_init(). 9770 */ 9771 areq = (areq_t *)mp->b_rptr; 9772 addrp = (ipaddr_t *)((char *)areq + 9773 areq->areq_sender_addr_offset); 9774 *addrp = ire->ire_src_addr; 9775 addrp = (ipaddr_t *)((char *)areq + 9776 areq->areq_target_addr_offset); 9777 *addrp = dst; 9778 /* Up to the resolver. */ 9779 if (canputnext(dst_ill->ill_rq) && 9780 !(dst_ill->ill_arp_closing)) { 9781 putnext(dst_ill->ill_rq, mp); 9782 /* 9783 * The response will come back in ip_wput 9784 * with db_type IRE_DB_TYPE. 9785 */ 9786 } else { 9787 mp->b_cont = NULL; 9788 freeb(mp); /* areq */ 9789 ire_delete(ire); /* ire_mp */ 9790 saved_mp->b_next = NULL; 9791 saved_mp->b_prev = NULL; 9792 freemsg(first_mp); /* pkt */ 9793 ip2dbg(("ip_newroute_ipif: dropped\n")); 9794 } 9795 9796 if (fire != NULL) { 9797 ire_refrele(fire); 9798 fire = NULL; 9799 } 9800 9801 9802 /* 9803 * The resolution loop is re-entered if this was 9804 * requested through flags and we actually are 9805 * in a multirouting case. 9806 */ 9807 if ((flags & RTF_MULTIRT) && (copy_mp != NULL)) { 9808 boolean_t need_resolve = 9809 ire_multirt_need_resolve(ipha_dst, 9810 MBLK_GETLABEL(copy_mp), ipst); 9811 if (!need_resolve) { 9812 MULTIRT_DEBUG_UNTAG(copy_mp); 9813 freemsg(copy_mp); 9814 copy_mp = NULL; 9815 } else { 9816 /* 9817 * ipif_lookup_group() calls 9818 * ire_lookup_multi() that uses 9819 * ire_ftable_lookup() to find 9820 * an IRE_INTERFACE for the group. 9821 * In the multirt case, 9822 * ire_lookup_multi() then invokes 9823 * ire_multirt_lookup() to find 9824 * the next resolvable ire. 9825 * As a result, we obtain an new 9826 * interface, derived from the 9827 * next ire. 9828 */ 9829 ipif_refrele(ipif); 9830 ipif = ipif_lookup_group(ipha_dst, 9831 zoneid, ipst); 9832 if (ipif != NULL) { 9833 mp = copy_mp; 9834 copy_mp = NULL; 9835 multirt_resolve_next = B_TRUE; 9836 continue; 9837 } else { 9838 freemsg(copy_mp); 9839 } 9840 } 9841 } 9842 if (ipif != NULL) 9843 ipif_refrele(ipif); 9844 ill_refrele(dst_ill); 9845 ipif_refrele(src_ipif); 9846 return; 9847 default: 9848 break; 9849 } 9850 } while (multirt_resolve_next); 9851 9852 err_ret: 9853 ip2dbg(("ip_newroute_ipif: dropped\n")); 9854 if (fire != NULL) 9855 ire_refrele(fire); 9856 ipif_refrele(ipif); 9857 /* Did this packet originate externally? */ 9858 if (dst_ill != NULL) 9859 ill_refrele(dst_ill); 9860 if (src_ipif != NULL) 9861 ipif_refrele(src_ipif); 9862 if (mp->b_prev || mp->b_next) { 9863 mp->b_next = NULL; 9864 mp->b_prev = NULL; 9865 } else { 9866 /* 9867 * Since ip_wput() isn't close to finished, we fill 9868 * in enough of the header for credible error reporting. 9869 */ 9870 if (ip_hdr_complete((ipha_t *)mp->b_rptr, zoneid, ipst)) { 9871 /* Failed */ 9872 freemsg(first_mp); 9873 if (ire != NULL) 9874 ire_refrele(ire); 9875 return; 9876 } 9877 } 9878 /* 9879 * At this point we will have ire only if RTF_BLACKHOLE 9880 * or RTF_REJECT flags are set on the IRE. It will not 9881 * generate ICMP_HOST_UNREACHABLE if RTF_BLACKHOLE is set. 9882 */ 9883 if (ire != NULL) { 9884 if (ire->ire_flags & RTF_BLACKHOLE) { 9885 ire_refrele(ire); 9886 freemsg(first_mp); 9887 return; 9888 } 9889 ire_refrele(ire); 9890 } 9891 icmp_unreachable(q, first_mp, ICMP_HOST_UNREACHABLE, zoneid, ipst); 9892 } 9893 9894 /* Name/Value Table Lookup Routine */ 9895 char * 9896 ip_nv_lookup(nv_t *nv, int value) 9897 { 9898 if (!nv) 9899 return (NULL); 9900 for (; nv->nv_name; nv++) { 9901 if (nv->nv_value == value) 9902 return (nv->nv_name); 9903 } 9904 return ("unknown"); 9905 } 9906 9907 /* 9908 * This is a module open, i.e. this is a control stream for access 9909 * to a DLPI device. We allocate an ill_t as the instance data in 9910 * this case. 9911 */ 9912 int 9913 ip_modopen(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *credp) 9914 { 9915 ill_t *ill; 9916 int err; 9917 zoneid_t zoneid; 9918 netstack_t *ns; 9919 ip_stack_t *ipst; 9920 9921 /* 9922 * Prevent unprivileged processes from pushing IP so that 9923 * they can't send raw IP. 9924 */ 9925 if (secpolicy_net_rawaccess(credp) != 0) 9926 return (EPERM); 9927 9928 ns = netstack_find_by_cred(credp); 9929 ASSERT(ns != NULL); 9930 ipst = ns->netstack_ip; 9931 ASSERT(ipst != NULL); 9932 9933 /* 9934 * For exclusive stacks we set the zoneid to zero 9935 * to make IP operate as if in the global zone. 9936 */ 9937 if (ipst->ips_netstack->netstack_stackid != GLOBAL_NETSTACKID) 9938 zoneid = GLOBAL_ZONEID; 9939 else 9940 zoneid = crgetzoneid(credp); 9941 9942 ill = (ill_t *)mi_open_alloc_sleep(sizeof (ill_t)); 9943 q->q_ptr = WR(q)->q_ptr = ill; 9944 ill->ill_ipst = ipst; 9945 ill->ill_zoneid = zoneid; 9946 9947 /* 9948 * ill_init initializes the ill fields and then sends down 9949 * down a DL_INFO_REQ after calling qprocson. 9950 */ 9951 err = ill_init(q, ill); 9952 if (err != 0) { 9953 mi_free(ill); 9954 netstack_rele(ipst->ips_netstack); 9955 q->q_ptr = NULL; 9956 WR(q)->q_ptr = NULL; 9957 return (err); 9958 } 9959 9960 /* ill_init initializes the ipsq marking this thread as writer */ 9961 ipsq_exit(ill->ill_phyint->phyint_ipsq, B_TRUE, B_TRUE); 9962 /* Wait for the DL_INFO_ACK */ 9963 mutex_enter(&ill->ill_lock); 9964 while (ill->ill_state_flags & ILL_LL_SUBNET_PENDING) { 9965 /* 9966 * Return value of 0 indicates a pending signal. 9967 */ 9968 err = cv_wait_sig(&ill->ill_cv, &ill->ill_lock); 9969 if (err == 0) { 9970 mutex_exit(&ill->ill_lock); 9971 (void) ip_close(q, 0); 9972 return (EINTR); 9973 } 9974 } 9975 mutex_exit(&ill->ill_lock); 9976 9977 /* 9978 * ip_rput_other could have set an error in ill_error on 9979 * receipt of M_ERROR. 9980 */ 9981 9982 err = ill->ill_error; 9983 if (err != 0) { 9984 (void) ip_close(q, 0); 9985 return (err); 9986 } 9987 9988 ill->ill_credp = credp; 9989 crhold(credp); 9990 9991 mutex_enter(&ipst->ips_ip_mi_lock); 9992 err = mi_open_link(&ipst->ips_ip_g_head, (IDP)ill, devp, flag, sflag, 9993 credp); 9994 mutex_exit(&ipst->ips_ip_mi_lock); 9995 if (err) { 9996 (void) ip_close(q, 0); 9997 return (err); 9998 } 9999 return (0); 10000 } 10001 10002 /* IP open routine. */ 10003 int 10004 ip_open(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *credp) 10005 { 10006 conn_t *connp; 10007 major_t maj; 10008 zoneid_t zoneid; 10009 netstack_t *ns; 10010 ip_stack_t *ipst; 10011 10012 TRACE_1(TR_FAC_IP, TR_IP_OPEN, "ip_open: q %p", q); 10013 10014 /* Allow reopen. */ 10015 if (q->q_ptr != NULL) 10016 return (0); 10017 10018 if (sflag & MODOPEN) { 10019 /* This is a module open */ 10020 return (ip_modopen(q, devp, flag, sflag, credp)); 10021 } 10022 10023 ns = netstack_find_by_cred(credp); 10024 ASSERT(ns != NULL); 10025 ipst = ns->netstack_ip; 10026 ASSERT(ipst != NULL); 10027 10028 /* 10029 * For exclusive stacks we set the zoneid to zero 10030 * to make IP operate as if in the global zone. 10031 */ 10032 if (ipst->ips_netstack->netstack_stackid != GLOBAL_NETSTACKID) 10033 zoneid = GLOBAL_ZONEID; 10034 else 10035 zoneid = crgetzoneid(credp); 10036 10037 /* 10038 * We are opening as a device. This is an IP client stream, and we 10039 * allocate an conn_t as the instance data. 10040 */ 10041 connp = ipcl_conn_create(IPCL_IPCCONN, KM_SLEEP, ipst->ips_netstack); 10042 10043 /* 10044 * ipcl_conn_create did a netstack_hold. Undo the hold that was 10045 * done by netstack_find_by_cred() 10046 */ 10047 netstack_rele(ipst->ips_netstack); 10048 10049 connp->conn_zoneid = zoneid; 10050 10051 connp->conn_upq = q; 10052 q->q_ptr = WR(q)->q_ptr = connp; 10053 10054 if (flag & SO_SOCKSTR) 10055 connp->conn_flags |= IPCL_SOCKET; 10056 10057 /* Minor tells us which /dev entry was opened */ 10058 if (geteminor(*devp) == IPV6_MINOR) { 10059 connp->conn_flags |= IPCL_ISV6; 10060 connp->conn_af_isv6 = B_TRUE; 10061 ip_setqinfo(q, geteminor(*devp), B_FALSE, ipst); 10062 connp->conn_src_preferences = IPV6_PREFER_SRC_DEFAULT; 10063 } else { 10064 connp->conn_af_isv6 = B_FALSE; 10065 connp->conn_pkt_isv6 = B_FALSE; 10066 } 10067 10068 if ((connp->conn_dev = inet_minor_alloc(ip_minor_arena)) == 0) { 10069 /* CONN_DEC_REF takes care of netstack_rele() */ 10070 q->q_ptr = WR(q)->q_ptr = NULL; 10071 CONN_DEC_REF(connp); 10072 return (EBUSY); 10073 } 10074 10075 maj = getemajor(*devp); 10076 *devp = makedevice(maj, (minor_t)connp->conn_dev); 10077 10078 /* 10079 * connp->conn_cred is crfree()ed in ipcl_conn_destroy() 10080 */ 10081 connp->conn_cred = credp; 10082 crhold(connp->conn_cred); 10083 10084 /* 10085 * If the caller has the process-wide flag set, then default to MAC 10086 * exempt mode. This allows read-down to unlabeled hosts. 10087 */ 10088 if (getpflags(NET_MAC_AWARE, credp) != 0) 10089 connp->conn_mac_exempt = B_TRUE; 10090 10091 /* 10092 * This should only happen for ndd, netstat, raw socket or other SCTP 10093 * administrative ops. In these cases, we just need a normal conn_t 10094 * with ulp set to IPPROTO_SCTP. All other ops are trapped and 10095 * an error will be returned. 10096 */ 10097 if (maj != SCTP_MAJ && maj != SCTP6_MAJ) { 10098 connp->conn_rq = q; 10099 connp->conn_wq = WR(q); 10100 } else { 10101 connp->conn_ulp = IPPROTO_SCTP; 10102 connp->conn_rq = connp->conn_wq = NULL; 10103 } 10104 /* Non-zero default values */ 10105 connp->conn_multicast_loop = IP_DEFAULT_MULTICAST_LOOP; 10106 10107 /* 10108 * Make the conn globally visible to walkers 10109 */ 10110 mutex_enter(&connp->conn_lock); 10111 connp->conn_state_flags &= ~CONN_INCIPIENT; 10112 mutex_exit(&connp->conn_lock); 10113 ASSERT(connp->conn_ref == 1); 10114 10115 qprocson(q); 10116 10117 return (0); 10118 } 10119 10120 /* 10121 * Change q_qinfo based on the value of isv6. 10122 * This can not called on an ill queue. 10123 * Note that there is no race since either q_qinfo works for conn queues - it 10124 * is just an optimization to enter the best wput routine directly. 10125 */ 10126 void 10127 ip_setqinfo(queue_t *q, minor_t minor, boolean_t bump_mib, ip_stack_t *ipst) 10128 { 10129 ASSERT(q->q_flag & QREADR); 10130 ASSERT(WR(q)->q_next == NULL); 10131 ASSERT(q->q_ptr != NULL); 10132 10133 if (minor == IPV6_MINOR) { 10134 if (bump_mib) { 10135 BUMP_MIB(&ipst->ips_ip6_mib, 10136 ipIfStatsOutSwitchIPVersion); 10137 } 10138 q->q_qinfo = &rinit_ipv6; 10139 WR(q)->q_qinfo = &winit_ipv6; 10140 (Q_TO_CONN(q))->conn_pkt_isv6 = B_TRUE; 10141 } else { 10142 if (bump_mib) { 10143 BUMP_MIB(&ipst->ips_ip_mib, 10144 ipIfStatsOutSwitchIPVersion); 10145 } 10146 q->q_qinfo = &iprinit; 10147 WR(q)->q_qinfo = &ipwinit; 10148 (Q_TO_CONN(q))->conn_pkt_isv6 = B_FALSE; 10149 } 10150 10151 } 10152 10153 /* 10154 * See if IPsec needs loading because of the options in mp. 10155 */ 10156 static boolean_t 10157 ipsec_opt_present(mblk_t *mp) 10158 { 10159 uint8_t *optcp, *next_optcp, *opt_endcp; 10160 struct opthdr *opt; 10161 struct T_opthdr *topt; 10162 int opthdr_len; 10163 t_uscalar_t optname, optlevel; 10164 struct T_optmgmt_req *tor = (struct T_optmgmt_req *)mp->b_rptr; 10165 ipsec_req_t *ipsr; 10166 10167 /* 10168 * Walk through the mess, and find IP_SEC_OPT. If it's there, 10169 * return TRUE. 10170 */ 10171 10172 optcp = mi_offset_param(mp, tor->OPT_offset, tor->OPT_length); 10173 opt_endcp = optcp + tor->OPT_length; 10174 if (tor->PRIM_type == T_OPTMGMT_REQ) { 10175 opthdr_len = sizeof (struct T_opthdr); 10176 } else { /* O_OPTMGMT_REQ */ 10177 ASSERT(tor->PRIM_type == T_SVR4_OPTMGMT_REQ); 10178 opthdr_len = sizeof (struct opthdr); 10179 } 10180 for (; optcp < opt_endcp; optcp = next_optcp) { 10181 if (optcp + opthdr_len > opt_endcp) 10182 return (B_FALSE); /* Not enough option header. */ 10183 if (tor->PRIM_type == T_OPTMGMT_REQ) { 10184 topt = (struct T_opthdr *)optcp; 10185 optlevel = topt->level; 10186 optname = topt->name; 10187 next_optcp = optcp + _TPI_ALIGN_TOPT(topt->len); 10188 } else { 10189 opt = (struct opthdr *)optcp; 10190 optlevel = opt->level; 10191 optname = opt->name; 10192 next_optcp = optcp + opthdr_len + 10193 _TPI_ALIGN_OPT(opt->len); 10194 } 10195 if ((next_optcp < optcp) || /* wraparound pointer space */ 10196 ((next_optcp >= opt_endcp) && /* last option bad len */ 10197 ((next_optcp - opt_endcp) >= __TPI_ALIGN_SIZE))) 10198 return (B_FALSE); /* bad option buffer */ 10199 if ((optlevel == IPPROTO_IP && optname == IP_SEC_OPT) || 10200 (optlevel == IPPROTO_IPV6 && optname == IPV6_SEC_OPT)) { 10201 /* 10202 * Check to see if it's an all-bypass or all-zeroes 10203 * IPsec request. Don't bother loading IPsec if 10204 * the socket doesn't want to use it. (A good example 10205 * is a bypass request.) 10206 * 10207 * Basically, if any of the non-NEVER bits are set, 10208 * load IPsec. 10209 */ 10210 ipsr = (ipsec_req_t *)(optcp + opthdr_len); 10211 if ((ipsr->ipsr_ah_req & ~IPSEC_PREF_NEVER) != 0 || 10212 (ipsr->ipsr_esp_req & ~IPSEC_PREF_NEVER) != 0 || 10213 (ipsr->ipsr_self_encap_req & ~IPSEC_PREF_NEVER) 10214 != 0) 10215 return (B_TRUE); 10216 } 10217 } 10218 return (B_FALSE); 10219 } 10220 10221 /* 10222 * If conn is is waiting for ipsec to finish loading, kick it. 10223 */ 10224 /* ARGSUSED */ 10225 static void 10226 conn_restart_ipsec_waiter(conn_t *connp, void *arg) 10227 { 10228 t_scalar_t optreq_prim; 10229 mblk_t *mp; 10230 cred_t *cr; 10231 int err = 0; 10232 10233 /* 10234 * This function is called, after ipsec loading is complete. 10235 * Since IP checks exclusively and atomically (i.e it prevents 10236 * ipsec load from completing until ip_optcom_req completes) 10237 * whether ipsec load is complete, there cannot be a race with IP 10238 * trying to set the CONN_IPSEC_LOAD_WAIT flag on any conn now. 10239 */ 10240 mutex_enter(&connp->conn_lock); 10241 if (connp->conn_state_flags & CONN_IPSEC_LOAD_WAIT) { 10242 ASSERT(connp->conn_ipsec_opt_mp != NULL); 10243 mp = connp->conn_ipsec_opt_mp; 10244 connp->conn_ipsec_opt_mp = NULL; 10245 connp->conn_state_flags &= ~CONN_IPSEC_LOAD_WAIT; 10246 cr = DB_CREDDEF(mp, GET_QUEUE_CRED(CONNP_TO_WQ(connp))); 10247 mutex_exit(&connp->conn_lock); 10248 10249 ASSERT(DB_TYPE(mp) == M_PROTO || DB_TYPE(mp) == M_PCPROTO); 10250 10251 optreq_prim = ((union T_primitives *)mp->b_rptr)->type; 10252 if (optreq_prim == T_OPTMGMT_REQ) { 10253 err = tpi_optcom_req(CONNP_TO_WQ(connp), mp, cr, 10254 &ip_opt_obj); 10255 } else { 10256 ASSERT(optreq_prim == T_SVR4_OPTMGMT_REQ); 10257 err = svr4_optcom_req(CONNP_TO_WQ(connp), mp, cr, 10258 &ip_opt_obj); 10259 } 10260 if (err != EINPROGRESS) 10261 CONN_OPER_PENDING_DONE(connp); 10262 return; 10263 } 10264 mutex_exit(&connp->conn_lock); 10265 } 10266 10267 /* 10268 * Called from the ipsec_loader thread, outside any perimeter, to tell 10269 * ip qenable any of the queues waiting for the ipsec loader to 10270 * complete. 10271 */ 10272 void 10273 ip_ipsec_load_complete(ipsec_stack_t *ipss) 10274 { 10275 netstack_t *ns = ipss->ipsec_netstack; 10276 10277 ipcl_walk(conn_restart_ipsec_waiter, NULL, ns->netstack_ip); 10278 } 10279 10280 /* 10281 * Can't be used. Need to call svr4* -> optset directly. the leaf routine 10282 * determines the grp on which it has to become exclusive, queues the mp 10283 * and sq draining restarts the optmgmt 10284 */ 10285 static boolean_t 10286 ip_check_for_ipsec_opt(queue_t *q, mblk_t *mp) 10287 { 10288 conn_t *connp = Q_TO_CONN(q); 10289 ipsec_stack_t *ipss = connp->conn_netstack->netstack_ipsec; 10290 10291 /* 10292 * Take IPsec requests and treat them special. 10293 */ 10294 if (ipsec_opt_present(mp)) { 10295 /* First check if IPsec is loaded. */ 10296 mutex_enter(&ipss->ipsec_loader_lock); 10297 if (ipss->ipsec_loader_state != IPSEC_LOADER_WAIT) { 10298 mutex_exit(&ipss->ipsec_loader_lock); 10299 return (B_FALSE); 10300 } 10301 mutex_enter(&connp->conn_lock); 10302 connp->conn_state_flags |= CONN_IPSEC_LOAD_WAIT; 10303 10304 ASSERT(connp->conn_ipsec_opt_mp == NULL); 10305 connp->conn_ipsec_opt_mp = mp; 10306 mutex_exit(&connp->conn_lock); 10307 mutex_exit(&ipss->ipsec_loader_lock); 10308 10309 ipsec_loader_loadnow(ipss); 10310 return (B_TRUE); 10311 } 10312 return (B_FALSE); 10313 } 10314 10315 /* 10316 * Set IPsec policy from an ipsec_req_t. If the req is not "zero" and valid, 10317 * all of them are copied to the conn_t. If the req is "zero", the policy is 10318 * zeroed out. A "zero" policy has zero ipsr_{ah,req,self_encap}_req 10319 * fields. 10320 * We keep only the latest setting of the policy and thus policy setting 10321 * is not incremental/cumulative. 10322 * 10323 * Requests to set policies with multiple alternative actions will 10324 * go through a different API. 10325 */ 10326 int 10327 ipsec_set_req(cred_t *cr, conn_t *connp, ipsec_req_t *req) 10328 { 10329 uint_t ah_req = 0; 10330 uint_t esp_req = 0; 10331 uint_t se_req = 0; 10332 ipsec_selkey_t sel; 10333 ipsec_act_t *actp = NULL; 10334 uint_t nact; 10335 ipsec_policy_t *pin4 = NULL, *pout4 = NULL; 10336 ipsec_policy_t *pin6 = NULL, *pout6 = NULL; 10337 ipsec_policy_root_t *pr; 10338 ipsec_policy_head_t *ph; 10339 int fam; 10340 boolean_t is_pol_reset; 10341 int error = 0; 10342 netstack_t *ns = connp->conn_netstack; 10343 ip_stack_t *ipst = ns->netstack_ip; 10344 ipsec_stack_t *ipss = ns->netstack_ipsec; 10345 10346 #define REQ_MASK (IPSEC_PREF_REQUIRED|IPSEC_PREF_NEVER) 10347 10348 /* 10349 * The IP_SEC_OPT option does not allow variable length parameters, 10350 * hence a request cannot be NULL. 10351 */ 10352 if (req == NULL) 10353 return (EINVAL); 10354 10355 ah_req = req->ipsr_ah_req; 10356 esp_req = req->ipsr_esp_req; 10357 se_req = req->ipsr_self_encap_req; 10358 10359 /* 10360 * Are we dealing with a request to reset the policy (i.e. 10361 * zero requests). 10362 */ 10363 is_pol_reset = ((ah_req & REQ_MASK) == 0 && 10364 (esp_req & REQ_MASK) == 0 && 10365 (se_req & REQ_MASK) == 0); 10366 10367 if (!is_pol_reset) { 10368 /* 10369 * If we couldn't load IPsec, fail with "protocol 10370 * not supported". 10371 * IPsec may not have been loaded for a request with zero 10372 * policies, so we don't fail in this case. 10373 */ 10374 mutex_enter(&ipss->ipsec_loader_lock); 10375 if (ipss->ipsec_loader_state != IPSEC_LOADER_SUCCEEDED) { 10376 mutex_exit(&ipss->ipsec_loader_lock); 10377 return (EPROTONOSUPPORT); 10378 } 10379 mutex_exit(&ipss->ipsec_loader_lock); 10380 10381 /* 10382 * Test for valid requests. Invalid algorithms 10383 * need to be tested by IPSEC code because new 10384 * algorithms can be added dynamically. 10385 */ 10386 if ((ah_req & ~(REQ_MASK|IPSEC_PREF_UNIQUE)) != 0 || 10387 (esp_req & ~(REQ_MASK|IPSEC_PREF_UNIQUE)) != 0 || 10388 (se_req & ~(REQ_MASK|IPSEC_PREF_UNIQUE)) != 0) { 10389 return (EINVAL); 10390 } 10391 10392 /* 10393 * Only privileged users can issue these 10394 * requests. 10395 */ 10396 if (((ah_req & IPSEC_PREF_NEVER) || 10397 (esp_req & IPSEC_PREF_NEVER) || 10398 (se_req & IPSEC_PREF_NEVER)) && 10399 secpolicy_ip_config(cr, B_FALSE) != 0) { 10400 return (EPERM); 10401 } 10402 10403 /* 10404 * The IPSEC_PREF_REQUIRED and IPSEC_PREF_NEVER 10405 * are mutually exclusive. 10406 */ 10407 if (((ah_req & REQ_MASK) == REQ_MASK) || 10408 ((esp_req & REQ_MASK) == REQ_MASK) || 10409 ((se_req & REQ_MASK) == REQ_MASK)) { 10410 /* Both of them are set */ 10411 return (EINVAL); 10412 } 10413 } 10414 10415 mutex_enter(&connp->conn_lock); 10416 10417 /* 10418 * If we have already cached policies in ip_bind_connected*(), don't 10419 * let them change now. We cache policies for connections 10420 * whose src,dst [addr, port] is known. 10421 */ 10422 if (connp->conn_policy_cached) { 10423 mutex_exit(&connp->conn_lock); 10424 return (EINVAL); 10425 } 10426 10427 /* 10428 * We have a zero policies, reset the connection policy if already 10429 * set. This will cause the connection to inherit the 10430 * global policy, if any. 10431 */ 10432 if (is_pol_reset) { 10433 if (connp->conn_policy != NULL) { 10434 IPPH_REFRELE(connp->conn_policy, ipst->ips_netstack); 10435 connp->conn_policy = NULL; 10436 } 10437 connp->conn_flags &= ~IPCL_CHECK_POLICY; 10438 connp->conn_in_enforce_policy = B_FALSE; 10439 connp->conn_out_enforce_policy = B_FALSE; 10440 mutex_exit(&connp->conn_lock); 10441 return (0); 10442 } 10443 10444 ph = connp->conn_policy = ipsec_polhead_split(connp->conn_policy, 10445 ipst->ips_netstack); 10446 if (ph == NULL) 10447 goto enomem; 10448 10449 ipsec_actvec_from_req(req, &actp, &nact, ipst->ips_netstack); 10450 if (actp == NULL) 10451 goto enomem; 10452 10453 /* 10454 * Always allocate IPv4 policy entries, since they can also 10455 * apply to ipv6 sockets being used in ipv4-compat mode. 10456 */ 10457 bzero(&sel, sizeof (sel)); 10458 sel.ipsl_valid = IPSL_IPV4; 10459 10460 pin4 = ipsec_policy_create(&sel, actp, nact, IPSEC_PRIO_SOCKET, NULL, 10461 ipst->ips_netstack); 10462 if (pin4 == NULL) 10463 goto enomem; 10464 10465 pout4 = ipsec_policy_create(&sel, actp, nact, IPSEC_PRIO_SOCKET, NULL, 10466 ipst->ips_netstack); 10467 if (pout4 == NULL) 10468 goto enomem; 10469 10470 if (connp->conn_pkt_isv6) { 10471 /* 10472 * We're looking at a v6 socket, also allocate the 10473 * v6-specific entries... 10474 */ 10475 sel.ipsl_valid = IPSL_IPV6; 10476 pin6 = ipsec_policy_create(&sel, actp, nact, 10477 IPSEC_PRIO_SOCKET, NULL, ipst->ips_netstack); 10478 if (pin6 == NULL) 10479 goto enomem; 10480 10481 pout6 = ipsec_policy_create(&sel, actp, nact, 10482 IPSEC_PRIO_SOCKET, NULL, ipst->ips_netstack); 10483 if (pout6 == NULL) 10484 goto enomem; 10485 10486 /* 10487 * .. and file them away in the right place. 10488 */ 10489 fam = IPSEC_AF_V6; 10490 pr = &ph->iph_root[IPSEC_TYPE_INBOUND]; 10491 HASHLIST_INSERT(pin6, ipsp_hash, pr->ipr_nonhash[fam]); 10492 ipsec_insert_always(&ph->iph_rulebyid, pin6); 10493 pr = &ph->iph_root[IPSEC_TYPE_OUTBOUND]; 10494 HASHLIST_INSERT(pout6, ipsp_hash, pr->ipr_nonhash[fam]); 10495 ipsec_insert_always(&ph->iph_rulebyid, pout6); 10496 } 10497 10498 ipsec_actvec_free(actp, nact); 10499 10500 /* 10501 * File the v4 policies. 10502 */ 10503 fam = IPSEC_AF_V4; 10504 pr = &ph->iph_root[IPSEC_TYPE_INBOUND]; 10505 HASHLIST_INSERT(pin4, ipsp_hash, pr->ipr_nonhash[fam]); 10506 ipsec_insert_always(&ph->iph_rulebyid, pin4); 10507 10508 pr = &ph->iph_root[IPSEC_TYPE_OUTBOUND]; 10509 HASHLIST_INSERT(pout4, ipsp_hash, pr->ipr_nonhash[fam]); 10510 ipsec_insert_always(&ph->iph_rulebyid, pout4); 10511 10512 /* 10513 * If the requests need security, set enforce_policy. 10514 * If the requests are IPSEC_PREF_NEVER, one should 10515 * still set conn_out_enforce_policy so that an ipsec_out 10516 * gets attached in ip_wput. This is needed so that 10517 * for connections that we don't cache policy in ip_bind, 10518 * if global policy matches in ip_wput_attach_policy, we 10519 * don't wrongly inherit global policy. Similarly, we need 10520 * to set conn_in_enforce_policy also so that we don't verify 10521 * policy wrongly. 10522 */ 10523 if ((ah_req & REQ_MASK) != 0 || 10524 (esp_req & REQ_MASK) != 0 || 10525 (se_req & REQ_MASK) != 0) { 10526 connp->conn_in_enforce_policy = B_TRUE; 10527 connp->conn_out_enforce_policy = B_TRUE; 10528 connp->conn_flags |= IPCL_CHECK_POLICY; 10529 } 10530 10531 mutex_exit(&connp->conn_lock); 10532 return (error); 10533 #undef REQ_MASK 10534 10535 /* 10536 * Common memory-allocation-failure exit path. 10537 */ 10538 enomem: 10539 mutex_exit(&connp->conn_lock); 10540 if (actp != NULL) 10541 ipsec_actvec_free(actp, nact); 10542 if (pin4 != NULL) 10543 IPPOL_REFRELE(pin4, ipst->ips_netstack); 10544 if (pout4 != NULL) 10545 IPPOL_REFRELE(pout4, ipst->ips_netstack); 10546 if (pin6 != NULL) 10547 IPPOL_REFRELE(pin6, ipst->ips_netstack); 10548 if (pout6 != NULL) 10549 IPPOL_REFRELE(pout6, ipst->ips_netstack); 10550 return (ENOMEM); 10551 } 10552 10553 /* 10554 * Only for options that pass in an IP addr. Currently only V4 options 10555 * pass in an ipif. V6 options always pass an ifindex specifying the ill. 10556 * So this function assumes level is IPPROTO_IP 10557 */ 10558 int 10559 ip_opt_set_ipif(conn_t *connp, ipaddr_t addr, boolean_t checkonly, int option, 10560 mblk_t *first_mp) 10561 { 10562 ipif_t *ipif = NULL; 10563 int error; 10564 ill_t *ill; 10565 int zoneid; 10566 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 10567 10568 ip2dbg(("ip_opt_set_ipif: ipaddr %X\n", addr)); 10569 10570 if (addr != INADDR_ANY || checkonly) { 10571 ASSERT(connp != NULL); 10572 zoneid = IPCL_ZONEID(connp); 10573 if (option == IP_NEXTHOP) { 10574 ipif = ipif_lookup_onlink_addr(addr, 10575 connp->conn_zoneid, ipst); 10576 } else { 10577 ipif = ipif_lookup_addr(addr, NULL, zoneid, 10578 CONNP_TO_WQ(connp), first_mp, ip_restart_optmgmt, 10579 &error, ipst); 10580 } 10581 if (ipif == NULL) { 10582 if (error == EINPROGRESS) 10583 return (error); 10584 else if ((option == IP_MULTICAST_IF) || 10585 (option == IP_NEXTHOP)) 10586 return (EHOSTUNREACH); 10587 else 10588 return (EINVAL); 10589 } else if (checkonly) { 10590 if (option == IP_MULTICAST_IF) { 10591 ill = ipif->ipif_ill; 10592 /* not supported by the virtual network iface */ 10593 if (IS_VNI(ill)) { 10594 ipif_refrele(ipif); 10595 return (EINVAL); 10596 } 10597 } 10598 ipif_refrele(ipif); 10599 return (0); 10600 } 10601 ill = ipif->ipif_ill; 10602 mutex_enter(&connp->conn_lock); 10603 mutex_enter(&ill->ill_lock); 10604 if ((ill->ill_state_flags & ILL_CONDEMNED) || 10605 (ipif->ipif_state_flags & IPIF_CONDEMNED)) { 10606 mutex_exit(&ill->ill_lock); 10607 mutex_exit(&connp->conn_lock); 10608 ipif_refrele(ipif); 10609 return (option == IP_MULTICAST_IF ? 10610 EHOSTUNREACH : EINVAL); 10611 } 10612 } else { 10613 mutex_enter(&connp->conn_lock); 10614 } 10615 10616 /* None of the options below are supported on the VNI */ 10617 if (ipif != NULL && IS_VNI(ipif->ipif_ill)) { 10618 mutex_exit(&ill->ill_lock); 10619 mutex_exit(&connp->conn_lock); 10620 ipif_refrele(ipif); 10621 return (EINVAL); 10622 } 10623 10624 switch (option) { 10625 case IP_DONTFAILOVER_IF: 10626 /* 10627 * This option is used by in.mpathd to ensure 10628 * that IPMP probe packets only go out on the 10629 * test interfaces. in.mpathd sets this option 10630 * on the non-failover interfaces. 10631 * For backward compatibility, this option 10632 * implicitly sets IP_MULTICAST_IF, as used 10633 * be done in bind(), so that ip_wput gets 10634 * this ipif to send mcast packets. 10635 */ 10636 if (ipif != NULL) { 10637 ASSERT(addr != INADDR_ANY); 10638 connp->conn_nofailover_ill = ipif->ipif_ill; 10639 connp->conn_multicast_ipif = ipif; 10640 } else { 10641 ASSERT(addr == INADDR_ANY); 10642 connp->conn_nofailover_ill = NULL; 10643 connp->conn_multicast_ipif = NULL; 10644 } 10645 break; 10646 10647 case IP_MULTICAST_IF: 10648 connp->conn_multicast_ipif = ipif; 10649 break; 10650 case IP_NEXTHOP: 10651 connp->conn_nexthop_v4 = addr; 10652 connp->conn_nexthop_set = B_TRUE; 10653 break; 10654 } 10655 10656 if (ipif != NULL) { 10657 mutex_exit(&ill->ill_lock); 10658 mutex_exit(&connp->conn_lock); 10659 ipif_refrele(ipif); 10660 return (0); 10661 } 10662 mutex_exit(&connp->conn_lock); 10663 /* We succeded in cleared the option */ 10664 return (0); 10665 } 10666 10667 /* 10668 * For options that pass in an ifindex specifying the ill. V6 options always 10669 * pass in an ill. Some v4 options also pass in ifindex specifying the ill. 10670 */ 10671 int 10672 ip_opt_set_ill(conn_t *connp, int ifindex, boolean_t isv6, boolean_t checkonly, 10673 int level, int option, mblk_t *first_mp) 10674 { 10675 ill_t *ill = NULL; 10676 int error = 0; 10677 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 10678 10679 ip2dbg(("ip_opt_set_ill: ifindex %d\n", ifindex)); 10680 if (ifindex != 0) { 10681 ASSERT(connp != NULL); 10682 ill = ill_lookup_on_ifindex(ifindex, isv6, CONNP_TO_WQ(connp), 10683 first_mp, ip_restart_optmgmt, &error, ipst); 10684 if (ill != NULL) { 10685 if (checkonly) { 10686 /* not supported by the virtual network iface */ 10687 if (IS_VNI(ill)) { 10688 ill_refrele(ill); 10689 return (EINVAL); 10690 } 10691 ill_refrele(ill); 10692 return (0); 10693 } 10694 if (!ipif_lookup_zoneid_group(ill, connp->conn_zoneid, 10695 0, NULL)) { 10696 ill_refrele(ill); 10697 ill = NULL; 10698 mutex_enter(&connp->conn_lock); 10699 goto setit; 10700 } 10701 mutex_enter(&connp->conn_lock); 10702 mutex_enter(&ill->ill_lock); 10703 if (ill->ill_state_flags & ILL_CONDEMNED) { 10704 mutex_exit(&ill->ill_lock); 10705 mutex_exit(&connp->conn_lock); 10706 ill_refrele(ill); 10707 ill = NULL; 10708 mutex_enter(&connp->conn_lock); 10709 } 10710 goto setit; 10711 } else if (error == EINPROGRESS) { 10712 return (error); 10713 } else { 10714 error = 0; 10715 } 10716 } 10717 mutex_enter(&connp->conn_lock); 10718 setit: 10719 ASSERT((level == IPPROTO_IP || level == IPPROTO_IPV6)); 10720 10721 /* 10722 * The options below assume that the ILL (if any) transmits and/or 10723 * receives traffic. Neither of which is true for the virtual network 10724 * interface, so fail setting these on a VNI. 10725 */ 10726 if (IS_VNI(ill)) { 10727 ASSERT(ill != NULL); 10728 mutex_exit(&ill->ill_lock); 10729 mutex_exit(&connp->conn_lock); 10730 ill_refrele(ill); 10731 return (EINVAL); 10732 } 10733 10734 if (level == IPPROTO_IP) { 10735 switch (option) { 10736 case IP_BOUND_IF: 10737 connp->conn_incoming_ill = ill; 10738 connp->conn_outgoing_ill = ill; 10739 connp->conn_orig_bound_ifindex = (ill == NULL) ? 10740 0 : ifindex; 10741 break; 10742 10743 case IP_XMIT_IF: 10744 /* 10745 * Similar to IP_BOUND_IF, but this only 10746 * determines the outgoing interface for 10747 * unicast packets. Also no IRE_CACHE entry 10748 * is added for the destination of the 10749 * outgoing packets. This feature is needed 10750 * for mobile IP. 10751 */ 10752 connp->conn_xmit_if_ill = ill; 10753 connp->conn_orig_xmit_ifindex = (ill == NULL) ? 10754 0 : ifindex; 10755 break; 10756 10757 case IP_MULTICAST_IF: 10758 /* 10759 * This option is an internal special. The socket 10760 * level IP_MULTICAST_IF specifies an 'ipaddr' and 10761 * is handled in ip_opt_set_ipif. IPV6_MULTICAST_IF 10762 * specifies an ifindex and we try first on V6 ill's. 10763 * If we don't find one, we they try using on v4 ill's 10764 * intenally and we come here. 10765 */ 10766 if (!checkonly && ill != NULL) { 10767 ipif_t *ipif; 10768 ipif = ill->ill_ipif; 10769 10770 if (ipif->ipif_state_flags & IPIF_CONDEMNED) { 10771 mutex_exit(&ill->ill_lock); 10772 mutex_exit(&connp->conn_lock); 10773 ill_refrele(ill); 10774 ill = NULL; 10775 mutex_enter(&connp->conn_lock); 10776 } else { 10777 connp->conn_multicast_ipif = ipif; 10778 } 10779 } 10780 break; 10781 } 10782 } else { 10783 switch (option) { 10784 case IPV6_BOUND_IF: 10785 connp->conn_incoming_ill = ill; 10786 connp->conn_outgoing_ill = ill; 10787 connp->conn_orig_bound_ifindex = (ill == NULL) ? 10788 0 : ifindex; 10789 break; 10790 10791 case IPV6_BOUND_PIF: 10792 /* 10793 * Limit all transmit to this ill. 10794 * Unlike IPV6_BOUND_IF, using this option 10795 * prevents load spreading and failover from 10796 * happening when the interface is part of the 10797 * group. That's why we don't need to remember 10798 * the ifindex in orig_bound_ifindex as in 10799 * IPV6_BOUND_IF. 10800 */ 10801 connp->conn_outgoing_pill = ill; 10802 break; 10803 10804 case IPV6_DONTFAILOVER_IF: 10805 /* 10806 * This option is used by in.mpathd to ensure 10807 * that IPMP probe packets only go out on the 10808 * test interfaces. in.mpathd sets this option 10809 * on the non-failover interfaces. 10810 */ 10811 connp->conn_nofailover_ill = ill; 10812 /* 10813 * For backward compatibility, this option 10814 * implicitly sets ip_multicast_ill as used in 10815 * IP_MULTICAST_IF so that ip_wput gets 10816 * this ipif to send mcast packets. 10817 */ 10818 connp->conn_multicast_ill = ill; 10819 connp->conn_orig_multicast_ifindex = (ill == NULL) ? 10820 0 : ifindex; 10821 break; 10822 10823 case IPV6_MULTICAST_IF: 10824 /* 10825 * Set conn_multicast_ill to be the IPv6 ill. 10826 * Set conn_multicast_ipif to be an IPv4 ipif 10827 * for ifindex to make IPv4 mapped addresses 10828 * on PF_INET6 sockets honor IPV6_MULTICAST_IF. 10829 * Even if no IPv6 ill exists for the ifindex 10830 * we need to check for an IPv4 ifindex in order 10831 * for this to work with mapped addresses. In that 10832 * case only set conn_multicast_ipif. 10833 */ 10834 if (!checkonly) { 10835 if (ifindex == 0) { 10836 connp->conn_multicast_ill = NULL; 10837 connp->conn_orig_multicast_ifindex = 0; 10838 connp->conn_multicast_ipif = NULL; 10839 } else if (ill != NULL) { 10840 connp->conn_multicast_ill = ill; 10841 connp->conn_orig_multicast_ifindex = 10842 ifindex; 10843 } 10844 } 10845 break; 10846 } 10847 } 10848 10849 if (ill != NULL) { 10850 mutex_exit(&ill->ill_lock); 10851 mutex_exit(&connp->conn_lock); 10852 ill_refrele(ill); 10853 return (0); 10854 } 10855 mutex_exit(&connp->conn_lock); 10856 /* 10857 * We succeeded in clearing the option (ifindex == 0) or failed to 10858 * locate the ill and could not set the option (ifindex != 0) 10859 */ 10860 return (ifindex == 0 ? 0 : EINVAL); 10861 } 10862 10863 /* This routine sets socket options. */ 10864 /* ARGSUSED */ 10865 int 10866 ip_opt_set(queue_t *q, uint_t optset_context, int level, int name, 10867 uint_t inlen, uchar_t *invalp, uint_t *outlenp, uchar_t *outvalp, 10868 void *dummy, cred_t *cr, mblk_t *first_mp) 10869 { 10870 int *i1 = (int *)invalp; 10871 conn_t *connp = Q_TO_CONN(q); 10872 int error = 0; 10873 boolean_t checkonly; 10874 ire_t *ire; 10875 boolean_t found; 10876 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 10877 10878 switch (optset_context) { 10879 10880 case SETFN_OPTCOM_CHECKONLY: 10881 checkonly = B_TRUE; 10882 /* 10883 * Note: Implies T_CHECK semantics for T_OPTCOM_REQ 10884 * inlen != 0 implies value supplied and 10885 * we have to "pretend" to set it. 10886 * inlen == 0 implies that there is no 10887 * value part in T_CHECK request and just validation 10888 * done elsewhere should be enough, we just return here. 10889 */ 10890 if (inlen == 0) { 10891 *outlenp = 0; 10892 return (0); 10893 } 10894 break; 10895 case SETFN_OPTCOM_NEGOTIATE: 10896 case SETFN_UD_NEGOTIATE: 10897 case SETFN_CONN_NEGOTIATE: 10898 checkonly = B_FALSE; 10899 break; 10900 default: 10901 /* 10902 * We should never get here 10903 */ 10904 *outlenp = 0; 10905 return (EINVAL); 10906 } 10907 10908 ASSERT((optset_context != SETFN_OPTCOM_CHECKONLY) || 10909 (optset_context == SETFN_OPTCOM_CHECKONLY && inlen != 0)); 10910 10911 /* 10912 * For fixed length options, no sanity check 10913 * of passed in length is done. It is assumed *_optcom_req() 10914 * routines do the right thing. 10915 */ 10916 10917 switch (level) { 10918 case SOL_SOCKET: 10919 /* 10920 * conn_lock protects the bitfields, and is used to 10921 * set the fields atomically. 10922 */ 10923 switch (name) { 10924 case SO_BROADCAST: 10925 if (!checkonly) { 10926 /* TODO: use value someplace? */ 10927 mutex_enter(&connp->conn_lock); 10928 connp->conn_broadcast = *i1 ? 1 : 0; 10929 mutex_exit(&connp->conn_lock); 10930 } 10931 break; /* goto sizeof (int) option return */ 10932 case SO_USELOOPBACK: 10933 if (!checkonly) { 10934 /* TODO: use value someplace? */ 10935 mutex_enter(&connp->conn_lock); 10936 connp->conn_loopback = *i1 ? 1 : 0; 10937 mutex_exit(&connp->conn_lock); 10938 } 10939 break; /* goto sizeof (int) option return */ 10940 case SO_DONTROUTE: 10941 if (!checkonly) { 10942 mutex_enter(&connp->conn_lock); 10943 connp->conn_dontroute = *i1 ? 1 : 0; 10944 mutex_exit(&connp->conn_lock); 10945 } 10946 break; /* goto sizeof (int) option return */ 10947 case SO_REUSEADDR: 10948 if (!checkonly) { 10949 mutex_enter(&connp->conn_lock); 10950 connp->conn_reuseaddr = *i1 ? 1 : 0; 10951 mutex_exit(&connp->conn_lock); 10952 } 10953 break; /* goto sizeof (int) option return */ 10954 case SO_PROTOTYPE: 10955 if (!checkonly) { 10956 mutex_enter(&connp->conn_lock); 10957 connp->conn_proto = *i1; 10958 mutex_exit(&connp->conn_lock); 10959 } 10960 break; /* goto sizeof (int) option return */ 10961 case SO_ALLZONES: 10962 if (!checkonly) { 10963 mutex_enter(&connp->conn_lock); 10964 if (IPCL_IS_BOUND(connp)) { 10965 mutex_exit(&connp->conn_lock); 10966 return (EINVAL); 10967 } 10968 connp->conn_allzones = *i1 != 0 ? 1 : 0; 10969 mutex_exit(&connp->conn_lock); 10970 } 10971 break; /* goto sizeof (int) option return */ 10972 case SO_ANON_MLP: 10973 if (!checkonly) { 10974 mutex_enter(&connp->conn_lock); 10975 connp->conn_anon_mlp = *i1 != 0 ? 1 : 0; 10976 mutex_exit(&connp->conn_lock); 10977 } 10978 break; /* goto sizeof (int) option return */ 10979 case SO_MAC_EXEMPT: 10980 if (secpolicy_net_mac_aware(cr) != 0 || 10981 IPCL_IS_BOUND(connp)) 10982 return (EACCES); 10983 if (!checkonly) { 10984 mutex_enter(&connp->conn_lock); 10985 connp->conn_mac_exempt = *i1 != 0 ? 1 : 0; 10986 mutex_exit(&connp->conn_lock); 10987 } 10988 break; /* goto sizeof (int) option return */ 10989 default: 10990 /* 10991 * "soft" error (negative) 10992 * option not handled at this level 10993 * Note: Do not modify *outlenp 10994 */ 10995 return (-EINVAL); 10996 } 10997 break; 10998 case IPPROTO_IP: 10999 switch (name) { 11000 case IP_NEXTHOP: 11001 if (secpolicy_ip_config(cr, B_FALSE) != 0) 11002 return (EPERM); 11003 /* FALLTHRU */ 11004 case IP_MULTICAST_IF: 11005 case IP_DONTFAILOVER_IF: { 11006 ipaddr_t addr = *i1; 11007 11008 error = ip_opt_set_ipif(connp, addr, checkonly, name, 11009 first_mp); 11010 if (error != 0) 11011 return (error); 11012 break; /* goto sizeof (int) option return */ 11013 } 11014 11015 case IP_MULTICAST_TTL: 11016 /* Recorded in transport above IP */ 11017 *outvalp = *invalp; 11018 *outlenp = sizeof (uchar_t); 11019 return (0); 11020 case IP_MULTICAST_LOOP: 11021 if (!checkonly) { 11022 mutex_enter(&connp->conn_lock); 11023 connp->conn_multicast_loop = *invalp ? 1 : 0; 11024 mutex_exit(&connp->conn_lock); 11025 } 11026 *outvalp = *invalp; 11027 *outlenp = sizeof (uchar_t); 11028 return (0); 11029 case IP_ADD_MEMBERSHIP: 11030 case MCAST_JOIN_GROUP: 11031 case IP_DROP_MEMBERSHIP: 11032 case MCAST_LEAVE_GROUP: { 11033 struct ip_mreq *mreqp; 11034 struct group_req *greqp; 11035 ire_t *ire; 11036 boolean_t done = B_FALSE; 11037 ipaddr_t group, ifaddr; 11038 struct sockaddr_in *sin; 11039 uint32_t *ifindexp; 11040 boolean_t mcast_opt = B_TRUE; 11041 mcast_record_t fmode; 11042 int (*optfn)(conn_t *, boolean_t, ipaddr_t, ipaddr_t, 11043 uint_t *, mcast_record_t, ipaddr_t, mblk_t *); 11044 11045 switch (name) { 11046 case IP_ADD_MEMBERSHIP: 11047 mcast_opt = B_FALSE; 11048 /* FALLTHRU */ 11049 case MCAST_JOIN_GROUP: 11050 fmode = MODE_IS_EXCLUDE; 11051 optfn = ip_opt_add_group; 11052 break; 11053 11054 case IP_DROP_MEMBERSHIP: 11055 mcast_opt = B_FALSE; 11056 /* FALLTHRU */ 11057 case MCAST_LEAVE_GROUP: 11058 fmode = MODE_IS_INCLUDE; 11059 optfn = ip_opt_delete_group; 11060 break; 11061 } 11062 11063 if (mcast_opt) { 11064 greqp = (struct group_req *)i1; 11065 sin = (struct sockaddr_in *)&greqp->gr_group; 11066 if (sin->sin_family != AF_INET) { 11067 *outlenp = 0; 11068 return (ENOPROTOOPT); 11069 } 11070 group = (ipaddr_t)sin->sin_addr.s_addr; 11071 ifaddr = INADDR_ANY; 11072 ifindexp = &greqp->gr_interface; 11073 } else { 11074 mreqp = (struct ip_mreq *)i1; 11075 group = (ipaddr_t)mreqp->imr_multiaddr.s_addr; 11076 ifaddr = (ipaddr_t)mreqp->imr_interface.s_addr; 11077 ifindexp = NULL; 11078 } 11079 11080 /* 11081 * In the multirouting case, we need to replicate 11082 * the request on all interfaces that will take part 11083 * in replication. We do so because multirouting is 11084 * reflective, thus we will probably receive multi- 11085 * casts on those interfaces. 11086 * The ip_multirt_apply_membership() succeeds if the 11087 * operation succeeds on at least one interface. 11088 */ 11089 ire = ire_ftable_lookup(group, IP_HOST_MASK, 0, 11090 IRE_HOST, NULL, NULL, ALL_ZONES, 0, NULL, 11091 MATCH_IRE_MASK | MATCH_IRE_TYPE, ipst); 11092 if (ire != NULL) { 11093 if (ire->ire_flags & RTF_MULTIRT) { 11094 error = ip_multirt_apply_membership( 11095 optfn, ire, connp, checkonly, group, 11096 fmode, INADDR_ANY, first_mp); 11097 done = B_TRUE; 11098 } 11099 ire_refrele(ire); 11100 } 11101 if (!done) { 11102 error = optfn(connp, checkonly, group, ifaddr, 11103 ifindexp, fmode, INADDR_ANY, first_mp); 11104 } 11105 if (error) { 11106 /* 11107 * EINPROGRESS is a soft error, needs retry 11108 * so don't make *outlenp zero. 11109 */ 11110 if (error != EINPROGRESS) 11111 *outlenp = 0; 11112 return (error); 11113 } 11114 /* OK return - copy input buffer into output buffer */ 11115 if (invalp != outvalp) { 11116 /* don't trust bcopy for identical src/dst */ 11117 bcopy(invalp, outvalp, inlen); 11118 } 11119 *outlenp = inlen; 11120 return (0); 11121 } 11122 case IP_BLOCK_SOURCE: 11123 case IP_UNBLOCK_SOURCE: 11124 case IP_ADD_SOURCE_MEMBERSHIP: 11125 case IP_DROP_SOURCE_MEMBERSHIP: 11126 case MCAST_BLOCK_SOURCE: 11127 case MCAST_UNBLOCK_SOURCE: 11128 case MCAST_JOIN_SOURCE_GROUP: 11129 case MCAST_LEAVE_SOURCE_GROUP: { 11130 struct ip_mreq_source *imreqp; 11131 struct group_source_req *gsreqp; 11132 in_addr_t grp, src, ifaddr = INADDR_ANY; 11133 uint32_t ifindex = 0; 11134 mcast_record_t fmode; 11135 struct sockaddr_in *sin; 11136 ire_t *ire; 11137 boolean_t mcast_opt = B_TRUE, done = B_FALSE; 11138 int (*optfn)(conn_t *, boolean_t, ipaddr_t, ipaddr_t, 11139 uint_t *, mcast_record_t, ipaddr_t, mblk_t *); 11140 11141 switch (name) { 11142 case IP_BLOCK_SOURCE: 11143 mcast_opt = B_FALSE; 11144 /* FALLTHRU */ 11145 case MCAST_BLOCK_SOURCE: 11146 fmode = MODE_IS_EXCLUDE; 11147 optfn = ip_opt_add_group; 11148 break; 11149 11150 case IP_UNBLOCK_SOURCE: 11151 mcast_opt = B_FALSE; 11152 /* FALLTHRU */ 11153 case MCAST_UNBLOCK_SOURCE: 11154 fmode = MODE_IS_EXCLUDE; 11155 optfn = ip_opt_delete_group; 11156 break; 11157 11158 case IP_ADD_SOURCE_MEMBERSHIP: 11159 mcast_opt = B_FALSE; 11160 /* FALLTHRU */ 11161 case MCAST_JOIN_SOURCE_GROUP: 11162 fmode = MODE_IS_INCLUDE; 11163 optfn = ip_opt_add_group; 11164 break; 11165 11166 case IP_DROP_SOURCE_MEMBERSHIP: 11167 mcast_opt = B_FALSE; 11168 /* FALLTHRU */ 11169 case MCAST_LEAVE_SOURCE_GROUP: 11170 fmode = MODE_IS_INCLUDE; 11171 optfn = ip_opt_delete_group; 11172 break; 11173 } 11174 11175 if (mcast_opt) { 11176 gsreqp = (struct group_source_req *)i1; 11177 if (gsreqp->gsr_group.ss_family != AF_INET) { 11178 *outlenp = 0; 11179 return (ENOPROTOOPT); 11180 } 11181 sin = (struct sockaddr_in *)&gsreqp->gsr_group; 11182 grp = (ipaddr_t)sin->sin_addr.s_addr; 11183 sin = (struct sockaddr_in *)&gsreqp->gsr_source; 11184 src = (ipaddr_t)sin->sin_addr.s_addr; 11185 ifindex = gsreqp->gsr_interface; 11186 } else { 11187 imreqp = (struct ip_mreq_source *)i1; 11188 grp = (ipaddr_t)imreqp->imr_multiaddr.s_addr; 11189 src = (ipaddr_t)imreqp->imr_sourceaddr.s_addr; 11190 ifaddr = (ipaddr_t)imreqp->imr_interface.s_addr; 11191 } 11192 11193 /* 11194 * In the multirouting case, we need to replicate 11195 * the request as noted in the mcast cases above. 11196 */ 11197 ire = ire_ftable_lookup(grp, IP_HOST_MASK, 0, 11198 IRE_HOST, NULL, NULL, ALL_ZONES, 0, NULL, 11199 MATCH_IRE_MASK | MATCH_IRE_TYPE, ipst); 11200 if (ire != NULL) { 11201 if (ire->ire_flags & RTF_MULTIRT) { 11202 error = ip_multirt_apply_membership( 11203 optfn, ire, connp, checkonly, grp, 11204 fmode, src, first_mp); 11205 done = B_TRUE; 11206 } 11207 ire_refrele(ire); 11208 } 11209 if (!done) { 11210 error = optfn(connp, checkonly, grp, ifaddr, 11211 &ifindex, fmode, src, first_mp); 11212 } 11213 if (error != 0) { 11214 /* 11215 * EINPROGRESS is a soft error, needs retry 11216 * so don't make *outlenp zero. 11217 */ 11218 if (error != EINPROGRESS) 11219 *outlenp = 0; 11220 return (error); 11221 } 11222 /* OK return - copy input buffer into output buffer */ 11223 if (invalp != outvalp) { 11224 bcopy(invalp, outvalp, inlen); 11225 } 11226 *outlenp = inlen; 11227 return (0); 11228 } 11229 case IP_SEC_OPT: 11230 error = ipsec_set_req(cr, connp, (ipsec_req_t *)invalp); 11231 if (error != 0) { 11232 *outlenp = 0; 11233 return (error); 11234 } 11235 break; 11236 case IP_HDRINCL: 11237 case IP_OPTIONS: 11238 case T_IP_OPTIONS: 11239 case IP_TOS: 11240 case T_IP_TOS: 11241 case IP_TTL: 11242 case IP_RECVDSTADDR: 11243 case IP_RECVOPTS: 11244 /* OK return - copy input buffer into output buffer */ 11245 if (invalp != outvalp) { 11246 /* don't trust bcopy for identical src/dst */ 11247 bcopy(invalp, outvalp, inlen); 11248 } 11249 *outlenp = inlen; 11250 return (0); 11251 case IP_RECVIF: 11252 /* Retrieve the inbound interface index */ 11253 if (!checkonly) { 11254 mutex_enter(&connp->conn_lock); 11255 connp->conn_recvif = *i1 ? 1 : 0; 11256 mutex_exit(&connp->conn_lock); 11257 } 11258 break; /* goto sizeof (int) option return */ 11259 case IP_RECVPKTINFO: 11260 if (!checkonly) { 11261 mutex_enter(&connp->conn_lock); 11262 connp->conn_ip_recvpktinfo = *i1 ? 1 : 0; 11263 mutex_exit(&connp->conn_lock); 11264 } 11265 break; /* goto sizeof (int) option return */ 11266 case IP_RECVSLLA: 11267 /* Retrieve the source link layer address */ 11268 if (!checkonly) { 11269 mutex_enter(&connp->conn_lock); 11270 connp->conn_recvslla = *i1 ? 1 : 0; 11271 mutex_exit(&connp->conn_lock); 11272 } 11273 break; /* goto sizeof (int) option return */ 11274 case MRT_INIT: 11275 case MRT_DONE: 11276 case MRT_ADD_VIF: 11277 case MRT_DEL_VIF: 11278 case MRT_ADD_MFC: 11279 case MRT_DEL_MFC: 11280 case MRT_ASSERT: 11281 if ((error = secpolicy_ip_config(cr, B_FALSE)) != 0) { 11282 *outlenp = 0; 11283 return (error); 11284 } 11285 error = ip_mrouter_set((int)name, q, checkonly, 11286 (uchar_t *)invalp, inlen, first_mp); 11287 if (error) { 11288 *outlenp = 0; 11289 return (error); 11290 } 11291 /* OK return - copy input buffer into output buffer */ 11292 if (invalp != outvalp) { 11293 /* don't trust bcopy for identical src/dst */ 11294 bcopy(invalp, outvalp, inlen); 11295 } 11296 *outlenp = inlen; 11297 return (0); 11298 case IP_BOUND_IF: 11299 case IP_XMIT_IF: 11300 error = ip_opt_set_ill(connp, *i1, B_FALSE, checkonly, 11301 level, name, first_mp); 11302 if (error != 0) 11303 return (error); 11304 break; /* goto sizeof (int) option return */ 11305 11306 case IP_UNSPEC_SRC: 11307 /* Allow sending with a zero source address */ 11308 if (!checkonly) { 11309 mutex_enter(&connp->conn_lock); 11310 connp->conn_unspec_src = *i1 ? 1 : 0; 11311 mutex_exit(&connp->conn_lock); 11312 } 11313 break; /* goto sizeof (int) option return */ 11314 default: 11315 /* 11316 * "soft" error (negative) 11317 * option not handled at this level 11318 * Note: Do not modify *outlenp 11319 */ 11320 return (-EINVAL); 11321 } 11322 break; 11323 case IPPROTO_IPV6: 11324 switch (name) { 11325 case IPV6_BOUND_IF: 11326 case IPV6_BOUND_PIF: 11327 case IPV6_DONTFAILOVER_IF: 11328 error = ip_opt_set_ill(connp, *i1, B_TRUE, checkonly, 11329 level, name, first_mp); 11330 if (error != 0) 11331 return (error); 11332 break; /* goto sizeof (int) option return */ 11333 11334 case IPV6_MULTICAST_IF: 11335 /* 11336 * The only possible errors are EINPROGRESS and 11337 * EINVAL. EINPROGRESS will be restarted and is not 11338 * a hard error. We call this option on both V4 and V6 11339 * If both return EINVAL, then this call returns 11340 * EINVAL. If at least one of them succeeds we 11341 * return success. 11342 */ 11343 found = B_FALSE; 11344 error = ip_opt_set_ill(connp, *i1, B_TRUE, checkonly, 11345 level, name, first_mp); 11346 if (error == EINPROGRESS) 11347 return (error); 11348 if (error == 0) 11349 found = B_TRUE; 11350 error = ip_opt_set_ill(connp, *i1, B_FALSE, checkonly, 11351 IPPROTO_IP, IP_MULTICAST_IF, first_mp); 11352 if (error == 0) 11353 found = B_TRUE; 11354 if (!found) 11355 return (error); 11356 break; /* goto sizeof (int) option return */ 11357 11358 case IPV6_MULTICAST_HOPS: 11359 /* Recorded in transport above IP */ 11360 break; /* goto sizeof (int) option return */ 11361 case IPV6_MULTICAST_LOOP: 11362 if (!checkonly) { 11363 mutex_enter(&connp->conn_lock); 11364 connp->conn_multicast_loop = *i1; 11365 mutex_exit(&connp->conn_lock); 11366 } 11367 break; /* goto sizeof (int) option return */ 11368 case IPV6_JOIN_GROUP: 11369 case MCAST_JOIN_GROUP: 11370 case IPV6_LEAVE_GROUP: 11371 case MCAST_LEAVE_GROUP: { 11372 struct ipv6_mreq *ip_mreqp; 11373 struct group_req *greqp; 11374 ire_t *ire; 11375 boolean_t done = B_FALSE; 11376 in6_addr_t groupv6; 11377 uint32_t ifindex; 11378 boolean_t mcast_opt = B_TRUE; 11379 mcast_record_t fmode; 11380 int (*optfn)(conn_t *, boolean_t, const in6_addr_t *, 11381 int, mcast_record_t, const in6_addr_t *, mblk_t *); 11382 11383 switch (name) { 11384 case IPV6_JOIN_GROUP: 11385 mcast_opt = B_FALSE; 11386 /* FALLTHRU */ 11387 case MCAST_JOIN_GROUP: 11388 fmode = MODE_IS_EXCLUDE; 11389 optfn = ip_opt_add_group_v6; 11390 break; 11391 11392 case IPV6_LEAVE_GROUP: 11393 mcast_opt = B_FALSE; 11394 /* FALLTHRU */ 11395 case MCAST_LEAVE_GROUP: 11396 fmode = MODE_IS_INCLUDE; 11397 optfn = ip_opt_delete_group_v6; 11398 break; 11399 } 11400 11401 if (mcast_opt) { 11402 struct sockaddr_in *sin; 11403 struct sockaddr_in6 *sin6; 11404 greqp = (struct group_req *)i1; 11405 if (greqp->gr_group.ss_family == AF_INET) { 11406 sin = (struct sockaddr_in *) 11407 &(greqp->gr_group); 11408 IN6_INADDR_TO_V4MAPPED(&sin->sin_addr, 11409 &groupv6); 11410 } else { 11411 sin6 = (struct sockaddr_in6 *) 11412 &(greqp->gr_group); 11413 groupv6 = sin6->sin6_addr; 11414 } 11415 ifindex = greqp->gr_interface; 11416 } else { 11417 ip_mreqp = (struct ipv6_mreq *)i1; 11418 groupv6 = ip_mreqp->ipv6mr_multiaddr; 11419 ifindex = ip_mreqp->ipv6mr_interface; 11420 } 11421 /* 11422 * In the multirouting case, we need to replicate 11423 * the request on all interfaces that will take part 11424 * in replication. We do so because multirouting is 11425 * reflective, thus we will probably receive multi- 11426 * casts on those interfaces. 11427 * The ip_multirt_apply_membership_v6() succeeds if 11428 * the operation succeeds on at least one interface. 11429 */ 11430 ire = ire_ftable_lookup_v6(&groupv6, &ipv6_all_ones, 0, 11431 IRE_HOST, NULL, NULL, ALL_ZONES, 0, NULL, 11432 MATCH_IRE_MASK | MATCH_IRE_TYPE, ipst); 11433 if (ire != NULL) { 11434 if (ire->ire_flags & RTF_MULTIRT) { 11435 error = ip_multirt_apply_membership_v6( 11436 optfn, ire, connp, checkonly, 11437 &groupv6, fmode, &ipv6_all_zeros, 11438 first_mp); 11439 done = B_TRUE; 11440 } 11441 ire_refrele(ire); 11442 } 11443 if (!done) { 11444 error = optfn(connp, checkonly, &groupv6, 11445 ifindex, fmode, &ipv6_all_zeros, first_mp); 11446 } 11447 if (error) { 11448 /* 11449 * EINPROGRESS is a soft error, needs retry 11450 * so don't make *outlenp zero. 11451 */ 11452 if (error != EINPROGRESS) 11453 *outlenp = 0; 11454 return (error); 11455 } 11456 /* OK return - copy input buffer into output buffer */ 11457 if (invalp != outvalp) { 11458 /* don't trust bcopy for identical src/dst */ 11459 bcopy(invalp, outvalp, inlen); 11460 } 11461 *outlenp = inlen; 11462 return (0); 11463 } 11464 case MCAST_BLOCK_SOURCE: 11465 case MCAST_UNBLOCK_SOURCE: 11466 case MCAST_JOIN_SOURCE_GROUP: 11467 case MCAST_LEAVE_SOURCE_GROUP: { 11468 struct group_source_req *gsreqp; 11469 in6_addr_t v6grp, v6src; 11470 uint32_t ifindex; 11471 mcast_record_t fmode; 11472 ire_t *ire; 11473 boolean_t done = B_FALSE; 11474 int (*optfn)(conn_t *, boolean_t, const in6_addr_t *, 11475 int, mcast_record_t, const in6_addr_t *, mblk_t *); 11476 11477 switch (name) { 11478 case MCAST_BLOCK_SOURCE: 11479 fmode = MODE_IS_EXCLUDE; 11480 optfn = ip_opt_add_group_v6; 11481 break; 11482 case MCAST_UNBLOCK_SOURCE: 11483 fmode = MODE_IS_EXCLUDE; 11484 optfn = ip_opt_delete_group_v6; 11485 break; 11486 case MCAST_JOIN_SOURCE_GROUP: 11487 fmode = MODE_IS_INCLUDE; 11488 optfn = ip_opt_add_group_v6; 11489 break; 11490 case MCAST_LEAVE_SOURCE_GROUP: 11491 fmode = MODE_IS_INCLUDE; 11492 optfn = ip_opt_delete_group_v6; 11493 break; 11494 } 11495 11496 gsreqp = (struct group_source_req *)i1; 11497 ifindex = gsreqp->gsr_interface; 11498 if (gsreqp->gsr_group.ss_family == AF_INET) { 11499 struct sockaddr_in *s; 11500 s = (struct sockaddr_in *)&gsreqp->gsr_group; 11501 IN6_INADDR_TO_V4MAPPED(&s->sin_addr, &v6grp); 11502 s = (struct sockaddr_in *)&gsreqp->gsr_source; 11503 IN6_INADDR_TO_V4MAPPED(&s->sin_addr, &v6src); 11504 } else { 11505 struct sockaddr_in6 *s6; 11506 s6 = (struct sockaddr_in6 *)&gsreqp->gsr_group; 11507 v6grp = s6->sin6_addr; 11508 s6 = (struct sockaddr_in6 *)&gsreqp->gsr_source; 11509 v6src = s6->sin6_addr; 11510 } 11511 11512 /* 11513 * In the multirouting case, we need to replicate 11514 * the request as noted in the mcast cases above. 11515 */ 11516 ire = ire_ftable_lookup_v6(&v6grp, &ipv6_all_ones, 0, 11517 IRE_HOST, NULL, NULL, ALL_ZONES, 0, NULL, 11518 MATCH_IRE_MASK | MATCH_IRE_TYPE, ipst); 11519 if (ire != NULL) { 11520 if (ire->ire_flags & RTF_MULTIRT) { 11521 error = ip_multirt_apply_membership_v6( 11522 optfn, ire, connp, checkonly, 11523 &v6grp, fmode, &v6src, first_mp); 11524 done = B_TRUE; 11525 } 11526 ire_refrele(ire); 11527 } 11528 if (!done) { 11529 error = optfn(connp, checkonly, &v6grp, 11530 ifindex, fmode, &v6src, first_mp); 11531 } 11532 if (error != 0) { 11533 /* 11534 * EINPROGRESS is a soft error, needs retry 11535 * so don't make *outlenp zero. 11536 */ 11537 if (error != EINPROGRESS) 11538 *outlenp = 0; 11539 return (error); 11540 } 11541 /* OK return - copy input buffer into output buffer */ 11542 if (invalp != outvalp) { 11543 bcopy(invalp, outvalp, inlen); 11544 } 11545 *outlenp = inlen; 11546 return (0); 11547 } 11548 case IPV6_UNICAST_HOPS: 11549 /* Recorded in transport above IP */ 11550 break; /* goto sizeof (int) option return */ 11551 case IPV6_UNSPEC_SRC: 11552 /* Allow sending with a zero source address */ 11553 if (!checkonly) { 11554 mutex_enter(&connp->conn_lock); 11555 connp->conn_unspec_src = *i1 ? 1 : 0; 11556 mutex_exit(&connp->conn_lock); 11557 } 11558 break; /* goto sizeof (int) option return */ 11559 case IPV6_RECVPKTINFO: 11560 if (!checkonly) { 11561 mutex_enter(&connp->conn_lock); 11562 connp->conn_ip_recvpktinfo = *i1 ? 1 : 0; 11563 mutex_exit(&connp->conn_lock); 11564 } 11565 break; /* goto sizeof (int) option return */ 11566 case IPV6_RECVTCLASS: 11567 if (!checkonly) { 11568 if (*i1 < 0 || *i1 > 1) { 11569 return (EINVAL); 11570 } 11571 mutex_enter(&connp->conn_lock); 11572 connp->conn_ipv6_recvtclass = *i1; 11573 mutex_exit(&connp->conn_lock); 11574 } 11575 break; 11576 case IPV6_RECVPATHMTU: 11577 if (!checkonly) { 11578 if (*i1 < 0 || *i1 > 1) { 11579 return (EINVAL); 11580 } 11581 mutex_enter(&connp->conn_lock); 11582 connp->conn_ipv6_recvpathmtu = *i1; 11583 mutex_exit(&connp->conn_lock); 11584 } 11585 break; 11586 case IPV6_RECVHOPLIMIT: 11587 if (!checkonly) { 11588 mutex_enter(&connp->conn_lock); 11589 connp->conn_ipv6_recvhoplimit = *i1 ? 1 : 0; 11590 mutex_exit(&connp->conn_lock); 11591 } 11592 break; /* goto sizeof (int) option return */ 11593 case IPV6_RECVHOPOPTS: 11594 if (!checkonly) { 11595 mutex_enter(&connp->conn_lock); 11596 connp->conn_ipv6_recvhopopts = *i1 ? 1 : 0; 11597 mutex_exit(&connp->conn_lock); 11598 } 11599 break; /* goto sizeof (int) option return */ 11600 case IPV6_RECVDSTOPTS: 11601 if (!checkonly) { 11602 mutex_enter(&connp->conn_lock); 11603 connp->conn_ipv6_recvdstopts = *i1 ? 1 : 0; 11604 mutex_exit(&connp->conn_lock); 11605 } 11606 break; /* goto sizeof (int) option return */ 11607 case IPV6_RECVRTHDR: 11608 if (!checkonly) { 11609 mutex_enter(&connp->conn_lock); 11610 connp->conn_ipv6_recvrthdr = *i1 ? 1 : 0; 11611 mutex_exit(&connp->conn_lock); 11612 } 11613 break; /* goto sizeof (int) option return */ 11614 case IPV6_RECVRTHDRDSTOPTS: 11615 if (!checkonly) { 11616 mutex_enter(&connp->conn_lock); 11617 connp->conn_ipv6_recvrtdstopts = *i1 ? 1 : 0; 11618 mutex_exit(&connp->conn_lock); 11619 } 11620 break; /* goto sizeof (int) option return */ 11621 case IPV6_PKTINFO: 11622 if (inlen == 0) 11623 return (-EINVAL); /* clearing option */ 11624 error = ip6_set_pktinfo(cr, connp, 11625 (struct in6_pktinfo *)invalp, first_mp); 11626 if (error != 0) 11627 *outlenp = 0; 11628 else 11629 *outlenp = inlen; 11630 return (error); 11631 case IPV6_NEXTHOP: { 11632 struct sockaddr_in6 *sin6; 11633 11634 /* Verify that the nexthop is reachable */ 11635 if (inlen == 0) 11636 return (-EINVAL); /* clearing option */ 11637 11638 sin6 = (struct sockaddr_in6 *)invalp; 11639 ire = ire_route_lookup_v6(&sin6->sin6_addr, 11640 0, 0, 0, NULL, NULL, connp->conn_zoneid, 11641 NULL, MATCH_IRE_DEFAULT, ipst); 11642 11643 if (ire == NULL) { 11644 *outlenp = 0; 11645 return (EHOSTUNREACH); 11646 } 11647 ire_refrele(ire); 11648 return (-EINVAL); 11649 } 11650 case IPV6_SEC_OPT: 11651 error = ipsec_set_req(cr, connp, (ipsec_req_t *)invalp); 11652 if (error != 0) { 11653 *outlenp = 0; 11654 return (error); 11655 } 11656 break; 11657 case IPV6_SRC_PREFERENCES: { 11658 /* 11659 * This is implemented strictly in the ip module 11660 * (here and in tcp_opt_*() to accomodate tcp 11661 * sockets). Modules above ip pass this option 11662 * down here since ip is the only one that needs to 11663 * be aware of source address preferences. 11664 * 11665 * This socket option only affects connected 11666 * sockets that haven't already bound to a specific 11667 * IPv6 address. In other words, sockets that 11668 * don't call bind() with an address other than the 11669 * unspecified address and that call connect(). 11670 * ip_bind_connected_v6() passes these preferences 11671 * to the ipif_select_source_v6() function. 11672 */ 11673 if (inlen != sizeof (uint32_t)) 11674 return (EINVAL); 11675 error = ip6_set_src_preferences(connp, 11676 *(uint32_t *)invalp); 11677 if (error != 0) { 11678 *outlenp = 0; 11679 return (error); 11680 } else { 11681 *outlenp = sizeof (uint32_t); 11682 } 11683 break; 11684 } 11685 case IPV6_V6ONLY: 11686 if (*i1 < 0 || *i1 > 1) { 11687 return (EINVAL); 11688 } 11689 mutex_enter(&connp->conn_lock); 11690 connp->conn_ipv6_v6only = *i1; 11691 mutex_exit(&connp->conn_lock); 11692 break; 11693 default: 11694 return (-EINVAL); 11695 } 11696 break; 11697 default: 11698 /* 11699 * "soft" error (negative) 11700 * option not handled at this level 11701 * Note: Do not modify *outlenp 11702 */ 11703 return (-EINVAL); 11704 } 11705 /* 11706 * Common case of return from an option that is sizeof (int) 11707 */ 11708 *(int *)outvalp = *i1; 11709 *outlenp = sizeof (int); 11710 return (0); 11711 } 11712 11713 /* 11714 * This routine gets default values of certain options whose default 11715 * values are maintained by protocol specific code 11716 */ 11717 /* ARGSUSED */ 11718 int 11719 ip_opt_default(queue_t *q, int level, int name, uchar_t *ptr) 11720 { 11721 int *i1 = (int *)ptr; 11722 ip_stack_t *ipst = CONNQ_TO_IPST(q); 11723 11724 switch (level) { 11725 case IPPROTO_IP: 11726 switch (name) { 11727 case IP_MULTICAST_TTL: 11728 *ptr = (uchar_t)IP_DEFAULT_MULTICAST_TTL; 11729 return (sizeof (uchar_t)); 11730 case IP_MULTICAST_LOOP: 11731 *ptr = (uchar_t)IP_DEFAULT_MULTICAST_LOOP; 11732 return (sizeof (uchar_t)); 11733 default: 11734 return (-1); 11735 } 11736 case IPPROTO_IPV6: 11737 switch (name) { 11738 case IPV6_UNICAST_HOPS: 11739 *i1 = ipst->ips_ipv6_def_hops; 11740 return (sizeof (int)); 11741 case IPV6_MULTICAST_HOPS: 11742 *i1 = IP_DEFAULT_MULTICAST_TTL; 11743 return (sizeof (int)); 11744 case IPV6_MULTICAST_LOOP: 11745 *i1 = IP_DEFAULT_MULTICAST_LOOP; 11746 return (sizeof (int)); 11747 case IPV6_V6ONLY: 11748 *i1 = 1; 11749 return (sizeof (int)); 11750 default: 11751 return (-1); 11752 } 11753 default: 11754 return (-1); 11755 } 11756 /* NOTREACHED */ 11757 } 11758 11759 /* 11760 * Given a destination address and a pointer to where to put the information 11761 * this routine fills in the mtuinfo. 11762 */ 11763 int 11764 ip_fill_mtuinfo(struct in6_addr *in6, in_port_t port, 11765 struct ip6_mtuinfo *mtuinfo, netstack_t *ns) 11766 { 11767 ire_t *ire; 11768 ip_stack_t *ipst = ns->netstack_ip; 11769 11770 if (IN6_IS_ADDR_UNSPECIFIED(in6)) 11771 return (-1); 11772 11773 bzero(mtuinfo, sizeof (*mtuinfo)); 11774 mtuinfo->ip6m_addr.sin6_family = AF_INET6; 11775 mtuinfo->ip6m_addr.sin6_port = port; 11776 mtuinfo->ip6m_addr.sin6_addr = *in6; 11777 11778 ire = ire_cache_lookup_v6(in6, ALL_ZONES, NULL, ipst); 11779 if (ire != NULL) { 11780 mtuinfo->ip6m_mtu = ire->ire_max_frag; 11781 ire_refrele(ire); 11782 } else { 11783 mtuinfo->ip6m_mtu = IPV6_MIN_MTU; 11784 } 11785 return (sizeof (struct ip6_mtuinfo)); 11786 } 11787 11788 /* 11789 * This routine gets socket options. For MRT_VERSION and MRT_ASSERT, error 11790 * checking of GET_QUEUE_CRED(q) and that ip_g_mrouter is set should be done and 11791 * isn't. This doesn't matter as the error checking is done properly for the 11792 * other MRT options coming in through ip_opt_set. 11793 */ 11794 int 11795 ip_opt_get(queue_t *q, int level, int name, uchar_t *ptr) 11796 { 11797 conn_t *connp = Q_TO_CONN(q); 11798 ipsec_req_t *req = (ipsec_req_t *)ptr; 11799 11800 switch (level) { 11801 case IPPROTO_IP: 11802 switch (name) { 11803 case MRT_VERSION: 11804 case MRT_ASSERT: 11805 (void) ip_mrouter_get(name, q, ptr); 11806 return (sizeof (int)); 11807 case IP_SEC_OPT: 11808 return (ipsec_req_from_conn(connp, req, IPSEC_AF_V4)); 11809 case IP_NEXTHOP: 11810 if (connp->conn_nexthop_set) { 11811 *(ipaddr_t *)ptr = connp->conn_nexthop_v4; 11812 return (sizeof (ipaddr_t)); 11813 } else 11814 return (0); 11815 case IP_RECVPKTINFO: 11816 *(int *)ptr = connp->conn_ip_recvpktinfo ? 1: 0; 11817 return (sizeof (int)); 11818 default: 11819 break; 11820 } 11821 break; 11822 case IPPROTO_IPV6: 11823 switch (name) { 11824 case IPV6_SEC_OPT: 11825 return (ipsec_req_from_conn(connp, req, IPSEC_AF_V6)); 11826 case IPV6_SRC_PREFERENCES: { 11827 return (ip6_get_src_preferences(connp, 11828 (uint32_t *)ptr)); 11829 } 11830 case IPV6_V6ONLY: 11831 *(int *)ptr = connp->conn_ipv6_v6only ? 1 : 0; 11832 return (sizeof (int)); 11833 case IPV6_PATHMTU: 11834 return (ip_fill_mtuinfo(&connp->conn_remv6, 0, 11835 (struct ip6_mtuinfo *)ptr, 11836 connp->conn_netstack)); 11837 default: 11838 break; 11839 } 11840 break; 11841 default: 11842 break; 11843 } 11844 return (-1); 11845 } 11846 11847 /* Named Dispatch routine to get a current value out of our parameter table. */ 11848 /* ARGSUSED */ 11849 static int 11850 ip_param_get(queue_t *q, mblk_t *mp, caddr_t cp, cred_t *ioc_cr) 11851 { 11852 ipparam_t *ippa = (ipparam_t *)cp; 11853 11854 (void) mi_mpprintf(mp, "%d", ippa->ip_param_value); 11855 return (0); 11856 } 11857 11858 /* ARGSUSED */ 11859 static int 11860 ip_param_generic_get(queue_t *q, mblk_t *mp, caddr_t cp, cred_t *ioc_cr) 11861 { 11862 11863 (void) mi_mpprintf(mp, "%d", *(int *)cp); 11864 return (0); 11865 } 11866 11867 /* 11868 * Set ip{,6}_forwarding values. This means walking through all of the 11869 * ill's and toggling their forwarding values. 11870 */ 11871 /* ARGSUSED */ 11872 static int 11873 ip_forward_set(queue_t *q, mblk_t *mp, char *value, caddr_t cp, cred_t *ioc_cr) 11874 { 11875 long new_value; 11876 int *forwarding_value = (int *)cp; 11877 ill_t *walker; 11878 boolean_t isv6; 11879 ill_walk_context_t ctx; 11880 ip_stack_t *ipst = CONNQ_TO_IPST(q); 11881 11882 isv6 = (forwarding_value == &ipst->ips_ipv6_forward); 11883 11884 if (ddi_strtol(value, NULL, 10, &new_value) != 0 || 11885 new_value < 0 || new_value > 1) { 11886 return (EINVAL); 11887 } 11888 11889 *forwarding_value = new_value; 11890 11891 /* 11892 * Regardless of the current value of ip_forwarding, set all per-ill 11893 * values of ip_forwarding to the value being set. 11894 * 11895 * Bring all the ill's up to date with the new global value. 11896 */ 11897 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 11898 11899 if (isv6) 11900 walker = ILL_START_WALK_V6(&ctx, ipst); 11901 else 11902 walker = ILL_START_WALK_V4(&ctx, ipst); 11903 for (; walker != NULL; walker = ill_next(&ctx, walker)) { 11904 (void) ill_forward_set(q, mp, (new_value != 0), 11905 (caddr_t)walker); 11906 } 11907 rw_exit(&ipst->ips_ill_g_lock); 11908 11909 return (0); 11910 } 11911 11912 /* 11913 * Walk through the param array specified registering each element with the 11914 * Named Dispatch handler. This is called only during init. So it is ok 11915 * not to acquire any locks 11916 */ 11917 static boolean_t 11918 ip_param_register(IDP *ndp, ipparam_t *ippa, size_t ippa_cnt, 11919 ipndp_t *ipnd, size_t ipnd_cnt) 11920 { 11921 for (; ippa_cnt-- > 0; ippa++) { 11922 if (ippa->ip_param_name && ippa->ip_param_name[0]) { 11923 if (!nd_load(ndp, ippa->ip_param_name, 11924 ip_param_get, ip_param_set, (caddr_t)ippa)) { 11925 nd_free(ndp); 11926 return (B_FALSE); 11927 } 11928 } 11929 } 11930 11931 for (; ipnd_cnt-- > 0; ipnd++) { 11932 if (ipnd->ip_ndp_name && ipnd->ip_ndp_name[0]) { 11933 if (!nd_load(ndp, ipnd->ip_ndp_name, 11934 ipnd->ip_ndp_getf, ipnd->ip_ndp_setf, 11935 ipnd->ip_ndp_data)) { 11936 nd_free(ndp); 11937 return (B_FALSE); 11938 } 11939 } 11940 } 11941 11942 return (B_TRUE); 11943 } 11944 11945 /* Named Dispatch routine to negotiate a new value for one of our parameters. */ 11946 /* ARGSUSED */ 11947 static int 11948 ip_param_set(queue_t *q, mblk_t *mp, char *value, caddr_t cp, cred_t *ioc_cr) 11949 { 11950 long new_value; 11951 ipparam_t *ippa = (ipparam_t *)cp; 11952 11953 if (ddi_strtol(value, NULL, 10, &new_value) != 0 || 11954 new_value < ippa->ip_param_min || new_value > ippa->ip_param_max) { 11955 return (EINVAL); 11956 } 11957 ippa->ip_param_value = new_value; 11958 return (0); 11959 } 11960 11961 /* 11962 * Handles both IPv4 and IPv6 reassembly - doing the out-of-order cases, 11963 * When an ipf is passed here for the first time, if 11964 * we already have in-order fragments on the queue, we convert from the fast- 11965 * path reassembly scheme to the hard-case scheme. From then on, additional 11966 * fragments are reassembled here. We keep track of the start and end offsets 11967 * of each piece, and the number of holes in the chain. When the hole count 11968 * goes to zero, we are done! 11969 * 11970 * The ipf_count will be updated to account for any mblk(s) added (pointed to 11971 * by mp) or subtracted (freeb()ed dups), upon return the caller must update 11972 * ipfb_count and ill_frag_count by the difference of ipf_count before and 11973 * after the call to ip_reassemble(). 11974 */ 11975 int 11976 ip_reassemble(mblk_t *mp, ipf_t *ipf, uint_t start, boolean_t more, ill_t *ill, 11977 size_t msg_len) 11978 { 11979 uint_t end; 11980 mblk_t *next_mp; 11981 mblk_t *mp1; 11982 uint_t offset; 11983 boolean_t incr_dups = B_TRUE; 11984 boolean_t offset_zero_seen = B_FALSE; 11985 boolean_t pkt_boundary_checked = B_FALSE; 11986 11987 /* If start == 0 then ipf_nf_hdr_len has to be set. */ 11988 ASSERT(start != 0 || ipf->ipf_nf_hdr_len != 0); 11989 11990 /* Add in byte count */ 11991 ipf->ipf_count += msg_len; 11992 if (ipf->ipf_end) { 11993 /* 11994 * We were part way through in-order reassembly, but now there 11995 * is a hole. We walk through messages already queued, and 11996 * mark them for hard case reassembly. We know that up till 11997 * now they were in order starting from offset zero. 11998 */ 11999 offset = 0; 12000 for (mp1 = ipf->ipf_mp->b_cont; mp1; mp1 = mp1->b_cont) { 12001 IP_REASS_SET_START(mp1, offset); 12002 if (offset == 0) { 12003 ASSERT(ipf->ipf_nf_hdr_len != 0); 12004 offset = -ipf->ipf_nf_hdr_len; 12005 } 12006 offset += mp1->b_wptr - mp1->b_rptr; 12007 IP_REASS_SET_END(mp1, offset); 12008 } 12009 /* One hole at the end. */ 12010 ipf->ipf_hole_cnt = 1; 12011 /* Brand it as a hard case, forever. */ 12012 ipf->ipf_end = 0; 12013 } 12014 /* Walk through all the new pieces. */ 12015 do { 12016 end = start + (mp->b_wptr - mp->b_rptr); 12017 /* 12018 * If start is 0, decrease 'end' only for the first mblk of 12019 * the fragment. Otherwise 'end' can get wrong value in the 12020 * second pass of the loop if first mblk is exactly the 12021 * size of ipf_nf_hdr_len. 12022 */ 12023 if (start == 0 && !offset_zero_seen) { 12024 /* First segment */ 12025 ASSERT(ipf->ipf_nf_hdr_len != 0); 12026 end -= ipf->ipf_nf_hdr_len; 12027 offset_zero_seen = B_TRUE; 12028 } 12029 next_mp = mp->b_cont; 12030 /* 12031 * We are checking to see if there is any interesing data 12032 * to process. If there isn't and the mblk isn't the 12033 * one which carries the unfragmentable header then we 12034 * drop it. It's possible to have just the unfragmentable 12035 * header come through without any data. That needs to be 12036 * saved. 12037 * 12038 * If the assert at the top of this function holds then the 12039 * term "ipf->ipf_nf_hdr_len != 0" isn't needed. This code 12040 * is infrequently traveled enough that the test is left in 12041 * to protect against future code changes which break that 12042 * invariant. 12043 */ 12044 if (start == end && start != 0 && ipf->ipf_nf_hdr_len != 0) { 12045 /* Empty. Blast it. */ 12046 IP_REASS_SET_START(mp, 0); 12047 IP_REASS_SET_END(mp, 0); 12048 /* 12049 * If the ipf points to the mblk we are about to free, 12050 * update ipf to point to the next mblk (or NULL 12051 * if none). 12052 */ 12053 if (ipf->ipf_mp->b_cont == mp) 12054 ipf->ipf_mp->b_cont = next_mp; 12055 freeb(mp); 12056 continue; 12057 } 12058 mp->b_cont = NULL; 12059 IP_REASS_SET_START(mp, start); 12060 IP_REASS_SET_END(mp, end); 12061 if (!ipf->ipf_tail_mp) { 12062 ipf->ipf_tail_mp = mp; 12063 ipf->ipf_mp->b_cont = mp; 12064 if (start == 0 || !more) { 12065 ipf->ipf_hole_cnt = 1; 12066 /* 12067 * if the first fragment comes in more than one 12068 * mblk, this loop will be executed for each 12069 * mblk. Need to adjust hole count so exiting 12070 * this routine will leave hole count at 1. 12071 */ 12072 if (next_mp) 12073 ipf->ipf_hole_cnt++; 12074 } else 12075 ipf->ipf_hole_cnt = 2; 12076 continue; 12077 } else if (ipf->ipf_last_frag_seen && !more && 12078 !pkt_boundary_checked) { 12079 /* 12080 * We check datagram boundary only if this fragment 12081 * claims to be the last fragment and we have seen a 12082 * last fragment in the past too. We do this only 12083 * once for a given fragment. 12084 * 12085 * start cannot be 0 here as fragments with start=0 12086 * and MF=0 gets handled as a complete packet. These 12087 * fragments should not reach here. 12088 */ 12089 12090 if (start + msgdsize(mp) != 12091 IP_REASS_END(ipf->ipf_tail_mp)) { 12092 /* 12093 * We have two fragments both of which claim 12094 * to be the last fragment but gives conflicting 12095 * information about the whole datagram size. 12096 * Something fishy is going on. Drop the 12097 * fragment and free up the reassembly list. 12098 */ 12099 return (IP_REASS_FAILED); 12100 } 12101 12102 /* 12103 * We shouldn't come to this code block again for this 12104 * particular fragment. 12105 */ 12106 pkt_boundary_checked = B_TRUE; 12107 } 12108 12109 /* New stuff at or beyond tail? */ 12110 offset = IP_REASS_END(ipf->ipf_tail_mp); 12111 if (start >= offset) { 12112 if (ipf->ipf_last_frag_seen) { 12113 /* current fragment is beyond last fragment */ 12114 return (IP_REASS_FAILED); 12115 } 12116 /* Link it on end. */ 12117 ipf->ipf_tail_mp->b_cont = mp; 12118 ipf->ipf_tail_mp = mp; 12119 if (more) { 12120 if (start != offset) 12121 ipf->ipf_hole_cnt++; 12122 } else if (start == offset && next_mp == NULL) 12123 ipf->ipf_hole_cnt--; 12124 continue; 12125 } 12126 mp1 = ipf->ipf_mp->b_cont; 12127 offset = IP_REASS_START(mp1); 12128 /* New stuff at the front? */ 12129 if (start < offset) { 12130 if (start == 0) { 12131 if (end >= offset) { 12132 /* Nailed the hole at the begining. */ 12133 ipf->ipf_hole_cnt--; 12134 } 12135 } else if (end < offset) { 12136 /* 12137 * A hole, stuff, and a hole where there used 12138 * to be just a hole. 12139 */ 12140 ipf->ipf_hole_cnt++; 12141 } 12142 mp->b_cont = mp1; 12143 /* Check for overlap. */ 12144 while (end > offset) { 12145 if (end < IP_REASS_END(mp1)) { 12146 mp->b_wptr -= end - offset; 12147 IP_REASS_SET_END(mp, offset); 12148 BUMP_MIB(ill->ill_ip_mib, 12149 ipIfStatsReasmPartDups); 12150 break; 12151 } 12152 /* Did we cover another hole? */ 12153 if ((mp1->b_cont && 12154 IP_REASS_END(mp1) != 12155 IP_REASS_START(mp1->b_cont) && 12156 end >= IP_REASS_START(mp1->b_cont)) || 12157 (!ipf->ipf_last_frag_seen && !more)) { 12158 ipf->ipf_hole_cnt--; 12159 } 12160 /* Clip out mp1. */ 12161 if ((mp->b_cont = mp1->b_cont) == NULL) { 12162 /* 12163 * After clipping out mp1, this guy 12164 * is now hanging off the end. 12165 */ 12166 ipf->ipf_tail_mp = mp; 12167 } 12168 IP_REASS_SET_START(mp1, 0); 12169 IP_REASS_SET_END(mp1, 0); 12170 /* Subtract byte count */ 12171 ipf->ipf_count -= mp1->b_datap->db_lim - 12172 mp1->b_datap->db_base; 12173 freeb(mp1); 12174 BUMP_MIB(ill->ill_ip_mib, 12175 ipIfStatsReasmPartDups); 12176 mp1 = mp->b_cont; 12177 if (!mp1) 12178 break; 12179 offset = IP_REASS_START(mp1); 12180 } 12181 ipf->ipf_mp->b_cont = mp; 12182 continue; 12183 } 12184 /* 12185 * The new piece starts somewhere between the start of the head 12186 * and before the end of the tail. 12187 */ 12188 for (; mp1; mp1 = mp1->b_cont) { 12189 offset = IP_REASS_END(mp1); 12190 if (start < offset) { 12191 if (end <= offset) { 12192 /* Nothing new. */ 12193 IP_REASS_SET_START(mp, 0); 12194 IP_REASS_SET_END(mp, 0); 12195 /* Subtract byte count */ 12196 ipf->ipf_count -= mp->b_datap->db_lim - 12197 mp->b_datap->db_base; 12198 if (incr_dups) { 12199 ipf->ipf_num_dups++; 12200 incr_dups = B_FALSE; 12201 } 12202 freeb(mp); 12203 BUMP_MIB(ill->ill_ip_mib, 12204 ipIfStatsReasmDuplicates); 12205 break; 12206 } 12207 /* 12208 * Trim redundant stuff off beginning of new 12209 * piece. 12210 */ 12211 IP_REASS_SET_START(mp, offset); 12212 mp->b_rptr += offset - start; 12213 BUMP_MIB(ill->ill_ip_mib, 12214 ipIfStatsReasmPartDups); 12215 start = offset; 12216 if (!mp1->b_cont) { 12217 /* 12218 * After trimming, this guy is now 12219 * hanging off the end. 12220 */ 12221 mp1->b_cont = mp; 12222 ipf->ipf_tail_mp = mp; 12223 if (!more) { 12224 ipf->ipf_hole_cnt--; 12225 } 12226 break; 12227 } 12228 } 12229 if (start >= IP_REASS_START(mp1->b_cont)) 12230 continue; 12231 /* Fill a hole */ 12232 if (start > offset) 12233 ipf->ipf_hole_cnt++; 12234 mp->b_cont = mp1->b_cont; 12235 mp1->b_cont = mp; 12236 mp1 = mp->b_cont; 12237 offset = IP_REASS_START(mp1); 12238 if (end >= offset) { 12239 ipf->ipf_hole_cnt--; 12240 /* Check for overlap. */ 12241 while (end > offset) { 12242 if (end < IP_REASS_END(mp1)) { 12243 mp->b_wptr -= end - offset; 12244 IP_REASS_SET_END(mp, offset); 12245 /* 12246 * TODO we might bump 12247 * this up twice if there is 12248 * overlap at both ends. 12249 */ 12250 BUMP_MIB(ill->ill_ip_mib, 12251 ipIfStatsReasmPartDups); 12252 break; 12253 } 12254 /* Did we cover another hole? */ 12255 if ((mp1->b_cont && 12256 IP_REASS_END(mp1) 12257 != IP_REASS_START(mp1->b_cont) && 12258 end >= 12259 IP_REASS_START(mp1->b_cont)) || 12260 (!ipf->ipf_last_frag_seen && 12261 !more)) { 12262 ipf->ipf_hole_cnt--; 12263 } 12264 /* Clip out mp1. */ 12265 if ((mp->b_cont = mp1->b_cont) == 12266 NULL) { 12267 /* 12268 * After clipping out mp1, 12269 * this guy is now hanging 12270 * off the end. 12271 */ 12272 ipf->ipf_tail_mp = mp; 12273 } 12274 IP_REASS_SET_START(mp1, 0); 12275 IP_REASS_SET_END(mp1, 0); 12276 /* Subtract byte count */ 12277 ipf->ipf_count -= 12278 mp1->b_datap->db_lim - 12279 mp1->b_datap->db_base; 12280 freeb(mp1); 12281 BUMP_MIB(ill->ill_ip_mib, 12282 ipIfStatsReasmPartDups); 12283 mp1 = mp->b_cont; 12284 if (!mp1) 12285 break; 12286 offset = IP_REASS_START(mp1); 12287 } 12288 } 12289 break; 12290 } 12291 } while (start = end, mp = next_mp); 12292 12293 /* Fragment just processed could be the last one. Remember this fact */ 12294 if (!more) 12295 ipf->ipf_last_frag_seen = B_TRUE; 12296 12297 /* Still got holes? */ 12298 if (ipf->ipf_hole_cnt) 12299 return (IP_REASS_PARTIAL); 12300 /* Clean up overloaded fields to avoid upstream disasters. */ 12301 for (mp1 = ipf->ipf_mp->b_cont; mp1; mp1 = mp1->b_cont) { 12302 IP_REASS_SET_START(mp1, 0); 12303 IP_REASS_SET_END(mp1, 0); 12304 } 12305 return (IP_REASS_COMPLETE); 12306 } 12307 12308 /* 12309 * ipsec processing for the fast path, used for input UDP Packets 12310 */ 12311 static boolean_t 12312 ip_udp_check(queue_t *q, conn_t *connp, ill_t *ill, ipha_t *ipha, 12313 mblk_t **mpp, mblk_t **first_mpp, boolean_t mctl_present) 12314 { 12315 uint32_t ill_index; 12316 uint_t in_flags; /* IPF_RECVSLLA and/or IPF_RECVIF */ 12317 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 12318 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 12319 12320 ASSERT(ipha->ipha_protocol == IPPROTO_UDP); 12321 /* The ill_index of the incoming ILL */ 12322 ill_index = ((ill_t *)q->q_ptr)->ill_phyint->phyint_ifindex; 12323 12324 /* pass packet up to the transport */ 12325 if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) || mctl_present) { 12326 *first_mpp = ipsec_check_inbound_policy(*first_mpp, connp, ipha, 12327 NULL, mctl_present); 12328 if (*first_mpp == NULL) { 12329 return (B_FALSE); 12330 } 12331 } 12332 12333 /* Initiate IPPF processing for fastpath UDP */ 12334 if (IPP_ENABLED(IPP_LOCAL_IN, ipst)) { 12335 ip_process(IPP_LOCAL_IN, mpp, ill_index); 12336 if (*mpp == NULL) { 12337 ip2dbg(("ip_input_ipsec_process: UDP pkt " 12338 "deferred/dropped during IPPF processing\n")); 12339 return (B_FALSE); 12340 } 12341 } 12342 /* 12343 * We make the checks as below since we are in the fast path 12344 * and want to minimize the number of checks if the IP_RECVIF and/or 12345 * IP_RECVSLLA and/or IPV6_RECVPKTINFO options are not set 12346 */ 12347 if (connp->conn_recvif || connp->conn_recvslla || 12348 connp->conn_ip_recvpktinfo) { 12349 if (connp->conn_recvif) { 12350 in_flags = IPF_RECVIF; 12351 } 12352 /* 12353 * UDP supports IP_RECVPKTINFO option for both v4 and v6 12354 * so the flag passed to ip_add_info is based on IP version 12355 * of connp. 12356 */ 12357 if (connp->conn_ip_recvpktinfo) { 12358 if (connp->conn_af_isv6) { 12359 /* 12360 * V6 only needs index 12361 */ 12362 in_flags |= IPF_RECVIF; 12363 } else { 12364 /* 12365 * V4 needs index + matching address. 12366 */ 12367 in_flags |= IPF_RECVADDR; 12368 } 12369 } 12370 if (connp->conn_recvslla) { 12371 in_flags |= IPF_RECVSLLA; 12372 } 12373 /* 12374 * since in_flags are being set ill will be 12375 * referenced in ip_add_info, so it better not 12376 * be NULL. 12377 */ 12378 /* 12379 * the actual data will be contained in b_cont 12380 * upon successful return of the following call. 12381 * If the call fails then the original mblk is 12382 * returned. 12383 */ 12384 *mpp = ip_add_info(*mpp, ill, in_flags, IPCL_ZONEID(connp), 12385 ipst); 12386 } 12387 12388 return (B_TRUE); 12389 } 12390 12391 /* 12392 * Fragmentation reassembly. Each ILL has a hash table for 12393 * queuing packets undergoing reassembly for all IPIFs 12394 * associated with the ILL. The hash is based on the packet 12395 * IP ident field. The ILL frag hash table was allocated 12396 * as a timer block at the time the ILL was created. Whenever 12397 * there is anything on the reassembly queue, the timer will 12398 * be running. Returns B_TRUE if successful else B_FALSE; 12399 * frees mp on failure. 12400 */ 12401 static boolean_t 12402 ip_rput_fragment(queue_t *q, mblk_t **mpp, ipha_t *ipha, 12403 uint32_t *cksum_val, uint16_t *cksum_flags) 12404 { 12405 uint32_t frag_offset_flags; 12406 ill_t *ill = (ill_t *)q->q_ptr; 12407 mblk_t *mp = *mpp; 12408 mblk_t *t_mp; 12409 ipaddr_t dst; 12410 uint8_t proto = ipha->ipha_protocol; 12411 uint32_t sum_val; 12412 uint16_t sum_flags; 12413 ipf_t *ipf; 12414 ipf_t **ipfp; 12415 ipfb_t *ipfb; 12416 uint16_t ident; 12417 uint32_t offset; 12418 ipaddr_t src; 12419 uint_t hdr_length; 12420 uint32_t end; 12421 mblk_t *mp1; 12422 mblk_t *tail_mp; 12423 size_t count; 12424 size_t msg_len; 12425 uint8_t ecn_info = 0; 12426 uint32_t packet_size; 12427 boolean_t pruned = B_FALSE; 12428 ip_stack_t *ipst = ill->ill_ipst; 12429 12430 if (cksum_val != NULL) 12431 *cksum_val = 0; 12432 if (cksum_flags != NULL) 12433 *cksum_flags = 0; 12434 12435 /* 12436 * Drop the fragmented as early as possible, if 12437 * we don't have resource(s) to re-assemble. 12438 */ 12439 if (ipst->ips_ip_reass_queue_bytes == 0) { 12440 freemsg(mp); 12441 return (B_FALSE); 12442 } 12443 12444 /* Check for fragmentation offset; return if there's none */ 12445 if ((frag_offset_flags = ntohs(ipha->ipha_fragment_offset_and_flags) & 12446 (IPH_MF | IPH_OFFSET)) == 0) 12447 return (B_TRUE); 12448 12449 /* 12450 * We utilize hardware computed checksum info only for UDP since 12451 * IP fragmentation is a normal occurence for the protocol. In 12452 * addition, checksum offload support for IP fragments carrying 12453 * UDP payload is commonly implemented across network adapters. 12454 */ 12455 ASSERT(ill != NULL); 12456 if (proto == IPPROTO_UDP && dohwcksum && ILL_HCKSUM_CAPABLE(ill) && 12457 (DB_CKSUMFLAGS(mp) & (HCK_FULLCKSUM | HCK_PARTIALCKSUM))) { 12458 mblk_t *mp1 = mp->b_cont; 12459 int32_t len; 12460 12461 /* Record checksum information from the packet */ 12462 sum_val = (uint32_t)DB_CKSUM16(mp); 12463 sum_flags = DB_CKSUMFLAGS(mp); 12464 12465 /* IP payload offset from beginning of mblk */ 12466 offset = ((uchar_t *)ipha + IPH_HDR_LENGTH(ipha)) - mp->b_rptr; 12467 12468 if ((sum_flags & HCK_PARTIALCKSUM) && 12469 (mp1 == NULL || mp1->b_cont == NULL) && 12470 offset >= DB_CKSUMSTART(mp) && 12471 ((len = offset - DB_CKSUMSTART(mp)) & 1) == 0) { 12472 uint32_t adj; 12473 /* 12474 * Partial checksum has been calculated by hardware 12475 * and attached to the packet; in addition, any 12476 * prepended extraneous data is even byte aligned. 12477 * If any such data exists, we adjust the checksum; 12478 * this would also handle any postpended data. 12479 */ 12480 IP_ADJCKSUM_PARTIAL(mp->b_rptr + DB_CKSUMSTART(mp), 12481 mp, mp1, len, adj); 12482 12483 /* One's complement subtract extraneous checksum */ 12484 if (adj >= sum_val) 12485 sum_val = ~(adj - sum_val) & 0xFFFF; 12486 else 12487 sum_val -= adj; 12488 } 12489 } else { 12490 sum_val = 0; 12491 sum_flags = 0; 12492 } 12493 12494 /* Clear hardware checksumming flag */ 12495 DB_CKSUMFLAGS(mp) = 0; 12496 12497 ident = ipha->ipha_ident; 12498 offset = (frag_offset_flags << 3) & 0xFFFF; 12499 src = ipha->ipha_src; 12500 dst = ipha->ipha_dst; 12501 hdr_length = IPH_HDR_LENGTH(ipha); 12502 end = ntohs(ipha->ipha_length) - hdr_length; 12503 12504 /* If end == 0 then we have a packet with no data, so just free it */ 12505 if (end == 0) { 12506 freemsg(mp); 12507 return (B_FALSE); 12508 } 12509 12510 /* Record the ECN field info. */ 12511 ecn_info = (ipha->ipha_type_of_service & 0x3); 12512 if (offset != 0) { 12513 /* 12514 * If this isn't the first piece, strip the header, and 12515 * add the offset to the end value. 12516 */ 12517 mp->b_rptr += hdr_length; 12518 end += offset; 12519 } 12520 12521 msg_len = MBLKSIZE(mp); 12522 tail_mp = mp; 12523 while (tail_mp->b_cont != NULL) { 12524 tail_mp = tail_mp->b_cont; 12525 msg_len += MBLKSIZE(tail_mp); 12526 } 12527 12528 /* If the reassembly list for this ILL will get too big, prune it */ 12529 if ((msg_len + sizeof (*ipf) + ill->ill_frag_count) >= 12530 ipst->ips_ip_reass_queue_bytes) { 12531 ill_frag_prune(ill, 12532 (ipst->ips_ip_reass_queue_bytes < msg_len) ? 0 : 12533 (ipst->ips_ip_reass_queue_bytes - msg_len)); 12534 pruned = B_TRUE; 12535 } 12536 12537 ipfb = &ill->ill_frag_hash_tbl[ILL_FRAG_HASH(src, ident)]; 12538 mutex_enter(&ipfb->ipfb_lock); 12539 12540 ipfp = &ipfb->ipfb_ipf; 12541 /* Try to find an existing fragment queue for this packet. */ 12542 for (;;) { 12543 ipf = ipfp[0]; 12544 if (ipf != NULL) { 12545 /* 12546 * It has to match on ident and src/dst address. 12547 */ 12548 if (ipf->ipf_ident == ident && 12549 ipf->ipf_src == src && 12550 ipf->ipf_dst == dst && 12551 ipf->ipf_protocol == proto) { 12552 /* 12553 * If we have received too many 12554 * duplicate fragments for this packet 12555 * free it. 12556 */ 12557 if (ipf->ipf_num_dups > ip_max_frag_dups) { 12558 ill_frag_free_pkts(ill, ipfb, ipf, 1); 12559 freemsg(mp); 12560 mutex_exit(&ipfb->ipfb_lock); 12561 return (B_FALSE); 12562 } 12563 /* Found it. */ 12564 break; 12565 } 12566 ipfp = &ipf->ipf_hash_next; 12567 continue; 12568 } 12569 12570 /* 12571 * If we pruned the list, do we want to store this new 12572 * fragment?. We apply an optimization here based on the 12573 * fact that most fragments will be received in order. 12574 * So if the offset of this incoming fragment is zero, 12575 * it is the first fragment of a new packet. We will 12576 * keep it. Otherwise drop the fragment, as we have 12577 * probably pruned the packet already (since the 12578 * packet cannot be found). 12579 */ 12580 if (pruned && offset != 0) { 12581 mutex_exit(&ipfb->ipfb_lock); 12582 freemsg(mp); 12583 return (B_FALSE); 12584 } 12585 12586 if (ipfb->ipfb_frag_pkts >= MAX_FRAG_PKTS(ipst)) { 12587 /* 12588 * Too many fragmented packets in this hash 12589 * bucket. Free the oldest. 12590 */ 12591 ill_frag_free_pkts(ill, ipfb, ipfb->ipfb_ipf, 1); 12592 } 12593 12594 /* New guy. Allocate a frag message. */ 12595 mp1 = allocb(sizeof (*ipf), BPRI_MED); 12596 if (mp1 == NULL) { 12597 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 12598 freemsg(mp); 12599 reass_done: 12600 mutex_exit(&ipfb->ipfb_lock); 12601 return (B_FALSE); 12602 } 12603 12604 BUMP_MIB(ill->ill_ip_mib, ipIfStatsReasmReqds); 12605 mp1->b_cont = mp; 12606 12607 /* Initialize the fragment header. */ 12608 ipf = (ipf_t *)mp1->b_rptr; 12609 ipf->ipf_mp = mp1; 12610 ipf->ipf_ptphn = ipfp; 12611 ipfp[0] = ipf; 12612 ipf->ipf_hash_next = NULL; 12613 ipf->ipf_ident = ident; 12614 ipf->ipf_protocol = proto; 12615 ipf->ipf_src = src; 12616 ipf->ipf_dst = dst; 12617 ipf->ipf_nf_hdr_len = 0; 12618 /* Record reassembly start time. */ 12619 ipf->ipf_timestamp = gethrestime_sec(); 12620 /* Record ipf generation and account for frag header */ 12621 ipf->ipf_gen = ill->ill_ipf_gen++; 12622 ipf->ipf_count = MBLKSIZE(mp1); 12623 ipf->ipf_last_frag_seen = B_FALSE; 12624 ipf->ipf_ecn = ecn_info; 12625 ipf->ipf_num_dups = 0; 12626 ipfb->ipfb_frag_pkts++; 12627 ipf->ipf_checksum = 0; 12628 ipf->ipf_checksum_flags = 0; 12629 12630 /* Store checksum value in fragment header */ 12631 if (sum_flags != 0) { 12632 sum_val = (sum_val & 0xFFFF) + (sum_val >> 16); 12633 sum_val = (sum_val & 0xFFFF) + (sum_val >> 16); 12634 ipf->ipf_checksum = sum_val; 12635 ipf->ipf_checksum_flags = sum_flags; 12636 } 12637 12638 /* 12639 * We handle reassembly two ways. In the easy case, 12640 * where all the fragments show up in order, we do 12641 * minimal bookkeeping, and just clip new pieces on 12642 * the end. If we ever see a hole, then we go off 12643 * to ip_reassemble which has to mark the pieces and 12644 * keep track of the number of holes, etc. Obviously, 12645 * the point of having both mechanisms is so we can 12646 * handle the easy case as efficiently as possible. 12647 */ 12648 if (offset == 0) { 12649 /* Easy case, in-order reassembly so far. */ 12650 ipf->ipf_count += msg_len; 12651 ipf->ipf_tail_mp = tail_mp; 12652 /* 12653 * Keep track of next expected offset in 12654 * ipf_end. 12655 */ 12656 ipf->ipf_end = end; 12657 ipf->ipf_nf_hdr_len = hdr_length; 12658 } else { 12659 /* Hard case, hole at the beginning. */ 12660 ipf->ipf_tail_mp = NULL; 12661 /* 12662 * ipf_end == 0 means that we have given up 12663 * on easy reassembly. 12664 */ 12665 ipf->ipf_end = 0; 12666 12667 /* Forget checksum offload from now on */ 12668 ipf->ipf_checksum_flags = 0; 12669 12670 /* 12671 * ipf_hole_cnt is set by ip_reassemble. 12672 * ipf_count is updated by ip_reassemble. 12673 * No need to check for return value here 12674 * as we don't expect reassembly to complete 12675 * or fail for the first fragment itself. 12676 */ 12677 (void) ip_reassemble(mp, ipf, 12678 (frag_offset_flags & IPH_OFFSET) << 3, 12679 (frag_offset_flags & IPH_MF), ill, msg_len); 12680 } 12681 /* Update per ipfb and ill byte counts */ 12682 ipfb->ipfb_count += ipf->ipf_count; 12683 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */ 12684 ill->ill_frag_count += ipf->ipf_count; 12685 ASSERT(ill->ill_frag_count > 0); /* Wraparound */ 12686 /* If the frag timer wasn't already going, start it. */ 12687 mutex_enter(&ill->ill_lock); 12688 ill_frag_timer_start(ill); 12689 mutex_exit(&ill->ill_lock); 12690 goto reass_done; 12691 } 12692 12693 /* 12694 * If the packet's flag has changed (it could be coming up 12695 * from an interface different than the previous, therefore 12696 * possibly different checksum capability), then forget about 12697 * any stored checksum states. Otherwise add the value to 12698 * the existing one stored in the fragment header. 12699 */ 12700 if (sum_flags != 0 && sum_flags == ipf->ipf_checksum_flags) { 12701 sum_val += ipf->ipf_checksum; 12702 sum_val = (sum_val & 0xFFFF) + (sum_val >> 16); 12703 sum_val = (sum_val & 0xFFFF) + (sum_val >> 16); 12704 ipf->ipf_checksum = sum_val; 12705 } else if (ipf->ipf_checksum_flags != 0) { 12706 /* Forget checksum offload from now on */ 12707 ipf->ipf_checksum_flags = 0; 12708 } 12709 12710 /* 12711 * We have a new piece of a datagram which is already being 12712 * reassembled. Update the ECN info if all IP fragments 12713 * are ECN capable. If there is one which is not, clear 12714 * all the info. If there is at least one which has CE 12715 * code point, IP needs to report that up to transport. 12716 */ 12717 if (ecn_info != IPH_ECN_NECT && ipf->ipf_ecn != IPH_ECN_NECT) { 12718 if (ecn_info == IPH_ECN_CE) 12719 ipf->ipf_ecn = IPH_ECN_CE; 12720 } else { 12721 ipf->ipf_ecn = IPH_ECN_NECT; 12722 } 12723 if (offset && ipf->ipf_end == offset) { 12724 /* The new fragment fits at the end */ 12725 ipf->ipf_tail_mp->b_cont = mp; 12726 /* Update the byte count */ 12727 ipf->ipf_count += msg_len; 12728 /* Update per ipfb and ill byte counts */ 12729 ipfb->ipfb_count += msg_len; 12730 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */ 12731 ill->ill_frag_count += msg_len; 12732 ASSERT(ill->ill_frag_count > 0); /* Wraparound */ 12733 if (frag_offset_flags & IPH_MF) { 12734 /* More to come. */ 12735 ipf->ipf_end = end; 12736 ipf->ipf_tail_mp = tail_mp; 12737 goto reass_done; 12738 } 12739 } else { 12740 /* Go do the hard cases. */ 12741 int ret; 12742 12743 if (offset == 0) 12744 ipf->ipf_nf_hdr_len = hdr_length; 12745 12746 /* Save current byte count */ 12747 count = ipf->ipf_count; 12748 ret = ip_reassemble(mp, ipf, 12749 (frag_offset_flags & IPH_OFFSET) << 3, 12750 (frag_offset_flags & IPH_MF), ill, msg_len); 12751 /* Count of bytes added and subtracted (freeb()ed) */ 12752 count = ipf->ipf_count - count; 12753 if (count) { 12754 /* Update per ipfb and ill byte counts */ 12755 ipfb->ipfb_count += count; 12756 ASSERT(ipfb->ipfb_count > 0); /* Wraparound */ 12757 ill->ill_frag_count += count; 12758 ASSERT(ill->ill_frag_count > 0); 12759 } 12760 if (ret == IP_REASS_PARTIAL) { 12761 goto reass_done; 12762 } else if (ret == IP_REASS_FAILED) { 12763 /* Reassembly failed. Free up all resources */ 12764 ill_frag_free_pkts(ill, ipfb, ipf, 1); 12765 for (t_mp = mp; t_mp != NULL; t_mp = t_mp->b_cont) { 12766 IP_REASS_SET_START(t_mp, 0); 12767 IP_REASS_SET_END(t_mp, 0); 12768 } 12769 freemsg(mp); 12770 goto reass_done; 12771 } 12772 /* We will reach here iff 'ret' is IP_REASS_COMPLETE */ 12773 } 12774 /* 12775 * We have completed reassembly. Unhook the frag header from 12776 * the reassembly list. 12777 * 12778 * Before we free the frag header, record the ECN info 12779 * to report back to the transport. 12780 */ 12781 ecn_info = ipf->ipf_ecn; 12782 BUMP_MIB(ill->ill_ip_mib, ipIfStatsReasmOKs); 12783 ipfp = ipf->ipf_ptphn; 12784 12785 /* We need to supply these to caller */ 12786 if ((sum_flags = ipf->ipf_checksum_flags) != 0) 12787 sum_val = ipf->ipf_checksum; 12788 else 12789 sum_val = 0; 12790 12791 mp1 = ipf->ipf_mp; 12792 count = ipf->ipf_count; 12793 ipf = ipf->ipf_hash_next; 12794 if (ipf != NULL) 12795 ipf->ipf_ptphn = ipfp; 12796 ipfp[0] = ipf; 12797 ill->ill_frag_count -= count; 12798 ASSERT(ipfb->ipfb_count >= count); 12799 ipfb->ipfb_count -= count; 12800 ipfb->ipfb_frag_pkts--; 12801 mutex_exit(&ipfb->ipfb_lock); 12802 /* Ditch the frag header. */ 12803 mp = mp1->b_cont; 12804 12805 freeb(mp1); 12806 12807 /* Restore original IP length in header. */ 12808 packet_size = (uint32_t)msgdsize(mp); 12809 if (packet_size > IP_MAXPACKET) { 12810 freemsg(mp); 12811 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInHdrErrors); 12812 return (B_FALSE); 12813 } 12814 12815 if (DB_REF(mp) > 1) { 12816 mblk_t *mp2 = copymsg(mp); 12817 12818 freemsg(mp); 12819 if (mp2 == NULL) { 12820 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 12821 return (B_FALSE); 12822 } 12823 mp = mp2; 12824 } 12825 ipha = (ipha_t *)mp->b_rptr; 12826 12827 ipha->ipha_length = htons((uint16_t)packet_size); 12828 /* We're now complete, zip the frag state */ 12829 ipha->ipha_fragment_offset_and_flags = 0; 12830 /* Record the ECN info. */ 12831 ipha->ipha_type_of_service &= 0xFC; 12832 ipha->ipha_type_of_service |= ecn_info; 12833 *mpp = mp; 12834 12835 /* Reassembly is successful; return checksum information if needed */ 12836 if (cksum_val != NULL) 12837 *cksum_val = sum_val; 12838 if (cksum_flags != NULL) 12839 *cksum_flags = sum_flags; 12840 12841 return (B_TRUE); 12842 } 12843 12844 /* 12845 * Perform ip header check sum update local options. 12846 * return B_TRUE if all is well, else return B_FALSE and release 12847 * the mp. caller is responsible for decrementing ire ref cnt. 12848 */ 12849 static boolean_t 12850 ip_options_cksum(queue_t *q, ill_t *ill, mblk_t *mp, ipha_t *ipha, ire_t *ire, 12851 ip_stack_t *ipst) 12852 { 12853 mblk_t *first_mp; 12854 boolean_t mctl_present; 12855 uint16_t sum; 12856 12857 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 12858 /* 12859 * Don't do the checksum if it has gone through AH/ESP 12860 * processing. 12861 */ 12862 if (!mctl_present) { 12863 sum = ip_csum_hdr(ipha); 12864 if (sum != 0) { 12865 if (ill != NULL) { 12866 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs); 12867 } else { 12868 BUMP_MIB(&ipst->ips_ip_mib, 12869 ipIfStatsInCksumErrs); 12870 } 12871 freemsg(first_mp); 12872 return (B_FALSE); 12873 } 12874 } 12875 12876 if (!ip_rput_local_options(q, mp, ipha, ire, ipst)) { 12877 if (mctl_present) 12878 freeb(first_mp); 12879 return (B_FALSE); 12880 } 12881 12882 return (B_TRUE); 12883 } 12884 12885 /* 12886 * All udp packet are delivered to the local host via this routine. 12887 */ 12888 void 12889 ip_udp_input(queue_t *q, mblk_t *mp, ipha_t *ipha, ire_t *ire, 12890 ill_t *recv_ill) 12891 { 12892 uint32_t sum; 12893 uint32_t u1; 12894 boolean_t mctl_present; 12895 conn_t *connp; 12896 mblk_t *first_mp; 12897 uint16_t *up; 12898 ill_t *ill = (ill_t *)q->q_ptr; 12899 uint16_t reass_hck_flags = 0; 12900 ip_stack_t *ipst; 12901 12902 ASSERT(recv_ill != NULL); 12903 ipst = recv_ill->ill_ipst; 12904 12905 #define rptr ((uchar_t *)ipha) 12906 12907 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 12908 ASSERT(!mctl_present || ipsec_in_is_secure(first_mp)); 12909 ASSERT(ipha->ipha_protocol == IPPROTO_UDP); 12910 ASSERT(ill != NULL); 12911 12912 /* 12913 * FAST PATH for udp packets 12914 */ 12915 12916 /* u1 is # words of IP options */ 12917 u1 = ipha->ipha_version_and_hdr_length - (uchar_t)((IP_VERSION << 4) + 12918 IP_SIMPLE_HDR_LENGTH_IN_WORDS); 12919 12920 /* IP options present */ 12921 if (u1 != 0) 12922 goto ipoptions; 12923 12924 /* Check the IP header checksum. */ 12925 if (IS_IP_HDR_HWCKSUM(mctl_present, mp, ill)) { 12926 /* Clear the IP header h/w cksum flag */ 12927 DB_CKSUMFLAGS(mp) &= ~HCK_IPV4_HDRCKSUM; 12928 } else { 12929 #define uph ((uint16_t *)ipha) 12930 sum = uph[0] + uph[1] + uph[2] + uph[3] + uph[4] + uph[5] + 12931 uph[6] + uph[7] + uph[8] + uph[9]; 12932 #undef uph 12933 /* finish doing IP checksum */ 12934 sum = (sum & 0xFFFF) + (sum >> 16); 12935 sum = ~(sum + (sum >> 16)) & 0xFFFF; 12936 /* 12937 * Don't verify header checksum if this packet is coming 12938 * back from AH/ESP as we already did it. 12939 */ 12940 if (!mctl_present && sum != 0 && sum != 0xFFFF) { 12941 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs); 12942 freemsg(first_mp); 12943 return; 12944 } 12945 } 12946 12947 /* 12948 * Count for SNMP of inbound packets for ire. 12949 * if mctl is present this might be a secure packet and 12950 * has already been counted for in ip_proto_input(). 12951 */ 12952 if (!mctl_present) { 12953 UPDATE_IB_PKT_COUNT(ire); 12954 ire->ire_last_used_time = lbolt; 12955 } 12956 12957 /* packet part of fragmented IP packet? */ 12958 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 12959 if (u1 & (IPH_MF | IPH_OFFSET)) { 12960 goto fragmented; 12961 } 12962 12963 /* u1 = IP header length (20 bytes) */ 12964 u1 = IP_SIMPLE_HDR_LENGTH; 12965 12966 /* packet does not contain complete IP & UDP headers */ 12967 if ((mp->b_wptr - rptr) < (IP_SIMPLE_HDR_LENGTH + UDPH_SIZE)) 12968 goto udppullup; 12969 12970 /* up points to UDP header */ 12971 up = (uint16_t *)((uchar_t *)ipha + IP_SIMPLE_HDR_LENGTH); 12972 #define iphs ((uint16_t *)ipha) 12973 12974 /* if udp hdr cksum != 0, then need to checksum udp packet */ 12975 if (up[3] != 0) { 12976 mblk_t *mp1 = mp->b_cont; 12977 boolean_t cksum_err; 12978 uint16_t hck_flags = 0; 12979 12980 /* Pseudo-header checksum */ 12981 u1 = IP_UDP_CSUM_COMP + iphs[6] + iphs[7] + iphs[8] + 12982 iphs[9] + up[2]; 12983 12984 /* 12985 * Revert to software checksum calculation if the interface 12986 * isn't capable of checksum offload or if IPsec is present. 12987 */ 12988 if (ILL_HCKSUM_CAPABLE(ill) && !mctl_present && dohwcksum) 12989 hck_flags = DB_CKSUMFLAGS(mp); 12990 12991 if ((hck_flags & (HCK_FULLCKSUM|HCK_PARTIALCKSUM)) == 0) 12992 IP_STAT(ipst, ip_in_sw_cksum); 12993 12994 IP_CKSUM_RECV(hck_flags, u1, 12995 (uchar_t *)(rptr + DB_CKSUMSTART(mp)), 12996 (int32_t)((uchar_t *)up - rptr), 12997 mp, mp1, cksum_err); 12998 12999 if (cksum_err) { 13000 BUMP_MIB(ill->ill_ip_mib, udpIfStatsInCksumErrs); 13001 if (hck_flags & HCK_FULLCKSUM) 13002 IP_STAT(ipst, ip_udp_in_full_hw_cksum_err); 13003 else if (hck_flags & HCK_PARTIALCKSUM) 13004 IP_STAT(ipst, ip_udp_in_part_hw_cksum_err); 13005 else 13006 IP_STAT(ipst, ip_udp_in_sw_cksum_err); 13007 13008 freemsg(first_mp); 13009 return; 13010 } 13011 } 13012 13013 /* Non-fragmented broadcast or multicast packet? */ 13014 if (ire->ire_type == IRE_BROADCAST) 13015 goto udpslowpath; 13016 13017 if ((connp = ipcl_classify_v4(mp, IPPROTO_UDP, IP_SIMPLE_HDR_LENGTH, 13018 ire->ire_zoneid, ipst)) != NULL) { 13019 ASSERT(connp->conn_upq != NULL); 13020 IP_STAT(ipst, ip_udp_fast_path); 13021 13022 if (CONN_UDP_FLOWCTLD(connp)) { 13023 freemsg(mp); 13024 BUMP_MIB(ill->ill_ip_mib, udpIfStatsInOverflows); 13025 } else { 13026 if (!mctl_present) { 13027 BUMP_MIB(ill->ill_ip_mib, 13028 ipIfStatsHCInDelivers); 13029 } 13030 /* 13031 * mp and first_mp can change. 13032 */ 13033 if (ip_udp_check(q, connp, recv_ill, 13034 ipha, &mp, &first_mp, mctl_present)) { 13035 /* Send it upstream */ 13036 CONN_UDP_RECV(connp, mp); 13037 } 13038 } 13039 /* 13040 * freeb() cannot deal with null mblk being passed 13041 * in and first_mp can be set to null in the call 13042 * ipsec_input_fast_proc()->ipsec_check_inbound_policy. 13043 */ 13044 if (mctl_present && first_mp != NULL) { 13045 freeb(first_mp); 13046 } 13047 CONN_DEC_REF(connp); 13048 return; 13049 } 13050 13051 /* 13052 * if we got here we know the packet is not fragmented and 13053 * has no options. The classifier could not find a conn_t and 13054 * most likely its an icmp packet so send it through slow path. 13055 */ 13056 13057 goto udpslowpath; 13058 13059 ipoptions: 13060 if (!ip_options_cksum(q, ill, mp, ipha, ire, ipst)) { 13061 goto slow_done; 13062 } 13063 13064 UPDATE_IB_PKT_COUNT(ire); 13065 ire->ire_last_used_time = lbolt; 13066 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 13067 if (u1 & (IPH_MF | IPH_OFFSET)) { 13068 fragmented: 13069 /* 13070 * "sum" and "reass_hck_flags" are non-zero if the 13071 * reassembled packet has a valid hardware computed 13072 * checksum information associated with it. 13073 */ 13074 if (!ip_rput_fragment(q, &mp, ipha, &sum, &reass_hck_flags)) 13075 goto slow_done; 13076 /* 13077 * Make sure that first_mp points back to mp as 13078 * the mp we came in with could have changed in 13079 * ip_rput_fragment(). 13080 */ 13081 ASSERT(!mctl_present); 13082 ipha = (ipha_t *)mp->b_rptr; 13083 first_mp = mp; 13084 } 13085 13086 /* Now we have a complete datagram, destined for this machine. */ 13087 u1 = IPH_HDR_LENGTH(ipha); 13088 /* Pull up the UDP header, if necessary. */ 13089 if ((MBLKL(mp)) < (u1 + UDPH_SIZE)) { 13090 udppullup: 13091 if (!pullupmsg(mp, u1 + UDPH_SIZE)) { 13092 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13093 freemsg(first_mp); 13094 goto slow_done; 13095 } 13096 ipha = (ipha_t *)mp->b_rptr; 13097 } 13098 13099 /* 13100 * Validate the checksum for the reassembled packet; for the 13101 * pullup case we calculate the payload checksum in software. 13102 */ 13103 up = (uint16_t *)((uchar_t *)ipha + u1 + UDP_PORTS_OFFSET); 13104 if (up[3] != 0) { 13105 boolean_t cksum_err; 13106 13107 if ((reass_hck_flags & (HCK_FULLCKSUM|HCK_PARTIALCKSUM)) == 0) 13108 IP_STAT(ipst, ip_in_sw_cksum); 13109 13110 IP_CKSUM_RECV_REASS(reass_hck_flags, 13111 (int32_t)((uchar_t *)up - (uchar_t *)ipha), 13112 IP_UDP_CSUM_COMP + iphs[6] + iphs[7] + iphs[8] + 13113 iphs[9] + up[2], sum, cksum_err); 13114 13115 if (cksum_err) { 13116 BUMP_MIB(ill->ill_ip_mib, udpIfStatsInCksumErrs); 13117 13118 if (reass_hck_flags & HCK_FULLCKSUM) 13119 IP_STAT(ipst, ip_udp_in_full_hw_cksum_err); 13120 else if (reass_hck_flags & HCK_PARTIALCKSUM) 13121 IP_STAT(ipst, ip_udp_in_part_hw_cksum_err); 13122 else 13123 IP_STAT(ipst, ip_udp_in_sw_cksum_err); 13124 13125 freemsg(first_mp); 13126 goto slow_done; 13127 } 13128 } 13129 udpslowpath: 13130 13131 /* Clear hardware checksum flag to be safe */ 13132 DB_CKSUMFLAGS(mp) = 0; 13133 13134 ip_fanout_udp(q, first_mp, ill, ipha, *(uint32_t *)up, 13135 (ire->ire_type == IRE_BROADCAST), 13136 IP_FF_SEND_ICMP | IP_FF_CKSUM | IP_FF_IPINFO, 13137 mctl_present, B_TRUE, recv_ill, ire->ire_zoneid); 13138 13139 slow_done: 13140 IP_STAT(ipst, ip_udp_slow_path); 13141 return; 13142 13143 #undef iphs 13144 #undef rptr 13145 } 13146 13147 /* ARGSUSED */ 13148 static mblk_t * 13149 ip_tcp_input(mblk_t *mp, ipha_t *ipha, ill_t *recv_ill, boolean_t mctl_present, 13150 ire_t *ire, mblk_t *first_mp, uint_t flags, queue_t *q, 13151 ill_rx_ring_t *ill_ring) 13152 { 13153 conn_t *connp; 13154 uint32_t sum; 13155 uint32_t u1; 13156 uint16_t *up; 13157 int offset; 13158 ssize_t len; 13159 mblk_t *mp1; 13160 boolean_t syn_present = B_FALSE; 13161 tcph_t *tcph; 13162 uint_t ip_hdr_len; 13163 ill_t *ill = (ill_t *)q->q_ptr; 13164 zoneid_t zoneid = ire->ire_zoneid; 13165 boolean_t cksum_err; 13166 uint16_t hck_flags = 0; 13167 ip_stack_t *ipst = recv_ill->ill_ipst; 13168 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 13169 13170 #define rptr ((uchar_t *)ipha) 13171 13172 ASSERT(ipha->ipha_protocol == IPPROTO_TCP); 13173 ASSERT(ill != NULL); 13174 13175 /* 13176 * FAST PATH for tcp packets 13177 */ 13178 13179 /* u1 is # words of IP options */ 13180 u1 = ipha->ipha_version_and_hdr_length - (uchar_t)((IP_VERSION << 4) 13181 + IP_SIMPLE_HDR_LENGTH_IN_WORDS); 13182 13183 /* IP options present */ 13184 if (u1) { 13185 goto ipoptions; 13186 } else { 13187 /* Check the IP header checksum. */ 13188 if (IS_IP_HDR_HWCKSUM(mctl_present, mp, ill)) { 13189 /* Clear the IP header h/w cksum flag */ 13190 DB_CKSUMFLAGS(mp) &= ~HCK_IPV4_HDRCKSUM; 13191 } else { 13192 #define uph ((uint16_t *)ipha) 13193 sum = uph[0] + uph[1] + uph[2] + uph[3] + uph[4] + 13194 uph[5] + uph[6] + uph[7] + uph[8] + uph[9]; 13195 #undef uph 13196 /* finish doing IP checksum */ 13197 sum = (sum & 0xFFFF) + (sum >> 16); 13198 sum = ~(sum + (sum >> 16)) & 0xFFFF; 13199 /* 13200 * Don't verify header checksum if this packet 13201 * is coming back from AH/ESP as we already did it. 13202 */ 13203 if (!mctl_present && (sum != 0) && sum != 0xFFFF) { 13204 BUMP_MIB(ill->ill_ip_mib, 13205 ipIfStatsInCksumErrs); 13206 goto error; 13207 } 13208 } 13209 } 13210 13211 if (!mctl_present) { 13212 UPDATE_IB_PKT_COUNT(ire); 13213 ire->ire_last_used_time = lbolt; 13214 } 13215 13216 /* packet part of fragmented IP packet? */ 13217 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 13218 if (u1 & (IPH_MF | IPH_OFFSET)) { 13219 goto fragmented; 13220 } 13221 13222 /* u1 = IP header length (20 bytes) */ 13223 u1 = ip_hdr_len = IP_SIMPLE_HDR_LENGTH; 13224 13225 /* does packet contain IP+TCP headers? */ 13226 len = mp->b_wptr - rptr; 13227 if (len < (IP_SIMPLE_HDR_LENGTH + TCP_MIN_HEADER_LENGTH)) { 13228 IP_STAT(ipst, ip_tcppullup); 13229 goto tcppullup; 13230 } 13231 13232 /* TCP options present? */ 13233 offset = ((uchar_t *)ipha)[IP_SIMPLE_HDR_LENGTH + 12] >> 4; 13234 13235 /* 13236 * If options need to be pulled up, then goto tcpoptions. 13237 * otherwise we are still in the fast path 13238 */ 13239 if (len < (offset << 2) + IP_SIMPLE_HDR_LENGTH) { 13240 IP_STAT(ipst, ip_tcpoptions); 13241 goto tcpoptions; 13242 } 13243 13244 /* multiple mblks of tcp data? */ 13245 if ((mp1 = mp->b_cont) != NULL) { 13246 /* more then two? */ 13247 if (mp1->b_cont != NULL) { 13248 IP_STAT(ipst, ip_multipkttcp); 13249 goto multipkttcp; 13250 } 13251 len += mp1->b_wptr - mp1->b_rptr; 13252 } 13253 13254 up = (uint16_t *)(rptr + IP_SIMPLE_HDR_LENGTH + TCP_PORTS_OFFSET); 13255 13256 /* part of pseudo checksum */ 13257 13258 /* TCP datagram length */ 13259 u1 = len - IP_SIMPLE_HDR_LENGTH; 13260 13261 #define iphs ((uint16_t *)ipha) 13262 13263 #ifdef _BIG_ENDIAN 13264 u1 += IPPROTO_TCP; 13265 #else 13266 u1 = ((u1 >> 8) & 0xFF) + (((u1 & 0xFF) + IPPROTO_TCP) << 8); 13267 #endif 13268 u1 += iphs[6] + iphs[7] + iphs[8] + iphs[9]; 13269 13270 /* 13271 * Revert to software checksum calculation if the interface 13272 * isn't capable of checksum offload or if IPsec is present. 13273 */ 13274 if (ILL_HCKSUM_CAPABLE(ill) && !mctl_present && dohwcksum) 13275 hck_flags = DB_CKSUMFLAGS(mp); 13276 13277 if ((hck_flags & (HCK_FULLCKSUM|HCK_PARTIALCKSUM)) == 0) 13278 IP_STAT(ipst, ip_in_sw_cksum); 13279 13280 IP_CKSUM_RECV(hck_flags, u1, 13281 (uchar_t *)(rptr + DB_CKSUMSTART(mp)), 13282 (int32_t)((uchar_t *)up - rptr), 13283 mp, mp1, cksum_err); 13284 13285 if (cksum_err) { 13286 BUMP_MIB(ill->ill_ip_mib, tcpIfStatsInErrs); 13287 13288 if (hck_flags & HCK_FULLCKSUM) 13289 IP_STAT(ipst, ip_tcp_in_full_hw_cksum_err); 13290 else if (hck_flags & HCK_PARTIALCKSUM) 13291 IP_STAT(ipst, ip_tcp_in_part_hw_cksum_err); 13292 else 13293 IP_STAT(ipst, ip_tcp_in_sw_cksum_err); 13294 13295 goto error; 13296 } 13297 13298 try_again: 13299 13300 if ((connp = ipcl_classify_v4(mp, IPPROTO_TCP, ip_hdr_len, 13301 zoneid, ipst)) == NULL) { 13302 /* Send the TH_RST */ 13303 goto no_conn; 13304 } 13305 13306 /* 13307 * TCP FAST PATH for AF_INET socket. 13308 * 13309 * TCP fast path to avoid extra work. An AF_INET socket type 13310 * does not have facility to receive extra information via 13311 * ip_process or ip_add_info. Also, when the connection was 13312 * established, we made a check if this connection is impacted 13313 * by any global IPSec policy or per connection policy (a 13314 * policy that comes in effect later will not apply to this 13315 * connection). Since all this can be determined at the 13316 * connection establishment time, a quick check of flags 13317 * can avoid extra work. 13318 */ 13319 if (IPCL_IS_TCP4_CONNECTED_NO_POLICY(connp) && !mctl_present && 13320 !IPP_ENABLED(IPP_LOCAL_IN, ipst)) { 13321 ASSERT(first_mp == mp); 13322 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 13323 SET_SQUEUE(mp, tcp_rput_data, connp); 13324 return (mp); 13325 } 13326 13327 tcph = (tcph_t *)&mp->b_rptr[ip_hdr_len]; 13328 if ((tcph->th_flags[0] & (TH_SYN|TH_ACK|TH_RST|TH_URG)) == TH_SYN) { 13329 if (IPCL_IS_TCP(connp)) { 13330 mp->b_datap->db_struioflag |= STRUIO_EAGER; 13331 DB_CKSUMSTART(mp) = 13332 (intptr_t)ip_squeue_get(ill_ring); 13333 if (IPCL_IS_FULLY_BOUND(connp) && !mctl_present && 13334 !CONN_INBOUND_POLICY_PRESENT(connp, ipss)) { 13335 BUMP_MIB(ill->ill_ip_mib, 13336 ipIfStatsHCInDelivers); 13337 SET_SQUEUE(mp, connp->conn_recv, connp); 13338 return (mp); 13339 } else if (IPCL_IS_BOUND(connp) && !mctl_present && 13340 !CONN_INBOUND_POLICY_PRESENT(connp, ipss)) { 13341 BUMP_MIB(ill->ill_ip_mib, 13342 ipIfStatsHCInDelivers); 13343 ip_squeue_enter_unbound++; 13344 SET_SQUEUE(mp, tcp_conn_request_unbound, 13345 connp); 13346 return (mp); 13347 } 13348 syn_present = B_TRUE; 13349 } 13350 13351 } 13352 13353 if (IPCL_IS_TCP(connp) && IPCL_IS_BOUND(connp) && !syn_present) { 13354 uint_t flags = (unsigned int)tcph->th_flags[0] & 0xFF; 13355 13356 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 13357 /* No need to send this packet to TCP */ 13358 if ((flags & TH_RST) || (flags & TH_URG)) { 13359 CONN_DEC_REF(connp); 13360 freemsg(first_mp); 13361 return (NULL); 13362 } 13363 if (flags & TH_ACK) { 13364 tcp_xmit_listeners_reset(first_mp, ip_hdr_len, zoneid, 13365 ipst->ips_netstack->netstack_tcp); 13366 CONN_DEC_REF(connp); 13367 return (NULL); 13368 } 13369 13370 CONN_DEC_REF(connp); 13371 freemsg(first_mp); 13372 return (NULL); 13373 } 13374 13375 if (CONN_INBOUND_POLICY_PRESENT(connp, ipss) || mctl_present) { 13376 first_mp = ipsec_check_inbound_policy(first_mp, connp, 13377 ipha, NULL, mctl_present); 13378 if (first_mp == NULL) { 13379 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13380 CONN_DEC_REF(connp); 13381 return (NULL); 13382 } 13383 if (IPCL_IS_TCP(connp) && IPCL_IS_BOUND(connp)) { 13384 ASSERT(syn_present); 13385 if (mctl_present) { 13386 ASSERT(first_mp != mp); 13387 first_mp->b_datap->db_struioflag |= 13388 STRUIO_POLICY; 13389 } else { 13390 ASSERT(first_mp == mp); 13391 mp->b_datap->db_struioflag &= ~STRUIO_EAGER; 13392 mp->b_datap->db_struioflag |= STRUIO_POLICY; 13393 } 13394 } else { 13395 /* 13396 * Discard first_mp early since we're dealing with a 13397 * fully-connected conn_t and tcp doesn't do policy in 13398 * this case. 13399 */ 13400 if (mctl_present) { 13401 freeb(first_mp); 13402 mctl_present = B_FALSE; 13403 } 13404 first_mp = mp; 13405 } 13406 } 13407 13408 /* Initiate IPPF processing for fastpath */ 13409 if (IPP_ENABLED(IPP_LOCAL_IN, ipst)) { 13410 uint32_t ill_index; 13411 13412 ill_index = recv_ill->ill_phyint->phyint_ifindex; 13413 ip_process(IPP_LOCAL_IN, &mp, ill_index); 13414 if (mp == NULL) { 13415 ip2dbg(("ip_input_ipsec_process: TCP pkt " 13416 "deferred/dropped during IPPF processing\n")); 13417 CONN_DEC_REF(connp); 13418 if (mctl_present) 13419 freeb(first_mp); 13420 return (NULL); 13421 } else if (mctl_present) { 13422 /* 13423 * ip_process might return a new mp. 13424 */ 13425 ASSERT(first_mp != mp); 13426 first_mp->b_cont = mp; 13427 } else { 13428 first_mp = mp; 13429 } 13430 13431 } 13432 13433 if (!syn_present && connp->conn_ip_recvpktinfo) { 13434 /* 13435 * TCP does not support IP_RECVPKTINFO for v4 so lets 13436 * make sure IPF_RECVIF is passed to ip_add_info. 13437 */ 13438 mp = ip_add_info(mp, recv_ill, flags|IPF_RECVIF, 13439 IPCL_ZONEID(connp), ipst); 13440 if (mp == NULL) { 13441 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13442 CONN_DEC_REF(connp); 13443 if (mctl_present) 13444 freeb(first_mp); 13445 return (NULL); 13446 } else if (mctl_present) { 13447 /* 13448 * ip_add_info might return a new mp. 13449 */ 13450 ASSERT(first_mp != mp); 13451 first_mp->b_cont = mp; 13452 } else { 13453 first_mp = mp; 13454 } 13455 } 13456 13457 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 13458 if (IPCL_IS_TCP(connp)) { 13459 SET_SQUEUE(first_mp, connp->conn_recv, connp); 13460 return (first_mp); 13461 } else { 13462 putnext(connp->conn_rq, first_mp); 13463 CONN_DEC_REF(connp); 13464 return (NULL); 13465 } 13466 13467 no_conn: 13468 /* Initiate IPPf processing, if needed. */ 13469 if (IPP_ENABLED(IPP_LOCAL_IN, ipst)) { 13470 uint32_t ill_index; 13471 ill_index = recv_ill->ill_phyint->phyint_ifindex; 13472 ip_process(IPP_LOCAL_IN, &first_mp, ill_index); 13473 if (first_mp == NULL) { 13474 return (NULL); 13475 } 13476 } 13477 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 13478 13479 tcp_xmit_listeners_reset(first_mp, IPH_HDR_LENGTH(mp->b_rptr), zoneid, 13480 ipst->ips_netstack->netstack_tcp); 13481 return (NULL); 13482 ipoptions: 13483 if (!ip_options_cksum(q, ill, first_mp, ipha, ire, ipst)) { 13484 goto slow_done; 13485 } 13486 13487 UPDATE_IB_PKT_COUNT(ire); 13488 ire->ire_last_used_time = lbolt; 13489 13490 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 13491 if (u1 & (IPH_MF | IPH_OFFSET)) { 13492 fragmented: 13493 if (!ip_rput_fragment(q, &mp, ipha, NULL, NULL)) { 13494 if (mctl_present) 13495 freeb(first_mp); 13496 goto slow_done; 13497 } 13498 /* 13499 * Make sure that first_mp points back to mp as 13500 * the mp we came in with could have changed in 13501 * ip_rput_fragment(). 13502 */ 13503 ASSERT(!mctl_present); 13504 ipha = (ipha_t *)mp->b_rptr; 13505 first_mp = mp; 13506 } 13507 13508 /* Now we have a complete datagram, destined for this machine. */ 13509 u1 = ip_hdr_len = IPH_HDR_LENGTH(ipha); 13510 13511 len = mp->b_wptr - mp->b_rptr; 13512 /* Pull up a minimal TCP header, if necessary. */ 13513 if (len < (u1 + 20)) { 13514 tcppullup: 13515 if (!pullupmsg(mp, u1 + 20)) { 13516 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13517 goto error; 13518 } 13519 ipha = (ipha_t *)mp->b_rptr; 13520 len = mp->b_wptr - mp->b_rptr; 13521 } 13522 13523 /* 13524 * Extract the offset field from the TCP header. As usual, we 13525 * try to help the compiler more than the reader. 13526 */ 13527 offset = ((uchar_t *)ipha)[u1 + 12] >> 4; 13528 if (offset != 5) { 13529 tcpoptions: 13530 if (offset < 5) { 13531 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13532 goto error; 13533 } 13534 /* 13535 * There must be TCP options. 13536 * Make sure we can grab them. 13537 */ 13538 offset <<= 2; 13539 offset += u1; 13540 if (len < offset) { 13541 if (!pullupmsg(mp, offset)) { 13542 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13543 goto error; 13544 } 13545 ipha = (ipha_t *)mp->b_rptr; 13546 len = mp->b_wptr - rptr; 13547 } 13548 } 13549 13550 /* Get the total packet length in len, including headers. */ 13551 if (mp->b_cont) { 13552 multipkttcp: 13553 len = msgdsize(mp); 13554 } 13555 13556 /* 13557 * Check the TCP checksum by pulling together the pseudo- 13558 * header checksum, and passing it to ip_csum to be added in 13559 * with the TCP datagram. 13560 * 13561 * Since we are not using the hwcksum if available we must 13562 * clear the flag. We may come here via tcppullup or tcpoptions. 13563 * If either of these fails along the way the mblk is freed. 13564 * If this logic ever changes and mblk is reused to say send 13565 * ICMP's back, then this flag may need to be cleared in 13566 * other places as well. 13567 */ 13568 DB_CKSUMFLAGS(mp) = 0; 13569 13570 up = (uint16_t *)(rptr + u1 + TCP_PORTS_OFFSET); 13571 13572 u1 = (uint32_t)(len - u1); /* TCP datagram length. */ 13573 #ifdef _BIG_ENDIAN 13574 u1 += IPPROTO_TCP; 13575 #else 13576 u1 = ((u1 >> 8) & 0xFF) + (((u1 & 0xFF) + IPPROTO_TCP) << 8); 13577 #endif 13578 u1 += iphs[6] + iphs[7] + iphs[8] + iphs[9]; 13579 /* 13580 * Not M_DATA mblk or its a dup, so do the checksum now. 13581 */ 13582 IP_STAT(ipst, ip_in_sw_cksum); 13583 if (IP_CSUM(mp, (int32_t)((uchar_t *)up - rptr), u1) != 0) { 13584 BUMP_MIB(ill->ill_ip_mib, tcpIfStatsInErrs); 13585 goto error; 13586 } 13587 13588 IP_STAT(ipst, ip_tcp_slow_path); 13589 goto try_again; 13590 #undef iphs 13591 #undef rptr 13592 13593 error: 13594 freemsg(first_mp); 13595 slow_done: 13596 return (NULL); 13597 } 13598 13599 /* ARGSUSED */ 13600 static void 13601 ip_sctp_input(mblk_t *mp, ipha_t *ipha, ill_t *recv_ill, boolean_t mctl_present, 13602 ire_t *ire, mblk_t *first_mp, uint_t flags, queue_t *q, ipaddr_t dst) 13603 { 13604 conn_t *connp; 13605 uint32_t sum; 13606 uint32_t u1; 13607 ssize_t len; 13608 sctp_hdr_t *sctph; 13609 zoneid_t zoneid = ire->ire_zoneid; 13610 uint32_t pktsum; 13611 uint32_t calcsum; 13612 uint32_t ports; 13613 in6_addr_t map_src, map_dst; 13614 ill_t *ill = (ill_t *)q->q_ptr; 13615 ip_stack_t *ipst; 13616 sctp_stack_t *sctps; 13617 13618 ASSERT(recv_ill != NULL); 13619 ipst = recv_ill->ill_ipst; 13620 sctps = ipst->ips_netstack->netstack_sctp; 13621 13622 #define rptr ((uchar_t *)ipha) 13623 13624 ASSERT(ipha->ipha_protocol == IPPROTO_SCTP); 13625 ASSERT(ill != NULL); 13626 13627 /* u1 is # words of IP options */ 13628 u1 = ipha->ipha_version_and_hdr_length - (uchar_t)((IP_VERSION << 4) 13629 + IP_SIMPLE_HDR_LENGTH_IN_WORDS); 13630 13631 /* IP options present */ 13632 if (u1 > 0) { 13633 goto ipoptions; 13634 } else { 13635 /* Check the IP header checksum. */ 13636 if (!IS_IP_HDR_HWCKSUM(mctl_present, mp, ill)) { 13637 #define uph ((uint16_t *)ipha) 13638 sum = uph[0] + uph[1] + uph[2] + uph[3] + uph[4] + 13639 uph[5] + uph[6] + uph[7] + uph[8] + uph[9]; 13640 #undef uph 13641 /* finish doing IP checksum */ 13642 sum = (sum & 0xFFFF) + (sum >> 16); 13643 sum = ~(sum + (sum >> 16)) & 0xFFFF; 13644 /* 13645 * Don't verify header checksum if this packet 13646 * is coming back from AH/ESP as we already did it. 13647 */ 13648 if (!mctl_present && (sum != 0) && sum != 0xFFFF) { 13649 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs); 13650 goto error; 13651 } 13652 } 13653 /* 13654 * Since there is no SCTP h/w cksum support yet, just 13655 * clear the flag. 13656 */ 13657 DB_CKSUMFLAGS(mp) = 0; 13658 } 13659 13660 /* 13661 * Don't verify header checksum if this packet is coming 13662 * back from AH/ESP as we already did it. 13663 */ 13664 if (!mctl_present) { 13665 UPDATE_IB_PKT_COUNT(ire); 13666 ire->ire_last_used_time = lbolt; 13667 } 13668 13669 /* packet part of fragmented IP packet? */ 13670 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 13671 if (u1 & (IPH_MF | IPH_OFFSET)) 13672 goto fragmented; 13673 13674 /* u1 = IP header length (20 bytes) */ 13675 u1 = IP_SIMPLE_HDR_LENGTH; 13676 13677 find_sctp_client: 13678 /* Pullup if we don't have the sctp common header. */ 13679 len = MBLKL(mp); 13680 if (len < (u1 + SCTP_COMMON_HDR_LENGTH)) { 13681 if (mp->b_cont == NULL || 13682 !pullupmsg(mp, u1 + SCTP_COMMON_HDR_LENGTH)) { 13683 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13684 goto error; 13685 } 13686 ipha = (ipha_t *)mp->b_rptr; 13687 len = MBLKL(mp); 13688 } 13689 13690 sctph = (sctp_hdr_t *)(rptr + u1); 13691 #ifdef DEBUG 13692 if (!skip_sctp_cksum) { 13693 #endif 13694 pktsum = sctph->sh_chksum; 13695 sctph->sh_chksum = 0; 13696 calcsum = sctp_cksum(mp, u1); 13697 if (calcsum != pktsum) { 13698 BUMP_MIB(&sctps->sctps_mib, sctpChecksumError); 13699 goto error; 13700 } 13701 sctph->sh_chksum = pktsum; 13702 #ifdef DEBUG /* skip_sctp_cksum */ 13703 } 13704 #endif 13705 /* get the ports */ 13706 ports = *(uint32_t *)&sctph->sh_sport; 13707 13708 IRE_REFRELE(ire); 13709 IN6_IPADDR_TO_V4MAPPED(ipha->ipha_dst, &map_dst); 13710 IN6_IPADDR_TO_V4MAPPED(ipha->ipha_src, &map_src); 13711 if ((connp = sctp_fanout(&map_src, &map_dst, ports, zoneid, mp, 13712 sctps)) == NULL) { 13713 /* Check for raw socket or OOTB handling */ 13714 goto no_conn; 13715 } 13716 13717 /* Found a client; up it goes */ 13718 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInDelivers); 13719 sctp_input(connp, ipha, mp, first_mp, recv_ill, B_TRUE, mctl_present); 13720 return; 13721 13722 no_conn: 13723 ip_fanout_sctp_raw(first_mp, recv_ill, ipha, B_TRUE, 13724 ports, mctl_present, flags, B_TRUE, zoneid); 13725 return; 13726 13727 ipoptions: 13728 DB_CKSUMFLAGS(mp) = 0; 13729 if (!ip_options_cksum(q, ill, first_mp, ipha, ire, ipst)) 13730 goto slow_done; 13731 13732 UPDATE_IB_PKT_COUNT(ire); 13733 ire->ire_last_used_time = lbolt; 13734 13735 u1 = ntohs(ipha->ipha_fragment_offset_and_flags); 13736 if (u1 & (IPH_MF | IPH_OFFSET)) { 13737 fragmented: 13738 if (!ip_rput_fragment(q, &mp, ipha, NULL, NULL)) 13739 goto slow_done; 13740 /* 13741 * Make sure that first_mp points back to mp as 13742 * the mp we came in with could have changed in 13743 * ip_rput_fragment(). 13744 */ 13745 ASSERT(!mctl_present); 13746 ipha = (ipha_t *)mp->b_rptr; 13747 first_mp = mp; 13748 } 13749 13750 /* Now we have a complete datagram, destined for this machine. */ 13751 u1 = IPH_HDR_LENGTH(ipha); 13752 goto find_sctp_client; 13753 #undef iphs 13754 #undef rptr 13755 13756 error: 13757 freemsg(first_mp); 13758 slow_done: 13759 IRE_REFRELE(ire); 13760 } 13761 13762 #define VER_BITS 0xF0 13763 #define VERSION_6 0x60 13764 13765 static boolean_t 13766 ip_rput_multimblk_ipoptions(queue_t *q, ill_t *ill, mblk_t *mp, ipha_t **iphapp, 13767 ipaddr_t *dstp, ip_stack_t *ipst) 13768 { 13769 uint_t opt_len; 13770 ipha_t *ipha; 13771 ssize_t len; 13772 uint_t pkt_len; 13773 13774 ASSERT(ill != NULL); 13775 IP_STAT(ipst, ip_ipoptions); 13776 ipha = *iphapp; 13777 13778 #define rptr ((uchar_t *)ipha) 13779 /* Assume no IPv6 packets arrive over the IPv4 queue */ 13780 if (IPH_HDR_VERSION(ipha) == IPV6_VERSION) { 13781 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInWrongIPVersion); 13782 freemsg(mp); 13783 return (B_FALSE); 13784 } 13785 13786 /* multiple mblk or too short */ 13787 pkt_len = ntohs(ipha->ipha_length); 13788 13789 /* Get the number of words of IP options in the IP header. */ 13790 opt_len = ipha->ipha_version_and_hdr_length - IP_SIMPLE_HDR_VERSION; 13791 if (opt_len) { 13792 /* IP Options present! Validate and process. */ 13793 if (opt_len > (15 - IP_SIMPLE_HDR_LENGTH_IN_WORDS)) { 13794 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInHdrErrors); 13795 goto done; 13796 } 13797 /* 13798 * Recompute complete header length and make sure we 13799 * have access to all of it. 13800 */ 13801 len = ((size_t)opt_len + IP_SIMPLE_HDR_LENGTH_IN_WORDS) << 2; 13802 if (len > (mp->b_wptr - rptr)) { 13803 if (len > pkt_len) { 13804 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInHdrErrors); 13805 goto done; 13806 } 13807 if (!pullupmsg(mp, len)) { 13808 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13809 goto done; 13810 } 13811 ipha = (ipha_t *)mp->b_rptr; 13812 } 13813 /* 13814 * Go off to ip_rput_options which returns the next hop 13815 * destination address, which may have been affected 13816 * by source routing. 13817 */ 13818 IP_STAT(ipst, ip_opt); 13819 if (ip_rput_options(q, mp, ipha, dstp, ipst) == -1) { 13820 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13821 return (B_FALSE); 13822 } 13823 } 13824 *iphapp = ipha; 13825 return (B_TRUE); 13826 done: 13827 /* clear b_prev - used by ip_mroute_decap */ 13828 mp->b_prev = NULL; 13829 freemsg(mp); 13830 return (B_FALSE); 13831 #undef rptr 13832 } 13833 13834 /* 13835 * Deal with the fact that there is no ire for the destination. 13836 * The incoming ill (in_ill) is passed in to ip_newroute only 13837 * in the case of packets coming from mobile ip forward tunnel. 13838 * It must be null otherwise. 13839 */ 13840 static ire_t * 13841 ip_rput_noire(queue_t *q, ill_t *in_ill, mblk_t *mp, int ll_multicast, 13842 ipaddr_t dst) 13843 { 13844 ipha_t *ipha; 13845 ill_t *ill; 13846 ire_t *ire; 13847 boolean_t check_multirt = B_FALSE; 13848 ip_stack_t *ipst; 13849 13850 ipha = (ipha_t *)mp->b_rptr; 13851 ill = (ill_t *)q->q_ptr; 13852 13853 ASSERT(ill != NULL); 13854 ipst = ill->ill_ipst; 13855 13856 /* 13857 * No IRE for this destination, so it can't be for us. 13858 * Unless we are forwarding, drop the packet. 13859 * We have to let source routed packets through 13860 * since we don't yet know if they are 'ping -l' 13861 * packets i.e. if they will go out over the 13862 * same interface as they came in on. 13863 */ 13864 if (ll_multicast) { 13865 freemsg(mp); 13866 return (NULL); 13867 } 13868 if (!(ill->ill_flags & ILLF_ROUTER) && !ip_source_routed(ipha, ipst)) { 13869 BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits); 13870 freemsg(mp); 13871 return (NULL); 13872 } 13873 13874 /* 13875 * Mark this packet as having originated externally. 13876 * 13877 * For non-forwarding code path, ire_send later double 13878 * checks this interface to see if it is still exists 13879 * post-ARP resolution. 13880 * 13881 * Also, IPQOS uses this to differentiate between 13882 * IPP_FWD_OUT and IPP_LOCAL_OUT for post-ARP 13883 * QOS packet processing in ip_wput_attach_llhdr(). 13884 * The QoS module can mark the b_band for a fastpath message 13885 * or the dl_priority field in a unitdata_req header for 13886 * CoS marking. This info can only be found in 13887 * ip_wput_attach_llhdr(). 13888 */ 13889 mp->b_prev = (mblk_t *)(uintptr_t)ill->ill_phyint->phyint_ifindex; 13890 /* 13891 * Clear the indication that this may have a hardware checksum 13892 * as we are not using it 13893 */ 13894 DB_CKSUMFLAGS(mp) = 0; 13895 13896 if (in_ill != NULL) { 13897 /* 13898 * Now hand the packet to ip_newroute. 13899 */ 13900 ip_newroute(q, mp, dst, in_ill, NULL, GLOBAL_ZONEID, ipst); 13901 return (NULL); 13902 } 13903 ire = ire_forward(dst, &check_multirt, NULL, NULL, 13904 MBLK_GETLABEL(mp), ipst); 13905 13906 if (ire == NULL && check_multirt) { 13907 /* Let ip_newroute handle CGTP */ 13908 ip_newroute(q, mp, dst, in_ill, NULL, GLOBAL_ZONEID, ipst); 13909 return (NULL); 13910 } 13911 13912 if (ire != NULL) 13913 return (ire); 13914 13915 mp->b_prev = mp->b_next = 0; 13916 /* send icmp unreachable */ 13917 q = WR(q); 13918 /* Sent by forwarding path, and router is global zone */ 13919 if (ip_source_routed(ipha, ipst)) { 13920 icmp_unreachable(q, mp, ICMP_SOURCE_ROUTE_FAILED, 13921 GLOBAL_ZONEID, ipst); 13922 } else { 13923 icmp_unreachable(q, mp, ICMP_HOST_UNREACHABLE, GLOBAL_ZONEID, 13924 ipst); 13925 } 13926 13927 return (NULL); 13928 13929 } 13930 13931 /* 13932 * check ip header length and align it. 13933 */ 13934 static boolean_t 13935 ip_check_and_align_header(queue_t *q, mblk_t *mp, ip_stack_t *ipst) 13936 { 13937 ssize_t len; 13938 ill_t *ill; 13939 ipha_t *ipha; 13940 13941 len = MBLKL(mp); 13942 13943 if (!OK_32PTR(mp->b_rptr) || len < IP_SIMPLE_HDR_LENGTH) { 13944 ill = (ill_t *)q->q_ptr; 13945 13946 if (!OK_32PTR(mp->b_rptr)) 13947 IP_STAT(ipst, ip_notaligned1); 13948 else 13949 IP_STAT(ipst, ip_notaligned2); 13950 /* Guard against bogus device drivers */ 13951 if (len < 0) { 13952 /* clear b_prev - used by ip_mroute_decap */ 13953 mp->b_prev = NULL; 13954 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInHdrErrors); 13955 freemsg(mp); 13956 return (B_FALSE); 13957 } 13958 13959 if (ip_rput_pullups++ == 0) { 13960 ipha = (ipha_t *)mp->b_rptr; 13961 (void) mi_strlog(q, 1, SL_ERROR|SL_TRACE, 13962 "ip_check_and_align_header: %s forced us to " 13963 " pullup pkt, hdr len %ld, hdr addr %p", 13964 ill->ill_name, len, ipha); 13965 } 13966 if (!pullupmsg(mp, IP_SIMPLE_HDR_LENGTH)) { 13967 /* clear b_prev - used by ip_mroute_decap */ 13968 mp->b_prev = NULL; 13969 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 13970 freemsg(mp); 13971 return (B_FALSE); 13972 } 13973 } 13974 return (B_TRUE); 13975 } 13976 13977 ire_t * 13978 ip_check_multihome(void *addr, ire_t *ire, ill_t *ill) 13979 { 13980 ire_t *new_ire; 13981 ill_t *ire_ill; 13982 uint_t ifindex; 13983 ip_stack_t *ipst = ill->ill_ipst; 13984 boolean_t strict_check = B_FALSE; 13985 13986 /* 13987 * This packet came in on an interface other than the one associated 13988 * with the first ire we found for the destination address. We do 13989 * another ire lookup here, using the ingress ill, to see if the 13990 * interface is in an interface group. 13991 * As long as the ills belong to the same group, we don't consider 13992 * them to be arriving on the wrong interface. Thus, if the switch 13993 * is doing inbound load spreading, we won't drop packets when the 13994 * ip*_strict_dst_multihoming switch is on. Note, the same holds true 13995 * for 'usesrc groups' where the destination address may belong to 13996 * another interface to allow multipathing to happen. 13997 * We also need to check for IPIF_UNNUMBERED point2point interfaces 13998 * where the local address may not be unique. In this case we were 13999 * at the mercy of the initial ire cache lookup and the IRE_LOCAL it 14000 * actually returned. The new lookup, which is more specific, should 14001 * only find the IRE_LOCAL associated with the ingress ill if one 14002 * exists. 14003 */ 14004 14005 if (ire->ire_ipversion == IPV4_VERSION) { 14006 if (ipst->ips_ip_strict_dst_multihoming) 14007 strict_check = B_TRUE; 14008 new_ire = ire_ctable_lookup(*((ipaddr_t *)addr), 0, IRE_LOCAL, 14009 ill->ill_ipif, ALL_ZONES, NULL, 14010 (MATCH_IRE_TYPE|MATCH_IRE_ILL_GROUP), ipst); 14011 } else { 14012 ASSERT(!IN6_IS_ADDR_MULTICAST((in6_addr_t *)addr)); 14013 if (ipst->ips_ipv6_strict_dst_multihoming) 14014 strict_check = B_TRUE; 14015 new_ire = ire_ctable_lookup_v6((in6_addr_t *)addr, NULL, 14016 IRE_LOCAL, ill->ill_ipif, ALL_ZONES, NULL, 14017 (MATCH_IRE_TYPE|MATCH_IRE_ILL_GROUP), ipst); 14018 } 14019 /* 14020 * If the same ire that was returned in ip_input() is found then this 14021 * is an indication that interface groups are in use. The packet 14022 * arrived on a different ill in the group than the one associated with 14023 * the destination address. If a different ire was found then the same 14024 * IP address must be hosted on multiple ills. This is possible with 14025 * unnumbered point2point interfaces. We switch to use this new ire in 14026 * order to have accurate interface statistics. 14027 */ 14028 if (new_ire != NULL) { 14029 if ((new_ire != ire) && (new_ire->ire_rfq != NULL)) { 14030 ire_refrele(ire); 14031 ire = new_ire; 14032 } else { 14033 ire_refrele(new_ire); 14034 } 14035 return (ire); 14036 } else if ((ire->ire_rfq == NULL) && 14037 (ire->ire_ipversion == IPV4_VERSION)) { 14038 /* 14039 * The best match could have been the original ire which 14040 * was created against an IRE_LOCAL on lo0. In the IPv4 case 14041 * the strict multihoming checks are irrelevant as we consider 14042 * local addresses hosted on lo0 to be interface agnostic. We 14043 * only expect a null ire_rfq on IREs which are associated with 14044 * lo0 hence we can return now. 14045 */ 14046 return (ire); 14047 } 14048 14049 /* 14050 * Chase pointers once and store locally. 14051 */ 14052 ire_ill = (ire->ire_rfq == NULL) ? NULL : 14053 (ill_t *)(ire->ire_rfq->q_ptr); 14054 ifindex = ill->ill_usesrc_ifindex; 14055 14056 /* 14057 * Check if it's a legal address on the 'usesrc' interface. 14058 */ 14059 if ((ifindex != 0) && (ire_ill != NULL) && 14060 (ifindex == ire_ill->ill_phyint->phyint_ifindex)) { 14061 return (ire); 14062 } 14063 14064 /* 14065 * If the ip*_strict_dst_multihoming switch is on then we can 14066 * only accept this packet if the interface is marked as routing. 14067 */ 14068 if (!(strict_check)) 14069 return (ire); 14070 14071 if ((ill->ill_flags & ire->ire_ipif->ipif_ill->ill_flags & 14072 ILLF_ROUTER) != 0) { 14073 return (ire); 14074 } 14075 14076 ire_refrele(ire); 14077 return (NULL); 14078 } 14079 14080 ire_t * 14081 ip_fast_forward(ire_t *ire, ipaddr_t dst, ill_t *ill, mblk_t *mp) 14082 { 14083 ipha_t *ipha; 14084 ipaddr_t ip_dst, ip_src; 14085 ire_t *src_ire = NULL; 14086 ill_t *stq_ill; 14087 uint_t hlen; 14088 uint_t pkt_len; 14089 uint32_t sum; 14090 queue_t *dev_q; 14091 boolean_t check_multirt = B_FALSE; 14092 ip_stack_t *ipst = ill->ill_ipst; 14093 14094 ipha = (ipha_t *)mp->b_rptr; 14095 14096 /* 14097 * Martian Address Filtering [RFC 1812, Section 5.3.7] 14098 * The loopback address check for both src and dst has already 14099 * been checked in ip_input 14100 */ 14101 ip_dst = ntohl(dst); 14102 ip_src = ntohl(ipha->ipha_src); 14103 14104 if (ip_dst == INADDR_ANY || IN_BADCLASS(ip_dst) || 14105 IN_CLASSD(ip_src)) { 14106 BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits); 14107 goto drop; 14108 } 14109 src_ire = ire_ctable_lookup(ipha->ipha_src, 0, IRE_BROADCAST, NULL, 14110 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 14111 14112 if (src_ire != NULL) { 14113 BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits); 14114 goto drop; 14115 } 14116 14117 14118 /* No ire cache of nexthop. So first create one */ 14119 if (ire == NULL) { 14120 ire = ire_forward(dst, &check_multirt, NULL, NULL, NULL, ipst); 14121 /* 14122 * We only come to ip_fast_forward if ip_cgtp_filter is 14123 * is not set. So upon return from ire_forward 14124 * check_multirt should remain as false. 14125 */ 14126 ASSERT(!check_multirt); 14127 if (ire == NULL) { 14128 /* An attempt was made to forward the packet */ 14129 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInForwDatagrams); 14130 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14131 mp->b_prev = mp->b_next = 0; 14132 /* send icmp unreachable */ 14133 /* Sent by forwarding path, and router is global zone */ 14134 if (ip_source_routed(ipha, ipst)) { 14135 icmp_unreachable(ill->ill_wq, mp, 14136 ICMP_SOURCE_ROUTE_FAILED, GLOBAL_ZONEID, 14137 ipst); 14138 } else { 14139 icmp_unreachable(ill->ill_wq, mp, 14140 ICMP_HOST_UNREACHABLE, GLOBAL_ZONEID, 14141 ipst); 14142 } 14143 return (ire); 14144 } 14145 } 14146 14147 /* 14148 * Forwarding fastpath exception case: 14149 * If either of the follwoing case is true, we take 14150 * the slowpath 14151 * o forwarding is not enabled 14152 * o incoming and outgoing interface are the same, or the same 14153 * IPMP group 14154 * o corresponding ire is in incomplete state 14155 * o packet needs fragmentation 14156 * 14157 * The codeflow from here on is thus: 14158 * ip_rput_process_forward->ip_rput_forward->ip_xmit_v4 14159 */ 14160 pkt_len = ntohs(ipha->ipha_length); 14161 stq_ill = (ill_t *)ire->ire_stq->q_ptr; 14162 if (!(stq_ill->ill_flags & ILLF_ROUTER) || 14163 !(ill->ill_flags & ILLF_ROUTER) || 14164 (ill == stq_ill) || 14165 (ill->ill_group != NULL && ill->ill_group == stq_ill->ill_group) || 14166 (ire->ire_nce == NULL) || 14167 (ire->ire_nce->nce_state != ND_REACHABLE) || 14168 (pkt_len > ire->ire_max_frag) || 14169 ipha->ipha_ttl <= 1) { 14170 ip_rput_process_forward(ill->ill_rq, mp, ire, 14171 ipha, ill, B_FALSE); 14172 return (ire); 14173 } 14174 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInForwDatagrams); 14175 14176 DTRACE_PROBE4(ip4__forwarding__start, 14177 ill_t *, ill, ill_t *, stq_ill, ipha_t *, ipha, mblk_t *, mp); 14178 14179 FW_HOOKS(ipst->ips_ip4_forwarding_event, 14180 ipst->ips_ipv4firewall_forwarding, 14181 ill, stq_ill, ipha, mp, mp, ipst); 14182 14183 DTRACE_PROBE1(ip4__forwarding__end, mblk_t *, mp); 14184 14185 if (mp == NULL) 14186 goto drop; 14187 14188 mp->b_datap->db_struioun.cksum.flags = 0; 14189 /* Adjust the checksum to reflect the ttl decrement. */ 14190 sum = (int)ipha->ipha_hdr_checksum + IP_HDR_CSUM_TTL_ADJUST; 14191 ipha->ipha_hdr_checksum = (uint16_t)(sum + (sum >> 16)); 14192 ipha->ipha_ttl--; 14193 14194 dev_q = ire->ire_stq->q_next; 14195 if ((dev_q->q_next != NULL || 14196 dev_q->q_first != NULL) && !canput(dev_q)) { 14197 goto indiscard; 14198 } 14199 14200 hlen = ire->ire_nce->nce_fp_mp != NULL ? 14201 MBLKL(ire->ire_nce->nce_fp_mp) : 0; 14202 14203 if (hlen != 0 || ire->ire_nce->nce_res_mp != NULL) { 14204 mblk_t *mpip = mp; 14205 14206 mp = ip_wput_attach_llhdr(mpip, ire, 0, 0); 14207 if (mp != NULL) { 14208 DTRACE_PROBE4(ip4__physical__out__start, 14209 ill_t *, NULL, ill_t *, stq_ill, 14210 ipha_t *, ipha, mblk_t *, mp); 14211 FW_HOOKS(ipst->ips_ip4_physical_out_event, 14212 ipst->ips_ipv4firewall_physical_out, 14213 NULL, stq_ill, ipha, mp, mpip, ipst); 14214 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, 14215 mp); 14216 if (mp == NULL) 14217 goto drop; 14218 14219 UPDATE_IB_PKT_COUNT(ire); 14220 ire->ire_last_used_time = lbolt; 14221 BUMP_MIB(stq_ill->ill_ip_mib, 14222 ipIfStatsHCOutForwDatagrams); 14223 BUMP_MIB(stq_ill->ill_ip_mib, ipIfStatsHCOutTransmits); 14224 UPDATE_MIB(stq_ill->ill_ip_mib, ipIfStatsHCOutOctets, 14225 pkt_len); 14226 putnext(ire->ire_stq, mp); 14227 return (ire); 14228 } 14229 } 14230 14231 indiscard: 14232 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14233 drop: 14234 if (mp != NULL) 14235 freemsg(mp); 14236 if (src_ire != NULL) 14237 ire_refrele(src_ire); 14238 return (ire); 14239 14240 } 14241 14242 /* 14243 * This function is called in the forwarding slowpath, when 14244 * either the ire lacks the link-layer address, or the packet needs 14245 * further processing(eg. fragmentation), before transmission. 14246 */ 14247 14248 static void 14249 ip_rput_process_forward(queue_t *q, mblk_t *mp, ire_t *ire, ipha_t *ipha, 14250 ill_t *ill, boolean_t ll_multicast) 14251 { 14252 ill_group_t *ill_group; 14253 ill_group_t *ire_group; 14254 queue_t *dev_q; 14255 ire_t *src_ire; 14256 ip_stack_t *ipst = ill->ill_ipst; 14257 14258 ASSERT(ire->ire_stq != NULL); 14259 14260 mp->b_prev = NULL; /* ip_rput_noire sets incoming interface here */ 14261 mp->b_next = NULL; /* ip_rput_noire sets dst here */ 14262 14263 if (ll_multicast != 0) { 14264 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14265 goto drop_pkt; 14266 } 14267 14268 /* 14269 * check if ipha_src is a broadcast address. Note that this 14270 * check is redundant when we get here from ip_fast_forward() 14271 * which has already done this check. However, since we can 14272 * also get here from ip_rput_process_broadcast() or, for 14273 * for the slow path through ip_fast_forward(), we perform 14274 * the check again for code-reusability 14275 */ 14276 src_ire = ire_ctable_lookup(ipha->ipha_src, 0, IRE_BROADCAST, NULL, 14277 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 14278 if (src_ire != NULL || ntohl(ipha->ipha_dst) == INADDR_ANY || 14279 IN_BADCLASS(ntohl(ipha->ipha_dst))) { 14280 if (src_ire != NULL) 14281 ire_refrele(src_ire); 14282 BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits); 14283 ip2dbg(("ip_rput_process_forward: Received packet with" 14284 " bad src/dst address on %s\n", ill->ill_name)); 14285 goto drop_pkt; 14286 } 14287 14288 ill_group = ill->ill_group; 14289 ire_group = ((ill_t *)(ire->ire_rfq)->q_ptr)->ill_group; 14290 /* 14291 * Check if we want to forward this one at this time. 14292 * We allow source routed packets on a host provided that 14293 * they go out the same interface or same interface group 14294 * as they came in on. 14295 * 14296 * XXX To be quicker, we may wish to not chase pointers to 14297 * get the ILLF_ROUTER flag and instead store the 14298 * forwarding policy in the ire. An unfortunate 14299 * side-effect of that would be requiring an ire flush 14300 * whenever the ILLF_ROUTER flag changes. 14301 */ 14302 if (((ill->ill_flags & 14303 ((ill_t *)ire->ire_stq->q_ptr)->ill_flags & 14304 ILLF_ROUTER) == 0) && 14305 !(ip_source_routed(ipha, ipst) && (ire->ire_rfq == q || 14306 (ill_group != NULL && ill_group == ire_group)))) { 14307 BUMP_MIB(ill->ill_ip_mib, ipIfStatsForwProhibits); 14308 if (ip_source_routed(ipha, ipst)) { 14309 q = WR(q); 14310 /* 14311 * Clear the indication that this may have 14312 * hardware checksum as we are not using it. 14313 */ 14314 DB_CKSUMFLAGS(mp) = 0; 14315 /* Sent by forwarding path, and router is global zone */ 14316 icmp_unreachable(q, mp, 14317 ICMP_SOURCE_ROUTE_FAILED, GLOBAL_ZONEID, ipst); 14318 return; 14319 } 14320 goto drop_pkt; 14321 } 14322 14323 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInForwDatagrams); 14324 14325 /* Packet is being forwarded. Turning off hwcksum flag. */ 14326 DB_CKSUMFLAGS(mp) = 0; 14327 if (ipst->ips_ip_g_send_redirects) { 14328 /* 14329 * Check whether the incoming interface and outgoing 14330 * interface is part of the same group. If so, 14331 * send redirects. 14332 * 14333 * Check the source address to see if it originated 14334 * on the same logical subnet it is going back out on. 14335 * If so, we should be able to send it a redirect. 14336 * Avoid sending a redirect if the destination 14337 * is directly connected (i.e., ipha_dst is the same 14338 * as ire_gateway_addr or the ire_addr of the 14339 * nexthop IRE_CACHE ), or if the packet was source 14340 * routed out this interface. 14341 */ 14342 ipaddr_t src, nhop; 14343 mblk_t *mp1; 14344 ire_t *nhop_ire = NULL; 14345 14346 /* 14347 * Check whether ire_rfq and q are from the same ill 14348 * or if they are not same, they at least belong 14349 * to the same group. If so, send redirects. 14350 */ 14351 if ((ire->ire_rfq == q || 14352 (ill_group != NULL && ill_group == ire_group)) && 14353 !ip_source_routed(ipha, ipst)) { 14354 14355 nhop = (ire->ire_gateway_addr != 0 ? 14356 ire->ire_gateway_addr : ire->ire_addr); 14357 14358 if (ipha->ipha_dst == nhop) { 14359 /* 14360 * We avoid sending a redirect if the 14361 * destination is directly connected 14362 * because it is possible that multiple 14363 * IP subnets may have been configured on 14364 * the link, and the source may not 14365 * be on the same subnet as ip destination, 14366 * even though they are on the same 14367 * physical link. 14368 */ 14369 goto sendit; 14370 } 14371 14372 src = ipha->ipha_src; 14373 14374 /* 14375 * We look up the interface ire for the nexthop, 14376 * to see if ipha_src is in the same subnet 14377 * as the nexthop. 14378 * 14379 * Note that, if, in the future, IRE_CACHE entries 14380 * are obsoleted, this lookup will not be needed, 14381 * as the ire passed to this function will be the 14382 * same as the nhop_ire computed below. 14383 */ 14384 nhop_ire = ire_ftable_lookup(nhop, 0, 0, 14385 IRE_INTERFACE, NULL, NULL, ALL_ZONES, 14386 0, NULL, MATCH_IRE_TYPE, ipst); 14387 14388 if (nhop_ire != NULL) { 14389 if ((src & nhop_ire->ire_mask) == 14390 (nhop & nhop_ire->ire_mask)) { 14391 /* 14392 * The source is directly connected. 14393 * Just copy the ip header (which is 14394 * in the first mblk) 14395 */ 14396 mp1 = copyb(mp); 14397 if (mp1 != NULL) { 14398 icmp_send_redirect(WR(q), mp1, 14399 nhop, ipst); 14400 } 14401 } 14402 ire_refrele(nhop_ire); 14403 } 14404 } 14405 } 14406 sendit: 14407 dev_q = ire->ire_stq->q_next; 14408 if ((dev_q->q_next || dev_q->q_first) && !canput(dev_q)) { 14409 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14410 freemsg(mp); 14411 return; 14412 } 14413 14414 ip_rput_forward(ire, ipha, mp, ill); 14415 return; 14416 14417 drop_pkt: 14418 ip2dbg(("ip_rput_process_forward: drop pkt\n")); 14419 freemsg(mp); 14420 } 14421 14422 ire_t * 14423 ip_rput_process_broadcast(queue_t **qp, mblk_t *mp, ire_t *ire, ipha_t *ipha, 14424 ill_t *ill, ipaddr_t dst, int cgtp_flt_pkt, int ll_multicast) 14425 { 14426 queue_t *q; 14427 uint16_t hcksumflags; 14428 ip_stack_t *ipst = ill->ill_ipst; 14429 14430 q = *qp; 14431 14432 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInBcastPkts); 14433 14434 /* 14435 * Clear the indication that this may have hardware 14436 * checksum as we are not using it for forwarding. 14437 */ 14438 hcksumflags = DB_CKSUMFLAGS(mp); 14439 DB_CKSUMFLAGS(mp) = 0; 14440 14441 /* 14442 * Directed broadcast forwarding: if the packet came in over a 14443 * different interface then it is routed out over we can forward it. 14444 */ 14445 if (ipha->ipha_protocol == IPPROTO_TCP) { 14446 ire_refrele(ire); 14447 freemsg(mp); 14448 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14449 return (NULL); 14450 } 14451 /* 14452 * For multicast we have set dst to be INADDR_BROADCAST 14453 * for delivering to all STREAMS. IRE_MARK_NORECV is really 14454 * only for broadcast packets. 14455 */ 14456 if (!CLASSD(ipha->ipha_dst)) { 14457 ire_t *new_ire; 14458 ipif_t *ipif; 14459 /* 14460 * For ill groups, as the switch duplicates broadcasts 14461 * across all the ports, we need to filter out and 14462 * send up only one copy. There is one copy for every 14463 * broadcast address on each ill. Thus, we look for a 14464 * specific IRE on this ill and look at IRE_MARK_NORECV 14465 * later to see whether this ill is eligible to receive 14466 * them or not. ill_nominate_bcast_rcv() nominates only 14467 * one set of IREs for receiving. 14468 */ 14469 14470 ipif = ipif_get_next_ipif(NULL, ill); 14471 if (ipif == NULL) { 14472 ire_refrele(ire); 14473 freemsg(mp); 14474 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14475 return (NULL); 14476 } 14477 new_ire = ire_ctable_lookup(dst, 0, 0, 14478 ipif, ALL_ZONES, NULL, MATCH_IRE_ILL, ipst); 14479 ipif_refrele(ipif); 14480 14481 if (new_ire != NULL) { 14482 if (new_ire->ire_marks & IRE_MARK_NORECV) { 14483 ire_refrele(ire); 14484 ire_refrele(new_ire); 14485 freemsg(mp); 14486 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14487 return (NULL); 14488 } 14489 /* 14490 * In the special case of multirouted broadcast 14491 * packets, we unconditionally need to "gateway" 14492 * them to the appropriate interface here. 14493 * In the normal case, this cannot happen, because 14494 * there is no broadcast IRE tagged with the 14495 * RTF_MULTIRT flag. 14496 */ 14497 if (new_ire->ire_flags & RTF_MULTIRT) { 14498 ire_refrele(new_ire); 14499 if (ire->ire_rfq != NULL) { 14500 q = ire->ire_rfq; 14501 *qp = q; 14502 } 14503 } else { 14504 ire_refrele(ire); 14505 ire = new_ire; 14506 } 14507 } else if (cgtp_flt_pkt == CGTP_IP_PKT_NOT_CGTP) { 14508 if (!ipst->ips_ip_g_forward_directed_bcast) { 14509 /* 14510 * Free the message if 14511 * ip_g_forward_directed_bcast is turned 14512 * off for non-local broadcast. 14513 */ 14514 ire_refrele(ire); 14515 freemsg(mp); 14516 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14517 return (NULL); 14518 } 14519 } else { 14520 /* 14521 * This CGTP packet successfully passed the 14522 * CGTP filter, but the related CGTP 14523 * broadcast IRE has not been found, 14524 * meaning that the redundant ipif is 14525 * probably down. However, if we discarded 14526 * this packet, its duplicate would be 14527 * filtered out by the CGTP filter so none 14528 * of them would get through. So we keep 14529 * going with this one. 14530 */ 14531 ASSERT(cgtp_flt_pkt == CGTP_IP_PKT_PREMIUM); 14532 if (ire->ire_rfq != NULL) { 14533 q = ire->ire_rfq; 14534 *qp = q; 14535 } 14536 } 14537 } 14538 if (ipst->ips_ip_g_forward_directed_bcast && ll_multicast == 0) { 14539 /* 14540 * Verify that there are not more then one 14541 * IRE_BROADCAST with this broadcast address which 14542 * has ire_stq set. 14543 * TODO: simplify, loop over all IRE's 14544 */ 14545 ire_t *ire1; 14546 int num_stq = 0; 14547 mblk_t *mp1; 14548 14549 /* Find the first one with ire_stq set */ 14550 rw_enter(&ire->ire_bucket->irb_lock, RW_READER); 14551 for (ire1 = ire; ire1 && 14552 !ire1->ire_stq && ire1->ire_addr == ire->ire_addr; 14553 ire1 = ire1->ire_next) 14554 ; 14555 if (ire1) { 14556 ire_refrele(ire); 14557 ire = ire1; 14558 IRE_REFHOLD(ire); 14559 } 14560 14561 /* Check if there are additional ones with stq set */ 14562 for (ire1 = ire; ire1; ire1 = ire1->ire_next) { 14563 if (ire->ire_addr != ire1->ire_addr) 14564 break; 14565 if (ire1->ire_stq) { 14566 num_stq++; 14567 break; 14568 } 14569 } 14570 rw_exit(&ire->ire_bucket->irb_lock); 14571 if (num_stq == 1 && ire->ire_stq != NULL) { 14572 ip1dbg(("ip_rput_process_broadcast: directed " 14573 "broadcast to 0x%x\n", 14574 ntohl(ire->ire_addr))); 14575 mp1 = copymsg(mp); 14576 if (mp1) { 14577 switch (ipha->ipha_protocol) { 14578 case IPPROTO_UDP: 14579 ip_udp_input(q, mp1, ipha, ire, ill); 14580 break; 14581 default: 14582 ip_proto_input(q, mp1, ipha, ire, ill); 14583 break; 14584 } 14585 } 14586 /* 14587 * Adjust ttl to 2 (1+1 - the forward engine 14588 * will decrement it by one. 14589 */ 14590 if (ip_csum_hdr(ipha)) { 14591 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs); 14592 ip2dbg(("ip_rput_broadcast:drop pkt\n")); 14593 freemsg(mp); 14594 ire_refrele(ire); 14595 return (NULL); 14596 } 14597 ipha->ipha_ttl = ipst->ips_ip_broadcast_ttl + 1; 14598 ipha->ipha_hdr_checksum = 0; 14599 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 14600 ip_rput_process_forward(q, mp, ire, ipha, 14601 ill, ll_multicast); 14602 ire_refrele(ire); 14603 return (NULL); 14604 } 14605 ip1dbg(("ip_rput: NO directed broadcast to 0x%x\n", 14606 ntohl(ire->ire_addr))); 14607 } 14608 14609 14610 /* Restore any hardware checksum flags */ 14611 DB_CKSUMFLAGS(mp) = hcksumflags; 14612 return (ire); 14613 } 14614 14615 /* ARGSUSED */ 14616 static boolean_t 14617 ip_rput_process_multicast(queue_t *q, mblk_t *mp, ill_t *ill, ipha_t *ipha, 14618 int *ll_multicast, ipaddr_t *dstp) 14619 { 14620 ip_stack_t *ipst = ill->ill_ipst; 14621 14622 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInMcastPkts); 14623 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCInMcastOctets, 14624 ntohs(ipha->ipha_length)); 14625 14626 /* 14627 * Forward packets only if we have joined the allmulti 14628 * group on this interface. 14629 */ 14630 if (ipst->ips_ip_g_mrouter && ill->ill_join_allmulti) { 14631 int retval; 14632 14633 /* 14634 * Clear the indication that this may have hardware 14635 * checksum as we are not using it. 14636 */ 14637 DB_CKSUMFLAGS(mp) = 0; 14638 retval = ip_mforward(ill, ipha, mp); 14639 /* ip_mforward updates mib variables if needed */ 14640 /* clear b_prev - used by ip_mroute_decap */ 14641 mp->b_prev = NULL; 14642 14643 switch (retval) { 14644 case 0: 14645 /* 14646 * pkt is okay and arrived on phyint. 14647 * 14648 * If we are running as a multicast router 14649 * we need to see all IGMP and/or PIM packets. 14650 */ 14651 if ((ipha->ipha_protocol == IPPROTO_IGMP) || 14652 (ipha->ipha_protocol == IPPROTO_PIM)) { 14653 goto done; 14654 } 14655 break; 14656 case -1: 14657 /* pkt is mal-formed, toss it */ 14658 goto drop_pkt; 14659 case 1: 14660 /* pkt is okay and arrived on a tunnel */ 14661 /* 14662 * If we are running a multicast router 14663 * we need to see all igmp packets. 14664 */ 14665 if (ipha->ipha_protocol == IPPROTO_IGMP) { 14666 *dstp = INADDR_BROADCAST; 14667 *ll_multicast = 1; 14668 return (B_FALSE); 14669 } 14670 14671 goto drop_pkt; 14672 } 14673 } 14674 14675 ILM_WALKER_HOLD(ill); 14676 if (ilm_lookup_ill(ill, *dstp, ALL_ZONES) == NULL) { 14677 /* 14678 * This might just be caused by the fact that 14679 * multiple IP Multicast addresses map to the same 14680 * link layer multicast - no need to increment counter! 14681 */ 14682 ILM_WALKER_RELE(ill); 14683 freemsg(mp); 14684 return (B_TRUE); 14685 } 14686 ILM_WALKER_RELE(ill); 14687 done: 14688 ip2dbg(("ip_rput: multicast for us: 0x%x\n", ntohl(*dstp))); 14689 /* 14690 * This assumes the we deliver to all streams for multicast 14691 * and broadcast packets. 14692 */ 14693 *dstp = INADDR_BROADCAST; 14694 *ll_multicast = 1; 14695 return (B_FALSE); 14696 drop_pkt: 14697 ip2dbg(("ip_rput: drop pkt\n")); 14698 freemsg(mp); 14699 return (B_TRUE); 14700 } 14701 14702 static boolean_t 14703 ip_rput_process_notdata(queue_t *q, mblk_t **first_mpp, ill_t *ill, 14704 int *ll_multicast, mblk_t **mpp) 14705 { 14706 mblk_t *mp1, *from_mp, *to_mp, *mp, *first_mp; 14707 boolean_t must_copy = B_FALSE; 14708 struct iocblk *iocp; 14709 ipha_t *ipha; 14710 ip_stack_t *ipst = ill->ill_ipst; 14711 14712 #define rptr ((uchar_t *)ipha) 14713 14714 first_mp = *first_mpp; 14715 mp = *mpp; 14716 14717 ASSERT(first_mp == mp); 14718 14719 /* 14720 * if db_ref > 1 then copymsg and free original. Packet may be 14721 * changed and do not want other entity who has a reference to this 14722 * message to trip over the changes. This is a blind change because 14723 * trying to catch all places that might change packet is too 14724 * difficult (since it may be a module above this one) 14725 * 14726 * This corresponds to the non-fast path case. We walk down the full 14727 * chain in this case, and check the db_ref count of all the dblks, 14728 * and do a copymsg if required. It is possible that the db_ref counts 14729 * of the data blocks in the mblk chain can be different. 14730 * For Example, we can get a DL_UNITDATA_IND(M_PROTO) with a db_ref 14731 * count of 1, followed by a M_DATA block with a ref count of 2, if 14732 * 'snoop' is running. 14733 */ 14734 for (mp1 = mp; mp1 != NULL; mp1 = mp1->b_cont) { 14735 if (mp1->b_datap->db_ref > 1) { 14736 must_copy = B_TRUE; 14737 break; 14738 } 14739 } 14740 14741 if (must_copy) { 14742 mp1 = copymsg(mp); 14743 if (mp1 == NULL) { 14744 for (mp1 = mp; mp1 != NULL; 14745 mp1 = mp1->b_cont) { 14746 mp1->b_next = NULL; 14747 mp1->b_prev = NULL; 14748 } 14749 freemsg(mp); 14750 if (ill != NULL) { 14751 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14752 } else { 14753 BUMP_MIB(&ipst->ips_ip_mib, 14754 ipIfStatsInDiscards); 14755 } 14756 return (B_TRUE); 14757 } 14758 for (from_mp = mp, to_mp = mp1; from_mp != NULL; 14759 from_mp = from_mp->b_cont, to_mp = to_mp->b_cont) { 14760 /* Copy b_prev - used by ip_mroute_decap */ 14761 to_mp->b_prev = from_mp->b_prev; 14762 from_mp->b_prev = NULL; 14763 } 14764 *first_mpp = first_mp = mp1; 14765 freemsg(mp); 14766 mp = mp1; 14767 *mpp = mp1; 14768 } 14769 14770 ipha = (ipha_t *)mp->b_rptr; 14771 14772 /* 14773 * previous code has a case for M_DATA. 14774 * We want to check how that happens. 14775 */ 14776 ASSERT(first_mp->b_datap->db_type != M_DATA); 14777 switch (first_mp->b_datap->db_type) { 14778 case M_PROTO: 14779 case M_PCPROTO: 14780 if (((dl_unitdata_ind_t *)rptr)->dl_primitive != 14781 DL_UNITDATA_IND) { 14782 /* Go handle anything other than data elsewhere. */ 14783 ip_rput_dlpi(q, mp); 14784 return (B_TRUE); 14785 } 14786 *ll_multicast = ((dl_unitdata_ind_t *)rptr)->dl_group_address; 14787 /* Ditch the DLPI header. */ 14788 mp1 = mp->b_cont; 14789 ASSERT(first_mp == mp); 14790 *first_mpp = mp1; 14791 freeb(mp); 14792 *mpp = mp1; 14793 return (B_FALSE); 14794 case M_IOCACK: 14795 ip1dbg(("got iocack ")); 14796 iocp = (struct iocblk *)mp->b_rptr; 14797 switch (iocp->ioc_cmd) { 14798 case DL_IOC_HDR_INFO: 14799 ill = (ill_t *)q->q_ptr; 14800 ill_fastpath_ack(ill, mp); 14801 return (B_TRUE); 14802 case SIOCSTUNPARAM: 14803 case OSIOCSTUNPARAM: 14804 /* Go through qwriter_ip */ 14805 break; 14806 case SIOCGTUNPARAM: 14807 case OSIOCGTUNPARAM: 14808 ip_rput_other(NULL, q, mp, NULL); 14809 return (B_TRUE); 14810 default: 14811 putnext(q, mp); 14812 return (B_TRUE); 14813 } 14814 /* FALLTHRU */ 14815 case M_ERROR: 14816 case M_HANGUP: 14817 /* 14818 * Since this is on the ill stream we unconditionally 14819 * bump up the refcount 14820 */ 14821 ill_refhold(ill); 14822 (void) qwriter_ip(NULL, ill, q, mp, ip_rput_other, CUR_OP, 14823 B_FALSE); 14824 return (B_TRUE); 14825 case M_CTL: 14826 if ((MBLKL(first_mp) >= sizeof (da_ipsec_t)) && 14827 (((da_ipsec_t *)first_mp->b_rptr)->da_type == 14828 IPHADA_M_CTL)) { 14829 /* 14830 * It's an IPsec accelerated packet. 14831 * Make sure that the ill from which we received the 14832 * packet has enabled IPsec hardware acceleration. 14833 */ 14834 if (!(ill->ill_capabilities & 14835 (ILL_CAPAB_AH|ILL_CAPAB_ESP))) { 14836 /* IPsec kstats: bean counter */ 14837 freemsg(mp); 14838 return (B_TRUE); 14839 } 14840 14841 /* 14842 * Make mp point to the mblk following the M_CTL, 14843 * then process according to type of mp. 14844 * After this processing, first_mp will point to 14845 * the data-attributes and mp to the pkt following 14846 * the M_CTL. 14847 */ 14848 mp = first_mp->b_cont; 14849 if (mp == NULL) { 14850 freemsg(first_mp); 14851 return (B_TRUE); 14852 } 14853 /* 14854 * A Hardware Accelerated packet can only be M_DATA 14855 * ESP or AH packet. 14856 */ 14857 if (mp->b_datap->db_type != M_DATA) { 14858 /* non-M_DATA IPsec accelerated packet */ 14859 IPSECHW_DEBUG(IPSECHW_PKT, 14860 ("non-M_DATA IPsec accelerated pkt\n")); 14861 freemsg(first_mp); 14862 return (B_TRUE); 14863 } 14864 ipha = (ipha_t *)mp->b_rptr; 14865 if (ipha->ipha_protocol != IPPROTO_AH && 14866 ipha->ipha_protocol != IPPROTO_ESP) { 14867 IPSECHW_DEBUG(IPSECHW_PKT, 14868 ("non-M_DATA IPsec accelerated pkt\n")); 14869 freemsg(first_mp); 14870 return (B_TRUE); 14871 } 14872 *mpp = mp; 14873 return (B_FALSE); 14874 } 14875 putnext(q, mp); 14876 return (B_TRUE); 14877 case M_FLUSH: 14878 if (*mp->b_rptr & FLUSHW) { 14879 *mp->b_rptr &= ~FLUSHR; 14880 qreply(q, mp); 14881 return (B_TRUE); 14882 } 14883 freemsg(mp); 14884 return (B_TRUE); 14885 case M_IOCNAK: 14886 ip1dbg(("got iocnak ")); 14887 iocp = (struct iocblk *)mp->b_rptr; 14888 switch (iocp->ioc_cmd) { 14889 case DL_IOC_HDR_INFO: 14890 case SIOCSTUNPARAM: 14891 case OSIOCSTUNPARAM: 14892 /* 14893 * Since this is on the ill stream we unconditionally 14894 * bump up the refcount 14895 */ 14896 ill_refhold(ill); 14897 (void) qwriter_ip(NULL, ill, q, mp, ip_rput_other, 14898 CUR_OP, B_FALSE); 14899 return (B_TRUE); 14900 case SIOCGTUNPARAM: 14901 case OSIOCGTUNPARAM: 14902 ip_rput_other(NULL, q, mp, NULL); 14903 return (B_TRUE); 14904 default: 14905 break; 14906 } 14907 /* FALLTHRU */ 14908 default: 14909 putnext(q, mp); 14910 return (B_TRUE); 14911 } 14912 } 14913 14914 /* Read side put procedure. Packets coming from the wire arrive here. */ 14915 void 14916 ip_rput(queue_t *q, mblk_t *mp) 14917 { 14918 ill_t *ill; 14919 ip_stack_t *ipst; 14920 14921 TRACE_1(TR_FAC_IP, TR_IP_RPUT_START, "ip_rput_start: q %p", q); 14922 14923 ill = (ill_t *)q->q_ptr; 14924 ipst = ill->ill_ipst; 14925 14926 if (ill->ill_state_flags & (ILL_CONDEMNED | ILL_LL_SUBNET_PENDING)) { 14927 union DL_primitives *dl; 14928 14929 /* 14930 * Things are opening or closing. Only accept DLPI control 14931 * messages. In the open case, the ill->ill_ipif has not yet 14932 * been created. In the close case, things hanging off the 14933 * ill could have been freed already. In either case it 14934 * may not be safe to proceed further. 14935 */ 14936 14937 dl = (union DL_primitives *)mp->b_rptr; 14938 if ((mp->b_datap->db_type != M_PCPROTO) || 14939 (dl->dl_primitive == DL_UNITDATA_IND)) { 14940 /* 14941 * Also SIOC[GS]TUN* ioctls can come here. 14942 */ 14943 inet_freemsg(mp); 14944 TRACE_2(TR_FAC_IP, TR_IP_RPUT_END, 14945 "ip_input_end: q %p (%S)", q, "uninit"); 14946 return; 14947 } 14948 } 14949 14950 /* 14951 * if db_ref > 1 then copymsg and free original. Packet may be 14952 * changed and we do not want the other entity who has a reference to 14953 * this message to trip over the changes. This is a blind change because 14954 * trying to catch all places that might change the packet is too 14955 * difficult. 14956 * 14957 * This corresponds to the fast path case, where we have a chain of 14958 * M_DATA mblks. We check the db_ref count of only the 1st data block 14959 * in the mblk chain. There doesn't seem to be a reason why a device 14960 * driver would send up data with varying db_ref counts in the mblk 14961 * chain. In any case the Fast path is a private interface, and our 14962 * drivers don't do such a thing. Given the above assumption, there is 14963 * no need to walk down the entire mblk chain (which could have a 14964 * potential performance problem) 14965 */ 14966 if (mp->b_datap->db_ref > 1) { 14967 mblk_t *mp1; 14968 boolean_t adjusted = B_FALSE; 14969 IP_STAT(ipst, ip_db_ref); 14970 14971 /* 14972 * The IP_RECVSLLA option depends on having the link layer 14973 * header. First check that: 14974 * a> the underlying device is of type ether, since this 14975 * option is currently supported only over ethernet. 14976 * b> there is enough room to copy over the link layer header. 14977 * 14978 * Once the checks are done, adjust rptr so that the link layer 14979 * header will be copied via copymsg. Note that, IFT_ETHER may 14980 * be returned by some non-ethernet drivers but in this case the 14981 * second check will fail. 14982 */ 14983 if (ill->ill_type == IFT_ETHER && 14984 (mp->b_rptr - mp->b_datap->db_base) >= 14985 sizeof (struct ether_header)) { 14986 mp->b_rptr -= sizeof (struct ether_header); 14987 adjusted = B_TRUE; 14988 } 14989 mp1 = copymsg(mp); 14990 if (mp1 == NULL) { 14991 mp->b_next = NULL; 14992 /* clear b_prev - used by ip_mroute_decap */ 14993 mp->b_prev = NULL; 14994 freemsg(mp); 14995 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 14996 TRACE_2(TR_FAC_IP, TR_IP_RPUT_END, 14997 "ip_rput_end: q %p (%S)", q, "copymsg"); 14998 return; 14999 } 15000 if (adjusted) { 15001 /* 15002 * Copy is done. Restore the pointer in the _new_ mblk 15003 */ 15004 mp1->b_rptr += sizeof (struct ether_header); 15005 } 15006 /* Copy b_prev - used by ip_mroute_decap */ 15007 mp1->b_prev = mp->b_prev; 15008 mp->b_prev = NULL; 15009 freemsg(mp); 15010 mp = mp1; 15011 } 15012 15013 TRACE_2(TR_FAC_IP, TR_IP_RPUT_END, 15014 "ip_rput_end: q %p (%S)", q, "end"); 15015 15016 ip_input(ill, NULL, mp, NULL); 15017 } 15018 15019 /* 15020 * Direct read side procedure capable of dealing with chains. GLDv3 based 15021 * drivers call this function directly with mblk chains while STREAMS 15022 * read side procedure ip_rput() calls this for single packet with ip_ring 15023 * set to NULL to process one packet at a time. 15024 * 15025 * The ill will always be valid if this function is called directly from 15026 * the driver. 15027 * 15028 * If ip_input() is called from GLDv3: 15029 * 15030 * - This must be a non-VLAN IP stream. 15031 * - 'mp' is either an untagged or a special priority-tagged packet. 15032 * - Any VLAN tag that was in the MAC header has been stripped. 15033 * 15034 * If the IP header in packet is not 32-bit aligned, every message in the 15035 * chain will be aligned before further operations. This is required on SPARC 15036 * platform. 15037 */ 15038 /* ARGSUSED */ 15039 void 15040 ip_input(ill_t *ill, ill_rx_ring_t *ip_ring, mblk_t *mp_chain, 15041 struct mac_header_info_s *mhip) 15042 { 15043 ipaddr_t dst = NULL; 15044 ipaddr_t prev_dst; 15045 ire_t *ire = NULL; 15046 ipha_t *ipha; 15047 uint_t pkt_len; 15048 ssize_t len; 15049 uint_t opt_len; 15050 int ll_multicast; 15051 int cgtp_flt_pkt; 15052 queue_t *q = ill->ill_rq; 15053 squeue_t *curr_sqp = NULL; 15054 mblk_t *head = NULL; 15055 mblk_t *tail = NULL; 15056 mblk_t *first_mp; 15057 mblk_t *mp; 15058 mblk_t *dmp; 15059 int cnt = 0; 15060 ip_stack_t *ipst = ill->ill_ipst; 15061 15062 ASSERT(mp_chain != NULL); 15063 ASSERT(ill != NULL); 15064 15065 TRACE_1(TR_FAC_IP, TR_IP_RPUT_START, "ip_input_start: q %p", q); 15066 15067 #define rptr ((uchar_t *)ipha) 15068 15069 while (mp_chain != NULL) { 15070 first_mp = mp = mp_chain; 15071 mp_chain = mp_chain->b_next; 15072 mp->b_next = NULL; 15073 ll_multicast = 0; 15074 15075 /* 15076 * We do ire caching from one iteration to 15077 * another. In the event the packet chain contains 15078 * all packets from the same dst, this caching saves 15079 * an ire_cache_lookup for each of the succeeding 15080 * packets in a packet chain. 15081 */ 15082 prev_dst = dst; 15083 15084 /* 15085 * Check and align the IP header. 15086 */ 15087 if (DB_TYPE(mp) == M_DATA) { 15088 dmp = mp; 15089 } else if (DB_TYPE(mp) == M_PROTO && 15090 *(t_uscalar_t *)mp->b_rptr == DL_UNITDATA_IND) { 15091 dmp = mp->b_cont; 15092 } else { 15093 dmp = NULL; 15094 } 15095 if (dmp != NULL) { 15096 /* 15097 * IP header ptr not aligned? 15098 * OR IP header not complete in first mblk 15099 */ 15100 if (!OK_32PTR(dmp->b_rptr) || 15101 MBLKL(dmp) < IP_SIMPLE_HDR_LENGTH) { 15102 if (!ip_check_and_align_header(q, dmp, ipst)) 15103 continue; 15104 } 15105 } 15106 15107 /* 15108 * ip_input fast path 15109 */ 15110 15111 /* mblk type is not M_DATA */ 15112 if (DB_TYPE(mp) != M_DATA) { 15113 if (ip_rput_process_notdata(q, &first_mp, ill, 15114 &ll_multicast, &mp)) 15115 continue; 15116 } 15117 15118 /* Make sure its an M_DATA and that its aligned */ 15119 ASSERT(DB_TYPE(mp) == M_DATA); 15120 ASSERT(DB_REF(mp) == 1 && OK_32PTR(mp->b_rptr)); 15121 15122 ipha = (ipha_t *)mp->b_rptr; 15123 len = mp->b_wptr - rptr; 15124 pkt_len = ntohs(ipha->ipha_length); 15125 15126 /* 15127 * We must count all incoming packets, even if they end 15128 * up being dropped later on. 15129 */ 15130 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCInReceives); 15131 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCInOctets, pkt_len); 15132 15133 /* multiple mblk or too short */ 15134 len -= pkt_len; 15135 if (len != 0) { 15136 /* 15137 * Make sure we have data length consistent 15138 * with the IP header. 15139 */ 15140 if (mp->b_cont == NULL) { 15141 if (len < 0 || pkt_len < IP_SIMPLE_HDR_LENGTH) { 15142 BUMP_MIB(ill->ill_ip_mib, 15143 ipIfStatsInHdrErrors); 15144 ip2dbg(("ip_input: drop pkt\n")); 15145 freemsg(mp); 15146 continue; 15147 } 15148 mp->b_wptr = rptr + pkt_len; 15149 } else if ((len += msgdsize(mp->b_cont)) != 0) { 15150 if (len < 0 || pkt_len < IP_SIMPLE_HDR_LENGTH) { 15151 BUMP_MIB(ill->ill_ip_mib, 15152 ipIfStatsInHdrErrors); 15153 ip2dbg(("ip_input: drop pkt\n")); 15154 freemsg(mp); 15155 continue; 15156 } 15157 (void) adjmsg(mp, -len); 15158 IP_STAT(ipst, ip_multimblk3); 15159 } 15160 } 15161 15162 /* Obtain the dst of the current packet */ 15163 dst = ipha->ipha_dst; 15164 15165 if (IP_LOOPBACK_ADDR(dst) || 15166 IP_LOOPBACK_ADDR(ipha->ipha_src)) { 15167 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInAddrErrors); 15168 cmn_err(CE_CONT, "dst %X src %X\n", 15169 dst, ipha->ipha_src); 15170 freemsg(mp); 15171 continue; 15172 } 15173 15174 /* 15175 * The event for packets being received from a 'physical' 15176 * interface is placed after validation of the source and/or 15177 * destination address as being local so that packets can be 15178 * redirected to loopback addresses using ipnat. 15179 */ 15180 DTRACE_PROBE4(ip4__physical__in__start, 15181 ill_t *, ill, ill_t *, NULL, 15182 ipha_t *, ipha, mblk_t *, first_mp); 15183 15184 FW_HOOKS(ipst->ips_ip4_physical_in_event, 15185 ipst->ips_ipv4firewall_physical_in, 15186 ill, NULL, ipha, first_mp, mp, ipst); 15187 15188 DTRACE_PROBE1(ip4__physical__in__end, mblk_t *, first_mp); 15189 15190 if (first_mp == NULL) { 15191 continue; 15192 } 15193 dst = ipha->ipha_dst; 15194 15195 /* 15196 * Attach any necessary label information to 15197 * this packet 15198 */ 15199 if (is_system_labeled() && 15200 !tsol_get_pkt_label(mp, IPV4_VERSION)) { 15201 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 15202 freemsg(mp); 15203 continue; 15204 } 15205 15206 /* 15207 * Reuse the cached ire only if the ipha_dst of the previous 15208 * packet is the same as the current packet AND it is not 15209 * INADDR_ANY. 15210 */ 15211 if (!(dst == prev_dst && dst != INADDR_ANY) && 15212 (ire != NULL)) { 15213 ire_refrele(ire); 15214 ire = NULL; 15215 } 15216 opt_len = ipha->ipha_version_and_hdr_length - 15217 IP_SIMPLE_HDR_VERSION; 15218 15219 /* 15220 * Check to see if we can take the fastpath. 15221 * That is possible if the following conditions are met 15222 * o Tsol disabled 15223 * o CGTP disabled 15224 * o ipp_action_count is 0 15225 * o Mobile IP not running 15226 * o no options in the packet 15227 * o not a RSVP packet 15228 * o not a multicast packet 15229 */ 15230 if (!is_system_labeled() && 15231 !ip_cgtp_filter && ipp_action_count == 0 && 15232 ill->ill_mrtun_refcnt == 0 && ill->ill_srcif_refcnt == 0 && 15233 opt_len == 0 && ipha->ipha_protocol != IPPROTO_RSVP && 15234 !ll_multicast && !CLASSD(dst)) { 15235 if (ire == NULL) 15236 ire = ire_cache_lookup(dst, ALL_ZONES, NULL, 15237 ipst); 15238 15239 /* incoming packet is for forwarding */ 15240 if (ire == NULL || (ire->ire_type & IRE_CACHE)) { 15241 ire = ip_fast_forward(ire, dst, ill, mp); 15242 continue; 15243 } 15244 /* incoming packet is for local consumption */ 15245 if (ire->ire_type & IRE_LOCAL) 15246 goto local; 15247 } 15248 15249 /* 15250 * Disable ire caching for anything more complex 15251 * than the simple fast path case we checked for above. 15252 */ 15253 if (ire != NULL) { 15254 ire_refrele(ire); 15255 ire = NULL; 15256 } 15257 15258 /* Full-blown slow path */ 15259 if (opt_len != 0) { 15260 if (len != 0) 15261 IP_STAT(ipst, ip_multimblk4); 15262 else 15263 IP_STAT(ipst, ip_ipoptions); 15264 if (!ip_rput_multimblk_ipoptions(q, ill, mp, &ipha, 15265 &dst, ipst)) 15266 continue; 15267 } 15268 15269 /* 15270 * Invoke the CGTP (multirouting) filtering module to process 15271 * the incoming packet. Packets identified as duplicates 15272 * must be discarded. Filtering is active only if the 15273 * the ip_cgtp_filter ndd variable is non-zero. 15274 * 15275 * Only applies to the shared stack since the filter_ops 15276 * do not carry an ip_stack_t or zoneid. 15277 */ 15278 cgtp_flt_pkt = CGTP_IP_PKT_NOT_CGTP; 15279 if (ip_cgtp_filter && (ip_cgtp_filter_ops != NULL) && 15280 ipst->ips_netstack->netstack_stackid == GLOBAL_NETSTACKID) { 15281 cgtp_flt_pkt = 15282 ip_cgtp_filter_ops->cfo_filter(q, mp); 15283 if (cgtp_flt_pkt == CGTP_IP_PKT_DUPLICATE) { 15284 freemsg(first_mp); 15285 continue; 15286 } 15287 } 15288 15289 /* 15290 * If rsvpd is running, let RSVP daemon handle its processing 15291 * and forwarding of RSVP multicast/unicast packets. 15292 * If rsvpd is not running but mrouted is running, RSVP 15293 * multicast packets are forwarded as multicast traffic 15294 * and RSVP unicast packets are forwarded by unicast router. 15295 * If neither rsvpd nor mrouted is running, RSVP multicast 15296 * packets are not forwarded, but the unicast packets are 15297 * forwarded like unicast traffic. 15298 */ 15299 if (ipha->ipha_protocol == IPPROTO_RSVP && 15300 ipst->ips_ipcl_proto_fanout[IPPROTO_RSVP].connf_head != 15301 NULL) { 15302 /* RSVP packet and rsvpd running. Treat as ours */ 15303 ip2dbg(("ip_input: RSVP for us: 0x%x\n", ntohl(dst))); 15304 /* 15305 * This assumes that we deliver to all streams for 15306 * multicast and broadcast packets. 15307 * We have to force ll_multicast to 1 to handle the 15308 * M_DATA messages passed in from ip_mroute_decap. 15309 */ 15310 dst = INADDR_BROADCAST; 15311 ll_multicast = 1; 15312 } else if (CLASSD(dst)) { 15313 /* packet is multicast */ 15314 mp->b_next = NULL; 15315 if (ip_rput_process_multicast(q, mp, ill, ipha, 15316 &ll_multicast, &dst)) 15317 continue; 15318 } 15319 15320 15321 /* 15322 * Check if the packet is coming from the Mobile IP 15323 * forward tunnel interface 15324 */ 15325 if (ill->ill_srcif_refcnt > 0) { 15326 ire = ire_srcif_table_lookup(dst, IRE_INTERFACE, 15327 NULL, ill, MATCH_IRE_TYPE); 15328 if (ire != NULL && ire->ire_nce->nce_res_mp == NULL && 15329 ire->ire_ipif->ipif_net_type == IRE_IF_RESOLVER) { 15330 15331 /* We need to resolve the link layer info */ 15332 ire_refrele(ire); 15333 ire = NULL; 15334 (void) ip_rput_noire(q, (ill_t *)q->q_ptr, mp, 15335 ll_multicast, dst); 15336 continue; 15337 } 15338 } 15339 15340 if (ire == NULL) { 15341 ire = ire_cache_lookup(dst, ALL_ZONES, 15342 MBLK_GETLABEL(mp), ipst); 15343 } 15344 15345 /* 15346 * If mipagent is running and reverse tunnel is created as per 15347 * mobile node request, then any packet coming through the 15348 * incoming interface from the mobile-node, should be reverse 15349 * tunneled to it's home agent except those that are destined 15350 * to foreign agent only. 15351 * This needs source address based ire lookup. The routing 15352 * entries for source address based lookup are only created by 15353 * mipagent program only when a reverse tunnel is created. 15354 * Reference : RFC2002, RFC2344 15355 */ 15356 if (ill->ill_mrtun_refcnt > 0) { 15357 ipaddr_t srcaddr; 15358 ire_t *tmp_ire; 15359 15360 tmp_ire = ire; /* Save, we might need it later */ 15361 if (ire == NULL || (ire->ire_type != IRE_LOCAL && 15362 ire->ire_type != IRE_BROADCAST)) { 15363 srcaddr = ipha->ipha_src; 15364 ire = ire_mrtun_lookup(srcaddr, ill); 15365 if (ire != NULL) { 15366 /* 15367 * Should not be getting iphada packet 15368 * here. we should only get those for 15369 * IRE_LOCAL traffic, excluded above. 15370 * Fail-safe (drop packet) in the event 15371 * hardware is misbehaving. 15372 */ 15373 if (first_mp != mp) { 15374 /* IPsec KSTATS: beancount me */ 15375 freemsg(first_mp); 15376 } else { 15377 /* 15378 * This packet must be forwarded 15379 * to Reverse Tunnel 15380 */ 15381 ip_mrtun_forward(ire, ill, mp); 15382 } 15383 ire_refrele(ire); 15384 ire = NULL; 15385 if (tmp_ire != NULL) { 15386 ire_refrele(tmp_ire); 15387 tmp_ire = NULL; 15388 } 15389 TRACE_2(TR_FAC_IP, TR_IP_RPUT_END, 15390 "ip_input_end: q %p (%S)", 15391 q, "uninit"); 15392 continue; 15393 } 15394 } 15395 /* 15396 * If this packet is from a non-mobilenode or a 15397 * mobile-node which does not request reverse 15398 * tunnel service 15399 */ 15400 ire = tmp_ire; 15401 } 15402 15403 15404 /* 15405 * If we reach here that means the incoming packet satisfies 15406 * one of the following conditions: 15407 * - packet is from a mobile node which does not request 15408 * reverse tunnel 15409 * - packet is from a non-mobile node, which is the most 15410 * common case 15411 * - packet is from a reverse tunnel enabled mobile node 15412 * and destined to foreign agent only 15413 */ 15414 15415 if (ire == NULL) { 15416 /* 15417 * No IRE for this destination, so it can't be for us. 15418 * Unless we are forwarding, drop the packet. 15419 * We have to let source routed packets through 15420 * since we don't yet know if they are 'ping -l' 15421 * packets i.e. if they will go out over the 15422 * same interface as they came in on. 15423 */ 15424 ire = ip_rput_noire(q, NULL, mp, ll_multicast, dst); 15425 if (ire == NULL) 15426 continue; 15427 } 15428 15429 /* 15430 * Broadcast IRE may indicate either broadcast or 15431 * multicast packet 15432 */ 15433 if (ire->ire_type == IRE_BROADCAST) { 15434 /* 15435 * Skip broadcast checks if packet is UDP multicast; 15436 * we'd rather not enter ip_rput_process_broadcast() 15437 * unless the packet is broadcast for real, since 15438 * that routine is a no-op for multicast. 15439 */ 15440 if (ipha->ipha_protocol != IPPROTO_UDP || 15441 !CLASSD(ipha->ipha_dst)) { 15442 ire = ip_rput_process_broadcast(&q, mp, 15443 ire, ipha, ill, dst, cgtp_flt_pkt, 15444 ll_multicast); 15445 if (ire == NULL) 15446 continue; 15447 } 15448 } else if (ire->ire_stq != NULL) { 15449 /* fowarding? */ 15450 ip_rput_process_forward(q, mp, ire, ipha, ill, 15451 ll_multicast); 15452 /* ip_rput_process_forward consumed the packet */ 15453 continue; 15454 } 15455 15456 local: 15457 /* 15458 * If the queue in the ire is different to the ingress queue 15459 * then we need to check to see if we can accept the packet. 15460 * Note that for multicast packets and broadcast packets sent 15461 * to a broadcast address which is shared between multiple 15462 * interfaces we should not do this since we just got a random 15463 * broadcast ire. 15464 */ 15465 if ((ire->ire_rfq != q) && (ire->ire_type != IRE_BROADCAST)) { 15466 if ((ire = ip_check_multihome(&ipha->ipha_dst, ire, 15467 ill)) == NULL) { 15468 /* Drop packet */ 15469 BUMP_MIB(ill->ill_ip_mib, 15470 ipIfStatsForwProhibits); 15471 freemsg(mp); 15472 continue; 15473 } 15474 if (ire->ire_rfq != NULL) 15475 q = ire->ire_rfq; 15476 } 15477 15478 switch (ipha->ipha_protocol) { 15479 case IPPROTO_TCP: 15480 ASSERT(first_mp == mp); 15481 if ((mp = ip_tcp_input(mp, ipha, ill, B_FALSE, ire, 15482 mp, 0, q, ip_ring)) != NULL) { 15483 if (curr_sqp == NULL) { 15484 curr_sqp = GET_SQUEUE(mp); 15485 ASSERT(cnt == 0); 15486 cnt++; 15487 head = tail = mp; 15488 } else if (curr_sqp == GET_SQUEUE(mp)) { 15489 ASSERT(tail != NULL); 15490 cnt++; 15491 tail->b_next = mp; 15492 tail = mp; 15493 } else { 15494 /* 15495 * A different squeue. Send the 15496 * chain for the previous squeue on 15497 * its way. This shouldn't happen 15498 * often unless interrupt binding 15499 * changes. 15500 */ 15501 IP_STAT(ipst, ip_input_multi_squeue); 15502 squeue_enter_chain(curr_sqp, head, 15503 tail, cnt, SQTAG_IP_INPUT); 15504 curr_sqp = GET_SQUEUE(mp); 15505 head = mp; 15506 tail = mp; 15507 cnt = 1; 15508 } 15509 } 15510 continue; 15511 case IPPROTO_UDP: 15512 ASSERT(first_mp == mp); 15513 ip_udp_input(q, mp, ipha, ire, ill); 15514 continue; 15515 case IPPROTO_SCTP: 15516 ASSERT(first_mp == mp); 15517 ip_sctp_input(mp, ipha, ill, B_FALSE, ire, mp, 0, 15518 q, dst); 15519 /* ire has been released by ip_sctp_input */ 15520 ire = NULL; 15521 continue; 15522 default: 15523 ip_proto_input(q, first_mp, ipha, ire, ill); 15524 continue; 15525 } 15526 } 15527 15528 if (ire != NULL) 15529 ire_refrele(ire); 15530 15531 if (head != NULL) 15532 squeue_enter_chain(curr_sqp, head, tail, cnt, SQTAG_IP_INPUT); 15533 15534 /* 15535 * This code is there just to make netperf/ttcp look good. 15536 * 15537 * Its possible that after being in polling mode (and having cleared 15538 * the backlog), squeues have turned the interrupt frequency higher 15539 * to improve latency at the expense of more CPU utilization (less 15540 * packets per interrupts or more number of interrupts). Workloads 15541 * like ttcp/netperf do manage to tickle polling once in a while 15542 * but for the remaining time, stay in higher interrupt mode since 15543 * their packet arrival rate is pretty uniform and this shows up 15544 * as higher CPU utilization. Since people care about CPU utilization 15545 * while running netperf/ttcp, turn the interrupt frequency back to 15546 * normal/default if polling has not been used in ip_poll_normal_ticks. 15547 */ 15548 if (ip_ring != NULL && (ip_ring->rr_poll_state & ILL_POLLING)) { 15549 if (lbolt >= (ip_ring->rr_poll_time + ip_poll_normal_ticks)) { 15550 ip_ring->rr_poll_state &= ~ILL_POLLING; 15551 ip_ring->rr_blank(ip_ring->rr_handle, 15552 ip_ring->rr_normal_blank_time, 15553 ip_ring->rr_normal_pkt_cnt); 15554 } 15555 } 15556 15557 TRACE_2(TR_FAC_IP, TR_IP_RPUT_END, 15558 "ip_input_end: q %p (%S)", q, "end"); 15559 #undef rptr 15560 } 15561 15562 static void 15563 ip_dlpi_error(ill_t *ill, t_uscalar_t prim, t_uscalar_t dl_err, 15564 t_uscalar_t err) 15565 { 15566 if (dl_err == DL_SYSERR) { 15567 (void) mi_strlog(ill->ill_rq, 1, SL_CONSOLE|SL_ERROR|SL_TRACE, 15568 "%s: %s failed: DL_SYSERR (errno %u)\n", 15569 ill->ill_name, dlpi_prim_str(prim), err); 15570 return; 15571 } 15572 15573 (void) mi_strlog(ill->ill_rq, 1, SL_CONSOLE|SL_ERROR|SL_TRACE, 15574 "%s: %s failed: %s\n", ill->ill_name, dlpi_prim_str(prim), 15575 dlpi_err_str(dl_err)); 15576 } 15577 15578 /* 15579 * ip_rput_dlpi is called by ip_rput to handle all DLPI messages other 15580 * than DL_UNITDATA_IND messages. If we need to process this message 15581 * exclusively, we call qwriter_ip, in which case we also need to call 15582 * ill_refhold before that, since qwriter_ip does an ill_refrele. 15583 */ 15584 void 15585 ip_rput_dlpi(queue_t *q, mblk_t *mp) 15586 { 15587 dl_ok_ack_t *dloa = (dl_ok_ack_t *)mp->b_rptr; 15588 dl_error_ack_t *dlea = (dl_error_ack_t *)dloa; 15589 ill_t *ill; 15590 15591 ip1dbg(("ip_rput_dlpi")); 15592 ill = (ill_t *)q->q_ptr; 15593 switch (dloa->dl_primitive) { 15594 case DL_ERROR_ACK: 15595 ip2dbg(("ip_rput_dlpi(%s): DL_ERROR_ACK %s (0x%x): " 15596 "%s (0x%x), unix %u\n", ill->ill_name, 15597 dlpi_prim_str(dlea->dl_error_primitive), 15598 dlea->dl_error_primitive, 15599 dlpi_err_str(dlea->dl_errno), 15600 dlea->dl_errno, 15601 dlea->dl_unix_errno)); 15602 switch (dlea->dl_error_primitive) { 15603 case DL_UNBIND_REQ: 15604 mutex_enter(&ill->ill_lock); 15605 ill->ill_state_flags &= ~ILL_DL_UNBIND_IN_PROGRESS; 15606 cv_signal(&ill->ill_cv); 15607 mutex_exit(&ill->ill_lock); 15608 /* FALLTHRU */ 15609 case DL_NOTIFY_REQ: 15610 case DL_ATTACH_REQ: 15611 case DL_DETACH_REQ: 15612 case DL_INFO_REQ: 15613 case DL_BIND_REQ: 15614 case DL_ENABMULTI_REQ: 15615 case DL_PHYS_ADDR_REQ: 15616 case DL_CAPABILITY_REQ: 15617 case DL_CONTROL_REQ: 15618 /* 15619 * Refhold the ill to match qwriter_ip which does a 15620 * refrele. Since this is on the ill stream we 15621 * unconditionally bump up the refcount without 15622 * checking for ILL_CAN_LOOKUP 15623 */ 15624 ill_refhold(ill); 15625 (void) qwriter_ip(NULL, ill, q, mp, ip_rput_dlpi_writer, 15626 CUR_OP, B_FALSE); 15627 return; 15628 case DL_DISABMULTI_REQ: 15629 freemsg(mp); /* Don't want to pass this up */ 15630 return; 15631 default: 15632 break; 15633 } 15634 ip_dlpi_error(ill, dlea->dl_error_primitive, 15635 dlea->dl_errno, dlea->dl_unix_errno); 15636 freemsg(mp); 15637 return; 15638 case DL_INFO_ACK: 15639 case DL_BIND_ACK: 15640 case DL_PHYS_ADDR_ACK: 15641 case DL_NOTIFY_ACK: 15642 case DL_CAPABILITY_ACK: 15643 case DL_CONTROL_ACK: 15644 /* 15645 * Refhold the ill to match qwriter_ip which does a refrele 15646 * Since this is on the ill stream we unconditionally 15647 * bump up the refcount without doing ILL_CAN_LOOKUP. 15648 */ 15649 ill_refhold(ill); 15650 (void) qwriter_ip(NULL, ill, q, mp, ip_rput_dlpi_writer, 15651 CUR_OP, B_FALSE); 15652 return; 15653 case DL_NOTIFY_IND: 15654 ill_refhold(ill); 15655 /* 15656 * The DL_NOTIFY_IND is an asynchronous message that has no 15657 * relation to the current ioctl in progress (if any). Hence we 15658 * pass in NEW_OP in this case. 15659 */ 15660 (void) qwriter_ip(NULL, ill, q, mp, ip_rput_dlpi_writer, 15661 NEW_OP, B_FALSE); 15662 return; 15663 case DL_OK_ACK: 15664 ip1dbg(("ip_rput: DL_OK_ACK for %s\n", 15665 dlpi_prim_str((int)dloa->dl_correct_primitive))); 15666 switch (dloa->dl_correct_primitive) { 15667 case DL_UNBIND_REQ: 15668 mutex_enter(&ill->ill_lock); 15669 ill->ill_state_flags &= ~ILL_DL_UNBIND_IN_PROGRESS; 15670 cv_signal(&ill->ill_cv); 15671 mutex_exit(&ill->ill_lock); 15672 /* FALLTHRU */ 15673 case DL_ATTACH_REQ: 15674 case DL_DETACH_REQ: 15675 /* 15676 * Refhold the ill to match qwriter_ip which does a 15677 * refrele. Since this is on the ill stream we 15678 * unconditionally bump up the refcount 15679 */ 15680 ill_refhold(ill); 15681 qwriter_ip(NULL, ill, q, mp, ip_rput_dlpi_writer, 15682 CUR_OP, B_FALSE); 15683 return; 15684 case DL_ENABMULTI_REQ: 15685 if (ill->ill_dlpi_multicast_state == IDS_INPROGRESS) 15686 ill->ill_dlpi_multicast_state = IDS_OK; 15687 break; 15688 15689 } 15690 break; 15691 default: 15692 break; 15693 } 15694 freemsg(mp); 15695 } 15696 15697 /* 15698 * Handling of DLPI messages that require exclusive access to the ipsq. 15699 * 15700 * Need to do ill_pending_mp_release on ioctl completion, which could 15701 * happen here. (along with mi_copy_done) 15702 */ 15703 /* ARGSUSED */ 15704 static void 15705 ip_rput_dlpi_writer(ipsq_t *ipsq, queue_t *q, mblk_t *mp, void *dummy_arg) 15706 { 15707 dl_ok_ack_t *dloa = (dl_ok_ack_t *)mp->b_rptr; 15708 dl_error_ack_t *dlea = (dl_error_ack_t *)dloa; 15709 int err = 0; 15710 ill_t *ill; 15711 ipif_t *ipif = NULL; 15712 mblk_t *mp1 = NULL; 15713 conn_t *connp = NULL; 15714 t_uscalar_t paddrreq; 15715 mblk_t *mp_hw; 15716 boolean_t success; 15717 boolean_t ioctl_aborted = B_FALSE; 15718 boolean_t log = B_TRUE; 15719 hook_nic_event_t *info; 15720 ip_stack_t *ipst; 15721 15722 ip1dbg(("ip_rput_dlpi_writer ..")); 15723 ill = (ill_t *)q->q_ptr; 15724 ASSERT(ipsq == ill->ill_phyint->phyint_ipsq); 15725 15726 ASSERT(IAM_WRITER_ILL(ill)); 15727 15728 ipst = ill->ill_ipst; 15729 15730 /* 15731 * ipsq_pending_mp and ipsq_pending_ipif track each other. i.e. 15732 * both are null or non-null. However we can assert that only 15733 * after grabbing the ipsq_lock. So we don't make any assertion 15734 * here and in other places in the code. 15735 */ 15736 ipif = ipsq->ipsq_pending_ipif; 15737 /* 15738 * The current ioctl could have been aborted by the user and a new 15739 * ioctl to bring up another ill could have started. We could still 15740 * get a response from the driver later. 15741 */ 15742 if (ipif != NULL && ipif->ipif_ill != ill) 15743 ioctl_aborted = B_TRUE; 15744 15745 switch (dloa->dl_primitive) { 15746 case DL_ERROR_ACK: 15747 switch (dlea->dl_error_primitive) { 15748 case DL_UNBIND_REQ: 15749 case DL_ATTACH_REQ: 15750 case DL_DETACH_REQ: 15751 case DL_INFO_REQ: 15752 ill_dlpi_done(ill, dlea->dl_error_primitive); 15753 break; 15754 case DL_NOTIFY_REQ: 15755 ill_dlpi_done(ill, DL_NOTIFY_REQ); 15756 log = B_FALSE; 15757 break; 15758 case DL_PHYS_ADDR_REQ: 15759 /* 15760 * For IPv6 only, there are two additional 15761 * phys_addr_req's sent to the driver to get the 15762 * IPv6 token and lla. This allows IP to acquire 15763 * the hardware address format for a given interface 15764 * without having built in knowledge of the hardware 15765 * address. ill_phys_addr_pend keeps track of the last 15766 * DL_PAR sent so we know which response we are 15767 * dealing with. ill_dlpi_done will update 15768 * ill_phys_addr_pend when it sends the next req. 15769 * We don't complete the IOCTL until all three DL_PARs 15770 * have been attempted, so set *_len to 0 and break. 15771 */ 15772 paddrreq = ill->ill_phys_addr_pend; 15773 ill_dlpi_done(ill, DL_PHYS_ADDR_REQ); 15774 if (paddrreq == DL_IPV6_TOKEN) { 15775 ill->ill_token_length = 0; 15776 log = B_FALSE; 15777 break; 15778 } else if (paddrreq == DL_IPV6_LINK_LAYER_ADDR) { 15779 ill->ill_nd_lla_len = 0; 15780 log = B_FALSE; 15781 break; 15782 } 15783 /* 15784 * Something went wrong with the DL_PHYS_ADDR_REQ. 15785 * We presumably have an IOCTL hanging out waiting 15786 * for completion. Find it and complete the IOCTL 15787 * with the error noted. 15788 * However, ill_dl_phys was called on an ill queue 15789 * (from SIOCSLIFNAME), thus conn_pending_ill is not 15790 * set. But the ioctl is known to be pending on ill_wq. 15791 */ 15792 if (!ill->ill_ifname_pending) 15793 break; 15794 ill->ill_ifname_pending = 0; 15795 if (!ioctl_aborted) 15796 mp1 = ipsq_pending_mp_get(ipsq, &connp); 15797 if (mp1 != NULL) { 15798 /* 15799 * This operation (SIOCSLIFNAME) must have 15800 * happened on the ill. Assert there is no conn 15801 */ 15802 ASSERT(connp == NULL); 15803 q = ill->ill_wq; 15804 } 15805 break; 15806 case DL_BIND_REQ: 15807 ill_dlpi_done(ill, DL_BIND_REQ); 15808 if (ill->ill_ifname_pending) 15809 break; 15810 /* 15811 * Something went wrong with the bind. We presumably 15812 * have an IOCTL hanging out waiting for completion. 15813 * Find it, take down the interface that was coming 15814 * up, and complete the IOCTL with the error noted. 15815 */ 15816 if (!ioctl_aborted) 15817 mp1 = ipsq_pending_mp_get(ipsq, &connp); 15818 if (mp1 != NULL) { 15819 /* 15820 * This operation (SIOCSLIFFLAGS) must have 15821 * happened from a conn. 15822 */ 15823 ASSERT(connp != NULL); 15824 q = CONNP_TO_WQ(connp); 15825 if (ill->ill_move_in_progress) { 15826 ILL_CLEAR_MOVE(ill); 15827 } 15828 (void) ipif_down(ipif, NULL, NULL); 15829 /* error is set below the switch */ 15830 } 15831 break; 15832 case DL_ENABMULTI_REQ: 15833 ip1dbg(("DL_ERROR_ACK to enabmulti\n")); 15834 15835 if (ill->ill_dlpi_multicast_state == IDS_INPROGRESS) 15836 ill->ill_dlpi_multicast_state = IDS_FAILED; 15837 if (ill->ill_dlpi_multicast_state == IDS_FAILED) { 15838 ipif_t *ipif; 15839 15840 log = B_FALSE; 15841 printf("ip: joining multicasts failed (%d)" 15842 " on %s - will use link layer " 15843 "broadcasts for multicast\n", 15844 dlea->dl_errno, ill->ill_name); 15845 15846 /* 15847 * Set up the multicast mapping alone. 15848 * writer, so ok to access ill->ill_ipif 15849 * without any lock. 15850 */ 15851 ipif = ill->ill_ipif; 15852 mutex_enter(&ill->ill_phyint->phyint_lock); 15853 ill->ill_phyint->phyint_flags |= 15854 PHYI_MULTI_BCAST; 15855 mutex_exit(&ill->ill_phyint->phyint_lock); 15856 15857 if (!ill->ill_isv6) { 15858 (void) ipif_arp_setup_multicast(ipif, 15859 NULL); 15860 } else { 15861 (void) ipif_ndp_setup_multicast(ipif, 15862 NULL); 15863 } 15864 } 15865 freemsg(mp); /* Don't want to pass this up */ 15866 return; 15867 case DL_CAPABILITY_REQ: 15868 case DL_CONTROL_REQ: 15869 ip1dbg(("ip_rput_dlpi_writer: got DL_ERROR_ACK for " 15870 "DL_CAPABILITY/CONTROL REQ\n")); 15871 ill_dlpi_done(ill, dlea->dl_error_primitive); 15872 ill->ill_dlpi_capab_state = IDS_FAILED; 15873 freemsg(mp); 15874 return; 15875 } 15876 /* 15877 * Note the error for IOCTL completion (mp1 is set when 15878 * ready to complete ioctl). If ill_ifname_pending_err is 15879 * set, an error occured during plumbing (ill_ifname_pending), 15880 * so we want to report that error. 15881 * 15882 * NOTE: there are two addtional DL_PHYS_ADDR_REQ's 15883 * (DL_IPV6_TOKEN and DL_IPV6_LINK_LAYER_ADDR) that are 15884 * expected to get errack'd if the driver doesn't support 15885 * these flags (e.g. ethernet). log will be set to B_FALSE 15886 * if these error conditions are encountered. 15887 */ 15888 if (mp1 != NULL) { 15889 if (ill->ill_ifname_pending_err != 0) { 15890 err = ill->ill_ifname_pending_err; 15891 ill->ill_ifname_pending_err = 0; 15892 } else { 15893 err = dlea->dl_unix_errno ? 15894 dlea->dl_unix_errno : ENXIO; 15895 } 15896 /* 15897 * If we're plumbing an interface and an error hasn't already 15898 * been saved, set ill_ifname_pending_err to the error passed 15899 * up. Ignore the error if log is B_FALSE (see comment above). 15900 */ 15901 } else if (log && ill->ill_ifname_pending && 15902 ill->ill_ifname_pending_err == 0) { 15903 ill->ill_ifname_pending_err = dlea->dl_unix_errno ? 15904 dlea->dl_unix_errno : ENXIO; 15905 } 15906 15907 if (log) 15908 ip_dlpi_error(ill, dlea->dl_error_primitive, 15909 dlea->dl_errno, dlea->dl_unix_errno); 15910 break; 15911 case DL_CAPABILITY_ACK: { 15912 boolean_t reneg_flag = B_FALSE; 15913 /* Call a routine to handle this one. */ 15914 ill_dlpi_done(ill, DL_CAPABILITY_REQ); 15915 /* 15916 * Check if the ACK is due to renegotiation case since we 15917 * will need to send a new CAPABILITY_REQ later. 15918 */ 15919 if (ill->ill_dlpi_capab_state == IDS_RENEG) { 15920 /* This is the ack for a renogiation case */ 15921 reneg_flag = B_TRUE; 15922 ill->ill_dlpi_capab_state = IDS_UNKNOWN; 15923 } 15924 ill_capability_ack(ill, mp); 15925 if (reneg_flag) 15926 ill_capability_probe(ill); 15927 break; 15928 } 15929 case DL_CONTROL_ACK: 15930 /* We treat all of these as "fire and forget" */ 15931 ill_dlpi_done(ill, DL_CONTROL_REQ); 15932 break; 15933 case DL_INFO_ACK: 15934 /* Call a routine to handle this one. */ 15935 ill_dlpi_done(ill, DL_INFO_REQ); 15936 ip_ll_subnet_defaults(ill, mp); 15937 ASSERT(!MUTEX_HELD(&ill->ill_phyint->phyint_ipsq->ipsq_lock)); 15938 return; 15939 case DL_BIND_ACK: 15940 /* 15941 * We should have an IOCTL waiting on this unless 15942 * sent by ill_dl_phys, in which case just return 15943 */ 15944 ill_dlpi_done(ill, DL_BIND_REQ); 15945 if (ill->ill_ifname_pending) 15946 break; 15947 15948 if (!ioctl_aborted) 15949 mp1 = ipsq_pending_mp_get(ipsq, &connp); 15950 if (mp1 == NULL) 15951 break; 15952 /* 15953 * Because mp1 was added by ill_dl_up(), and it always 15954 * passes a valid connp, connp must be valid here. 15955 */ 15956 ASSERT(connp != NULL); 15957 q = CONNP_TO_WQ(connp); 15958 15959 /* 15960 * We are exclusive. So nothing can change even after 15961 * we get the pending mp. If need be we can put it back 15962 * and restart, as in calling ipif_arp_up() below. 15963 */ 15964 ip1dbg(("ip_rput_dlpi: bind_ack %s\n", ill->ill_name)); 15965 15966 mutex_enter(&ill->ill_lock); 15967 15968 ill->ill_dl_up = 1; 15969 15970 if ((info = ill->ill_nic_event_info) != NULL) { 15971 ip2dbg(("ip_rput_dlpi_writer: unexpected nic event %d " 15972 "attached for %s\n", info->hne_event, 15973 ill->ill_name)); 15974 if (info->hne_data != NULL) 15975 kmem_free(info->hne_data, info->hne_datalen); 15976 kmem_free(info, sizeof (hook_nic_event_t)); 15977 } 15978 15979 info = kmem_alloc(sizeof (hook_nic_event_t), KM_NOSLEEP); 15980 if (info != NULL) { 15981 info->hne_nic = ill->ill_phyint->phyint_hook_ifindex; 15982 info->hne_lif = 0; 15983 info->hne_event = NE_UP; 15984 info->hne_data = NULL; 15985 info->hne_datalen = 0; 15986 info->hne_family = ill->ill_isv6 ? 15987 ipst->ips_ipv6_net_data : ipst->ips_ipv4_net_data; 15988 } else 15989 ip2dbg(("ip_rput_dlpi_writer: could not attach UP nic " 15990 "event information for %s (ENOMEM)\n", 15991 ill->ill_name)); 15992 15993 ill->ill_nic_event_info = info; 15994 15995 mutex_exit(&ill->ill_lock); 15996 15997 /* 15998 * Now bring up the resolver; when that is complete, we'll 15999 * create IREs. Note that we intentionally mirror what 16000 * ipif_up() would have done, because we got here by way of 16001 * ill_dl_up(), which stopped ipif_up()'s processing. 16002 */ 16003 if (ill->ill_isv6) { 16004 /* 16005 * v6 interfaces. 16006 * Unlike ARP which has to do another bind 16007 * and attach, once we get here we are 16008 * done with NDP. Except in the case of 16009 * ILLF_XRESOLV, in which case we send an 16010 * AR_INTERFACE_UP to the external resolver. 16011 * If all goes well, the ioctl will complete 16012 * in ip_rput(). If there's an error, we 16013 * complete it here. 16014 */ 16015 err = ipif_ndp_up(ipif, &ipif->ipif_v6lcl_addr); 16016 if (err == 0) { 16017 if (ill->ill_flags & ILLF_XRESOLV) { 16018 mutex_enter(&connp->conn_lock); 16019 mutex_enter(&ill->ill_lock); 16020 success = ipsq_pending_mp_add( 16021 connp, ipif, q, mp1, 0); 16022 mutex_exit(&ill->ill_lock); 16023 mutex_exit(&connp->conn_lock); 16024 if (success) { 16025 err = ipif_resolver_up(ipif, 16026 Res_act_initial); 16027 if (err == EINPROGRESS) { 16028 freemsg(mp); 16029 return; 16030 } 16031 ASSERT(err != 0); 16032 mp1 = ipsq_pending_mp_get(ipsq, 16033 &connp); 16034 ASSERT(mp1 != NULL); 16035 } else { 16036 /* conn has started closing */ 16037 err = EINTR; 16038 } 16039 } else { /* Non XRESOLV interface */ 16040 (void) ipif_resolver_up(ipif, 16041 Res_act_initial); 16042 err = ipif_up_done_v6(ipif); 16043 } 16044 } 16045 } else if (ill->ill_net_type == IRE_IF_RESOLVER) { 16046 /* 16047 * ARP and other v4 external resolvers. 16048 * Leave the pending mblk intact so that 16049 * the ioctl completes in ip_rput(). 16050 */ 16051 mutex_enter(&connp->conn_lock); 16052 mutex_enter(&ill->ill_lock); 16053 success = ipsq_pending_mp_add(connp, ipif, q, mp1, 0); 16054 mutex_exit(&ill->ill_lock); 16055 mutex_exit(&connp->conn_lock); 16056 if (success) { 16057 err = ipif_resolver_up(ipif, Res_act_initial); 16058 if (err == EINPROGRESS) { 16059 freemsg(mp); 16060 return; 16061 } 16062 ASSERT(err != 0); 16063 mp1 = ipsq_pending_mp_get(ipsq, &connp); 16064 } else { 16065 /* The conn has started closing */ 16066 err = EINTR; 16067 } 16068 } else { 16069 /* 16070 * This one is complete. Reply to pending ioctl. 16071 */ 16072 (void) ipif_resolver_up(ipif, Res_act_initial); 16073 err = ipif_up_done(ipif); 16074 } 16075 16076 if ((err == 0) && (ill->ill_up_ipifs)) { 16077 err = ill_up_ipifs(ill, q, mp1); 16078 if (err == EINPROGRESS) { 16079 freemsg(mp); 16080 return; 16081 } 16082 } 16083 16084 if (ill->ill_up_ipifs) { 16085 ill_group_cleanup(ill); 16086 } 16087 16088 break; 16089 case DL_NOTIFY_IND: { 16090 dl_notify_ind_t *notify = (dl_notify_ind_t *)mp->b_rptr; 16091 ire_t *ire; 16092 boolean_t need_ire_walk_v4 = B_FALSE; 16093 boolean_t need_ire_walk_v6 = B_FALSE; 16094 16095 switch (notify->dl_notification) { 16096 case DL_NOTE_PHYS_ADDR: 16097 err = ill_set_phys_addr(ill, mp); 16098 break; 16099 16100 case DL_NOTE_FASTPATH_FLUSH: 16101 ill_fastpath_flush(ill); 16102 break; 16103 16104 case DL_NOTE_SDU_SIZE: 16105 /* 16106 * Change the MTU size of the interface, of all 16107 * attached ipif's, and of all relevant ire's. The 16108 * new value's a uint32_t at notify->dl_data. 16109 * Mtu change Vs. new ire creation - protocol below. 16110 * 16111 * a Mark the ipif as IPIF_CHANGING. 16112 * b Set the new mtu in the ipif. 16113 * c Change the ire_max_frag on all affected ires 16114 * d Unmark the IPIF_CHANGING 16115 * 16116 * To see how the protocol works, assume an interface 16117 * route is also being added simultaneously by 16118 * ip_rt_add and let 'ipif' be the ipif referenced by 16119 * the ire. If the ire is created before step a, 16120 * it will be cleaned up by step c. If the ire is 16121 * created after step d, it will see the new value of 16122 * ipif_mtu. Any attempt to create the ire between 16123 * steps a to d will fail because of the IPIF_CHANGING 16124 * flag. Note that ire_create() is passed a pointer to 16125 * the ipif_mtu, and not the value. During ire_add 16126 * under the bucket lock, the ire_max_frag of the 16127 * new ire being created is set from the ipif/ire from 16128 * which it is being derived. 16129 */ 16130 mutex_enter(&ill->ill_lock); 16131 ill->ill_max_frag = (uint_t)notify->dl_data; 16132 16133 /* 16134 * If an SIOCSLIFLNKINFO has changed the ill_max_mtu 16135 * leave it alone 16136 */ 16137 if (ill->ill_mtu_userspecified) { 16138 mutex_exit(&ill->ill_lock); 16139 break; 16140 } 16141 ill->ill_max_mtu = ill->ill_max_frag; 16142 if (ill->ill_isv6) { 16143 if (ill->ill_max_mtu < IPV6_MIN_MTU) 16144 ill->ill_max_mtu = IPV6_MIN_MTU; 16145 } else { 16146 if (ill->ill_max_mtu < IP_MIN_MTU) 16147 ill->ill_max_mtu = IP_MIN_MTU; 16148 } 16149 for (ipif = ill->ill_ipif; ipif != NULL; 16150 ipif = ipif->ipif_next) { 16151 /* 16152 * Don't override the mtu if the user 16153 * has explicitly set it. 16154 */ 16155 if (ipif->ipif_flags & IPIF_FIXEDMTU) 16156 continue; 16157 ipif->ipif_mtu = (uint_t)notify->dl_data; 16158 if (ipif->ipif_isv6) 16159 ire = ipif_to_ire_v6(ipif); 16160 else 16161 ire = ipif_to_ire(ipif); 16162 if (ire != NULL) { 16163 ire->ire_max_frag = ipif->ipif_mtu; 16164 ire_refrele(ire); 16165 } 16166 if (ipif->ipif_flags & IPIF_UP) { 16167 if (ill->ill_isv6) 16168 need_ire_walk_v6 = B_TRUE; 16169 else 16170 need_ire_walk_v4 = B_TRUE; 16171 } 16172 } 16173 mutex_exit(&ill->ill_lock); 16174 if (need_ire_walk_v4) 16175 ire_walk_v4(ill_mtu_change, (char *)ill, 16176 ALL_ZONES, ipst); 16177 if (need_ire_walk_v6) 16178 ire_walk_v6(ill_mtu_change, (char *)ill, 16179 ALL_ZONES, ipst); 16180 break; 16181 case DL_NOTE_LINK_UP: 16182 case DL_NOTE_LINK_DOWN: { 16183 /* 16184 * We are writer. ill / phyint / ipsq assocs stable. 16185 * The RUNNING flag reflects the state of the link. 16186 */ 16187 phyint_t *phyint = ill->ill_phyint; 16188 uint64_t new_phyint_flags; 16189 boolean_t changed = B_FALSE; 16190 boolean_t went_up; 16191 16192 went_up = notify->dl_notification == DL_NOTE_LINK_UP; 16193 mutex_enter(&phyint->phyint_lock); 16194 new_phyint_flags = went_up ? 16195 phyint->phyint_flags | PHYI_RUNNING : 16196 phyint->phyint_flags & ~PHYI_RUNNING; 16197 if (new_phyint_flags != phyint->phyint_flags) { 16198 phyint->phyint_flags = new_phyint_flags; 16199 changed = B_TRUE; 16200 } 16201 mutex_exit(&phyint->phyint_lock); 16202 /* 16203 * ill_restart_dad handles the DAD restart and routing 16204 * socket notification logic. 16205 */ 16206 if (changed) { 16207 ill_restart_dad(phyint->phyint_illv4, went_up); 16208 ill_restart_dad(phyint->phyint_illv6, went_up); 16209 } 16210 break; 16211 } 16212 case DL_NOTE_PROMISC_ON_PHYS: 16213 IPSECHW_DEBUG(IPSECHW_PKT, ("ip_rput_dlpi_writer: " 16214 "got a DL_NOTE_PROMISC_ON_PHYS\n")); 16215 mutex_enter(&ill->ill_lock); 16216 ill->ill_promisc_on_phys = B_TRUE; 16217 mutex_exit(&ill->ill_lock); 16218 break; 16219 case DL_NOTE_PROMISC_OFF_PHYS: 16220 IPSECHW_DEBUG(IPSECHW_PKT, ("ip_rput_dlpi_writer: " 16221 "got a DL_NOTE_PROMISC_OFF_PHYS\n")); 16222 mutex_enter(&ill->ill_lock); 16223 ill->ill_promisc_on_phys = B_FALSE; 16224 mutex_exit(&ill->ill_lock); 16225 break; 16226 case DL_NOTE_CAPAB_RENEG: 16227 /* 16228 * Something changed on the driver side. 16229 * It wants us to renegotiate the capabilities 16230 * on this ill. The most likely cause is the 16231 * aggregation interface under us where a 16232 * port got added or went away. 16233 * 16234 * We reset the capabilities and set the 16235 * state to IDS_RENG so that when the ack 16236 * comes back, we can start the 16237 * renegotiation process. 16238 */ 16239 ill_capability_reset(ill); 16240 ill->ill_dlpi_capab_state = IDS_RENEG; 16241 break; 16242 default: 16243 ip0dbg(("ip_rput_dlpi_writer: unknown notification " 16244 "type 0x%x for DL_NOTIFY_IND\n", 16245 notify->dl_notification)); 16246 break; 16247 } 16248 16249 /* 16250 * As this is an asynchronous operation, we 16251 * should not call ill_dlpi_done 16252 */ 16253 break; 16254 } 16255 case DL_NOTIFY_ACK: { 16256 dl_notify_ack_t *noteack = (dl_notify_ack_t *)mp->b_rptr; 16257 16258 if (noteack->dl_notifications & DL_NOTE_LINK_UP) 16259 ill->ill_note_link = 1; 16260 ill_dlpi_done(ill, DL_NOTIFY_REQ); 16261 break; 16262 } 16263 case DL_PHYS_ADDR_ACK: { 16264 /* 16265 * As part of plumbing the interface via SIOCSLIFNAME, 16266 * ill_dl_phys() will queue a series of DL_PHYS_ADDR_REQs, 16267 * whose answers we receive here. As each answer is received, 16268 * we call ill_dlpi_done() to dispatch the next request as 16269 * we're processing the current one. Once all answers have 16270 * been received, we use ipsq_pending_mp_get() to dequeue the 16271 * outstanding IOCTL and reply to it. (Because ill_dl_phys() 16272 * is invoked from an ill queue, conn_oper_pending_ill is not 16273 * available, but we know the ioctl is pending on ill_wq.) 16274 */ 16275 uint_t paddrlen, paddroff; 16276 16277 paddrreq = ill->ill_phys_addr_pend; 16278 paddrlen = ((dl_phys_addr_ack_t *)mp->b_rptr)->dl_addr_length; 16279 paddroff = ((dl_phys_addr_ack_t *)mp->b_rptr)->dl_addr_offset; 16280 16281 ill_dlpi_done(ill, DL_PHYS_ADDR_REQ); 16282 if (paddrreq == DL_IPV6_TOKEN) { 16283 /* 16284 * bcopy to low-order bits of ill_token 16285 * 16286 * XXX Temporary hack - currently, all known tokens 16287 * are 64 bits, so I'll cheat for the moment. 16288 */ 16289 bcopy(mp->b_rptr + paddroff, 16290 &ill->ill_token.s6_addr32[2], paddrlen); 16291 ill->ill_token_length = paddrlen; 16292 break; 16293 } else if (paddrreq == DL_IPV6_LINK_LAYER_ADDR) { 16294 ASSERT(ill->ill_nd_lla_mp == NULL); 16295 ill_set_ndmp(ill, mp, paddroff, paddrlen); 16296 mp = NULL; 16297 break; 16298 } 16299 16300 ASSERT(paddrreq == DL_CURR_PHYS_ADDR); 16301 ASSERT(ill->ill_phys_addr_mp == NULL); 16302 if (!ill->ill_ifname_pending) 16303 break; 16304 ill->ill_ifname_pending = 0; 16305 if (!ioctl_aborted) 16306 mp1 = ipsq_pending_mp_get(ipsq, &connp); 16307 if (mp1 != NULL) { 16308 ASSERT(connp == NULL); 16309 q = ill->ill_wq; 16310 } 16311 /* 16312 * If any error acks received during the plumbing sequence, 16313 * ill_ifname_pending_err will be set. Break out and send up 16314 * the error to the pending ioctl. 16315 */ 16316 if (ill->ill_ifname_pending_err != 0) { 16317 err = ill->ill_ifname_pending_err; 16318 ill->ill_ifname_pending_err = 0; 16319 break; 16320 } 16321 16322 ill->ill_phys_addr_mp = mp; 16323 ill->ill_phys_addr = mp->b_rptr + paddroff; 16324 mp = NULL; 16325 16326 /* 16327 * If paddrlen is zero, the DLPI provider doesn't support 16328 * physical addresses. The other two tests were historical 16329 * workarounds for bugs in our former PPP implementation, but 16330 * now other things have grown dependencies on them -- e.g., 16331 * the tun module specifies a dl_addr_length of zero in its 16332 * DL_BIND_ACK, but then specifies an incorrect value in its 16333 * DL_PHYS_ADDR_ACK. These bogus checks need to be removed, 16334 * but only after careful testing ensures that all dependent 16335 * broken DLPI providers have been fixed. 16336 */ 16337 if (paddrlen == 0 || ill->ill_phys_addr_length == 0 || 16338 ill->ill_phys_addr_length == IP_ADDR_LEN) { 16339 ill->ill_phys_addr = NULL; 16340 } else if (paddrlen != ill->ill_phys_addr_length) { 16341 ip0dbg(("DL_PHYS_ADDR_ACK: got addrlen %d, expected %d", 16342 paddrlen, ill->ill_phys_addr_length)); 16343 err = EINVAL; 16344 break; 16345 } 16346 16347 if (ill->ill_nd_lla_mp == NULL) { 16348 if ((mp_hw = copyb(ill->ill_phys_addr_mp)) == NULL) { 16349 err = ENOMEM; 16350 break; 16351 } 16352 ill_set_ndmp(ill, mp_hw, paddroff, paddrlen); 16353 } 16354 16355 /* 16356 * Set the interface token. If the zeroth interface address 16357 * is unspecified, then set it to the link local address. 16358 */ 16359 if (IN6_IS_ADDR_UNSPECIFIED(&ill->ill_token)) 16360 (void) ill_setdefaulttoken(ill); 16361 16362 ASSERT(ill->ill_ipif->ipif_id == 0); 16363 if (ipif != NULL && 16364 IN6_IS_ADDR_UNSPECIFIED(&ipif->ipif_v6lcl_addr)) { 16365 (void) ipif_setlinklocal(ipif); 16366 } 16367 break; 16368 } 16369 case DL_OK_ACK: 16370 ip2dbg(("DL_OK_ACK %s (0x%x)\n", 16371 dlpi_prim_str((int)dloa->dl_correct_primitive), 16372 dloa->dl_correct_primitive)); 16373 switch (dloa->dl_correct_primitive) { 16374 case DL_UNBIND_REQ: 16375 case DL_ATTACH_REQ: 16376 case DL_DETACH_REQ: 16377 ill_dlpi_done(ill, dloa->dl_correct_primitive); 16378 break; 16379 } 16380 break; 16381 default: 16382 break; 16383 } 16384 16385 freemsg(mp); 16386 if (mp1 != NULL) { 16387 /* 16388 * The operation must complete without EINPROGRESS 16389 * since ipsq_pending_mp_get() has removed the mblk 16390 * from ipsq_pending_mp. Otherwise, the operation 16391 * will be stuck forever in the ipsq. 16392 */ 16393 ASSERT(err != EINPROGRESS); 16394 16395 switch (ipsq->ipsq_current_ioctl) { 16396 case 0: 16397 ipsq_current_finish(ipsq); 16398 break; 16399 16400 case SIOCLIFADDIF: 16401 case SIOCSLIFNAME: 16402 ip_ioctl_finish(q, mp1, err, COPYOUT, ipsq); 16403 break; 16404 16405 default: 16406 ip_ioctl_finish(q, mp1, err, NO_COPYOUT, ipsq); 16407 break; 16408 } 16409 } 16410 } 16411 16412 /* 16413 * ip_rput_other is called by ip_rput to handle messages modifying the global 16414 * state in IP. Normally called as writer. Exception SIOCGTUNPARAM (shared) 16415 */ 16416 /* ARGSUSED */ 16417 void 16418 ip_rput_other(ipsq_t *ipsq, queue_t *q, mblk_t *mp, void *dummy_arg) 16419 { 16420 ill_t *ill; 16421 struct iocblk *iocp; 16422 mblk_t *mp1; 16423 conn_t *connp = NULL; 16424 16425 ip1dbg(("ip_rput_other ")); 16426 ill = (ill_t *)q->q_ptr; 16427 /* 16428 * This routine is not a writer in the case of SIOCGTUNPARAM 16429 * in which case ipsq is NULL. 16430 */ 16431 if (ipsq != NULL) { 16432 ASSERT(IAM_WRITER_IPSQ(ipsq)); 16433 ASSERT(ipsq == ill->ill_phyint->phyint_ipsq); 16434 } 16435 16436 switch (mp->b_datap->db_type) { 16437 case M_ERROR: 16438 case M_HANGUP: 16439 /* 16440 * The device has a problem. We force the ILL down. It can 16441 * be brought up again manually using SIOCSIFFLAGS (via 16442 * ifconfig or equivalent). 16443 */ 16444 ASSERT(ipsq != NULL); 16445 if (mp->b_rptr < mp->b_wptr) 16446 ill->ill_error = (int)(*mp->b_rptr & 0xFF); 16447 if (ill->ill_error == 0) 16448 ill->ill_error = ENXIO; 16449 if (!ill_down_start(q, mp)) 16450 return; 16451 ipif_all_down_tail(ipsq, q, mp, NULL); 16452 break; 16453 case M_IOCACK: 16454 iocp = (struct iocblk *)mp->b_rptr; 16455 ASSERT(iocp->ioc_cmd != DL_IOC_HDR_INFO); 16456 switch (iocp->ioc_cmd) { 16457 case SIOCSTUNPARAM: 16458 case OSIOCSTUNPARAM: 16459 ASSERT(ipsq != NULL); 16460 /* 16461 * Finish socket ioctl passed through to tun. 16462 * We should have an IOCTL waiting on this. 16463 */ 16464 mp1 = ipsq_pending_mp_get(ipsq, &connp); 16465 if (ill->ill_isv6) { 16466 struct iftun_req *ta; 16467 16468 /* 16469 * if a source or destination is 16470 * being set, try and set the link 16471 * local address for the tunnel 16472 */ 16473 ta = (struct iftun_req *)mp->b_cont-> 16474 b_cont->b_rptr; 16475 if (ta->ifta_flags & (IFTUN_SRC | IFTUN_DST)) { 16476 ipif_set_tun_llink(ill, ta); 16477 } 16478 16479 } 16480 if (mp1 != NULL) { 16481 /* 16482 * Now copy back the b_next/b_prev used by 16483 * mi code for the mi_copy* functions. 16484 * See ip_sioctl_tunparam() for the reason. 16485 * Also protect against missing b_cont. 16486 */ 16487 if (mp->b_cont != NULL) { 16488 mp->b_cont->b_next = 16489 mp1->b_cont->b_next; 16490 mp->b_cont->b_prev = 16491 mp1->b_cont->b_prev; 16492 } 16493 inet_freemsg(mp1); 16494 ASSERT(connp != NULL); 16495 ip_ioctl_finish(CONNP_TO_WQ(connp), mp, 16496 iocp->ioc_error, NO_COPYOUT, ipsq); 16497 } else { 16498 ASSERT(connp == NULL); 16499 putnext(q, mp); 16500 } 16501 break; 16502 case SIOCGTUNPARAM: 16503 case OSIOCGTUNPARAM: 16504 /* 16505 * This is really M_IOCDATA from the tunnel driver. 16506 * convert back and complete the ioctl. 16507 * We should have an IOCTL waiting on this. 16508 */ 16509 mp1 = ill_pending_mp_get(ill, &connp, iocp->ioc_id); 16510 if (mp1) { 16511 /* 16512 * Now copy back the b_next/b_prev used by 16513 * mi code for the mi_copy* functions. 16514 * See ip_sioctl_tunparam() for the reason. 16515 * Also protect against missing b_cont. 16516 */ 16517 if (mp->b_cont != NULL) { 16518 mp->b_cont->b_next = 16519 mp1->b_cont->b_next; 16520 mp->b_cont->b_prev = 16521 mp1->b_cont->b_prev; 16522 } 16523 inet_freemsg(mp1); 16524 if (iocp->ioc_error == 0) 16525 mp->b_datap->db_type = M_IOCDATA; 16526 ASSERT(connp != NULL); 16527 ip_ioctl_finish(CONNP_TO_WQ(connp), mp, 16528 iocp->ioc_error, COPYOUT, NULL); 16529 } else { 16530 ASSERT(connp == NULL); 16531 putnext(q, mp); 16532 } 16533 break; 16534 default: 16535 break; 16536 } 16537 break; 16538 case M_IOCNAK: 16539 iocp = (struct iocblk *)mp->b_rptr; 16540 16541 switch (iocp->ioc_cmd) { 16542 int mode; 16543 16544 case DL_IOC_HDR_INFO: 16545 /* 16546 * If this was the first attempt turn of the 16547 * fastpath probing. 16548 */ 16549 mutex_enter(&ill->ill_lock); 16550 if (ill->ill_dlpi_fastpath_state == IDS_INPROGRESS) { 16551 ill->ill_dlpi_fastpath_state = IDS_FAILED; 16552 mutex_exit(&ill->ill_lock); 16553 ill_fastpath_nack(ill); 16554 ip1dbg(("ip_rput: DLPI fastpath off on " 16555 "interface %s\n", 16556 ill->ill_name)); 16557 } else { 16558 mutex_exit(&ill->ill_lock); 16559 } 16560 freemsg(mp); 16561 break; 16562 case SIOCSTUNPARAM: 16563 case OSIOCSTUNPARAM: 16564 ASSERT(ipsq != NULL); 16565 /* 16566 * Finish socket ioctl passed through to tun 16567 * We should have an IOCTL waiting on this. 16568 */ 16569 /* FALLTHRU */ 16570 case SIOCGTUNPARAM: 16571 case OSIOCGTUNPARAM: 16572 /* 16573 * This is really M_IOCDATA from the tunnel driver. 16574 * convert back and complete the ioctl. 16575 * We should have an IOCTL waiting on this. 16576 */ 16577 if (iocp->ioc_cmd == SIOCGTUNPARAM || 16578 iocp->ioc_cmd == OSIOCGTUNPARAM) { 16579 mp1 = ill_pending_mp_get(ill, &connp, 16580 iocp->ioc_id); 16581 mode = COPYOUT; 16582 ipsq = NULL; 16583 } else { 16584 mp1 = ipsq_pending_mp_get(ipsq, &connp); 16585 mode = NO_COPYOUT; 16586 } 16587 if (mp1 != NULL) { 16588 /* 16589 * Now copy back the b_next/b_prev used by 16590 * mi code for the mi_copy* functions. 16591 * See ip_sioctl_tunparam() for the reason. 16592 * Also protect against missing b_cont. 16593 */ 16594 if (mp->b_cont != NULL) { 16595 mp->b_cont->b_next = 16596 mp1->b_cont->b_next; 16597 mp->b_cont->b_prev = 16598 mp1->b_cont->b_prev; 16599 } 16600 inet_freemsg(mp1); 16601 if (iocp->ioc_error == 0) 16602 iocp->ioc_error = EINVAL; 16603 ASSERT(connp != NULL); 16604 ip_ioctl_finish(CONNP_TO_WQ(connp), mp, 16605 iocp->ioc_error, mode, ipsq); 16606 } else { 16607 ASSERT(connp == NULL); 16608 putnext(q, mp); 16609 } 16610 break; 16611 default: 16612 break; 16613 } 16614 default: 16615 break; 16616 } 16617 } 16618 16619 /* 16620 * NOTE : This function does not ire_refrele the ire argument passed in. 16621 * 16622 * IPQoS notes 16623 * IP policy is invoked twice for a forwarded packet, once on the read side 16624 * and again on the write side if both, IPP_FWD_IN and IPP_FWD_OUT are 16625 * enabled. An additional parameter, in_ill, has been added for this purpose. 16626 * Note that in_ill could be NULL when called from ip_rput_forward_multicast 16627 * because ip_mroute drops this information. 16628 * 16629 */ 16630 void 16631 ip_rput_forward(ire_t *ire, ipha_t *ipha, mblk_t *mp, ill_t *in_ill) 16632 { 16633 uint32_t pkt_len; 16634 queue_t *q; 16635 uint32_t sum; 16636 #define rptr ((uchar_t *)ipha) 16637 uint32_t max_frag; 16638 uint32_t ill_index; 16639 ill_t *out_ill; 16640 mib2_ipIfStatsEntry_t *mibptr; 16641 ip_stack_t *ipst = in_ill->ill_ipst; 16642 16643 /* Get the ill_index of the incoming ILL */ 16644 ill_index = (in_ill != NULL) ? in_ill->ill_phyint->phyint_ifindex : 0; 16645 mibptr = (in_ill != NULL) ? in_ill->ill_ip_mib : &ipst->ips_ip_mib; 16646 16647 /* Initiate Read side IPPF processing */ 16648 if (IPP_ENABLED(IPP_FWD_IN, ipst)) { 16649 ip_process(IPP_FWD_IN, &mp, ill_index); 16650 if (mp == NULL) { 16651 ip2dbg(("ip_rput_forward: pkt dropped/deferred "\ 16652 "during IPPF processing\n")); 16653 return; 16654 } 16655 } 16656 16657 pkt_len = ntohs(ipha->ipha_length); 16658 16659 /* Adjust the checksum to reflect the ttl decrement. */ 16660 sum = (int)ipha->ipha_hdr_checksum + IP_HDR_CSUM_TTL_ADJUST; 16661 ipha->ipha_hdr_checksum = (uint16_t)(sum + (sum >> 16)); 16662 16663 if (ipha->ipha_ttl-- <= 1) { 16664 if (ip_csum_hdr(ipha)) { 16665 BUMP_MIB(mibptr, ipIfStatsInCksumErrs); 16666 goto drop_pkt; 16667 } 16668 /* 16669 * Note: ire_stq this will be NULL for multicast 16670 * datagrams using the long path through arp (the IRE 16671 * is not an IRE_CACHE). This should not cause 16672 * problems since we don't generate ICMP errors for 16673 * multicast packets. 16674 */ 16675 BUMP_MIB(mibptr, ipIfStatsForwProhibits); 16676 q = ire->ire_stq; 16677 if (q != NULL) { 16678 /* Sent by forwarding path, and router is global zone */ 16679 icmp_time_exceeded(q, mp, ICMP_TTL_EXCEEDED, 16680 GLOBAL_ZONEID, ipst); 16681 } else 16682 freemsg(mp); 16683 return; 16684 } 16685 16686 /* 16687 * Don't forward if the interface is down 16688 */ 16689 if (ire->ire_ipif->ipif_ill->ill_ipif_up_count == 0) { 16690 BUMP_MIB(mibptr, ipIfStatsInDiscards); 16691 ip2dbg(("ip_rput_forward:interface is down\n")); 16692 goto drop_pkt; 16693 } 16694 16695 /* Get the ill_index of the outgoing ILL */ 16696 ill_index = ire->ire_ipif->ipif_ill->ill_phyint->phyint_ifindex; 16697 16698 out_ill = ire->ire_ipif->ipif_ill; 16699 16700 DTRACE_PROBE4(ip4__forwarding__start, 16701 ill_t *, in_ill, ill_t *, out_ill, ipha_t *, ipha, mblk_t *, mp); 16702 16703 FW_HOOKS(ipst->ips_ip4_forwarding_event, 16704 ipst->ips_ipv4firewall_forwarding, 16705 in_ill, out_ill, ipha, mp, mp, ipst); 16706 16707 DTRACE_PROBE1(ip4__forwarding__end, mblk_t *, mp); 16708 16709 if (mp == NULL) 16710 return; 16711 pkt_len = ntohs(ipha->ipha_length); 16712 16713 if (is_system_labeled()) { 16714 mblk_t *mp1; 16715 16716 if ((mp1 = tsol_ip_forward(ire, mp)) == NULL) { 16717 BUMP_MIB(mibptr, ipIfStatsForwProhibits); 16718 goto drop_pkt; 16719 } 16720 /* Size may have changed */ 16721 mp = mp1; 16722 ipha = (ipha_t *)mp->b_rptr; 16723 pkt_len = ntohs(ipha->ipha_length); 16724 } 16725 16726 /* Check if there are options to update */ 16727 if (!IS_SIMPLE_IPH(ipha)) { 16728 if (ip_csum_hdr(ipha)) { 16729 BUMP_MIB(mibptr, ipIfStatsInCksumErrs); 16730 goto drop_pkt; 16731 } 16732 if (ip_rput_forward_options(mp, ipha, ire, ipst)) { 16733 BUMP_MIB(mibptr, ipIfStatsForwProhibits); 16734 return; 16735 } 16736 16737 ipha->ipha_hdr_checksum = 0; 16738 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 16739 } 16740 max_frag = ire->ire_max_frag; 16741 if (pkt_len > max_frag) { 16742 /* 16743 * It needs fragging on its way out. We haven't 16744 * verified the header checksum yet. Since we 16745 * are going to put a surely good checksum in the 16746 * outgoing header, we have to make sure that it 16747 * was good coming in. 16748 */ 16749 if (ip_csum_hdr(ipha)) { 16750 BUMP_MIB(mibptr, ipIfStatsInCksumErrs); 16751 goto drop_pkt; 16752 } 16753 /* Initiate Write side IPPF processing */ 16754 if (IPP_ENABLED(IPP_FWD_OUT, ipst)) { 16755 ip_process(IPP_FWD_OUT, &mp, ill_index); 16756 if (mp == NULL) { 16757 ip2dbg(("ip_rput_forward: pkt dropped/deferred"\ 16758 " during IPPF processing\n")); 16759 return; 16760 } 16761 } 16762 ip_wput_frag(ire, mp, IB_PKT, max_frag, 0, GLOBAL_ZONEID, ipst); 16763 ip2dbg(("ip_rput_forward:sent to ip_wput_frag\n")); 16764 return; 16765 } 16766 16767 DTRACE_PROBE4(ip4__physical__out__start, ill_t *, NULL, 16768 ill_t *, out_ill, ipha_t *, ipha, mblk_t *, mp); 16769 FW_HOOKS(ipst->ips_ip4_physical_out_event, 16770 ipst->ips_ipv4firewall_physical_out, 16771 NULL, out_ill, ipha, mp, mp, ipst); 16772 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, mp); 16773 if (mp == NULL) 16774 return; 16775 16776 mp->b_prev = (mblk_t *)IPP_FWD_OUT; 16777 ip1dbg(("ip_rput_forward: Calling ip_xmit_v4\n")); 16778 (void) ip_xmit_v4(mp, ire, NULL, B_FALSE); 16779 /* ip_xmit_v4 always consumes the packet */ 16780 return; 16781 16782 drop_pkt:; 16783 ip1dbg(("ip_rput_forward: drop pkt\n")); 16784 freemsg(mp); 16785 #undef rptr 16786 } 16787 16788 void 16789 ip_rput_forward_multicast(ipaddr_t dst, mblk_t *mp, ipif_t *ipif) 16790 { 16791 ire_t *ire; 16792 ip_stack_t *ipst = ipif->ipif_ill->ill_ipst; 16793 16794 ASSERT(!ipif->ipif_isv6); 16795 /* 16796 * Find an IRE which matches the destination and the outgoing 16797 * queue in the cache table. All we need is an IRE_CACHE which 16798 * is pointing at ipif->ipif_ill. If it is part of some ill group, 16799 * then it is enough to have some IRE_CACHE in the group. 16800 */ 16801 if (ipif->ipif_flags & IPIF_POINTOPOINT) 16802 dst = ipif->ipif_pp_dst_addr; 16803 16804 ire = ire_ctable_lookup(dst, 0, 0, ipif, ALL_ZONES, MBLK_GETLABEL(mp), 16805 MATCH_IRE_ILL_GROUP | MATCH_IRE_SECATTR, ipst); 16806 if (ire == NULL) { 16807 /* 16808 * Mark this packet to make it be delivered to 16809 * ip_rput_forward after the new ire has been 16810 * created. 16811 */ 16812 mp->b_prev = NULL; 16813 mp->b_next = mp; 16814 ip_newroute_ipif(ipif->ipif_ill->ill_wq, mp, ipif, dst, 16815 NULL, 0, GLOBAL_ZONEID, &zero_info); 16816 } else { 16817 ip_rput_forward(ire, (ipha_t *)mp->b_rptr, mp, NULL); 16818 IRE_REFRELE(ire); 16819 } 16820 } 16821 16822 /* Update any source route, record route or timestamp options */ 16823 static int 16824 ip_rput_forward_options(mblk_t *mp, ipha_t *ipha, ire_t *ire, ip_stack_t *ipst) 16825 { 16826 ipoptp_t opts; 16827 uchar_t *opt; 16828 uint8_t optval; 16829 uint8_t optlen; 16830 ipaddr_t dst; 16831 uint32_t ts; 16832 ire_t *dst_ire = NULL; 16833 ire_t *tmp_ire = NULL; 16834 timestruc_t now; 16835 16836 ip2dbg(("ip_rput_forward_options\n")); 16837 dst = ipha->ipha_dst; 16838 for (optval = ipoptp_first(&opts, ipha); 16839 optval != IPOPT_EOL; 16840 optval = ipoptp_next(&opts)) { 16841 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 16842 opt = opts.ipoptp_cur; 16843 optlen = opts.ipoptp_len; 16844 ip2dbg(("ip_rput_forward_options: opt %d, len %d\n", 16845 optval, opts.ipoptp_len)); 16846 switch (optval) { 16847 uint32_t off; 16848 case IPOPT_SSRR: 16849 case IPOPT_LSRR: 16850 /* Check if adminstratively disabled */ 16851 if (!ipst->ips_ip_forward_src_routed) { 16852 if (ire->ire_stq != NULL) { 16853 /* 16854 * Sent by forwarding path, and router 16855 * is global zone 16856 */ 16857 icmp_unreachable(ire->ire_stq, mp, 16858 ICMP_SOURCE_ROUTE_FAILED, 16859 GLOBAL_ZONEID, ipst); 16860 } else { 16861 ip0dbg(("ip_rput_forward_options: " 16862 "unable to send unreach\n")); 16863 freemsg(mp); 16864 } 16865 return (-1); 16866 } 16867 16868 dst_ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, 16869 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 16870 if (dst_ire == NULL) { 16871 /* 16872 * Must be partial since ip_rput_options 16873 * checked for strict. 16874 */ 16875 break; 16876 } 16877 off = opt[IPOPT_OFFSET]; 16878 off--; 16879 redo_srr: 16880 if (optlen < IP_ADDR_LEN || 16881 off > optlen - IP_ADDR_LEN) { 16882 /* End of source route */ 16883 ip1dbg(( 16884 "ip_rput_forward_options: end of SR\n")); 16885 ire_refrele(dst_ire); 16886 break; 16887 } 16888 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 16889 bcopy(&ire->ire_src_addr, (char *)opt + off, 16890 IP_ADDR_LEN); 16891 ip1dbg(("ip_rput_forward_options: next hop 0x%x\n", 16892 ntohl(dst))); 16893 16894 /* 16895 * Check if our address is present more than 16896 * once as consecutive hops in source route. 16897 */ 16898 tmp_ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, 16899 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 16900 if (tmp_ire != NULL) { 16901 ire_refrele(tmp_ire); 16902 off += IP_ADDR_LEN; 16903 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 16904 goto redo_srr; 16905 } 16906 ipha->ipha_dst = dst; 16907 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 16908 ire_refrele(dst_ire); 16909 break; 16910 case IPOPT_RR: 16911 off = opt[IPOPT_OFFSET]; 16912 off--; 16913 if (optlen < IP_ADDR_LEN || 16914 off > optlen - IP_ADDR_LEN) { 16915 /* No more room - ignore */ 16916 ip1dbg(( 16917 "ip_rput_forward_options: end of RR\n")); 16918 break; 16919 } 16920 bcopy(&ire->ire_src_addr, (char *)opt + off, 16921 IP_ADDR_LEN); 16922 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 16923 break; 16924 case IPOPT_TS: 16925 /* Insert timestamp if there is room */ 16926 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 16927 case IPOPT_TS_TSONLY: 16928 off = IPOPT_TS_TIMELEN; 16929 break; 16930 case IPOPT_TS_PRESPEC: 16931 case IPOPT_TS_PRESPEC_RFC791: 16932 /* Verify that the address matched */ 16933 off = opt[IPOPT_OFFSET] - 1; 16934 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 16935 dst_ire = ire_ctable_lookup(dst, 0, 16936 IRE_LOCAL, NULL, ALL_ZONES, NULL, 16937 MATCH_IRE_TYPE, ipst); 16938 if (dst_ire == NULL) { 16939 /* Not for us */ 16940 break; 16941 } 16942 ire_refrele(dst_ire); 16943 /* FALLTHRU */ 16944 case IPOPT_TS_TSANDADDR: 16945 off = IP_ADDR_LEN + IPOPT_TS_TIMELEN; 16946 break; 16947 default: 16948 /* 16949 * ip_*put_options should have already 16950 * dropped this packet. 16951 */ 16952 cmn_err(CE_PANIC, "ip_rput_forward_options: " 16953 "unknown IT - bug in ip_rput_options?\n"); 16954 return (0); /* Keep "lint" happy */ 16955 } 16956 if (opt[IPOPT_OFFSET] - 1 + off > optlen) { 16957 /* Increase overflow counter */ 16958 off = (opt[IPOPT_POS_OV_FLG] >> 4) + 1; 16959 opt[IPOPT_POS_OV_FLG] = 16960 (uint8_t)((opt[IPOPT_POS_OV_FLG] & 0x0F) | 16961 (off << 4)); 16962 break; 16963 } 16964 off = opt[IPOPT_OFFSET] - 1; 16965 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 16966 case IPOPT_TS_PRESPEC: 16967 case IPOPT_TS_PRESPEC_RFC791: 16968 case IPOPT_TS_TSANDADDR: 16969 bcopy(&ire->ire_src_addr, 16970 (char *)opt + off, IP_ADDR_LEN); 16971 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 16972 /* FALLTHRU */ 16973 case IPOPT_TS_TSONLY: 16974 off = opt[IPOPT_OFFSET] - 1; 16975 /* Compute # of milliseconds since midnight */ 16976 gethrestime(&now); 16977 ts = (now.tv_sec % (24 * 60 * 60)) * 1000 + 16978 now.tv_nsec / (NANOSEC / MILLISEC); 16979 bcopy(&ts, (char *)opt + off, IPOPT_TS_TIMELEN); 16980 opt[IPOPT_OFFSET] += IPOPT_TS_TIMELEN; 16981 break; 16982 } 16983 break; 16984 } 16985 } 16986 return (0); 16987 } 16988 16989 /* 16990 * This is called after processing at least one of AH/ESP headers. 16991 * 16992 * NOTE: the ill corresponding to ipsec_in_ill_index may not be 16993 * the actual, physical interface on which the packet was received, 16994 * but, when ip_strict_dst_multihoming is set to 1, could be the 16995 * interface which had the ipha_dst configured when the packet went 16996 * through ip_rput. The ill_index corresponding to the recv_ill 16997 * is saved in ipsec_in_rill_index 16998 * 16999 * NOTE2: The "ire" argument is only used in IPv4 cases. This function 17000 * cannot assume "ire" points to valid data for any IPv6 cases. 17001 */ 17002 void 17003 ip_fanout_proto_again(mblk_t *ipsec_mp, ill_t *ill, ill_t *recv_ill, ire_t *ire) 17004 { 17005 mblk_t *mp; 17006 ipaddr_t dst; 17007 in6_addr_t *v6dstp; 17008 ipha_t *ipha; 17009 ip6_t *ip6h; 17010 ipsec_in_t *ii; 17011 boolean_t ill_need_rele = B_FALSE; 17012 boolean_t rill_need_rele = B_FALSE; 17013 boolean_t ire_need_rele = B_FALSE; 17014 netstack_t *ns; 17015 ip_stack_t *ipst; 17016 17017 ii = (ipsec_in_t *)ipsec_mp->b_rptr; 17018 ASSERT(ii->ipsec_in_ill_index != 0); 17019 ns = ii->ipsec_in_ns; 17020 ASSERT(ii->ipsec_in_ns != NULL); 17021 ipst = ns->netstack_ip; 17022 17023 mp = ipsec_mp->b_cont; 17024 ASSERT(mp != NULL); 17025 17026 17027 if (ill == NULL) { 17028 ASSERT(recv_ill == NULL); 17029 /* 17030 * We need to get the original queue on which ip_rput_local 17031 * or ip_rput_data_v6 was called. 17032 */ 17033 ill = ill_lookup_on_ifindex(ii->ipsec_in_ill_index, 17034 !ii->ipsec_in_v4, NULL, NULL, NULL, NULL, ipst); 17035 ill_need_rele = B_TRUE; 17036 17037 if (ii->ipsec_in_ill_index != ii->ipsec_in_rill_index) { 17038 recv_ill = ill_lookup_on_ifindex( 17039 ii->ipsec_in_rill_index, !ii->ipsec_in_v4, 17040 NULL, NULL, NULL, NULL, ipst); 17041 rill_need_rele = B_TRUE; 17042 } else { 17043 recv_ill = ill; 17044 } 17045 17046 if ((ill == NULL) || (recv_ill == NULL)) { 17047 ip0dbg(("ip_fanout_proto_again: interface " 17048 "disappeared\n")); 17049 if (ill != NULL) 17050 ill_refrele(ill); 17051 if (recv_ill != NULL) 17052 ill_refrele(recv_ill); 17053 freemsg(ipsec_mp); 17054 return; 17055 } 17056 } 17057 17058 ASSERT(ill != NULL && recv_ill != NULL); 17059 17060 if (mp->b_datap->db_type == M_CTL) { 17061 /* 17062 * AH/ESP is returning the ICMP message after 17063 * removing their headers. Fanout again till 17064 * it gets to the right protocol. 17065 */ 17066 if (ii->ipsec_in_v4) { 17067 icmph_t *icmph; 17068 int iph_hdr_length; 17069 int hdr_length; 17070 17071 ipha = (ipha_t *)mp->b_rptr; 17072 iph_hdr_length = IPH_HDR_LENGTH(ipha); 17073 icmph = (icmph_t *)&mp->b_rptr[iph_hdr_length]; 17074 ipha = (ipha_t *)&icmph[1]; 17075 hdr_length = IPH_HDR_LENGTH(ipha); 17076 /* 17077 * icmp_inbound_error_fanout may need to do pullupmsg. 17078 * Reset the type to M_DATA. 17079 */ 17080 mp->b_datap->db_type = M_DATA; 17081 icmp_inbound_error_fanout(ill->ill_rq, ill, ipsec_mp, 17082 icmph, ipha, iph_hdr_length, hdr_length, B_TRUE, 17083 B_FALSE, ill, ii->ipsec_in_zoneid); 17084 } else { 17085 icmp6_t *icmp6; 17086 int hdr_length; 17087 17088 ip6h = (ip6_t *)mp->b_rptr; 17089 /* Don't call hdr_length_v6() unless you have to. */ 17090 if (ip6h->ip6_nxt != IPPROTO_ICMPV6) 17091 hdr_length = ip_hdr_length_v6(mp, ip6h); 17092 else 17093 hdr_length = IPV6_HDR_LEN; 17094 17095 icmp6 = (icmp6_t *)(&mp->b_rptr[hdr_length]); 17096 /* 17097 * icmp_inbound_error_fanout_v6 may need to do 17098 * pullupmsg. Reset the type to M_DATA. 17099 */ 17100 mp->b_datap->db_type = M_DATA; 17101 icmp_inbound_error_fanout_v6(ill->ill_rq, ipsec_mp, 17102 ip6h, icmp6, ill, B_TRUE, ii->ipsec_in_zoneid); 17103 } 17104 if (ill_need_rele) 17105 ill_refrele(ill); 17106 if (rill_need_rele) 17107 ill_refrele(recv_ill); 17108 return; 17109 } 17110 17111 if (ii->ipsec_in_v4) { 17112 ipha = (ipha_t *)mp->b_rptr; 17113 dst = ipha->ipha_dst; 17114 if (CLASSD(dst)) { 17115 /* 17116 * Multicast has to be delivered to all streams. 17117 */ 17118 dst = INADDR_BROADCAST; 17119 } 17120 17121 if (ire == NULL) { 17122 ire = ire_cache_lookup(dst, ii->ipsec_in_zoneid, 17123 MBLK_GETLABEL(mp), ipst); 17124 if (ire == NULL) { 17125 if (ill_need_rele) 17126 ill_refrele(ill); 17127 if (rill_need_rele) 17128 ill_refrele(recv_ill); 17129 ip1dbg(("ip_fanout_proto_again: " 17130 "IRE not found")); 17131 freemsg(ipsec_mp); 17132 return; 17133 } 17134 ire_need_rele = B_TRUE; 17135 } 17136 17137 switch (ipha->ipha_protocol) { 17138 case IPPROTO_UDP: 17139 ip_udp_input(ill->ill_rq, ipsec_mp, ipha, ire, 17140 recv_ill); 17141 if (ire_need_rele) 17142 ire_refrele(ire); 17143 break; 17144 case IPPROTO_TCP: 17145 if (!ire_need_rele) 17146 IRE_REFHOLD(ire); 17147 mp = ip_tcp_input(mp, ipha, ill, B_TRUE, 17148 ire, ipsec_mp, 0, ill->ill_rq, NULL); 17149 IRE_REFRELE(ire); 17150 if (mp != NULL) 17151 squeue_enter_chain(GET_SQUEUE(mp), mp, 17152 mp, 1, SQTAG_IP_PROTO_AGAIN); 17153 break; 17154 case IPPROTO_SCTP: 17155 if (!ire_need_rele) 17156 IRE_REFHOLD(ire); 17157 ip_sctp_input(mp, ipha, ill, B_TRUE, ire, 17158 ipsec_mp, 0, ill->ill_rq, dst); 17159 break; 17160 default: 17161 ip_proto_input(ill->ill_rq, ipsec_mp, ipha, ire, 17162 recv_ill); 17163 if (ire_need_rele) 17164 ire_refrele(ire); 17165 break; 17166 } 17167 } else { 17168 uint32_t rput_flags = 0; 17169 17170 ip6h = (ip6_t *)mp->b_rptr; 17171 v6dstp = &ip6h->ip6_dst; 17172 /* 17173 * XXX Assumes ip_rput_v6 sets ll_multicast only for multicast 17174 * address. 17175 * 17176 * Currently, we don't store that state in the IPSEC_IN 17177 * message, and we may need to. 17178 */ 17179 rput_flags |= (IN6_IS_ADDR_MULTICAST(v6dstp) ? 17180 IP6_IN_LLMCAST : 0); 17181 ip_rput_data_v6(ill->ill_rq, ill, ipsec_mp, ip6h, rput_flags, 17182 NULL, NULL); 17183 } 17184 if (ill_need_rele) 17185 ill_refrele(ill); 17186 if (rill_need_rele) 17187 ill_refrele(recv_ill); 17188 } 17189 17190 /* 17191 * Call ill_frag_timeout to do garbage collection. ill_frag_timeout 17192 * returns 'true' if there are still fragments left on the queue, in 17193 * which case we restart the timer. 17194 */ 17195 void 17196 ill_frag_timer(void *arg) 17197 { 17198 ill_t *ill = (ill_t *)arg; 17199 boolean_t frag_pending; 17200 ip_stack_t *ipst = ill->ill_ipst; 17201 17202 mutex_enter(&ill->ill_lock); 17203 ASSERT(!ill->ill_fragtimer_executing); 17204 if (ill->ill_state_flags & ILL_CONDEMNED) { 17205 ill->ill_frag_timer_id = 0; 17206 mutex_exit(&ill->ill_lock); 17207 return; 17208 } 17209 ill->ill_fragtimer_executing = 1; 17210 mutex_exit(&ill->ill_lock); 17211 17212 frag_pending = ill_frag_timeout(ill, ipst->ips_ip_g_frag_timeout); 17213 17214 /* 17215 * Restart the timer, if we have fragments pending or if someone 17216 * wanted us to be scheduled again. 17217 */ 17218 mutex_enter(&ill->ill_lock); 17219 ill->ill_fragtimer_executing = 0; 17220 ill->ill_frag_timer_id = 0; 17221 if (frag_pending || ill->ill_fragtimer_needrestart) 17222 ill_frag_timer_start(ill); 17223 mutex_exit(&ill->ill_lock); 17224 } 17225 17226 void 17227 ill_frag_timer_start(ill_t *ill) 17228 { 17229 ip_stack_t *ipst = ill->ill_ipst; 17230 17231 ASSERT(MUTEX_HELD(&ill->ill_lock)); 17232 17233 /* If the ill is closing or opening don't proceed */ 17234 if (ill->ill_state_flags & ILL_CONDEMNED) 17235 return; 17236 17237 if (ill->ill_fragtimer_executing) { 17238 /* 17239 * ill_frag_timer is currently executing. Just record the 17240 * the fact that we want the timer to be restarted. 17241 * ill_frag_timer will post a timeout before it returns, 17242 * ensuring it will be called again. 17243 */ 17244 ill->ill_fragtimer_needrestart = 1; 17245 return; 17246 } 17247 17248 if (ill->ill_frag_timer_id == 0) { 17249 /* 17250 * The timer is neither running nor is the timeout handler 17251 * executing. Post a timeout so that ill_frag_timer will be 17252 * called 17253 */ 17254 ill->ill_frag_timer_id = timeout(ill_frag_timer, ill, 17255 MSEC_TO_TICK(ipst->ips_ip_g_frag_timo_ms >> 1)); 17256 ill->ill_fragtimer_needrestart = 0; 17257 } 17258 } 17259 17260 /* 17261 * This routine is needed for loopback when forwarding multicasts. 17262 * 17263 * IPQoS Notes: 17264 * IPPF processing is done in fanout routines. 17265 * Policy processing is done only if IPP_lOCAL_IN is enabled. Further, 17266 * processing for IPSec packets is done when it comes back in clear. 17267 * NOTE : The callers of this function need to do the ire_refrele for the 17268 * ire that is being passed in. 17269 */ 17270 void 17271 ip_proto_input(queue_t *q, mblk_t *mp, ipha_t *ipha, ire_t *ire, 17272 ill_t *recv_ill) 17273 { 17274 ill_t *ill = (ill_t *)q->q_ptr; 17275 uint32_t sum; 17276 uint32_t u1; 17277 uint32_t u2; 17278 int hdr_length; 17279 boolean_t mctl_present; 17280 mblk_t *first_mp = mp; 17281 mblk_t *hada_mp = NULL; 17282 ipha_t *inner_ipha; 17283 ip_stack_t *ipst; 17284 17285 ASSERT(recv_ill != NULL); 17286 ipst = recv_ill->ill_ipst; 17287 17288 TRACE_1(TR_FAC_IP, TR_IP_RPUT_LOCL_START, 17289 "ip_rput_locl_start: q %p", q); 17290 17291 ASSERT(ire->ire_ipversion == IPV4_VERSION); 17292 ASSERT(ill != NULL); 17293 17294 17295 #define rptr ((uchar_t *)ipha) 17296 #define iphs ((uint16_t *)ipha) 17297 17298 /* 17299 * no UDP or TCP packet should come here anymore. 17300 */ 17301 ASSERT((ipha->ipha_protocol != IPPROTO_TCP) && 17302 (ipha->ipha_protocol != IPPROTO_UDP)); 17303 17304 EXTRACT_PKT_MP(mp, first_mp, mctl_present); 17305 if (mctl_present && 17306 ((da_ipsec_t *)first_mp->b_rptr)->da_type == IPHADA_M_CTL) { 17307 ASSERT(MBLKL(first_mp) >= sizeof (da_ipsec_t)); 17308 17309 /* 17310 * It's an IPsec accelerated packet. 17311 * Keep a pointer to the data attributes around until 17312 * we allocate the ipsec_info_t. 17313 */ 17314 IPSECHW_DEBUG(IPSECHW_PKT, 17315 ("ip_rput_local: inbound HW accelerated IPsec pkt\n")); 17316 hada_mp = first_mp; 17317 hada_mp->b_cont = NULL; 17318 /* 17319 * Since it is accelerated, it comes directly from 17320 * the ill and the data attributes is followed by 17321 * the packet data. 17322 */ 17323 ASSERT(mp->b_datap->db_type != M_CTL); 17324 first_mp = mp; 17325 mctl_present = B_FALSE; 17326 } 17327 17328 /* 17329 * IF M_CTL is not present, then ipsec_in_is_secure 17330 * should return B_TRUE. There is a case where loopback 17331 * packets has an M_CTL in the front with all the 17332 * IPSEC options set to IPSEC_PREF_NEVER - which means 17333 * ipsec_in_is_secure will return B_FALSE. As loopback 17334 * packets never comes here, it is safe to ASSERT the 17335 * following. 17336 */ 17337 ASSERT(!mctl_present || ipsec_in_is_secure(first_mp)); 17338 17339 17340 /* u1 is # words of IP options */ 17341 u1 = ipha->ipha_version_and_hdr_length - (uchar_t)((IP_VERSION << 4) 17342 + IP_SIMPLE_HDR_LENGTH_IN_WORDS); 17343 17344 if (u1) { 17345 if (!ip_options_cksum(q, ill, mp, ipha, ire, ipst)) { 17346 if (hada_mp != NULL) 17347 freemsg(hada_mp); 17348 return; 17349 } 17350 } else { 17351 /* Check the IP header checksum. */ 17352 #define uph ((uint16_t *)ipha) 17353 sum = uph[0] + uph[1] + uph[2] + uph[3] + uph[4] + uph[5] + 17354 uph[6] + uph[7] + uph[8] + uph[9]; 17355 #undef uph 17356 /* finish doing IP checksum */ 17357 sum = (sum & 0xFFFF) + (sum >> 16); 17358 sum = ~(sum + (sum >> 16)) & 0xFFFF; 17359 /* 17360 * Don't verify header checksum if this packet is coming 17361 * back from AH/ESP as we already did it. 17362 */ 17363 if (!mctl_present && (sum && sum != 0xFFFF)) { 17364 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInCksumErrs); 17365 goto drop_pkt; 17366 } 17367 } 17368 17369 /* 17370 * Count for SNMP of inbound packets for ire. As ip_proto_input 17371 * might be called more than once for secure packets, count only 17372 * the first time. 17373 */ 17374 if (!mctl_present) { 17375 UPDATE_IB_PKT_COUNT(ire); 17376 ire->ire_last_used_time = lbolt; 17377 } 17378 17379 /* Check for fragmentation offset. */ 17380 u2 = ntohs(ipha->ipha_fragment_offset_and_flags); 17381 u1 = u2 & (IPH_MF | IPH_OFFSET); 17382 if (u1) { 17383 /* 17384 * We re-assemble fragments before we do the AH/ESP 17385 * processing. Thus, M_CTL should not be present 17386 * while we are re-assembling. 17387 */ 17388 ASSERT(!mctl_present); 17389 ASSERT(first_mp == mp); 17390 if (!ip_rput_fragment(q, &mp, ipha, NULL, NULL)) { 17391 return; 17392 } 17393 /* 17394 * Make sure that first_mp points back to mp as 17395 * the mp we came in with could have changed in 17396 * ip_rput_fragment(). 17397 */ 17398 ipha = (ipha_t *)mp->b_rptr; 17399 first_mp = mp; 17400 } 17401 17402 /* 17403 * Clear hardware checksumming flag as it is currently only 17404 * used by TCP and UDP. 17405 */ 17406 DB_CKSUMFLAGS(mp) = 0; 17407 17408 /* Now we have a complete datagram, destined for this machine. */ 17409 u1 = IPH_HDR_LENGTH(ipha); 17410 switch (ipha->ipha_protocol) { 17411 case IPPROTO_ICMP: { 17412 ire_t *ire_zone; 17413 ilm_t *ilm; 17414 mblk_t *mp1; 17415 zoneid_t last_zoneid; 17416 17417 if (CLASSD(ipha->ipha_dst) && 17418 !(recv_ill->ill_phyint->phyint_flags & PHYI_LOOPBACK)) { 17419 ASSERT(ire->ire_type == IRE_BROADCAST); 17420 /* 17421 * In the multicast case, applications may have joined 17422 * the group from different zones, so we need to deliver 17423 * the packet to each of them. Loop through the 17424 * multicast memberships structures (ilm) on the receive 17425 * ill and send a copy of the packet up each matching 17426 * one. However, we don't do this for multicasts sent on 17427 * the loopback interface (PHYI_LOOPBACK flag set) as 17428 * they must stay in the sender's zone. 17429 * 17430 * ilm_add_v6() ensures that ilms in the same zone are 17431 * contiguous in the ill_ilm list. We use this property 17432 * to avoid sending duplicates needed when two 17433 * applications in the same zone join the same group on 17434 * different logical interfaces: we ignore the ilm if 17435 * its zoneid is the same as the last matching one. 17436 * In addition, the sending of the packet for 17437 * ire_zoneid is delayed until all of the other ilms 17438 * have been exhausted. 17439 */ 17440 last_zoneid = -1; 17441 ILM_WALKER_HOLD(recv_ill); 17442 for (ilm = recv_ill->ill_ilm; ilm != NULL; 17443 ilm = ilm->ilm_next) { 17444 if ((ilm->ilm_flags & ILM_DELETED) || 17445 ipha->ipha_dst != ilm->ilm_addr || 17446 ilm->ilm_zoneid == last_zoneid || 17447 ilm->ilm_zoneid == ire->ire_zoneid || 17448 ilm->ilm_zoneid == ALL_ZONES || 17449 !(ilm->ilm_ipif->ipif_flags & IPIF_UP)) 17450 continue; 17451 mp1 = ip_copymsg(first_mp); 17452 if (mp1 == NULL) 17453 continue; 17454 icmp_inbound(q, mp1, B_TRUE, ill, 17455 0, sum, mctl_present, B_TRUE, 17456 recv_ill, ilm->ilm_zoneid); 17457 last_zoneid = ilm->ilm_zoneid; 17458 } 17459 ILM_WALKER_RELE(recv_ill); 17460 } else if (ire->ire_type == IRE_BROADCAST) { 17461 /* 17462 * In the broadcast case, there may be many zones 17463 * which need a copy of the packet delivered to them. 17464 * There is one IRE_BROADCAST per broadcast address 17465 * and per zone; we walk those using a helper function. 17466 * In addition, the sending of the packet for ire is 17467 * delayed until all of the other ires have been 17468 * processed. 17469 */ 17470 IRB_REFHOLD(ire->ire_bucket); 17471 ire_zone = NULL; 17472 while ((ire_zone = ire_get_next_bcast_ire(ire_zone, 17473 ire)) != NULL) { 17474 mp1 = ip_copymsg(first_mp); 17475 if (mp1 == NULL) 17476 continue; 17477 17478 UPDATE_IB_PKT_COUNT(ire_zone); 17479 ire_zone->ire_last_used_time = lbolt; 17480 icmp_inbound(q, mp1, B_TRUE, ill, 17481 0, sum, mctl_present, B_TRUE, 17482 recv_ill, ire_zone->ire_zoneid); 17483 } 17484 IRB_REFRELE(ire->ire_bucket); 17485 } 17486 icmp_inbound(q, first_mp, (ire->ire_type == IRE_BROADCAST), 17487 ill, 0, sum, mctl_present, B_TRUE, recv_ill, 17488 ire->ire_zoneid); 17489 TRACE_2(TR_FAC_IP, TR_IP_RPUT_LOCL_END, 17490 "ip_rput_locl_end: q %p (%S)", q, "icmp"); 17491 return; 17492 } 17493 case IPPROTO_IGMP: 17494 /* 17495 * If we are not willing to accept IGMP packets in clear, 17496 * then check with global policy. 17497 */ 17498 if (ipst->ips_igmp_accept_clear_messages == 0) { 17499 first_mp = ipsec_check_global_policy(first_mp, NULL, 17500 ipha, NULL, mctl_present, ipst->ips_netstack); 17501 if (first_mp == NULL) 17502 return; 17503 } 17504 if (is_system_labeled() && !tsol_can_accept_raw(mp, B_TRUE)) { 17505 freemsg(first_mp); 17506 ip1dbg(("ip_proto_input: zone all cannot accept raw")); 17507 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17508 return; 17509 } 17510 if ((mp = igmp_input(q, mp, ill)) == NULL) { 17511 /* Bad packet - discarded by igmp_input */ 17512 TRACE_2(TR_FAC_IP, TR_IP_RPUT_LOCL_END, 17513 "ip_rput_locl_end: q %p (%S)", q, "igmp"); 17514 if (mctl_present) 17515 freeb(first_mp); 17516 return; 17517 } 17518 /* 17519 * igmp_input() may have returned the pulled up message. 17520 * So first_mp and ipha need to be reinitialized. 17521 */ 17522 ipha = (ipha_t *)mp->b_rptr; 17523 if (mctl_present) 17524 first_mp->b_cont = mp; 17525 else 17526 first_mp = mp; 17527 if (ipst->ips_ipcl_proto_fanout[ipha->ipha_protocol]. 17528 connf_head != NULL) { 17529 /* No user-level listener for IGMP packets */ 17530 goto drop_pkt; 17531 } 17532 /* deliver to local raw users */ 17533 break; 17534 case IPPROTO_PIM: 17535 /* 17536 * If we are not willing to accept PIM packets in clear, 17537 * then check with global policy. 17538 */ 17539 if (ipst->ips_pim_accept_clear_messages == 0) { 17540 first_mp = ipsec_check_global_policy(first_mp, NULL, 17541 ipha, NULL, mctl_present, ipst->ips_netstack); 17542 if (first_mp == NULL) 17543 return; 17544 } 17545 if (is_system_labeled() && !tsol_can_accept_raw(mp, B_TRUE)) { 17546 freemsg(first_mp); 17547 ip1dbg(("ip_proto_input: zone all cannot accept PIM")); 17548 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17549 return; 17550 } 17551 if (pim_input(q, mp, ill) != 0) { 17552 /* Bad packet - discarded by pim_input */ 17553 TRACE_2(TR_FAC_IP, TR_IP_RPUT_LOCL_END, 17554 "ip_rput_locl_end: q %p (%S)", q, "pim"); 17555 if (mctl_present) 17556 freeb(first_mp); 17557 return; 17558 } 17559 17560 /* 17561 * pim_input() may have pulled up the message so ipha needs to 17562 * be reinitialized. 17563 */ 17564 ipha = (ipha_t *)mp->b_rptr; 17565 if (ipst->ips_ipcl_proto_fanout[ipha->ipha_protocol]. 17566 connf_head != NULL) { 17567 /* No user-level listener for PIM packets */ 17568 goto drop_pkt; 17569 } 17570 /* deliver to local raw users */ 17571 break; 17572 case IPPROTO_ENCAP: 17573 /* 17574 * Handle self-encapsulated packets (IP-in-IP where 17575 * the inner addresses == the outer addresses). 17576 */ 17577 hdr_length = IPH_HDR_LENGTH(ipha); 17578 if ((uchar_t *)ipha + hdr_length + sizeof (ipha_t) > 17579 mp->b_wptr) { 17580 if (!pullupmsg(mp, (uchar_t *)ipha + hdr_length + 17581 sizeof (ipha_t) - mp->b_rptr)) { 17582 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17583 freemsg(first_mp); 17584 return; 17585 } 17586 ipha = (ipha_t *)mp->b_rptr; 17587 } 17588 inner_ipha = (ipha_t *)((uchar_t *)ipha + hdr_length); 17589 /* 17590 * Check the sanity of the inner IP header. 17591 */ 17592 if ((IPH_HDR_VERSION(inner_ipha) != IPV4_VERSION)) { 17593 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17594 freemsg(first_mp); 17595 return; 17596 } 17597 if (IPH_HDR_LENGTH(inner_ipha) < sizeof (ipha_t)) { 17598 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17599 freemsg(first_mp); 17600 return; 17601 } 17602 if (inner_ipha->ipha_src == ipha->ipha_src && 17603 inner_ipha->ipha_dst == ipha->ipha_dst) { 17604 ipsec_in_t *ii; 17605 17606 /* 17607 * Self-encapsulated tunnel packet. Remove 17608 * the outer IP header and fanout again. 17609 * We also need to make sure that the inner 17610 * header is pulled up until options. 17611 */ 17612 mp->b_rptr = (uchar_t *)inner_ipha; 17613 ipha = inner_ipha; 17614 hdr_length = IPH_HDR_LENGTH(ipha); 17615 if ((uchar_t *)ipha + hdr_length > mp->b_wptr) { 17616 if (!pullupmsg(mp, (uchar_t *)ipha + 17617 + hdr_length - mp->b_rptr)) { 17618 freemsg(first_mp); 17619 return; 17620 } 17621 ipha = (ipha_t *)mp->b_rptr; 17622 } 17623 if (!mctl_present) { 17624 ASSERT(first_mp == mp); 17625 /* 17626 * This means that somebody is sending 17627 * Self-encapsualted packets without AH/ESP. 17628 * If AH/ESP was present, we would have already 17629 * allocated the first_mp. 17630 */ 17631 first_mp = ipsec_in_alloc(B_TRUE, 17632 ipst->ips_netstack); 17633 if (first_mp == NULL) { 17634 ip1dbg(("ip_proto_input: IPSEC_IN " 17635 "allocation failure.\n")); 17636 BUMP_MIB(ill->ill_ip_mib, 17637 ipIfStatsInDiscards); 17638 freemsg(mp); 17639 return; 17640 } 17641 first_mp->b_cont = mp; 17642 } 17643 /* 17644 * We generally store the ill_index if we need to 17645 * do IPSEC processing as we lose the ill queue when 17646 * we come back. But in this case, we never should 17647 * have to store the ill_index here as it should have 17648 * been stored previously when we processed the 17649 * AH/ESP header in this routine or for non-ipsec 17650 * cases, we still have the queue. But for some bad 17651 * packets from the wire, we can get to IPSEC after 17652 * this and we better store the index for that case. 17653 */ 17654 ill = (ill_t *)q->q_ptr; 17655 ii = (ipsec_in_t *)first_mp->b_rptr; 17656 ii->ipsec_in_ill_index = 17657 ill->ill_phyint->phyint_ifindex; 17658 ii->ipsec_in_rill_index = 17659 recv_ill->ill_phyint->phyint_ifindex; 17660 if (ii->ipsec_in_decaps) { 17661 /* 17662 * This packet is self-encapsulated multiple 17663 * times. We don't want to recurse infinitely. 17664 * To keep it simple, drop the packet. 17665 */ 17666 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17667 freemsg(first_mp); 17668 return; 17669 } 17670 ii->ipsec_in_decaps = B_TRUE; 17671 ip_fanout_proto_again(first_mp, recv_ill, recv_ill, 17672 ire); 17673 return; 17674 } 17675 break; 17676 case IPPROTO_AH: 17677 case IPPROTO_ESP: { 17678 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 17679 17680 /* 17681 * Fast path for AH/ESP. If this is the first time 17682 * we are sending a datagram to AH/ESP, allocate 17683 * a IPSEC_IN message and prepend it. Otherwise, 17684 * just fanout. 17685 */ 17686 17687 int ipsec_rc; 17688 ipsec_in_t *ii; 17689 netstack_t *ns = ipst->ips_netstack; 17690 17691 IP_STAT(ipst, ipsec_proto_ahesp); 17692 if (!mctl_present) { 17693 ASSERT(first_mp == mp); 17694 first_mp = ipsec_in_alloc(B_TRUE, ns); 17695 if (first_mp == NULL) { 17696 ip1dbg(("ip_proto_input: IPSEC_IN " 17697 "allocation failure.\n")); 17698 freemsg(hada_mp); /* okay ifnull */ 17699 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17700 freemsg(mp); 17701 return; 17702 } 17703 /* 17704 * Store the ill_index so that when we come back 17705 * from IPSEC we ride on the same queue. 17706 */ 17707 ill = (ill_t *)q->q_ptr; 17708 ii = (ipsec_in_t *)first_mp->b_rptr; 17709 ii->ipsec_in_ill_index = 17710 ill->ill_phyint->phyint_ifindex; 17711 ii->ipsec_in_rill_index = 17712 recv_ill->ill_phyint->phyint_ifindex; 17713 first_mp->b_cont = mp; 17714 /* 17715 * Cache hardware acceleration info. 17716 */ 17717 if (hada_mp != NULL) { 17718 IPSECHW_DEBUG(IPSECHW_PKT, 17719 ("ip_rput_local: caching data attr.\n")); 17720 ii->ipsec_in_accelerated = B_TRUE; 17721 ii->ipsec_in_da = hada_mp; 17722 hada_mp = NULL; 17723 } 17724 } else { 17725 ii = (ipsec_in_t *)first_mp->b_rptr; 17726 } 17727 17728 if (!ipsec_loaded(ipss)) { 17729 ip_proto_not_sup(q, first_mp, IP_FF_SEND_ICMP, 17730 ire->ire_zoneid, ipst); 17731 return; 17732 } 17733 17734 ns = ipst->ips_netstack; 17735 /* select inbound SA and have IPsec process the pkt */ 17736 if (ipha->ipha_protocol == IPPROTO_ESP) { 17737 esph_t *esph = ipsec_inbound_esp_sa(first_mp, ns); 17738 if (esph == NULL) 17739 return; 17740 ASSERT(ii->ipsec_in_esp_sa != NULL); 17741 ASSERT(ii->ipsec_in_esp_sa->ipsa_input_func != NULL); 17742 ipsec_rc = ii->ipsec_in_esp_sa->ipsa_input_func( 17743 first_mp, esph); 17744 } else { 17745 ah_t *ah = ipsec_inbound_ah_sa(first_mp, ns); 17746 if (ah == NULL) 17747 return; 17748 ASSERT(ii->ipsec_in_ah_sa != NULL); 17749 ASSERT(ii->ipsec_in_ah_sa->ipsa_input_func != NULL); 17750 ipsec_rc = ii->ipsec_in_ah_sa->ipsa_input_func( 17751 first_mp, ah); 17752 } 17753 17754 switch (ipsec_rc) { 17755 case IPSEC_STATUS_SUCCESS: 17756 break; 17757 case IPSEC_STATUS_FAILED: 17758 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 17759 /* FALLTHRU */ 17760 case IPSEC_STATUS_PENDING: 17761 return; 17762 } 17763 /* we're done with IPsec processing, send it up */ 17764 ip_fanout_proto_again(first_mp, ill, recv_ill, ire); 17765 return; 17766 } 17767 default: 17768 break; 17769 } 17770 if (is_system_labeled() && !tsol_can_accept_raw(mp, B_FALSE)) { 17771 ip1dbg(("ip_proto_input: zone %d cannot accept raw IP", 17772 ire->ire_zoneid)); 17773 goto drop_pkt; 17774 } 17775 /* 17776 * Handle protocols with which IP is less intimate. There 17777 * can be more than one stream bound to a particular 17778 * protocol. When this is the case, each one gets a copy 17779 * of any incoming packets. 17780 */ 17781 ip_fanout_proto(q, first_mp, ill, ipha, 17782 IP_FF_SEND_ICMP | IP_FF_CKSUM | IP_FF_RAWIP, mctl_present, 17783 B_TRUE, recv_ill, ire->ire_zoneid); 17784 TRACE_2(TR_FAC_IP, TR_IP_RPUT_LOCL_END, 17785 "ip_rput_locl_end: q %p (%S)", q, "ip_fanout_proto"); 17786 return; 17787 17788 drop_pkt: 17789 freemsg(first_mp); 17790 if (hada_mp != NULL) 17791 freeb(hada_mp); 17792 TRACE_2(TR_FAC_IP, TR_IP_RPUT_LOCL_END, 17793 "ip_rput_locl_end: q %p (%S)", q, "droppkt"); 17794 #undef rptr 17795 #undef iphs 17796 17797 } 17798 17799 /* 17800 * Update any source route, record route or timestamp options. 17801 * Check that we are at end of strict source route. 17802 * The options have already been checked for sanity in ip_rput_options(). 17803 */ 17804 static boolean_t 17805 ip_rput_local_options(queue_t *q, mblk_t *mp, ipha_t *ipha, ire_t *ire, 17806 ip_stack_t *ipst) 17807 { 17808 ipoptp_t opts; 17809 uchar_t *opt; 17810 uint8_t optval; 17811 uint8_t optlen; 17812 ipaddr_t dst; 17813 uint32_t ts; 17814 ire_t *dst_ire; 17815 timestruc_t now; 17816 zoneid_t zoneid; 17817 ill_t *ill; 17818 17819 ASSERT(ire->ire_ipversion == IPV4_VERSION); 17820 17821 ip2dbg(("ip_rput_local_options\n")); 17822 17823 for (optval = ipoptp_first(&opts, ipha); 17824 optval != IPOPT_EOL; 17825 optval = ipoptp_next(&opts)) { 17826 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 17827 opt = opts.ipoptp_cur; 17828 optlen = opts.ipoptp_len; 17829 ip2dbg(("ip_rput_local_options: opt %d, len %d\n", 17830 optval, optlen)); 17831 switch (optval) { 17832 uint32_t off; 17833 case IPOPT_SSRR: 17834 case IPOPT_LSRR: 17835 off = opt[IPOPT_OFFSET]; 17836 off--; 17837 if (optlen < IP_ADDR_LEN || 17838 off > optlen - IP_ADDR_LEN) { 17839 /* End of source route */ 17840 ip1dbg(("ip_rput_local_options: end of SR\n")); 17841 break; 17842 } 17843 /* 17844 * This will only happen if two consecutive entries 17845 * in the source route contains our address or if 17846 * it is a packet with a loose source route which 17847 * reaches us before consuming the whole source route 17848 */ 17849 ip1dbg(("ip_rput_local_options: not end of SR\n")); 17850 if (optval == IPOPT_SSRR) { 17851 goto bad_src_route; 17852 } 17853 /* 17854 * Hack: instead of dropping the packet truncate the 17855 * source route to what has been used by filling the 17856 * rest with IPOPT_NOP. 17857 */ 17858 opt[IPOPT_OLEN] = (uint8_t)off; 17859 while (off < optlen) { 17860 opt[off++] = IPOPT_NOP; 17861 } 17862 break; 17863 case IPOPT_RR: 17864 off = opt[IPOPT_OFFSET]; 17865 off--; 17866 if (optlen < IP_ADDR_LEN || 17867 off > optlen - IP_ADDR_LEN) { 17868 /* No more room - ignore */ 17869 ip1dbg(( 17870 "ip_rput_local_options: end of RR\n")); 17871 break; 17872 } 17873 bcopy(&ire->ire_src_addr, (char *)opt + off, 17874 IP_ADDR_LEN); 17875 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 17876 break; 17877 case IPOPT_TS: 17878 /* Insert timestamp if there is romm */ 17879 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 17880 case IPOPT_TS_TSONLY: 17881 off = IPOPT_TS_TIMELEN; 17882 break; 17883 case IPOPT_TS_PRESPEC: 17884 case IPOPT_TS_PRESPEC_RFC791: 17885 /* Verify that the address matched */ 17886 off = opt[IPOPT_OFFSET] - 1; 17887 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 17888 dst_ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, 17889 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, 17890 ipst); 17891 if (dst_ire == NULL) { 17892 /* Not for us */ 17893 break; 17894 } 17895 ire_refrele(dst_ire); 17896 /* FALLTHRU */ 17897 case IPOPT_TS_TSANDADDR: 17898 off = IP_ADDR_LEN + IPOPT_TS_TIMELEN; 17899 break; 17900 default: 17901 /* 17902 * ip_*put_options should have already 17903 * dropped this packet. 17904 */ 17905 cmn_err(CE_PANIC, "ip_rput_local_options: " 17906 "unknown IT - bug in ip_rput_options?\n"); 17907 return (B_TRUE); /* Keep "lint" happy */ 17908 } 17909 if (opt[IPOPT_OFFSET] - 1 + off > optlen) { 17910 /* Increase overflow counter */ 17911 off = (opt[IPOPT_POS_OV_FLG] >> 4) + 1; 17912 opt[IPOPT_POS_OV_FLG] = 17913 (uint8_t)((opt[IPOPT_POS_OV_FLG] & 0x0F) | 17914 (off << 4)); 17915 break; 17916 } 17917 off = opt[IPOPT_OFFSET] - 1; 17918 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 17919 case IPOPT_TS_PRESPEC: 17920 case IPOPT_TS_PRESPEC_RFC791: 17921 case IPOPT_TS_TSANDADDR: 17922 bcopy(&ire->ire_src_addr, (char *)opt + off, 17923 IP_ADDR_LEN); 17924 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 17925 /* FALLTHRU */ 17926 case IPOPT_TS_TSONLY: 17927 off = opt[IPOPT_OFFSET] - 1; 17928 /* Compute # of milliseconds since midnight */ 17929 gethrestime(&now); 17930 ts = (now.tv_sec % (24 * 60 * 60)) * 1000 + 17931 now.tv_nsec / (NANOSEC / MILLISEC); 17932 bcopy(&ts, (char *)opt + off, IPOPT_TS_TIMELEN); 17933 opt[IPOPT_OFFSET] += IPOPT_TS_TIMELEN; 17934 break; 17935 } 17936 break; 17937 } 17938 } 17939 return (B_TRUE); 17940 17941 bad_src_route: 17942 q = WR(q); 17943 if (q->q_next != NULL) 17944 ill = q->q_ptr; 17945 else 17946 ill = NULL; 17947 17948 /* make sure we clear any indication of a hardware checksum */ 17949 DB_CKSUMFLAGS(mp) = 0; 17950 zoneid = ipif_lookup_addr_zoneid(ipha->ipha_dst, ill, ipst); 17951 if (zoneid == ALL_ZONES) 17952 freemsg(mp); 17953 else 17954 icmp_unreachable(q, mp, ICMP_SOURCE_ROUTE_FAILED, zoneid, ipst); 17955 return (B_FALSE); 17956 17957 } 17958 17959 /* 17960 * Process IP options in an inbound packet. If an option affects the 17961 * effective destination address, return the next hop address via dstp. 17962 * Returns -1 if something fails in which case an ICMP error has been sent 17963 * and mp freed. 17964 */ 17965 static int 17966 ip_rput_options(queue_t *q, mblk_t *mp, ipha_t *ipha, ipaddr_t *dstp, 17967 ip_stack_t *ipst) 17968 { 17969 ipoptp_t opts; 17970 uchar_t *opt; 17971 uint8_t optval; 17972 uint8_t optlen; 17973 ipaddr_t dst; 17974 intptr_t code = 0; 17975 ire_t *ire = NULL; 17976 zoneid_t zoneid; 17977 ill_t *ill; 17978 17979 ip2dbg(("ip_rput_options\n")); 17980 dst = ipha->ipha_dst; 17981 for (optval = ipoptp_first(&opts, ipha); 17982 optval != IPOPT_EOL; 17983 optval = ipoptp_next(&opts)) { 17984 opt = opts.ipoptp_cur; 17985 optlen = opts.ipoptp_len; 17986 ip2dbg(("ip_rput_options: opt %d, len %d\n", 17987 optval, optlen)); 17988 /* 17989 * Note: we need to verify the checksum before we 17990 * modify anything thus this routine only extracts the next 17991 * hop dst from any source route. 17992 */ 17993 switch (optval) { 17994 uint32_t off; 17995 case IPOPT_SSRR: 17996 case IPOPT_LSRR: 17997 ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, NULL, 17998 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 17999 if (ire == NULL) { 18000 if (optval == IPOPT_SSRR) { 18001 ip1dbg(("ip_rput_options: not next" 18002 " strict source route 0x%x\n", 18003 ntohl(dst))); 18004 code = (char *)&ipha->ipha_dst - 18005 (char *)ipha; 18006 goto param_prob; /* RouterReq's */ 18007 } 18008 ip2dbg(("ip_rput_options: " 18009 "not next source route 0x%x\n", 18010 ntohl(dst))); 18011 break; 18012 } 18013 ire_refrele(ire); 18014 18015 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 18016 ip1dbg(( 18017 "ip_rput_options: bad option offset\n")); 18018 code = (char *)&opt[IPOPT_OLEN] - 18019 (char *)ipha; 18020 goto param_prob; 18021 } 18022 off = opt[IPOPT_OFFSET]; 18023 off--; 18024 redo_srr: 18025 if (optlen < IP_ADDR_LEN || 18026 off > optlen - IP_ADDR_LEN) { 18027 /* End of source route */ 18028 ip1dbg(("ip_rput_options: end of SR\n")); 18029 break; 18030 } 18031 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 18032 ip1dbg(("ip_rput_options: next hop 0x%x\n", 18033 ntohl(dst))); 18034 18035 /* 18036 * Check if our address is present more than 18037 * once as consecutive hops in source route. 18038 * XXX verify per-interface ip_forwarding 18039 * for source route? 18040 */ 18041 ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, NULL, 18042 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 18043 18044 if (ire != NULL) { 18045 ire_refrele(ire); 18046 off += IP_ADDR_LEN; 18047 goto redo_srr; 18048 } 18049 18050 if (dst == htonl(INADDR_LOOPBACK)) { 18051 ip1dbg(("ip_rput_options: loopback addr in " 18052 "source route!\n")); 18053 goto bad_src_route; 18054 } 18055 /* 18056 * For strict: verify that dst is directly 18057 * reachable. 18058 */ 18059 if (optval == IPOPT_SSRR) { 18060 ire = ire_ftable_lookup(dst, 0, 0, 18061 IRE_INTERFACE, NULL, NULL, ALL_ZONES, 0, 18062 MBLK_GETLABEL(mp), 18063 MATCH_IRE_TYPE | MATCH_IRE_SECATTR, ipst); 18064 if (ire == NULL) { 18065 ip1dbg(("ip_rput_options: SSRR not " 18066 "directly reachable: 0x%x\n", 18067 ntohl(dst))); 18068 goto bad_src_route; 18069 } 18070 ire_refrele(ire); 18071 } 18072 /* 18073 * Defer update of the offset and the record route 18074 * until the packet is forwarded. 18075 */ 18076 break; 18077 case IPOPT_RR: 18078 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 18079 ip1dbg(( 18080 "ip_rput_options: bad option offset\n")); 18081 code = (char *)&opt[IPOPT_OLEN] - 18082 (char *)ipha; 18083 goto param_prob; 18084 } 18085 break; 18086 case IPOPT_TS: 18087 /* 18088 * Verify that length >= 5 and that there is either 18089 * room for another timestamp or that the overflow 18090 * counter is not maxed out. 18091 */ 18092 code = (char *)&opt[IPOPT_OLEN] - (char *)ipha; 18093 if (optlen < IPOPT_MINLEN_IT) { 18094 goto param_prob; 18095 } 18096 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 18097 ip1dbg(( 18098 "ip_rput_options: bad option offset\n")); 18099 code = (char *)&opt[IPOPT_OFFSET] - 18100 (char *)ipha; 18101 goto param_prob; 18102 } 18103 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 18104 case IPOPT_TS_TSONLY: 18105 off = IPOPT_TS_TIMELEN; 18106 break; 18107 case IPOPT_TS_TSANDADDR: 18108 case IPOPT_TS_PRESPEC: 18109 case IPOPT_TS_PRESPEC_RFC791: 18110 off = IP_ADDR_LEN + IPOPT_TS_TIMELEN; 18111 break; 18112 default: 18113 code = (char *)&opt[IPOPT_POS_OV_FLG] - 18114 (char *)ipha; 18115 goto param_prob; 18116 } 18117 if (opt[IPOPT_OFFSET] - 1 + off > optlen && 18118 (opt[IPOPT_POS_OV_FLG] & 0xF0) == 0xF0) { 18119 /* 18120 * No room and the overflow counter is 15 18121 * already. 18122 */ 18123 goto param_prob; 18124 } 18125 break; 18126 } 18127 } 18128 18129 if ((opts.ipoptp_flags & IPOPTP_ERROR) == 0) { 18130 *dstp = dst; 18131 return (0); 18132 } 18133 18134 ip1dbg(("ip_rput_options: error processing IP options.")); 18135 code = (char *)&opt[IPOPT_OFFSET] - (char *)ipha; 18136 18137 param_prob: 18138 q = WR(q); 18139 if (q->q_next != NULL) 18140 ill = q->q_ptr; 18141 else 18142 ill = NULL; 18143 18144 /* make sure we clear any indication of a hardware checksum */ 18145 DB_CKSUMFLAGS(mp) = 0; 18146 /* Don't know whether this is for non-global or global/forwarding */ 18147 zoneid = ipif_lookup_addr_zoneid(dst, ill, ipst); 18148 if (zoneid == ALL_ZONES) 18149 freemsg(mp); 18150 else 18151 icmp_param_problem(q, mp, (uint8_t)code, zoneid, ipst); 18152 return (-1); 18153 18154 bad_src_route: 18155 q = WR(q); 18156 if (q->q_next != NULL) 18157 ill = q->q_ptr; 18158 else 18159 ill = NULL; 18160 18161 /* make sure we clear any indication of a hardware checksum */ 18162 DB_CKSUMFLAGS(mp) = 0; 18163 zoneid = ipif_lookup_addr_zoneid(dst, ill, ipst); 18164 if (zoneid == ALL_ZONES) 18165 freemsg(mp); 18166 else 18167 icmp_unreachable(q, mp, ICMP_SOURCE_ROUTE_FAILED, zoneid, ipst); 18168 return (-1); 18169 } 18170 18171 /* 18172 * IP & ICMP info in >=14 msg's ... 18173 * - ip fixed part (mib2_ip_t) 18174 * - icmp fixed part (mib2_icmp_t) 18175 * - ipAddrEntryTable (ip 20) all IPv4 ipifs 18176 * - ipRouteEntryTable (ip 21) all IPv4 IREs 18177 * - ipNetToMediaEntryTable (ip 22) [filled in by the arp module] 18178 * - ipRouteAttributeTable (ip 102) labeled routes 18179 * - ip multicast membership (ip_member_t) 18180 * - ip multicast source filtering (ip_grpsrc_t) 18181 * - igmp fixed part (struct igmpstat) 18182 * - multicast routing stats (struct mrtstat) 18183 * - multicast routing vifs (array of struct vifctl) 18184 * - multicast routing routes (array of struct mfcctl) 18185 * - ip6 fixed part (mib2_ipv6IfStatsEntry_t) 18186 * One per ill plus one generic 18187 * - icmp6 fixed part (mib2_ipv6IfIcmpEntry_t) 18188 * One per ill plus one generic 18189 * - ipv6RouteEntry all IPv6 IREs 18190 * - ipv6RouteAttributeTable (ip6 102) labeled routes 18191 * - ipv6NetToMediaEntry all Neighbor Cache entries 18192 * - ipv6AddrEntry all IPv6 ipifs 18193 * - ipv6 multicast membership (ipv6_member_t) 18194 * - ipv6 multicast source filtering (ipv6_grpsrc_t) 18195 * 18196 * MIB2_IP_MEDIA is filled in by the arp module with ARP cache entries. 18197 * 18198 * NOTE: original mpctl is copied for msg's 2..N, since its ctl part is 18199 * already filled in by the caller. 18200 * Return value of 0 indicates that no messages were sent and caller 18201 * should free mpctl. 18202 */ 18203 int 18204 ip_snmp_get(queue_t *q, mblk_t *mpctl) 18205 { 18206 ip_stack_t *ipst; 18207 sctp_stack_t *sctps; 18208 18209 18210 if (q->q_next != NULL) { 18211 ipst = ILLQ_TO_IPST(q); 18212 } else { 18213 ipst = CONNQ_TO_IPST(q); 18214 } 18215 ASSERT(ipst != NULL); 18216 sctps = ipst->ips_netstack->netstack_sctp; 18217 18218 if (mpctl == NULL || mpctl->b_cont == NULL) { 18219 return (0); 18220 } 18221 18222 if ((mpctl = ip_snmp_get_mib2_ip_traffic_stats(q, mpctl, 18223 ipst)) == NULL) { 18224 return (1); 18225 } 18226 18227 if ((mpctl = ip_snmp_get_mib2_ip6(q, mpctl, ipst)) == NULL) { 18228 return (1); 18229 } 18230 18231 if ((mpctl = ip_snmp_get_mib2_icmp(q, mpctl, ipst)) == NULL) { 18232 return (1); 18233 } 18234 18235 if ((mpctl = ip_snmp_get_mib2_icmp6(q, mpctl, ipst)) == NULL) { 18236 return (1); 18237 } 18238 18239 if ((mpctl = ip_snmp_get_mib2_igmp(q, mpctl, ipst)) == NULL) { 18240 return (1); 18241 } 18242 18243 if ((mpctl = ip_snmp_get_mib2_multi(q, mpctl, ipst)) == NULL) { 18244 return (1); 18245 } 18246 18247 if ((mpctl = ip_snmp_get_mib2_ip_addr(q, mpctl, ipst)) == NULL) { 18248 return (1); 18249 } 18250 18251 if ((mpctl = ip_snmp_get_mib2_ip6_addr(q, mpctl, ipst)) == NULL) { 18252 return (1); 18253 } 18254 18255 if ((mpctl = ip_snmp_get_mib2_ip_group_mem(q, mpctl, ipst)) == NULL) { 18256 return (1); 18257 } 18258 18259 if ((mpctl = ip_snmp_get_mib2_ip6_group_mem(q, mpctl, ipst)) == NULL) { 18260 return (1); 18261 } 18262 18263 if ((mpctl = ip_snmp_get_mib2_ip_group_src(q, mpctl, ipst)) == NULL) { 18264 return (1); 18265 } 18266 18267 if ((mpctl = ip_snmp_get_mib2_ip6_group_src(q, mpctl, ipst)) == NULL) { 18268 return (1); 18269 } 18270 18271 if ((mpctl = ip_snmp_get_mib2_virt_multi(q, mpctl, ipst)) == NULL) { 18272 return (1); 18273 } 18274 18275 if ((mpctl = ip_snmp_get_mib2_multi_rtable(q, mpctl, ipst)) == NULL) { 18276 return (1); 18277 } 18278 18279 if ((mpctl = ip_snmp_get_mib2_ip_route_media(q, mpctl, ipst)) == NULL) { 18280 return (1); 18281 } 18282 18283 mpctl = ip_snmp_get_mib2_ip6_route_media(q, mpctl, ipst); 18284 if (mpctl == NULL) { 18285 return (1); 18286 } 18287 18288 if ((mpctl = sctp_snmp_get_mib2(q, mpctl, sctps)) == NULL) { 18289 return (1); 18290 } 18291 freemsg(mpctl); 18292 return (1); 18293 } 18294 18295 18296 /* Get global (legacy) IPv4 statistics */ 18297 static mblk_t * 18298 ip_snmp_get_mib2_ip(queue_t *q, mblk_t *mpctl, mib2_ipIfStatsEntry_t *ipmib, 18299 ip_stack_t *ipst) 18300 { 18301 mib2_ip_t old_ip_mib; 18302 struct opthdr *optp; 18303 mblk_t *mp2ctl; 18304 18305 /* 18306 * make a copy of the original message 18307 */ 18308 mp2ctl = copymsg(mpctl); 18309 18310 /* fixed length IP structure... */ 18311 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18312 optp->level = MIB2_IP; 18313 optp->name = 0; 18314 SET_MIB(old_ip_mib.ipForwarding, 18315 (WE_ARE_FORWARDING(ipst) ? 1 : 2)); 18316 SET_MIB(old_ip_mib.ipDefaultTTL, 18317 (uint32_t)ipst->ips_ip_def_ttl); 18318 SET_MIB(old_ip_mib.ipReasmTimeout, 18319 ipst->ips_ip_g_frag_timeout); 18320 SET_MIB(old_ip_mib.ipAddrEntrySize, 18321 sizeof (mib2_ipAddrEntry_t)); 18322 SET_MIB(old_ip_mib.ipRouteEntrySize, 18323 sizeof (mib2_ipRouteEntry_t)); 18324 SET_MIB(old_ip_mib.ipNetToMediaEntrySize, 18325 sizeof (mib2_ipNetToMediaEntry_t)); 18326 SET_MIB(old_ip_mib.ipMemberEntrySize, sizeof (ip_member_t)); 18327 SET_MIB(old_ip_mib.ipGroupSourceEntrySize, sizeof (ip_grpsrc_t)); 18328 SET_MIB(old_ip_mib.ipRouteAttributeSize, 18329 sizeof (mib2_ipAttributeEntry_t)); 18330 SET_MIB(old_ip_mib.transportMLPSize, sizeof (mib2_transportMLPEntry_t)); 18331 18332 /* 18333 * Grab the statistics from the new IP MIB 18334 */ 18335 SET_MIB(old_ip_mib.ipInReceives, 18336 (uint32_t)ipmib->ipIfStatsHCInReceives); 18337 SET_MIB(old_ip_mib.ipInHdrErrors, ipmib->ipIfStatsInHdrErrors); 18338 SET_MIB(old_ip_mib.ipInAddrErrors, ipmib->ipIfStatsInAddrErrors); 18339 SET_MIB(old_ip_mib.ipForwDatagrams, 18340 (uint32_t)ipmib->ipIfStatsHCOutForwDatagrams); 18341 SET_MIB(old_ip_mib.ipInUnknownProtos, 18342 ipmib->ipIfStatsInUnknownProtos); 18343 SET_MIB(old_ip_mib.ipInDiscards, ipmib->ipIfStatsInDiscards); 18344 SET_MIB(old_ip_mib.ipInDelivers, 18345 (uint32_t)ipmib->ipIfStatsHCInDelivers); 18346 SET_MIB(old_ip_mib.ipOutRequests, 18347 (uint32_t)ipmib->ipIfStatsHCOutRequests); 18348 SET_MIB(old_ip_mib.ipOutDiscards, ipmib->ipIfStatsOutDiscards); 18349 SET_MIB(old_ip_mib.ipOutNoRoutes, ipmib->ipIfStatsOutNoRoutes); 18350 SET_MIB(old_ip_mib.ipReasmReqds, ipmib->ipIfStatsReasmReqds); 18351 SET_MIB(old_ip_mib.ipReasmOKs, ipmib->ipIfStatsReasmOKs); 18352 SET_MIB(old_ip_mib.ipReasmFails, ipmib->ipIfStatsReasmFails); 18353 SET_MIB(old_ip_mib.ipFragOKs, ipmib->ipIfStatsOutFragOKs); 18354 SET_MIB(old_ip_mib.ipFragFails, ipmib->ipIfStatsOutFragFails); 18355 SET_MIB(old_ip_mib.ipFragCreates, ipmib->ipIfStatsOutFragCreates); 18356 18357 /* ipRoutingDiscards is not being used */ 18358 SET_MIB(old_ip_mib.ipRoutingDiscards, 0); 18359 SET_MIB(old_ip_mib.tcpInErrs, ipmib->tcpIfStatsInErrs); 18360 SET_MIB(old_ip_mib.udpNoPorts, ipmib->udpIfStatsNoPorts); 18361 SET_MIB(old_ip_mib.ipInCksumErrs, ipmib->ipIfStatsInCksumErrs); 18362 SET_MIB(old_ip_mib.ipReasmDuplicates, 18363 ipmib->ipIfStatsReasmDuplicates); 18364 SET_MIB(old_ip_mib.ipReasmPartDups, ipmib->ipIfStatsReasmPartDups); 18365 SET_MIB(old_ip_mib.ipForwProhibits, ipmib->ipIfStatsForwProhibits); 18366 SET_MIB(old_ip_mib.udpInCksumErrs, ipmib->udpIfStatsInCksumErrs); 18367 SET_MIB(old_ip_mib.udpInOverflows, ipmib->udpIfStatsInOverflows); 18368 SET_MIB(old_ip_mib.rawipInOverflows, 18369 ipmib->rawipIfStatsInOverflows); 18370 18371 SET_MIB(old_ip_mib.ipsecInSucceeded, ipmib->ipsecIfStatsInSucceeded); 18372 SET_MIB(old_ip_mib.ipsecInFailed, ipmib->ipsecIfStatsInFailed); 18373 SET_MIB(old_ip_mib.ipInIPv6, ipmib->ipIfStatsInWrongIPVersion); 18374 SET_MIB(old_ip_mib.ipOutIPv6, ipmib->ipIfStatsOutWrongIPVersion); 18375 SET_MIB(old_ip_mib.ipOutSwitchIPv6, 18376 ipmib->ipIfStatsOutSwitchIPVersion); 18377 18378 if (!snmp_append_data(mpctl->b_cont, (char *)&old_ip_mib, 18379 (int)sizeof (old_ip_mib))) { 18380 ip1dbg(("ip_snmp_get_mib2_ip: failed to allocate %u bytes\n", 18381 (uint_t)sizeof (old_ip_mib))); 18382 } 18383 18384 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18385 ip3dbg(("ip_snmp_get_mib2_ip: level %d, name %d, len %d\n", 18386 (int)optp->level, (int)optp->name, (int)optp->len)); 18387 qreply(q, mpctl); 18388 return (mp2ctl); 18389 } 18390 18391 /* Per interface IPv4 statistics */ 18392 static mblk_t * 18393 ip_snmp_get_mib2_ip_traffic_stats(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18394 { 18395 struct opthdr *optp; 18396 mblk_t *mp2ctl; 18397 ill_t *ill; 18398 ill_walk_context_t ctx; 18399 mblk_t *mp_tail = NULL; 18400 mib2_ipIfStatsEntry_t global_ip_mib; 18401 18402 /* 18403 * Make a copy of the original message 18404 */ 18405 mp2ctl = copymsg(mpctl); 18406 18407 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18408 optp->level = MIB2_IP; 18409 optp->name = MIB2_IP_TRAFFIC_STATS; 18410 /* Include "unknown interface" ip_mib */ 18411 ipst->ips_ip_mib.ipIfStatsIPVersion = MIB2_INETADDRESSTYPE_ipv4; 18412 ipst->ips_ip_mib.ipIfStatsIfIndex = 18413 MIB2_UNKNOWN_INTERFACE; /* Flag to netstat */ 18414 SET_MIB(ipst->ips_ip_mib.ipIfStatsForwarding, 18415 (ipst->ips_ip_g_forward ? 1 : 2)); 18416 SET_MIB(ipst->ips_ip_mib.ipIfStatsDefaultTTL, 18417 (uint32_t)ipst->ips_ip_def_ttl); 18418 SET_MIB(ipst->ips_ip_mib.ipIfStatsEntrySize, 18419 sizeof (mib2_ipIfStatsEntry_t)); 18420 SET_MIB(ipst->ips_ip_mib.ipIfStatsAddrEntrySize, 18421 sizeof (mib2_ipAddrEntry_t)); 18422 SET_MIB(ipst->ips_ip_mib.ipIfStatsRouteEntrySize, 18423 sizeof (mib2_ipRouteEntry_t)); 18424 SET_MIB(ipst->ips_ip_mib.ipIfStatsNetToMediaEntrySize, 18425 sizeof (mib2_ipNetToMediaEntry_t)); 18426 SET_MIB(ipst->ips_ip_mib.ipIfStatsMemberEntrySize, 18427 sizeof (ip_member_t)); 18428 SET_MIB(ipst->ips_ip_mib.ipIfStatsGroupSourceEntrySize, 18429 sizeof (ip_grpsrc_t)); 18430 18431 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18432 (char *)&ipst->ips_ip_mib, (int)sizeof (ipst->ips_ip_mib))) { 18433 ip1dbg(("ip_snmp_get_mib2_ip_traffic_stats: " 18434 "failed to allocate %u bytes\n", 18435 (uint_t)sizeof (ipst->ips_ip_mib))); 18436 } 18437 18438 bcopy(&ipst->ips_ip_mib, &global_ip_mib, sizeof (global_ip_mib)); 18439 18440 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18441 ill = ILL_START_WALK_V4(&ctx, ipst); 18442 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18443 ill->ill_ip_mib->ipIfStatsIfIndex = 18444 ill->ill_phyint->phyint_ifindex; 18445 SET_MIB(ill->ill_ip_mib->ipIfStatsForwarding, 18446 (ipst->ips_ip_g_forward ? 1 : 2)); 18447 SET_MIB(ill->ill_ip_mib->ipIfStatsDefaultTTL, 18448 (uint32_t)ipst->ips_ip_def_ttl); 18449 18450 ip_mib2_add_ip_stats(&global_ip_mib, ill->ill_ip_mib); 18451 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18452 (char *)ill->ill_ip_mib, 18453 (int)sizeof (*ill->ill_ip_mib))) { 18454 ip1dbg(("ip_snmp_get_mib2_ip_traffic_stats: " 18455 "failed to allocate %u bytes\n", 18456 (uint_t)sizeof (*ill->ill_ip_mib))); 18457 } 18458 } 18459 rw_exit(&ipst->ips_ill_g_lock); 18460 18461 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18462 ip3dbg(("ip_snmp_get_mib2_ip_traffic_stats: " 18463 "level %d, name %d, len %d\n", 18464 (int)optp->level, (int)optp->name, (int)optp->len)); 18465 qreply(q, mpctl); 18466 18467 return (ip_snmp_get_mib2_ip(q, mp2ctl, &global_ip_mib, ipst)); 18468 } 18469 18470 /* Global IPv4 ICMP statistics */ 18471 static mblk_t * 18472 ip_snmp_get_mib2_icmp(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18473 { 18474 struct opthdr *optp; 18475 mblk_t *mp2ctl; 18476 18477 /* 18478 * Make a copy of the original message 18479 */ 18480 mp2ctl = copymsg(mpctl); 18481 18482 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18483 optp->level = MIB2_ICMP; 18484 optp->name = 0; 18485 if (!snmp_append_data(mpctl->b_cont, (char *)&ipst->ips_icmp_mib, 18486 (int)sizeof (ipst->ips_icmp_mib))) { 18487 ip1dbg(("ip_snmp_get_mib2_icmp: failed to allocate %u bytes\n", 18488 (uint_t)sizeof (ipst->ips_icmp_mib))); 18489 } 18490 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18491 ip3dbg(("ip_snmp_get_mib2_icmp: level %d, name %d, len %d\n", 18492 (int)optp->level, (int)optp->name, (int)optp->len)); 18493 qreply(q, mpctl); 18494 return (mp2ctl); 18495 } 18496 18497 /* Global IPv4 IGMP statistics */ 18498 static mblk_t * 18499 ip_snmp_get_mib2_igmp(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18500 { 18501 struct opthdr *optp; 18502 mblk_t *mp2ctl; 18503 18504 /* 18505 * make a copy of the original message 18506 */ 18507 mp2ctl = copymsg(mpctl); 18508 18509 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18510 optp->level = EXPER_IGMP; 18511 optp->name = 0; 18512 if (!snmp_append_data(mpctl->b_cont, (char *)&ipst->ips_igmpstat, 18513 (int)sizeof (ipst->ips_igmpstat))) { 18514 ip1dbg(("ip_snmp_get_mib2_igmp: failed to allocate %u bytes\n", 18515 (uint_t)sizeof (ipst->ips_igmpstat))); 18516 } 18517 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18518 ip3dbg(("ip_snmp_get_mib2_igmp: level %d, name %d, len %d\n", 18519 (int)optp->level, (int)optp->name, (int)optp->len)); 18520 qreply(q, mpctl); 18521 return (mp2ctl); 18522 } 18523 18524 /* Global IPv4 Multicast Routing statistics */ 18525 static mblk_t * 18526 ip_snmp_get_mib2_multi(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18527 { 18528 struct opthdr *optp; 18529 mblk_t *mp2ctl; 18530 18531 /* 18532 * make a copy of the original message 18533 */ 18534 mp2ctl = copymsg(mpctl); 18535 18536 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18537 optp->level = EXPER_DVMRP; 18538 optp->name = 0; 18539 if (!ip_mroute_stats(mpctl->b_cont, ipst)) { 18540 ip0dbg(("ip_mroute_stats: failed\n")); 18541 } 18542 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18543 ip3dbg(("ip_snmp_get_mib2_multi: level %d, name %d, len %d\n", 18544 (int)optp->level, (int)optp->name, (int)optp->len)); 18545 qreply(q, mpctl); 18546 return (mp2ctl); 18547 } 18548 18549 /* IPv4 address information */ 18550 static mblk_t * 18551 ip_snmp_get_mib2_ip_addr(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18552 { 18553 struct opthdr *optp; 18554 mblk_t *mp2ctl; 18555 mblk_t *mp_tail = NULL; 18556 ill_t *ill; 18557 ipif_t *ipif; 18558 uint_t bitval; 18559 mib2_ipAddrEntry_t mae; 18560 zoneid_t zoneid; 18561 ill_walk_context_t ctx; 18562 18563 /* 18564 * make a copy of the original message 18565 */ 18566 mp2ctl = copymsg(mpctl); 18567 18568 /* ipAddrEntryTable */ 18569 18570 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18571 optp->level = MIB2_IP; 18572 optp->name = MIB2_IP_ADDR; 18573 zoneid = Q_TO_CONN(q)->conn_zoneid; 18574 18575 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18576 ill = ILL_START_WALK_V4(&ctx, ipst); 18577 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18578 for (ipif = ill->ill_ipif; ipif != NULL; 18579 ipif = ipif->ipif_next) { 18580 if (ipif->ipif_zoneid != zoneid && 18581 ipif->ipif_zoneid != ALL_ZONES) 18582 continue; 18583 mae.ipAdEntInfo.ae_ibcnt = ipif->ipif_ib_pkt_count; 18584 mae.ipAdEntInfo.ae_obcnt = ipif->ipif_ob_pkt_count; 18585 mae.ipAdEntInfo.ae_focnt = ipif->ipif_fo_pkt_count; 18586 18587 (void) ipif_get_name(ipif, 18588 mae.ipAdEntIfIndex.o_bytes, 18589 OCTET_LENGTH); 18590 mae.ipAdEntIfIndex.o_length = 18591 mi_strlen(mae.ipAdEntIfIndex.o_bytes); 18592 mae.ipAdEntAddr = ipif->ipif_lcl_addr; 18593 mae.ipAdEntNetMask = ipif->ipif_net_mask; 18594 mae.ipAdEntInfo.ae_subnet = ipif->ipif_subnet; 18595 mae.ipAdEntInfo.ae_subnet_len = 18596 ip_mask_to_plen(ipif->ipif_net_mask); 18597 mae.ipAdEntInfo.ae_src_addr = ipif->ipif_src_addr; 18598 for (bitval = 1; 18599 bitval && 18600 !(bitval & ipif->ipif_brd_addr); 18601 bitval <<= 1) 18602 noop; 18603 mae.ipAdEntBcastAddr = bitval; 18604 mae.ipAdEntReasmMaxSize = IP_MAXPACKET; 18605 mae.ipAdEntInfo.ae_mtu = ipif->ipif_mtu; 18606 mae.ipAdEntInfo.ae_metric = ipif->ipif_metric; 18607 mae.ipAdEntInfo.ae_broadcast_addr = 18608 ipif->ipif_brd_addr; 18609 mae.ipAdEntInfo.ae_pp_dst_addr = 18610 ipif->ipif_pp_dst_addr; 18611 mae.ipAdEntInfo.ae_flags = ipif->ipif_flags | 18612 ill->ill_flags | ill->ill_phyint->phyint_flags; 18613 mae.ipAdEntRetransmitTime = AR_EQ_DEFAULT_XMIT_INTERVAL; 18614 18615 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18616 (char *)&mae, (int)sizeof (mib2_ipAddrEntry_t))) { 18617 ip1dbg(("ip_snmp_get_mib2_ip_addr: failed to " 18618 "allocate %u bytes\n", 18619 (uint_t)sizeof (mib2_ipAddrEntry_t))); 18620 } 18621 } 18622 } 18623 rw_exit(&ipst->ips_ill_g_lock); 18624 18625 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18626 ip3dbg(("ip_snmp_get_mib2_ip_addr: level %d, name %d, len %d\n", 18627 (int)optp->level, (int)optp->name, (int)optp->len)); 18628 qreply(q, mpctl); 18629 return (mp2ctl); 18630 } 18631 18632 /* IPv6 address information */ 18633 static mblk_t * 18634 ip_snmp_get_mib2_ip6_addr(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18635 { 18636 struct opthdr *optp; 18637 mblk_t *mp2ctl; 18638 mblk_t *mp_tail = NULL; 18639 ill_t *ill; 18640 ipif_t *ipif; 18641 mib2_ipv6AddrEntry_t mae6; 18642 zoneid_t zoneid; 18643 ill_walk_context_t ctx; 18644 18645 /* 18646 * make a copy of the original message 18647 */ 18648 mp2ctl = copymsg(mpctl); 18649 18650 /* ipv6AddrEntryTable */ 18651 18652 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18653 optp->level = MIB2_IP6; 18654 optp->name = MIB2_IP6_ADDR; 18655 zoneid = Q_TO_CONN(q)->conn_zoneid; 18656 18657 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18658 ill = ILL_START_WALK_V6(&ctx, ipst); 18659 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18660 for (ipif = ill->ill_ipif; ipif != NULL; 18661 ipif = ipif->ipif_next) { 18662 if (ipif->ipif_zoneid != zoneid && 18663 ipif->ipif_zoneid != ALL_ZONES) 18664 continue; 18665 mae6.ipv6AddrInfo.ae_ibcnt = ipif->ipif_ib_pkt_count; 18666 mae6.ipv6AddrInfo.ae_obcnt = ipif->ipif_ob_pkt_count; 18667 mae6.ipv6AddrInfo.ae_focnt = ipif->ipif_fo_pkt_count; 18668 18669 (void) ipif_get_name(ipif, 18670 mae6.ipv6AddrIfIndex.o_bytes, 18671 OCTET_LENGTH); 18672 mae6.ipv6AddrIfIndex.o_length = 18673 mi_strlen(mae6.ipv6AddrIfIndex.o_bytes); 18674 mae6.ipv6AddrAddress = ipif->ipif_v6lcl_addr; 18675 mae6.ipv6AddrPfxLength = 18676 ip_mask_to_plen_v6(&ipif->ipif_v6net_mask); 18677 mae6.ipv6AddrInfo.ae_subnet = ipif->ipif_v6subnet; 18678 mae6.ipv6AddrInfo.ae_subnet_len = 18679 mae6.ipv6AddrPfxLength; 18680 mae6.ipv6AddrInfo.ae_src_addr = ipif->ipif_v6src_addr; 18681 18682 /* Type: stateless(1), stateful(2), unknown(3) */ 18683 if (ipif->ipif_flags & IPIF_ADDRCONF) 18684 mae6.ipv6AddrType = 1; 18685 else 18686 mae6.ipv6AddrType = 2; 18687 /* Anycast: true(1), false(2) */ 18688 if (ipif->ipif_flags & IPIF_ANYCAST) 18689 mae6.ipv6AddrAnycastFlag = 1; 18690 else 18691 mae6.ipv6AddrAnycastFlag = 2; 18692 18693 /* 18694 * Address status: preferred(1), deprecated(2), 18695 * invalid(3), inaccessible(4), unknown(5) 18696 */ 18697 if (ipif->ipif_flags & IPIF_NOLOCAL) 18698 mae6.ipv6AddrStatus = 3; 18699 else if (ipif->ipif_flags & IPIF_DEPRECATED) 18700 mae6.ipv6AddrStatus = 2; 18701 else 18702 mae6.ipv6AddrStatus = 1; 18703 mae6.ipv6AddrInfo.ae_mtu = ipif->ipif_mtu; 18704 mae6.ipv6AddrInfo.ae_metric = ipif->ipif_metric; 18705 mae6.ipv6AddrInfo.ae_pp_dst_addr = 18706 ipif->ipif_v6pp_dst_addr; 18707 mae6.ipv6AddrInfo.ae_flags = ipif->ipif_flags | 18708 ill->ill_flags | ill->ill_phyint->phyint_flags; 18709 mae6.ipv6AddrReasmMaxSize = IP_MAXPACKET; 18710 mae6.ipv6AddrIdentifier = ill->ill_token; 18711 mae6.ipv6AddrIdentifierLen = ill->ill_token_length; 18712 mae6.ipv6AddrReachableTime = ill->ill_reachable_time; 18713 mae6.ipv6AddrRetransmitTime = 18714 ill->ill_reachable_retrans_time; 18715 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18716 (char *)&mae6, 18717 (int)sizeof (mib2_ipv6AddrEntry_t))) { 18718 ip1dbg(("ip_snmp_get_mib2_ip6_addr: failed to " 18719 "allocate %u bytes\n", 18720 (uint_t)sizeof (mib2_ipv6AddrEntry_t))); 18721 } 18722 } 18723 } 18724 rw_exit(&ipst->ips_ill_g_lock); 18725 18726 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18727 ip3dbg(("ip_snmp_get_mib2_ip6_addr: level %d, name %d, len %d\n", 18728 (int)optp->level, (int)optp->name, (int)optp->len)); 18729 qreply(q, mpctl); 18730 return (mp2ctl); 18731 } 18732 18733 /* IPv4 multicast group membership. */ 18734 static mblk_t * 18735 ip_snmp_get_mib2_ip_group_mem(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18736 { 18737 struct opthdr *optp; 18738 mblk_t *mp2ctl; 18739 ill_t *ill; 18740 ipif_t *ipif; 18741 ilm_t *ilm; 18742 ip_member_t ipm; 18743 mblk_t *mp_tail = NULL; 18744 ill_walk_context_t ctx; 18745 zoneid_t zoneid; 18746 18747 /* 18748 * make a copy of the original message 18749 */ 18750 mp2ctl = copymsg(mpctl); 18751 zoneid = Q_TO_CONN(q)->conn_zoneid; 18752 18753 /* ipGroupMember table */ 18754 optp = (struct opthdr *)&mpctl->b_rptr[ 18755 sizeof (struct T_optmgmt_ack)]; 18756 optp->level = MIB2_IP; 18757 optp->name = EXPER_IP_GROUP_MEMBERSHIP; 18758 18759 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18760 ill = ILL_START_WALK_V4(&ctx, ipst); 18761 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18762 ILM_WALKER_HOLD(ill); 18763 for (ipif = ill->ill_ipif; ipif != NULL; 18764 ipif = ipif->ipif_next) { 18765 if (ipif->ipif_zoneid != zoneid && 18766 ipif->ipif_zoneid != ALL_ZONES) 18767 continue; /* not this zone */ 18768 (void) ipif_get_name(ipif, 18769 ipm.ipGroupMemberIfIndex.o_bytes, 18770 OCTET_LENGTH); 18771 ipm.ipGroupMemberIfIndex.o_length = 18772 mi_strlen(ipm.ipGroupMemberIfIndex.o_bytes); 18773 for (ilm = ill->ill_ilm; ilm; ilm = ilm->ilm_next) { 18774 ASSERT(ilm->ilm_ipif != NULL); 18775 ASSERT(ilm->ilm_ill == NULL); 18776 if (ilm->ilm_ipif != ipif) 18777 continue; 18778 ipm.ipGroupMemberAddress = ilm->ilm_addr; 18779 ipm.ipGroupMemberRefCnt = ilm->ilm_refcnt; 18780 ipm.ipGroupMemberFilterMode = ilm->ilm_fmode; 18781 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18782 (char *)&ipm, (int)sizeof (ipm))) { 18783 ip1dbg(("ip_snmp_get_mib2_ip_group: " 18784 "failed to allocate %u bytes\n", 18785 (uint_t)sizeof (ipm))); 18786 } 18787 } 18788 } 18789 ILM_WALKER_RELE(ill); 18790 } 18791 rw_exit(&ipst->ips_ill_g_lock); 18792 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18793 ip3dbg(("ip_snmp_get: level %d, name %d, len %d\n", 18794 (int)optp->level, (int)optp->name, (int)optp->len)); 18795 qreply(q, mpctl); 18796 return (mp2ctl); 18797 } 18798 18799 /* IPv6 multicast group membership. */ 18800 static mblk_t * 18801 ip_snmp_get_mib2_ip6_group_mem(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18802 { 18803 struct opthdr *optp; 18804 mblk_t *mp2ctl; 18805 ill_t *ill; 18806 ilm_t *ilm; 18807 ipv6_member_t ipm6; 18808 mblk_t *mp_tail = NULL; 18809 ill_walk_context_t ctx; 18810 zoneid_t zoneid; 18811 18812 /* 18813 * make a copy of the original message 18814 */ 18815 mp2ctl = copymsg(mpctl); 18816 zoneid = Q_TO_CONN(q)->conn_zoneid; 18817 18818 /* ip6GroupMember table */ 18819 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18820 optp->level = MIB2_IP6; 18821 optp->name = EXPER_IP6_GROUP_MEMBERSHIP; 18822 18823 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18824 ill = ILL_START_WALK_V6(&ctx, ipst); 18825 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18826 ILM_WALKER_HOLD(ill); 18827 ipm6.ipv6GroupMemberIfIndex = ill->ill_phyint->phyint_ifindex; 18828 for (ilm = ill->ill_ilm; ilm; ilm = ilm->ilm_next) { 18829 ASSERT(ilm->ilm_ipif == NULL); 18830 ASSERT(ilm->ilm_ill != NULL); 18831 if (ilm->ilm_zoneid != zoneid) 18832 continue; /* not this zone */ 18833 ipm6.ipv6GroupMemberAddress = ilm->ilm_v6addr; 18834 ipm6.ipv6GroupMemberRefCnt = ilm->ilm_refcnt; 18835 ipm6.ipv6GroupMemberFilterMode = ilm->ilm_fmode; 18836 if (!snmp_append_data2(mpctl->b_cont, 18837 &mp_tail, 18838 (char *)&ipm6, (int)sizeof (ipm6))) { 18839 ip1dbg(("ip_snmp_get_mib2_ip6_group: " 18840 "failed to allocate %u bytes\n", 18841 (uint_t)sizeof (ipm6))); 18842 } 18843 } 18844 ILM_WALKER_RELE(ill); 18845 } 18846 rw_exit(&ipst->ips_ill_g_lock); 18847 18848 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18849 ip3dbg(("ip_snmp_get: level %d, name %d, len %d\n", 18850 (int)optp->level, (int)optp->name, (int)optp->len)); 18851 qreply(q, mpctl); 18852 return (mp2ctl); 18853 } 18854 18855 /* IP multicast filtered sources */ 18856 static mblk_t * 18857 ip_snmp_get_mib2_ip_group_src(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18858 { 18859 struct opthdr *optp; 18860 mblk_t *mp2ctl; 18861 ill_t *ill; 18862 ipif_t *ipif; 18863 ilm_t *ilm; 18864 ip_grpsrc_t ips; 18865 mblk_t *mp_tail = NULL; 18866 ill_walk_context_t ctx; 18867 zoneid_t zoneid; 18868 int i; 18869 slist_t *sl; 18870 18871 /* 18872 * make a copy of the original message 18873 */ 18874 mp2ctl = copymsg(mpctl); 18875 zoneid = Q_TO_CONN(q)->conn_zoneid; 18876 18877 /* ipGroupSource table */ 18878 optp = (struct opthdr *)&mpctl->b_rptr[ 18879 sizeof (struct T_optmgmt_ack)]; 18880 optp->level = MIB2_IP; 18881 optp->name = EXPER_IP_GROUP_SOURCES; 18882 18883 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18884 ill = ILL_START_WALK_V4(&ctx, ipst); 18885 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18886 ILM_WALKER_HOLD(ill); 18887 for (ipif = ill->ill_ipif; ipif != NULL; 18888 ipif = ipif->ipif_next) { 18889 if (ipif->ipif_zoneid != zoneid) 18890 continue; /* not this zone */ 18891 (void) ipif_get_name(ipif, 18892 ips.ipGroupSourceIfIndex.o_bytes, 18893 OCTET_LENGTH); 18894 ips.ipGroupSourceIfIndex.o_length = 18895 mi_strlen(ips.ipGroupSourceIfIndex.o_bytes); 18896 for (ilm = ill->ill_ilm; ilm; ilm = ilm->ilm_next) { 18897 ASSERT(ilm->ilm_ipif != NULL); 18898 ASSERT(ilm->ilm_ill == NULL); 18899 sl = ilm->ilm_filter; 18900 if (ilm->ilm_ipif != ipif || SLIST_IS_EMPTY(sl)) 18901 continue; 18902 ips.ipGroupSourceGroup = ilm->ilm_addr; 18903 for (i = 0; i < sl->sl_numsrc; i++) { 18904 if (!IN6_IS_ADDR_V4MAPPED( 18905 &sl->sl_addr[i])) 18906 continue; 18907 IN6_V4MAPPED_TO_IPADDR(&sl->sl_addr[i], 18908 ips.ipGroupSourceAddress); 18909 if (snmp_append_data2(mpctl->b_cont, 18910 &mp_tail, (char *)&ips, 18911 (int)sizeof (ips)) == 0) { 18912 ip1dbg(("ip_snmp_get_mib2_" 18913 "ip_group_src: failed to " 18914 "allocate %u bytes\n", 18915 (uint_t)sizeof (ips))); 18916 } 18917 } 18918 } 18919 } 18920 ILM_WALKER_RELE(ill); 18921 } 18922 rw_exit(&ipst->ips_ill_g_lock); 18923 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18924 ip3dbg(("ip_snmp_get: level %d, name %d, len %d\n", 18925 (int)optp->level, (int)optp->name, (int)optp->len)); 18926 qreply(q, mpctl); 18927 return (mp2ctl); 18928 } 18929 18930 /* IPv6 multicast filtered sources. */ 18931 static mblk_t * 18932 ip_snmp_get_mib2_ip6_group_src(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18933 { 18934 struct opthdr *optp; 18935 mblk_t *mp2ctl; 18936 ill_t *ill; 18937 ilm_t *ilm; 18938 ipv6_grpsrc_t ips6; 18939 mblk_t *mp_tail = NULL; 18940 ill_walk_context_t ctx; 18941 zoneid_t zoneid; 18942 int i; 18943 slist_t *sl; 18944 18945 /* 18946 * make a copy of the original message 18947 */ 18948 mp2ctl = copymsg(mpctl); 18949 zoneid = Q_TO_CONN(q)->conn_zoneid; 18950 18951 /* ip6GroupMember table */ 18952 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 18953 optp->level = MIB2_IP6; 18954 optp->name = EXPER_IP6_GROUP_SOURCES; 18955 18956 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 18957 ill = ILL_START_WALK_V6(&ctx, ipst); 18958 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 18959 ILM_WALKER_HOLD(ill); 18960 ips6.ipv6GroupSourceIfIndex = ill->ill_phyint->phyint_ifindex; 18961 for (ilm = ill->ill_ilm; ilm; ilm = ilm->ilm_next) { 18962 ASSERT(ilm->ilm_ipif == NULL); 18963 ASSERT(ilm->ilm_ill != NULL); 18964 sl = ilm->ilm_filter; 18965 if (ilm->ilm_zoneid != zoneid || SLIST_IS_EMPTY(sl)) 18966 continue; 18967 ips6.ipv6GroupSourceGroup = ilm->ilm_v6addr; 18968 for (i = 0; i < sl->sl_numsrc; i++) { 18969 ips6.ipv6GroupSourceAddress = sl->sl_addr[i]; 18970 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 18971 (char *)&ips6, (int)sizeof (ips6))) { 18972 ip1dbg(("ip_snmp_get_mib2_ip6_" 18973 "group_src: failed to allocate " 18974 "%u bytes\n", 18975 (uint_t)sizeof (ips6))); 18976 } 18977 } 18978 } 18979 ILM_WALKER_RELE(ill); 18980 } 18981 rw_exit(&ipst->ips_ill_g_lock); 18982 18983 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 18984 ip3dbg(("ip_snmp_get: level %d, name %d, len %d\n", 18985 (int)optp->level, (int)optp->name, (int)optp->len)); 18986 qreply(q, mpctl); 18987 return (mp2ctl); 18988 } 18989 18990 /* Multicast routing virtual interface table. */ 18991 static mblk_t * 18992 ip_snmp_get_mib2_virt_multi(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 18993 { 18994 struct opthdr *optp; 18995 mblk_t *mp2ctl; 18996 18997 /* 18998 * make a copy of the original message 18999 */ 19000 mp2ctl = copymsg(mpctl); 19001 19002 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19003 optp->level = EXPER_DVMRP; 19004 optp->name = EXPER_DVMRP_VIF; 19005 if (!ip_mroute_vif(mpctl->b_cont, ipst)) { 19006 ip0dbg(("ip_mroute_vif: failed\n")); 19007 } 19008 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 19009 ip3dbg(("ip_snmp_get_mib2_virt_multi: level %d, name %d, len %d\n", 19010 (int)optp->level, (int)optp->name, (int)optp->len)); 19011 qreply(q, mpctl); 19012 return (mp2ctl); 19013 } 19014 19015 /* Multicast routing table. */ 19016 static mblk_t * 19017 ip_snmp_get_mib2_multi_rtable(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 19018 { 19019 struct opthdr *optp; 19020 mblk_t *mp2ctl; 19021 19022 /* 19023 * make a copy of the original message 19024 */ 19025 mp2ctl = copymsg(mpctl); 19026 19027 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19028 optp->level = EXPER_DVMRP; 19029 optp->name = EXPER_DVMRP_MRT; 19030 if (!ip_mroute_mrt(mpctl->b_cont, ipst)) { 19031 ip0dbg(("ip_mroute_mrt: failed\n")); 19032 } 19033 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 19034 ip3dbg(("ip_snmp_get_mib2_multi_rtable: level %d, name %d, len %d\n", 19035 (int)optp->level, (int)optp->name, (int)optp->len)); 19036 qreply(q, mpctl); 19037 return (mp2ctl); 19038 } 19039 19040 /* 19041 * Return ipRouteEntryTable, ipNetToMediaEntryTable, and ipRouteAttributeTable 19042 * in one IRE walk. 19043 */ 19044 static mblk_t * 19045 ip_snmp_get_mib2_ip_route_media(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 19046 { 19047 struct opthdr *optp; 19048 mblk_t *mp2ctl; /* Returned */ 19049 mblk_t *mp3ctl; /* nettomedia */ 19050 mblk_t *mp4ctl; /* routeattrs */ 19051 iproutedata_t ird; 19052 zoneid_t zoneid; 19053 19054 /* 19055 * make copies of the original message 19056 * - mp2ctl is returned unchanged to the caller for his use 19057 * - mpctl is sent upstream as ipRouteEntryTable 19058 * - mp3ctl is sent upstream as ipNetToMediaEntryTable 19059 * - mp4ctl is sent upstream as ipRouteAttributeTable 19060 */ 19061 mp2ctl = copymsg(mpctl); 19062 mp3ctl = copymsg(mpctl); 19063 mp4ctl = copymsg(mpctl); 19064 if (mp3ctl == NULL || mp4ctl == NULL) { 19065 freemsg(mp4ctl); 19066 freemsg(mp3ctl); 19067 freemsg(mp2ctl); 19068 freemsg(mpctl); 19069 return (NULL); 19070 } 19071 19072 bzero(&ird, sizeof (ird)); 19073 19074 ird.ird_route.lp_head = mpctl->b_cont; 19075 ird.ird_netmedia.lp_head = mp3ctl->b_cont; 19076 ird.ird_attrs.lp_head = mp4ctl->b_cont; 19077 19078 zoneid = Q_TO_CONN(q)->conn_zoneid; 19079 ire_walk_v4(ip_snmp_get2_v4, &ird, zoneid, ipst); 19080 if (zoneid == GLOBAL_ZONEID) { 19081 /* 19082 * Those IREs are used by Mobile-IP; since mipagent(1M) 19083 * requires the sys_net_config or sys_ip_config privilege, 19084 * it can only run in the global zone or an exclusive-IP zone, 19085 * and both those have a conn_zoneid == GLOBAL_ZONEID. 19086 */ 19087 ire_walk_srcif_table_v4(ip_snmp_get2_v4, &ird, ipst); 19088 ire_walk_ill_mrtun(0, 0, ip_snmp_get2_v4, &ird, NULL, ipst); 19089 } 19090 19091 /* ipRouteEntryTable in mpctl */ 19092 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19093 optp->level = MIB2_IP; 19094 optp->name = MIB2_IP_ROUTE; 19095 optp->len = msgdsize(ird.ird_route.lp_head); 19096 ip3dbg(("ip_snmp_get_mib2_ip_route_media: level %d, name %d, len %d\n", 19097 (int)optp->level, (int)optp->name, (int)optp->len)); 19098 qreply(q, mpctl); 19099 19100 /* ipNetToMediaEntryTable in mp3ctl */ 19101 optp = (struct opthdr *)&mp3ctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19102 optp->level = MIB2_IP; 19103 optp->name = MIB2_IP_MEDIA; 19104 optp->len = msgdsize(ird.ird_netmedia.lp_head); 19105 ip3dbg(("ip_snmp_get_mib2_ip_route_media: level %d, name %d, len %d\n", 19106 (int)optp->level, (int)optp->name, (int)optp->len)); 19107 qreply(q, mp3ctl); 19108 19109 /* ipRouteAttributeTable in mp4ctl */ 19110 optp = (struct opthdr *)&mp4ctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19111 optp->level = MIB2_IP; 19112 optp->name = EXPER_IP_RTATTR; 19113 optp->len = msgdsize(ird.ird_attrs.lp_head); 19114 ip3dbg(("ip_snmp_get_mib2_ip_route_media: level %d, name %d, len %d\n", 19115 (int)optp->level, (int)optp->name, (int)optp->len)); 19116 if (optp->len == 0) 19117 freemsg(mp4ctl); 19118 else 19119 qreply(q, mp4ctl); 19120 19121 return (mp2ctl); 19122 } 19123 19124 /* 19125 * Return ipv6RouteEntryTable and ipv6RouteAttributeTable in one IRE walk, and 19126 * ipv6NetToMediaEntryTable in an NDP walk. 19127 */ 19128 static mblk_t * 19129 ip_snmp_get_mib2_ip6_route_media(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 19130 { 19131 struct opthdr *optp; 19132 mblk_t *mp2ctl; /* Returned */ 19133 mblk_t *mp3ctl; /* nettomedia */ 19134 mblk_t *mp4ctl; /* routeattrs */ 19135 iproutedata_t ird; 19136 zoneid_t zoneid; 19137 19138 /* 19139 * make copies of the original message 19140 * - mp2ctl is returned unchanged to the caller for his use 19141 * - mpctl is sent upstream as ipv6RouteEntryTable 19142 * - mp3ctl is sent upstream as ipv6NetToMediaEntryTable 19143 * - mp4ctl is sent upstream as ipv6RouteAttributeTable 19144 */ 19145 mp2ctl = copymsg(mpctl); 19146 mp3ctl = copymsg(mpctl); 19147 mp4ctl = copymsg(mpctl); 19148 if (mp3ctl == NULL || mp4ctl == NULL) { 19149 freemsg(mp4ctl); 19150 freemsg(mp3ctl); 19151 freemsg(mp2ctl); 19152 freemsg(mpctl); 19153 return (NULL); 19154 } 19155 19156 bzero(&ird, sizeof (ird)); 19157 19158 ird.ird_route.lp_head = mpctl->b_cont; 19159 ird.ird_netmedia.lp_head = mp3ctl->b_cont; 19160 ird.ird_attrs.lp_head = mp4ctl->b_cont; 19161 19162 zoneid = Q_TO_CONN(q)->conn_zoneid; 19163 ire_walk_v6(ip_snmp_get2_v6_route, &ird, zoneid, ipst); 19164 19165 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19166 optp->level = MIB2_IP6; 19167 optp->name = MIB2_IP6_ROUTE; 19168 optp->len = msgdsize(ird.ird_route.lp_head); 19169 ip3dbg(("ip_snmp_get_mib2_ip6_route_media: level %d, name %d, len %d\n", 19170 (int)optp->level, (int)optp->name, (int)optp->len)); 19171 qreply(q, mpctl); 19172 19173 /* ipv6NetToMediaEntryTable in mp3ctl */ 19174 ndp_walk(NULL, ip_snmp_get2_v6_media, &ird, ipst); 19175 19176 optp = (struct opthdr *)&mp3ctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19177 optp->level = MIB2_IP6; 19178 optp->name = MIB2_IP6_MEDIA; 19179 optp->len = msgdsize(ird.ird_netmedia.lp_head); 19180 ip3dbg(("ip_snmp_get_mib2_ip6_route_media: level %d, name %d, len %d\n", 19181 (int)optp->level, (int)optp->name, (int)optp->len)); 19182 qreply(q, mp3ctl); 19183 19184 /* ipv6RouteAttributeTable in mp4ctl */ 19185 optp = (struct opthdr *)&mp4ctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19186 optp->level = MIB2_IP6; 19187 optp->name = EXPER_IP_RTATTR; 19188 optp->len = msgdsize(ird.ird_attrs.lp_head); 19189 ip3dbg(("ip_snmp_get_mib2_ip6_route_media: level %d, name %d, len %d\n", 19190 (int)optp->level, (int)optp->name, (int)optp->len)); 19191 if (optp->len == 0) 19192 freemsg(mp4ctl); 19193 else 19194 qreply(q, mp4ctl); 19195 19196 return (mp2ctl); 19197 } 19198 19199 /* 19200 * IPv6 mib: One per ill 19201 */ 19202 static mblk_t * 19203 ip_snmp_get_mib2_ip6(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 19204 { 19205 struct opthdr *optp; 19206 mblk_t *mp2ctl; 19207 ill_t *ill; 19208 ill_walk_context_t ctx; 19209 mblk_t *mp_tail = NULL; 19210 19211 /* 19212 * Make a copy of the original message 19213 */ 19214 mp2ctl = copymsg(mpctl); 19215 19216 /* fixed length IPv6 structure ... */ 19217 19218 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19219 optp->level = MIB2_IP6; 19220 optp->name = 0; 19221 /* Include "unknown interface" ip6_mib */ 19222 ipst->ips_ip6_mib.ipIfStatsIPVersion = MIB2_INETADDRESSTYPE_ipv6; 19223 ipst->ips_ip6_mib.ipIfStatsIfIndex = 19224 MIB2_UNKNOWN_INTERFACE; /* Flag to netstat */ 19225 SET_MIB(ipst->ips_ip6_mib.ipIfStatsForwarding, 19226 ipst->ips_ipv6_forward ? 1 : 2); 19227 SET_MIB(ipst->ips_ip6_mib.ipIfStatsDefaultHopLimit, 19228 ipst->ips_ipv6_def_hops); 19229 SET_MIB(ipst->ips_ip6_mib.ipIfStatsEntrySize, 19230 sizeof (mib2_ipIfStatsEntry_t)); 19231 SET_MIB(ipst->ips_ip6_mib.ipIfStatsAddrEntrySize, 19232 sizeof (mib2_ipv6AddrEntry_t)); 19233 SET_MIB(ipst->ips_ip6_mib.ipIfStatsRouteEntrySize, 19234 sizeof (mib2_ipv6RouteEntry_t)); 19235 SET_MIB(ipst->ips_ip6_mib.ipIfStatsNetToMediaEntrySize, 19236 sizeof (mib2_ipv6NetToMediaEntry_t)); 19237 SET_MIB(ipst->ips_ip6_mib.ipIfStatsMemberEntrySize, 19238 sizeof (ipv6_member_t)); 19239 SET_MIB(ipst->ips_ip6_mib.ipIfStatsGroupSourceEntrySize, 19240 sizeof (ipv6_grpsrc_t)); 19241 19242 /* 19243 * Synchronize 64- and 32-bit counters 19244 */ 19245 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsInReceives, 19246 ipIfStatsHCInReceives); 19247 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsInDelivers, 19248 ipIfStatsHCInDelivers); 19249 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsOutRequests, 19250 ipIfStatsHCOutRequests); 19251 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsOutForwDatagrams, 19252 ipIfStatsHCOutForwDatagrams); 19253 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsOutMcastPkts, 19254 ipIfStatsHCOutMcastPkts); 19255 SYNC32_MIB(&ipst->ips_ip6_mib, ipIfStatsInMcastPkts, 19256 ipIfStatsHCInMcastPkts); 19257 19258 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 19259 (char *)&ipst->ips_ip6_mib, (int)sizeof (ipst->ips_ip6_mib))) { 19260 ip1dbg(("ip_snmp_get_mib2_ip6: failed to allocate %u bytes\n", 19261 (uint_t)sizeof (ipst->ips_ip6_mib))); 19262 } 19263 19264 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 19265 ill = ILL_START_WALK_V6(&ctx, ipst); 19266 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 19267 ill->ill_ip_mib->ipIfStatsIfIndex = 19268 ill->ill_phyint->phyint_ifindex; 19269 SET_MIB(ill->ill_ip_mib->ipIfStatsForwarding, 19270 ipst->ips_ipv6_forward ? 1 : 2); 19271 SET_MIB(ill->ill_ip_mib->ipIfStatsDefaultHopLimit, 19272 ill->ill_max_hops); 19273 19274 /* 19275 * Synchronize 64- and 32-bit counters 19276 */ 19277 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsInReceives, 19278 ipIfStatsHCInReceives); 19279 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsInDelivers, 19280 ipIfStatsHCInDelivers); 19281 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsOutRequests, 19282 ipIfStatsHCOutRequests); 19283 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsOutForwDatagrams, 19284 ipIfStatsHCOutForwDatagrams); 19285 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsOutMcastPkts, 19286 ipIfStatsHCOutMcastPkts); 19287 SYNC32_MIB(ill->ill_ip_mib, ipIfStatsInMcastPkts, 19288 ipIfStatsHCInMcastPkts); 19289 19290 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 19291 (char *)ill->ill_ip_mib, 19292 (int)sizeof (*ill->ill_ip_mib))) { 19293 ip1dbg(("ip_snmp_get_mib2_ip6: failed to allocate " 19294 "%u bytes\n", 19295 (uint_t)sizeof (*ill->ill_ip_mib))); 19296 } 19297 } 19298 rw_exit(&ipst->ips_ill_g_lock); 19299 19300 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 19301 ip3dbg(("ip_snmp_get_mib2_ip6: level %d, name %d, len %d\n", 19302 (int)optp->level, (int)optp->name, (int)optp->len)); 19303 qreply(q, mpctl); 19304 return (mp2ctl); 19305 } 19306 19307 /* 19308 * ICMPv6 mib: One per ill 19309 */ 19310 static mblk_t * 19311 ip_snmp_get_mib2_icmp6(queue_t *q, mblk_t *mpctl, ip_stack_t *ipst) 19312 { 19313 struct opthdr *optp; 19314 mblk_t *mp2ctl; 19315 ill_t *ill; 19316 ill_walk_context_t ctx; 19317 mblk_t *mp_tail = NULL; 19318 /* 19319 * Make a copy of the original message 19320 */ 19321 mp2ctl = copymsg(mpctl); 19322 19323 /* fixed length ICMPv6 structure ... */ 19324 19325 optp = (struct opthdr *)&mpctl->b_rptr[sizeof (struct T_optmgmt_ack)]; 19326 optp->level = MIB2_ICMP6; 19327 optp->name = 0; 19328 /* Include "unknown interface" icmp6_mib */ 19329 ipst->ips_icmp6_mib.ipv6IfIcmpIfIndex = 19330 MIB2_UNKNOWN_INTERFACE; /* netstat flag */ 19331 ipst->ips_icmp6_mib.ipv6IfIcmpEntrySize = 19332 sizeof (mib2_ipv6IfIcmpEntry_t); 19333 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 19334 (char *)&ipst->ips_icmp6_mib, 19335 (int)sizeof (ipst->ips_icmp6_mib))) { 19336 ip1dbg(("ip_snmp_get_mib2_icmp6: failed to allocate %u bytes\n", 19337 (uint_t)sizeof (ipst->ips_icmp6_mib))); 19338 } 19339 19340 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 19341 ill = ILL_START_WALK_V6(&ctx, ipst); 19342 for (; ill != NULL; ill = ill_next(&ctx, ill)) { 19343 ill->ill_icmp6_mib->ipv6IfIcmpIfIndex = 19344 ill->ill_phyint->phyint_ifindex; 19345 if (!snmp_append_data2(mpctl->b_cont, &mp_tail, 19346 (char *)ill->ill_icmp6_mib, 19347 (int)sizeof (*ill->ill_icmp6_mib))) { 19348 ip1dbg(("ip_snmp_get_mib2_icmp6: failed to allocate " 19349 "%u bytes\n", 19350 (uint_t)sizeof (*ill->ill_icmp6_mib))); 19351 } 19352 } 19353 rw_exit(&ipst->ips_ill_g_lock); 19354 19355 optp->len = (t_uscalar_t)msgdsize(mpctl->b_cont); 19356 ip3dbg(("ip_snmp_get_mib2_icmp6: level %d, name %d, len %d\n", 19357 (int)optp->level, (int)optp->name, (int)optp->len)); 19358 qreply(q, mpctl); 19359 return (mp2ctl); 19360 } 19361 19362 /* 19363 * ire_walk routine to create both ipRouteEntryTable and 19364 * ipRouteAttributeTable in one IRE walk 19365 */ 19366 static void 19367 ip_snmp_get2_v4(ire_t *ire, iproutedata_t *ird) 19368 { 19369 ill_t *ill; 19370 ipif_t *ipif; 19371 mib2_ipRouteEntry_t *re; 19372 mib2_ipAttributeEntry_t *iae, *iaeptr; 19373 ipaddr_t gw_addr; 19374 tsol_ire_gw_secattr_t *attrp; 19375 tsol_gc_t *gc = NULL; 19376 tsol_gcgrp_t *gcgrp = NULL; 19377 uint_t sacnt = 0; 19378 int i; 19379 19380 ASSERT(ire->ire_ipversion == IPV4_VERSION); 19381 19382 if ((re = kmem_zalloc(sizeof (*re), KM_NOSLEEP)) == NULL) 19383 return; 19384 19385 if ((attrp = ire->ire_gw_secattr) != NULL) { 19386 mutex_enter(&attrp->igsa_lock); 19387 if ((gc = attrp->igsa_gc) != NULL) { 19388 gcgrp = gc->gc_grp; 19389 ASSERT(gcgrp != NULL); 19390 rw_enter(&gcgrp->gcgrp_rwlock, RW_READER); 19391 sacnt = 1; 19392 } else if ((gcgrp = attrp->igsa_gcgrp) != NULL) { 19393 rw_enter(&gcgrp->gcgrp_rwlock, RW_READER); 19394 gc = gcgrp->gcgrp_head; 19395 sacnt = gcgrp->gcgrp_count; 19396 } 19397 mutex_exit(&attrp->igsa_lock); 19398 19399 /* do nothing if there's no gc to report */ 19400 if (gc == NULL) { 19401 ASSERT(sacnt == 0); 19402 if (gcgrp != NULL) { 19403 /* we might as well drop the lock now */ 19404 rw_exit(&gcgrp->gcgrp_rwlock); 19405 gcgrp = NULL; 19406 } 19407 attrp = NULL; 19408 } 19409 19410 ASSERT(gc == NULL || (gcgrp != NULL && 19411 RW_LOCK_HELD(&gcgrp->gcgrp_rwlock))); 19412 } 19413 ASSERT(sacnt == 0 || gc != NULL); 19414 19415 if (sacnt != 0 && 19416 (iae = kmem_alloc(sacnt * sizeof (*iae), KM_NOSLEEP)) == NULL) { 19417 kmem_free(re, sizeof (*re)); 19418 rw_exit(&gcgrp->gcgrp_rwlock); 19419 return; 19420 } 19421 19422 /* 19423 * Return all IRE types for route table... let caller pick and choose 19424 */ 19425 re->ipRouteDest = ire->ire_addr; 19426 ipif = ire->ire_ipif; 19427 re->ipRouteIfIndex.o_length = 0; 19428 if (ire->ire_type == IRE_CACHE) { 19429 ill = (ill_t *)ire->ire_stq->q_ptr; 19430 re->ipRouteIfIndex.o_length = 19431 ill->ill_name_length == 0 ? 0 : 19432 MIN(OCTET_LENGTH, ill->ill_name_length - 1); 19433 bcopy(ill->ill_name, re->ipRouteIfIndex.o_bytes, 19434 re->ipRouteIfIndex.o_length); 19435 } else if (ipif != NULL) { 19436 (void) ipif_get_name(ipif, re->ipRouteIfIndex.o_bytes, 19437 OCTET_LENGTH); 19438 re->ipRouteIfIndex.o_length = 19439 mi_strlen(re->ipRouteIfIndex.o_bytes); 19440 } 19441 re->ipRouteMetric1 = -1; 19442 re->ipRouteMetric2 = -1; 19443 re->ipRouteMetric3 = -1; 19444 re->ipRouteMetric4 = -1; 19445 19446 gw_addr = ire->ire_gateway_addr; 19447 19448 if (ire->ire_type & (IRE_INTERFACE|IRE_LOOPBACK|IRE_BROADCAST)) 19449 re->ipRouteNextHop = ire->ire_src_addr; 19450 else 19451 re->ipRouteNextHop = gw_addr; 19452 /* indirect(4), direct(3), or invalid(2) */ 19453 if (ire->ire_flags & (RTF_REJECT | RTF_BLACKHOLE)) 19454 re->ipRouteType = 2; 19455 else 19456 re->ipRouteType = (gw_addr != 0) ? 4 : 3; 19457 re->ipRouteProto = -1; 19458 re->ipRouteAge = gethrestime_sec() - ire->ire_create_time; 19459 re->ipRouteMask = ire->ire_mask; 19460 re->ipRouteMetric5 = -1; 19461 re->ipRouteInfo.re_max_frag = ire->ire_max_frag; 19462 re->ipRouteInfo.re_frag_flag = ire->ire_frag_flag; 19463 re->ipRouteInfo.re_rtt = ire->ire_uinfo.iulp_rtt; 19464 re->ipRouteInfo.re_ref = ire->ire_refcnt; 19465 re->ipRouteInfo.re_src_addr = ire->ire_src_addr; 19466 re->ipRouteInfo.re_obpkt = ire->ire_ob_pkt_count; 19467 re->ipRouteInfo.re_ibpkt = ire->ire_ib_pkt_count; 19468 re->ipRouteInfo.re_flags = ire->ire_flags; 19469 re->ipRouteInfo.re_in_ill.o_length = 0; 19470 19471 if (ire->ire_flags & RTF_DYNAMIC) { 19472 re->ipRouteInfo.re_ire_type = IRE_HOST_REDIRECT; 19473 } else { 19474 re->ipRouteInfo.re_ire_type = ire->ire_type; 19475 } 19476 19477 if (ire->ire_in_ill != NULL) { 19478 re->ipRouteInfo.re_in_ill.o_length = 19479 ire->ire_in_ill->ill_name_length == 0 ? 0 : 19480 MIN(OCTET_LENGTH, ire->ire_in_ill->ill_name_length - 1); 19481 bcopy(ire->ire_in_ill->ill_name, 19482 re->ipRouteInfo.re_in_ill.o_bytes, 19483 re->ipRouteInfo.re_in_ill.o_length); 19484 } 19485 re->ipRouteInfo.re_in_src_addr = ire->ire_in_src_addr; 19486 19487 if (!snmp_append_data2(ird->ird_route.lp_head, &ird->ird_route.lp_tail, 19488 (char *)re, (int)sizeof (*re))) { 19489 ip1dbg(("ip_snmp_get2_v4: failed to allocate %u bytes\n", 19490 (uint_t)sizeof (*re))); 19491 } 19492 19493 for (iaeptr = iae, i = 0; i < sacnt; i++, iaeptr++, gc = gc->gc_next) { 19494 iaeptr->iae_routeidx = ird->ird_idx; 19495 iaeptr->iae_doi = gc->gc_db->gcdb_doi; 19496 iaeptr->iae_slrange = gc->gc_db->gcdb_slrange; 19497 } 19498 19499 if (!snmp_append_data2(ird->ird_attrs.lp_head, &ird->ird_attrs.lp_tail, 19500 (char *)iae, sacnt * sizeof (*iae))) { 19501 ip1dbg(("ip_snmp_get2_v4: failed to allocate %u bytes\n", 19502 (unsigned)(sacnt * sizeof (*iae)))); 19503 } 19504 19505 /* bump route index for next pass */ 19506 ird->ird_idx++; 19507 19508 kmem_free(re, sizeof (*re)); 19509 if (sacnt != 0) 19510 kmem_free(iae, sacnt * sizeof (*iae)); 19511 19512 if (gcgrp != NULL) 19513 rw_exit(&gcgrp->gcgrp_rwlock); 19514 } 19515 19516 /* 19517 * ire_walk routine to create ipv6RouteEntryTable and ipRouteEntryTable. 19518 */ 19519 static void 19520 ip_snmp_get2_v6_route(ire_t *ire, iproutedata_t *ird) 19521 { 19522 ill_t *ill; 19523 ipif_t *ipif; 19524 mib2_ipv6RouteEntry_t *re; 19525 mib2_ipAttributeEntry_t *iae, *iaeptr; 19526 in6_addr_t gw_addr_v6; 19527 tsol_ire_gw_secattr_t *attrp; 19528 tsol_gc_t *gc = NULL; 19529 tsol_gcgrp_t *gcgrp = NULL; 19530 uint_t sacnt = 0; 19531 int i; 19532 19533 ASSERT(ire->ire_ipversion == IPV6_VERSION); 19534 19535 if ((re = kmem_zalloc(sizeof (*re), KM_NOSLEEP)) == NULL) 19536 return; 19537 19538 if ((attrp = ire->ire_gw_secattr) != NULL) { 19539 mutex_enter(&attrp->igsa_lock); 19540 if ((gc = attrp->igsa_gc) != NULL) { 19541 gcgrp = gc->gc_grp; 19542 ASSERT(gcgrp != NULL); 19543 rw_enter(&gcgrp->gcgrp_rwlock, RW_READER); 19544 sacnt = 1; 19545 } else if ((gcgrp = attrp->igsa_gcgrp) != NULL) { 19546 rw_enter(&gcgrp->gcgrp_rwlock, RW_READER); 19547 gc = gcgrp->gcgrp_head; 19548 sacnt = gcgrp->gcgrp_count; 19549 } 19550 mutex_exit(&attrp->igsa_lock); 19551 19552 /* do nothing if there's no gc to report */ 19553 if (gc == NULL) { 19554 ASSERT(sacnt == 0); 19555 if (gcgrp != NULL) { 19556 /* we might as well drop the lock now */ 19557 rw_exit(&gcgrp->gcgrp_rwlock); 19558 gcgrp = NULL; 19559 } 19560 attrp = NULL; 19561 } 19562 19563 ASSERT(gc == NULL || (gcgrp != NULL && 19564 RW_LOCK_HELD(&gcgrp->gcgrp_rwlock))); 19565 } 19566 ASSERT(sacnt == 0 || gc != NULL); 19567 19568 if (sacnt != 0 && 19569 (iae = kmem_alloc(sacnt * sizeof (*iae), KM_NOSLEEP)) == NULL) { 19570 kmem_free(re, sizeof (*re)); 19571 rw_exit(&gcgrp->gcgrp_rwlock); 19572 return; 19573 } 19574 19575 /* 19576 * Return all IRE types for route table... let caller pick and choose 19577 */ 19578 re->ipv6RouteDest = ire->ire_addr_v6; 19579 re->ipv6RoutePfxLength = ip_mask_to_plen_v6(&ire->ire_mask_v6); 19580 re->ipv6RouteIndex = 0; /* Unique when multiple with same dest/plen */ 19581 re->ipv6RouteIfIndex.o_length = 0; 19582 ipif = ire->ire_ipif; 19583 if (ire->ire_type == IRE_CACHE) { 19584 ill = (ill_t *)ire->ire_stq->q_ptr; 19585 re->ipv6RouteIfIndex.o_length = 19586 ill->ill_name_length == 0 ? 0 : 19587 MIN(OCTET_LENGTH, ill->ill_name_length - 1); 19588 bcopy(ill->ill_name, re->ipv6RouteIfIndex.o_bytes, 19589 re->ipv6RouteIfIndex.o_length); 19590 } else if (ipif != NULL) { 19591 (void) ipif_get_name(ipif, re->ipv6RouteIfIndex.o_bytes, 19592 OCTET_LENGTH); 19593 re->ipv6RouteIfIndex.o_length = 19594 mi_strlen(re->ipv6RouteIfIndex.o_bytes); 19595 } 19596 19597 ASSERT(!(ire->ire_type & IRE_BROADCAST)); 19598 19599 mutex_enter(&ire->ire_lock); 19600 gw_addr_v6 = ire->ire_gateway_addr_v6; 19601 mutex_exit(&ire->ire_lock); 19602 19603 if (ire->ire_type & (IRE_INTERFACE|IRE_LOOPBACK)) 19604 re->ipv6RouteNextHop = ire->ire_src_addr_v6; 19605 else 19606 re->ipv6RouteNextHop = gw_addr_v6; 19607 19608 /* remote(4), local(3), or discard(2) */ 19609 if (ire->ire_flags & (RTF_REJECT | RTF_BLACKHOLE)) 19610 re->ipv6RouteType = 2; 19611 else if (IN6_IS_ADDR_UNSPECIFIED(&gw_addr_v6)) 19612 re->ipv6RouteType = 3; 19613 else 19614 re->ipv6RouteType = 4; 19615 19616 re->ipv6RouteProtocol = -1; 19617 re->ipv6RoutePolicy = 0; 19618 re->ipv6RouteAge = gethrestime_sec() - ire->ire_create_time; 19619 re->ipv6RouteNextHopRDI = 0; 19620 re->ipv6RouteWeight = 0; 19621 re->ipv6RouteMetric = 0; 19622 re->ipv6RouteInfo.re_max_frag = ire->ire_max_frag; 19623 re->ipv6RouteInfo.re_frag_flag = ire->ire_frag_flag; 19624 re->ipv6RouteInfo.re_rtt = ire->ire_uinfo.iulp_rtt; 19625 re->ipv6RouteInfo.re_src_addr = ire->ire_src_addr_v6; 19626 re->ipv6RouteInfo.re_obpkt = ire->ire_ob_pkt_count; 19627 re->ipv6RouteInfo.re_ibpkt = ire->ire_ib_pkt_count; 19628 re->ipv6RouteInfo.re_ref = ire->ire_refcnt; 19629 re->ipv6RouteInfo.re_flags = ire->ire_flags; 19630 19631 if (ire->ire_flags & RTF_DYNAMIC) { 19632 re->ipv6RouteInfo.re_ire_type = IRE_HOST_REDIRECT; 19633 } else { 19634 re->ipv6RouteInfo.re_ire_type = ire->ire_type; 19635 } 19636 19637 if (!snmp_append_data2(ird->ird_route.lp_head, &ird->ird_route.lp_tail, 19638 (char *)re, (int)sizeof (*re))) { 19639 ip1dbg(("ip_snmp_get2_v6: failed to allocate %u bytes\n", 19640 (uint_t)sizeof (*re))); 19641 } 19642 19643 for (iaeptr = iae, i = 0; i < sacnt; i++, iaeptr++, gc = gc->gc_next) { 19644 iaeptr->iae_routeidx = ird->ird_idx; 19645 iaeptr->iae_doi = gc->gc_db->gcdb_doi; 19646 iaeptr->iae_slrange = gc->gc_db->gcdb_slrange; 19647 } 19648 19649 if (!snmp_append_data2(ird->ird_attrs.lp_head, &ird->ird_attrs.lp_tail, 19650 (char *)iae, sacnt * sizeof (*iae))) { 19651 ip1dbg(("ip_snmp_get2_v6: failed to allocate %u bytes\n", 19652 (unsigned)(sacnt * sizeof (*iae)))); 19653 } 19654 19655 /* bump route index for next pass */ 19656 ird->ird_idx++; 19657 19658 kmem_free(re, sizeof (*re)); 19659 if (sacnt != 0) 19660 kmem_free(iae, sacnt * sizeof (*iae)); 19661 19662 if (gcgrp != NULL) 19663 rw_exit(&gcgrp->gcgrp_rwlock); 19664 } 19665 19666 /* 19667 * ndp_walk routine to create ipv6NetToMediaEntryTable 19668 */ 19669 static int 19670 ip_snmp_get2_v6_media(nce_t *nce, iproutedata_t *ird) 19671 { 19672 ill_t *ill; 19673 mib2_ipv6NetToMediaEntry_t ntme; 19674 dl_unitdata_req_t *dl; 19675 19676 ill = nce->nce_ill; 19677 if (ill->ill_isv6 == B_FALSE) /* skip arpce entry */ 19678 return (0); 19679 19680 /* 19681 * Neighbor cache entry attached to IRE with on-link 19682 * destination. 19683 */ 19684 ntme.ipv6NetToMediaIfIndex = ill->ill_phyint->phyint_ifindex; 19685 ntme.ipv6NetToMediaNetAddress = nce->nce_addr; 19686 if ((ill->ill_flags & ILLF_XRESOLV) && 19687 (nce->nce_res_mp != NULL)) { 19688 dl = (dl_unitdata_req_t *)(nce->nce_res_mp->b_rptr); 19689 ntme.ipv6NetToMediaPhysAddress.o_length = 19690 dl->dl_dest_addr_length; 19691 } else { 19692 ntme.ipv6NetToMediaPhysAddress.o_length = 19693 ill->ill_phys_addr_length; 19694 } 19695 if (nce->nce_res_mp != NULL) { 19696 bcopy((char *)nce->nce_res_mp->b_rptr + 19697 NCE_LL_ADDR_OFFSET(ill), 19698 ntme.ipv6NetToMediaPhysAddress.o_bytes, 19699 ntme.ipv6NetToMediaPhysAddress.o_length); 19700 } else { 19701 bzero(ntme.ipv6NetToMediaPhysAddress.o_bytes, 19702 ill->ill_phys_addr_length); 19703 } 19704 /* 19705 * Note: Returns ND_* states. Should be: 19706 * reachable(1), stale(2), delay(3), probe(4), 19707 * invalid(5), unknown(6) 19708 */ 19709 ntme.ipv6NetToMediaState = nce->nce_state; 19710 ntme.ipv6NetToMediaLastUpdated = 0; 19711 19712 /* other(1), dynamic(2), static(3), local(4) */ 19713 if (IN6_IS_ADDR_LOOPBACK(&nce->nce_addr)) { 19714 ntme.ipv6NetToMediaType = 4; 19715 } else if (IN6_IS_ADDR_MULTICAST(&nce->nce_addr)) { 19716 ntme.ipv6NetToMediaType = 1; 19717 } else { 19718 ntme.ipv6NetToMediaType = 2; 19719 } 19720 19721 if (!snmp_append_data2(ird->ird_netmedia.lp_head, 19722 &ird->ird_netmedia.lp_tail, (char *)&ntme, sizeof (ntme))) { 19723 ip1dbg(("ip_snmp_get2_v6_media: failed to allocate %u bytes\n", 19724 (uint_t)sizeof (ntme))); 19725 } 19726 return (0); 19727 } 19728 19729 /* 19730 * return (0) if invalid set request, 1 otherwise, including non-tcp requests 19731 */ 19732 /* ARGSUSED */ 19733 int 19734 ip_snmp_set(queue_t *q, int level, int name, uchar_t *ptr, int len) 19735 { 19736 switch (level) { 19737 case MIB2_IP: 19738 case MIB2_ICMP: 19739 switch (name) { 19740 default: 19741 break; 19742 } 19743 return (1); 19744 default: 19745 return (1); 19746 } 19747 } 19748 19749 /* 19750 * When there exists both a 64- and 32-bit counter of a particular type 19751 * (i.e., InReceives), only the 64-bit counters are added. 19752 */ 19753 void 19754 ip_mib2_add_ip_stats(mib2_ipIfStatsEntry_t *o1, mib2_ipIfStatsEntry_t *o2) 19755 { 19756 UPDATE_MIB(o1, ipIfStatsInHdrErrors, o2->ipIfStatsInHdrErrors); 19757 UPDATE_MIB(o1, ipIfStatsInTooBigErrors, o2->ipIfStatsInTooBigErrors); 19758 UPDATE_MIB(o1, ipIfStatsInNoRoutes, o2->ipIfStatsInNoRoutes); 19759 UPDATE_MIB(o1, ipIfStatsInAddrErrors, o2->ipIfStatsInAddrErrors); 19760 UPDATE_MIB(o1, ipIfStatsInUnknownProtos, o2->ipIfStatsInUnknownProtos); 19761 UPDATE_MIB(o1, ipIfStatsInTruncatedPkts, o2->ipIfStatsInTruncatedPkts); 19762 UPDATE_MIB(o1, ipIfStatsInDiscards, o2->ipIfStatsInDiscards); 19763 UPDATE_MIB(o1, ipIfStatsOutDiscards, o2->ipIfStatsOutDiscards); 19764 UPDATE_MIB(o1, ipIfStatsOutFragOKs, o2->ipIfStatsOutFragOKs); 19765 UPDATE_MIB(o1, ipIfStatsOutFragFails, o2->ipIfStatsOutFragFails); 19766 UPDATE_MIB(o1, ipIfStatsOutFragCreates, o2->ipIfStatsOutFragCreates); 19767 UPDATE_MIB(o1, ipIfStatsReasmReqds, o2->ipIfStatsReasmReqds); 19768 UPDATE_MIB(o1, ipIfStatsReasmOKs, o2->ipIfStatsReasmOKs); 19769 UPDATE_MIB(o1, ipIfStatsReasmFails, o2->ipIfStatsReasmFails); 19770 UPDATE_MIB(o1, ipIfStatsOutNoRoutes, o2->ipIfStatsOutNoRoutes); 19771 UPDATE_MIB(o1, ipIfStatsReasmDuplicates, o2->ipIfStatsReasmDuplicates); 19772 UPDATE_MIB(o1, ipIfStatsReasmPartDups, o2->ipIfStatsReasmPartDups); 19773 UPDATE_MIB(o1, ipIfStatsForwProhibits, o2->ipIfStatsForwProhibits); 19774 UPDATE_MIB(o1, udpInCksumErrs, o2->udpInCksumErrs); 19775 UPDATE_MIB(o1, udpInOverflows, o2->udpInOverflows); 19776 UPDATE_MIB(o1, rawipInOverflows, o2->rawipInOverflows); 19777 UPDATE_MIB(o1, ipIfStatsInWrongIPVersion, 19778 o2->ipIfStatsInWrongIPVersion); 19779 UPDATE_MIB(o1, ipIfStatsOutWrongIPVersion, 19780 o2->ipIfStatsInWrongIPVersion); 19781 UPDATE_MIB(o1, ipIfStatsOutSwitchIPVersion, 19782 o2->ipIfStatsOutSwitchIPVersion); 19783 UPDATE_MIB(o1, ipIfStatsHCInReceives, o2->ipIfStatsHCInReceives); 19784 UPDATE_MIB(o1, ipIfStatsHCInOctets, o2->ipIfStatsHCInOctets); 19785 UPDATE_MIB(o1, ipIfStatsHCInForwDatagrams, 19786 o2->ipIfStatsHCInForwDatagrams); 19787 UPDATE_MIB(o1, ipIfStatsHCInDelivers, o2->ipIfStatsHCInDelivers); 19788 UPDATE_MIB(o1, ipIfStatsHCOutRequests, o2->ipIfStatsHCOutRequests); 19789 UPDATE_MIB(o1, ipIfStatsHCOutForwDatagrams, 19790 o2->ipIfStatsHCOutForwDatagrams); 19791 UPDATE_MIB(o1, ipIfStatsOutFragReqds, o2->ipIfStatsOutFragReqds); 19792 UPDATE_MIB(o1, ipIfStatsHCOutTransmits, o2->ipIfStatsHCOutTransmits); 19793 UPDATE_MIB(o1, ipIfStatsHCOutOctets, o2->ipIfStatsHCOutOctets); 19794 UPDATE_MIB(o1, ipIfStatsHCInMcastPkts, o2->ipIfStatsHCInMcastPkts); 19795 UPDATE_MIB(o1, ipIfStatsHCInMcastOctets, o2->ipIfStatsHCInMcastOctets); 19796 UPDATE_MIB(o1, ipIfStatsHCOutMcastPkts, o2->ipIfStatsHCOutMcastPkts); 19797 UPDATE_MIB(o1, ipIfStatsHCOutMcastOctets, 19798 o2->ipIfStatsHCOutMcastOctets); 19799 UPDATE_MIB(o1, ipIfStatsHCInBcastPkts, o2->ipIfStatsHCInBcastPkts); 19800 UPDATE_MIB(o1, ipIfStatsHCOutBcastPkts, o2->ipIfStatsHCOutBcastPkts); 19801 UPDATE_MIB(o1, ipsecInSucceeded, o2->ipsecInSucceeded); 19802 UPDATE_MIB(o1, ipsecInFailed, o2->ipsecInFailed); 19803 UPDATE_MIB(o1, ipInCksumErrs, o2->ipInCksumErrs); 19804 UPDATE_MIB(o1, tcpInErrs, o2->tcpInErrs); 19805 UPDATE_MIB(o1, udpNoPorts, o2->udpNoPorts); 19806 } 19807 19808 void 19809 ip_mib2_add_icmp6_stats(mib2_ipv6IfIcmpEntry_t *o1, mib2_ipv6IfIcmpEntry_t *o2) 19810 { 19811 UPDATE_MIB(o1, ipv6IfIcmpInMsgs, o2->ipv6IfIcmpInMsgs); 19812 UPDATE_MIB(o1, ipv6IfIcmpInErrors, o2->ipv6IfIcmpInErrors); 19813 UPDATE_MIB(o1, ipv6IfIcmpInDestUnreachs, o2->ipv6IfIcmpInDestUnreachs); 19814 UPDATE_MIB(o1, ipv6IfIcmpInAdminProhibs, o2->ipv6IfIcmpInAdminProhibs); 19815 UPDATE_MIB(o1, ipv6IfIcmpInTimeExcds, o2->ipv6IfIcmpInTimeExcds); 19816 UPDATE_MIB(o1, ipv6IfIcmpInParmProblems, o2->ipv6IfIcmpInParmProblems); 19817 UPDATE_MIB(o1, ipv6IfIcmpInPktTooBigs, o2->ipv6IfIcmpInPktTooBigs); 19818 UPDATE_MIB(o1, ipv6IfIcmpInEchos, o2->ipv6IfIcmpInEchos); 19819 UPDATE_MIB(o1, ipv6IfIcmpInEchoReplies, o2->ipv6IfIcmpInEchoReplies); 19820 UPDATE_MIB(o1, ipv6IfIcmpInRouterSolicits, 19821 o2->ipv6IfIcmpInRouterSolicits); 19822 UPDATE_MIB(o1, ipv6IfIcmpInRouterAdvertisements, 19823 o2->ipv6IfIcmpInRouterAdvertisements); 19824 UPDATE_MIB(o1, ipv6IfIcmpInNeighborSolicits, 19825 o2->ipv6IfIcmpInNeighborSolicits); 19826 UPDATE_MIB(o1, ipv6IfIcmpInNeighborAdvertisements, 19827 o2->ipv6IfIcmpInNeighborAdvertisements); 19828 UPDATE_MIB(o1, ipv6IfIcmpInRedirects, o2->ipv6IfIcmpInRedirects); 19829 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembQueries, 19830 o2->ipv6IfIcmpInGroupMembQueries); 19831 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembResponses, 19832 o2->ipv6IfIcmpInGroupMembResponses); 19833 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembReductions, 19834 o2->ipv6IfIcmpInGroupMembReductions); 19835 UPDATE_MIB(o1, ipv6IfIcmpOutMsgs, o2->ipv6IfIcmpOutMsgs); 19836 UPDATE_MIB(o1, ipv6IfIcmpOutErrors, o2->ipv6IfIcmpOutErrors); 19837 UPDATE_MIB(o1, ipv6IfIcmpOutDestUnreachs, 19838 o2->ipv6IfIcmpOutDestUnreachs); 19839 UPDATE_MIB(o1, ipv6IfIcmpOutAdminProhibs, 19840 o2->ipv6IfIcmpOutAdminProhibs); 19841 UPDATE_MIB(o1, ipv6IfIcmpOutTimeExcds, o2->ipv6IfIcmpOutTimeExcds); 19842 UPDATE_MIB(o1, ipv6IfIcmpOutParmProblems, 19843 o2->ipv6IfIcmpOutParmProblems); 19844 UPDATE_MIB(o1, ipv6IfIcmpOutPktTooBigs, o2->ipv6IfIcmpOutPktTooBigs); 19845 UPDATE_MIB(o1, ipv6IfIcmpOutEchos, o2->ipv6IfIcmpOutEchos); 19846 UPDATE_MIB(o1, ipv6IfIcmpOutEchoReplies, o2->ipv6IfIcmpOutEchoReplies); 19847 UPDATE_MIB(o1, ipv6IfIcmpOutRouterSolicits, 19848 o2->ipv6IfIcmpOutRouterSolicits); 19849 UPDATE_MIB(o1, ipv6IfIcmpOutRouterAdvertisements, 19850 o2->ipv6IfIcmpOutRouterAdvertisements); 19851 UPDATE_MIB(o1, ipv6IfIcmpOutNeighborSolicits, 19852 o2->ipv6IfIcmpOutNeighborSolicits); 19853 UPDATE_MIB(o1, ipv6IfIcmpOutNeighborAdvertisements, 19854 o2->ipv6IfIcmpOutNeighborAdvertisements); 19855 UPDATE_MIB(o1, ipv6IfIcmpOutRedirects, o2->ipv6IfIcmpOutRedirects); 19856 UPDATE_MIB(o1, ipv6IfIcmpOutGroupMembQueries, 19857 o2->ipv6IfIcmpOutGroupMembQueries); 19858 UPDATE_MIB(o1, ipv6IfIcmpOutGroupMembResponses, 19859 o2->ipv6IfIcmpOutGroupMembResponses); 19860 UPDATE_MIB(o1, ipv6IfIcmpOutGroupMembReductions, 19861 o2->ipv6IfIcmpOutGroupMembReductions); 19862 UPDATE_MIB(o1, ipv6IfIcmpInOverflows, o2->ipv6IfIcmpInOverflows); 19863 UPDATE_MIB(o1, ipv6IfIcmpBadHoplimit, o2->ipv6IfIcmpBadHoplimit); 19864 UPDATE_MIB(o1, ipv6IfIcmpInBadNeighborAdvertisements, 19865 o2->ipv6IfIcmpInBadNeighborAdvertisements); 19866 UPDATE_MIB(o1, ipv6IfIcmpInBadNeighborSolicitations, 19867 o2->ipv6IfIcmpInBadNeighborSolicitations); 19868 UPDATE_MIB(o1, ipv6IfIcmpInBadRedirects, o2->ipv6IfIcmpInBadRedirects); 19869 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembTotal, 19870 o2->ipv6IfIcmpInGroupMembTotal); 19871 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembBadQueries, 19872 o2->ipv6IfIcmpInGroupMembBadQueries); 19873 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembBadReports, 19874 o2->ipv6IfIcmpInGroupMembBadReports); 19875 UPDATE_MIB(o1, ipv6IfIcmpInGroupMembOurReports, 19876 o2->ipv6IfIcmpInGroupMembOurReports); 19877 } 19878 19879 /* 19880 * Called before the options are updated to check if this packet will 19881 * be source routed from here. 19882 * This routine assumes that the options are well formed i.e. that they 19883 * have already been checked. 19884 */ 19885 static boolean_t 19886 ip_source_routed(ipha_t *ipha, ip_stack_t *ipst) 19887 { 19888 ipoptp_t opts; 19889 uchar_t *opt; 19890 uint8_t optval; 19891 uint8_t optlen; 19892 ipaddr_t dst; 19893 ire_t *ire; 19894 19895 if (IS_SIMPLE_IPH(ipha)) { 19896 ip2dbg(("not source routed\n")); 19897 return (B_FALSE); 19898 } 19899 dst = ipha->ipha_dst; 19900 for (optval = ipoptp_first(&opts, ipha); 19901 optval != IPOPT_EOL; 19902 optval = ipoptp_next(&opts)) { 19903 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 19904 opt = opts.ipoptp_cur; 19905 optlen = opts.ipoptp_len; 19906 ip2dbg(("ip_source_routed: opt %d, len %d\n", 19907 optval, optlen)); 19908 switch (optval) { 19909 uint32_t off; 19910 case IPOPT_SSRR: 19911 case IPOPT_LSRR: 19912 /* 19913 * If dst is one of our addresses and there are some 19914 * entries left in the source route return (true). 19915 */ 19916 ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, NULL, 19917 ALL_ZONES, NULL, MATCH_IRE_TYPE, ipst); 19918 if (ire == NULL) { 19919 ip2dbg(("ip_source_routed: not next" 19920 " source route 0x%x\n", 19921 ntohl(dst))); 19922 return (B_FALSE); 19923 } 19924 ire_refrele(ire); 19925 off = opt[IPOPT_OFFSET]; 19926 off--; 19927 if (optlen < IP_ADDR_LEN || 19928 off > optlen - IP_ADDR_LEN) { 19929 /* End of source route */ 19930 ip1dbg(("ip_source_routed: end of SR\n")); 19931 return (B_FALSE); 19932 } 19933 return (B_TRUE); 19934 } 19935 } 19936 ip2dbg(("not source routed\n")); 19937 return (B_FALSE); 19938 } 19939 19940 /* 19941 * Check if the packet contains any source route. 19942 */ 19943 static boolean_t 19944 ip_source_route_included(ipha_t *ipha) 19945 { 19946 ipoptp_t opts; 19947 uint8_t optval; 19948 19949 if (IS_SIMPLE_IPH(ipha)) 19950 return (B_FALSE); 19951 for (optval = ipoptp_first(&opts, ipha); 19952 optval != IPOPT_EOL; 19953 optval = ipoptp_next(&opts)) { 19954 switch (optval) { 19955 case IPOPT_SSRR: 19956 case IPOPT_LSRR: 19957 return (B_TRUE); 19958 } 19959 } 19960 return (B_FALSE); 19961 } 19962 19963 /* 19964 * Called when the IRE expiration timer fires. 19965 */ 19966 void 19967 ip_trash_timer_expire(void *args) 19968 { 19969 int flush_flag = 0; 19970 ire_expire_arg_t iea; 19971 ip_stack_t *ipst = (ip_stack_t *)args; 19972 19973 iea.iea_ipst = ipst; /* No netstack_hold */ 19974 19975 /* 19976 * ip_ire_expire_id is protected by ip_trash_timer_lock. 19977 * This lock makes sure that a new invocation of this function 19978 * that occurs due to an almost immediate timer firing will not 19979 * progress beyond this point until the current invocation is done 19980 */ 19981 mutex_enter(&ipst->ips_ip_trash_timer_lock); 19982 ipst->ips_ip_ire_expire_id = 0; 19983 mutex_exit(&ipst->ips_ip_trash_timer_lock); 19984 19985 /* Periodic timer */ 19986 if (ipst->ips_ip_ire_arp_time_elapsed >= 19987 ipst->ips_ip_ire_arp_interval) { 19988 /* 19989 * Remove all IRE_CACHE entries since they might 19990 * contain arp information. 19991 */ 19992 flush_flag |= FLUSH_ARP_TIME; 19993 ipst->ips_ip_ire_arp_time_elapsed = 0; 19994 IP_STAT(ipst, ip_ire_arp_timer_expired); 19995 } 19996 if (ipst->ips_ip_ire_rd_time_elapsed >= 19997 ipst->ips_ip_ire_redir_interval) { 19998 /* Remove all redirects */ 19999 flush_flag |= FLUSH_REDIRECT_TIME; 20000 ipst->ips_ip_ire_rd_time_elapsed = 0; 20001 IP_STAT(ipst, ip_ire_redirect_timer_expired); 20002 } 20003 if (ipst->ips_ip_ire_pmtu_time_elapsed >= 20004 ipst->ips_ip_ire_pathmtu_interval) { 20005 /* Increase path mtu */ 20006 flush_flag |= FLUSH_MTU_TIME; 20007 ipst->ips_ip_ire_pmtu_time_elapsed = 0; 20008 IP_STAT(ipst, ip_ire_pmtu_timer_expired); 20009 } 20010 20011 /* 20012 * Optimize for the case when there are no redirects in the 20013 * ftable, that is, no need to walk the ftable in that case. 20014 */ 20015 if (flush_flag & (FLUSH_MTU_TIME|FLUSH_ARP_TIME)) { 20016 iea.iea_flush_flag = flush_flag; 20017 ire_walk_ill_tables(MATCH_IRE_TYPE, IRE_CACHETABLE, ire_expire, 20018 (char *)(uintptr_t)&iea, IP_MASK_TABLE_SIZE, 0, NULL, 20019 ipst->ips_ip_cache_table_size, ipst->ips_ip_cache_table, 20020 NULL, ALL_ZONES, ipst); 20021 } 20022 if ((flush_flag & FLUSH_REDIRECT_TIME) && 20023 ipst->ips_ip_redirect_cnt > 0) { 20024 iea.iea_flush_flag = flush_flag; 20025 ire_walk_ill_tables(MATCH_IRE_TYPE, IRE_FORWARDTABLE, 20026 ire_expire, (char *)(uintptr_t)&iea, IP_MASK_TABLE_SIZE, 20027 0, NULL, 0, NULL, NULL, ALL_ZONES, ipst); 20028 } 20029 if (flush_flag & FLUSH_MTU_TIME) { 20030 /* 20031 * Walk all IPv6 IRE's and update them 20032 * Note that ARP and redirect timers are not 20033 * needed since NUD handles stale entries. 20034 */ 20035 flush_flag = FLUSH_MTU_TIME; 20036 iea.iea_flush_flag = flush_flag; 20037 ire_walk_v6(ire_expire, (char *)(uintptr_t)&iea, 20038 ALL_ZONES, ipst); 20039 } 20040 20041 ipst->ips_ip_ire_arp_time_elapsed += ipst->ips_ip_timer_interval; 20042 ipst->ips_ip_ire_rd_time_elapsed += ipst->ips_ip_timer_interval; 20043 ipst->ips_ip_ire_pmtu_time_elapsed += ipst->ips_ip_timer_interval; 20044 20045 /* 20046 * Hold the lock to serialize timeout calls and prevent 20047 * stale values in ip_ire_expire_id. Otherwise it is possible 20048 * for the timer to fire and a new invocation of this function 20049 * to start before the return value of timeout has been stored 20050 * in ip_ire_expire_id by the current invocation. 20051 */ 20052 mutex_enter(&ipst->ips_ip_trash_timer_lock); 20053 ipst->ips_ip_ire_expire_id = timeout(ip_trash_timer_expire, 20054 (void *)ipst, MSEC_TO_TICK(ipst->ips_ip_timer_interval)); 20055 mutex_exit(&ipst->ips_ip_trash_timer_lock); 20056 } 20057 20058 /* 20059 * Called by the memory allocator subsystem directly, when the system 20060 * is running low on memory. 20061 */ 20062 /* ARGSUSED */ 20063 void 20064 ip_trash_ire_reclaim(void *args) 20065 { 20066 netstack_handle_t nh; 20067 netstack_t *ns; 20068 20069 netstack_next_init(&nh); 20070 while ((ns = netstack_next(&nh)) != NULL) { 20071 ip_trash_ire_reclaim_stack(ns->netstack_ip); 20072 netstack_rele(ns); 20073 } 20074 netstack_next_fini(&nh); 20075 } 20076 20077 static void 20078 ip_trash_ire_reclaim_stack(ip_stack_t *ipst) 20079 { 20080 ire_cache_count_t icc; 20081 ire_cache_reclaim_t icr; 20082 ncc_cache_count_t ncc; 20083 nce_cache_reclaim_t ncr; 20084 uint_t delete_cnt; 20085 /* 20086 * Memory reclaim call back. 20087 * Count unused, offlink, pmtu, and onlink IRE_CACHE entries. 20088 * Then, with a target of freeing 1/Nth of IRE_CACHE 20089 * entries, determine what fraction to free for 20090 * each category of IRE_CACHE entries giving absolute priority 20091 * in the order of onlink, pmtu, offlink, unused (e.g. no pmtu 20092 * entry will be freed unless all offlink entries are freed). 20093 */ 20094 icc.icc_total = 0; 20095 icc.icc_unused = 0; 20096 icc.icc_offlink = 0; 20097 icc.icc_pmtu = 0; 20098 icc.icc_onlink = 0; 20099 ire_walk(ire_cache_count, (char *)&icc, ipst); 20100 20101 /* 20102 * Free NCEs for IPv6 like the onlink ires. 20103 */ 20104 ncc.ncc_total = 0; 20105 ncc.ncc_host = 0; 20106 ndp_walk(NULL, (pfi_t)ndp_cache_count, (uchar_t *)&ncc, ipst); 20107 20108 ASSERT(icc.icc_total == icc.icc_unused + icc.icc_offlink + 20109 icc.icc_pmtu + icc.icc_onlink); 20110 delete_cnt = icc.icc_total/ipst->ips_ip_ire_reclaim_fraction; 20111 IP_STAT(ipst, ip_trash_ire_reclaim_calls); 20112 if (delete_cnt == 0) 20113 return; 20114 IP_STAT(ipst, ip_trash_ire_reclaim_success); 20115 /* Always delete all unused offlink entries */ 20116 icr.icr_ipst = ipst; 20117 icr.icr_unused = 1; 20118 if (delete_cnt <= icc.icc_unused) { 20119 /* 20120 * Only need to free unused entries. In other words, 20121 * there are enough unused entries to free to meet our 20122 * target number of freed ire cache entries. 20123 */ 20124 icr.icr_offlink = icr.icr_pmtu = icr.icr_onlink = 0; 20125 ncr.ncr_host = 0; 20126 } else if (delete_cnt <= icc.icc_unused + icc.icc_offlink) { 20127 /* 20128 * Only need to free unused entries, plus a fraction of offlink 20129 * entries. It follows from the first if statement that 20130 * icc_offlink is non-zero, and that delete_cnt != icc_unused. 20131 */ 20132 delete_cnt -= icc.icc_unused; 20133 /* Round up # deleted by truncating fraction */ 20134 icr.icr_offlink = icc.icc_offlink / delete_cnt; 20135 icr.icr_pmtu = icr.icr_onlink = 0; 20136 ncr.ncr_host = 0; 20137 } else if (delete_cnt <= 20138 icc.icc_unused + icc.icc_offlink + icc.icc_pmtu) { 20139 /* 20140 * Free all unused and offlink entries, plus a fraction of 20141 * pmtu entries. It follows from the previous if statement 20142 * that icc_pmtu is non-zero, and that 20143 * delete_cnt != icc_unused + icc_offlink. 20144 */ 20145 icr.icr_offlink = 1; 20146 delete_cnt -= icc.icc_unused + icc.icc_offlink; 20147 /* Round up # deleted by truncating fraction */ 20148 icr.icr_pmtu = icc.icc_pmtu / delete_cnt; 20149 icr.icr_onlink = 0; 20150 ncr.ncr_host = 0; 20151 } else { 20152 /* 20153 * Free all unused, offlink, and pmtu entries, plus a fraction 20154 * of onlink entries. If we're here, then we know that 20155 * icc_onlink is non-zero, and that 20156 * delete_cnt != icc_unused + icc_offlink + icc_pmtu. 20157 */ 20158 icr.icr_offlink = icr.icr_pmtu = 1; 20159 delete_cnt -= icc.icc_unused + icc.icc_offlink + 20160 icc.icc_pmtu; 20161 /* Round up # deleted by truncating fraction */ 20162 icr.icr_onlink = icc.icc_onlink / delete_cnt; 20163 /* Using the same delete fraction as for onlink IREs */ 20164 ncr.ncr_host = ncc.ncc_host / delete_cnt; 20165 } 20166 #ifdef DEBUG 20167 ip1dbg(("IP reclaim: target %d out of %d current %d/%d/%d/%d " 20168 "fractions %d/%d/%d/%d\n", 20169 icc.icc_total/ipst->ips_ip_ire_reclaim_fraction, icc.icc_total, 20170 icc.icc_unused, icc.icc_offlink, 20171 icc.icc_pmtu, icc.icc_onlink, 20172 icr.icr_unused, icr.icr_offlink, 20173 icr.icr_pmtu, icr.icr_onlink)); 20174 #endif 20175 ire_walk(ire_cache_reclaim, (char *)&icr, ipst); 20176 if (ncr.ncr_host != 0) 20177 ndp_walk(NULL, (pfi_t)ndp_cache_reclaim, 20178 (uchar_t *)&ncr, ipst); 20179 #ifdef DEBUG 20180 icc.icc_total = 0; icc.icc_unused = 0; icc.icc_offlink = 0; 20181 icc.icc_pmtu = 0; icc.icc_onlink = 0; 20182 ire_walk(ire_cache_count, (char *)&icc, ipst); 20183 ip1dbg(("IP reclaim: result total %d %d/%d/%d/%d\n", 20184 icc.icc_total, icc.icc_unused, icc.icc_offlink, 20185 icc.icc_pmtu, icc.icc_onlink)); 20186 #endif 20187 } 20188 20189 /* 20190 * ip_unbind is called when a copy of an unbind request is received from the 20191 * upper level protocol. We remove this conn from any fanout hash list it is 20192 * on, and zero out the bind information. No reply is expected up above. 20193 */ 20194 mblk_t * 20195 ip_unbind(queue_t *q, mblk_t *mp) 20196 { 20197 conn_t *connp = Q_TO_CONN(q); 20198 20199 ASSERT(!MUTEX_HELD(&connp->conn_lock)); 20200 20201 if (is_system_labeled() && connp->conn_anon_port) { 20202 (void) tsol_mlp_anon(crgetzone(connp->conn_cred), 20203 connp->conn_mlp_type, connp->conn_ulp, 20204 ntohs(connp->conn_lport), B_FALSE); 20205 connp->conn_anon_port = 0; 20206 } 20207 connp->conn_mlp_type = mlptSingle; 20208 20209 ipcl_hash_remove(connp); 20210 20211 ASSERT(mp->b_cont == NULL); 20212 /* 20213 * Convert mp into a T_OK_ACK 20214 */ 20215 mp = mi_tpi_ok_ack_alloc(mp); 20216 20217 /* 20218 * should not happen in practice... T_OK_ACK is smaller than the 20219 * original message. 20220 */ 20221 if (mp == NULL) 20222 return (NULL); 20223 20224 /* 20225 * Don't bzero the ports if its TCP since TCP still needs the 20226 * lport to remove it from its own bind hash. TCP will do the 20227 * cleanup. 20228 */ 20229 if (!IPCL_IS_TCP(connp)) 20230 bzero(&connp->u_port, sizeof (connp->u_port)); 20231 20232 return (mp); 20233 } 20234 20235 /* 20236 * Write side put procedure. Outbound data, IOCTLs, responses from 20237 * resolvers, etc, come down through here. 20238 * 20239 * arg2 is always a queue_t *. 20240 * When that queue is an ill_t (i.e. q_next != NULL), then arg must be 20241 * the zoneid. 20242 * When that queue is not an ill_t, then arg must be a conn_t pointer. 20243 */ 20244 void 20245 ip_output(void *arg, mblk_t *mp, void *arg2, int caller) 20246 { 20247 ip_output_options(arg, mp, arg2, caller, &zero_info); 20248 } 20249 20250 void 20251 ip_output_options(void *arg, mblk_t *mp, void *arg2, int caller, 20252 ip_opt_info_t *infop) 20253 { 20254 conn_t *connp = NULL; 20255 queue_t *q = (queue_t *)arg2; 20256 ipha_t *ipha; 20257 #define rptr ((uchar_t *)ipha) 20258 ire_t *ire = NULL; 20259 ire_t *sctp_ire = NULL; 20260 uint32_t v_hlen_tos_len; 20261 ipaddr_t dst; 20262 mblk_t *first_mp = NULL; 20263 boolean_t mctl_present; 20264 ipsec_out_t *io; 20265 int match_flags; 20266 ill_t *attach_ill = NULL; 20267 /* Bind to IPIF_NOFAILOVER ill etc. */ 20268 ill_t *xmit_ill = NULL; /* IP_XMIT_IF etc. */ 20269 ipif_t *dst_ipif; 20270 boolean_t multirt_need_resolve = B_FALSE; 20271 mblk_t *copy_mp = NULL; 20272 int err; 20273 zoneid_t zoneid; 20274 int adjust; 20275 uint16_t iplen; 20276 boolean_t need_decref = B_FALSE; 20277 boolean_t ignore_dontroute = B_FALSE; 20278 boolean_t ignore_nexthop = B_FALSE; 20279 boolean_t ip_nexthop = B_FALSE; 20280 ipaddr_t nexthop_addr; 20281 ip_stack_t *ipst; 20282 20283 #ifdef _BIG_ENDIAN 20284 #define V_HLEN (v_hlen_tos_len >> 24) 20285 #else 20286 #define V_HLEN (v_hlen_tos_len & 0xFF) 20287 #endif 20288 20289 TRACE_1(TR_FAC_IP, TR_IP_WPUT_START, 20290 "ip_wput_start: q %p", q); 20291 20292 /* 20293 * ip_wput fast path 20294 */ 20295 20296 /* is packet from ARP ? */ 20297 if (q->q_next != NULL) { 20298 zoneid = (zoneid_t)(uintptr_t)arg; 20299 goto qnext; 20300 } 20301 20302 connp = (conn_t *)arg; 20303 ASSERT(connp != NULL); 20304 zoneid = connp->conn_zoneid; 20305 ipst = connp->conn_netstack->netstack_ip; 20306 20307 /* is queue flow controlled? */ 20308 if ((q->q_first != NULL || connp->conn_draining) && 20309 (caller == IP_WPUT)) { 20310 ASSERT(!need_decref); 20311 (void) putq(q, mp); 20312 return; 20313 } 20314 20315 /* Multidata transmit? */ 20316 if (DB_TYPE(mp) == M_MULTIDATA) { 20317 /* 20318 * We should never get here, since all Multidata messages 20319 * originating from tcp should have been directed over to 20320 * tcp_multisend() in the first place. 20321 */ 20322 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 20323 freemsg(mp); 20324 return; 20325 } else if (DB_TYPE(mp) != M_DATA) 20326 goto notdata; 20327 20328 if (mp->b_flag & MSGHASREF) { 20329 ASSERT(connp->conn_ulp == IPPROTO_SCTP); 20330 mp->b_flag &= ~MSGHASREF; 20331 SCTP_EXTRACT_IPINFO(mp, sctp_ire); 20332 need_decref = B_TRUE; 20333 } 20334 ipha = (ipha_t *)mp->b_rptr; 20335 20336 /* is IP header non-aligned or mblk smaller than basic IP header */ 20337 #ifndef SAFETY_BEFORE_SPEED 20338 if (!OK_32PTR(rptr) || 20339 (mp->b_wptr - rptr) < IP_SIMPLE_HDR_LENGTH) 20340 goto hdrtoosmall; 20341 #endif 20342 20343 ASSERT(OK_32PTR(ipha)); 20344 20345 /* 20346 * This function assumes that mp points to an IPv4 packet. If it's the 20347 * wrong version, we'll catch it again in ip_output_v6. 20348 * 20349 * Note that this is *only* locally-generated output here, and never 20350 * forwarded data, and that we need to deal only with transports that 20351 * don't know how to label. (TCP, UDP, and ICMP/raw-IP all know how to 20352 * label.) 20353 */ 20354 if (is_system_labeled() && 20355 (ipha->ipha_version_and_hdr_length & 0xf0) == (IPV4_VERSION << 4) && 20356 !connp->conn_ulp_labeled) { 20357 err = tsol_check_label(BEST_CRED(mp, connp), &mp, &adjust, 20358 connp->conn_mac_exempt, ipst); 20359 ipha = (ipha_t *)mp->b_rptr; 20360 if (err != 0) { 20361 first_mp = mp; 20362 if (err == EINVAL) 20363 goto icmp_parameter_problem; 20364 ip2dbg(("ip_wput: label check failed (%d)\n", err)); 20365 goto discard_pkt; 20366 } 20367 iplen = ntohs(ipha->ipha_length) + adjust; 20368 ipha->ipha_length = htons(iplen); 20369 } 20370 20371 ASSERT(infop != NULL); 20372 20373 if (infop->ip_opt_flags & IP_VERIFY_SRC) { 20374 /* 20375 * IP_PKTINFO ancillary option is present. 20376 * IPCL_ZONEID is used to honor IP_ALLZONES option which 20377 * allows using address of any zone as the source address. 20378 */ 20379 ire = ire_ctable_lookup(ipha->ipha_src, 0, 20380 (IRE_LOCAL|IRE_LOOPBACK), NULL, IPCL_ZONEID(connp), 20381 NULL, MATCH_IRE_TYPE | MATCH_IRE_ZONEONLY, ipst); 20382 if (ire == NULL) 20383 goto drop_pkt; 20384 ire_refrele(ire); 20385 ire = NULL; 20386 } 20387 20388 /* 20389 * IP_DONTFAILOVER_IF and IP_XMIT_IF have precedence over 20390 * ill index passed in IP_PKTINFO. 20391 */ 20392 if (infop->ip_opt_ill_index != 0 && 20393 connp->conn_xmit_if_ill == NULL && 20394 connp->conn_nofailover_ill == NULL) { 20395 20396 xmit_ill = ill_lookup_on_ifindex( 20397 infop->ip_opt_ill_index, B_FALSE, NULL, NULL, NULL, NULL, 20398 ipst); 20399 20400 if (xmit_ill == NULL || IS_VNI(xmit_ill)) 20401 goto drop_pkt; 20402 /* 20403 * check that there is an ipif belonging 20404 * to our zone. IPCL_ZONEID is not used because 20405 * IP_ALLZONES option is valid only when the ill is 20406 * accessible from all zones i.e has a valid ipif in 20407 * all zones. 20408 */ 20409 if (!ipif_lookup_zoneid_group(xmit_ill, zoneid, 0, NULL)) { 20410 goto drop_pkt; 20411 } 20412 } 20413 20414 /* 20415 * If there is a policy, try to attach an ipsec_out in 20416 * the front. At the end, first_mp either points to a 20417 * M_DATA message or IPSEC_OUT message linked to a 20418 * M_DATA message. We have to do it now as we might 20419 * lose the "conn" if we go through ip_newroute. 20420 */ 20421 if (connp->conn_out_enforce_policy || (connp->conn_latch != NULL)) { 20422 if (((mp = ipsec_attach_ipsec_out(mp, connp, NULL, 20423 ipha->ipha_protocol, ipst->ips_netstack)) == NULL)) { 20424 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 20425 if (need_decref) 20426 CONN_DEC_REF(connp); 20427 return; 20428 } else { 20429 ASSERT(mp->b_datap->db_type == M_CTL); 20430 first_mp = mp; 20431 mp = mp->b_cont; 20432 mctl_present = B_TRUE; 20433 } 20434 } else { 20435 first_mp = mp; 20436 mctl_present = B_FALSE; 20437 } 20438 20439 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 20440 20441 /* is wrong version or IP options present */ 20442 if (V_HLEN != IP_SIMPLE_HDR_VERSION) 20443 goto version_hdrlen_check; 20444 dst = ipha->ipha_dst; 20445 20446 if (connp->conn_nofailover_ill != NULL) { 20447 attach_ill = conn_get_held_ill(connp, 20448 &connp->conn_nofailover_ill, &err); 20449 if (err == ILL_LOOKUP_FAILED) { 20450 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 20451 if (need_decref) 20452 CONN_DEC_REF(connp); 20453 freemsg(first_mp); 20454 return; 20455 } 20456 } 20457 20458 20459 /* is packet multicast? */ 20460 if (CLASSD(dst)) 20461 goto multicast; 20462 20463 /* 20464 * If xmit_ill is set above due to index passed in ip_pkt_info. It 20465 * takes precedence over conn_dontroute and conn_nexthop_set 20466 */ 20467 if (xmit_ill != NULL) { 20468 goto send_from_ill; 20469 } 20470 20471 if ((connp->conn_dontroute) || (connp->conn_xmit_if_ill != NULL) || 20472 (connp->conn_nexthop_set)) { 20473 /* 20474 * If the destination is a broadcast or a loopback 20475 * address, SO_DONTROUTE, IP_XMIT_IF and IP_NEXTHOP go 20476 * through the standard path. But in the case of local 20477 * destination only SO_DONTROUTE and IP_NEXTHOP go through 20478 * the standard path not IP_XMIT_IF. 20479 */ 20480 ire = ire_cache_lookup(dst, zoneid, MBLK_GETLABEL(mp), ipst); 20481 if ((ire == NULL) || ((ire->ire_type != IRE_BROADCAST) && 20482 (ire->ire_type != IRE_LOOPBACK))) { 20483 if ((connp->conn_dontroute || 20484 connp->conn_nexthop_set) && (ire != NULL) && 20485 (ire->ire_type == IRE_LOCAL)) 20486 goto standard_path; 20487 20488 if (ire != NULL) { 20489 ire_refrele(ire); 20490 /* No more access to ire */ 20491 ire = NULL; 20492 } 20493 /* 20494 * bypass routing checks and go directly to 20495 * interface. 20496 */ 20497 if (connp->conn_dontroute) { 20498 goto dontroute; 20499 } else if (connp->conn_nexthop_set) { 20500 ip_nexthop = B_TRUE; 20501 nexthop_addr = connp->conn_nexthop_v4; 20502 goto send_from_ill; 20503 } 20504 20505 /* 20506 * If IP_XMIT_IF socket option is set, 20507 * then we allow unicast and multicast 20508 * packets to go through the ill. It is 20509 * quite possible that the destination 20510 * is not in the ire cache table and we 20511 * do not want to go to ip_newroute() 20512 * instead we call ip_newroute_ipif. 20513 */ 20514 xmit_ill = conn_get_held_ill(connp, 20515 &connp->conn_xmit_if_ill, &err); 20516 if (err == ILL_LOOKUP_FAILED) { 20517 BUMP_MIB(&ipst->ips_ip_mib, 20518 ipIfStatsOutDiscards); 20519 if (attach_ill != NULL) 20520 ill_refrele(attach_ill); 20521 if (need_decref) 20522 CONN_DEC_REF(connp); 20523 freemsg(first_mp); 20524 return; 20525 } 20526 goto send_from_ill; 20527 } 20528 standard_path: 20529 /* Must be a broadcast, a loopback or a local ire */ 20530 if (ire != NULL) { 20531 ire_refrele(ire); 20532 /* No more access to ire */ 20533 ire = NULL; 20534 } 20535 } 20536 20537 if (attach_ill != NULL) 20538 goto send_from_ill; 20539 20540 /* 20541 * We cache IRE_CACHEs to avoid lookups. We don't do 20542 * this for the tcp global queue and listen end point 20543 * as it does not really have a real destination to 20544 * talk to. This is also true for SCTP. 20545 */ 20546 if (IP_FLOW_CONTROLLED_ULP(connp->conn_ulp) && 20547 !connp->conn_fully_bound) { 20548 ire = ire_cache_lookup(dst, zoneid, MBLK_GETLABEL(mp), ipst); 20549 if (ire == NULL) 20550 goto noirefound; 20551 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 20552 "ip_wput_end: q %p (%S)", q, "end"); 20553 20554 /* 20555 * Check if the ire has the RTF_MULTIRT flag, inherited 20556 * from an IRE_OFFSUBNET ire entry in ip_newroute(). 20557 */ 20558 if (ire->ire_flags & RTF_MULTIRT) { 20559 20560 /* 20561 * Force the TTL of multirouted packets if required. 20562 * The TTL of such packets is bounded by the 20563 * ip_multirt_ttl ndd variable. 20564 */ 20565 if ((ipst->ips_ip_multirt_ttl > 0) && 20566 (ipha->ipha_ttl > ipst->ips_ip_multirt_ttl)) { 20567 ip2dbg(("ip_wput: forcing multirt TTL to %d " 20568 "(was %d), dst 0x%08x\n", 20569 ipst->ips_ip_multirt_ttl, ipha->ipha_ttl, 20570 ntohl(ire->ire_addr))); 20571 ipha->ipha_ttl = ipst->ips_ip_multirt_ttl; 20572 } 20573 /* 20574 * We look at this point if there are pending 20575 * unresolved routes. ire_multirt_resolvable() 20576 * checks in O(n) that all IRE_OFFSUBNET ire 20577 * entries for the packet's destination and 20578 * flagged RTF_MULTIRT are currently resolved. 20579 * If some remain unresolved, we make a copy 20580 * of the current message. It will be used 20581 * to initiate additional route resolutions. 20582 */ 20583 multirt_need_resolve = 20584 ire_multirt_need_resolve(ire->ire_addr, 20585 MBLK_GETLABEL(first_mp), ipst); 20586 ip2dbg(("ip_wput[TCP]: ire %p, " 20587 "multirt_need_resolve %d, first_mp %p\n", 20588 (void *)ire, multirt_need_resolve, 20589 (void *)first_mp)); 20590 if (multirt_need_resolve) { 20591 copy_mp = copymsg(first_mp); 20592 if (copy_mp != NULL) { 20593 MULTIRT_DEBUG_TAG(copy_mp); 20594 } 20595 } 20596 } 20597 20598 ip_wput_ire(q, first_mp, ire, connp, caller, zoneid); 20599 20600 /* 20601 * Try to resolve another multiroute if 20602 * ire_multirt_need_resolve() deemed it necessary. 20603 */ 20604 if (copy_mp != NULL) { 20605 ip_newroute(q, copy_mp, dst, NULL, connp, zoneid, ipst); 20606 } 20607 if (need_decref) 20608 CONN_DEC_REF(connp); 20609 return; 20610 } 20611 20612 /* 20613 * Access to conn_ire_cache. (protected by conn_lock) 20614 * 20615 * IRE_MARK_CONDEMNED is marked in ire_delete. We don't grab 20616 * the ire bucket lock here to check for CONDEMNED as it is okay to 20617 * send a packet or two with the IRE_CACHE that is going away. 20618 * Access to the ire requires an ire refhold on the ire prior to 20619 * its use since an interface unplumb thread may delete the cached 20620 * ire and release the refhold at any time. 20621 * 20622 * Caching an ire in the conn_ire_cache 20623 * 20624 * o Caching an ire pointer in the conn requires a strict check for 20625 * IRE_MARK_CONDEMNED. An interface unplumb thread deletes all relevant 20626 * ires before cleaning up the conns. So the caching of an ire pointer 20627 * in the conn is done after making sure under the bucket lock that the 20628 * ire has not yet been marked CONDEMNED. Otherwise we will end up 20629 * caching an ire after the unplumb thread has cleaned up the conn. 20630 * If the conn does not send a packet subsequently the unplumb thread 20631 * will be hanging waiting for the ire count to drop to zero. 20632 * 20633 * o We also need to atomically test for a null conn_ire_cache and 20634 * set the conn_ire_cache under the the protection of the conn_lock 20635 * to avoid races among concurrent threads trying to simultaneously 20636 * cache an ire in the conn_ire_cache. 20637 */ 20638 mutex_enter(&connp->conn_lock); 20639 ire = sctp_ire != NULL ? sctp_ire : connp->conn_ire_cache; 20640 20641 if (ire != NULL && ire->ire_addr == dst && 20642 !(ire->ire_marks & IRE_MARK_CONDEMNED)) { 20643 20644 IRE_REFHOLD(ire); 20645 mutex_exit(&connp->conn_lock); 20646 20647 } else { 20648 boolean_t cached = B_FALSE; 20649 connp->conn_ire_cache = NULL; 20650 mutex_exit(&connp->conn_lock); 20651 /* Release the old ire */ 20652 if (ire != NULL && sctp_ire == NULL) 20653 IRE_REFRELE_NOTR(ire); 20654 20655 ire = ire_cache_lookup(dst, zoneid, MBLK_GETLABEL(mp), ipst); 20656 if (ire == NULL) 20657 goto noirefound; 20658 IRE_REFHOLD_NOTR(ire); 20659 20660 mutex_enter(&connp->conn_lock); 20661 if (CONN_CACHE_IRE(connp) && connp->conn_ire_cache == NULL) { 20662 rw_enter(&ire->ire_bucket->irb_lock, RW_READER); 20663 if (!(ire->ire_marks & IRE_MARK_CONDEMNED)) { 20664 connp->conn_ire_cache = ire; 20665 cached = B_TRUE; 20666 } 20667 rw_exit(&ire->ire_bucket->irb_lock); 20668 } 20669 mutex_exit(&connp->conn_lock); 20670 20671 /* 20672 * We can continue to use the ire but since it was 20673 * not cached, we should drop the extra reference. 20674 */ 20675 if (!cached) 20676 IRE_REFRELE_NOTR(ire); 20677 } 20678 20679 20680 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 20681 "ip_wput_end: q %p (%S)", q, "end"); 20682 20683 /* 20684 * Check if the ire has the RTF_MULTIRT flag, inherited 20685 * from an IRE_OFFSUBNET ire entry in ip_newroute(). 20686 */ 20687 if (ire->ire_flags & RTF_MULTIRT) { 20688 20689 /* 20690 * Force the TTL of multirouted packets if required. 20691 * The TTL of such packets is bounded by the 20692 * ip_multirt_ttl ndd variable. 20693 */ 20694 if ((ipst->ips_ip_multirt_ttl > 0) && 20695 (ipha->ipha_ttl > ipst->ips_ip_multirt_ttl)) { 20696 ip2dbg(("ip_wput: forcing multirt TTL to %d " 20697 "(was %d), dst 0x%08x\n", 20698 ipst->ips_ip_multirt_ttl, ipha->ipha_ttl, 20699 ntohl(ire->ire_addr))); 20700 ipha->ipha_ttl = ipst->ips_ip_multirt_ttl; 20701 } 20702 20703 /* 20704 * At this point, we check to see if there are any pending 20705 * unresolved routes. ire_multirt_resolvable() 20706 * checks in O(n) that all IRE_OFFSUBNET ire 20707 * entries for the packet's destination and 20708 * flagged RTF_MULTIRT are currently resolved. 20709 * If some remain unresolved, we make a copy 20710 * of the current message. It will be used 20711 * to initiate additional route resolutions. 20712 */ 20713 multirt_need_resolve = ire_multirt_need_resolve(ire->ire_addr, 20714 MBLK_GETLABEL(first_mp), ipst); 20715 ip2dbg(("ip_wput[not TCP]: ire %p, " 20716 "multirt_need_resolve %d, first_mp %p\n", 20717 (void *)ire, multirt_need_resolve, (void *)first_mp)); 20718 if (multirt_need_resolve) { 20719 copy_mp = copymsg(first_mp); 20720 if (copy_mp != NULL) { 20721 MULTIRT_DEBUG_TAG(copy_mp); 20722 } 20723 } 20724 } 20725 20726 ip_wput_ire(q, first_mp, ire, connp, caller, zoneid); 20727 20728 /* 20729 * Try to resolve another multiroute if 20730 * ire_multirt_resolvable() deemed it necessary 20731 */ 20732 if (copy_mp != NULL) { 20733 ip_newroute(q, copy_mp, dst, NULL, connp, zoneid, ipst); 20734 } 20735 if (need_decref) 20736 CONN_DEC_REF(connp); 20737 return; 20738 20739 qnext: 20740 /* 20741 * Upper Level Protocols pass down complete IP datagrams 20742 * as M_DATA messages. Everything else is a sideshow. 20743 * 20744 * 1) We could be re-entering ip_wput because of ip_neworute 20745 * in which case we could have a IPSEC_OUT message. We 20746 * need to pass through ip_wput like other datagrams and 20747 * hence cannot branch to ip_wput_nondata. 20748 * 20749 * 2) ARP, AH, ESP, and other clients who are on the module 20750 * instance of IP stream, give us something to deal with. 20751 * We will handle AH and ESP here and rest in ip_wput_nondata. 20752 * 20753 * 3) ICMP replies also could come here. 20754 */ 20755 ipst = ILLQ_TO_IPST(q); 20756 20757 if (DB_TYPE(mp) != M_DATA) { 20758 notdata: 20759 if (DB_TYPE(mp) == M_CTL) { 20760 /* 20761 * M_CTL messages are used by ARP, AH and ESP to 20762 * communicate with IP. We deal with IPSEC_IN and 20763 * IPSEC_OUT here. ip_wput_nondata handles other 20764 * cases. 20765 */ 20766 ipsec_info_t *ii = (ipsec_info_t *)mp->b_rptr; 20767 if (mp->b_cont && (mp->b_cont->b_flag & MSGHASREF)) { 20768 first_mp = mp->b_cont; 20769 first_mp->b_flag &= ~MSGHASREF; 20770 ASSERT(connp->conn_ulp == IPPROTO_SCTP); 20771 SCTP_EXTRACT_IPINFO(first_mp, sctp_ire); 20772 CONN_DEC_REF(connp); 20773 connp = NULL; 20774 } 20775 if (ii->ipsec_info_type == IPSEC_IN) { 20776 /* 20777 * Either this message goes back to 20778 * IPSEC for further processing or to 20779 * ULP after policy checks. 20780 */ 20781 ip_fanout_proto_again(mp, NULL, NULL, NULL); 20782 return; 20783 } else if (ii->ipsec_info_type == IPSEC_OUT) { 20784 io = (ipsec_out_t *)ii; 20785 if (io->ipsec_out_proc_begin) { 20786 /* 20787 * IPSEC processing has already started. 20788 * Complete it. 20789 * IPQoS notes: We don't care what is 20790 * in ipsec_out_ill_index since this 20791 * won't be processed for IPQoS policies 20792 * in ipsec_out_process. 20793 */ 20794 ipsec_out_process(q, mp, NULL, 20795 io->ipsec_out_ill_index); 20796 return; 20797 } else { 20798 connp = (q->q_next != NULL) ? 20799 NULL : Q_TO_CONN(q); 20800 first_mp = mp; 20801 mp = mp->b_cont; 20802 mctl_present = B_TRUE; 20803 } 20804 zoneid = io->ipsec_out_zoneid; 20805 ASSERT(zoneid != ALL_ZONES); 20806 } else if (ii->ipsec_info_type == IPSEC_CTL) { 20807 /* 20808 * It's an IPsec control message requesting 20809 * an SADB update to be sent to the IPsec 20810 * hardware acceleration capable ills. 20811 */ 20812 ipsec_ctl_t *ipsec_ctl = 20813 (ipsec_ctl_t *)mp->b_rptr; 20814 ipsa_t *sa = (ipsa_t *)ipsec_ctl->ipsec_ctl_sa; 20815 uint_t satype = ipsec_ctl->ipsec_ctl_sa_type; 20816 mblk_t *cmp = mp->b_cont; 20817 20818 ASSERT(MBLKL(mp) >= sizeof (ipsec_ctl_t)); 20819 ASSERT(cmp != NULL); 20820 20821 freeb(mp); 20822 ill_ipsec_capab_send_all(satype, cmp, sa, 20823 ipst->ips_netstack); 20824 return; 20825 } else { 20826 /* 20827 * This must be ARP or special TSOL signaling. 20828 */ 20829 ip_wput_nondata(NULL, q, mp, NULL); 20830 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 20831 "ip_wput_end: q %p (%S)", q, "nondata"); 20832 return; 20833 } 20834 } else { 20835 /* 20836 * This must be non-(ARP/AH/ESP) messages. 20837 */ 20838 ASSERT(!need_decref); 20839 ip_wput_nondata(NULL, q, mp, NULL); 20840 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 20841 "ip_wput_end: q %p (%S)", q, "nondata"); 20842 return; 20843 } 20844 } else { 20845 first_mp = mp; 20846 mctl_present = B_FALSE; 20847 } 20848 20849 ASSERT(first_mp != NULL); 20850 /* 20851 * ICMP echo replies attach an ipsec_out and set ipsec_out_attach_if 20852 * to make sure that this packet goes out on the same interface it 20853 * came in. We handle that here. 20854 */ 20855 if (mctl_present) { 20856 uint_t ifindex; 20857 20858 io = (ipsec_out_t *)first_mp->b_rptr; 20859 if (io->ipsec_out_attach_if || 20860 io->ipsec_out_xmit_if || 20861 io->ipsec_out_ip_nexthop) { 20862 ill_t *ill; 20863 20864 /* 20865 * We may have lost the conn context if we are 20866 * coming here from ip_newroute(). Copy the 20867 * nexthop information. 20868 */ 20869 if (io->ipsec_out_ip_nexthop) { 20870 ip_nexthop = B_TRUE; 20871 nexthop_addr = io->ipsec_out_nexthop_addr; 20872 20873 ipha = (ipha_t *)mp->b_rptr; 20874 dst = ipha->ipha_dst; 20875 goto send_from_ill; 20876 } else { 20877 ASSERT(io->ipsec_out_ill_index != 0); 20878 ifindex = io->ipsec_out_ill_index; 20879 ill = ill_lookup_on_ifindex(ifindex, B_FALSE, 20880 NULL, NULL, NULL, NULL, ipst); 20881 /* 20882 * ipsec_out_xmit_if bit is used to tell 20883 * ip_wput to use the ill to send outgoing data 20884 * as we have no conn when data comes from ICMP 20885 * error msg routines. Currently this feature is 20886 * only used by ip_mrtun_forward routine. 20887 */ 20888 if (io->ipsec_out_xmit_if) { 20889 xmit_ill = ill; 20890 if (xmit_ill == NULL) { 20891 ip1dbg(("ip_output:bad ifindex " 20892 "for xmit_ill %d\n", 20893 ifindex)); 20894 freemsg(first_mp); 20895 BUMP_MIB(&ipst->ips_ip_mib, 20896 ipIfStatsOutDiscards); 20897 ASSERT(!need_decref); 20898 return; 20899 } 20900 /* Free up the ipsec_out_t mblk */ 20901 ASSERT(first_mp->b_cont == mp); 20902 first_mp->b_cont = NULL; 20903 freeb(first_mp); 20904 /* Just send the IP header+ICMP+data */ 20905 first_mp = mp; 20906 ipha = (ipha_t *)mp->b_rptr; 20907 dst = ipha->ipha_dst; 20908 goto send_from_ill; 20909 } else { 20910 attach_ill = ill; 20911 } 20912 20913 if (attach_ill == NULL) { 20914 ASSERT(xmit_ill == NULL); 20915 ip1dbg(("ip_output: bad ifindex for " 20916 "(BIND TO IPIF_NOFAILOVER) %d\n", 20917 ifindex)); 20918 freemsg(first_mp); 20919 BUMP_MIB(&ipst->ips_ip_mib, 20920 ipIfStatsOutDiscards); 20921 ASSERT(!need_decref); 20922 return; 20923 } 20924 } 20925 } 20926 } 20927 20928 ASSERT(xmit_ill == NULL); 20929 20930 /* We have a complete IP datagram heading outbound. */ 20931 ipha = (ipha_t *)mp->b_rptr; 20932 20933 #ifndef SPEED_BEFORE_SAFETY 20934 /* 20935 * Make sure we have a full-word aligned message and that at least 20936 * a simple IP header is accessible in the first message. If not, 20937 * try a pullup. 20938 */ 20939 if (!OK_32PTR(rptr) || 20940 (mp->b_wptr - rptr) < IP_SIMPLE_HDR_LENGTH) { 20941 hdrtoosmall: 20942 if (!pullupmsg(mp, IP_SIMPLE_HDR_LENGTH)) { 20943 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 20944 "ip_wput_end: q %p (%S)", q, "pullupfailed"); 20945 if (first_mp == NULL) 20946 first_mp = mp; 20947 goto discard_pkt; 20948 } 20949 20950 /* This function assumes that mp points to an IPv4 packet. */ 20951 if (is_system_labeled() && q->q_next == NULL && 20952 (*mp->b_rptr & 0xf0) == (IPV4_VERSION << 4) && 20953 !connp->conn_ulp_labeled) { 20954 err = tsol_check_label(BEST_CRED(mp, connp), &mp, 20955 &adjust, connp->conn_mac_exempt, ipst); 20956 ipha = (ipha_t *)mp->b_rptr; 20957 if (first_mp != NULL) 20958 first_mp->b_cont = mp; 20959 if (err != 0) { 20960 if (first_mp == NULL) 20961 first_mp = mp; 20962 if (err == EINVAL) 20963 goto icmp_parameter_problem; 20964 ip2dbg(("ip_wput: label check failed (%d)\n", 20965 err)); 20966 goto discard_pkt; 20967 } 20968 iplen = ntohs(ipha->ipha_length) + adjust; 20969 ipha->ipha_length = htons(iplen); 20970 } 20971 20972 ipha = (ipha_t *)mp->b_rptr; 20973 if (first_mp == NULL) { 20974 ASSERT(attach_ill == NULL && xmit_ill == NULL); 20975 /* 20976 * If we got here because of "goto hdrtoosmall" 20977 * We need to attach a IPSEC_OUT. 20978 */ 20979 if (connp->conn_out_enforce_policy) { 20980 if (((mp = ipsec_attach_ipsec_out(mp, connp, 20981 NULL, ipha->ipha_protocol, 20982 ipst->ips_netstack)) == NULL)) { 20983 BUMP_MIB(&ipst->ips_ip_mib, 20984 ipIfStatsOutDiscards); 20985 if (need_decref) 20986 CONN_DEC_REF(connp); 20987 return; 20988 } else { 20989 ASSERT(mp->b_datap->db_type == M_CTL); 20990 first_mp = mp; 20991 mp = mp->b_cont; 20992 mctl_present = B_TRUE; 20993 } 20994 } else { 20995 first_mp = mp; 20996 mctl_present = B_FALSE; 20997 } 20998 } 20999 } 21000 #endif 21001 21002 /* Most of the code below is written for speed, not readability */ 21003 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 21004 21005 /* 21006 * If ip_newroute() fails, we're going to need a full 21007 * header for the icmp wraparound. 21008 */ 21009 if (V_HLEN != IP_SIMPLE_HDR_VERSION) { 21010 uint_t v_hlen; 21011 version_hdrlen_check: 21012 ASSERT(first_mp != NULL); 21013 v_hlen = V_HLEN; 21014 /* 21015 * siphon off IPv6 packets coming down from transport 21016 * layer modules here. 21017 * Note: high-order bit carries NUD reachability confirmation 21018 */ 21019 if (((v_hlen >> 4) & 0x7) == IPV6_VERSION) { 21020 /* 21021 * XXX implement a IPv4 and IPv6 packet counter per 21022 * conn and switch when ratio exceeds e.g. 10:1 21023 */ 21024 #ifdef notyet 21025 if (q->q_next == NULL) /* Avoid ill queue */ 21026 ip_setqinfo(RD(q), B_TRUE, B_TRUE, ipst); 21027 #endif 21028 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutWrongIPVersion); 21029 ASSERT(xmit_ill == NULL); 21030 if (attach_ill != NULL) 21031 ill_refrele(attach_ill); 21032 if (need_decref) 21033 mp->b_flag |= MSGHASREF; 21034 (void) ip_output_v6(arg, first_mp, arg2, caller); 21035 return; 21036 } 21037 21038 if ((v_hlen >> 4) != IP_VERSION) { 21039 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21040 "ip_wput_end: q %p (%S)", q, "badvers"); 21041 goto discard_pkt; 21042 } 21043 /* 21044 * Is the header length at least 20 bytes? 21045 * 21046 * Are there enough bytes accessible in the header? If 21047 * not, try a pullup. 21048 */ 21049 v_hlen &= 0xF; 21050 v_hlen <<= 2; 21051 if (v_hlen < IP_SIMPLE_HDR_LENGTH) { 21052 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21053 "ip_wput_end: q %p (%S)", q, "badlen"); 21054 goto discard_pkt; 21055 } 21056 if (v_hlen > (mp->b_wptr - rptr)) { 21057 if (!pullupmsg(mp, v_hlen)) { 21058 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21059 "ip_wput_end: q %p (%S)", q, "badpullup2"); 21060 goto discard_pkt; 21061 } 21062 ipha = (ipha_t *)mp->b_rptr; 21063 } 21064 /* 21065 * Move first entry from any source route into ipha_dst and 21066 * verify the options 21067 */ 21068 if (ip_wput_options(q, first_mp, ipha, mctl_present, 21069 zoneid, ipst)) { 21070 ASSERT(xmit_ill == NULL); 21071 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 21072 if (attach_ill != NULL) 21073 ill_refrele(attach_ill); 21074 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21075 "ip_wput_end: q %p (%S)", q, "badopts"); 21076 if (need_decref) 21077 CONN_DEC_REF(connp); 21078 return; 21079 } 21080 } 21081 dst = ipha->ipha_dst; 21082 21083 /* 21084 * Try to get an IRE_CACHE for the destination address. If we can't, 21085 * we have to run the packet through ip_newroute which will take 21086 * the appropriate action to arrange for an IRE_CACHE, such as querying 21087 * a resolver, or assigning a default gateway, etc. 21088 */ 21089 if (CLASSD(dst)) { 21090 ipif_t *ipif; 21091 uint32_t setsrc = 0; 21092 21093 multicast: 21094 ASSERT(first_mp != NULL); 21095 ip2dbg(("ip_wput: CLASSD\n")); 21096 if (connp == NULL) { 21097 /* 21098 * Use the first good ipif on the ill. 21099 * XXX Should this ever happen? (Appears 21100 * to show up with just ppp and no ethernet due 21101 * to in.rdisc.) 21102 * However, ire_send should be able to 21103 * call ip_wput_ire directly. 21104 * 21105 * XXX Also, this can happen for ICMP and other packets 21106 * with multicast source addresses. Perhaps we should 21107 * fix things so that we drop the packet in question, 21108 * but for now, just run with it. 21109 */ 21110 ill_t *ill = (ill_t *)q->q_ptr; 21111 21112 /* 21113 * Don't honor attach_if for this case. If ill 21114 * is part of the group, ipif could belong to 21115 * any ill and we cannot maintain attach_ill 21116 * and ipif_ill same anymore and the assert 21117 * below would fail. 21118 */ 21119 if (mctl_present && io->ipsec_out_attach_if) { 21120 io->ipsec_out_ill_index = 0; 21121 io->ipsec_out_attach_if = B_FALSE; 21122 ASSERT(attach_ill != NULL); 21123 ill_refrele(attach_ill); 21124 attach_ill = NULL; 21125 } 21126 21127 ASSERT(attach_ill == NULL); 21128 ipif = ipif_select_source(ill, dst, GLOBAL_ZONEID); 21129 if (ipif == NULL) { 21130 if (need_decref) 21131 CONN_DEC_REF(connp); 21132 freemsg(first_mp); 21133 return; 21134 } 21135 ip1dbg(("ip_wput: CLASSD no CONN: dst 0x%x on %s\n", 21136 ntohl(dst), ill->ill_name)); 21137 } else { 21138 /* 21139 * The order of precedence is IP_XMIT_IF, IP_PKTINFO 21140 * and IP_MULTICAST_IF. 21141 * Block comment above this function explains the 21142 * locking mechanism used here 21143 */ 21144 if (xmit_ill == NULL) { 21145 xmit_ill = conn_get_held_ill(connp, 21146 &connp->conn_xmit_if_ill, &err); 21147 if (err == ILL_LOOKUP_FAILED) { 21148 ip1dbg(("ip_wput: No ill for " 21149 "IP_XMIT_IF\n")); 21150 BUMP_MIB(&ipst->ips_ip_mib, 21151 ipIfStatsOutNoRoutes); 21152 goto drop_pkt; 21153 } 21154 } 21155 21156 if (xmit_ill == NULL) { 21157 ipif = conn_get_held_ipif(connp, 21158 &connp->conn_multicast_ipif, &err); 21159 if (err == IPIF_LOOKUP_FAILED) { 21160 ip1dbg(("ip_wput: No ipif for " 21161 "multicast\n")); 21162 BUMP_MIB(&ipst->ips_ip_mib, 21163 ipIfStatsOutNoRoutes); 21164 goto drop_pkt; 21165 } 21166 } 21167 if (xmit_ill != NULL) { 21168 ipif = ipif_get_next_ipif(NULL, xmit_ill); 21169 if (ipif == NULL) { 21170 ip1dbg(("ip_wput: No ipif for " 21171 "IP_XMIT_IF\n")); 21172 BUMP_MIB(&ipst->ips_ip_mib, 21173 ipIfStatsOutNoRoutes); 21174 goto drop_pkt; 21175 } 21176 } else if (ipif == NULL || ipif->ipif_isv6) { 21177 /* 21178 * We must do this ipif determination here 21179 * else we could pass through ip_newroute 21180 * and come back here without the conn context. 21181 * 21182 * Note: we do late binding i.e. we bind to 21183 * the interface when the first packet is sent. 21184 * For performance reasons we do not rebind on 21185 * each packet but keep the binding until the 21186 * next IP_MULTICAST_IF option. 21187 * 21188 * conn_multicast_{ipif,ill} are shared between 21189 * IPv4 and IPv6 and AF_INET6 sockets can 21190 * send both IPv4 and IPv6 packets. Hence 21191 * we have to check that "isv6" matches above. 21192 */ 21193 if (ipif != NULL) 21194 ipif_refrele(ipif); 21195 ipif = ipif_lookup_group(dst, zoneid, ipst); 21196 if (ipif == NULL) { 21197 ip1dbg(("ip_wput: No ipif for " 21198 "multicast\n")); 21199 BUMP_MIB(&ipst->ips_ip_mib, 21200 ipIfStatsOutNoRoutes); 21201 goto drop_pkt; 21202 } 21203 err = conn_set_held_ipif(connp, 21204 &connp->conn_multicast_ipif, ipif); 21205 if (err == IPIF_LOOKUP_FAILED) { 21206 ipif_refrele(ipif); 21207 ip1dbg(("ip_wput: No ipif for " 21208 "multicast\n")); 21209 BUMP_MIB(&ipst->ips_ip_mib, 21210 ipIfStatsOutNoRoutes); 21211 goto drop_pkt; 21212 } 21213 } 21214 } 21215 ASSERT(!ipif->ipif_isv6); 21216 /* 21217 * As we may lose the conn by the time we reach ip_wput_ire, 21218 * we copy conn_multicast_loop and conn_dontroute on to an 21219 * ipsec_out. In case if this datagram goes out secure, 21220 * we need the ill_index also. Copy that also into the 21221 * ipsec_out. 21222 */ 21223 if (mctl_present) { 21224 io = (ipsec_out_t *)first_mp->b_rptr; 21225 ASSERT(first_mp->b_datap->db_type == M_CTL); 21226 ASSERT(io->ipsec_out_type == IPSEC_OUT); 21227 } else { 21228 ASSERT(mp == first_mp); 21229 if ((first_mp = allocb(sizeof (ipsec_info_t), 21230 BPRI_HI)) == NULL) { 21231 ipif_refrele(ipif); 21232 first_mp = mp; 21233 goto discard_pkt; 21234 } 21235 first_mp->b_datap->db_type = M_CTL; 21236 first_mp->b_wptr += sizeof (ipsec_info_t); 21237 /* ipsec_out_secure is B_FALSE now */ 21238 bzero(first_mp->b_rptr, sizeof (ipsec_info_t)); 21239 io = (ipsec_out_t *)first_mp->b_rptr; 21240 io->ipsec_out_type = IPSEC_OUT; 21241 io->ipsec_out_len = sizeof (ipsec_out_t); 21242 io->ipsec_out_use_global_policy = B_TRUE; 21243 io->ipsec_out_ns = ipst->ips_netstack; 21244 first_mp->b_cont = mp; 21245 mctl_present = B_TRUE; 21246 } 21247 if (attach_ill != NULL) { 21248 ASSERT(attach_ill == ipif->ipif_ill); 21249 match_flags = MATCH_IRE_ILL | MATCH_IRE_SECATTR; 21250 21251 /* 21252 * Check if we need an ire that will not be 21253 * looked up by anybody else i.e. HIDDEN. 21254 */ 21255 if (ill_is_probeonly(attach_ill)) { 21256 match_flags |= MATCH_IRE_MARK_HIDDEN; 21257 } 21258 io->ipsec_out_ill_index = 21259 attach_ill->ill_phyint->phyint_ifindex; 21260 io->ipsec_out_attach_if = B_TRUE; 21261 } else { 21262 match_flags = MATCH_IRE_ILL_GROUP | MATCH_IRE_SECATTR; 21263 io->ipsec_out_ill_index = 21264 ipif->ipif_ill->ill_phyint->phyint_ifindex; 21265 } 21266 if (connp != NULL) { 21267 io->ipsec_out_multicast_loop = 21268 connp->conn_multicast_loop; 21269 io->ipsec_out_dontroute = connp->conn_dontroute; 21270 io->ipsec_out_zoneid = connp->conn_zoneid; 21271 } 21272 /* 21273 * If the application uses IP_MULTICAST_IF with 21274 * different logical addresses of the same ILL, we 21275 * need to make sure that the soruce address of 21276 * the packet matches the logical IP address used 21277 * in the option. We do it by initializing ipha_src 21278 * here. This should keep IPSEC also happy as 21279 * when we return from IPSEC processing, we don't 21280 * have to worry about getting the right address on 21281 * the packet. Thus it is sufficient to look for 21282 * IRE_CACHE using MATCH_IRE_ILL rathen than 21283 * MATCH_IRE_IPIF. 21284 * 21285 * NOTE : We need to do it for non-secure case also as 21286 * this might go out secure if there is a global policy 21287 * match in ip_wput_ire. For bind to IPIF_NOFAILOVER 21288 * address, the source should be initialized already and 21289 * hence we won't be initializing here. 21290 * 21291 * As we do not have the ire yet, it is possible that 21292 * we set the source address here and then later discover 21293 * that the ire implies the source address to be assigned 21294 * through the RTF_SETSRC flag. 21295 * In that case, the setsrc variable will remind us 21296 * that overwritting the source address by the one 21297 * of the RTF_SETSRC-flagged ire is allowed. 21298 */ 21299 if (ipha->ipha_src == INADDR_ANY && 21300 (connp == NULL || !connp->conn_unspec_src)) { 21301 ipha->ipha_src = ipif->ipif_src_addr; 21302 setsrc = RTF_SETSRC; 21303 } 21304 /* 21305 * Find an IRE which matches the destination and the outgoing 21306 * queue (i.e. the outgoing interface.) 21307 * For loopback use a unicast IP address for 21308 * the ire lookup. 21309 */ 21310 if (ipif->ipif_ill->ill_phyint->phyint_flags & 21311 PHYI_LOOPBACK) { 21312 dst = ipif->ipif_lcl_addr; 21313 } 21314 /* 21315 * If IP_XMIT_IF is set, we branch out to ip_newroute_ipif. 21316 * We don't need to lookup ire in ctable as the packet 21317 * needs to be sent to the destination through the specified 21318 * ill irrespective of ires in the cache table. 21319 */ 21320 ire = NULL; 21321 if (xmit_ill == NULL) { 21322 ire = ire_ctable_lookup(dst, 0, 0, ipif, 21323 zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 21324 } 21325 21326 /* 21327 * refrele attach_ill as its not needed anymore. 21328 */ 21329 if (attach_ill != NULL) { 21330 ill_refrele(attach_ill); 21331 attach_ill = NULL; 21332 } 21333 21334 if (ire == NULL) { 21335 /* 21336 * Multicast loopback and multicast forwarding is 21337 * done in ip_wput_ire. 21338 * 21339 * Mark this packet to make it be delivered to 21340 * ip_wput_ire after the new ire has been 21341 * created. 21342 * 21343 * The call to ip_newroute_ipif takes into account 21344 * the setsrc reminder. In any case, we take care 21345 * of the RTF_MULTIRT flag. 21346 */ 21347 mp->b_prev = mp->b_next = NULL; 21348 if (xmit_ill == NULL || 21349 xmit_ill->ill_ipif_up_count > 0) { 21350 ip_newroute_ipif(q, first_mp, ipif, dst, connp, 21351 setsrc | RTF_MULTIRT, zoneid, infop); 21352 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21353 "ip_wput_end: q %p (%S)", q, "noire"); 21354 } else { 21355 freemsg(first_mp); 21356 } 21357 ipif_refrele(ipif); 21358 if (xmit_ill != NULL) 21359 ill_refrele(xmit_ill); 21360 if (need_decref) 21361 CONN_DEC_REF(connp); 21362 return; 21363 } 21364 21365 ipif_refrele(ipif); 21366 ipif = NULL; 21367 ASSERT(xmit_ill == NULL); 21368 21369 /* 21370 * Honor the RTF_SETSRC flag for multicast packets, 21371 * if allowed by the setsrc reminder. 21372 */ 21373 if ((ire->ire_flags & RTF_SETSRC) && setsrc) { 21374 ipha->ipha_src = ire->ire_src_addr; 21375 } 21376 21377 /* 21378 * Unconditionally force the TTL to 1 for 21379 * multirouted multicast packets: 21380 * multirouted multicast should not cross 21381 * multicast routers. 21382 */ 21383 if (ire->ire_flags & RTF_MULTIRT) { 21384 if (ipha->ipha_ttl > 1) { 21385 ip2dbg(("ip_wput: forcing multicast " 21386 "multirt TTL to 1 (was %d), dst 0x%08x\n", 21387 ipha->ipha_ttl, ntohl(ire->ire_addr))); 21388 ipha->ipha_ttl = 1; 21389 } 21390 } 21391 } else { 21392 ire = ire_cache_lookup(dst, zoneid, MBLK_GETLABEL(mp), ipst); 21393 if ((ire != NULL) && (ire->ire_type & 21394 (IRE_BROADCAST | IRE_LOCAL | IRE_LOOPBACK))) { 21395 ignore_dontroute = B_TRUE; 21396 ignore_nexthop = B_TRUE; 21397 } 21398 if (ire != NULL) { 21399 ire_refrele(ire); 21400 ire = NULL; 21401 } 21402 /* 21403 * Guard against coming in from arp in which case conn is NULL. 21404 * Also guard against non M_DATA with dontroute set but 21405 * destined to local, loopback or broadcast addresses. 21406 */ 21407 if (connp != NULL && connp->conn_dontroute && 21408 !ignore_dontroute) { 21409 dontroute: 21410 /* 21411 * Set TTL to 1 if SO_DONTROUTE is set to prevent 21412 * routing protocols from seeing false direct 21413 * connectivity. 21414 */ 21415 ipha->ipha_ttl = 1; 21416 /* 21417 * If IP_XMIT_IF is also set (conn_xmit_if_ill != NULL) 21418 * along with SO_DONTROUTE, higher precedence is 21419 * given to IP_XMIT_IF and the IP_XMIT_IF ipif is used. 21420 */ 21421 if (connp->conn_xmit_if_ill == NULL) { 21422 /* If suitable ipif not found, drop packet */ 21423 dst_ipif = ipif_lookup_onlink_addr(dst, zoneid, 21424 ipst); 21425 if (dst_ipif == NULL) { 21426 ip1dbg(("ip_wput: no route for " 21427 "dst using SO_DONTROUTE\n")); 21428 BUMP_MIB(&ipst->ips_ip_mib, 21429 ipIfStatsOutNoRoutes); 21430 mp->b_prev = mp->b_next = NULL; 21431 if (first_mp == NULL) 21432 first_mp = mp; 21433 goto drop_pkt; 21434 } else { 21435 /* 21436 * If suitable ipif has been found, set 21437 * xmit_ill to the corresponding 21438 * ipif_ill because we'll be following 21439 * the IP_XMIT_IF logic. 21440 */ 21441 ASSERT(xmit_ill == NULL); 21442 xmit_ill = dst_ipif->ipif_ill; 21443 mutex_enter(&xmit_ill->ill_lock); 21444 if (!ILL_CAN_LOOKUP(xmit_ill)) { 21445 mutex_exit(&xmit_ill->ill_lock); 21446 xmit_ill = NULL; 21447 ipif_refrele(dst_ipif); 21448 ip1dbg(("ip_wput: no route for" 21449 " dst using" 21450 " SO_DONTROUTE\n")); 21451 BUMP_MIB(&ipst->ips_ip_mib, 21452 ipIfStatsOutNoRoutes); 21453 mp->b_prev = mp->b_next = NULL; 21454 if (first_mp == NULL) 21455 first_mp = mp; 21456 goto drop_pkt; 21457 } 21458 ill_refhold_locked(xmit_ill); 21459 mutex_exit(&xmit_ill->ill_lock); 21460 ipif_refrele(dst_ipif); 21461 } 21462 } 21463 21464 } 21465 /* 21466 * If we are bound to IPIF_NOFAILOVER address, look for 21467 * an IRE_CACHE matching the ill. 21468 */ 21469 send_from_ill: 21470 if (attach_ill != NULL) { 21471 ipif_t *attach_ipif; 21472 21473 match_flags = MATCH_IRE_ILL | MATCH_IRE_SECATTR; 21474 21475 /* 21476 * Check if we need an ire that will not be 21477 * looked up by anybody else i.e. HIDDEN. 21478 */ 21479 if (ill_is_probeonly(attach_ill)) { 21480 match_flags |= MATCH_IRE_MARK_HIDDEN; 21481 } 21482 21483 attach_ipif = ipif_get_next_ipif(NULL, attach_ill); 21484 if (attach_ipif == NULL) { 21485 ip1dbg(("ip_wput: No ipif for attach_ill\n")); 21486 goto discard_pkt; 21487 } 21488 ire = ire_ctable_lookup(dst, 0, 0, attach_ipif, 21489 zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 21490 ipif_refrele(attach_ipif); 21491 } else if (xmit_ill != NULL || (connp != NULL && 21492 connp->conn_xmit_if_ill != NULL)) { 21493 /* 21494 * Mark this packet as originated locally 21495 */ 21496 mp->b_prev = mp->b_next = NULL; 21497 /* 21498 * xmit_ill could be NULL if SO_DONTROUTE 21499 * is also set. 21500 */ 21501 if (xmit_ill == NULL) { 21502 xmit_ill = conn_get_held_ill(connp, 21503 &connp->conn_xmit_if_ill, &err); 21504 if (err == ILL_LOOKUP_FAILED) { 21505 BUMP_MIB(&ipst->ips_ip_mib, 21506 ipIfStatsOutDiscards); 21507 if (need_decref) 21508 CONN_DEC_REF(connp); 21509 freemsg(first_mp); 21510 return; 21511 } 21512 if (xmit_ill == NULL) { 21513 if (connp->conn_dontroute) 21514 goto dontroute; 21515 goto send_from_ill; 21516 } 21517 } 21518 /* 21519 * Could be SO_DONTROUTE case also. 21520 * check at least one interface is UP as 21521 * specified by this ILL 21522 */ 21523 if (xmit_ill->ill_ipif_up_count > 0) { 21524 ipif_t *ipif; 21525 21526 ipif = ipif_get_next_ipif(NULL, xmit_ill); 21527 if (ipif == NULL) { 21528 ip1dbg(("ip_output: " 21529 "xmit_ill NULL ipif\n")); 21530 goto drop_pkt; 21531 } 21532 /* 21533 * Look for a ire that is part of the group, 21534 * if found use it else call ip_newroute_ipif. 21535 * IPCL_ZONEID is not used for matching because 21536 * IP_ALLZONES option is valid only when the 21537 * ill is accessible from all zones i.e has a 21538 * valid ipif in all zones. 21539 */ 21540 match_flags = MATCH_IRE_ILL_GROUP | 21541 MATCH_IRE_SECATTR; 21542 ire = ire_ctable_lookup(dst, 0, 0, ipif, zoneid, 21543 MBLK_GETLABEL(mp), match_flags, ipst); 21544 /* 21545 * If an ire exists use it or else create 21546 * an ire but don't add it to the cache. 21547 * Adding an ire may cause issues with 21548 * asymmetric routing. 21549 * In case of multiroute always act as if 21550 * ire does not exist. 21551 */ 21552 if (ire == NULL || 21553 ire->ire_flags & RTF_MULTIRT) { 21554 if (ire != NULL) 21555 ire_refrele(ire); 21556 ip_newroute_ipif(q, first_mp, ipif, 21557 dst, connp, 0, zoneid, infop); 21558 ipif_refrele(ipif); 21559 ip1dbg(("ip_wput: ip_unicast_if\n")); 21560 ill_refrele(xmit_ill); 21561 if (need_decref) 21562 CONN_DEC_REF(connp); 21563 return; 21564 } 21565 ipif_refrele(ipif); 21566 } else { 21567 goto drop_pkt; 21568 } 21569 } else if (ip_nexthop || (connp != NULL && 21570 (connp->conn_nexthop_set)) && !ignore_nexthop) { 21571 if (!ip_nexthop) { 21572 ip_nexthop = B_TRUE; 21573 nexthop_addr = connp->conn_nexthop_v4; 21574 } 21575 match_flags = MATCH_IRE_MARK_PRIVATE_ADDR | 21576 MATCH_IRE_GW; 21577 ire = ire_ctable_lookup(dst, nexthop_addr, 0, 21578 NULL, zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 21579 } else { 21580 ire = ire_cache_lookup(dst, zoneid, MBLK_GETLABEL(mp), 21581 ipst); 21582 } 21583 if (!ire) { 21584 /* 21585 * Make sure we don't load spread if this 21586 * is IPIF_NOFAILOVER case. 21587 */ 21588 if ((attach_ill != NULL) || 21589 (ip_nexthop && !ignore_nexthop)) { 21590 if (mctl_present) { 21591 io = (ipsec_out_t *)first_mp->b_rptr; 21592 ASSERT(first_mp->b_datap->db_type == 21593 M_CTL); 21594 ASSERT(io->ipsec_out_type == IPSEC_OUT); 21595 } else { 21596 ASSERT(mp == first_mp); 21597 first_mp = allocb( 21598 sizeof (ipsec_info_t), BPRI_HI); 21599 if (first_mp == NULL) { 21600 first_mp = mp; 21601 goto discard_pkt; 21602 } 21603 first_mp->b_datap->db_type = M_CTL; 21604 first_mp->b_wptr += 21605 sizeof (ipsec_info_t); 21606 /* ipsec_out_secure is B_FALSE now */ 21607 bzero(first_mp->b_rptr, 21608 sizeof (ipsec_info_t)); 21609 io = (ipsec_out_t *)first_mp->b_rptr; 21610 io->ipsec_out_type = IPSEC_OUT; 21611 io->ipsec_out_len = 21612 sizeof (ipsec_out_t); 21613 io->ipsec_out_use_global_policy = 21614 B_TRUE; 21615 io->ipsec_out_ns = ipst->ips_netstack; 21616 first_mp->b_cont = mp; 21617 mctl_present = B_TRUE; 21618 } 21619 if (attach_ill != NULL) { 21620 io->ipsec_out_ill_index = attach_ill-> 21621 ill_phyint->phyint_ifindex; 21622 io->ipsec_out_attach_if = B_TRUE; 21623 } else { 21624 io->ipsec_out_ip_nexthop = ip_nexthop; 21625 io->ipsec_out_nexthop_addr = 21626 nexthop_addr; 21627 } 21628 } 21629 noirefound: 21630 /* 21631 * Mark this packet as having originated on 21632 * this machine. This will be noted in 21633 * ire_add_then_send, which needs to know 21634 * whether to run it back through ip_wput or 21635 * ip_rput following successful resolution. 21636 */ 21637 mp->b_prev = NULL; 21638 mp->b_next = NULL; 21639 ip_newroute(q, first_mp, dst, NULL, connp, zoneid, 21640 ipst); 21641 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21642 "ip_wput_end: q %p (%S)", q, "newroute"); 21643 if (attach_ill != NULL) 21644 ill_refrele(attach_ill); 21645 if (xmit_ill != NULL) 21646 ill_refrele(xmit_ill); 21647 if (need_decref) 21648 CONN_DEC_REF(connp); 21649 return; 21650 } 21651 } 21652 21653 /* We now know where we are going with it. */ 21654 21655 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21656 "ip_wput_end: q %p (%S)", q, "end"); 21657 21658 /* 21659 * Check if the ire has the RTF_MULTIRT flag, inherited 21660 * from an IRE_OFFSUBNET ire entry in ip_newroute. 21661 */ 21662 if (ire->ire_flags & RTF_MULTIRT) { 21663 /* 21664 * Force the TTL of multirouted packets if required. 21665 * The TTL of such packets is bounded by the 21666 * ip_multirt_ttl ndd variable. 21667 */ 21668 if ((ipst->ips_ip_multirt_ttl > 0) && 21669 (ipha->ipha_ttl > ipst->ips_ip_multirt_ttl)) { 21670 ip2dbg(("ip_wput: forcing multirt TTL to %d " 21671 "(was %d), dst 0x%08x\n", 21672 ipst->ips_ip_multirt_ttl, ipha->ipha_ttl, 21673 ntohl(ire->ire_addr))); 21674 ipha->ipha_ttl = ipst->ips_ip_multirt_ttl; 21675 } 21676 /* 21677 * At this point, we check to see if there are any pending 21678 * unresolved routes. ire_multirt_resolvable() 21679 * checks in O(n) that all IRE_OFFSUBNET ire 21680 * entries for the packet's destination and 21681 * flagged RTF_MULTIRT are currently resolved. 21682 * If some remain unresolved, we make a copy 21683 * of the current message. It will be used 21684 * to initiate additional route resolutions. 21685 */ 21686 multirt_need_resolve = ire_multirt_need_resolve(ire->ire_addr, 21687 MBLK_GETLABEL(first_mp), ipst); 21688 ip2dbg(("ip_wput[noirefound]: ire %p, " 21689 "multirt_need_resolve %d, first_mp %p\n", 21690 (void *)ire, multirt_need_resolve, (void *)first_mp)); 21691 if (multirt_need_resolve) { 21692 copy_mp = copymsg(first_mp); 21693 if (copy_mp != NULL) { 21694 MULTIRT_DEBUG_TAG(copy_mp); 21695 } 21696 } 21697 } 21698 21699 ip_wput_ire(q, first_mp, ire, connp, caller, zoneid); 21700 /* 21701 * Try to resolve another multiroute if 21702 * ire_multirt_resolvable() deemed it necessary. 21703 * At this point, we need to distinguish 21704 * multicasts from other packets. For multicasts, 21705 * we call ip_newroute_ipif() and request that both 21706 * multirouting and setsrc flags are checked. 21707 */ 21708 if (copy_mp != NULL) { 21709 if (CLASSD(dst)) { 21710 ipif_t *ipif = ipif_lookup_group(dst, zoneid, ipst); 21711 if (ipif) { 21712 ASSERT(infop->ip_opt_ill_index == 0); 21713 ip_newroute_ipif(q, copy_mp, ipif, dst, connp, 21714 RTF_SETSRC | RTF_MULTIRT, zoneid, infop); 21715 ipif_refrele(ipif); 21716 } else { 21717 MULTIRT_DEBUG_UNTAG(copy_mp); 21718 freemsg(copy_mp); 21719 copy_mp = NULL; 21720 } 21721 } else { 21722 ip_newroute(q, copy_mp, dst, NULL, connp, zoneid, ipst); 21723 } 21724 } 21725 if (attach_ill != NULL) 21726 ill_refrele(attach_ill); 21727 if (xmit_ill != NULL) 21728 ill_refrele(xmit_ill); 21729 if (need_decref) 21730 CONN_DEC_REF(connp); 21731 return; 21732 21733 icmp_parameter_problem: 21734 /* could not have originated externally */ 21735 ASSERT(mp->b_prev == NULL); 21736 if (ip_hdr_complete(ipha, zoneid, ipst) == 0) { 21737 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 21738 /* it's the IP header length that's in trouble */ 21739 icmp_param_problem(q, first_mp, 0, zoneid, ipst); 21740 first_mp = NULL; 21741 } 21742 21743 discard_pkt: 21744 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 21745 drop_pkt: 21746 ip1dbg(("ip_wput: dropped packet\n")); 21747 if (ire != NULL) 21748 ire_refrele(ire); 21749 if (need_decref) 21750 CONN_DEC_REF(connp); 21751 freemsg(first_mp); 21752 if (attach_ill != NULL) 21753 ill_refrele(attach_ill); 21754 if (xmit_ill != NULL) 21755 ill_refrele(xmit_ill); 21756 TRACE_2(TR_FAC_IP, TR_IP_WPUT_END, 21757 "ip_wput_end: q %p (%S)", q, "droppkt"); 21758 } 21759 21760 /* 21761 * If this is a conn_t queue, then we pass in the conn. This includes the 21762 * zoneid. 21763 * Otherwise, this is a message coming back from ARP or for an ill_t queue, 21764 * in which case we use the global zoneid since those are all part of 21765 * the global zone. 21766 */ 21767 void 21768 ip_wput(queue_t *q, mblk_t *mp) 21769 { 21770 if (CONN_Q(q)) 21771 ip_output(Q_TO_CONN(q), mp, q, IP_WPUT); 21772 else 21773 ip_output(GLOBAL_ZONEID, mp, q, IP_WPUT); 21774 } 21775 21776 /* 21777 * 21778 * The following rules must be observed when accessing any ipif or ill 21779 * that has been cached in the conn. Typically conn_nofailover_ill, 21780 * conn_xmit_if_ill, conn_multicast_ipif and conn_multicast_ill. 21781 * 21782 * Access: The ipif or ill pointed to from the conn can be accessed under 21783 * the protection of the conn_lock or after it has been refheld under the 21784 * protection of the conn lock. In addition the IPIF_CAN_LOOKUP or 21785 * ILL_CAN_LOOKUP macros must be used before actually doing the refhold. 21786 * The reason for this is that a concurrent unplumb could actually be 21787 * cleaning up these cached pointers by walking the conns and might have 21788 * finished cleaning up the conn in question. The macros check that an 21789 * unplumb has not yet started on the ipif or ill. 21790 * 21791 * Caching: An ipif or ill pointer may be cached in the conn only after 21792 * making sure that an unplumb has not started. So the caching is done 21793 * while holding both the conn_lock and the ill_lock and after using the 21794 * ILL_CAN_LOOKUP/IPIF_CAN_LOOKUP macro. An unplumb will set the ILL_CONDEMNED 21795 * flag before starting the cleanup of conns. 21796 * 21797 * The list of ipifs hanging off the ill is protected by ill_g_lock and ill_lock 21798 * On the other hand to access ipif->ipif_ill, we need one of either ill_g_lock 21799 * or a reference to the ipif or a reference to an ire that references the 21800 * ipif. An ipif does not change its ill except for failover/failback. Since 21801 * failover/failback happens only after bringing down the ipif and making sure 21802 * the ipif refcnt has gone to zero and holding the ill_g_lock and ill_lock 21803 * the above holds. 21804 */ 21805 ipif_t * 21806 conn_get_held_ipif(conn_t *connp, ipif_t **ipifp, int *err) 21807 { 21808 ipif_t *ipif; 21809 ill_t *ill; 21810 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 21811 21812 *err = 0; 21813 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 21814 mutex_enter(&connp->conn_lock); 21815 ipif = *ipifp; 21816 if (ipif != NULL) { 21817 ill = ipif->ipif_ill; 21818 mutex_enter(&ill->ill_lock); 21819 if (IPIF_CAN_LOOKUP(ipif)) { 21820 ipif_refhold_locked(ipif); 21821 mutex_exit(&ill->ill_lock); 21822 mutex_exit(&connp->conn_lock); 21823 rw_exit(&ipst->ips_ill_g_lock); 21824 return (ipif); 21825 } else { 21826 *err = IPIF_LOOKUP_FAILED; 21827 } 21828 mutex_exit(&ill->ill_lock); 21829 } 21830 mutex_exit(&connp->conn_lock); 21831 rw_exit(&ipst->ips_ill_g_lock); 21832 return (NULL); 21833 } 21834 21835 ill_t * 21836 conn_get_held_ill(conn_t *connp, ill_t **illp, int *err) 21837 { 21838 ill_t *ill; 21839 21840 *err = 0; 21841 mutex_enter(&connp->conn_lock); 21842 ill = *illp; 21843 if (ill != NULL) { 21844 mutex_enter(&ill->ill_lock); 21845 if (ILL_CAN_LOOKUP(ill)) { 21846 ill_refhold_locked(ill); 21847 mutex_exit(&ill->ill_lock); 21848 mutex_exit(&connp->conn_lock); 21849 return (ill); 21850 } else { 21851 *err = ILL_LOOKUP_FAILED; 21852 } 21853 mutex_exit(&ill->ill_lock); 21854 } 21855 mutex_exit(&connp->conn_lock); 21856 return (NULL); 21857 } 21858 21859 static int 21860 conn_set_held_ipif(conn_t *connp, ipif_t **ipifp, ipif_t *ipif) 21861 { 21862 ill_t *ill; 21863 21864 ill = ipif->ipif_ill; 21865 mutex_enter(&connp->conn_lock); 21866 mutex_enter(&ill->ill_lock); 21867 if (IPIF_CAN_LOOKUP(ipif)) { 21868 *ipifp = ipif; 21869 mutex_exit(&ill->ill_lock); 21870 mutex_exit(&connp->conn_lock); 21871 return (0); 21872 } 21873 mutex_exit(&ill->ill_lock); 21874 mutex_exit(&connp->conn_lock); 21875 return (IPIF_LOOKUP_FAILED); 21876 } 21877 21878 /* 21879 * This is called if the outbound datagram needs fragmentation. 21880 * 21881 * NOTE : This function does not ire_refrele the ire argument passed in. 21882 */ 21883 static void 21884 ip_wput_ire_fragmentit(mblk_t *ipsec_mp, ire_t *ire, zoneid_t zoneid, 21885 ip_stack_t *ipst) 21886 { 21887 ipha_t *ipha; 21888 mblk_t *mp; 21889 uint32_t v_hlen_tos_len; 21890 uint32_t max_frag; 21891 uint32_t frag_flag; 21892 boolean_t dont_use; 21893 21894 if (ipsec_mp->b_datap->db_type == M_CTL) { 21895 mp = ipsec_mp->b_cont; 21896 } else { 21897 mp = ipsec_mp; 21898 } 21899 21900 ipha = (ipha_t *)mp->b_rptr; 21901 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 21902 21903 #ifdef _BIG_ENDIAN 21904 #define V_HLEN (v_hlen_tos_len >> 24) 21905 #define LENGTH (v_hlen_tos_len & 0xFFFF) 21906 #else 21907 #define V_HLEN (v_hlen_tos_len & 0xFF) 21908 #define LENGTH ((v_hlen_tos_len >> 24) | ((v_hlen_tos_len >> 8) & 0xFF00)) 21909 #endif 21910 21911 #ifndef SPEED_BEFORE_SAFETY 21912 /* 21913 * Check that ipha_length is consistent with 21914 * the mblk length 21915 */ 21916 if (LENGTH != (mp->b_cont ? msgdsize(mp) : mp->b_wptr - rptr)) { 21917 ip0dbg(("Packet length mismatch: %d, %ld\n", 21918 LENGTH, msgdsize(mp))); 21919 freemsg(ipsec_mp); 21920 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 21921 "ip_wput_ire_fragmentit: mp %p (%S)", mp, 21922 "packet length mismatch"); 21923 return; 21924 } 21925 #endif 21926 /* 21927 * Don't use frag_flag if pre-built packet or source 21928 * routed or if multicast (since multicast packets do not solicit 21929 * ICMP "packet too big" messages). Get the values of 21930 * max_frag and frag_flag atomically by acquiring the 21931 * ire_lock. 21932 */ 21933 mutex_enter(&ire->ire_lock); 21934 max_frag = ire->ire_max_frag; 21935 frag_flag = ire->ire_frag_flag; 21936 mutex_exit(&ire->ire_lock); 21937 21938 dont_use = ((ipha->ipha_ident == IP_HDR_INCLUDED) || 21939 (V_HLEN != IP_SIMPLE_HDR_VERSION && 21940 ip_source_route_included(ipha)) || CLASSD(ipha->ipha_dst)); 21941 21942 ip_wput_frag(ire, ipsec_mp, OB_PKT, max_frag, 21943 (dont_use ? 0 : frag_flag), zoneid, ipst); 21944 } 21945 21946 /* 21947 * Used for deciding the MSS size for the upper layer. Thus 21948 * we need to check the outbound policy values in the conn. 21949 */ 21950 int 21951 conn_ipsec_length(conn_t *connp) 21952 { 21953 ipsec_latch_t *ipl; 21954 21955 ipl = connp->conn_latch; 21956 if (ipl == NULL) 21957 return (0); 21958 21959 if (ipl->ipl_out_policy == NULL) 21960 return (0); 21961 21962 return (ipl->ipl_out_policy->ipsp_act->ipa_ovhd); 21963 } 21964 21965 /* 21966 * Returns an estimate of the IPSEC headers size. This is used if 21967 * we don't want to call into IPSEC to get the exact size. 21968 */ 21969 int 21970 ipsec_out_extra_length(mblk_t *ipsec_mp) 21971 { 21972 ipsec_out_t *io = (ipsec_out_t *)ipsec_mp->b_rptr; 21973 ipsec_action_t *a; 21974 21975 ASSERT(io->ipsec_out_type == IPSEC_OUT); 21976 if (!io->ipsec_out_secure) 21977 return (0); 21978 21979 a = io->ipsec_out_act; 21980 21981 if (a == NULL) { 21982 ASSERT(io->ipsec_out_policy != NULL); 21983 a = io->ipsec_out_policy->ipsp_act; 21984 } 21985 ASSERT(a != NULL); 21986 21987 return (a->ipa_ovhd); 21988 } 21989 21990 /* 21991 * Returns an estimate of the IPSEC headers size. This is used if 21992 * we don't want to call into IPSEC to get the exact size. 21993 */ 21994 int 21995 ipsec_in_extra_length(mblk_t *ipsec_mp) 21996 { 21997 ipsec_in_t *ii = (ipsec_in_t *)ipsec_mp->b_rptr; 21998 ipsec_action_t *a; 21999 22000 ASSERT(ii->ipsec_in_type == IPSEC_IN); 22001 22002 a = ii->ipsec_in_action; 22003 return (a == NULL ? 0 : a->ipa_ovhd); 22004 } 22005 22006 /* 22007 * If there are any source route options, return the true final 22008 * destination. Otherwise, return the destination. 22009 */ 22010 ipaddr_t 22011 ip_get_dst(ipha_t *ipha) 22012 { 22013 ipoptp_t opts; 22014 uchar_t *opt; 22015 uint8_t optval; 22016 uint8_t optlen; 22017 ipaddr_t dst; 22018 uint32_t off; 22019 22020 dst = ipha->ipha_dst; 22021 22022 if (IS_SIMPLE_IPH(ipha)) 22023 return (dst); 22024 22025 for (optval = ipoptp_first(&opts, ipha); 22026 optval != IPOPT_EOL; 22027 optval = ipoptp_next(&opts)) { 22028 opt = opts.ipoptp_cur; 22029 optlen = opts.ipoptp_len; 22030 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 22031 switch (optval) { 22032 case IPOPT_SSRR: 22033 case IPOPT_LSRR: 22034 off = opt[IPOPT_OFFSET]; 22035 /* 22036 * If one of the conditions is true, it means 22037 * end of options and dst already has the right 22038 * value. 22039 */ 22040 if (!(optlen < IP_ADDR_LEN || off > optlen - 3)) { 22041 off = optlen - IP_ADDR_LEN; 22042 bcopy(&opt[off], &dst, IP_ADDR_LEN); 22043 } 22044 return (dst); 22045 default: 22046 break; 22047 } 22048 } 22049 22050 return (dst); 22051 } 22052 22053 mblk_t * 22054 ip_wput_ire_parse_ipsec_out(mblk_t *mp, ipha_t *ipha, ip6_t *ip6h, ire_t *ire, 22055 conn_t *connp, boolean_t unspec_src, zoneid_t zoneid) 22056 { 22057 ipsec_out_t *io; 22058 mblk_t *first_mp; 22059 boolean_t policy_present; 22060 ip_stack_t *ipst; 22061 ipsec_stack_t *ipss; 22062 22063 ASSERT(ire != NULL); 22064 ipst = ire->ire_ipst; 22065 ipss = ipst->ips_netstack->netstack_ipsec; 22066 22067 first_mp = mp; 22068 if (mp->b_datap->db_type == M_CTL) { 22069 io = (ipsec_out_t *)first_mp->b_rptr; 22070 /* 22071 * ip_wput[_v6] attaches an IPSEC_OUT in two cases. 22072 * 22073 * 1) There is per-socket policy (including cached global 22074 * policy) or a policy on the IP-in-IP tunnel. 22075 * 2) There is no per-socket policy, but it is 22076 * a multicast packet that needs to go out 22077 * on a specific interface. This is the case 22078 * where (ip_wput and ip_wput_multicast) attaches 22079 * an IPSEC_OUT and sets ipsec_out_secure B_FALSE. 22080 * 22081 * In case (2) we check with global policy to 22082 * see if there is a match and set the ill_index 22083 * appropriately so that we can lookup the ire 22084 * properly in ip_wput_ipsec_out. 22085 */ 22086 22087 /* 22088 * ipsec_out_use_global_policy is set to B_FALSE 22089 * in ipsec_in_to_out(). Refer to that function for 22090 * details. 22091 */ 22092 if ((io->ipsec_out_latch == NULL) && 22093 (io->ipsec_out_use_global_policy)) { 22094 return (ip_wput_attach_policy(first_mp, ipha, ip6h, 22095 ire, connp, unspec_src, zoneid)); 22096 } 22097 if (!io->ipsec_out_secure) { 22098 /* 22099 * If this is not a secure packet, drop 22100 * the IPSEC_OUT mp and treat it as a clear 22101 * packet. This happens when we are sending 22102 * a ICMP reply back to a clear packet. See 22103 * ipsec_in_to_out() for details. 22104 */ 22105 mp = first_mp->b_cont; 22106 freeb(first_mp); 22107 } 22108 return (mp); 22109 } 22110 /* 22111 * See whether we need to attach a global policy here. We 22112 * don't depend on the conn (as it could be null) for deciding 22113 * what policy this datagram should go through because it 22114 * should have happened in ip_wput if there was some 22115 * policy. This normally happens for connections which are not 22116 * fully bound preventing us from caching policies in 22117 * ip_bind. Packets coming from the TCP listener/global queue 22118 * - which are non-hard_bound - could also be affected by 22119 * applying policy here. 22120 * 22121 * If this packet is coming from tcp global queue or listener, 22122 * we will be applying policy here. This may not be *right* 22123 * if these packets are coming from the detached connection as 22124 * it could have gone in clear before. This happens only if a 22125 * TCP connection started when there is no policy and somebody 22126 * added policy before it became detached. Thus packets of the 22127 * detached connection could go out secure and the other end 22128 * would drop it because it will be expecting in clear. The 22129 * converse is not true i.e if somebody starts a TCP 22130 * connection and deletes the policy, all the packets will 22131 * still go out with the policy that existed before deleting 22132 * because ip_unbind sends up policy information which is used 22133 * by TCP on subsequent ip_wputs. The right solution is to fix 22134 * TCP to attach a dummy IPSEC_OUT and set 22135 * ipsec_out_use_global_policy to B_FALSE. As this might 22136 * affect performance for normal cases, we are not doing it. 22137 * Thus, set policy before starting any TCP connections. 22138 * 22139 * NOTE - We might apply policy even for a hard bound connection 22140 * - for which we cached policy in ip_bind - if somebody added 22141 * global policy after we inherited the policy in ip_bind. 22142 * This means that the packets that were going out in clear 22143 * previously would start going secure and hence get dropped 22144 * on the other side. To fix this, TCP attaches a dummy 22145 * ipsec_out and make sure that we don't apply global policy. 22146 */ 22147 if (ipha != NULL) 22148 policy_present = ipss->ipsec_outbound_v4_policy_present; 22149 else 22150 policy_present = ipss->ipsec_outbound_v6_policy_present; 22151 if (!policy_present) 22152 return (mp); 22153 22154 return (ip_wput_attach_policy(mp, ipha, ip6h, ire, connp, unspec_src, 22155 zoneid)); 22156 } 22157 22158 ire_t * 22159 conn_set_outgoing_ill(conn_t *connp, ire_t *ire, ill_t **conn_outgoing_ill) 22160 { 22161 ipaddr_t addr; 22162 ire_t *save_ire; 22163 irb_t *irb; 22164 ill_group_t *illgrp; 22165 int err; 22166 22167 save_ire = ire; 22168 addr = ire->ire_addr; 22169 22170 ASSERT(ire->ire_type == IRE_BROADCAST); 22171 22172 illgrp = connp->conn_outgoing_ill->ill_group; 22173 if (illgrp == NULL) { 22174 *conn_outgoing_ill = conn_get_held_ill(connp, 22175 &connp->conn_outgoing_ill, &err); 22176 if (err == ILL_LOOKUP_FAILED) { 22177 ire_refrele(save_ire); 22178 return (NULL); 22179 } 22180 return (save_ire); 22181 } 22182 /* 22183 * If IP_BOUND_IF has been done, conn_outgoing_ill will be set. 22184 * If it is part of the group, we need to send on the ire 22185 * that has been cleared of IRE_MARK_NORECV and that belongs 22186 * to this group. This is okay as IP_BOUND_IF really means 22187 * any ill in the group. We depend on the fact that the 22188 * first ire in the group is always cleared of IRE_MARK_NORECV 22189 * if such an ire exists. This is possible only if you have 22190 * at least one ill in the group that has not failed. 22191 * 22192 * First get to the ire that matches the address and group. 22193 * 22194 * We don't look for an ire with a matching zoneid because a given zone 22195 * won't always have broadcast ires on all ills in the group. 22196 */ 22197 irb = ire->ire_bucket; 22198 rw_enter(&irb->irb_lock, RW_READER); 22199 if (ire->ire_marks & IRE_MARK_NORECV) { 22200 /* 22201 * If the current zone only has an ire broadcast for this 22202 * address marked NORECV, the ire we want is ahead in the 22203 * bucket, so we look it up deliberately ignoring the zoneid. 22204 */ 22205 for (ire = irb->irb_ire; ire != NULL; ire = ire->ire_next) { 22206 if (ire->ire_addr != addr) 22207 continue; 22208 /* skip over deleted ires */ 22209 if (ire->ire_marks & IRE_MARK_CONDEMNED) 22210 continue; 22211 } 22212 } 22213 while (ire != NULL) { 22214 /* 22215 * If a new interface is coming up, we could end up 22216 * seeing the loopback ire and the non-loopback ire 22217 * may not have been added yet. So check for ire_stq 22218 */ 22219 if (ire->ire_stq != NULL && (ire->ire_addr != addr || 22220 ire->ire_ipif->ipif_ill->ill_group == illgrp)) { 22221 break; 22222 } 22223 ire = ire->ire_next; 22224 } 22225 if (ire != NULL && ire->ire_addr == addr && 22226 ire->ire_ipif->ipif_ill->ill_group == illgrp) { 22227 IRE_REFHOLD(ire); 22228 rw_exit(&irb->irb_lock); 22229 ire_refrele(save_ire); 22230 *conn_outgoing_ill = ire_to_ill(ire); 22231 /* 22232 * Refhold the ill to make the conn_outgoing_ill 22233 * independent of the ire. ip_wput_ire goes in a loop 22234 * and may refrele the ire. Since we have an ire at this 22235 * point we don't need to use ILL_CAN_LOOKUP on the ill. 22236 */ 22237 ill_refhold(*conn_outgoing_ill); 22238 return (ire); 22239 } 22240 rw_exit(&irb->irb_lock); 22241 ip1dbg(("conn_set_outgoing_ill: No matching ire\n")); 22242 /* 22243 * If we can't find a suitable ire, return the original ire. 22244 */ 22245 return (save_ire); 22246 } 22247 22248 /* 22249 * This function does the ire_refrele of the ire passed in as the 22250 * argument. As this function looks up more ires i.e broadcast ires, 22251 * it needs to REFRELE them. Currently, for simplicity we don't 22252 * differentiate the one passed in and looked up here. We always 22253 * REFRELE. 22254 * IPQoS Notes: 22255 * IP policy is invoked if IPP_LOCAL_OUT is enabled. Processing for 22256 * IPSec packets are done in ipsec_out_process. 22257 * 22258 */ 22259 void 22260 ip_wput_ire(queue_t *q, mblk_t *mp, ire_t *ire, conn_t *connp, int caller, 22261 zoneid_t zoneid) 22262 { 22263 ipha_t *ipha; 22264 #define rptr ((uchar_t *)ipha) 22265 queue_t *stq; 22266 #define Q_TO_INDEX(stq) (((ill_t *)stq->q_ptr)->ill_phyint->phyint_ifindex) 22267 uint32_t v_hlen_tos_len; 22268 uint32_t ttl_protocol; 22269 ipaddr_t src; 22270 ipaddr_t dst; 22271 uint32_t cksum; 22272 ipaddr_t orig_src; 22273 ire_t *ire1; 22274 mblk_t *next_mp; 22275 uint_t hlen; 22276 uint16_t *up; 22277 uint32_t max_frag = ire->ire_max_frag; 22278 ill_t *ill = ire_to_ill(ire); 22279 int clusterwide; 22280 uint16_t ip_hdr_included; /* IP header included by ULP? */ 22281 int ipsec_len; 22282 mblk_t *first_mp; 22283 ipsec_out_t *io; 22284 boolean_t conn_dontroute; /* conn value for multicast */ 22285 boolean_t conn_multicast_loop; /* conn value for multicast */ 22286 boolean_t multicast_forward; /* Should we forward ? */ 22287 boolean_t unspec_src; 22288 ill_t *conn_outgoing_ill = NULL; 22289 ill_t *ire_ill; 22290 ill_t *ire1_ill; 22291 ill_t *out_ill; 22292 uint32_t ill_index = 0; 22293 boolean_t multirt_send = B_FALSE; 22294 int err; 22295 ipxmit_state_t pktxmit_state; 22296 ip_stack_t *ipst = ire->ire_ipst; 22297 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 22298 22299 TRACE_1(TR_FAC_IP, TR_IP_WPUT_IRE_START, 22300 "ip_wput_ire_start: q %p", q); 22301 22302 multicast_forward = B_FALSE; 22303 unspec_src = (connp != NULL && connp->conn_unspec_src); 22304 22305 if (ire->ire_flags & RTF_MULTIRT) { 22306 /* 22307 * Multirouting case. The bucket where ire is stored 22308 * probably holds other RTF_MULTIRT flagged ire 22309 * to the destination. In this call to ip_wput_ire, 22310 * we attempt to send the packet through all 22311 * those ires. Thus, we first ensure that ire is the 22312 * first RTF_MULTIRT ire in the bucket, 22313 * before walking the ire list. 22314 */ 22315 ire_t *first_ire; 22316 irb_t *irb = ire->ire_bucket; 22317 ASSERT(irb != NULL); 22318 22319 /* Make sure we do not omit any multiroute ire. */ 22320 IRB_REFHOLD(irb); 22321 for (first_ire = irb->irb_ire; 22322 first_ire != NULL; 22323 first_ire = first_ire->ire_next) { 22324 if ((first_ire->ire_flags & RTF_MULTIRT) && 22325 (first_ire->ire_addr == ire->ire_addr) && 22326 !(first_ire->ire_marks & 22327 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN))) 22328 break; 22329 } 22330 22331 if ((first_ire != NULL) && (first_ire != ire)) { 22332 IRE_REFHOLD(first_ire); 22333 ire_refrele(ire); 22334 ire = first_ire; 22335 ill = ire_to_ill(ire); 22336 } 22337 IRB_REFRELE(irb); 22338 } 22339 22340 /* 22341 * conn_outgoing_ill is used only in the broadcast loop. 22342 * for performance we don't grab the mutexs in the fastpath 22343 */ 22344 if ((connp != NULL) && 22345 (connp->conn_xmit_if_ill == NULL) && 22346 (ire->ire_type == IRE_BROADCAST) && 22347 ((connp->conn_nofailover_ill != NULL) || 22348 (connp->conn_outgoing_ill != NULL))) { 22349 /* 22350 * Bind to IPIF_NOFAILOVER address overrides IP_BOUND_IF 22351 * option. So, see if this endpoint is bound to a 22352 * IPIF_NOFAILOVER address. If so, honor it. This implies 22353 * that if the interface is failed, we will still send 22354 * the packet on the same ill which is what we want. 22355 */ 22356 conn_outgoing_ill = conn_get_held_ill(connp, 22357 &connp->conn_nofailover_ill, &err); 22358 if (err == ILL_LOOKUP_FAILED) { 22359 ire_refrele(ire); 22360 freemsg(mp); 22361 return; 22362 } 22363 if (conn_outgoing_ill == NULL) { 22364 /* 22365 * Choose a good ill in the group to send the 22366 * packets on. 22367 */ 22368 ire = conn_set_outgoing_ill(connp, ire, 22369 &conn_outgoing_ill); 22370 if (ire == NULL) { 22371 freemsg(mp); 22372 return; 22373 } 22374 } 22375 } 22376 22377 if (mp->b_datap->db_type != M_CTL) { 22378 ipha = (ipha_t *)mp->b_rptr; 22379 } else { 22380 io = (ipsec_out_t *)mp->b_rptr; 22381 ASSERT(io->ipsec_out_type == IPSEC_OUT); 22382 ASSERT(zoneid == io->ipsec_out_zoneid); 22383 ASSERT(zoneid != ALL_ZONES); 22384 ipha = (ipha_t *)mp->b_cont->b_rptr; 22385 dst = ipha->ipha_dst; 22386 /* 22387 * For the multicast case, ipsec_out carries conn_dontroute and 22388 * conn_multicast_loop as conn may not be available here. We 22389 * need this for multicast loopback and forwarding which is done 22390 * later in the code. 22391 */ 22392 if (CLASSD(dst)) { 22393 conn_dontroute = io->ipsec_out_dontroute; 22394 conn_multicast_loop = io->ipsec_out_multicast_loop; 22395 /* 22396 * If conn_dontroute is not set or conn_multicast_loop 22397 * is set, we need to do forwarding/loopback. For 22398 * datagrams from ip_wput_multicast, conn_dontroute is 22399 * set to B_TRUE and conn_multicast_loop is set to 22400 * B_FALSE so that we neither do forwarding nor 22401 * loopback. 22402 */ 22403 if (!conn_dontroute || conn_multicast_loop) 22404 multicast_forward = B_TRUE; 22405 } 22406 } 22407 22408 if (ire->ire_type == IRE_LOCAL && ire->ire_zoneid != zoneid && 22409 ire->ire_zoneid != ALL_ZONES) { 22410 /* 22411 * When a zone sends a packet to another zone, we try to deliver 22412 * the packet under the same conditions as if the destination 22413 * was a real node on the network. To do so, we look for a 22414 * matching route in the forwarding table. 22415 * RTF_REJECT and RTF_BLACKHOLE are handled just like 22416 * ip_newroute() does. 22417 * Note that IRE_LOCAL are special, since they are used 22418 * when the zoneid doesn't match in some cases. This means that 22419 * we need to handle ipha_src differently since ire_src_addr 22420 * belongs to the receiving zone instead of the sending zone. 22421 * When ip_restrict_interzone_loopback is set, then 22422 * ire_cache_lookup() ensures that IRE_LOCAL are only used 22423 * for loopback between zones when the logical "Ethernet" would 22424 * have looped them back. 22425 */ 22426 ire_t *src_ire; 22427 22428 src_ire = ire_ftable_lookup(ipha->ipha_dst, 0, 0, 0, 22429 NULL, NULL, zoneid, 0, NULL, (MATCH_IRE_RECURSIVE | 22430 MATCH_IRE_DEFAULT | MATCH_IRE_RJ_BHOLE), ipst); 22431 if (src_ire != NULL && 22432 !(src_ire->ire_flags & (RTF_REJECT | RTF_BLACKHOLE)) && 22433 (!ipst->ips_ip_restrict_interzone_loopback || 22434 ire_local_same_ill_group(ire, src_ire))) { 22435 if (ipha->ipha_src == INADDR_ANY && !unspec_src) 22436 ipha->ipha_src = src_ire->ire_src_addr; 22437 ire_refrele(src_ire); 22438 } else { 22439 ire_refrele(ire); 22440 if (conn_outgoing_ill != NULL) 22441 ill_refrele(conn_outgoing_ill); 22442 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 22443 if (src_ire != NULL) { 22444 if (src_ire->ire_flags & RTF_BLACKHOLE) { 22445 ire_refrele(src_ire); 22446 freemsg(mp); 22447 return; 22448 } 22449 ire_refrele(src_ire); 22450 } 22451 if (ip_hdr_complete(ipha, zoneid, ipst)) { 22452 /* Failed */ 22453 freemsg(mp); 22454 return; 22455 } 22456 icmp_unreachable(q, mp, ICMP_HOST_UNREACHABLE, zoneid, 22457 ipst); 22458 return; 22459 } 22460 } 22461 22462 if (mp->b_datap->db_type == M_CTL || 22463 ipss->ipsec_outbound_v4_policy_present) { 22464 mp = ip_wput_ire_parse_ipsec_out(mp, ipha, NULL, ire, connp, 22465 unspec_src, zoneid); 22466 if (mp == NULL) { 22467 ire_refrele(ire); 22468 if (conn_outgoing_ill != NULL) 22469 ill_refrele(conn_outgoing_ill); 22470 return; 22471 } 22472 } 22473 22474 first_mp = mp; 22475 ipsec_len = 0; 22476 22477 if (first_mp->b_datap->db_type == M_CTL) { 22478 io = (ipsec_out_t *)first_mp->b_rptr; 22479 ASSERT(io->ipsec_out_type == IPSEC_OUT); 22480 mp = first_mp->b_cont; 22481 ipsec_len = ipsec_out_extra_length(first_mp); 22482 ASSERT(ipsec_len >= 0); 22483 /* We already picked up the zoneid from the M_CTL above */ 22484 ASSERT(zoneid == io->ipsec_out_zoneid); 22485 ASSERT(zoneid != ALL_ZONES); 22486 22487 /* 22488 * Drop M_CTL here if IPsec processing is not needed. 22489 * (Non-IPsec use of M_CTL extracted any information it 22490 * needed above). 22491 */ 22492 if (ipsec_len == 0) { 22493 freeb(first_mp); 22494 first_mp = mp; 22495 } 22496 } 22497 22498 /* 22499 * Fast path for ip_wput_ire 22500 */ 22501 22502 ipha = (ipha_t *)mp->b_rptr; 22503 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 22504 dst = ipha->ipha_dst; 22505 22506 /* 22507 * ICMP(RAWIP) module should set the ipha_ident to IP_HDR_INCLUDED 22508 * if the socket is a SOCK_RAW type. The transport checksum should 22509 * be provided in the pre-built packet, so we don't need to compute it. 22510 * Also, other application set flags, like DF, should not be altered. 22511 * Other transport MUST pass down zero. 22512 */ 22513 ip_hdr_included = ipha->ipha_ident; 22514 ASSERT(ipha->ipha_ident == 0 || ipha->ipha_ident == IP_HDR_INCLUDED); 22515 22516 if (CLASSD(dst)) { 22517 ip1dbg(("ip_wput_ire: to 0x%x ire %s addr 0x%x\n", 22518 ntohl(dst), 22519 ip_nv_lookup(ire_nv_tbl, ire->ire_type), 22520 ntohl(ire->ire_addr))); 22521 } 22522 22523 /* Macros to extract header fields from data already in registers */ 22524 #ifdef _BIG_ENDIAN 22525 #define V_HLEN (v_hlen_tos_len >> 24) 22526 #define LENGTH (v_hlen_tos_len & 0xFFFF) 22527 #define PROTO (ttl_protocol & 0xFF) 22528 #else 22529 #define V_HLEN (v_hlen_tos_len & 0xFF) 22530 #define LENGTH ((v_hlen_tos_len >> 24) | ((v_hlen_tos_len >> 8) & 0xFF00)) 22531 #define PROTO (ttl_protocol >> 8) 22532 #endif 22533 22534 22535 orig_src = src = ipha->ipha_src; 22536 /* (The loop back to "another" is explained down below.) */ 22537 another:; 22538 /* 22539 * Assign an ident value for this packet. We assign idents on 22540 * a per destination basis out of the IRE. There could be 22541 * other threads targeting the same destination, so we have to 22542 * arrange for a atomic increment. Note that we use a 32-bit 22543 * atomic add because it has better performance than its 22544 * 16-bit sibling. 22545 * 22546 * If running in cluster mode and if the source address 22547 * belongs to a replicated service then vector through 22548 * cl_inet_ipident vector to allocate ip identifier 22549 * NOTE: This is a contract private interface with the 22550 * clustering group. 22551 */ 22552 clusterwide = 0; 22553 if (cl_inet_ipident) { 22554 ASSERT(cl_inet_isclusterwide); 22555 if ((*cl_inet_isclusterwide)(IPPROTO_IP, 22556 AF_INET, (uint8_t *)(uintptr_t)src)) { 22557 ipha->ipha_ident = (*cl_inet_ipident)(IPPROTO_IP, 22558 AF_INET, (uint8_t *)(uintptr_t)src, 22559 (uint8_t *)(uintptr_t)dst); 22560 clusterwide = 1; 22561 } 22562 } 22563 if (!clusterwide) { 22564 ipha->ipha_ident = 22565 (uint16_t)atomic_add_32_nv(&ire->ire_ident, 1); 22566 } 22567 22568 #ifndef _BIG_ENDIAN 22569 ipha->ipha_ident = (ipha->ipha_ident << 8) | (ipha->ipha_ident >> 8); 22570 #endif 22571 22572 /* 22573 * Set source address unless sent on an ill or conn_unspec_src is set. 22574 * This is needed to obey conn_unspec_src when packets go through 22575 * ip_newroute + arp. 22576 * Assumes ip_newroute{,_multi} sets the source address as well. 22577 */ 22578 if (src == INADDR_ANY && !unspec_src) { 22579 /* 22580 * Assign the appropriate source address from the IRE if none 22581 * was specified. 22582 */ 22583 ASSERT(ire->ire_ipversion == IPV4_VERSION); 22584 22585 /* 22586 * With IP multipathing, broadcast packets are sent on the ire 22587 * that has been cleared of IRE_MARK_NORECV and that belongs to 22588 * the group. However, this ire might not be in the same zone so 22589 * we can't always use its source address. We look for a 22590 * broadcast ire in the same group and in the right zone. 22591 */ 22592 if (ire->ire_type == IRE_BROADCAST && 22593 ire->ire_zoneid != zoneid) { 22594 ire_t *src_ire = ire_ctable_lookup(dst, 0, 22595 IRE_BROADCAST, ire->ire_ipif, zoneid, NULL, 22596 (MATCH_IRE_TYPE | MATCH_IRE_ILL_GROUP), ipst); 22597 if (src_ire != NULL) { 22598 src = src_ire->ire_src_addr; 22599 ire_refrele(src_ire); 22600 } else { 22601 ire_refrele(ire); 22602 if (conn_outgoing_ill != NULL) 22603 ill_refrele(conn_outgoing_ill); 22604 freemsg(first_mp); 22605 if (ill != NULL) { 22606 BUMP_MIB(ill->ill_ip_mib, 22607 ipIfStatsOutDiscards); 22608 } else { 22609 BUMP_MIB(&ipst->ips_ip_mib, 22610 ipIfStatsOutDiscards); 22611 } 22612 return; 22613 } 22614 } else { 22615 src = ire->ire_src_addr; 22616 } 22617 22618 if (connp == NULL) { 22619 ip1dbg(("ip_wput_ire: no connp and no src " 22620 "address for dst 0x%x, using src 0x%x\n", 22621 ntohl(dst), 22622 ntohl(src))); 22623 } 22624 ipha->ipha_src = src; 22625 } 22626 stq = ire->ire_stq; 22627 22628 /* 22629 * We only allow ire chains for broadcasts since there will 22630 * be multiple IRE_CACHE entries for the same multicast 22631 * address (one per ipif). 22632 */ 22633 next_mp = NULL; 22634 22635 /* broadcast packet */ 22636 if (ire->ire_type == IRE_BROADCAST) 22637 goto broadcast; 22638 22639 /* loopback ? */ 22640 if (stq == NULL) 22641 goto nullstq; 22642 22643 /* The ill_index for outbound ILL */ 22644 ill_index = Q_TO_INDEX(stq); 22645 22646 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCOutRequests); 22647 ttl_protocol = ((uint16_t *)ipha)[4]; 22648 22649 /* pseudo checksum (do it in parts for IP header checksum) */ 22650 cksum = (dst >> 16) + (dst & 0xFFFF) + (src >> 16) + (src & 0xFFFF); 22651 22652 if (!IP_FLOW_CONTROLLED_ULP(PROTO)) { 22653 queue_t *dev_q = stq->q_next; 22654 22655 /* flow controlled */ 22656 if ((dev_q->q_next || dev_q->q_first) && 22657 !canput(dev_q)) 22658 goto blocked; 22659 if ((PROTO == IPPROTO_UDP) && 22660 (ip_hdr_included != IP_HDR_INCLUDED)) { 22661 hlen = (V_HLEN & 0xF) << 2; 22662 up = IPH_UDPH_CHECKSUMP(ipha, hlen); 22663 if (*up != 0) { 22664 IP_CKSUM_XMIT(ill, ire, mp, ipha, up, PROTO, 22665 hlen, LENGTH, max_frag, ipsec_len, cksum); 22666 /* Software checksum? */ 22667 if (DB_CKSUMFLAGS(mp) == 0) { 22668 IP_STAT(ipst, ip_out_sw_cksum); 22669 IP_STAT_UPDATE(ipst, 22670 ip_udp_out_sw_cksum_bytes, 22671 LENGTH - hlen); 22672 } 22673 } 22674 } 22675 } else if (ip_hdr_included != IP_HDR_INCLUDED) { 22676 hlen = (V_HLEN & 0xF) << 2; 22677 if (PROTO == IPPROTO_TCP) { 22678 up = IPH_TCPH_CHECKSUMP(ipha, hlen); 22679 /* 22680 * The packet header is processed once and for all, even 22681 * in the multirouting case. We disable hardware 22682 * checksum if the packet is multirouted, as it will be 22683 * replicated via several interfaces, and not all of 22684 * them may have this capability. 22685 */ 22686 IP_CKSUM_XMIT(ill, ire, mp, ipha, up, PROTO, hlen, 22687 LENGTH, max_frag, ipsec_len, cksum); 22688 /* Software checksum? */ 22689 if (DB_CKSUMFLAGS(mp) == 0) { 22690 IP_STAT(ipst, ip_out_sw_cksum); 22691 IP_STAT_UPDATE(ipst, ip_tcp_out_sw_cksum_bytes, 22692 LENGTH - hlen); 22693 } 22694 } else { 22695 sctp_hdr_t *sctph; 22696 22697 ASSERT(PROTO == IPPROTO_SCTP); 22698 ASSERT(MBLKL(mp) >= (hlen + sizeof (*sctph))); 22699 sctph = (sctp_hdr_t *)(mp->b_rptr + hlen); 22700 /* 22701 * Zero out the checksum field to ensure proper 22702 * checksum calculation. 22703 */ 22704 sctph->sh_chksum = 0; 22705 #ifdef DEBUG 22706 if (!skip_sctp_cksum) 22707 #endif 22708 sctph->sh_chksum = sctp_cksum(mp, hlen); 22709 } 22710 } 22711 22712 /* 22713 * If this is a multicast packet and originated from ip_wput 22714 * we need to do loopback and forwarding checks. If it comes 22715 * from ip_wput_multicast, we SHOULD not do this. 22716 */ 22717 if (CLASSD(ipha->ipha_dst) && multicast_forward) goto multi_loopback; 22718 22719 /* checksum */ 22720 cksum += ttl_protocol; 22721 22722 /* fragment the packet */ 22723 if (max_frag < (uint_t)(LENGTH + ipsec_len)) 22724 goto fragmentit; 22725 /* 22726 * Don't use frag_flag if packet is pre-built or source 22727 * routed or if multicast (since multicast packets do 22728 * not solicit ICMP "packet too big" messages). 22729 */ 22730 if ((ip_hdr_included != IP_HDR_INCLUDED) && 22731 (V_HLEN == IP_SIMPLE_HDR_VERSION || 22732 !ip_source_route_included(ipha)) && 22733 !CLASSD(ipha->ipha_dst)) 22734 ipha->ipha_fragment_offset_and_flags |= 22735 htons(ire->ire_frag_flag); 22736 22737 if (!(DB_CKSUMFLAGS(mp) & HCK_IPV4_HDRCKSUM)) { 22738 /* calculate IP header checksum */ 22739 cksum += ipha->ipha_ident; 22740 cksum += (v_hlen_tos_len >> 16)+(v_hlen_tos_len & 0xFFFF); 22741 cksum += ipha->ipha_fragment_offset_and_flags; 22742 22743 /* IP options present */ 22744 hlen = (V_HLEN & 0xF) - IP_SIMPLE_HDR_LENGTH_IN_WORDS; 22745 if (hlen) 22746 goto checksumoptions; 22747 22748 /* calculate hdr checksum */ 22749 cksum = ((cksum & 0xFFFF) + (cksum >> 16)); 22750 cksum = ~(cksum + (cksum >> 16)); 22751 ipha->ipha_hdr_checksum = (uint16_t)cksum; 22752 } 22753 if (ipsec_len != 0) { 22754 /* 22755 * We will do the rest of the processing after 22756 * we come back from IPSEC in ip_wput_ipsec_out(). 22757 */ 22758 ASSERT(MBLKL(first_mp) >= sizeof (ipsec_out_t)); 22759 22760 io = (ipsec_out_t *)first_mp->b_rptr; 22761 io->ipsec_out_ill_index = ((ill_t *)stq->q_ptr)-> 22762 ill_phyint->phyint_ifindex; 22763 22764 ipsec_out_process(q, first_mp, ire, ill_index); 22765 ire_refrele(ire); 22766 if (conn_outgoing_ill != NULL) 22767 ill_refrele(conn_outgoing_ill); 22768 return; 22769 } 22770 22771 /* 22772 * In most cases, the emission loop below is entered only 22773 * once. Only in the case where the ire holds the 22774 * RTF_MULTIRT flag, do we loop to process all RTF_MULTIRT 22775 * flagged ires in the bucket, and send the packet 22776 * through all crossed RTF_MULTIRT routes. 22777 */ 22778 if (ire->ire_flags & RTF_MULTIRT) { 22779 multirt_send = B_TRUE; 22780 } 22781 do { 22782 if (multirt_send) { 22783 irb_t *irb; 22784 /* 22785 * We are in a multiple send case, need to get 22786 * the next ire and make a duplicate of the packet. 22787 * ire1 holds here the next ire to process in the 22788 * bucket. If multirouting is expected, 22789 * any non-RTF_MULTIRT ire that has the 22790 * right destination address is ignored. 22791 */ 22792 irb = ire->ire_bucket; 22793 ASSERT(irb != NULL); 22794 22795 IRB_REFHOLD(irb); 22796 for (ire1 = ire->ire_next; 22797 ire1 != NULL; 22798 ire1 = ire1->ire_next) { 22799 if ((ire1->ire_flags & RTF_MULTIRT) == 0) 22800 continue; 22801 if (ire1->ire_addr != ire->ire_addr) 22802 continue; 22803 if (ire1->ire_marks & 22804 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN)) 22805 continue; 22806 22807 /* Got one */ 22808 IRE_REFHOLD(ire1); 22809 break; 22810 } 22811 IRB_REFRELE(irb); 22812 22813 if (ire1 != NULL) { 22814 next_mp = copyb(mp); 22815 if ((next_mp == NULL) || 22816 ((mp->b_cont != NULL) && 22817 ((next_mp->b_cont = 22818 dupmsg(mp->b_cont)) == NULL))) { 22819 freemsg(next_mp); 22820 next_mp = NULL; 22821 ire_refrele(ire1); 22822 ire1 = NULL; 22823 } 22824 } 22825 22826 /* Last multiroute ire; don't loop anymore. */ 22827 if (ire1 == NULL) { 22828 multirt_send = B_FALSE; 22829 } 22830 } 22831 22832 DTRACE_PROBE4(ip4__physical__out__start, ill_t *, NULL, 22833 ill_t *, ire->ire_ipif->ipif_ill, ipha_t *, ipha, 22834 mblk_t *, mp); 22835 FW_HOOKS(ipst->ips_ip4_physical_out_event, 22836 ipst->ips_ipv4firewall_physical_out, 22837 NULL, ire->ire_ipif->ipif_ill, ipha, mp, mp, ipst); 22838 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, mp); 22839 if (mp == NULL) 22840 goto release_ire_and_ill; 22841 22842 mp->b_prev = SET_BPREV_FLAG(IPP_LOCAL_OUT); 22843 DTRACE_PROBE2(ip__xmit__1, mblk_t *, mp, ire_t *, ire); 22844 pktxmit_state = ip_xmit_v4(mp, ire, NULL, B_TRUE); 22845 if ((pktxmit_state == SEND_FAILED) || 22846 (pktxmit_state == LLHDR_RESLV_FAILED)) { 22847 ip2dbg(("ip_wput_ire: ip_xmit_v4 failed" 22848 "- packet dropped\n")); 22849 release_ire_and_ill: 22850 ire_refrele(ire); 22851 if (next_mp != NULL) { 22852 freemsg(next_mp); 22853 ire_refrele(ire1); 22854 } 22855 if (conn_outgoing_ill != NULL) 22856 ill_refrele(conn_outgoing_ill); 22857 return; 22858 } 22859 22860 if (CLASSD(dst)) { 22861 BUMP_MIB(ill->ill_ip_mib, ipIfStatsHCOutMcastPkts); 22862 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCOutMcastOctets, 22863 LENGTH); 22864 } 22865 22866 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 22867 "ip_wput_ire_end: q %p (%S)", 22868 q, "last copy out"); 22869 IRE_REFRELE(ire); 22870 22871 if (multirt_send) { 22872 ASSERT(ire1); 22873 /* 22874 * Proceed with the next RTF_MULTIRT ire, 22875 * Also set up the send-to queue accordingly. 22876 */ 22877 ire = ire1; 22878 ire1 = NULL; 22879 stq = ire->ire_stq; 22880 mp = next_mp; 22881 next_mp = NULL; 22882 ipha = (ipha_t *)mp->b_rptr; 22883 ill_index = Q_TO_INDEX(stq); 22884 ill = (ill_t *)stq->q_ptr; 22885 } 22886 } while (multirt_send); 22887 if (conn_outgoing_ill != NULL) 22888 ill_refrele(conn_outgoing_ill); 22889 return; 22890 22891 /* 22892 * ire->ire_type == IRE_BROADCAST (minimize diffs) 22893 */ 22894 broadcast: 22895 { 22896 /* 22897 * Avoid broadcast storms by setting the ttl to 1 22898 * for broadcasts. This parameter can be set 22899 * via ndd, so make sure that for the SO_DONTROUTE 22900 * case that ipha_ttl is always set to 1. 22901 * In the event that we are replying to incoming 22902 * ICMP packets, conn could be NULL. 22903 */ 22904 if ((connp != NULL) && connp->conn_dontroute) 22905 ipha->ipha_ttl = 1; 22906 else 22907 ipha->ipha_ttl = ipst->ips_ip_broadcast_ttl; 22908 22909 /* 22910 * Note that we are not doing a IRB_REFHOLD here. 22911 * Actually we don't care if the list changes i.e 22912 * if somebody deletes an IRE from the list while 22913 * we drop the lock, the next time we come around 22914 * ire_next will be NULL and hence we won't send 22915 * out multiple copies which is fine. 22916 */ 22917 rw_enter(&ire->ire_bucket->irb_lock, RW_READER); 22918 ire1 = ire->ire_next; 22919 if (conn_outgoing_ill != NULL) { 22920 while (ire->ire_ipif->ipif_ill != conn_outgoing_ill) { 22921 ASSERT(ire1 == ire->ire_next); 22922 if (ire1 != NULL && ire1->ire_addr == dst) { 22923 ire_refrele(ire); 22924 ire = ire1; 22925 IRE_REFHOLD(ire); 22926 ire1 = ire->ire_next; 22927 continue; 22928 } 22929 rw_exit(&ire->ire_bucket->irb_lock); 22930 /* Did not find a matching ill */ 22931 ip1dbg(("ip_wput_ire: broadcast with no " 22932 "matching IP_BOUND_IF ill %s\n", 22933 conn_outgoing_ill->ill_name)); 22934 freemsg(first_mp); 22935 if (ire != NULL) 22936 ire_refrele(ire); 22937 ill_refrele(conn_outgoing_ill); 22938 return; 22939 } 22940 } else if (ire1 != NULL && ire1->ire_addr == dst) { 22941 /* 22942 * If the next IRE has the same address and is not one 22943 * of the two copies that we need to send, try to see 22944 * whether this copy should be sent at all. This 22945 * assumes that we insert loopbacks first and then 22946 * non-loopbacks. This is acheived by inserting the 22947 * loopback always before non-loopback. 22948 * This is used to send a single copy of a broadcast 22949 * packet out all physical interfaces that have an 22950 * matching IRE_BROADCAST while also looping 22951 * back one copy (to ip_wput_local) for each 22952 * matching physical interface. However, we avoid 22953 * sending packets out different logical that match by 22954 * having ipif_up/ipif_down supress duplicate 22955 * IRE_BROADCASTS. 22956 * 22957 * This feature is currently used to get broadcasts 22958 * sent to multiple interfaces, when the broadcast 22959 * address being used applies to multiple interfaces. 22960 * For example, a whole net broadcast will be 22961 * replicated on every connected subnet of 22962 * the target net. 22963 * 22964 * Each zone has its own set of IRE_BROADCASTs, so that 22965 * we're able to distribute inbound packets to multiple 22966 * zones who share a broadcast address. We avoid looping 22967 * back outbound packets in different zones but on the 22968 * same ill, as the application would see duplicates. 22969 * 22970 * If the interfaces are part of the same group, 22971 * we would want to send only one copy out for 22972 * whole group. 22973 * 22974 * This logic assumes that ire_add_v4() groups the 22975 * IRE_BROADCAST entries so that those with the same 22976 * ire_addr and ill_group are kept together. 22977 */ 22978 ire_ill = ire->ire_ipif->ipif_ill; 22979 if (ire->ire_stq == NULL && ire1->ire_stq != NULL) { 22980 if (ire_ill->ill_group != NULL && 22981 (ire->ire_marks & IRE_MARK_NORECV)) { 22982 /* 22983 * If the current zone only has an ire 22984 * broadcast for this address marked 22985 * NORECV, the ire we want is ahead in 22986 * the bucket, so we look it up 22987 * deliberately ignoring the zoneid. 22988 */ 22989 for (ire1 = ire->ire_bucket->irb_ire; 22990 ire1 != NULL; 22991 ire1 = ire1->ire_next) { 22992 ire1_ill = 22993 ire1->ire_ipif->ipif_ill; 22994 if (ire1->ire_addr != dst) 22995 continue; 22996 /* skip over the current ire */ 22997 if (ire1 == ire) 22998 continue; 22999 /* skip over deleted ires */ 23000 if (ire1->ire_marks & 23001 IRE_MARK_CONDEMNED) 23002 continue; 23003 /* 23004 * non-loopback ire in our 23005 * group: use it for the next 23006 * pass in the loop 23007 */ 23008 if (ire1->ire_stq != NULL && 23009 ire1_ill->ill_group == 23010 ire_ill->ill_group) 23011 break; 23012 } 23013 } 23014 } else { 23015 while (ire1 != NULL && ire1->ire_addr == dst) { 23016 ire1_ill = ire1->ire_ipif->ipif_ill; 23017 /* 23018 * We can have two broadcast ires on the 23019 * same ill in different zones; here 23020 * we'll send a copy of the packet on 23021 * each ill and the fanout code will 23022 * call conn_wantpacket() to check that 23023 * the zone has the broadcast address 23024 * configured on the ill. If the two 23025 * ires are in the same group we only 23026 * send one copy up. 23027 */ 23028 if (ire1_ill != ire_ill && 23029 (ire1_ill->ill_group == NULL || 23030 ire_ill->ill_group == NULL || 23031 ire1_ill->ill_group != 23032 ire_ill->ill_group)) { 23033 break; 23034 } 23035 ire1 = ire1->ire_next; 23036 } 23037 } 23038 } 23039 ASSERT(multirt_send == B_FALSE); 23040 if (ire1 != NULL && ire1->ire_addr == dst) { 23041 if ((ire->ire_flags & RTF_MULTIRT) && 23042 (ire1->ire_flags & RTF_MULTIRT)) { 23043 /* 23044 * We are in the multirouting case. 23045 * The message must be sent at least 23046 * on both ires. These ires have been 23047 * inserted AFTER the standard ones 23048 * in ip_rt_add(). There are thus no 23049 * other ire entries for the destination 23050 * address in the rest of the bucket 23051 * that do not have the RTF_MULTIRT 23052 * flag. We don't process a copy 23053 * of the message here. This will be 23054 * done in the final sending loop. 23055 */ 23056 multirt_send = B_TRUE; 23057 } else { 23058 next_mp = ip_copymsg(first_mp); 23059 if (next_mp != NULL) 23060 IRE_REFHOLD(ire1); 23061 } 23062 } 23063 rw_exit(&ire->ire_bucket->irb_lock); 23064 } 23065 23066 if (stq) { 23067 /* 23068 * A non-NULL send-to queue means this packet is going 23069 * out of this machine. 23070 */ 23071 out_ill = (ill_t *)stq->q_ptr; 23072 23073 BUMP_MIB(out_ill->ill_ip_mib, ipIfStatsHCOutRequests); 23074 ttl_protocol = ((uint16_t *)ipha)[4]; 23075 /* 23076 * We accumulate the pseudo header checksum in cksum. 23077 * This is pretty hairy code, so watch close. One 23078 * thing to keep in mind is that UDP and TCP have 23079 * stored their respective datagram lengths in their 23080 * checksum fields. This lines things up real nice. 23081 */ 23082 cksum = (dst >> 16) + (dst & 0xFFFF) + 23083 (src >> 16) + (src & 0xFFFF); 23084 /* 23085 * We assume the udp checksum field contains the 23086 * length, so to compute the pseudo header checksum, 23087 * all we need is the protocol number and src/dst. 23088 */ 23089 /* Provide the checksums for UDP and TCP. */ 23090 if ((PROTO == IPPROTO_TCP) && 23091 (ip_hdr_included != IP_HDR_INCLUDED)) { 23092 /* hlen gets the number of uchar_ts in the IP header */ 23093 hlen = (V_HLEN & 0xF) << 2; 23094 up = IPH_TCPH_CHECKSUMP(ipha, hlen); 23095 IP_STAT(ipst, ip_out_sw_cksum); 23096 IP_STAT_UPDATE(ipst, ip_tcp_out_sw_cksum_bytes, 23097 LENGTH - hlen); 23098 *up = IP_CSUM(mp, hlen, cksum + IP_TCP_CSUM_COMP); 23099 } else if (PROTO == IPPROTO_SCTP && 23100 (ip_hdr_included != IP_HDR_INCLUDED)) { 23101 sctp_hdr_t *sctph; 23102 23103 hlen = (V_HLEN & 0xF) << 2; 23104 ASSERT(MBLKL(mp) >= (hlen + sizeof (*sctph))); 23105 sctph = (sctp_hdr_t *)(mp->b_rptr + hlen); 23106 sctph->sh_chksum = 0; 23107 #ifdef DEBUG 23108 if (!skip_sctp_cksum) 23109 #endif 23110 sctph->sh_chksum = sctp_cksum(mp, hlen); 23111 } else { 23112 queue_t *dev_q = stq->q_next; 23113 23114 if ((dev_q->q_next || dev_q->q_first) && 23115 !canput(dev_q)) { 23116 blocked: 23117 ipha->ipha_ident = ip_hdr_included; 23118 /* 23119 * If we don't have a conn to apply 23120 * backpressure, free the message. 23121 * In the ire_send path, we don't know 23122 * the position to requeue the packet. Rather 23123 * than reorder packets, we just drop this 23124 * packet. 23125 */ 23126 if (ipst->ips_ip_output_queue && 23127 connp != NULL && 23128 caller != IRE_SEND) { 23129 if (caller == IP_WSRV) { 23130 connp->conn_did_putbq = 1; 23131 (void) putbq(connp->conn_wq, 23132 first_mp); 23133 conn_drain_insert(connp); 23134 /* 23135 * This is the service thread, 23136 * and the queue is already 23137 * noenabled. The check for 23138 * canput and the putbq is not 23139 * atomic. So we need to check 23140 * again. 23141 */ 23142 if (canput(stq->q_next)) 23143 connp->conn_did_putbq 23144 = 0; 23145 IP_STAT(ipst, ip_conn_flputbq); 23146 } else { 23147 /* 23148 * We are not the service proc. 23149 * ip_wsrv will be scheduled or 23150 * is already running. 23151 */ 23152 (void) putq(connp->conn_wq, 23153 first_mp); 23154 } 23155 } else { 23156 out_ill = (ill_t *)stq->q_ptr; 23157 BUMP_MIB(out_ill->ill_ip_mib, 23158 ipIfStatsOutDiscards); 23159 freemsg(first_mp); 23160 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23161 "ip_wput_ire_end: q %p (%S)", 23162 q, "discard"); 23163 } 23164 ire_refrele(ire); 23165 if (next_mp) { 23166 ire_refrele(ire1); 23167 freemsg(next_mp); 23168 } 23169 if (conn_outgoing_ill != NULL) 23170 ill_refrele(conn_outgoing_ill); 23171 return; 23172 } 23173 if ((PROTO == IPPROTO_UDP) && 23174 (ip_hdr_included != IP_HDR_INCLUDED)) { 23175 /* 23176 * hlen gets the number of uchar_ts in the 23177 * IP header 23178 */ 23179 hlen = (V_HLEN & 0xF) << 2; 23180 up = IPH_UDPH_CHECKSUMP(ipha, hlen); 23181 max_frag = ire->ire_max_frag; 23182 if (*up != 0) { 23183 IP_CKSUM_XMIT(ire_ill, ire, mp, ipha, 23184 up, PROTO, hlen, LENGTH, max_frag, 23185 ipsec_len, cksum); 23186 /* Software checksum? */ 23187 if (DB_CKSUMFLAGS(mp) == 0) { 23188 IP_STAT(ipst, ip_out_sw_cksum); 23189 IP_STAT_UPDATE(ipst, 23190 ip_udp_out_sw_cksum_bytes, 23191 LENGTH - hlen); 23192 } 23193 } 23194 } 23195 } 23196 /* 23197 * Need to do this even when fragmenting. The local 23198 * loopback can be done without computing checksums 23199 * but forwarding out other interface must be done 23200 * after the IP checksum (and ULP checksums) have been 23201 * computed. 23202 * 23203 * NOTE : multicast_forward is set only if this packet 23204 * originated from ip_wput. For packets originating from 23205 * ip_wput_multicast, it is not set. 23206 */ 23207 if (CLASSD(ipha->ipha_dst) && multicast_forward) { 23208 multi_loopback: 23209 ip2dbg(("ip_wput: multicast, loop %d\n", 23210 conn_multicast_loop)); 23211 23212 /* Forget header checksum offload */ 23213 DB_CKSUMFLAGS(mp) &= ~HCK_IPV4_HDRCKSUM; 23214 23215 /* 23216 * Local loopback of multicasts? Check the 23217 * ill. 23218 * 23219 * Note that the loopback function will not come 23220 * in through ip_rput - it will only do the 23221 * client fanout thus we need to do an mforward 23222 * as well. The is different from the BSD 23223 * logic. 23224 */ 23225 if (ill != NULL) { 23226 ilm_t *ilm; 23227 23228 ILM_WALKER_HOLD(ill); 23229 ilm = ilm_lookup_ill(ill, ipha->ipha_dst, 23230 ALL_ZONES); 23231 ILM_WALKER_RELE(ill); 23232 if (ilm != NULL) { 23233 /* 23234 * Pass along the virtual output q. 23235 * ip_wput_local() will distribute the 23236 * packet to all the matching zones, 23237 * except the sending zone when 23238 * IP_MULTICAST_LOOP is false. 23239 */ 23240 ip_multicast_loopback(q, ill, first_mp, 23241 conn_multicast_loop ? 0 : 23242 IP_FF_NO_MCAST_LOOP, zoneid); 23243 } 23244 } 23245 if (ipha->ipha_ttl == 0) { 23246 /* 23247 * 0 => only to this host i.e. we are 23248 * done. We are also done if this was the 23249 * loopback interface since it is sufficient 23250 * to loopback one copy of a multicast packet. 23251 */ 23252 freemsg(first_mp); 23253 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23254 "ip_wput_ire_end: q %p (%S)", 23255 q, "loopback"); 23256 ire_refrele(ire); 23257 if (conn_outgoing_ill != NULL) 23258 ill_refrele(conn_outgoing_ill); 23259 return; 23260 } 23261 /* 23262 * ILLF_MULTICAST is checked in ip_newroute 23263 * i.e. we don't need to check it here since 23264 * all IRE_CACHEs come from ip_newroute. 23265 * For multicast traffic, SO_DONTROUTE is interpreted 23266 * to mean only send the packet out the interface 23267 * (optionally specified with IP_MULTICAST_IF) 23268 * and do not forward it out additional interfaces. 23269 * RSVP and the rsvp daemon is an example of a 23270 * protocol and user level process that 23271 * handles it's own routing. Hence, it uses the 23272 * SO_DONTROUTE option to accomplish this. 23273 */ 23274 23275 if (ipst->ips_ip_g_mrouter && !conn_dontroute && 23276 ill != NULL) { 23277 /* Unconditionally redo the checksum */ 23278 ipha->ipha_hdr_checksum = 0; 23279 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 23280 23281 /* 23282 * If this needs to go out secure, we need 23283 * to wait till we finish the IPSEC 23284 * processing. 23285 */ 23286 if (ipsec_len == 0 && 23287 ip_mforward(ill, ipha, mp)) { 23288 freemsg(first_mp); 23289 ip1dbg(("ip_wput: mforward failed\n")); 23290 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23291 "ip_wput_ire_end: q %p (%S)", 23292 q, "mforward failed"); 23293 ire_refrele(ire); 23294 if (conn_outgoing_ill != NULL) 23295 ill_refrele(conn_outgoing_ill); 23296 return; 23297 } 23298 } 23299 } 23300 max_frag = ire->ire_max_frag; 23301 cksum += ttl_protocol; 23302 if (max_frag >= (uint_t)(LENGTH + ipsec_len)) { 23303 /* No fragmentation required for this one. */ 23304 /* 23305 * Don't use frag_flag if packet is pre-built or source 23306 * routed or if multicast (since multicast packets do 23307 * not solicit ICMP "packet too big" messages). 23308 */ 23309 if ((ip_hdr_included != IP_HDR_INCLUDED) && 23310 (V_HLEN == IP_SIMPLE_HDR_VERSION || 23311 !ip_source_route_included(ipha)) && 23312 !CLASSD(ipha->ipha_dst)) 23313 ipha->ipha_fragment_offset_and_flags |= 23314 htons(ire->ire_frag_flag); 23315 23316 if (!(DB_CKSUMFLAGS(mp) & HCK_IPV4_HDRCKSUM)) { 23317 /* Complete the IP header checksum. */ 23318 cksum += ipha->ipha_ident; 23319 cksum += (v_hlen_tos_len >> 16)+ 23320 (v_hlen_tos_len & 0xFFFF); 23321 cksum += ipha->ipha_fragment_offset_and_flags; 23322 hlen = (V_HLEN & 0xF) - 23323 IP_SIMPLE_HDR_LENGTH_IN_WORDS; 23324 if (hlen) { 23325 checksumoptions: 23326 /* 23327 * Account for the IP Options in the IP 23328 * header checksum. 23329 */ 23330 up = (uint16_t *)(rptr+ 23331 IP_SIMPLE_HDR_LENGTH); 23332 do { 23333 cksum += up[0]; 23334 cksum += up[1]; 23335 up += 2; 23336 } while (--hlen); 23337 } 23338 cksum = ((cksum & 0xFFFF) + (cksum >> 16)); 23339 cksum = ~(cksum + (cksum >> 16)); 23340 ipha->ipha_hdr_checksum = (uint16_t)cksum; 23341 } 23342 if (ipsec_len != 0) { 23343 ipsec_out_process(q, first_mp, ire, ill_index); 23344 if (!next_mp) { 23345 ire_refrele(ire); 23346 if (conn_outgoing_ill != NULL) 23347 ill_refrele(conn_outgoing_ill); 23348 return; 23349 } 23350 goto next; 23351 } 23352 23353 /* 23354 * multirt_send has already been handled 23355 * for broadcast, but not yet for multicast 23356 * or IP options. 23357 */ 23358 if (next_mp == NULL) { 23359 if (ire->ire_flags & RTF_MULTIRT) { 23360 multirt_send = B_TRUE; 23361 } 23362 } 23363 23364 /* 23365 * In most cases, the emission loop below is 23366 * entered only once. Only in the case where 23367 * the ire holds the RTF_MULTIRT flag, do we loop 23368 * to process all RTF_MULTIRT ires in the bucket, 23369 * and send the packet through all crossed 23370 * RTF_MULTIRT routes. 23371 */ 23372 do { 23373 if (multirt_send) { 23374 irb_t *irb; 23375 23376 irb = ire->ire_bucket; 23377 ASSERT(irb != NULL); 23378 /* 23379 * We are in a multiple send case, 23380 * need to get the next IRE and make 23381 * a duplicate of the packet. 23382 */ 23383 IRB_REFHOLD(irb); 23384 for (ire1 = ire->ire_next; 23385 ire1 != NULL; 23386 ire1 = ire1->ire_next) { 23387 if (!(ire1->ire_flags & 23388 RTF_MULTIRT)) 23389 continue; 23390 if (ire1->ire_addr != 23391 ire->ire_addr) 23392 continue; 23393 if (ire1->ire_marks & 23394 (IRE_MARK_CONDEMNED| 23395 IRE_MARK_HIDDEN)) 23396 continue; 23397 23398 /* Got one */ 23399 IRE_REFHOLD(ire1); 23400 break; 23401 } 23402 IRB_REFRELE(irb); 23403 23404 if (ire1 != NULL) { 23405 next_mp = copyb(mp); 23406 if ((next_mp == NULL) || 23407 ((mp->b_cont != NULL) && 23408 ((next_mp->b_cont = 23409 dupmsg(mp->b_cont)) 23410 == NULL))) { 23411 freemsg(next_mp); 23412 next_mp = NULL; 23413 ire_refrele(ire1); 23414 ire1 = NULL; 23415 } 23416 } 23417 23418 /* 23419 * Last multiroute ire; don't loop 23420 * anymore. The emission is over 23421 * and next_mp is NULL. 23422 */ 23423 if (ire1 == NULL) { 23424 multirt_send = B_FALSE; 23425 } 23426 } 23427 23428 out_ill = ire->ire_ipif->ipif_ill; 23429 DTRACE_PROBE4(ip4__physical__out__start, 23430 ill_t *, NULL, 23431 ill_t *, out_ill, 23432 ipha_t *, ipha, mblk_t *, mp); 23433 FW_HOOKS(ipst->ips_ip4_physical_out_event, 23434 ipst->ips_ipv4firewall_physical_out, 23435 NULL, out_ill, ipha, mp, mp, ipst); 23436 DTRACE_PROBE1(ip4__physical__out__end, 23437 mblk_t *, mp); 23438 if (mp == NULL) 23439 goto release_ire_and_ill_2; 23440 23441 ASSERT(ipsec_len == 0); 23442 mp->b_prev = 23443 SET_BPREV_FLAG(IPP_LOCAL_OUT); 23444 DTRACE_PROBE2(ip__xmit__2, 23445 mblk_t *, mp, ire_t *, ire); 23446 pktxmit_state = ip_xmit_v4(mp, ire, 23447 NULL, B_TRUE); 23448 if ((pktxmit_state == SEND_FAILED) || 23449 (pktxmit_state == LLHDR_RESLV_FAILED)) { 23450 release_ire_and_ill_2: 23451 if (next_mp) { 23452 freemsg(next_mp); 23453 ire_refrele(ire1); 23454 } 23455 ire_refrele(ire); 23456 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23457 "ip_wput_ire_end: q %p (%S)", 23458 q, "discard MDATA"); 23459 if (conn_outgoing_ill != NULL) 23460 ill_refrele(conn_outgoing_ill); 23461 return; 23462 } 23463 23464 if (CLASSD(dst)) { 23465 BUMP_MIB(out_ill->ill_ip_mib, 23466 ipIfStatsHCOutMcastPkts); 23467 UPDATE_MIB(out_ill->ill_ip_mib, 23468 ipIfStatsHCOutMcastOctets, 23469 LENGTH); 23470 } else if (ire->ire_type == IRE_BROADCAST) { 23471 BUMP_MIB(out_ill->ill_ip_mib, 23472 ipIfStatsHCOutBcastPkts); 23473 } 23474 23475 if (multirt_send) { 23476 /* 23477 * We are in a multiple send case, 23478 * need to re-enter the sending loop 23479 * using the next ire. 23480 */ 23481 ire_refrele(ire); 23482 ire = ire1; 23483 stq = ire->ire_stq; 23484 mp = next_mp; 23485 next_mp = NULL; 23486 ipha = (ipha_t *)mp->b_rptr; 23487 ill_index = Q_TO_INDEX(stq); 23488 } 23489 } while (multirt_send); 23490 23491 if (!next_mp) { 23492 /* 23493 * Last copy going out (the ultra-common 23494 * case). Note that we intentionally replicate 23495 * the putnext rather than calling it before 23496 * the next_mp check in hopes of a little 23497 * tail-call action out of the compiler. 23498 */ 23499 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23500 "ip_wput_ire_end: q %p (%S)", 23501 q, "last copy out(1)"); 23502 ire_refrele(ire); 23503 if (conn_outgoing_ill != NULL) 23504 ill_refrele(conn_outgoing_ill); 23505 return; 23506 } 23507 /* More copies going out below. */ 23508 } else { 23509 int offset; 23510 fragmentit: 23511 offset = ntohs(ipha->ipha_fragment_offset_and_flags); 23512 /* 23513 * If this would generate a icmp_frag_needed message, 23514 * we need to handle it before we do the IPSEC 23515 * processing. Otherwise, we need to strip the IPSEC 23516 * headers before we send up the message to the ULPs 23517 * which becomes messy and difficult. 23518 */ 23519 if (ipsec_len != 0) { 23520 if ((max_frag < (unsigned int)(LENGTH + 23521 ipsec_len)) && (offset & IPH_DF)) { 23522 out_ill = (ill_t *)stq->q_ptr; 23523 BUMP_MIB(out_ill->ill_ip_mib, 23524 ipIfStatsOutFragFails); 23525 BUMP_MIB(out_ill->ill_ip_mib, 23526 ipIfStatsOutFragReqds); 23527 ipha->ipha_hdr_checksum = 0; 23528 ipha->ipha_hdr_checksum = 23529 (uint16_t)ip_csum_hdr(ipha); 23530 icmp_frag_needed(ire->ire_stq, first_mp, 23531 max_frag, zoneid, ipst); 23532 if (!next_mp) { 23533 ire_refrele(ire); 23534 if (conn_outgoing_ill != NULL) { 23535 ill_refrele( 23536 conn_outgoing_ill); 23537 } 23538 return; 23539 } 23540 } else { 23541 /* 23542 * This won't cause a icmp_frag_needed 23543 * message. to be generated. Send it on 23544 * the wire. Note that this could still 23545 * cause fragmentation and all we 23546 * do is the generation of the message 23547 * to the ULP if needed before IPSEC. 23548 */ 23549 if (!next_mp) { 23550 ipsec_out_process(q, first_mp, 23551 ire, ill_index); 23552 TRACE_2(TR_FAC_IP, 23553 TR_IP_WPUT_IRE_END, 23554 "ip_wput_ire_end: q %p " 23555 "(%S)", q, 23556 "last ipsec_out_process"); 23557 ire_refrele(ire); 23558 if (conn_outgoing_ill != NULL) { 23559 ill_refrele( 23560 conn_outgoing_ill); 23561 } 23562 return; 23563 } 23564 ipsec_out_process(q, first_mp, 23565 ire, ill_index); 23566 } 23567 } else { 23568 /* 23569 * Initiate IPPF processing. For 23570 * fragmentable packets we finish 23571 * all QOS packet processing before 23572 * calling: 23573 * ip_wput_ire_fragmentit->ip_wput_frag 23574 */ 23575 23576 if (IPP_ENABLED(IPP_LOCAL_OUT, ipst)) { 23577 ip_process(IPP_LOCAL_OUT, &mp, 23578 ill_index); 23579 if (mp == NULL) { 23580 out_ill = (ill_t *)stq->q_ptr; 23581 BUMP_MIB(out_ill->ill_ip_mib, 23582 ipIfStatsOutDiscards); 23583 if (next_mp != NULL) { 23584 freemsg(next_mp); 23585 ire_refrele(ire1); 23586 } 23587 ire_refrele(ire); 23588 TRACE_2(TR_FAC_IP, 23589 TR_IP_WPUT_IRE_END, 23590 "ip_wput_ire: q %p (%S)", 23591 q, "discard MDATA"); 23592 if (conn_outgoing_ill != NULL) { 23593 ill_refrele( 23594 conn_outgoing_ill); 23595 } 23596 return; 23597 } 23598 } 23599 if (!next_mp) { 23600 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23601 "ip_wput_ire_end: q %p (%S)", 23602 q, "last fragmentation"); 23603 ip_wput_ire_fragmentit(mp, ire, 23604 zoneid, ipst); 23605 ire_refrele(ire); 23606 if (conn_outgoing_ill != NULL) 23607 ill_refrele(conn_outgoing_ill); 23608 return; 23609 } 23610 ip_wput_ire_fragmentit(mp, ire, zoneid, ipst); 23611 } 23612 } 23613 } else { 23614 nullstq: 23615 /* A NULL stq means the destination address is local. */ 23616 UPDATE_OB_PKT_COUNT(ire); 23617 ire->ire_last_used_time = lbolt; 23618 ASSERT(ire->ire_ipif != NULL); 23619 if (!next_mp) { 23620 /* 23621 * Is there an "in" and "out" for traffic local 23622 * to a host (loopback)? The code in Solaris doesn't 23623 * explicitly draw a line in its code for in vs out, 23624 * so we've had to draw a line in the sand: ip_wput_ire 23625 * is considered to be the "output" side and 23626 * ip_wput_local to be the "input" side. 23627 */ 23628 out_ill = ire->ire_ipif->ipif_ill; 23629 23630 DTRACE_PROBE4(ip4__loopback__out__start, 23631 ill_t *, NULL, ill_t *, out_ill, 23632 ipha_t *, ipha, mblk_t *, first_mp); 23633 23634 FW_HOOKS(ipst->ips_ip4_loopback_out_event, 23635 ipst->ips_ipv4firewall_loopback_out, 23636 NULL, out_ill, ipha, first_mp, mp, ipst); 23637 23638 DTRACE_PROBE1(ip4__loopback__out_end, 23639 mblk_t *, first_mp); 23640 23641 TRACE_2(TR_FAC_IP, TR_IP_WPUT_IRE_END, 23642 "ip_wput_ire_end: q %p (%S)", 23643 q, "local address"); 23644 23645 if (first_mp != NULL) 23646 ip_wput_local(q, out_ill, ipha, 23647 first_mp, ire, 0, ire->ire_zoneid); 23648 ire_refrele(ire); 23649 if (conn_outgoing_ill != NULL) 23650 ill_refrele(conn_outgoing_ill); 23651 return; 23652 } 23653 23654 out_ill = ire->ire_ipif->ipif_ill; 23655 23656 DTRACE_PROBE4(ip4__loopback__out__start, 23657 ill_t *, NULL, ill_t *, out_ill, 23658 ipha_t *, ipha, mblk_t *, first_mp); 23659 23660 FW_HOOKS(ipst->ips_ip4_loopback_out_event, 23661 ipst->ips_ipv4firewall_loopback_out, 23662 NULL, out_ill, ipha, first_mp, mp, ipst); 23663 23664 DTRACE_PROBE1(ip4__loopback__out__end, mblk_t *, first_mp); 23665 23666 if (first_mp != NULL) 23667 ip_wput_local(q, out_ill, ipha, 23668 first_mp, ire, 0, ire->ire_zoneid); 23669 } 23670 next: 23671 /* 23672 * More copies going out to additional interfaces. 23673 * ire1 has already been held. We don't need the 23674 * "ire" anymore. 23675 */ 23676 ire_refrele(ire); 23677 ire = ire1; 23678 ASSERT(ire != NULL && ire->ire_refcnt >= 1 && next_mp != NULL); 23679 mp = next_mp; 23680 ASSERT(ire->ire_ipversion == IPV4_VERSION); 23681 ill = ire_to_ill(ire); 23682 first_mp = mp; 23683 if (ipsec_len != 0) { 23684 ASSERT(first_mp->b_datap->db_type == M_CTL); 23685 mp = mp->b_cont; 23686 } 23687 dst = ire->ire_addr; 23688 ipha = (ipha_t *)mp->b_rptr; 23689 /* 23690 * Restore src so that we will pick up ire->ire_src_addr if src was 0. 23691 * Restore ipha_ident "no checksum" flag. 23692 */ 23693 src = orig_src; 23694 ipha->ipha_ident = ip_hdr_included; 23695 goto another; 23696 23697 #undef rptr 23698 #undef Q_TO_INDEX 23699 } 23700 23701 /* 23702 * Routine to allocate a message that is used to notify the ULP about MDT. 23703 * The caller may provide a pointer to the link-layer MDT capabilities, 23704 * or NULL if MDT is to be disabled on the stream. 23705 */ 23706 mblk_t * 23707 ip_mdinfo_alloc(ill_mdt_capab_t *isrc) 23708 { 23709 mblk_t *mp; 23710 ip_mdt_info_t *mdti; 23711 ill_mdt_capab_t *idst; 23712 23713 if ((mp = allocb(sizeof (*mdti), BPRI_HI)) != NULL) { 23714 DB_TYPE(mp) = M_CTL; 23715 mp->b_wptr = mp->b_rptr + sizeof (*mdti); 23716 mdti = (ip_mdt_info_t *)mp->b_rptr; 23717 mdti->mdt_info_id = MDT_IOC_INFO_UPDATE; 23718 idst = &(mdti->mdt_capab); 23719 23720 /* 23721 * If the caller provides us with the capability, copy 23722 * it over into our notification message; otherwise 23723 * we zero out the capability portion. 23724 */ 23725 if (isrc != NULL) 23726 bcopy((caddr_t)isrc, (caddr_t)idst, sizeof (*idst)); 23727 else 23728 bzero((caddr_t)idst, sizeof (*idst)); 23729 } 23730 return (mp); 23731 } 23732 23733 /* 23734 * Routine which determines whether MDT can be enabled on the destination 23735 * IRE and IPC combination, and if so, allocates and returns the MDT 23736 * notification mblk that may be used by ULP. We also check if we need to 23737 * turn MDT back to 'on' when certain restrictions prohibiting us to allow 23738 * MDT usage in the past have been lifted. This gets called during IP 23739 * and ULP binding. 23740 */ 23741 mblk_t * 23742 ip_mdinfo_return(ire_t *dst_ire, conn_t *connp, char *ill_name, 23743 ill_mdt_capab_t *mdt_cap) 23744 { 23745 mblk_t *mp; 23746 boolean_t rc = B_FALSE; 23747 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 23748 23749 ASSERT(dst_ire != NULL); 23750 ASSERT(connp != NULL); 23751 ASSERT(mdt_cap != NULL); 23752 23753 /* 23754 * Currently, we only support simple TCP/{IPv4,IPv6} with 23755 * Multidata, which is handled in tcp_multisend(). This 23756 * is the reason why we do all these checks here, to ensure 23757 * that we don't enable Multidata for the cases which we 23758 * can't handle at the moment. 23759 */ 23760 do { 23761 /* Only do TCP at the moment */ 23762 if (connp->conn_ulp != IPPROTO_TCP) 23763 break; 23764 23765 /* 23766 * IPSEC outbound policy present? Note that we get here 23767 * after calling ipsec_conn_cache_policy() where the global 23768 * policy checking is performed. conn_latch will be 23769 * non-NULL as long as there's a policy defined, 23770 * i.e. conn_out_enforce_policy may be NULL in such case 23771 * when the connection is non-secure, and hence we check 23772 * further if the latch refers to an outbound policy. 23773 */ 23774 if (CONN_IPSEC_OUT_ENCAPSULATED(connp)) 23775 break; 23776 23777 /* CGTP (multiroute) is enabled? */ 23778 if (dst_ire->ire_flags & RTF_MULTIRT) 23779 break; 23780 23781 /* Outbound IPQoS enabled? */ 23782 if (IPP_ENABLED(IPP_LOCAL_OUT, ipst)) { 23783 /* 23784 * In this case, we disable MDT for this and all 23785 * future connections going over the interface. 23786 */ 23787 mdt_cap->ill_mdt_on = 0; 23788 break; 23789 } 23790 23791 /* socket option(s) present? */ 23792 if (!CONN_IS_LSO_MD_FASTPATH(connp)) 23793 break; 23794 23795 rc = B_TRUE; 23796 /* CONSTCOND */ 23797 } while (0); 23798 23799 /* Remember the result */ 23800 connp->conn_mdt_ok = rc; 23801 23802 if (!rc) 23803 return (NULL); 23804 else if (!mdt_cap->ill_mdt_on) { 23805 /* 23806 * If MDT has been previously turned off in the past, and we 23807 * currently can do MDT (due to IPQoS policy removal, etc.) 23808 * then enable it for this interface. 23809 */ 23810 mdt_cap->ill_mdt_on = 1; 23811 ip1dbg(("ip_mdinfo_return: reenabling MDT for " 23812 "interface %s\n", ill_name)); 23813 } 23814 23815 /* Allocate the MDT info mblk */ 23816 if ((mp = ip_mdinfo_alloc(mdt_cap)) == NULL) { 23817 ip0dbg(("ip_mdinfo_return: can't enable Multidata for " 23818 "conn %p on %s (ENOMEM)\n", (void *)connp, ill_name)); 23819 return (NULL); 23820 } 23821 return (mp); 23822 } 23823 23824 /* 23825 * Routine to allocate a message that is used to notify the ULP about LSO. 23826 * The caller may provide a pointer to the link-layer LSO capabilities, 23827 * or NULL if LSO is to be disabled on the stream. 23828 */ 23829 mblk_t * 23830 ip_lsoinfo_alloc(ill_lso_capab_t *isrc) 23831 { 23832 mblk_t *mp; 23833 ip_lso_info_t *lsoi; 23834 ill_lso_capab_t *idst; 23835 23836 if ((mp = allocb(sizeof (*lsoi), BPRI_HI)) != NULL) { 23837 DB_TYPE(mp) = M_CTL; 23838 mp->b_wptr = mp->b_rptr + sizeof (*lsoi); 23839 lsoi = (ip_lso_info_t *)mp->b_rptr; 23840 lsoi->lso_info_id = LSO_IOC_INFO_UPDATE; 23841 idst = &(lsoi->lso_capab); 23842 23843 /* 23844 * If the caller provides us with the capability, copy 23845 * it over into our notification message; otherwise 23846 * we zero out the capability portion. 23847 */ 23848 if (isrc != NULL) 23849 bcopy((caddr_t)isrc, (caddr_t)idst, sizeof (*idst)); 23850 else 23851 bzero((caddr_t)idst, sizeof (*idst)); 23852 } 23853 return (mp); 23854 } 23855 23856 /* 23857 * Routine which determines whether LSO can be enabled on the destination 23858 * IRE and IPC combination, and if so, allocates and returns the LSO 23859 * notification mblk that may be used by ULP. We also check if we need to 23860 * turn LSO back to 'on' when certain restrictions prohibiting us to allow 23861 * LSO usage in the past have been lifted. This gets called during IP 23862 * and ULP binding. 23863 */ 23864 mblk_t * 23865 ip_lsoinfo_return(ire_t *dst_ire, conn_t *connp, char *ill_name, 23866 ill_lso_capab_t *lso_cap) 23867 { 23868 mblk_t *mp; 23869 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 23870 23871 ASSERT(dst_ire != NULL); 23872 ASSERT(connp != NULL); 23873 ASSERT(lso_cap != NULL); 23874 23875 connp->conn_lso_ok = B_TRUE; 23876 23877 if ((connp->conn_ulp != IPPROTO_TCP) || 23878 CONN_IPSEC_OUT_ENCAPSULATED(connp) || 23879 (dst_ire->ire_flags & RTF_MULTIRT) || 23880 !CONN_IS_LSO_MD_FASTPATH(connp) || 23881 (IPP_ENABLED(IPP_LOCAL_OUT, ipst))) { 23882 connp->conn_lso_ok = B_FALSE; 23883 if (IPP_ENABLED(IPP_LOCAL_OUT, ipst)) { 23884 /* 23885 * Disable LSO for this and all future connections going 23886 * over the interface. 23887 */ 23888 lso_cap->ill_lso_on = 0; 23889 } 23890 } 23891 23892 if (!connp->conn_lso_ok) 23893 return (NULL); 23894 else if (!lso_cap->ill_lso_on) { 23895 /* 23896 * If LSO has been previously turned off in the past, and we 23897 * currently can do LSO (due to IPQoS policy removal, etc.) 23898 * then enable it for this interface. 23899 */ 23900 lso_cap->ill_lso_on = 1; 23901 ip1dbg(("ip_mdinfo_return: reenabling LSO for interface %s\n", 23902 ill_name)); 23903 } 23904 23905 /* Allocate the LSO info mblk */ 23906 if ((mp = ip_lsoinfo_alloc(lso_cap)) == NULL) 23907 ip0dbg(("ip_lsoinfo_return: can't enable LSO for " 23908 "conn %p on %s (ENOMEM)\n", (void *)connp, ill_name)); 23909 23910 return (mp); 23911 } 23912 23913 /* 23914 * Create destination address attribute, and fill it with the physical 23915 * destination address and SAP taken from the template DL_UNITDATA_REQ 23916 * message block. 23917 */ 23918 boolean_t 23919 ip_md_addr_attr(multidata_t *mmd, pdesc_t *pd, const mblk_t *dlmp) 23920 { 23921 dl_unitdata_req_t *dlurp; 23922 pattr_t *pa; 23923 pattrinfo_t pa_info; 23924 pattr_addr_t **das = (pattr_addr_t **)&pa_info.buf; 23925 uint_t das_len, das_off; 23926 23927 ASSERT(dlmp != NULL); 23928 23929 dlurp = (dl_unitdata_req_t *)dlmp->b_rptr; 23930 das_len = dlurp->dl_dest_addr_length; 23931 das_off = dlurp->dl_dest_addr_offset; 23932 23933 pa_info.type = PATTR_DSTADDRSAP; 23934 pa_info.len = sizeof (**das) + das_len - 1; 23935 23936 /* create and associate the attribute */ 23937 pa = mmd_addpattr(mmd, pd, &pa_info, B_TRUE, KM_NOSLEEP); 23938 if (pa != NULL) { 23939 ASSERT(*das != NULL); 23940 (*das)->addr_is_group = 0; 23941 (*das)->addr_len = (uint8_t)das_len; 23942 bcopy((caddr_t)dlurp + das_off, (*das)->addr, das_len); 23943 } 23944 23945 return (pa != NULL); 23946 } 23947 23948 /* 23949 * Create hardware checksum attribute and fill it with the values passed. 23950 */ 23951 boolean_t 23952 ip_md_hcksum_attr(multidata_t *mmd, pdesc_t *pd, uint32_t start_offset, 23953 uint32_t stuff_offset, uint32_t end_offset, uint32_t flags) 23954 { 23955 pattr_t *pa; 23956 pattrinfo_t pa_info; 23957 23958 ASSERT(mmd != NULL); 23959 23960 pa_info.type = PATTR_HCKSUM; 23961 pa_info.len = sizeof (pattr_hcksum_t); 23962 23963 /* create and associate the attribute */ 23964 pa = mmd_addpattr(mmd, pd, &pa_info, B_TRUE, KM_NOSLEEP); 23965 if (pa != NULL) { 23966 pattr_hcksum_t *hck = (pattr_hcksum_t *)pa_info.buf; 23967 23968 hck->hcksum_start_offset = start_offset; 23969 hck->hcksum_stuff_offset = stuff_offset; 23970 hck->hcksum_end_offset = end_offset; 23971 hck->hcksum_flags = flags; 23972 } 23973 return (pa != NULL); 23974 } 23975 23976 /* 23977 * Create zerocopy attribute and fill it with the specified flags 23978 */ 23979 boolean_t 23980 ip_md_zcopy_attr(multidata_t *mmd, pdesc_t *pd, uint_t flags) 23981 { 23982 pattr_t *pa; 23983 pattrinfo_t pa_info; 23984 23985 ASSERT(mmd != NULL); 23986 pa_info.type = PATTR_ZCOPY; 23987 pa_info.len = sizeof (pattr_zcopy_t); 23988 23989 /* create and associate the attribute */ 23990 pa = mmd_addpattr(mmd, pd, &pa_info, B_TRUE, KM_NOSLEEP); 23991 if (pa != NULL) { 23992 pattr_zcopy_t *zcopy = (pattr_zcopy_t *)pa_info.buf; 23993 23994 zcopy->zcopy_flags = flags; 23995 } 23996 return (pa != NULL); 23997 } 23998 23999 /* 24000 * Check if ip_wput_frag_mdt() and ip_wput_frag_mdt_v6() can handle a message 24001 * block chain. We could rewrite to handle arbitrary message block chains but 24002 * that would make the code complicated and slow. Right now there three 24003 * restrictions: 24004 * 24005 * 1. The first message block must contain the complete IP header and 24006 * at least 1 byte of payload data. 24007 * 2. At most MULTIDATA_MAX_PBUFS non-empty message blocks are allowed 24008 * so that we can use a single Multidata message. 24009 * 3. No frag must be distributed over two or more message blocks so 24010 * that we don't need more than two packet descriptors per frag. 24011 * 24012 * The above restrictions allow us to support userland applications (which 24013 * will send down a single message block) and NFS over UDP (which will 24014 * send down a chain of at most three message blocks). 24015 * 24016 * We also don't use MDT for payloads with less than or equal to 24017 * ip_wput_frag_mdt_min bytes because it would cause too much overhead. 24018 */ 24019 boolean_t 24020 ip_can_frag_mdt(mblk_t *mp, ssize_t hdr_len, ssize_t len) 24021 { 24022 int blocks; 24023 ssize_t total, missing, size; 24024 24025 ASSERT(mp != NULL); 24026 ASSERT(hdr_len > 0); 24027 24028 size = MBLKL(mp) - hdr_len; 24029 if (size <= 0) 24030 return (B_FALSE); 24031 24032 /* The first mblk contains the header and some payload. */ 24033 blocks = 1; 24034 total = size; 24035 size %= len; 24036 missing = (size == 0) ? 0 : (len - size); 24037 mp = mp->b_cont; 24038 24039 while (mp != NULL) { 24040 /* 24041 * Give up if we encounter a zero length message block. 24042 * In practice, this should rarely happen and therefore 24043 * not worth the trouble of freeing and re-linking the 24044 * mblk from the chain to handle such case. 24045 */ 24046 if ((size = MBLKL(mp)) == 0) 24047 return (B_FALSE); 24048 24049 /* Too many payload buffers for a single Multidata message? */ 24050 if (++blocks > MULTIDATA_MAX_PBUFS) 24051 return (B_FALSE); 24052 24053 total += size; 24054 /* Is a frag distributed over two or more message blocks? */ 24055 if (missing > size) 24056 return (B_FALSE); 24057 size -= missing; 24058 24059 size %= len; 24060 missing = (size == 0) ? 0 : (len - size); 24061 24062 mp = mp->b_cont; 24063 } 24064 24065 return (total > ip_wput_frag_mdt_min); 24066 } 24067 24068 /* 24069 * Outbound IPv4 fragmentation routine using MDT. 24070 */ 24071 static void 24072 ip_wput_frag_mdt(ire_t *ire, mblk_t *mp, ip_pkt_t pkt_type, int len, 24073 uint32_t frag_flag, int offset) 24074 { 24075 ipha_t *ipha_orig; 24076 int i1, ip_data_end; 24077 uint_t pkts, wroff, hdr_chunk_len, pbuf_idx; 24078 mblk_t *hdr_mp, *md_mp = NULL; 24079 unsigned char *hdr_ptr, *pld_ptr; 24080 multidata_t *mmd; 24081 ip_pdescinfo_t pdi; 24082 ill_t *ill; 24083 ip_stack_t *ipst = ire->ire_ipst; 24084 24085 ASSERT(DB_TYPE(mp) == M_DATA); 24086 ASSERT(MBLKL(mp) > sizeof (ipha_t)); 24087 24088 ill = ire_to_ill(ire); 24089 ASSERT(ill != NULL); 24090 24091 ipha_orig = (ipha_t *)mp->b_rptr; 24092 mp->b_rptr += sizeof (ipha_t); 24093 24094 /* Calculate how many packets we will send out */ 24095 i1 = (mp->b_cont == NULL) ? MBLKL(mp) : msgsize(mp); 24096 pkts = (i1 + len - 1) / len; 24097 ASSERT(pkts > 1); 24098 24099 /* Allocate a message block which will hold all the IP Headers. */ 24100 wroff = ipst->ips_ip_wroff_extra; 24101 hdr_chunk_len = wroff + IP_SIMPLE_HDR_LENGTH; 24102 24103 i1 = pkts * hdr_chunk_len; 24104 /* 24105 * Create the header buffer, Multidata and destination address 24106 * and SAP attribute that should be associated with it. 24107 */ 24108 if ((hdr_mp = allocb(i1, BPRI_HI)) == NULL || 24109 ((hdr_mp->b_wptr += i1), 24110 (mmd = mmd_alloc(hdr_mp, &md_mp, KM_NOSLEEP)) == NULL) || 24111 !ip_md_addr_attr(mmd, NULL, ire->ire_nce->nce_res_mp)) { 24112 freemsg(mp); 24113 if (md_mp == NULL) { 24114 freemsg(hdr_mp); 24115 } else { 24116 free_mmd: IP_STAT(ipst, ip_frag_mdt_discarded); 24117 freemsg(md_mp); 24118 } 24119 IP_STAT(ipst, ip_frag_mdt_allocfail); 24120 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutFragFails); 24121 return; 24122 } 24123 IP_STAT(ipst, ip_frag_mdt_allocd); 24124 24125 /* 24126 * Add a payload buffer to the Multidata; this operation must not 24127 * fail, or otherwise our logic in this routine is broken. There 24128 * is no memory allocation done by the routine, so any returned 24129 * failure simply tells us that we've done something wrong. 24130 * 24131 * A failure tells us that either we're adding the same payload 24132 * buffer more than once, or we're trying to add more buffers than 24133 * allowed. None of the above cases should happen, and we panic 24134 * because either there's horrible heap corruption, and/or 24135 * programming mistake. 24136 */ 24137 if ((pbuf_idx = mmd_addpldbuf(mmd, mp)) < 0) 24138 goto pbuf_panic; 24139 24140 hdr_ptr = hdr_mp->b_rptr; 24141 pld_ptr = mp->b_rptr; 24142 24143 /* Establish the ending byte offset, based on the starting offset. */ 24144 offset <<= 3; 24145 ip_data_end = offset + ntohs(ipha_orig->ipha_length) - 24146 IP_SIMPLE_HDR_LENGTH; 24147 24148 pdi.flags = PDESC_HBUF_REF | PDESC_PBUF_REF; 24149 24150 while (pld_ptr < mp->b_wptr) { 24151 ipha_t *ipha; 24152 uint16_t offset_and_flags; 24153 uint16_t ip_len; 24154 int error; 24155 24156 ASSERT((hdr_ptr + hdr_chunk_len) <= hdr_mp->b_wptr); 24157 ipha = (ipha_t *)(hdr_ptr + wroff); 24158 ASSERT(OK_32PTR(ipha)); 24159 *ipha = *ipha_orig; 24160 24161 if (ip_data_end - offset > len) { 24162 offset_and_flags = IPH_MF; 24163 } else { 24164 /* 24165 * Last frag. Set len to the length of this last piece. 24166 */ 24167 len = ip_data_end - offset; 24168 /* A frag of a frag might have IPH_MF non-zero */ 24169 offset_and_flags = 24170 ntohs(ipha->ipha_fragment_offset_and_flags) & 24171 IPH_MF; 24172 } 24173 offset_and_flags |= (uint16_t)(offset >> 3); 24174 offset_and_flags |= (uint16_t)frag_flag; 24175 /* Store the offset and flags in the IP header. */ 24176 ipha->ipha_fragment_offset_and_flags = htons(offset_and_flags); 24177 24178 /* Store the length in the IP header. */ 24179 ip_len = (uint16_t)(len + IP_SIMPLE_HDR_LENGTH); 24180 ipha->ipha_length = htons(ip_len); 24181 24182 /* 24183 * Set the IP header checksum. Note that mp is just 24184 * the header, so this is easy to pass to ip_csum. 24185 */ 24186 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 24187 24188 /* 24189 * Record offset and size of header and data of the next packet 24190 * in the multidata message. 24191 */ 24192 PDESC_HDR_ADD(&pdi, hdr_ptr, wroff, IP_SIMPLE_HDR_LENGTH, 0); 24193 PDESC_PLD_INIT(&pdi); 24194 i1 = MIN(mp->b_wptr - pld_ptr, len); 24195 ASSERT(i1 > 0); 24196 PDESC_PLD_SPAN_ADD(&pdi, pbuf_idx, pld_ptr, i1); 24197 if (i1 == len) { 24198 pld_ptr += len; 24199 } else { 24200 i1 = len - i1; 24201 mp = mp->b_cont; 24202 ASSERT(mp != NULL); 24203 ASSERT(MBLKL(mp) >= i1); 24204 /* 24205 * Attach the next payload message block to the 24206 * multidata message. 24207 */ 24208 if ((pbuf_idx = mmd_addpldbuf(mmd, mp)) < 0) 24209 goto pbuf_panic; 24210 PDESC_PLD_SPAN_ADD(&pdi, pbuf_idx, mp->b_rptr, i1); 24211 pld_ptr = mp->b_rptr + i1; 24212 } 24213 24214 if ((mmd_addpdesc(mmd, (pdescinfo_t *)&pdi, &error, 24215 KM_NOSLEEP)) == NULL) { 24216 /* 24217 * Any failure other than ENOMEM indicates that we 24218 * have passed in invalid pdesc info or parameters 24219 * to mmd_addpdesc, which must not happen. 24220 * 24221 * EINVAL is a result of failure on boundary checks 24222 * against the pdesc info contents. It should not 24223 * happen, and we panic because either there's 24224 * horrible heap corruption, and/or programming 24225 * mistake. 24226 */ 24227 if (error != ENOMEM) { 24228 cmn_err(CE_PANIC, "ip_wput_frag_mdt: " 24229 "pdesc logic error detected for " 24230 "mmd %p pinfo %p (%d)\n", 24231 (void *)mmd, (void *)&pdi, error); 24232 /* NOTREACHED */ 24233 } 24234 IP_STAT(ipst, ip_frag_mdt_addpdescfail); 24235 /* Free unattached payload message blocks as well */ 24236 md_mp->b_cont = mp->b_cont; 24237 goto free_mmd; 24238 } 24239 24240 /* Advance fragment offset. */ 24241 offset += len; 24242 24243 /* Advance to location for next header in the buffer. */ 24244 hdr_ptr += hdr_chunk_len; 24245 24246 /* Did we reach the next payload message block? */ 24247 if (pld_ptr == mp->b_wptr && mp->b_cont != NULL) { 24248 mp = mp->b_cont; 24249 /* 24250 * Attach the next message block with payload 24251 * data to the multidata message. 24252 */ 24253 if ((pbuf_idx = mmd_addpldbuf(mmd, mp)) < 0) 24254 goto pbuf_panic; 24255 pld_ptr = mp->b_rptr; 24256 } 24257 } 24258 24259 ASSERT(hdr_mp->b_wptr == hdr_ptr); 24260 ASSERT(mp->b_wptr == pld_ptr); 24261 24262 /* Update IP statistics */ 24263 IP_STAT_UPDATE(ipst, ip_frag_mdt_pkt_out, pkts); 24264 24265 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsOutFragCreates, pkts); 24266 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutFragOKs); 24267 24268 len = ntohs(ipha_orig->ipha_length) + (pkts - 1) * IP_SIMPLE_HDR_LENGTH; 24269 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCOutTransmits, pkts); 24270 UPDATE_MIB(ill->ill_ip_mib, ipIfStatsHCOutOctets, len); 24271 24272 if (pkt_type == OB_PKT) { 24273 ire->ire_ob_pkt_count += pkts; 24274 if (ire->ire_ipif != NULL) 24275 atomic_add_32(&ire->ire_ipif->ipif_ob_pkt_count, pkts); 24276 } else { 24277 /* 24278 * The type is IB_PKT in the forwarding path and in 24279 * the mobile IP case when the packet is being reverse- 24280 * tunneled to the home agent. 24281 */ 24282 ire->ire_ib_pkt_count += pkts; 24283 ASSERT(!IRE_IS_LOCAL(ire)); 24284 if (ire->ire_type & IRE_BROADCAST) { 24285 atomic_add_32(&ire->ire_ipif->ipif_ib_pkt_count, pkts); 24286 } else { 24287 UPDATE_MIB(ill->ill_ip_mib, 24288 ipIfStatsHCOutForwDatagrams, pkts); 24289 atomic_add_32(&ire->ire_ipif->ipif_fo_pkt_count, pkts); 24290 } 24291 } 24292 ire->ire_last_used_time = lbolt; 24293 /* Send it down */ 24294 putnext(ire->ire_stq, md_mp); 24295 return; 24296 24297 pbuf_panic: 24298 cmn_err(CE_PANIC, "ip_wput_frag_mdt: payload buffer logic " 24299 "error for mmd %p pbuf %p (%d)", (void *)mmd, (void *)mp, 24300 pbuf_idx); 24301 /* NOTREACHED */ 24302 } 24303 24304 /* 24305 * Outbound IP fragmentation routine. 24306 * 24307 * NOTE : This routine does not ire_refrele the ire that is passed in 24308 * as the argument. 24309 */ 24310 static void 24311 ip_wput_frag(ire_t *ire, mblk_t *mp_orig, ip_pkt_t pkt_type, uint32_t max_frag, 24312 uint32_t frag_flag, zoneid_t zoneid, ip_stack_t *ipst) 24313 { 24314 int i1; 24315 mblk_t *ll_hdr_mp; 24316 int ll_hdr_len; 24317 int hdr_len; 24318 mblk_t *hdr_mp; 24319 ipha_t *ipha; 24320 int ip_data_end; 24321 int len; 24322 mblk_t *mp = mp_orig, *mp1; 24323 int offset; 24324 queue_t *q; 24325 uint32_t v_hlen_tos_len; 24326 mblk_t *first_mp; 24327 boolean_t mctl_present; 24328 ill_t *ill; 24329 ill_t *out_ill; 24330 mblk_t *xmit_mp; 24331 mblk_t *carve_mp; 24332 ire_t *ire1 = NULL; 24333 ire_t *save_ire = NULL; 24334 mblk_t *next_mp = NULL; 24335 boolean_t last_frag = B_FALSE; 24336 boolean_t multirt_send = B_FALSE; 24337 ire_t *first_ire = NULL; 24338 irb_t *irb = NULL; 24339 mib2_ipIfStatsEntry_t *mibptr = NULL; 24340 24341 ill = ire_to_ill(ire); 24342 mibptr = (ill != NULL) ? ill->ill_ip_mib : &ipst->ips_ip_mib; 24343 24344 BUMP_MIB(mibptr, ipIfStatsOutFragReqds); 24345 24346 /* 24347 * IPSEC does not allow hw accelerated packets to be fragmented 24348 * This check is made in ip_wput_ipsec_out prior to coming here 24349 * via ip_wput_ire_fragmentit. 24350 * 24351 * If at this point we have an ire whose ARP request has not 24352 * been sent out, we call ip_xmit_v4->ire_arpresolve to trigger 24353 * sending of ARP query and change ire's state to ND_INCOMPLETE. 24354 * This packet and all fragmentable packets for this ire will 24355 * continue to get dropped while ire_nce->nce_state remains in 24356 * ND_INCOMPLETE. Post-ARP resolution, after ire's nce_state changes to 24357 * ND_REACHABLE, all subsquent large packets for this ire will 24358 * get fragemented and sent out by this function. 24359 */ 24360 if (ire->ire_nce && ire->ire_nce->nce_state != ND_REACHABLE) { 24361 /* If nce_state is ND_INITIAL, trigger ARP query */ 24362 (void) ip_xmit_v4(NULL, ire, NULL, B_FALSE); 24363 ip1dbg(("ip_wput_frag: mac address for ire is unresolved" 24364 " - dropping packet\n")); 24365 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24366 freemsg(mp); 24367 return; 24368 } 24369 24370 TRACE_0(TR_FAC_IP, TR_IP_WPUT_FRAG_START, 24371 "ip_wput_frag_start:"); 24372 24373 if (mp->b_datap->db_type == M_CTL) { 24374 first_mp = mp; 24375 mp_orig = mp = mp->b_cont; 24376 mctl_present = B_TRUE; 24377 } else { 24378 first_mp = mp; 24379 mctl_present = B_FALSE; 24380 } 24381 24382 ASSERT(MBLKL(mp) >= sizeof (ipha_t)); 24383 ipha = (ipha_t *)mp->b_rptr; 24384 24385 /* 24386 * If the Don't Fragment flag is on, generate an ICMP destination 24387 * unreachable, fragmentation needed. 24388 */ 24389 offset = ntohs(ipha->ipha_fragment_offset_and_flags); 24390 if (offset & IPH_DF) { 24391 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24392 /* 24393 * Need to compute hdr checksum if called from ip_wput_ire. 24394 * Note that ip_rput_forward verifies the checksum before 24395 * calling this routine so in that case this is a noop. 24396 */ 24397 ipha->ipha_hdr_checksum = 0; 24398 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 24399 icmp_frag_needed(ire->ire_stq, first_mp, max_frag, zoneid, 24400 ipst); 24401 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 24402 "ip_wput_frag_end:(%S)", 24403 "don't fragment"); 24404 return; 24405 } 24406 if (mctl_present) 24407 freeb(first_mp); 24408 /* 24409 * Establish the starting offset. May not be zero if we are fragging 24410 * a fragment that is being forwarded. 24411 */ 24412 offset = offset & IPH_OFFSET; 24413 24414 /* TODO why is this test needed? */ 24415 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 24416 if (((max_frag - LENGTH) & ~7) < 8) { 24417 /* TODO: notify ulp somehow */ 24418 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24419 freemsg(mp); 24420 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 24421 "ip_wput_frag_end:(%S)", 24422 "len < 8"); 24423 return; 24424 } 24425 24426 hdr_len = (V_HLEN & 0xF) << 2; 24427 24428 ipha->ipha_hdr_checksum = 0; 24429 24430 /* 24431 * Establish the number of bytes maximum per frag, after putting 24432 * in the header. 24433 */ 24434 len = (max_frag - hdr_len) & ~7; 24435 24436 /* Check if we can use MDT to send out the frags. */ 24437 ASSERT(!IRE_IS_LOCAL(ire)); 24438 if (hdr_len == IP_SIMPLE_HDR_LENGTH && 24439 ipst->ips_ip_multidata_outbound && 24440 !(ire->ire_flags & RTF_MULTIRT) && 24441 !IPP_ENABLED(IPP_LOCAL_OUT, ipst) && 24442 ill != NULL && ILL_MDT_CAPABLE(ill) && 24443 IP_CAN_FRAG_MDT(mp, IP_SIMPLE_HDR_LENGTH, len)) { 24444 ASSERT(ill->ill_mdt_capab != NULL); 24445 if (!ill->ill_mdt_capab->ill_mdt_on) { 24446 /* 24447 * If MDT has been previously turned off in the past, 24448 * and we currently can do MDT (due to IPQoS policy 24449 * removal, etc.) then enable it for this interface. 24450 */ 24451 ill->ill_mdt_capab->ill_mdt_on = 1; 24452 ip1dbg(("ip_wput_frag: enabled MDT for interface %s\n", 24453 ill->ill_name)); 24454 } 24455 ip_wput_frag_mdt(ire, mp, pkt_type, len, frag_flag, 24456 offset); 24457 return; 24458 } 24459 24460 /* Get a copy of the header for the trailing frags */ 24461 hdr_mp = ip_wput_frag_copyhdr((uchar_t *)ipha, hdr_len, offset, ipst); 24462 if (!hdr_mp) { 24463 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24464 freemsg(mp); 24465 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 24466 "ip_wput_frag_end:(%S)", 24467 "couldn't copy hdr"); 24468 return; 24469 } 24470 if (DB_CRED(mp) != NULL) 24471 mblk_setcred(hdr_mp, DB_CRED(mp)); 24472 24473 /* Store the starting offset, with the MoreFrags flag. */ 24474 i1 = offset | IPH_MF | frag_flag; 24475 ipha->ipha_fragment_offset_and_flags = htons((uint16_t)i1); 24476 24477 /* Establish the ending byte offset, based on the starting offset. */ 24478 offset <<= 3; 24479 ip_data_end = offset + ntohs(ipha->ipha_length) - hdr_len; 24480 24481 /* Store the length of the first fragment in the IP header. */ 24482 i1 = len + hdr_len; 24483 ASSERT(i1 <= IP_MAXPACKET); 24484 ipha->ipha_length = htons((uint16_t)i1); 24485 24486 /* 24487 * Compute the IP header checksum for the first frag. We have to 24488 * watch out that we stop at the end of the header. 24489 */ 24490 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 24491 24492 /* 24493 * Now carve off the first frag. Note that this will include the 24494 * original IP header. 24495 */ 24496 if (!(mp = ip_carve_mp(&mp_orig, i1))) { 24497 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24498 freeb(hdr_mp); 24499 freemsg(mp_orig); 24500 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 24501 "ip_wput_frag_end:(%S)", 24502 "couldn't carve first"); 24503 return; 24504 } 24505 24506 /* 24507 * Multirouting case. Each fragment is replicated 24508 * via all non-condemned RTF_MULTIRT routes 24509 * currently resolved. 24510 * We ensure that first_ire is the first RTF_MULTIRT 24511 * ire in the bucket. 24512 */ 24513 if (ire->ire_flags & RTF_MULTIRT) { 24514 irb = ire->ire_bucket; 24515 ASSERT(irb != NULL); 24516 24517 multirt_send = B_TRUE; 24518 24519 /* Make sure we do not omit any multiroute ire. */ 24520 IRB_REFHOLD(irb); 24521 for (first_ire = irb->irb_ire; 24522 first_ire != NULL; 24523 first_ire = first_ire->ire_next) { 24524 if ((first_ire->ire_flags & RTF_MULTIRT) && 24525 (first_ire->ire_addr == ire->ire_addr) && 24526 !(first_ire->ire_marks & 24527 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN))) 24528 break; 24529 } 24530 24531 if (first_ire != NULL) { 24532 if (first_ire != ire) { 24533 IRE_REFHOLD(first_ire); 24534 /* 24535 * Do not release the ire passed in 24536 * as the argument. 24537 */ 24538 ire = first_ire; 24539 } else { 24540 first_ire = NULL; 24541 } 24542 } 24543 IRB_REFRELE(irb); 24544 24545 /* 24546 * Save the first ire; we will need to restore it 24547 * for the trailing frags. 24548 * We REFHOLD save_ire, as each iterated ire will be 24549 * REFRELEd. 24550 */ 24551 save_ire = ire; 24552 IRE_REFHOLD(save_ire); 24553 } 24554 24555 /* 24556 * First fragment emission loop. 24557 * In most cases, the emission loop below is entered only 24558 * once. Only in the case where the ire holds the RTF_MULTIRT 24559 * flag, do we loop to process all RTF_MULTIRT ires in the 24560 * bucket, and send the fragment through all crossed 24561 * RTF_MULTIRT routes. 24562 */ 24563 do { 24564 if (ire->ire_flags & RTF_MULTIRT) { 24565 /* 24566 * We are in a multiple send case, need to get 24567 * the next ire and make a copy of the packet. 24568 * ire1 holds here the next ire to process in the 24569 * bucket. If multirouting is expected, 24570 * any non-RTF_MULTIRT ire that has the 24571 * right destination address is ignored. 24572 * 24573 * We have to take into account the MTU of 24574 * each walked ire. max_frag is set by the 24575 * the caller and generally refers to 24576 * the primary ire entry. Here we ensure that 24577 * no route with a lower MTU will be used, as 24578 * fragments are carved once for all ires, 24579 * then replicated. 24580 */ 24581 ASSERT(irb != NULL); 24582 IRB_REFHOLD(irb); 24583 for (ire1 = ire->ire_next; 24584 ire1 != NULL; 24585 ire1 = ire1->ire_next) { 24586 if ((ire1->ire_flags & RTF_MULTIRT) == 0) 24587 continue; 24588 if (ire1->ire_addr != ire->ire_addr) 24589 continue; 24590 if (ire1->ire_marks & 24591 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN)) 24592 continue; 24593 /* 24594 * Ensure we do not exceed the MTU 24595 * of the next route. 24596 */ 24597 if (ire1->ire_max_frag < max_frag) { 24598 ip_multirt_bad_mtu(ire1, max_frag); 24599 continue; 24600 } 24601 24602 /* Got one. */ 24603 IRE_REFHOLD(ire1); 24604 break; 24605 } 24606 IRB_REFRELE(irb); 24607 24608 if (ire1 != NULL) { 24609 next_mp = copyb(mp); 24610 if ((next_mp == NULL) || 24611 ((mp->b_cont != NULL) && 24612 ((next_mp->b_cont = 24613 dupmsg(mp->b_cont)) == NULL))) { 24614 freemsg(next_mp); 24615 next_mp = NULL; 24616 ire_refrele(ire1); 24617 ire1 = NULL; 24618 } 24619 } 24620 24621 /* Last multiroute ire; don't loop anymore. */ 24622 if (ire1 == NULL) { 24623 multirt_send = B_FALSE; 24624 } 24625 } 24626 24627 ll_hdr_len = 0; 24628 LOCK_IRE_FP_MP(ire); 24629 ll_hdr_mp = ire->ire_nce->nce_fp_mp; 24630 if (ll_hdr_mp != NULL) { 24631 ASSERT(ll_hdr_mp->b_datap->db_type == M_DATA); 24632 ll_hdr_len = ll_hdr_mp->b_wptr - ll_hdr_mp->b_rptr; 24633 } else { 24634 ll_hdr_mp = ire->ire_nce->nce_res_mp; 24635 } 24636 24637 /* If there is a transmit header, get a copy for this frag. */ 24638 /* 24639 * TODO: should check db_ref before calling ip_carve_mp since 24640 * it might give us a dup. 24641 */ 24642 if (!ll_hdr_mp) { 24643 /* No xmit header. */ 24644 xmit_mp = mp; 24645 24646 /* We have a link-layer header that can fit in our mblk. */ 24647 } else if (mp->b_datap->db_ref == 1 && 24648 ll_hdr_len != 0 && 24649 ll_hdr_len <= mp->b_rptr - mp->b_datap->db_base) { 24650 /* M_DATA fastpath */ 24651 mp->b_rptr -= ll_hdr_len; 24652 bcopy(ll_hdr_mp->b_rptr, mp->b_rptr, ll_hdr_len); 24653 xmit_mp = mp; 24654 24655 /* Corner case if copyb has failed */ 24656 } else if (!(xmit_mp = copyb(ll_hdr_mp))) { 24657 UNLOCK_IRE_FP_MP(ire); 24658 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 24659 freeb(hdr_mp); 24660 freemsg(mp); 24661 freemsg(mp_orig); 24662 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 24663 "ip_wput_frag_end:(%S)", 24664 "discard"); 24665 24666 if (multirt_send) { 24667 ASSERT(ire1); 24668 ASSERT(next_mp); 24669 24670 freemsg(next_mp); 24671 ire_refrele(ire1); 24672 } 24673 if (save_ire != NULL) 24674 IRE_REFRELE(save_ire); 24675 24676 if (first_ire != NULL) 24677 ire_refrele(first_ire); 24678 return; 24679 24680 /* 24681 * Case of res_mp OR the fastpath mp can't fit 24682 * in the mblk 24683 */ 24684 } else { 24685 xmit_mp->b_cont = mp; 24686 if (DB_CRED(mp) != NULL) 24687 mblk_setcred(xmit_mp, DB_CRED(mp)); 24688 /* 24689 * Get priority marking, if any. 24690 * We propagate the CoS marking from the 24691 * original packet that went to QoS processing 24692 * in ip_wput_ire to the newly carved mp. 24693 */ 24694 if (DB_TYPE(xmit_mp) == M_DATA) 24695 xmit_mp->b_band = mp->b_band; 24696 } 24697 UNLOCK_IRE_FP_MP(ire); 24698 24699 q = ire->ire_stq; 24700 out_ill = (ill_t *)q->q_ptr; 24701 24702 BUMP_MIB(out_ill->ill_ip_mib, ipIfStatsOutFragCreates); 24703 24704 DTRACE_PROBE4(ip4__physical__out__start, 24705 ill_t *, NULL, ill_t *, out_ill, 24706 ipha_t *, ipha, mblk_t *, xmit_mp); 24707 24708 FW_HOOKS(ipst->ips_ip4_physical_out_event, 24709 ipst->ips_ipv4firewall_physical_out, 24710 NULL, out_ill, ipha, xmit_mp, mp, ipst); 24711 24712 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, xmit_mp); 24713 24714 if (xmit_mp != NULL) { 24715 putnext(q, xmit_mp); 24716 24717 BUMP_MIB(out_ill->ill_ip_mib, ipIfStatsHCOutTransmits); 24718 UPDATE_MIB(out_ill->ill_ip_mib, 24719 ipIfStatsHCOutOctets, i1); 24720 24721 if (pkt_type != OB_PKT) { 24722 /* 24723 * Update the packet count and MIB stats 24724 * of trailing RTF_MULTIRT ires. 24725 */ 24726 UPDATE_OB_PKT_COUNT(ire); 24727 BUMP_MIB(out_ill->ill_ip_mib, 24728 ipIfStatsOutFragReqds); 24729 } 24730 } 24731 24732 if (multirt_send) { 24733 /* 24734 * We are in a multiple send case; look for 24735 * the next ire and re-enter the loop. 24736 */ 24737 ASSERT(ire1); 24738 ASSERT(next_mp); 24739 /* REFRELE the current ire before looping */ 24740 ire_refrele(ire); 24741 ire = ire1; 24742 ire1 = NULL; 24743 mp = next_mp; 24744 next_mp = NULL; 24745 } 24746 } while (multirt_send); 24747 24748 ASSERT(ire1 == NULL); 24749 24750 /* Restore the original ire; we need it for the trailing frags */ 24751 if (save_ire != NULL) { 24752 /* REFRELE the last iterated ire */ 24753 ire_refrele(ire); 24754 /* save_ire has been REFHOLDed */ 24755 ire = save_ire; 24756 save_ire = NULL; 24757 q = ire->ire_stq; 24758 } 24759 24760 if (pkt_type == OB_PKT) { 24761 UPDATE_OB_PKT_COUNT(ire); 24762 } else { 24763 out_ill = (ill_t *)q->q_ptr; 24764 BUMP_MIB(out_ill->ill_ip_mib, ipIfStatsHCOutForwDatagrams); 24765 UPDATE_IB_PKT_COUNT(ire); 24766 } 24767 24768 /* Advance the offset to the second frag starting point. */ 24769 offset += len; 24770 /* 24771 * Update hdr_len from the copied header - there might be less options 24772 * in the later fragments. 24773 */ 24774 hdr_len = IPH_HDR_LENGTH(hdr_mp->b_rptr); 24775 /* Loop until done. */ 24776 for (;;) { 24777 uint16_t offset_and_flags; 24778 uint16_t ip_len; 24779 24780 if (ip_data_end - offset > len) { 24781 /* 24782 * Carve off the appropriate amount from the original 24783 * datagram. 24784 */ 24785 if (!(carve_mp = ip_carve_mp(&mp_orig, len))) { 24786 mp = NULL; 24787 break; 24788 } 24789 /* 24790 * More frags after this one. Get another copy 24791 * of the header. 24792 */ 24793 if (carve_mp->b_datap->db_ref == 1 && 24794 hdr_mp->b_wptr - hdr_mp->b_rptr < 24795 carve_mp->b_rptr - carve_mp->b_datap->db_base) { 24796 /* Inline IP header */ 24797 carve_mp->b_rptr -= hdr_mp->b_wptr - 24798 hdr_mp->b_rptr; 24799 bcopy(hdr_mp->b_rptr, carve_mp->b_rptr, 24800 hdr_mp->b_wptr - hdr_mp->b_rptr); 24801 mp = carve_mp; 24802 } else { 24803 if (!(mp = copyb(hdr_mp))) { 24804 freemsg(carve_mp); 24805 break; 24806 } 24807 /* Get priority marking, if any. */ 24808 mp->b_band = carve_mp->b_band; 24809 mp->b_cont = carve_mp; 24810 } 24811 ipha = (ipha_t *)mp->b_rptr; 24812 offset_and_flags = IPH_MF; 24813 } else { 24814 /* 24815 * Last frag. Consume the header. Set len to 24816 * the length of this last piece. 24817 */ 24818 len = ip_data_end - offset; 24819 24820 /* 24821 * Carve off the appropriate amount from the original 24822 * datagram. 24823 */ 24824 if (!(carve_mp = ip_carve_mp(&mp_orig, len))) { 24825 mp = NULL; 24826 break; 24827 } 24828 if (carve_mp->b_datap->db_ref == 1 && 24829 hdr_mp->b_wptr - hdr_mp->b_rptr < 24830 carve_mp->b_rptr - carve_mp->b_datap->db_base) { 24831 /* Inline IP header */ 24832 carve_mp->b_rptr -= hdr_mp->b_wptr - 24833 hdr_mp->b_rptr; 24834 bcopy(hdr_mp->b_rptr, carve_mp->b_rptr, 24835 hdr_mp->b_wptr - hdr_mp->b_rptr); 24836 mp = carve_mp; 24837 freeb(hdr_mp); 24838 hdr_mp = mp; 24839 } else { 24840 mp = hdr_mp; 24841 /* Get priority marking, if any. */ 24842 mp->b_band = carve_mp->b_band; 24843 mp->b_cont = carve_mp; 24844 } 24845 ipha = (ipha_t *)mp->b_rptr; 24846 /* A frag of a frag might have IPH_MF non-zero */ 24847 offset_and_flags = 24848 ntohs(ipha->ipha_fragment_offset_and_flags) & 24849 IPH_MF; 24850 } 24851 offset_and_flags |= (uint16_t)(offset >> 3); 24852 offset_and_flags |= (uint16_t)frag_flag; 24853 /* Store the offset and flags in the IP header. */ 24854 ipha->ipha_fragment_offset_and_flags = htons(offset_and_flags); 24855 24856 /* Store the length in the IP header. */ 24857 ip_len = (uint16_t)(len + hdr_len); 24858 ipha->ipha_length = htons(ip_len); 24859 24860 /* 24861 * Set the IP header checksum. Note that mp is just 24862 * the header, so this is easy to pass to ip_csum. 24863 */ 24864 ipha->ipha_hdr_checksum = ip_csum_hdr(ipha); 24865 24866 /* Attach a transmit header, if any, and ship it. */ 24867 if (pkt_type == OB_PKT) { 24868 UPDATE_OB_PKT_COUNT(ire); 24869 } else { 24870 out_ill = (ill_t *)q->q_ptr; 24871 BUMP_MIB(out_ill->ill_ip_mib, 24872 ipIfStatsHCOutForwDatagrams); 24873 UPDATE_IB_PKT_COUNT(ire); 24874 } 24875 24876 if (ire->ire_flags & RTF_MULTIRT) { 24877 irb = ire->ire_bucket; 24878 ASSERT(irb != NULL); 24879 24880 multirt_send = B_TRUE; 24881 24882 /* 24883 * Save the original ire; we will need to restore it 24884 * for the tailing frags. 24885 */ 24886 save_ire = ire; 24887 IRE_REFHOLD(save_ire); 24888 } 24889 /* 24890 * Emission loop for this fragment, similar 24891 * to what is done for the first fragment. 24892 */ 24893 do { 24894 if (multirt_send) { 24895 /* 24896 * We are in a multiple send case, need to get 24897 * the next ire and make a copy of the packet. 24898 */ 24899 ASSERT(irb != NULL); 24900 IRB_REFHOLD(irb); 24901 for (ire1 = ire->ire_next; 24902 ire1 != NULL; 24903 ire1 = ire1->ire_next) { 24904 if (!(ire1->ire_flags & RTF_MULTIRT)) 24905 continue; 24906 if (ire1->ire_addr != ire->ire_addr) 24907 continue; 24908 if (ire1->ire_marks & 24909 (IRE_MARK_CONDEMNED| 24910 IRE_MARK_HIDDEN)) 24911 continue; 24912 /* 24913 * Ensure we do not exceed the MTU 24914 * of the next route. 24915 */ 24916 if (ire1->ire_max_frag < max_frag) { 24917 ip_multirt_bad_mtu(ire1, 24918 max_frag); 24919 continue; 24920 } 24921 24922 /* Got one. */ 24923 IRE_REFHOLD(ire1); 24924 break; 24925 } 24926 IRB_REFRELE(irb); 24927 24928 if (ire1 != NULL) { 24929 next_mp = copyb(mp); 24930 if ((next_mp == NULL) || 24931 ((mp->b_cont != NULL) && 24932 ((next_mp->b_cont = 24933 dupmsg(mp->b_cont)) == NULL))) { 24934 freemsg(next_mp); 24935 next_mp = NULL; 24936 ire_refrele(ire1); 24937 ire1 = NULL; 24938 } 24939 } 24940 24941 /* Last multiroute ire; don't loop anymore. */ 24942 if (ire1 == NULL) { 24943 multirt_send = B_FALSE; 24944 } 24945 } 24946 24947 /* Update transmit header */ 24948 ll_hdr_len = 0; 24949 LOCK_IRE_FP_MP(ire); 24950 ll_hdr_mp = ire->ire_nce->nce_fp_mp; 24951 if (ll_hdr_mp != NULL) { 24952 ASSERT(ll_hdr_mp->b_datap->db_type == M_DATA); 24953 ll_hdr_len = MBLKL(ll_hdr_mp); 24954 } else { 24955 ll_hdr_mp = ire->ire_nce->nce_res_mp; 24956 } 24957 24958 if (!ll_hdr_mp) { 24959 xmit_mp = mp; 24960 24961 /* 24962 * We have link-layer header that can fit in 24963 * our mblk. 24964 */ 24965 } else if (mp->b_datap->db_ref == 1 && 24966 ll_hdr_len != 0 && 24967 ll_hdr_len <= mp->b_rptr - mp->b_datap->db_base) { 24968 /* M_DATA fastpath */ 24969 mp->b_rptr -= ll_hdr_len; 24970 bcopy(ll_hdr_mp->b_rptr, mp->b_rptr, 24971 ll_hdr_len); 24972 xmit_mp = mp; 24973 24974 /* 24975 * Case of res_mp OR the fastpath mp can't fit 24976 * in the mblk 24977 */ 24978 } else if ((xmit_mp = copyb(ll_hdr_mp)) != NULL) { 24979 xmit_mp->b_cont = mp; 24980 if (DB_CRED(mp) != NULL) 24981 mblk_setcred(xmit_mp, DB_CRED(mp)); 24982 /* Get priority marking, if any. */ 24983 if (DB_TYPE(xmit_mp) == M_DATA) 24984 xmit_mp->b_band = mp->b_band; 24985 24986 /* Corner case if copyb failed */ 24987 } else { 24988 /* 24989 * Exit both the replication and 24990 * fragmentation loops. 24991 */ 24992 UNLOCK_IRE_FP_MP(ire); 24993 goto drop_pkt; 24994 } 24995 UNLOCK_IRE_FP_MP(ire); 24996 24997 mp1 = mp; 24998 out_ill = (ill_t *)q->q_ptr; 24999 25000 BUMP_MIB(out_ill->ill_ip_mib, ipIfStatsOutFragCreates); 25001 25002 DTRACE_PROBE4(ip4__physical__out__start, 25003 ill_t *, NULL, ill_t *, out_ill, 25004 ipha_t *, ipha, mblk_t *, xmit_mp); 25005 25006 FW_HOOKS(ipst->ips_ip4_physical_out_event, 25007 ipst->ips_ipv4firewall_physical_out, 25008 NULL, out_ill, ipha, xmit_mp, mp, ipst); 25009 25010 DTRACE_PROBE1(ip4__physical__out__end, 25011 mblk_t *, xmit_mp); 25012 25013 if (mp != mp1 && hdr_mp == mp1) 25014 hdr_mp = mp; 25015 if (mp != mp1 && mp_orig == mp1) 25016 mp_orig = mp; 25017 25018 if (xmit_mp != NULL) { 25019 putnext(q, xmit_mp); 25020 25021 BUMP_MIB(out_ill->ill_ip_mib, 25022 ipIfStatsHCOutTransmits); 25023 UPDATE_MIB(out_ill->ill_ip_mib, 25024 ipIfStatsHCOutOctets, ip_len); 25025 25026 if (pkt_type != OB_PKT) { 25027 /* 25028 * Update the packet count of trailing 25029 * RTF_MULTIRT ires. 25030 */ 25031 UPDATE_OB_PKT_COUNT(ire); 25032 } 25033 } 25034 25035 /* All done if we just consumed the hdr_mp. */ 25036 if (mp == hdr_mp) { 25037 last_frag = B_TRUE; 25038 BUMP_MIB(out_ill->ill_ip_mib, 25039 ipIfStatsOutFragOKs); 25040 } 25041 25042 if (multirt_send) { 25043 /* 25044 * We are in a multiple send case; look for 25045 * the next ire and re-enter the loop. 25046 */ 25047 ASSERT(ire1); 25048 ASSERT(next_mp); 25049 /* REFRELE the current ire before looping */ 25050 ire_refrele(ire); 25051 ire = ire1; 25052 ire1 = NULL; 25053 q = ire->ire_stq; 25054 mp = next_mp; 25055 next_mp = NULL; 25056 } 25057 } while (multirt_send); 25058 /* 25059 * Restore the original ire; we need it for the 25060 * trailing frags 25061 */ 25062 if (save_ire != NULL) { 25063 ASSERT(ire1 == NULL); 25064 /* REFRELE the last iterated ire */ 25065 ire_refrele(ire); 25066 /* save_ire has been REFHOLDed */ 25067 ire = save_ire; 25068 q = ire->ire_stq; 25069 save_ire = NULL; 25070 } 25071 25072 if (last_frag) { 25073 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 25074 "ip_wput_frag_end:(%S)", 25075 "consumed hdr_mp"); 25076 25077 if (first_ire != NULL) 25078 ire_refrele(first_ire); 25079 return; 25080 } 25081 /* Otherwise, advance and loop. */ 25082 offset += len; 25083 } 25084 25085 drop_pkt: 25086 /* Clean up following allocation failure. */ 25087 BUMP_MIB(mibptr, ipIfStatsOutFragFails); 25088 freemsg(mp); 25089 if (mp != hdr_mp) 25090 freeb(hdr_mp); 25091 if (mp != mp_orig) 25092 freemsg(mp_orig); 25093 25094 if (save_ire != NULL) 25095 IRE_REFRELE(save_ire); 25096 if (first_ire != NULL) 25097 ire_refrele(first_ire); 25098 25099 TRACE_1(TR_FAC_IP, TR_IP_WPUT_FRAG_END, 25100 "ip_wput_frag_end:(%S)", 25101 "end--alloc failure"); 25102 } 25103 25104 /* 25105 * Copy the header plus those options which have the copy bit set 25106 */ 25107 static mblk_t * 25108 ip_wput_frag_copyhdr(uchar_t *rptr, int hdr_len, int offset, ip_stack_t *ipst) 25109 { 25110 mblk_t *mp; 25111 uchar_t *up; 25112 25113 /* 25114 * Quick check if we need to look for options without the copy bit 25115 * set 25116 */ 25117 mp = allocb(ipst->ips_ip_wroff_extra + hdr_len, BPRI_HI); 25118 if (!mp) 25119 return (mp); 25120 mp->b_rptr += ipst->ips_ip_wroff_extra; 25121 if (hdr_len == IP_SIMPLE_HDR_LENGTH || offset != 0) { 25122 bcopy(rptr, mp->b_rptr, hdr_len); 25123 mp->b_wptr += hdr_len + ipst->ips_ip_wroff_extra; 25124 return (mp); 25125 } 25126 up = mp->b_rptr; 25127 bcopy(rptr, up, IP_SIMPLE_HDR_LENGTH); 25128 up += IP_SIMPLE_HDR_LENGTH; 25129 rptr += IP_SIMPLE_HDR_LENGTH; 25130 hdr_len -= IP_SIMPLE_HDR_LENGTH; 25131 while (hdr_len > 0) { 25132 uint32_t optval; 25133 uint32_t optlen; 25134 25135 optval = *rptr; 25136 if (optval == IPOPT_EOL) 25137 break; 25138 if (optval == IPOPT_NOP) 25139 optlen = 1; 25140 else 25141 optlen = rptr[1]; 25142 if (optval & IPOPT_COPY) { 25143 bcopy(rptr, up, optlen); 25144 up += optlen; 25145 } 25146 rptr += optlen; 25147 hdr_len -= optlen; 25148 } 25149 /* 25150 * Make sure that we drop an even number of words by filling 25151 * with EOL to the next word boundary. 25152 */ 25153 for (hdr_len = up - (mp->b_rptr + IP_SIMPLE_HDR_LENGTH); 25154 hdr_len & 0x3; hdr_len++) 25155 *up++ = IPOPT_EOL; 25156 mp->b_wptr = up; 25157 /* Update header length */ 25158 mp->b_rptr[0] = (uint8_t)((IP_VERSION << 4) | ((up - mp->b_rptr) >> 2)); 25159 return (mp); 25160 } 25161 25162 /* 25163 * Delivery to local recipients including fanout to multiple recipients. 25164 * Does not do checksumming of UDP/TCP. 25165 * Note: q should be the read side queue for either the ill or conn. 25166 * Note: rq should be the read side q for the lower (ill) stream. 25167 * We don't send packets to IPPF processing, thus the last argument 25168 * to all the fanout calls are B_FALSE. 25169 */ 25170 void 25171 ip_wput_local(queue_t *q, ill_t *ill, ipha_t *ipha, mblk_t *mp, ire_t *ire, 25172 int fanout_flags, zoneid_t zoneid) 25173 { 25174 uint32_t protocol; 25175 mblk_t *first_mp; 25176 boolean_t mctl_present; 25177 int ire_type; 25178 #define rptr ((uchar_t *)ipha) 25179 ip_stack_t *ipst = ill->ill_ipst; 25180 25181 TRACE_1(TR_FAC_IP, TR_IP_WPUT_LOCAL_START, 25182 "ip_wput_local_start: q %p", q); 25183 25184 if (ire != NULL) { 25185 ire_type = ire->ire_type; 25186 } else { 25187 /* 25188 * Only ip_multicast_loopback() calls us with a NULL ire. If the 25189 * packet is not multicast, we can't tell the ire type. 25190 */ 25191 ASSERT(CLASSD(ipha->ipha_dst)); 25192 ire_type = IRE_BROADCAST; 25193 } 25194 25195 first_mp = mp; 25196 if (first_mp->b_datap->db_type == M_CTL) { 25197 ipsec_out_t *io = (ipsec_out_t *)first_mp->b_rptr; 25198 if (!io->ipsec_out_secure) { 25199 /* 25200 * This ipsec_out_t was allocated in ip_wput 25201 * for multicast packets to store the ill_index. 25202 * As this is being delivered locally, we don't 25203 * need this anymore. 25204 */ 25205 mp = first_mp->b_cont; 25206 freeb(first_mp); 25207 first_mp = mp; 25208 mctl_present = B_FALSE; 25209 } else { 25210 /* 25211 * Convert IPSEC_OUT to IPSEC_IN, preserving all 25212 * security properties for the looped-back packet. 25213 */ 25214 mctl_present = B_TRUE; 25215 mp = first_mp->b_cont; 25216 ASSERT(mp != NULL); 25217 ipsec_out_to_in(first_mp); 25218 } 25219 } else { 25220 mctl_present = B_FALSE; 25221 } 25222 25223 DTRACE_PROBE4(ip4__loopback__in__start, 25224 ill_t *, ill, ill_t *, NULL, 25225 ipha_t *, ipha, mblk_t *, first_mp); 25226 25227 FW_HOOKS(ipst->ips_ip4_loopback_in_event, 25228 ipst->ips_ipv4firewall_loopback_in, 25229 ill, NULL, ipha, first_mp, mp, ipst); 25230 25231 DTRACE_PROBE1(ip4__loopback__in__end, mblk_t *, first_mp); 25232 25233 if (first_mp == NULL) 25234 return; 25235 25236 ipst->ips_loopback_packets++; 25237 25238 ip2dbg(("ip_wput_local: from 0x%x to 0x%x in zone %d\n", 25239 ntohl(ipha->ipha_src), ntohl(ipha->ipha_dst), zoneid)); 25240 if (!IS_SIMPLE_IPH(ipha)) { 25241 ip_wput_local_options(ipha, ipst); 25242 } 25243 25244 protocol = ipha->ipha_protocol; 25245 switch (protocol) { 25246 case IPPROTO_ICMP: { 25247 ire_t *ire_zone; 25248 ilm_t *ilm; 25249 mblk_t *mp1; 25250 zoneid_t last_zoneid; 25251 25252 if (CLASSD(ipha->ipha_dst) && 25253 !(ill->ill_phyint->phyint_flags & PHYI_LOOPBACK)) { 25254 ASSERT(ire_type == IRE_BROADCAST); 25255 /* 25256 * In the multicast case, applications may have joined 25257 * the group from different zones, so we need to deliver 25258 * the packet to each of them. Loop through the 25259 * multicast memberships structures (ilm) on the receive 25260 * ill and send a copy of the packet up each matching 25261 * one. However, we don't do this for multicasts sent on 25262 * the loopback interface (PHYI_LOOPBACK flag set) as 25263 * they must stay in the sender's zone. 25264 * 25265 * ilm_add_v6() ensures that ilms in the same zone are 25266 * contiguous in the ill_ilm list. We use this property 25267 * to avoid sending duplicates needed when two 25268 * applications in the same zone join the same group on 25269 * different logical interfaces: we ignore the ilm if 25270 * it's zoneid is the same as the last matching one. 25271 * In addition, the sending of the packet for 25272 * ire_zoneid is delayed until all of the other ilms 25273 * have been exhausted. 25274 */ 25275 last_zoneid = -1; 25276 ILM_WALKER_HOLD(ill); 25277 for (ilm = ill->ill_ilm; ilm != NULL; 25278 ilm = ilm->ilm_next) { 25279 if ((ilm->ilm_flags & ILM_DELETED) || 25280 ipha->ipha_dst != ilm->ilm_addr || 25281 ilm->ilm_zoneid == last_zoneid || 25282 ilm->ilm_zoneid == zoneid || 25283 !(ilm->ilm_ipif->ipif_flags & IPIF_UP)) 25284 continue; 25285 mp1 = ip_copymsg(first_mp); 25286 if (mp1 == NULL) 25287 continue; 25288 icmp_inbound(q, mp1, B_TRUE, ill, 0, 0, 25289 mctl_present, B_FALSE, ill, 25290 ilm->ilm_zoneid); 25291 last_zoneid = ilm->ilm_zoneid; 25292 } 25293 ILM_WALKER_RELE(ill); 25294 /* 25295 * Loopback case: the sending endpoint has 25296 * IP_MULTICAST_LOOP disabled, therefore we don't 25297 * dispatch the multicast packet to the sending zone. 25298 */ 25299 if (fanout_flags & IP_FF_NO_MCAST_LOOP) { 25300 freemsg(first_mp); 25301 return; 25302 } 25303 } else if (ire_type == IRE_BROADCAST) { 25304 /* 25305 * In the broadcast case, there may be many zones 25306 * which need a copy of the packet delivered to them. 25307 * There is one IRE_BROADCAST per broadcast address 25308 * and per zone; we walk those using a helper function. 25309 * In addition, the sending of the packet for zoneid is 25310 * delayed until all of the other ires have been 25311 * processed. 25312 */ 25313 IRB_REFHOLD(ire->ire_bucket); 25314 ire_zone = NULL; 25315 while ((ire_zone = ire_get_next_bcast_ire(ire_zone, 25316 ire)) != NULL) { 25317 mp1 = ip_copymsg(first_mp); 25318 if (mp1 == NULL) 25319 continue; 25320 25321 UPDATE_IB_PKT_COUNT(ire_zone); 25322 ire_zone->ire_last_used_time = lbolt; 25323 icmp_inbound(q, mp1, B_TRUE, ill, 0, 0, 25324 mctl_present, B_FALSE, ill, 25325 ire_zone->ire_zoneid); 25326 } 25327 IRB_REFRELE(ire->ire_bucket); 25328 } 25329 icmp_inbound(q, first_mp, (ire_type == IRE_BROADCAST), ill, 0, 25330 0, mctl_present, B_FALSE, ill, zoneid); 25331 TRACE_2(TR_FAC_IP, TR_IP_WPUT_LOCAL_END, 25332 "ip_wput_local_end: q %p (%S)", 25333 q, "icmp"); 25334 return; 25335 } 25336 case IPPROTO_IGMP: 25337 if ((mp = igmp_input(q, mp, ill)) == NULL) { 25338 /* Bad packet - discarded by igmp_input */ 25339 TRACE_2(TR_FAC_IP, TR_IP_WPUT_LOCAL_END, 25340 "ip_wput_local_end: q %p (%S)", 25341 q, "igmp_input--bad packet"); 25342 if (mctl_present) 25343 freeb(first_mp); 25344 return; 25345 } 25346 /* 25347 * igmp_input() may have returned the pulled up message. 25348 * So first_mp and ipha need to be reinitialized. 25349 */ 25350 ipha = (ipha_t *)mp->b_rptr; 25351 if (mctl_present) 25352 first_mp->b_cont = mp; 25353 else 25354 first_mp = mp; 25355 /* deliver to local raw users */ 25356 break; 25357 case IPPROTO_ENCAP: 25358 /* 25359 * This case is covered by either ip_fanout_proto, or by 25360 * the above security processing for self-tunneled packets. 25361 */ 25362 break; 25363 case IPPROTO_UDP: { 25364 uint16_t *up; 25365 uint32_t ports; 25366 25367 up = (uint16_t *)(rptr + IPH_HDR_LENGTH(ipha) + 25368 UDP_PORTS_OFFSET); 25369 /* Force a 'valid' checksum. */ 25370 up[3] = 0; 25371 25372 ports = *(uint32_t *)up; 25373 ip_fanout_udp(q, first_mp, ill, ipha, ports, 25374 (ire_type == IRE_BROADCAST), 25375 fanout_flags | IP_FF_SEND_ICMP | IP_FF_HDR_COMPLETE | 25376 IP_FF_SEND_SLLA | IP_FF_IPINFO, mctl_present, B_FALSE, 25377 ill, zoneid); 25378 TRACE_2(TR_FAC_IP, TR_IP_WPUT_LOCAL_END, 25379 "ip_wput_local_end: q %p (%S)", q, "ip_fanout_udp"); 25380 return; 25381 } 25382 case IPPROTO_TCP: { 25383 25384 /* 25385 * For TCP, discard broadcast packets. 25386 */ 25387 if ((ushort_t)ire_type == IRE_BROADCAST) { 25388 freemsg(first_mp); 25389 BUMP_MIB(ill->ill_ip_mib, ipIfStatsInDiscards); 25390 ip2dbg(("ip_wput_local: discard broadcast\n")); 25391 return; 25392 } 25393 25394 if (mp->b_datap->db_type == M_DATA) { 25395 /* 25396 * M_DATA mblk, so init mblk (chain) for no struio(). 25397 */ 25398 mblk_t *mp1 = mp; 25399 25400 do 25401 mp1->b_datap->db_struioflag = 0; 25402 while ((mp1 = mp1->b_cont) != NULL); 25403 } 25404 ASSERT((rptr + IPH_HDR_LENGTH(ipha) + TCP_PORTS_OFFSET + 4) 25405 <= mp->b_wptr); 25406 ip_fanout_tcp(q, first_mp, ill, ipha, 25407 fanout_flags | IP_FF_SEND_ICMP | IP_FF_HDR_COMPLETE | 25408 IP_FF_SYN_ADDIRE | IP_FF_IPINFO, 25409 mctl_present, B_FALSE, zoneid); 25410 TRACE_2(TR_FAC_IP, TR_IP_WPUT_LOCAL_END, 25411 "ip_wput_local_end: q %p (%S)", q, "ip_fanout_tcp"); 25412 return; 25413 } 25414 case IPPROTO_SCTP: 25415 { 25416 uint32_t ports; 25417 25418 bcopy(rptr + IPH_HDR_LENGTH(ipha), &ports, sizeof (ports)); 25419 ip_fanout_sctp(first_mp, ill, ipha, ports, 25420 fanout_flags | IP_FF_SEND_ICMP | IP_FF_HDR_COMPLETE | 25421 IP_FF_IPINFO, mctl_present, B_FALSE, zoneid); 25422 return; 25423 } 25424 25425 default: 25426 break; 25427 } 25428 /* 25429 * Find a client for some other protocol. We give 25430 * copies to multiple clients, if more than one is 25431 * bound. 25432 */ 25433 ip_fanout_proto(q, first_mp, ill, ipha, 25434 fanout_flags | IP_FF_SEND_ICMP | IP_FF_HDR_COMPLETE | IP_FF_RAWIP, 25435 mctl_present, B_FALSE, ill, zoneid); 25436 TRACE_2(TR_FAC_IP, TR_IP_WPUT_LOCAL_END, 25437 "ip_wput_local_end: q %p (%S)", q, "ip_fanout_proto"); 25438 #undef rptr 25439 } 25440 25441 /* 25442 * Update any source route, record route, or timestamp options. 25443 * Check that we are at end of strict source route. 25444 * The options have been sanity checked by ip_wput_options(). 25445 */ 25446 static void 25447 ip_wput_local_options(ipha_t *ipha, ip_stack_t *ipst) 25448 { 25449 ipoptp_t opts; 25450 uchar_t *opt; 25451 uint8_t optval; 25452 uint8_t optlen; 25453 ipaddr_t dst; 25454 uint32_t ts; 25455 ire_t *ire; 25456 timestruc_t now; 25457 25458 ip2dbg(("ip_wput_local_options\n")); 25459 for (optval = ipoptp_first(&opts, ipha); 25460 optval != IPOPT_EOL; 25461 optval = ipoptp_next(&opts)) { 25462 opt = opts.ipoptp_cur; 25463 optlen = opts.ipoptp_len; 25464 ASSERT((opts.ipoptp_flags & IPOPTP_ERROR) == 0); 25465 switch (optval) { 25466 uint32_t off; 25467 case IPOPT_SSRR: 25468 case IPOPT_LSRR: 25469 off = opt[IPOPT_OFFSET]; 25470 off--; 25471 if (optlen < IP_ADDR_LEN || 25472 off > optlen - IP_ADDR_LEN) { 25473 /* End of source route */ 25474 break; 25475 } 25476 /* 25477 * This will only happen if two consecutive entries 25478 * in the source route contains our address or if 25479 * it is a packet with a loose source route which 25480 * reaches us before consuming the whole source route 25481 */ 25482 ip1dbg(("ip_wput_local_options: not end of SR\n")); 25483 if (optval == IPOPT_SSRR) { 25484 return; 25485 } 25486 /* 25487 * Hack: instead of dropping the packet truncate the 25488 * source route to what has been used by filling the 25489 * rest with IPOPT_NOP. 25490 */ 25491 opt[IPOPT_OLEN] = (uint8_t)off; 25492 while (off < optlen) { 25493 opt[off++] = IPOPT_NOP; 25494 } 25495 break; 25496 case IPOPT_RR: 25497 off = opt[IPOPT_OFFSET]; 25498 off--; 25499 if (optlen < IP_ADDR_LEN || 25500 off > optlen - IP_ADDR_LEN) { 25501 /* No more room - ignore */ 25502 ip1dbg(( 25503 "ip_wput_forward_options: end of RR\n")); 25504 break; 25505 } 25506 dst = htonl(INADDR_LOOPBACK); 25507 bcopy(&dst, (char *)opt + off, IP_ADDR_LEN); 25508 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 25509 break; 25510 case IPOPT_TS: 25511 /* Insert timestamp if there is romm */ 25512 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 25513 case IPOPT_TS_TSONLY: 25514 off = IPOPT_TS_TIMELEN; 25515 break; 25516 case IPOPT_TS_PRESPEC: 25517 case IPOPT_TS_PRESPEC_RFC791: 25518 /* Verify that the address matched */ 25519 off = opt[IPOPT_OFFSET] - 1; 25520 bcopy((char *)opt + off, &dst, IP_ADDR_LEN); 25521 ire = ire_ctable_lookup(dst, 0, IRE_LOCAL, 25522 NULL, ALL_ZONES, NULL, MATCH_IRE_TYPE, 25523 ipst); 25524 if (ire == NULL) { 25525 /* Not for us */ 25526 break; 25527 } 25528 ire_refrele(ire); 25529 /* FALLTHRU */ 25530 case IPOPT_TS_TSANDADDR: 25531 off = IP_ADDR_LEN + IPOPT_TS_TIMELEN; 25532 break; 25533 default: 25534 /* 25535 * ip_*put_options should have already 25536 * dropped this packet. 25537 */ 25538 cmn_err(CE_PANIC, "ip_wput_local_options: " 25539 "unknown IT - bug in ip_wput_options?\n"); 25540 return; /* Keep "lint" happy */ 25541 } 25542 if (opt[IPOPT_OFFSET] - 1 + off > optlen) { 25543 /* Increase overflow counter */ 25544 off = (opt[IPOPT_POS_OV_FLG] >> 4) + 1; 25545 opt[IPOPT_POS_OV_FLG] = (uint8_t) 25546 (opt[IPOPT_POS_OV_FLG] & 0x0F) | 25547 (off << 4); 25548 break; 25549 } 25550 off = opt[IPOPT_OFFSET] - 1; 25551 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 25552 case IPOPT_TS_PRESPEC: 25553 case IPOPT_TS_PRESPEC_RFC791: 25554 case IPOPT_TS_TSANDADDR: 25555 dst = htonl(INADDR_LOOPBACK); 25556 bcopy(&dst, (char *)opt + off, IP_ADDR_LEN); 25557 opt[IPOPT_OFFSET] += IP_ADDR_LEN; 25558 /* FALLTHRU */ 25559 case IPOPT_TS_TSONLY: 25560 off = opt[IPOPT_OFFSET] - 1; 25561 /* Compute # of milliseconds since midnight */ 25562 gethrestime(&now); 25563 ts = (now.tv_sec % (24 * 60 * 60)) * 1000 + 25564 now.tv_nsec / (NANOSEC / MILLISEC); 25565 bcopy(&ts, (char *)opt + off, IPOPT_TS_TIMELEN); 25566 opt[IPOPT_OFFSET] += IPOPT_TS_TIMELEN; 25567 break; 25568 } 25569 break; 25570 } 25571 } 25572 } 25573 25574 /* 25575 * Send out a multicast packet on interface ipif. 25576 * The sender does not have an conn. 25577 * Caller verifies that this isn't a PHYI_LOOPBACK. 25578 */ 25579 void 25580 ip_wput_multicast(queue_t *q, mblk_t *mp, ipif_t *ipif, zoneid_t zoneid) 25581 { 25582 ipha_t *ipha; 25583 ire_t *ire; 25584 ipaddr_t dst; 25585 mblk_t *first_mp; 25586 ip_stack_t *ipst = ipif->ipif_ill->ill_ipst; 25587 25588 /* igmp_sendpkt always allocates a ipsec_out_t */ 25589 ASSERT(mp->b_datap->db_type == M_CTL); 25590 ASSERT(!ipif->ipif_isv6); 25591 ASSERT(!(ipif->ipif_ill->ill_phyint->phyint_flags & PHYI_LOOPBACK)); 25592 25593 first_mp = mp; 25594 mp = first_mp->b_cont; 25595 ASSERT(mp->b_datap->db_type == M_DATA); 25596 ipha = (ipha_t *)mp->b_rptr; 25597 25598 /* 25599 * Find an IRE which matches the destination and the outgoing 25600 * queue (i.e. the outgoing interface.) 25601 */ 25602 if (ipif->ipif_flags & IPIF_POINTOPOINT) 25603 dst = ipif->ipif_pp_dst_addr; 25604 else 25605 dst = ipha->ipha_dst; 25606 /* 25607 * The source address has already been initialized by the 25608 * caller and hence matching on ILL (MATCH_IRE_ILL) would 25609 * be sufficient rather than MATCH_IRE_IPIF. 25610 * 25611 * This function is used for sending IGMP packets. We need 25612 * to make sure that we send the packet out of the interface 25613 * (ipif->ipif_ill) where we joined the group. This is to 25614 * prevent from switches doing IGMP snooping to send us multicast 25615 * packets for a given group on the interface we have joined. 25616 * If we can't find an ire, igmp_sendpkt has already initialized 25617 * ipsec_out_attach_if so that this will not be load spread in 25618 * ip_newroute_ipif. 25619 */ 25620 ire = ire_ctable_lookup(dst, 0, 0, ipif, zoneid, NULL, 25621 MATCH_IRE_ILL, ipst); 25622 if (!ire) { 25623 /* 25624 * Mark this packet to make it be delivered to 25625 * ip_wput_ire after the new ire has been 25626 * created. 25627 */ 25628 mp->b_prev = NULL; 25629 mp->b_next = NULL; 25630 ip_newroute_ipif(q, first_mp, ipif, dst, NULL, RTF_SETSRC, 25631 zoneid, &zero_info); 25632 return; 25633 } 25634 25635 /* 25636 * Honor the RTF_SETSRC flag; this is the only case 25637 * where we force this addr whatever the current src addr is, 25638 * because this address is set by igmp_sendpkt(), and 25639 * cannot be specified by any user. 25640 */ 25641 if (ire->ire_flags & RTF_SETSRC) { 25642 ipha->ipha_src = ire->ire_src_addr; 25643 } 25644 25645 ip_wput_ire(q, first_mp, ire, NULL, B_FALSE, zoneid); 25646 } 25647 25648 /* 25649 * NOTE : This function does not ire_refrele the ire argument passed in. 25650 * 25651 * Copy the link layer header and do IPQoS if needed. Frees the mblk on 25652 * failure. The nce_fp_mp can vanish any time in the case of IRE_MIPRTUN 25653 * and IRE_BROADCAST due to DL_NOTE_FASTPATH_FLUSH. Hence we have to hold 25654 * the ire_lock to access the nce_fp_mp in this case. 25655 * IPQoS assumes that the first M_DATA contains the IP header. So, if we are 25656 * prepending a fastpath message IPQoS processing must precede it, we also set 25657 * the b_band of the fastpath message to that of the mblk returned by IPQoS 25658 * (IPQoS might have set the b_band for CoS marking). 25659 * However, if we are prepending DL_UNITDATA_REQ message, IPQoS processing 25660 * must follow it so that IPQoS can mark the dl_priority field for CoS 25661 * marking, if needed. 25662 */ 25663 static mblk_t * 25664 ip_wput_attach_llhdr(mblk_t *mp, ire_t *ire, ip_proc_t proc, uint32_t ill_index) 25665 { 25666 uint_t hlen; 25667 ipha_t *ipha; 25668 mblk_t *mp1; 25669 boolean_t qos_done = B_FALSE; 25670 uchar_t *ll_hdr; 25671 ip_stack_t *ipst = ire->ire_ipst; 25672 25673 #define rptr ((uchar_t *)ipha) 25674 25675 ipha = (ipha_t *)mp->b_rptr; 25676 hlen = 0; 25677 LOCK_IRE_FP_MP(ire); 25678 if ((mp1 = ire->ire_nce->nce_fp_mp) != NULL) { 25679 ASSERT(DB_TYPE(mp1) == M_DATA); 25680 /* Initiate IPPF processing */ 25681 if ((proc != 0) && IPP_ENABLED(proc, ipst)) { 25682 UNLOCK_IRE_FP_MP(ire); 25683 ip_process(proc, &mp, ill_index); 25684 if (mp == NULL) 25685 return (NULL); 25686 25687 ipha = (ipha_t *)mp->b_rptr; 25688 LOCK_IRE_FP_MP(ire); 25689 if ((mp1 = ire->ire_nce->nce_fp_mp) == NULL) { 25690 qos_done = B_TRUE; 25691 goto no_fp_mp; 25692 } 25693 ASSERT(DB_TYPE(mp1) == M_DATA); 25694 } 25695 hlen = MBLKL(mp1); 25696 /* 25697 * Check if we have enough room to prepend fastpath 25698 * header 25699 */ 25700 if (hlen != 0 && (rptr - mp->b_datap->db_base) >= hlen) { 25701 ll_hdr = rptr - hlen; 25702 bcopy(mp1->b_rptr, ll_hdr, hlen); 25703 /* 25704 * Set the b_rptr to the start of the link layer 25705 * header 25706 */ 25707 mp->b_rptr = ll_hdr; 25708 mp1 = mp; 25709 } else { 25710 mp1 = copyb(mp1); 25711 if (mp1 == NULL) 25712 goto unlock_err; 25713 mp1->b_band = mp->b_band; 25714 mp1->b_cont = mp; 25715 /* 25716 * certain system generated traffic may not 25717 * have cred/label in ip header block. This 25718 * is true even for a labeled system. But for 25719 * labeled traffic, inherit the label in the 25720 * new header. 25721 */ 25722 if (DB_CRED(mp) != NULL) 25723 mblk_setcred(mp1, DB_CRED(mp)); 25724 /* 25725 * XXX disable ICK_VALID and compute checksum 25726 * here; can happen if nce_fp_mp changes and 25727 * it can't be copied now due to insufficient 25728 * space. (unlikely, fp mp can change, but it 25729 * does not increase in length) 25730 */ 25731 } 25732 UNLOCK_IRE_FP_MP(ire); 25733 } else { 25734 no_fp_mp: 25735 mp1 = copyb(ire->ire_nce->nce_res_mp); 25736 if (mp1 == NULL) { 25737 unlock_err: 25738 UNLOCK_IRE_FP_MP(ire); 25739 freemsg(mp); 25740 return (NULL); 25741 } 25742 UNLOCK_IRE_FP_MP(ire); 25743 mp1->b_cont = mp; 25744 /* 25745 * certain system generated traffic may not 25746 * have cred/label in ip header block. This 25747 * is true even for a labeled system. But for 25748 * labeled traffic, inherit the label in the 25749 * new header. 25750 */ 25751 if (DB_CRED(mp) != NULL) 25752 mblk_setcred(mp1, DB_CRED(mp)); 25753 if (!qos_done && (proc != 0) && IPP_ENABLED(proc, ipst)) { 25754 ip_process(proc, &mp1, ill_index); 25755 if (mp1 == NULL) 25756 return (NULL); 25757 } 25758 } 25759 return (mp1); 25760 #undef rptr 25761 } 25762 25763 /* 25764 * Finish the outbound IPsec processing for an IPv6 packet. This function 25765 * is called from ipsec_out_process() if the IPsec packet was processed 25766 * synchronously, or from {ah,esp}_kcf_callback() if it was processed 25767 * asynchronously. 25768 */ 25769 void 25770 ip_wput_ipsec_out_v6(queue_t *q, mblk_t *ipsec_mp, ip6_t *ip6h, ill_t *ill, 25771 ire_t *ire_arg) 25772 { 25773 in6_addr_t *v6dstp; 25774 ire_t *ire; 25775 mblk_t *mp; 25776 ip6_t *ip6h1; 25777 uint_t ill_index; 25778 ipsec_out_t *io; 25779 boolean_t attach_if, hwaccel; 25780 uint32_t flags = IP6_NO_IPPOLICY; 25781 int match_flags; 25782 zoneid_t zoneid; 25783 boolean_t ill_need_rele = B_FALSE; 25784 boolean_t ire_need_rele = B_FALSE; 25785 ip_stack_t *ipst; 25786 25787 mp = ipsec_mp->b_cont; 25788 ip6h1 = (ip6_t *)mp->b_rptr; 25789 io = (ipsec_out_t *)ipsec_mp->b_rptr; 25790 ASSERT(io->ipsec_out_ns != NULL); 25791 ipst = io->ipsec_out_ns->netstack_ip; 25792 ill_index = io->ipsec_out_ill_index; 25793 if (io->ipsec_out_reachable) { 25794 flags |= IPV6_REACHABILITY_CONFIRMATION; 25795 } 25796 attach_if = io->ipsec_out_attach_if; 25797 hwaccel = io->ipsec_out_accelerated; 25798 zoneid = io->ipsec_out_zoneid; 25799 ASSERT(zoneid != ALL_ZONES); 25800 match_flags = MATCH_IRE_ILL_GROUP | MATCH_IRE_SECATTR; 25801 /* Multicast addresses should have non-zero ill_index. */ 25802 v6dstp = &ip6h->ip6_dst; 25803 ASSERT(ip6h->ip6_nxt != IPPROTO_RAW); 25804 ASSERT(!IN6_IS_ADDR_MULTICAST(v6dstp) || ill_index != 0); 25805 ASSERT(!attach_if || ill_index != 0); 25806 if (ill_index != 0) { 25807 if (ill == NULL) { 25808 ill = ip_grab_attach_ill(NULL, ipsec_mp, ill_index, 25809 B_TRUE, ipst); 25810 25811 /* Failure case frees things for us. */ 25812 if (ill == NULL) 25813 return; 25814 25815 ill_need_rele = B_TRUE; 25816 } 25817 /* 25818 * If this packet needs to go out on a particular interface 25819 * honor it. 25820 */ 25821 if (attach_if) { 25822 match_flags = MATCH_IRE_ILL; 25823 25824 /* 25825 * Check if we need an ire that will not be 25826 * looked up by anybody else i.e. HIDDEN. 25827 */ 25828 if (ill_is_probeonly(ill)) { 25829 match_flags |= MATCH_IRE_MARK_HIDDEN; 25830 } 25831 } 25832 } 25833 ASSERT(mp != NULL); 25834 25835 if (IN6_IS_ADDR_MULTICAST(v6dstp)) { 25836 boolean_t unspec_src; 25837 ipif_t *ipif; 25838 25839 /* 25840 * Use the ill_index to get the right ill. 25841 */ 25842 unspec_src = io->ipsec_out_unspec_src; 25843 (void) ipif_lookup_zoneid(ill, zoneid, 0, &ipif); 25844 if (ipif == NULL) { 25845 if (ill_need_rele) 25846 ill_refrele(ill); 25847 freemsg(ipsec_mp); 25848 return; 25849 } 25850 25851 if (ire_arg != NULL) { 25852 ire = ire_arg; 25853 } else { 25854 ire = ire_ctable_lookup_v6(v6dstp, 0, 0, ipif, 25855 zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 25856 ire_need_rele = B_TRUE; 25857 } 25858 if (ire != NULL) { 25859 ipif_refrele(ipif); 25860 /* 25861 * XXX Do the multicast forwarding now, as the IPSEC 25862 * processing has been done. 25863 */ 25864 goto send; 25865 } 25866 25867 ip0dbg(("ip_wput_ipsec_out_v6: multicast: IRE disappeared\n")); 25868 mp->b_prev = NULL; 25869 mp->b_next = NULL; 25870 25871 /* 25872 * If the IPsec packet was processed asynchronously, 25873 * drop it now. 25874 */ 25875 if (q == NULL) { 25876 if (ill_need_rele) 25877 ill_refrele(ill); 25878 freemsg(ipsec_mp); 25879 return; 25880 } 25881 25882 ip_newroute_ipif_v6(q, ipsec_mp, ipif, *v6dstp, 25883 unspec_src, zoneid); 25884 ipif_refrele(ipif); 25885 } else { 25886 if (attach_if) { 25887 ipif_t *ipif; 25888 25889 ipif = ipif_get_next_ipif(NULL, ill); 25890 if (ipif == NULL) { 25891 if (ill_need_rele) 25892 ill_refrele(ill); 25893 freemsg(ipsec_mp); 25894 return; 25895 } 25896 ire = ire_ctable_lookup_v6(v6dstp, 0, 0, ipif, 25897 zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 25898 ire_need_rele = B_TRUE; 25899 ipif_refrele(ipif); 25900 } else { 25901 if (ire_arg != NULL) { 25902 ire = ire_arg; 25903 } else { 25904 ire = ire_cache_lookup_v6(v6dstp, zoneid, NULL, 25905 ipst); 25906 ire_need_rele = B_TRUE; 25907 } 25908 } 25909 if (ire != NULL) 25910 goto send; 25911 /* 25912 * ire disappeared underneath. 25913 * 25914 * What we need to do here is the ip_newroute 25915 * logic to get the ire without doing the IPSEC 25916 * processing. Follow the same old path. But this 25917 * time, ip_wput or ire_add_then_send will call us 25918 * directly as all the IPSEC operations are done. 25919 */ 25920 ip1dbg(("ip_wput_ipsec_out_v6: IRE disappeared\n")); 25921 mp->b_prev = NULL; 25922 mp->b_next = NULL; 25923 25924 /* 25925 * If the IPsec packet was processed asynchronously, 25926 * drop it now. 25927 */ 25928 if (q == NULL) { 25929 if (ill_need_rele) 25930 ill_refrele(ill); 25931 freemsg(ipsec_mp); 25932 return; 25933 } 25934 25935 ip_newroute_v6(q, ipsec_mp, v6dstp, &ip6h->ip6_src, ill, 25936 zoneid, ipst); 25937 } 25938 if (ill != NULL && ill_need_rele) 25939 ill_refrele(ill); 25940 return; 25941 send: 25942 if (ill != NULL && ill_need_rele) 25943 ill_refrele(ill); 25944 25945 /* Local delivery */ 25946 if (ire->ire_stq == NULL) { 25947 ill_t *out_ill; 25948 ASSERT(q != NULL); 25949 25950 /* PFHooks: LOOPBACK_OUT */ 25951 out_ill = ire->ire_ipif->ipif_ill; 25952 25953 DTRACE_PROBE4(ip6__loopback__out__start, 25954 ill_t *, NULL, ill_t *, out_ill, 25955 ip6_t *, ip6h1, mblk_t *, ipsec_mp); 25956 25957 FW_HOOKS6(ipst->ips_ip6_loopback_out_event, 25958 ipst->ips_ipv6firewall_loopback_out, 25959 NULL, out_ill, ip6h1, ipsec_mp, mp, ipst); 25960 25961 DTRACE_PROBE1(ip6__loopback__out__end, mblk_t *, ipsec_mp); 25962 25963 if (ipsec_mp != NULL) 25964 ip_wput_local_v6(RD(q), out_ill, 25965 ip6h, ipsec_mp, ire, 0); 25966 if (ire_need_rele) 25967 ire_refrele(ire); 25968 return; 25969 } 25970 /* 25971 * Everything is done. Send it out on the wire. 25972 * We force the insertion of a fragment header using the 25973 * IPH_FRAG_HDR flag in two cases: 25974 * - after reception of an ICMPv6 "packet too big" message 25975 * with a MTU < 1280 (cf. RFC 2460 section 5) 25976 * - for multirouted IPv6 packets, so that the receiver can 25977 * discard duplicates according to their fragment identifier 25978 */ 25979 /* XXX fix flow control problems. */ 25980 if (ntohs(ip6h->ip6_plen) + IPV6_HDR_LEN > ire->ire_max_frag || 25981 (ire->ire_frag_flag & IPH_FRAG_HDR)) { 25982 if (hwaccel) { 25983 /* 25984 * hardware acceleration does not handle these 25985 * "slow path" cases. 25986 */ 25987 /* IPsec KSTATS: should bump bean counter here. */ 25988 if (ire_need_rele) 25989 ire_refrele(ire); 25990 freemsg(ipsec_mp); 25991 return; 25992 } 25993 if (ntohs(ip6h->ip6_plen) + IPV6_HDR_LEN != 25994 (mp->b_cont ? msgdsize(mp) : 25995 mp->b_wptr - (uchar_t *)ip6h)) { 25996 /* IPsec KSTATS: should bump bean counter here. */ 25997 ip0dbg(("Packet length mismatch: %d, %ld\n", 25998 ntohs(ip6h->ip6_plen) + IPV6_HDR_LEN, 25999 msgdsize(mp))); 26000 if (ire_need_rele) 26001 ire_refrele(ire); 26002 freemsg(ipsec_mp); 26003 return; 26004 } 26005 ASSERT(mp->b_prev == NULL); 26006 ip2dbg(("Fragmenting Size = %d, mtu = %d\n", 26007 ntohs(ip6h->ip6_plen) + 26008 IPV6_HDR_LEN, ire->ire_max_frag)); 26009 ip_wput_frag_v6(mp, ire, flags, NULL, B_FALSE, 26010 ire->ire_max_frag); 26011 } else { 26012 UPDATE_OB_PKT_COUNT(ire); 26013 ire->ire_last_used_time = lbolt; 26014 ip_xmit_v6(mp, ire, flags, NULL, B_FALSE, hwaccel ? io : NULL); 26015 } 26016 if (ire_need_rele) 26017 ire_refrele(ire); 26018 freeb(ipsec_mp); 26019 } 26020 26021 void 26022 ipsec_hw_putnext(queue_t *q, mblk_t *mp) 26023 { 26024 mblk_t *hada_mp; /* attributes M_CTL mblk */ 26025 da_ipsec_t *hada; /* data attributes */ 26026 ill_t *ill = (ill_t *)q->q_ptr; 26027 26028 IPSECHW_DEBUG(IPSECHW_PKT, ("ipsec_hw_putnext: accelerated packet\n")); 26029 26030 if ((ill->ill_capabilities & (ILL_CAPAB_AH | ILL_CAPAB_ESP)) == 0) { 26031 /* IPsec KSTATS: Bump lose counter here! */ 26032 freemsg(mp); 26033 return; 26034 } 26035 26036 /* 26037 * It's an IPsec packet that must be 26038 * accelerated by the Provider, and the 26039 * outbound ill is IPsec acceleration capable. 26040 * Prepends the mblk with an IPHADA_M_CTL, and ship it 26041 * to the ill. 26042 * IPsec KSTATS: should bump packet counter here. 26043 */ 26044 26045 hada_mp = allocb(sizeof (da_ipsec_t), BPRI_HI); 26046 if (hada_mp == NULL) { 26047 /* IPsec KSTATS: should bump packet counter here. */ 26048 freemsg(mp); 26049 return; 26050 } 26051 26052 hada_mp->b_datap->db_type = M_CTL; 26053 hada_mp->b_wptr = hada_mp->b_rptr + sizeof (*hada); 26054 hada_mp->b_cont = mp; 26055 26056 hada = (da_ipsec_t *)hada_mp->b_rptr; 26057 bzero(hada, sizeof (da_ipsec_t)); 26058 hada->da_type = IPHADA_M_CTL; 26059 26060 putnext(q, hada_mp); 26061 } 26062 26063 /* 26064 * Finish the outbound IPsec processing. This function is called from 26065 * ipsec_out_process() if the IPsec packet was processed 26066 * synchronously, or from {ah,esp}_kcf_callback() if it was processed 26067 * asynchronously. 26068 */ 26069 void 26070 ip_wput_ipsec_out(queue_t *q, mblk_t *ipsec_mp, ipha_t *ipha, ill_t *ill, 26071 ire_t *ire_arg) 26072 { 26073 uint32_t v_hlen_tos_len; 26074 ipaddr_t dst; 26075 ipif_t *ipif = NULL; 26076 ire_t *ire; 26077 ire_t *ire1 = NULL; 26078 mblk_t *next_mp = NULL; 26079 uint32_t max_frag; 26080 boolean_t multirt_send = B_FALSE; 26081 mblk_t *mp; 26082 mblk_t *mp1; 26083 ipha_t *ipha1; 26084 uint_t ill_index; 26085 ipsec_out_t *io; 26086 boolean_t attach_if; 26087 int match_flags, offset; 26088 irb_t *irb = NULL; 26089 boolean_t ill_need_rele = B_FALSE, ire_need_rele = B_TRUE; 26090 zoneid_t zoneid; 26091 uint32_t cksum; 26092 uint16_t *up; 26093 ipxmit_state_t pktxmit_state; 26094 ip_stack_t *ipst; 26095 26096 #ifdef _BIG_ENDIAN 26097 #define LENGTH (v_hlen_tos_len & 0xFFFF) 26098 #else 26099 #define LENGTH ((v_hlen_tos_len >> 24) | ((v_hlen_tos_len >> 8) & 0xFF00)) 26100 #endif 26101 26102 mp = ipsec_mp->b_cont; 26103 ipha1 = (ipha_t *)mp->b_rptr; 26104 ASSERT(mp != NULL); 26105 v_hlen_tos_len = ((uint32_t *)ipha)[0]; 26106 dst = ipha->ipha_dst; 26107 26108 io = (ipsec_out_t *)ipsec_mp->b_rptr; 26109 ill_index = io->ipsec_out_ill_index; 26110 attach_if = io->ipsec_out_attach_if; 26111 zoneid = io->ipsec_out_zoneid; 26112 ASSERT(zoneid != ALL_ZONES); 26113 ipst = io->ipsec_out_ns->netstack_ip; 26114 ASSERT(io->ipsec_out_ns != NULL); 26115 26116 match_flags = MATCH_IRE_ILL_GROUP | MATCH_IRE_SECATTR; 26117 if (ill_index != 0) { 26118 if (ill == NULL) { 26119 ill = ip_grab_attach_ill(NULL, ipsec_mp, 26120 ill_index, B_FALSE, ipst); 26121 26122 /* Failure case frees things for us. */ 26123 if (ill == NULL) 26124 return; 26125 26126 ill_need_rele = B_TRUE; 26127 } 26128 /* 26129 * If this packet needs to go out on a particular interface 26130 * honor it. 26131 */ 26132 if (attach_if) { 26133 match_flags = MATCH_IRE_ILL | MATCH_IRE_SECATTR; 26134 26135 /* 26136 * Check if we need an ire that will not be 26137 * looked up by anybody else i.e. HIDDEN. 26138 */ 26139 if (ill_is_probeonly(ill)) { 26140 match_flags |= MATCH_IRE_MARK_HIDDEN; 26141 } 26142 } 26143 } 26144 26145 if (CLASSD(dst)) { 26146 boolean_t conn_dontroute; 26147 /* 26148 * Use the ill_index to get the right ipif. 26149 */ 26150 conn_dontroute = io->ipsec_out_dontroute; 26151 if (ill_index == 0) 26152 ipif = ipif_lookup_group(dst, zoneid, ipst); 26153 else 26154 (void) ipif_lookup_zoneid(ill, zoneid, 0, &ipif); 26155 if (ipif == NULL) { 26156 ip1dbg(("ip_wput_ipsec_out: No ipif for" 26157 " multicast\n")); 26158 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutNoRoutes); 26159 freemsg(ipsec_mp); 26160 goto done; 26161 } 26162 /* 26163 * ipha_src has already been intialized with the 26164 * value of the ipif in ip_wput. All we need now is 26165 * an ire to send this downstream. 26166 */ 26167 ire = ire_ctable_lookup(dst, 0, 0, ipif, zoneid, 26168 MBLK_GETLABEL(mp), match_flags, ipst); 26169 if (ire != NULL) { 26170 ill_t *ill1; 26171 /* 26172 * Do the multicast forwarding now, as the IPSEC 26173 * processing has been done. 26174 */ 26175 if (ipst->ips_ip_g_mrouter && !conn_dontroute && 26176 (ill1 = ire_to_ill(ire))) { 26177 if (ip_mforward(ill1, ipha, mp)) { 26178 freemsg(ipsec_mp); 26179 ip1dbg(("ip_wput_ipsec_out: mforward " 26180 "failed\n")); 26181 ire_refrele(ire); 26182 goto done; 26183 } 26184 } 26185 goto send; 26186 } 26187 26188 ip0dbg(("ip_wput_ipsec_out: multicast: IRE disappeared\n")); 26189 mp->b_prev = NULL; 26190 mp->b_next = NULL; 26191 26192 /* 26193 * If the IPsec packet was processed asynchronously, 26194 * drop it now. 26195 */ 26196 if (q == NULL) { 26197 freemsg(ipsec_mp); 26198 goto done; 26199 } 26200 26201 /* 26202 * We may be using a wrong ipif to create the ire. 26203 * But it is okay as the source address is assigned 26204 * for the packet already. Next outbound packet would 26205 * create the IRE with the right IPIF in ip_wput. 26206 * 26207 * Also handle RTF_MULTIRT routes. 26208 */ 26209 ip_newroute_ipif(q, ipsec_mp, ipif, dst, NULL, RTF_MULTIRT, 26210 zoneid, &zero_info); 26211 } else { 26212 if (attach_if) { 26213 ire = ire_ctable_lookup(dst, 0, 0, ill->ill_ipif, 26214 zoneid, MBLK_GETLABEL(mp), match_flags, ipst); 26215 } else { 26216 if (ire_arg != NULL) { 26217 ire = ire_arg; 26218 ire_need_rele = B_FALSE; 26219 } else { 26220 ire = ire_cache_lookup(dst, zoneid, 26221 MBLK_GETLABEL(mp), ipst); 26222 } 26223 } 26224 if (ire != NULL) { 26225 goto send; 26226 } 26227 26228 /* 26229 * ire disappeared underneath. 26230 * 26231 * What we need to do here is the ip_newroute 26232 * logic to get the ire without doing the IPSEC 26233 * processing. Follow the same old path. But this 26234 * time, ip_wput or ire_add_then_put will call us 26235 * directly as all the IPSEC operations are done. 26236 */ 26237 ip1dbg(("ip_wput_ipsec_out: IRE disappeared\n")); 26238 mp->b_prev = NULL; 26239 mp->b_next = NULL; 26240 26241 /* 26242 * If the IPsec packet was processed asynchronously, 26243 * drop it now. 26244 */ 26245 if (q == NULL) { 26246 freemsg(ipsec_mp); 26247 goto done; 26248 } 26249 26250 /* 26251 * Since we're going through ip_newroute() again, we 26252 * need to make sure we don't: 26253 * 26254 * 1.) Trigger the ASSERT() with the ipha_ident 26255 * overloading. 26256 * 2.) Redo transport-layer checksumming, since we've 26257 * already done all that to get this far. 26258 * 26259 * The easiest way not do either of the above is to set 26260 * the ipha_ident field to IP_HDR_INCLUDED. 26261 */ 26262 ipha->ipha_ident = IP_HDR_INCLUDED; 26263 ip_newroute(q, ipsec_mp, dst, NULL, 26264 (CONN_Q(q) ? Q_TO_CONN(q) : NULL), zoneid, ipst); 26265 } 26266 goto done; 26267 send: 26268 if (ipha->ipha_protocol == IPPROTO_UDP && 26269 udp_compute_checksum(ipst->ips_netstack)) { 26270 /* 26271 * ESP NAT-Traversal packet. 26272 * 26273 * Just do software checksum for now. 26274 */ 26275 26276 offset = IP_SIMPLE_HDR_LENGTH + UDP_CHECKSUM_OFFSET; 26277 IP_STAT(ipst, ip_out_sw_cksum); 26278 IP_STAT_UPDATE(ipst, ip_udp_out_sw_cksum_bytes, 26279 ntohs(htons(ipha->ipha_length) - IP_SIMPLE_HDR_LENGTH)); 26280 #define iphs ((uint16_t *)ipha) 26281 cksum = IP_UDP_CSUM_COMP + iphs[6] + iphs[7] + iphs[8] + 26282 iphs[9] + ntohs(htons(ipha->ipha_length) - 26283 IP_SIMPLE_HDR_LENGTH); 26284 #undef iphs 26285 cksum = IP_CSUM(mp, IP_SIMPLE_HDR_LENGTH, cksum); 26286 for (mp1 = mp; mp1 != NULL; mp1 = mp1->b_cont) 26287 if (mp1->b_wptr - mp1->b_rptr >= 26288 offset + sizeof (uint16_t)) { 26289 up = (uint16_t *)(mp1->b_rptr + offset); 26290 *up = cksum; 26291 break; /* out of for loop */ 26292 } else { 26293 offset -= (mp->b_wptr - mp->b_rptr); 26294 } 26295 } /* Otherwise, just keep the all-zero checksum. */ 26296 26297 if (ire->ire_stq == NULL) { 26298 ill_t *out_ill; 26299 /* 26300 * Loopbacks go through ip_wput_local except for one case. 26301 * We come here if we generate a icmp_frag_needed message 26302 * after IPSEC processing is over. When this function calls 26303 * ip_wput_ire_fragmentit, ip_wput_frag might end up calling 26304 * icmp_frag_needed. The message generated comes back here 26305 * through icmp_frag_needed -> icmp_pkt -> ip_wput -> 26306 * ipsec_out_process -> ip_wput_ipsec_out. We need to set the 26307 * source address as it is usually set in ip_wput_ire. As 26308 * ipsec_out_proc_begin is set, ip_wput calls ipsec_out_process 26309 * and we end up here. We can't enter ip_wput_ire once the 26310 * IPSEC processing is over and hence we need to do it here. 26311 */ 26312 ASSERT(q != NULL); 26313 UPDATE_OB_PKT_COUNT(ire); 26314 ire->ire_last_used_time = lbolt; 26315 if (ipha->ipha_src == 0) 26316 ipha->ipha_src = ire->ire_src_addr; 26317 26318 /* PFHooks: LOOPBACK_OUT */ 26319 out_ill = ire->ire_ipif->ipif_ill; 26320 26321 DTRACE_PROBE4(ip4__loopback__out__start, 26322 ill_t *, NULL, ill_t *, out_ill, 26323 ipha_t *, ipha1, mblk_t *, ipsec_mp); 26324 26325 FW_HOOKS(ipst->ips_ip4_loopback_out_event, 26326 ipst->ips_ipv4firewall_loopback_out, 26327 NULL, out_ill, ipha1, ipsec_mp, mp, ipst); 26328 26329 DTRACE_PROBE1(ip4__loopback__out__end, mblk_t *, ipsec_mp); 26330 26331 if (ipsec_mp != NULL) 26332 ip_wput_local(RD(q), out_ill, 26333 ipha, ipsec_mp, ire, 0, zoneid); 26334 if (ire_need_rele) 26335 ire_refrele(ire); 26336 goto done; 26337 } 26338 26339 if (ire->ire_max_frag < (unsigned int)LENGTH) { 26340 /* 26341 * We are through with IPSEC processing. 26342 * Fragment this and send it on the wire. 26343 */ 26344 if (io->ipsec_out_accelerated) { 26345 /* 26346 * The packet has been accelerated but must 26347 * be fragmented. This should not happen 26348 * since AH and ESP must not accelerate 26349 * packets that need fragmentation, however 26350 * the configuration could have changed 26351 * since the AH or ESP processing. 26352 * Drop packet. 26353 * IPsec KSTATS: bump bean counter here. 26354 */ 26355 IPSECHW_DEBUG(IPSECHW_PKT, ("ipsec_wput_ipsec_out: " 26356 "fragmented accelerated packet!\n")); 26357 freemsg(ipsec_mp); 26358 } else { 26359 ip_wput_ire_fragmentit(ipsec_mp, ire, zoneid, ipst); 26360 } 26361 if (ire_need_rele) 26362 ire_refrele(ire); 26363 goto done; 26364 } 26365 26366 ip2dbg(("ip_wput_ipsec_out: ipsec_mp %p, ire %p, ire_ipif %p, " 26367 "ipif %p\n", (void *)ipsec_mp, (void *)ire, 26368 (void *)ire->ire_ipif, (void *)ipif)); 26369 26370 /* 26371 * Multiroute the secured packet, unless IPsec really 26372 * requires the packet to go out only through a particular 26373 * interface. 26374 */ 26375 if ((ire->ire_flags & RTF_MULTIRT) && !attach_if) { 26376 ire_t *first_ire; 26377 irb = ire->ire_bucket; 26378 ASSERT(irb != NULL); 26379 /* 26380 * This ire has been looked up as the one that 26381 * goes through the given ipif; 26382 * make sure we do not omit any other multiroute ire 26383 * that may be present in the bucket before this one. 26384 */ 26385 IRB_REFHOLD(irb); 26386 for (first_ire = irb->irb_ire; 26387 first_ire != NULL; 26388 first_ire = first_ire->ire_next) { 26389 if ((first_ire->ire_flags & RTF_MULTIRT) && 26390 (first_ire->ire_addr == ire->ire_addr) && 26391 !(first_ire->ire_marks & 26392 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN))) 26393 break; 26394 } 26395 26396 if ((first_ire != NULL) && (first_ire != ire)) { 26397 /* 26398 * Don't change the ire if the packet must 26399 * be fragmented if sent via this new one. 26400 */ 26401 if (first_ire->ire_max_frag >= (unsigned int)LENGTH) { 26402 IRE_REFHOLD(first_ire); 26403 if (ire_need_rele) 26404 ire_refrele(ire); 26405 else 26406 ire_need_rele = B_TRUE; 26407 ire = first_ire; 26408 } 26409 } 26410 IRB_REFRELE(irb); 26411 26412 multirt_send = B_TRUE; 26413 max_frag = ire->ire_max_frag; 26414 } else { 26415 if ((ire->ire_flags & RTF_MULTIRT) && attach_if) { 26416 ip1dbg(("ip_wput_ipsec_out: ignoring multirouting " 26417 "flag, attach_if %d\n", attach_if)); 26418 } 26419 } 26420 26421 /* 26422 * In most cases, the emission loop below is entered only once. 26423 * Only in the case where the ire holds the RTF_MULTIRT 26424 * flag, we loop to process all RTF_MULTIRT ires in the 26425 * bucket, and send the packet through all crossed 26426 * RTF_MULTIRT routes. 26427 */ 26428 do { 26429 if (multirt_send) { 26430 /* 26431 * ire1 holds here the next ire to process in the 26432 * bucket. If multirouting is expected, 26433 * any non-RTF_MULTIRT ire that has the 26434 * right destination address is ignored. 26435 */ 26436 ASSERT(irb != NULL); 26437 IRB_REFHOLD(irb); 26438 for (ire1 = ire->ire_next; 26439 ire1 != NULL; 26440 ire1 = ire1->ire_next) { 26441 if ((ire1->ire_flags & RTF_MULTIRT) == 0) 26442 continue; 26443 if (ire1->ire_addr != ire->ire_addr) 26444 continue; 26445 if (ire1->ire_marks & 26446 (IRE_MARK_CONDEMNED | IRE_MARK_HIDDEN)) 26447 continue; 26448 /* No loopback here */ 26449 if (ire1->ire_stq == NULL) 26450 continue; 26451 /* 26452 * Ensure we do not exceed the MTU 26453 * of the next route. 26454 */ 26455 if (ire1->ire_max_frag < (unsigned int)LENGTH) { 26456 ip_multirt_bad_mtu(ire1, max_frag); 26457 continue; 26458 } 26459 26460 IRE_REFHOLD(ire1); 26461 break; 26462 } 26463 IRB_REFRELE(irb); 26464 if (ire1 != NULL) { 26465 /* 26466 * We are in a multiple send case, need to 26467 * make a copy of the packet. 26468 */ 26469 next_mp = copymsg(ipsec_mp); 26470 if (next_mp == NULL) { 26471 ire_refrele(ire1); 26472 ire1 = NULL; 26473 } 26474 } 26475 } 26476 /* 26477 * Everything is done. Send it out on the wire 26478 * 26479 * ip_xmit_v4 will call ip_wput_attach_llhdr and then 26480 * either send it on the wire or, in the case of 26481 * HW acceleration, call ipsec_hw_putnext. 26482 */ 26483 if (ire->ire_nce && 26484 ire->ire_nce->nce_state != ND_REACHABLE) { 26485 DTRACE_PROBE2(ip__wput__ipsec__bail, 26486 (ire_t *), ire, (mblk_t *), ipsec_mp); 26487 /* 26488 * If ire's link-layer is unresolved (this 26489 * would only happen if the incomplete ire 26490 * was added to cachetable via forwarding path) 26491 * don't bother going to ip_xmit_v4. Just drop the 26492 * packet. 26493 * There is a slight risk here, in that, if we 26494 * have the forwarding path create an incomplete 26495 * IRE, then until the IRE is completed, any 26496 * transmitted IPSEC packets will be dropped 26497 * instead of being queued waiting for resolution. 26498 * 26499 * But the likelihood of a forwarding packet and a wput 26500 * packet sending to the same dst at the same time 26501 * and there not yet be an ARP entry for it is small. 26502 * Furthermore, if this actually happens, it might 26503 * be likely that wput would generate multiple 26504 * packets (and forwarding would also have a train 26505 * of packets) for that destination. If this is 26506 * the case, some of them would have been dropped 26507 * anyway, since ARP only queues a few packets while 26508 * waiting for resolution 26509 * 26510 * NOTE: We should really call ip_xmit_v4, 26511 * and let it queue the packet and send the 26512 * ARP query and have ARP come back thus: 26513 * <ARP> ip_wput->ip_output->ip-wput_nondata-> 26514 * ip_xmit_v4->ip_wput_attach_llhdr + ipsec 26515 * hw accel work. But it's too complex to get 26516 * the IPsec hw acceleration approach to fit 26517 * well with ip_xmit_v4 doing ARP without 26518 * doing IPSEC simplification. For now, we just 26519 * poke ip_xmit_v4 to trigger the arp resolve, so 26520 * that we can continue with the send on the next 26521 * attempt. 26522 * 26523 * XXX THis should be revisited, when 26524 * the IPsec/IP interaction is cleaned up 26525 */ 26526 ip1dbg(("ip_wput_ipsec_out: ire is incomplete" 26527 " - dropping packet\n")); 26528 freemsg(ipsec_mp); 26529 /* 26530 * Call ip_xmit_v4() to trigger ARP query 26531 * in case the nce_state is ND_INITIAL 26532 */ 26533 (void) ip_xmit_v4(NULL, ire, NULL, B_FALSE); 26534 goto drop_pkt; 26535 } 26536 26537 DTRACE_PROBE4(ip4__physical__out__start, ill_t *, NULL, 26538 ill_t *, ire->ire_ipif->ipif_ill, ipha_t *, ipha1, 26539 mblk_t *, mp); 26540 FW_HOOKS(ipst->ips_ip4_physical_out_event, 26541 ipst->ips_ipv4firewall_physical_out, 26542 NULL, ire->ire_ipif->ipif_ill, ipha1, mp, mp, ipst); 26543 DTRACE_PROBE1(ip4__physical__out__end, mblk_t *, mp); 26544 if (mp == NULL) 26545 goto drop_pkt; 26546 26547 ip1dbg(("ip_wput_ipsec_out: calling ip_xmit_v4\n")); 26548 pktxmit_state = ip_xmit_v4(mp, ire, 26549 (io->ipsec_out_accelerated ? io : NULL), B_FALSE); 26550 26551 if ((pktxmit_state == SEND_FAILED) || 26552 (pktxmit_state == LLHDR_RESLV_FAILED)) { 26553 26554 freeb(ipsec_mp); /* ip_xmit_v4 frees the mp */ 26555 drop_pkt: 26556 BUMP_MIB(((ill_t *)ire->ire_stq->q_ptr)->ill_ip_mib, 26557 ipIfStatsOutDiscards); 26558 if (ire_need_rele) 26559 ire_refrele(ire); 26560 if (ire1 != NULL) { 26561 ire_refrele(ire1); 26562 freemsg(next_mp); 26563 } 26564 goto done; 26565 } 26566 26567 freeb(ipsec_mp); 26568 if (ire_need_rele) 26569 ire_refrele(ire); 26570 26571 if (ire1 != NULL) { 26572 ire = ire1; 26573 ire_need_rele = B_TRUE; 26574 ASSERT(next_mp); 26575 ipsec_mp = next_mp; 26576 mp = ipsec_mp->b_cont; 26577 ire1 = NULL; 26578 next_mp = NULL; 26579 io = (ipsec_out_t *)ipsec_mp->b_rptr; 26580 } else { 26581 multirt_send = B_FALSE; 26582 } 26583 } while (multirt_send); 26584 done: 26585 if (ill != NULL && ill_need_rele) 26586 ill_refrele(ill); 26587 if (ipif != NULL) 26588 ipif_refrele(ipif); 26589 } 26590 26591 /* 26592 * Get the ill corresponding to the specified ire, and compare its 26593 * capabilities with the protocol and algorithms specified by the 26594 * the SA obtained from ipsec_out. If they match, annotate the 26595 * ipsec_out structure to indicate that the packet needs acceleration. 26596 * 26597 * 26598 * A packet is eligible for outbound hardware acceleration if the 26599 * following conditions are satisfied: 26600 * 26601 * 1. the packet will not be fragmented 26602 * 2. the provider supports the algorithm 26603 * 3. there is no pending control message being exchanged 26604 * 4. snoop is not attached 26605 * 5. the destination address is not a broadcast or multicast address. 26606 * 26607 * Rationale: 26608 * - Hardware drivers do not support fragmentation with 26609 * the current interface. 26610 * - snoop, multicast, and broadcast may result in exposure of 26611 * a cleartext datagram. 26612 * We check all five of these conditions here. 26613 * 26614 * XXX would like to nuke "ire_t *" parameter here; problem is that 26615 * IRE is only way to figure out if a v4 address is a broadcast and 26616 * thus ineligible for acceleration... 26617 */ 26618 static void 26619 ipsec_out_is_accelerated(mblk_t *ipsec_mp, ipsa_t *sa, ill_t *ill, ire_t *ire) 26620 { 26621 ipsec_out_t *io; 26622 mblk_t *data_mp; 26623 uint_t plen, overhead; 26624 ip_stack_t *ipst; 26625 26626 if ((sa->ipsa_flags & IPSA_F_HW) == 0) 26627 return; 26628 26629 if (ill == NULL) 26630 return; 26631 ipst = ill->ill_ipst; 26632 /* 26633 * Destination address is a broadcast or multicast. Punt. 26634 */ 26635 if ((ire != NULL) && (ire->ire_type & (IRE_BROADCAST|IRE_LOOPBACK| 26636 IRE_LOCAL))) 26637 return; 26638 26639 data_mp = ipsec_mp->b_cont; 26640 26641 if (ill->ill_isv6) { 26642 ip6_t *ip6h = (ip6_t *)data_mp->b_rptr; 26643 26644 if (IN6_IS_ADDR_MULTICAST(&ip6h->ip6_dst)) 26645 return; 26646 26647 plen = ip6h->ip6_plen; 26648 } else { 26649 ipha_t *ipha = (ipha_t *)data_mp->b_rptr; 26650 26651 if (CLASSD(ipha->ipha_dst)) 26652 return; 26653 26654 plen = ipha->ipha_length; 26655 } 26656 /* 26657 * Is there a pending DLPI control message being exchanged 26658 * between IP/IPsec and the DLS Provider? If there is, it 26659 * could be a SADB update, and the state of the DLS Provider 26660 * SADB might not be in sync with the SADB maintained by 26661 * IPsec. To avoid dropping packets or using the wrong keying 26662 * material, we do not accelerate this packet. 26663 */ 26664 if (ill->ill_dlpi_pending != DL_PRIM_INVAL) { 26665 IPSECHW_DEBUG(IPSECHW_PKT, ("ipsec_out_check_is_accelerated: " 26666 "ill_dlpi_pending! don't accelerate packet\n")); 26667 return; 26668 } 26669 26670 /* 26671 * Is the Provider in promiscous mode? If it does, we don't 26672 * accelerate the packet since it will bounce back up to the 26673 * listeners in the clear. 26674 */ 26675 if (ill->ill_promisc_on_phys) { 26676 IPSECHW_DEBUG(IPSECHW_PKT, ("ipsec_out_check_is_accelerated: " 26677 "ill in promiscous mode, don't accelerate packet\n")); 26678 return; 26679 } 26680 26681 /* 26682 * Will the packet require fragmentation? 26683 */ 26684 26685 /* 26686 * IPsec ESP note: this is a pessimistic estimate, but the same 26687 * as is used elsewhere. 26688 * SPI + sequence + MAC + IV(blocksize) + padding(blocksize-1) 26689 * + 2-byte trailer 26690 */ 26691 overhead = (sa->ipsa_type == SADB_SATYPE_AH) ? IPSEC_MAX_AH_HDR_SIZE : 26692 IPSEC_BASE_ESP_HDR_SIZE(sa); 26693 26694 if ((plen + overhead) > ill->ill_max_mtu) 26695 return; 26696 26697 io = (ipsec_out_t *)ipsec_mp->b_rptr; 26698 26699 /* 26700 * Can the ill accelerate this IPsec protocol and algorithm 26701 * specified by the SA? 26702 */ 26703 if (!ipsec_capab_match(ill, io->ipsec_out_capab_ill_index, 26704 ill->ill_isv6, sa, ipst->ips_netstack)) { 26705 return; 26706 } 26707 26708 /* 26709 * Tell AH or ESP that the outbound ill is capable of 26710 * accelerating this packet. 26711 */ 26712 io->ipsec_out_is_capab_ill = B_TRUE; 26713 } 26714 26715 /* 26716 * Select which AH & ESP SA's to use (if any) for the outbound packet. 26717 * 26718 * If this function returns B_TRUE, the requested SA's have been filled 26719 * into the ipsec_out_*_sa pointers. 26720 * 26721 * If the function returns B_FALSE, the packet has been "consumed", most 26722 * likely by an ACQUIRE sent up via PF_KEY to a key management daemon. 26723 * 26724 * The SA references created by the protocol-specific "select" 26725 * function will be released when the ipsec_mp is freed, thanks to the 26726 * ipsec_out_free destructor -- see spd.c. 26727 */ 26728 static boolean_t 26729 ipsec_out_select_sa(mblk_t *ipsec_mp) 26730 { 26731 boolean_t need_ah_acquire = B_FALSE, need_esp_acquire = B_FALSE; 26732 ipsec_out_t *io; 26733 ipsec_policy_t *pp; 26734 ipsec_action_t *ap; 26735 io = (ipsec_out_t *)ipsec_mp->b_rptr; 26736 ASSERT(io->ipsec_out_type == IPSEC_OUT); 26737 ASSERT(io->ipsec_out_len == sizeof (ipsec_out_t)); 26738 26739 if (!io->ipsec_out_secure) { 26740 /* 26741 * We came here by mistake. 26742 * Don't bother with ipsec processing 26743 * We should "discourage" this path in the future. 26744 */ 26745 ASSERT(io->ipsec_out_proc_begin == B_FALSE); 26746 return (B_FALSE); 26747 } 26748 ASSERT(io->ipsec_out_need_policy == B_FALSE); 26749 ASSERT((io->ipsec_out_policy != NULL) || 26750 (io->ipsec_out_act != NULL)); 26751 26752 ASSERT(io->ipsec_out_failed == B_FALSE); 26753 26754 /* 26755 * IPSEC processing has started. 26756 */ 26757 io->ipsec_out_proc_begin = B_TRUE; 26758 ap = io->ipsec_out_act; 26759 if (ap == NULL) { 26760 pp = io->ipsec_out_policy; 26761 ASSERT(pp != NULL); 26762 ap = pp->ipsp_act; 26763 ASSERT(ap != NULL); 26764 } 26765 26766 /* 26767 * We have an action. now, let's select SA's. 26768 * (In the future, we can cache this in the conn_t..) 26769 */ 26770 if (ap->ipa_want_esp) { 26771 if (io->ipsec_out_esp_sa == NULL) { 26772 need_esp_acquire = !ipsec_outbound_sa(ipsec_mp, 26773 IPPROTO_ESP); 26774 } 26775 ASSERT(need_esp_acquire || io->ipsec_out_esp_sa != NULL); 26776 } 26777 26778 if (ap->ipa_want_ah) { 26779 if (io->ipsec_out_ah_sa == NULL) { 26780 need_ah_acquire = !ipsec_outbound_sa(ipsec_mp, 26781 IPPROTO_AH); 26782 } 26783 ASSERT(need_ah_acquire || io->ipsec_out_ah_sa != NULL); 26784 /* 26785 * The ESP and AH processing order needs to be preserved 26786 * when both protocols are required (ESP should be applied 26787 * before AH for an outbound packet). Force an ESP ACQUIRE 26788 * when both ESP and AH are required, and an AH ACQUIRE 26789 * is needed. 26790 */ 26791 if (ap->ipa_want_esp && need_ah_acquire) 26792 need_esp_acquire = B_TRUE; 26793 } 26794 26795 /* 26796 * Send an ACQUIRE (extended, regular, or both) if we need one. 26797 * Release SAs that got referenced, but will not be used until we 26798 * acquire _all_ of the SAs we need. 26799 */ 26800 if (need_ah_acquire || need_esp_acquire) { 26801 if (io->ipsec_out_ah_sa != NULL) { 26802 IPSA_REFRELE(io->ipsec_out_ah_sa); 26803 io->ipsec_out_ah_sa = NULL; 26804 } 26805 if (io->ipsec_out_esp_sa != NULL) { 26806 IPSA_REFRELE(io->ipsec_out_esp_sa); 26807 io->ipsec_out_esp_sa = NULL; 26808 } 26809 26810 sadb_acquire(ipsec_mp, io, need_ah_acquire, need_esp_acquire); 26811 return (B_FALSE); 26812 } 26813 26814 return (B_TRUE); 26815 } 26816 26817 /* 26818 * Process an IPSEC_OUT message and see what you can 26819 * do with it. 26820 * IPQoS Notes: 26821 * We do IPPF processing if IPP_LOCAL_OUT is enabled before processing for 26822 * IPSec. 26823 * XXX would like to nuke ire_t. 26824 * XXX ill_index better be "real" 26825 */ 26826 void 26827 ipsec_out_process(queue_t *q, mblk_t *ipsec_mp, ire_t *ire, uint_t ill_index) 26828 { 26829 ipsec_out_t *io; 26830 ipsec_policy_t *pp; 26831 ipsec_action_t *ap; 26832 ipha_t *ipha; 26833 ip6_t *ip6h; 26834 mblk_t *mp; 26835 ill_t *ill; 26836 zoneid_t zoneid; 26837 ipsec_status_t ipsec_rc; 26838 boolean_t ill_need_rele = B_FALSE; 26839 ip_stack_t *ipst; 26840 ipsec_stack_t *ipss; 26841 26842 io = (ipsec_out_t *)ipsec_mp->b_rptr; 26843 ASSERT(io->ipsec_out_type == IPSEC_OUT); 26844 ASSERT(io->ipsec_out_len == sizeof (ipsec_out_t)); 26845 ipst = io->ipsec_out_ns->netstack_ip; 26846 mp = ipsec_mp->b_cont; 26847 26848 /* 26849 * Initiate IPPF processing. We do it here to account for packets 26850 * coming here that don't have any policy (i.e. !io->ipsec_out_secure). 26851 * We can check for ipsec_out_proc_begin even for such packets, as 26852 * they will always be false (asserted below). 26853 */ 26854 if (IPP_ENABLED(IPP_LOCAL_OUT, ipst) && !io->ipsec_out_proc_begin) { 26855 ip_process(IPP_LOCAL_OUT, &mp, io->ipsec_out_ill_index != 0 ? 26856 io->ipsec_out_ill_index : ill_index); 26857 if (mp == NULL) { 26858 ip2dbg(("ipsec_out_process: packet dropped "\ 26859 "during IPPF processing\n")); 26860 freeb(ipsec_mp); 26861 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 26862 return; 26863 } 26864 } 26865 26866 if (!io->ipsec_out_secure) { 26867 /* 26868 * We came here by mistake. 26869 * Don't bother with ipsec processing 26870 * Should "discourage" this path in the future. 26871 */ 26872 ASSERT(io->ipsec_out_proc_begin == B_FALSE); 26873 goto done; 26874 } 26875 ASSERT(io->ipsec_out_need_policy == B_FALSE); 26876 ASSERT((io->ipsec_out_policy != NULL) || 26877 (io->ipsec_out_act != NULL)); 26878 ASSERT(io->ipsec_out_failed == B_FALSE); 26879 26880 ipss = ipst->ips_netstack->netstack_ipsec; 26881 if (!ipsec_loaded(ipss)) { 26882 ipha = (ipha_t *)ipsec_mp->b_cont->b_rptr; 26883 if (IPH_HDR_VERSION(ipha) == IP_VERSION) { 26884 BUMP_MIB(&ipst->ips_ip_mib, ipIfStatsOutDiscards); 26885 } else { 26886 BUMP_MIB(&ipst->ips_ip6_mib, ipIfStatsOutDiscards); 26887 } 26888 ip_drop_packet(ipsec_mp, B_FALSE, NULL, ire, 26889 DROPPER(ipss, ipds_ip_ipsec_not_loaded), 26890 &ipss->ipsec_dropper); 26891 return; 26892 } 26893 26894 /* 26895 * IPSEC processing has started. 26896 */ 26897 io->ipsec_out_proc_begin = B_TRUE; 26898 ap = io->ipsec_out_act; 26899 if (ap == NULL) { 26900 pp = io->ipsec_out_policy; 26901 ASSERT(pp != NULL); 26902 ap = pp->ipsp_act; 26903 ASSERT(ap != NULL); 26904 } 26905 26906 /* 26907 * Save the outbound ill index. When the packet comes back 26908 * from IPsec, we make sure the ill hasn't changed or disappeared 26909 * before sending it the accelerated packet. 26910 */ 26911 if ((ire != NULL) && (io->ipsec_out_capab_ill_index == 0)) { 26912 int ifindex; 26913 ill = ire_to_ill(ire); 26914 ifindex = ill->ill_phyint->phyint_ifindex; 26915 io->ipsec_out_capab_ill_index = ifindex; 26916 } 26917 26918 /* 26919 * The order of processing is first insert a IP header if needed. 26920 * Then insert the ESP header and then the AH header. 26921 */ 26922 if ((io->ipsec_out_se_done == B_FALSE) && 26923 (ap->ipa_want_se)) { 26924 /* 26925 * First get the outer IP header before sending 26926 * it to ESP. 26927 */ 26928 ipha_t *oipha, *iipha; 26929 mblk_t *outer_mp, *inner_mp; 26930 26931 if ((outer_mp = allocb(sizeof (ipha_t), BPRI_HI)) == NULL) { 26932 (void) mi_strlog(q, 0, SL_ERROR|SL_TRACE|SL_CONSOLE, 26933 "ipsec_out_process: " 26934 "Self-Encapsulation failed: Out of memory\n"); 26935 freemsg(ipsec_mp); 26936 if (ill != NULL) { 26937 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutDiscards); 26938 } else { 26939 BUMP_MIB(&ipst->ips_ip_mib, 26940 ipIfStatsOutDiscards); 26941 } 26942 return; 26943 } 26944 inner_mp = ipsec_mp->b_cont; 26945 ASSERT(inner_mp->b_datap->db_type == M_DATA); 26946 oipha = (ipha_t *)outer_mp->b_rptr; 26947 iipha = (ipha_t *)inner_mp->b_rptr; 26948 *oipha = *iipha; 26949 outer_mp->b_wptr += sizeof (ipha_t); 26950 oipha->ipha_length = htons(ntohs(iipha->ipha_length) + 26951 sizeof (ipha_t)); 26952 oipha->ipha_protocol = IPPROTO_ENCAP; 26953 oipha->ipha_version_and_hdr_length = 26954 IP_SIMPLE_HDR_VERSION; 26955 oipha->ipha_hdr_checksum = 0; 26956 oipha->ipha_hdr_checksum = ip_csum_hdr(oipha); 26957 outer_mp->b_cont = inner_mp; 26958 ipsec_mp->b_cont = outer_mp; 26959 26960 io->ipsec_out_se_done = B_TRUE; 26961 io->ipsec_out_tunnel = B_TRUE; 26962 } 26963 26964 if (((ap->ipa_want_ah && (io->ipsec_out_ah_sa == NULL)) || 26965 (ap->ipa_want_esp && (io->ipsec_out_esp_sa == NULL))) && 26966 !ipsec_out_select_sa(ipsec_mp)) 26967 return; 26968 26969 /* 26970 * By now, we know what SA's to use. Toss over to ESP & AH 26971 * to do the heavy lifting. 26972 */ 26973 zoneid = io->ipsec_out_zoneid; 26974 ASSERT(zoneid != ALL_ZONES); 26975 if ((io->ipsec_out_esp_done == B_FALSE) && (ap->ipa_want_esp)) { 26976 ASSERT(io->ipsec_out_esp_sa != NULL); 26977 io->ipsec_out_esp_done = B_TRUE; 26978 /* 26979 * Note that since hw accel can only apply one transform, 26980 * not two, we skip hw accel for ESP if we also have AH 26981 * This is an design limitation of the interface 26982 * which should be revisited. 26983 */ 26984 ASSERT(ire != NULL); 26985 if (io->ipsec_out_ah_sa == NULL) { 26986 ill = (ill_t *)ire->ire_stq->q_ptr; 26987 ipsec_out_is_accelerated(ipsec_mp, 26988 io->ipsec_out_esp_sa, ill, ire); 26989 } 26990 26991 ipsec_rc = io->ipsec_out_esp_sa->ipsa_output_func(ipsec_mp); 26992 switch (ipsec_rc) { 26993 case IPSEC_STATUS_SUCCESS: 26994 break; 26995 case IPSEC_STATUS_FAILED: 26996 if (ill != NULL) { 26997 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutDiscards); 26998 } else { 26999 BUMP_MIB(&ipst->ips_ip_mib, 27000 ipIfStatsOutDiscards); 27001 } 27002 /* FALLTHRU */ 27003 case IPSEC_STATUS_PENDING: 27004 return; 27005 } 27006 } 27007 27008 if ((io->ipsec_out_ah_done == B_FALSE) && (ap->ipa_want_ah)) { 27009 ASSERT(io->ipsec_out_ah_sa != NULL); 27010 io->ipsec_out_ah_done = B_TRUE; 27011 if (ire == NULL) { 27012 int idx = io->ipsec_out_capab_ill_index; 27013 ill = ill_lookup_on_ifindex(idx, B_FALSE, 27014 NULL, NULL, NULL, NULL, ipst); 27015 ill_need_rele = B_TRUE; 27016 } else { 27017 ill = (ill_t *)ire->ire_stq->q_ptr; 27018 } 27019 ipsec_out_is_accelerated(ipsec_mp, io->ipsec_out_ah_sa, ill, 27020 ire); 27021 27022 ipsec_rc = io->ipsec_out_ah_sa->ipsa_output_func(ipsec_mp); 27023 switch (ipsec_rc) { 27024 case IPSEC_STATUS_SUCCESS: 27025 break; 27026 case IPSEC_STATUS_FAILED: 27027 if (ill != NULL) { 27028 BUMP_MIB(ill->ill_ip_mib, ipIfStatsOutDiscards); 27029 } else { 27030 BUMP_MIB(&ipst->ips_ip_mib, 27031 ipIfStatsOutDiscards); 27032 } 27033 /* FALLTHRU */ 27034 case IPSEC_STATUS_PENDING: 27035 if (ill != NULL && ill_need_rele) 27036 ill_refrele(ill); 27037 return; 27038 } 27039 } 27040 /* 27041 * We are done with IPSEC processing. Send it over 27042 * the wire. 27043 */ 27044 done: 27045 mp = ipsec_mp->b_cont; 27046 ipha = (ipha_t *)mp->b_rptr; 27047 if (IPH_HDR_VERSION(ipha) == IP_VERSION) { 27048 ip_wput_ipsec_out(q, ipsec_mp, ipha, ill, ire); 27049 } else { 27050 ip6h = (ip6_t *)ipha; 27051 ip_wput_ipsec_out_v6(q, ipsec_mp, ip6h, ill, ire); 27052 } 27053 if (ill != NULL && ill_need_rele) 27054 ill_refrele(ill); 27055 } 27056 27057 /* ARGSUSED */ 27058 void 27059 ip_restart_optmgmt(ipsq_t *dummy_sq, queue_t *q, mblk_t *first_mp, void *dummy) 27060 { 27061 opt_restart_t *or; 27062 int err; 27063 conn_t *connp; 27064 27065 ASSERT(CONN_Q(q)); 27066 connp = Q_TO_CONN(q); 27067 27068 ASSERT(first_mp->b_datap->db_type == M_CTL); 27069 or = (opt_restart_t *)first_mp->b_rptr; 27070 /* 27071 * We don't need to pass any credentials here since this is just 27072 * a restart. The credentials are passed in when svr4_optcom_req 27073 * is called the first time (from ip_wput_nondata). 27074 */ 27075 if (or->or_type == T_SVR4_OPTMGMT_REQ) { 27076 err = svr4_optcom_req(q, first_mp, NULL, 27077 &ip_opt_obj); 27078 } else { 27079 ASSERT(or->or_type == T_OPTMGMT_REQ); 27080 err = tpi_optcom_req(q, first_mp, NULL, 27081 &ip_opt_obj); 27082 } 27083 if (err != EINPROGRESS) { 27084 /* operation is done */ 27085 CONN_OPER_PENDING_DONE(connp); 27086 } 27087 } 27088 27089 /* 27090 * ioctls that go through a down/up sequence may need to wait for the down 27091 * to complete. This involves waiting for the ire and ipif refcnts to go down 27092 * to zero. Subsequently the ioctl is restarted from ipif_ill_refrele_tail. 27093 */ 27094 /* ARGSUSED */ 27095 void 27096 ip_reprocess_ioctl(ipsq_t *ipsq, queue_t *q, mblk_t *mp, void *dummy_arg) 27097 { 27098 struct iocblk *iocp; 27099 mblk_t *mp1; 27100 ip_ioctl_cmd_t *ipip; 27101 int err; 27102 sin_t *sin; 27103 struct lifreq *lifr; 27104 struct ifreq *ifr; 27105 27106 iocp = (struct iocblk *)mp->b_rptr; 27107 ASSERT(ipsq != NULL); 27108 /* Existence of mp1 verified in ip_wput_nondata */ 27109 mp1 = mp->b_cont->b_cont; 27110 ipip = ip_sioctl_lookup(iocp->ioc_cmd); 27111 if (ipip->ipi_cmd == SIOCSLIFNAME || ipip->ipi_cmd == IF_UNITSEL) { 27112 /* 27113 * Special case where ipsq_current_ipif is not set: 27114 * ill_phyint_reinit merged the v4 and v6 into a single ipsq. 27115 * ill could also have become part of a ipmp group in the 27116 * process, we are here as were not able to complete the 27117 * operation in ipif_set_values because we could not become 27118 * exclusive on the new ipsq, In such a case ipsq_current_ipif 27119 * will not be set so we need to set it. 27120 */ 27121 ill_t *ill = q->q_ptr; 27122 ipsq_current_start(ipsq, ill->ill_ipif, ipip->ipi_cmd); 27123 } 27124 ASSERT(ipsq->ipsq_current_ipif != NULL); 27125 27126 if (ipip->ipi_cmd_type == IF_CMD) { 27127 /* This a old style SIOC[GS]IF* command */ 27128 ifr = (struct ifreq *)mp1->b_rptr; 27129 sin = (sin_t *)&ifr->ifr_addr; 27130 } else if (ipip->ipi_cmd_type == LIF_CMD) { 27131 /* This a new style SIOC[GS]LIF* command */ 27132 lifr = (struct lifreq *)mp1->b_rptr; 27133 sin = (sin_t *)&lifr->lifr_addr; 27134 } else { 27135 sin = NULL; 27136 } 27137 27138 err = (*ipip->ipi_func_restart)(ipsq->ipsq_current_ipif, sin, q, mp, 27139 ipip, mp1->b_rptr); 27140 27141 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), ipsq); 27142 } 27143 27144 /* 27145 * ioctl processing 27146 * 27147 * ioctl processing starts with ip_sioctl_copyin_setup which looks up 27148 * the ioctl command in the ioctl tables and determines the copyin data size 27149 * from the ioctl property ipi_copyin_size, and does an mi_copyin() of that 27150 * size. 27151 * 27152 * ioctl processing then continues when the M_IOCDATA makes its way down. 27153 * Now the ioctl is looked up again in the ioctl table, and its properties are 27154 * extracted. The associated 'conn' is then refheld till the end of the ioctl 27155 * and the general ioctl processing function ip_process_ioctl is called. 27156 * ip_process_ioctl determines if the ioctl needs to be serialized, and if 27157 * so goes thru the serialization primitive ipsq_try_enter. Then the 27158 * appropriate function to handle the ioctl is called based on the entry in 27159 * the ioctl table. ioctl completion is encapsulated in ip_ioctl_finish 27160 * which also refreleases the 'conn' that was refheld at the start of the 27161 * ioctl. Finally ipsq_exit is called if needed to exit the ipsq. 27162 * ip_extract_lifreq_cmn extracts the interface name from the lifreq/ifreq 27163 * struct and looks up the ipif. ip_extract_tunreq handles the case of tunnel. 27164 * 27165 * Many exclusive ioctls go thru an internal down up sequence as part of 27166 * the operation. For example an attempt to change the IP address of an 27167 * ipif entails ipif_down, set address, ipif_up. Bringing down the interface 27168 * does all the cleanup such as deleting all ires that use this address. 27169 * Then we need to wait till all references to the interface go away. 27170 */ 27171 void 27172 ip_process_ioctl(ipsq_t *ipsq, queue_t *q, mblk_t *mp, void *arg) 27173 { 27174 struct iocblk *iocp = (struct iocblk *)mp->b_rptr; 27175 ip_ioctl_cmd_t *ipip = (ip_ioctl_cmd_t *)arg; 27176 cmd_info_t ci; 27177 int err; 27178 boolean_t entered_ipsq = B_FALSE; 27179 27180 ip3dbg(("ip_process_ioctl: ioctl %X\n", iocp->ioc_cmd)); 27181 27182 if (ipip == NULL) 27183 ipip = ip_sioctl_lookup(iocp->ioc_cmd); 27184 27185 /* 27186 * SIOCLIFADDIF needs to go thru a special path since the 27187 * ill may not exist yet. This happens in the case of lo0 27188 * which is created using this ioctl. 27189 */ 27190 if (ipip->ipi_cmd == SIOCLIFADDIF) { 27191 err = ip_sioctl_addif(NULL, NULL, q, mp, NULL, NULL); 27192 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), NULL); 27193 return; 27194 } 27195 27196 ci.ci_ipif = NULL; 27197 switch (ipip->ipi_cmd_type) { 27198 case IF_CMD: 27199 case LIF_CMD: 27200 /* 27201 * ioctls that pass in a [l]ifreq appear here. 27202 * ip_extract_lifreq_cmn returns a refheld ipif in 27203 * ci.ci_ipif 27204 */ 27205 err = ip_extract_lifreq_cmn(q, mp, ipip->ipi_cmd_type, 27206 ipip->ipi_flags, &ci, ip_process_ioctl); 27207 if (err != 0) { 27208 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), NULL); 27209 return; 27210 } 27211 ASSERT(ci.ci_ipif != NULL); 27212 break; 27213 27214 case TUN_CMD: 27215 /* 27216 * SIOC[GS]TUNPARAM appear here. ip_extract_tunreq returns 27217 * a refheld ipif in ci.ci_ipif 27218 */ 27219 err = ip_extract_tunreq(q, mp, &ci.ci_ipif, ip_process_ioctl); 27220 if (err != 0) { 27221 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), NULL); 27222 return; 27223 } 27224 ASSERT(ci.ci_ipif != NULL); 27225 break; 27226 27227 case MISC_CMD: 27228 /* 27229 * ioctls that neither pass in [l]ifreq or iftun_req come here 27230 * For eg. SIOCGLIFCONF will appear here. 27231 */ 27232 switch (ipip->ipi_cmd) { 27233 case IF_UNITSEL: 27234 /* ioctl comes down the ill */ 27235 ci.ci_ipif = ((ill_t *)q->q_ptr)->ill_ipif; 27236 ipif_refhold(ci.ci_ipif); 27237 break; 27238 case SIOCGMSFILTER: 27239 case SIOCSMSFILTER: 27240 case SIOCGIPMSFILTER: 27241 case SIOCSIPMSFILTER: 27242 err = ip_extract_msfilter(q, mp, &ci.ci_ipif, 27243 ip_process_ioctl); 27244 if (err != 0) { 27245 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), 27246 NULL); 27247 } 27248 break; 27249 } 27250 err = 0; 27251 ci.ci_sin = NULL; 27252 ci.ci_sin6 = NULL; 27253 ci.ci_lifr = NULL; 27254 break; 27255 } 27256 27257 /* 27258 * If ipsq is non-null, we are already being called exclusively 27259 */ 27260 ASSERT(ipsq == NULL || IAM_WRITER_IPSQ(ipsq)); 27261 if (!(ipip->ipi_flags & IPI_WR)) { 27262 /* 27263 * A return value of EINPROGRESS means the ioctl is 27264 * either queued and waiting for some reason or has 27265 * already completed. 27266 */ 27267 err = (*ipip->ipi_func)(ci.ci_ipif, ci.ci_sin, q, mp, ipip, 27268 ci.ci_lifr); 27269 if (ci.ci_ipif != NULL) 27270 ipif_refrele(ci.ci_ipif); 27271 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), NULL); 27272 return; 27273 } 27274 27275 ASSERT(ci.ci_ipif != NULL); 27276 27277 if (ipsq == NULL) { 27278 ipsq = ipsq_try_enter(ci.ci_ipif, NULL, q, mp, 27279 ip_process_ioctl, NEW_OP, B_TRUE); 27280 entered_ipsq = B_TRUE; 27281 } 27282 /* 27283 * Release the ipif so that ipif_down and friends that wait for 27284 * references to go away are not misled about the current ipif_refcnt 27285 * values. We are writer so we can access the ipif even after releasing 27286 * the ipif. 27287 */ 27288 ipif_refrele(ci.ci_ipif); 27289 if (ipsq == NULL) 27290 return; 27291 27292 ipsq_current_start(ipsq, ci.ci_ipif, ipip->ipi_cmd); 27293 27294 /* 27295 * For most set ioctls that come here, this serves as a single point 27296 * where we set the IPIF_CHANGING flag. This ensures that there won't 27297 * be any new references to the ipif. This helps functions that go 27298 * through this path and end up trying to wait for the refcnts 27299 * associated with the ipif to go down to zero. Some exceptions are 27300 * Failover, Failback, and Groupname commands that operate on more than 27301 * just the ci.ci_ipif. These commands internally determine the 27302 * set of ipif's they operate on and set and clear the IPIF_CHANGING 27303 * flags on that set. Another exception is the Removeif command that 27304 * sets the IPIF_CONDEMNED flag internally after identifying the right 27305 * ipif to operate on. 27306 */ 27307 mutex_enter(&(ci.ci_ipif)->ipif_ill->ill_lock); 27308 if (ipip->ipi_cmd != SIOCLIFREMOVEIF && 27309 ipip->ipi_cmd != SIOCLIFFAILOVER && 27310 ipip->ipi_cmd != SIOCLIFFAILBACK && 27311 ipip->ipi_cmd != SIOCSLIFGROUPNAME) 27312 (ci.ci_ipif)->ipif_state_flags |= IPIF_CHANGING; 27313 mutex_exit(&(ci.ci_ipif)->ipif_ill->ill_lock); 27314 27315 /* 27316 * A return value of EINPROGRESS means the ioctl is 27317 * either queued and waiting for some reason or has 27318 * already completed. 27319 */ 27320 err = (*ipip->ipi_func)(ci.ci_ipif, ci.ci_sin, q, mp, ipip, ci.ci_lifr); 27321 27322 ip_ioctl_finish(q, mp, err, IPI2MODE(ipip), ipsq); 27323 27324 if (entered_ipsq) 27325 ipsq_exit(ipsq, B_TRUE, B_TRUE); 27326 } 27327 27328 /* 27329 * Complete the ioctl. Typically ioctls use the mi package and need to 27330 * do mi_copyout/mi_copy_done. 27331 */ 27332 void 27333 ip_ioctl_finish(queue_t *q, mblk_t *mp, int err, int mode, ipsq_t *ipsq) 27334 { 27335 conn_t *connp = NULL; 27336 27337 if (err == EINPROGRESS) 27338 return; 27339 27340 if (CONN_Q(q)) { 27341 connp = Q_TO_CONN(q); 27342 ASSERT(connp->conn_ref >= 2); 27343 } 27344 27345 switch (mode) { 27346 case COPYOUT: 27347 if (err == 0) 27348 mi_copyout(q, mp); 27349 else 27350 mi_copy_done(q, mp, err); 27351 break; 27352 27353 case NO_COPYOUT: 27354 mi_copy_done(q, mp, err); 27355 break; 27356 27357 default: 27358 ASSERT(mode == CONN_CLOSE); /* aborted through CONN_CLOSE */ 27359 break; 27360 } 27361 27362 /* 27363 * The refhold placed at the start of the ioctl is released here. 27364 */ 27365 if (connp != NULL) 27366 CONN_OPER_PENDING_DONE(connp); 27367 27368 if (ipsq != NULL) 27369 ipsq_current_finish(ipsq); 27370 } 27371 27372 /* 27373 * This is called from ip_wput_nondata to resume a deferred TCP bind. 27374 */ 27375 /* ARGSUSED */ 27376 void 27377 ip_resume_tcp_bind(void *arg, mblk_t *mp, void *arg2) 27378 { 27379 conn_t *connp = arg; 27380 tcp_t *tcp; 27381 27382 ASSERT(connp != NULL && IPCL_IS_TCP(connp) && connp->conn_tcp != NULL); 27383 tcp = connp->conn_tcp; 27384 27385 if (connp->conn_tcp->tcp_state == TCPS_CLOSED) 27386 freemsg(mp); 27387 else 27388 tcp_rput_other(tcp, mp); 27389 CONN_OPER_PENDING_DONE(connp); 27390 } 27391 27392 /* Called from ip_wput for all non data messages */ 27393 /* ARGSUSED */ 27394 void 27395 ip_wput_nondata(ipsq_t *ipsq, queue_t *q, mblk_t *mp, void *dummy_arg) 27396 { 27397 mblk_t *mp1; 27398 ire_t *ire, *fake_ire; 27399 ill_t *ill; 27400 struct iocblk *iocp; 27401 ip_ioctl_cmd_t *ipip; 27402 cred_t *cr; 27403 conn_t *connp; 27404 int cmd, err; 27405 nce_t *nce; 27406 ipif_t *ipif; 27407 ip_stack_t *ipst; 27408 char *proto_str; 27409 27410 if (CONN_Q(q)) { 27411 connp = Q_TO_CONN(q); 27412 ipst = connp->conn_netstack->netstack_ip; 27413 } else { 27414 connp = NULL; 27415 ipst = ILLQ_TO_IPST(q); 27416 } 27417 27418 cr = DB_CREDDEF(mp, GET_QUEUE_CRED(q)); 27419 27420 /* Check if it is a queue to /dev/sctp. */ 27421 if (connp != NULL && connp->conn_ulp == IPPROTO_SCTP && 27422 connp->conn_rq == NULL) { 27423 sctp_wput(q, mp); 27424 return; 27425 } 27426 27427 switch (DB_TYPE(mp)) { 27428 case M_IOCTL: 27429 /* 27430 * IOCTL processing begins in ip_sioctl_copyin_setup which 27431 * will arrange to copy in associated control structures. 27432 */ 27433 ip_sioctl_copyin_setup(q, mp); 27434 return; 27435 case M_IOCDATA: 27436 /* 27437 * Ensure that this is associated with one of our trans- 27438 * parent ioctls. If it's not ours, discard it if we're 27439 * running as a driver, or pass it on if we're a module. 27440 */ 27441 iocp = (struct iocblk *)mp->b_rptr; 27442 ipip = ip_sioctl_lookup(iocp->ioc_cmd); 27443 if (ipip == NULL) { 27444 if (q->q_next == NULL) { 27445 goto nak; 27446 } else { 27447 putnext(q, mp); 27448 } 27449 return; 27450 } else if ((q->q_next != NULL) && 27451 !(ipip->ipi_flags & IPI_MODOK)) { 27452 /* 27453 * the ioctl is one we recognise, but is not 27454 * consumed by IP as a module, pass M_IOCDATA 27455 * for processing downstream, but only for 27456 * common Streams ioctls. 27457 */ 27458 if (ipip->ipi_flags & IPI_PASS_DOWN) { 27459 putnext(q, mp); 27460 return; 27461 } else { 27462 goto nak; 27463 } 27464 } 27465 27466 /* IOCTL continuation following copyin or copyout. */ 27467 if (mi_copy_state(q, mp, NULL) == -1) { 27468 /* 27469 * The copy operation failed. mi_copy_state already 27470 * cleaned up, so we're out of here. 27471 */ 27472 return; 27473 } 27474 /* 27475 * If we just completed a copy in, we become writer and 27476 * continue processing in ip_sioctl_copyin_done. If it 27477 * was a copy out, we call mi_copyout again. If there is 27478 * nothing more to copy out, it will complete the IOCTL. 27479 */ 27480 if (MI_COPY_DIRECTION(mp) == MI_COPY_IN) { 27481 if (!(mp1 = mp->b_cont) || !(mp1 = mp1->b_cont)) { 27482 mi_copy_done(q, mp, EPROTO); 27483 return; 27484 } 27485 /* 27486 * Check for cases that need more copying. A return 27487 * value of 0 means a second copyin has been started, 27488 * so we return; a return value of 1 means no more 27489 * copying is needed, so we continue. 27490 */ 27491 cmd = iocp->ioc_cmd; 27492 if ((cmd == SIOCGMSFILTER || cmd == SIOCSMSFILTER || 27493 cmd == SIOCGIPMSFILTER || cmd == SIOCSIPMSFILTER) && 27494 MI_COPY_COUNT(mp) == 1) { 27495 if (ip_copyin_msfilter(q, mp) == 0) 27496 return; 27497 } 27498 /* 27499 * Refhold the conn, till the ioctl completes. This is 27500 * needed in case the ioctl ends up in the pending mp 27501 * list. Every mp in the ill_pending_mp list and 27502 * the ipsq_pending_mp must have a refhold on the conn 27503 * to resume processing. The refhold is released when 27504 * the ioctl completes. (normally or abnormally) 27505 * In all cases ip_ioctl_finish is called to finish 27506 * the ioctl. 27507 */ 27508 if (connp != NULL) { 27509 /* This is not a reentry */ 27510 ASSERT(ipsq == NULL); 27511 CONN_INC_REF(connp); 27512 } else { 27513 if (!(ipip->ipi_flags & IPI_MODOK)) { 27514 mi_copy_done(q, mp, EINVAL); 27515 return; 27516 } 27517 } 27518 27519 ip_process_ioctl(ipsq, q, mp, ipip); 27520 27521 } else { 27522 mi_copyout(q, mp); 27523 } 27524 return; 27525 nak: 27526 iocp->ioc_error = EINVAL; 27527 mp->b_datap->db_type = M_IOCNAK; 27528 iocp->ioc_count = 0; 27529 qreply(q, mp); 27530 return; 27531 27532 case M_IOCNAK: 27533 /* 27534 * The only way we could get here is if a resolver didn't like 27535 * an IOCTL we sent it. This shouldn't happen. 27536 */ 27537 (void) mi_strlog(q, 1, SL_ERROR|SL_TRACE, 27538 "ip_wput: unexpected M_IOCNAK, ioc_cmd 0x%x", 27539 ((struct iocblk *)mp->b_rptr)->ioc_cmd); 27540 freemsg(mp); 27541 return; 27542 case M_IOCACK: 27543 /* /dev/ip shouldn't see this */ 27544 if (CONN_Q(q)) 27545 goto nak; 27546 27547 /* Finish socket ioctls passed through to ARP. */ 27548 ip_sioctl_iocack(q, mp); 27549 return; 27550 case M_FLUSH: 27551 if (*mp->b_rptr & FLUSHW) 27552 flushq(q, FLUSHALL); 27553 if (q->q_next) { 27554 /* 27555 * M_FLUSH is sent up to IP by some drivers during 27556 * unbind. ip_rput has already replied to it. We are 27557 * here for the M_FLUSH that we originated in IP 27558 * before sending the unbind request to the driver. 27559 * Just free it as we don't queue packets in IP 27560 * on the write side of the device instance. 27561 */ 27562 freemsg(mp); 27563 return; 27564 } 27565 if (*mp->b_rptr & FLUSHR) { 27566 *mp->b_rptr &= ~FLUSHW; 27567 qreply(q, mp); 27568 return; 27569 } 27570 freemsg(mp); 27571 return; 27572 case IRE_DB_REQ_TYPE: 27573 if (connp == NULL) { 27574 proto_str = "IRE_DB_REQ_TYPE"; 27575 goto protonak; 27576 } 27577 /* An Upper Level Protocol wants a copy of an IRE. */ 27578 ip_ire_req(q, mp); 27579 return; 27580 case M_CTL: 27581 if (mp->b_wptr - mp->b_rptr < sizeof (uint32_t)) 27582 break; 27583 27584 if (((ipsec_info_t *)mp->b_rptr)->ipsec_info_type == 27585 TUN_HELLO) { 27586 ASSERT(connp != NULL); 27587 connp->conn_flags |= IPCL_IPTUN; 27588 freeb(mp); 27589 return; 27590 } 27591 27592 if (connp != NULL && *(uint32_t *)mp->b_rptr == 27593 IP_ULP_OUT_LABELED) { 27594 out_labeled_t *olp; 27595 27596 if (mp->b_wptr - mp->b_rptr != sizeof (*olp)) 27597 break; 27598 olp = (out_labeled_t *)mp->b_rptr; 27599 connp->conn_ulp_labeled = olp->out_qnext == q; 27600 freemsg(mp); 27601 return; 27602 } 27603 27604 /* M_CTL messages are used by ARP to tell us things. */ 27605 if ((mp->b_wptr - mp->b_rptr) < sizeof (arc_t)) 27606 break; 27607 switch (((arc_t *)mp->b_rptr)->arc_cmd) { 27608 case AR_ENTRY_SQUERY: 27609 ip_wput_ctl(q, mp); 27610 return; 27611 case AR_CLIENT_NOTIFY: 27612 ip_arp_news(q, mp); 27613 return; 27614 case AR_DLPIOP_DONE: 27615 ASSERT(q->q_next != NULL); 27616 ill = (ill_t *)q->q_ptr; 27617 /* qwriter_ip releases the refhold */ 27618 /* refhold on ill stream is ok without ILL_CAN_LOOKUP */ 27619 ill_refhold(ill); 27620 (void) qwriter_ip(NULL, ill, q, mp, ip_arp_done, 27621 CUR_OP, B_FALSE); 27622 return; 27623 case AR_ARP_CLOSING: 27624 /* 27625 * ARP (above us) is closing. If no ARP bringup is 27626 * currently pending, ack the message so that ARP 27627 * can complete its close. Also mark ill_arp_closing 27628 * so that new ARP bringups will fail. If any 27629 * ARP bringup is currently in progress, we will 27630 * ack this when the current ARP bringup completes. 27631 */ 27632 ASSERT(q->q_next != NULL); 27633 ill = (ill_t *)q->q_ptr; 27634 mutex_enter(&ill->ill_lock); 27635 ill->ill_arp_closing = 1; 27636 if (!ill->ill_arp_bringup_pending) { 27637 mutex_exit(&ill->ill_lock); 27638 qreply(q, mp); 27639 } else { 27640 mutex_exit(&ill->ill_lock); 27641 freemsg(mp); 27642 } 27643 return; 27644 case AR_ARP_EXTEND: 27645 /* 27646 * The ARP module above us is capable of duplicate 27647 * address detection. Old ATM drivers will not send 27648 * this message. 27649 */ 27650 ASSERT(q->q_next != NULL); 27651 ill = (ill_t *)q->q_ptr; 27652 ill->ill_arp_extend = B_TRUE; 27653 freemsg(mp); 27654 return; 27655 default: 27656 break; 27657 } 27658 break; 27659 case M_PROTO: 27660 case M_PCPROTO: 27661 /* 27662 * The only PROTO messages we expect are ULP binds and 27663 * copies of option negotiation acknowledgements. 27664 */ 27665 switch (((union T_primitives *)mp->b_rptr)->type) { 27666 case O_T_BIND_REQ: 27667 case T_BIND_REQ: { 27668 /* Request can get queued in bind */ 27669 if (connp == NULL) { 27670 proto_str = "O_T_BIND_REQ/T_BIND_REQ"; 27671 goto protonak; 27672 } 27673 /* 27674 * Both TCP and UDP call ip_bind_{v4,v6}() directly 27675 * instead of going through this path. We only get 27676 * here in the following cases: 27677 * 27678 * a. Bind retries, where ipsq is non-NULL. 27679 * b. T_BIND_REQ is issued from non TCP/UDP 27680 * transport, e.g. icmp for raw socket, 27681 * in which case ipsq will be NULL. 27682 */ 27683 ASSERT(ipsq != NULL || 27684 (!IPCL_IS_TCP(connp) && !IPCL_IS_UDP(connp))); 27685 27686 /* Don't increment refcnt if this is a re-entry */ 27687 if (ipsq == NULL) 27688 CONN_INC_REF(connp); 27689 mp = connp->conn_af_isv6 ? ip_bind_v6(q, mp, 27690 connp, NULL) : ip_bind_v4(q, mp, connp); 27691 if (mp == NULL) 27692 return; 27693 if (IPCL_IS_TCP(connp)) { 27694 /* 27695 * In the case of TCP endpoint we 27696 * come here only for bind retries 27697 */ 27698 ASSERT(ipsq != NULL); 27699 CONN_INC_REF(connp); 27700 squeue_fill(connp->conn_sqp, mp, 27701 ip_resume_tcp_bind, connp, 27702 SQTAG_BIND_RETRY); 27703 return; 27704 } else if (IPCL_IS_UDP(connp)) { 27705 /* 27706 * In the case of UDP endpoint we 27707 * come here only for bind retries 27708 */ 27709 ASSERT(ipsq != NULL); 27710 udp_resume_bind(connp, mp); 27711 return; 27712 } 27713 qreply(q, mp); 27714 CONN_OPER_PENDING_DONE(connp); 27715 return; 27716 } 27717 case T_SVR4_OPTMGMT_REQ: 27718 ip2dbg(("ip_wput: T_SVR4_OPTMGMT_REQ flags %x\n", 27719 ((struct T_optmgmt_req *)mp->b_rptr)->MGMT_flags)); 27720 27721 if (connp == NULL) { 27722 proto_str = "T_SVR4_OPTMGMT_REQ"; 27723 goto protonak; 27724 } 27725 27726 if (!snmpcom_req(q, mp, ip_snmp_set, 27727 ip_snmp_get, cr)) { 27728 /* 27729 * Call svr4_optcom_req so that it can 27730 * generate the ack. We don't come here 27731 * if this operation is being restarted. 27732 * ip_restart_optmgmt will drop the conn ref. 27733 * In the case of ipsec option after the ipsec 27734 * load is complete conn_restart_ipsec_waiter 27735 * drops the conn ref. 27736 */ 27737 ASSERT(ipsq == NULL); 27738 CONN_INC_REF(connp); 27739 if (ip_check_for_ipsec_opt(q, mp)) 27740 return; 27741 err = svr4_optcom_req(q, mp, cr, &ip_opt_obj); 27742 if (err != EINPROGRESS) { 27743 /* Operation is done */ 27744 CONN_OPER_PENDING_DONE(connp); 27745 } 27746 } 27747 return; 27748 case T_OPTMGMT_REQ: 27749 ip2dbg(("ip_wput: T_OPTMGMT_REQ\n")); 27750 /* 27751 * Note: No snmpcom_req support through new 27752 * T_OPTMGMT_REQ. 27753 * Call tpi_optcom_req so that it can 27754 * generate the ack. 27755 */ 27756 if (connp == NULL) { 27757 proto_str = "T_OPTMGMT_REQ"; 27758 goto protonak; 27759 } 27760 27761 ASSERT(ipsq == NULL); 27762 /* 27763 * We don't come here for restart. ip_restart_optmgmt 27764 * will drop the conn ref. In the case of ipsec option 27765 * after the ipsec load is complete 27766 * conn_restart_ipsec_waiter drops the conn ref. 27767 */ 27768 CONN_INC_REF(connp); 27769 if (ip_check_for_ipsec_opt(q, mp)) 27770 return; 27771 err = tpi_optcom_req(q, mp, cr, &ip_opt_obj); 27772 if (err != EINPROGRESS) { 27773 /* Operation is done */ 27774 CONN_OPER_PENDING_DONE(connp); 27775 } 27776 return; 27777 case T_UNBIND_REQ: 27778 if (connp == NULL) { 27779 proto_str = "T_UNBIND_REQ"; 27780 goto protonak; 27781 } 27782 mp = ip_unbind(q, mp); 27783 qreply(q, mp); 27784 return; 27785 default: 27786 /* 27787 * Have to drop any DLPI messages coming down from 27788 * arp (such as an info_req which would cause ip 27789 * to receive an extra info_ack if it was passed 27790 * through. 27791 */ 27792 ip1dbg(("ip_wput_nondata: dropping M_PROTO %d\n", 27793 (int)*(uint_t *)mp->b_rptr)); 27794 freemsg(mp); 27795 return; 27796 } 27797 /* NOTREACHED */ 27798 case IRE_DB_TYPE: { 27799 nce_t *nce; 27800 ill_t *ill; 27801 in6_addr_t gw_addr_v6; 27802 27803 27804 /* 27805 * This is a response back from a resolver. It 27806 * consists of a message chain containing: 27807 * IRE_MBLK-->LL_HDR_MBLK->pkt 27808 * The IRE_MBLK is the one we allocated in ip_newroute. 27809 * The LL_HDR_MBLK is the DLPI header to use to get 27810 * the attached packet, and subsequent ones for the 27811 * same destination, transmitted. 27812 */ 27813 if ((mp->b_wptr - mp->b_rptr) != sizeof (ire_t)) /* ire */ 27814 break; 27815 /* 27816 * First, check to make sure the resolution succeeded. 27817 * If it failed, the second mblk will be empty. 27818 * If it is, free the chain, dropping the packet. 27819 * (We must ire_delete the ire; that frees the ire mblk) 27820 * We're doing this now to support PVCs for ATM; it's 27821 * a partial xresolv implementation. When we fully implement 27822 * xresolv interfaces, instead of freeing everything here 27823 * we'll initiate neighbor discovery. 27824 * 27825 * For v4 (ARP and other external resolvers) the resolver 27826 * frees the message, so no check is needed. This check 27827 * is required, though, for a full xresolve implementation. 27828 * Including this code here now both shows how external 27829 * resolvers can NACK a resolution request using an 27830 * existing design that has no specific provisions for NACKs, 27831 * and also takes into account that the current non-ARP 27832 * external resolver has been coded to use this method of 27833 * NACKing for all IPv6 (xresolv) cases, 27834 * whether our xresolv implementation is complete or not. 27835 * 27836 */ 27837 ire = (ire_t *)mp->b_rptr; 27838 ill = ire_to_ill(ire); 27839 mp1 = mp->b_cont; /* dl_unitdata_req */ 27840 if (mp1->b_rptr == mp1->b_wptr) { 27841 if (ire->ire_ipversion == IPV6_VERSION) { 27842 /* 27843 * XRESOLV interface. 27844 */ 27845 ASSERT(ill->ill_flags & ILLF_XRESOLV); 27846 mutex_enter(&ire->ire_lock); 27847 gw_addr_v6 = ire->ire_gateway_addr_v6; 27848 mutex_exit(&ire->ire_lock); 27849 if (IN6_IS_ADDR_UNSPECIFIED(&gw_addr_v6)) { 27850 nce = ndp_lookup_v6(ill, 27851 &ire->ire_addr_v6, B_FALSE); 27852 } else { 27853 nce = ndp_lookup_v6(ill, &gw_addr_v6, 27854 B_FALSE); 27855 } 27856 if (nce != NULL) { 27857 nce_resolv_failed(nce); 27858 ndp_delete(nce); 27859 NCE_REFRELE(nce); 27860 } 27861 } 27862 mp->b_cont = NULL; 27863 freemsg(mp1); /* frees the pkt as well */ 27864 ASSERT(ire->ire_nce == NULL); 27865 ire_delete((ire_t *)mp->b_rptr); 27866 return; 27867 } 27868 27869 /* 27870 * Split them into IRE_MBLK and pkt and feed it into 27871 * ire_add_then_send. Then in ire_add_then_send 27872 * the IRE will be added, and then the packet will be 27873 * run back through ip_wput. This time it will make 27874 * it to the wire. 27875 */ 27876 mp->b_cont = NULL; 27877 mp = mp1->b_cont; /* now, mp points to pkt */ 27878 mp1->b_cont = NULL; 27879 ip1dbg(("ip_wput_nondata: reply from external resolver \n")); 27880 if (ire->ire_ipversion == IPV6_VERSION) { 27881 /* 27882 * XRESOLV interface. Find the nce and put a copy 27883 * of the dl_unitdata_req in nce_res_mp 27884 */ 27885 ASSERT(ill->ill_flags & ILLF_XRESOLV); 27886 mutex_enter(&ire->ire_lock); 27887 gw_addr_v6 = ire->ire_gateway_addr_v6; 27888 mutex_exit(&ire->ire_lock); 27889 if (IN6_IS_ADDR_UNSPECIFIED(&gw_addr_v6)) { 27890 nce = ndp_lookup_v6(ill, &ire->ire_addr_v6, 27891 B_FALSE); 27892 } else { 27893 nce = ndp_lookup_v6(ill, &gw_addr_v6, B_FALSE); 27894 } 27895 if (nce != NULL) { 27896 /* 27897 * We have to protect nce_res_mp here 27898 * from being accessed by other threads 27899 * while we change the mblk pointer. 27900 * Other functions will also lock the nce when 27901 * accessing nce_res_mp. 27902 * 27903 * The reason we change the mblk pointer 27904 * here rather than copying the resolved address 27905 * into the template is that, unlike with 27906 * ethernet, we have no guarantee that the 27907 * resolved address length will be 27908 * smaller than or equal to the lla length 27909 * with which the template was allocated, 27910 * (for ethernet, they're equal) 27911 * so we have to use the actual resolved 27912 * address mblk - which holds the real 27913 * dl_unitdata_req with the resolved address. 27914 * 27915 * Doing this is the same behavior as was 27916 * previously used in the v4 ARP case. 27917 */ 27918 mutex_enter(&nce->nce_lock); 27919 if (nce->nce_res_mp != NULL) 27920 freemsg(nce->nce_res_mp); 27921 nce->nce_res_mp = mp1; 27922 mutex_exit(&nce->nce_lock); 27923 /* 27924 * We do a fastpath probe here because 27925 * we have resolved the address without 27926 * using Neighbor Discovery. 27927 * In the non-XRESOLV v6 case, the fastpath 27928 * probe is done right after neighbor 27929 * discovery completes. 27930 */ 27931 if (nce->nce_res_mp != NULL) { 27932 int res; 27933 nce_fastpath_list_add(nce); 27934 res = ill_fastpath_probe(ill, 27935 nce->nce_res_mp); 27936 if (res != 0 && res != EAGAIN) 27937 nce_fastpath_list_delete(nce); 27938 } 27939 27940 ire_add_then_send(q, ire, mp); 27941 /* 27942 * Now we have to clean out any packets 27943 * that may have been queued on the nce 27944 * while it was waiting for address resolution 27945 * to complete. 27946 */ 27947 mutex_enter(&nce->nce_lock); 27948 mp1 = nce->nce_qd_mp; 27949 nce->nce_qd_mp = NULL; 27950 mutex_exit(&nce->nce_lock); 27951 while (mp1 != NULL) { 27952 mblk_t *nxt_mp; 27953 queue_t *fwdq = NULL; 27954 ill_t *inbound_ill; 27955 uint_t ifindex; 27956 27957 nxt_mp = mp1->b_next; 27958 mp1->b_next = NULL; 27959 /* 27960 * Retrieve ifindex stored in 27961 * ip_rput_data_v6() 27962 */ 27963 ifindex = 27964 (uint_t)(uintptr_t)mp1->b_prev; 27965 inbound_ill = 27966 ill_lookup_on_ifindex(ifindex, 27967 B_TRUE, NULL, NULL, NULL, 27968 NULL, ipst); 27969 mp1->b_prev = NULL; 27970 if (inbound_ill != NULL) 27971 fwdq = inbound_ill->ill_rq; 27972 27973 if (fwdq != NULL) { 27974 put(fwdq, mp1); 27975 ill_refrele(inbound_ill); 27976 } else 27977 put(WR(ill->ill_rq), mp1); 27978 mp1 = nxt_mp; 27979 } 27980 NCE_REFRELE(nce); 27981 } else { /* nce is NULL; clean up */ 27982 ire_delete(ire); 27983 freemsg(mp); 27984 freemsg(mp1); 27985 return; 27986 } 27987 } else { 27988 nce_t *arpce; 27989 /* 27990 * Link layer resolution succeeded. Recompute the 27991 * ire_nce. 27992 */ 27993 ASSERT(ire->ire_type & (IRE_CACHE|IRE_BROADCAST)); 27994 if ((arpce = ndp_lookup_v4(ill, 27995 (ire->ire_gateway_addr != INADDR_ANY ? 27996 &ire->ire_gateway_addr : &ire->ire_addr), 27997 B_FALSE)) == NULL) { 27998 freeb(ire->ire_mp); 27999 freeb(mp1); 28000 freemsg(mp); 28001 return; 28002 } 28003 mutex_enter(&arpce->nce_lock); 28004 arpce->nce_last = TICK_TO_MSEC(lbolt64); 28005 if (arpce->nce_state == ND_REACHABLE) { 28006 /* 28007 * Someone resolved this before us; 28008 * cleanup the res_mp. Since ire has 28009 * not been added yet, the call to ire_add_v4 28010 * from ire_add_then_send (when a dup is 28011 * detected) will clean up the ire. 28012 */ 28013 freeb(mp1); 28014 } else { 28015 if (arpce->nce_res_mp != NULL) 28016 freemsg(arpce->nce_res_mp); 28017 arpce->nce_res_mp = mp1; 28018 arpce->nce_state = ND_REACHABLE; 28019 } 28020 mutex_exit(&arpce->nce_lock); 28021 if (ire->ire_marks & IRE_MARK_NOADD) { 28022 /* 28023 * this ire will not be added to the ire 28024 * cache table, so we can set the ire_nce 28025 * here, as there are no atomicity constraints. 28026 */ 28027 ire->ire_nce = arpce; 28028 /* 28029 * We are associating this nce with the ire 28030 * so change the nce ref taken in 28031 * ndp_lookup_v4() from 28032 * NCE_REFHOLD to NCE_REFHOLD_NOTR 28033 */ 28034 NCE_REFHOLD_TO_REFHOLD_NOTR(ire->ire_nce); 28035 } else { 28036 NCE_REFRELE(arpce); 28037 } 28038 ire_add_then_send(q, ire, mp); 28039 } 28040 return; /* All is well, the packet has been sent. */ 28041 } 28042 case IRE_ARPRESOLVE_TYPE: { 28043 28044 if ((mp->b_wptr - mp->b_rptr) != sizeof (ire_t)) /* fake_ire */ 28045 break; 28046 mp1 = mp->b_cont; /* dl_unitdata_req */ 28047 mp->b_cont = NULL; 28048 /* 28049 * First, check to make sure the resolution succeeded. 28050 * If it failed, the second mblk will be empty. 28051 */ 28052 if (mp1->b_rptr == mp1->b_wptr) { 28053 /* cleanup the incomplete ire, free queued packets */ 28054 freemsg(mp); /* fake ire */ 28055 freeb(mp1); /* dl_unitdata response */ 28056 return; 28057 } 28058 28059 /* 28060 * update any incomplete nce_t found. we lookup the ctable 28061 * and find the nce from the ire->ire_nce because we need 28062 * to pass the ire to ip_xmit_v4 later, and can find both 28063 * ire and nce in one lookup from the ctable. 28064 */ 28065 fake_ire = (ire_t *)mp->b_rptr; 28066 /* 28067 * By the time we come back here from ARP 28068 * the logical outgoing interface of the incomplete ire 28069 * we added in ire_forward could have disappeared, 28070 * causing the incomplete ire to also have 28071 * dissapeared. So we need to retreive the 28072 * proper ipif for the ire before looking 28073 * in ctable; do the ctablelookup based on ire_ipif_seqid 28074 */ 28075 ill = q->q_ptr; 28076 28077 /* Get the outgoing ipif */ 28078 mutex_enter(&ill->ill_lock); 28079 if (ill->ill_state_flags & ILL_CONDEMNED) { 28080 mutex_exit(&ill->ill_lock); 28081 freemsg(mp); /* fake ire */ 28082 freeb(mp1); /* dl_unitdata response */ 28083 return; 28084 } 28085 ipif = ipif_lookup_seqid(ill, fake_ire->ire_ipif_seqid); 28086 28087 if (ipif == NULL) { 28088 mutex_exit(&ill->ill_lock); 28089 ip1dbg(("logical intrf to incomplete ire vanished\n")); 28090 freemsg(mp); 28091 freeb(mp1); 28092 return; 28093 } 28094 ipif_refhold_locked(ipif); 28095 mutex_exit(&ill->ill_lock); 28096 ire = ire_ctable_lookup(fake_ire->ire_addr, 28097 fake_ire->ire_gateway_addr, IRE_CACHE, 28098 ipif, fake_ire->ire_zoneid, NULL, 28099 (MATCH_IRE_GW|MATCH_IRE_IPIF|MATCH_IRE_ZONEONLY), ipst); 28100 ipif_refrele(ipif); 28101 if (ire == NULL) { 28102 /* 28103 * no ire was found; check if there is an nce 28104 * for this lookup; if it has no ire's pointing at it 28105 * cleanup. 28106 */ 28107 if ((nce = ndp_lookup_v4(ill, 28108 (fake_ire->ire_gateway_addr != INADDR_ANY ? 28109 &fake_ire->ire_gateway_addr : &fake_ire->ire_addr), 28110 B_FALSE)) != NULL) { 28111 /* 28112 * cleanup: 28113 * We check for refcnt 2 (one for the nce 28114 * hash list + 1 for the ref taken by 28115 * ndp_lookup_v4) to check that there are 28116 * no ire's pointing at the nce. 28117 */ 28118 if (nce->nce_refcnt == 2) 28119 ndp_delete(nce); 28120 NCE_REFRELE(nce); 28121 } 28122 freeb(mp1); /* dl_unitdata response */ 28123 freemsg(mp); /* fake ire */ 28124 return; 28125 } 28126 nce = ire->ire_nce; 28127 DTRACE_PROBE2(ire__arpresolve__type, 28128 ire_t *, ire, nce_t *, nce); 28129 ASSERT(nce->nce_state != ND_INITIAL); 28130 mutex_enter(&nce->nce_lock); 28131 nce->nce_last = TICK_TO_MSEC(lbolt64); 28132 if (nce->nce_state == ND_REACHABLE) { 28133 /* 28134 * Someone resolved this before us; 28135 * our response is not needed any more. 28136 */ 28137 mutex_exit(&nce->nce_lock); 28138 freeb(mp1); /* dl_unitdata response */ 28139 } else { 28140 if (nce->nce_res_mp != NULL) { 28141 freemsg(nce->nce_res_mp); 28142 /* existing dl_unitdata template */ 28143 } 28144 nce->nce_res_mp = mp1; 28145 nce->nce_state = ND_REACHABLE; 28146 mutex_exit(&nce->nce_lock); 28147 nce_fastpath(nce); 28148 } 28149 /* 28150 * The cached nce_t has been updated to be reachable; 28151 * Set the IRE_MARK_UNCACHED flag and free the fake_ire. 28152 */ 28153 fake_ire->ire_marks &= ~IRE_MARK_UNCACHED; 28154 freemsg(mp); 28155 /* 28156 * send out queued packets. 28157 */ 28158 (void) ip_xmit_v4(NULL, ire, NULL, B_FALSE); 28159 28160 IRE_REFRELE(ire); 28161 return; 28162 } 28163 default: 28164 break; 28165 } 28166 if (q->q_next) { 28167 putnext(q, mp); 28168 } else 28169 freemsg(mp); 28170 return; 28171 28172 protonak: 28173 cmn_err(CE_NOTE, "IP doesn't process %s as a module", proto_str); 28174 if ((mp = mi_tpi_err_ack_alloc(mp, TPROTO, EINVAL)) != NULL) 28175 qreply(q, mp); 28176 } 28177 28178 /* 28179 * Process IP options in an outbound packet. Modify the destination if there 28180 * is a source route option. 28181 * Returns non-zero if something fails in which case an ICMP error has been 28182 * sent and mp freed. 28183 */ 28184 static int 28185 ip_wput_options(queue_t *q, mblk_t *ipsec_mp, ipha_t *ipha, 28186 boolean_t mctl_present, zoneid_t zoneid, ip_stack_t *ipst) 28187 { 28188 ipoptp_t opts; 28189 uchar_t *opt; 28190 uint8_t optval; 28191 uint8_t optlen; 28192 ipaddr_t dst; 28193 intptr_t code = 0; 28194 mblk_t *mp; 28195 ire_t *ire = NULL; 28196 28197 ip2dbg(("ip_wput_options\n")); 28198 mp = ipsec_mp; 28199 if (mctl_present) { 28200 mp = ipsec_mp->b_cont; 28201 } 28202 28203 dst = ipha->ipha_dst; 28204 for (optval = ipoptp_first(&opts, ipha); 28205 optval != IPOPT_EOL; 28206 optval = ipoptp_next(&opts)) { 28207 opt = opts.ipoptp_cur; 28208 optlen = opts.ipoptp_len; 28209 ip2dbg(("ip_wput_options: opt %d, len %d\n", 28210 optval, optlen)); 28211 switch (optval) { 28212 uint32_t off; 28213 case IPOPT_SSRR: 28214 case IPOPT_LSRR: 28215 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 28216 ip1dbg(( 28217 "ip_wput_options: bad option offset\n")); 28218 code = (char *)&opt[IPOPT_OLEN] - 28219 (char *)ipha; 28220 goto param_prob; 28221 } 28222 off = opt[IPOPT_OFFSET]; 28223 ip1dbg(("ip_wput_options: next hop 0x%x\n", 28224 ntohl(dst))); 28225 /* 28226 * For strict: verify that dst is directly 28227 * reachable. 28228 */ 28229 if (optval == IPOPT_SSRR) { 28230 ire = ire_ftable_lookup(dst, 0, 0, 28231 IRE_INTERFACE, NULL, NULL, ALL_ZONES, 0, 28232 MBLK_GETLABEL(mp), 28233 MATCH_IRE_TYPE | MATCH_IRE_SECATTR, ipst); 28234 if (ire == NULL) { 28235 ip1dbg(("ip_wput_options: SSRR not" 28236 " directly reachable: 0x%x\n", 28237 ntohl(dst))); 28238 goto bad_src_route; 28239 } 28240 ire_refrele(ire); 28241 } 28242 break; 28243 case IPOPT_RR: 28244 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 28245 ip1dbg(( 28246 "ip_wput_options: bad option offset\n")); 28247 code = (char *)&opt[IPOPT_OLEN] - 28248 (char *)ipha; 28249 goto param_prob; 28250 } 28251 break; 28252 case IPOPT_TS: 28253 /* 28254 * Verify that length >=5 and that there is either 28255 * room for another timestamp or that the overflow 28256 * counter is not maxed out. 28257 */ 28258 code = (char *)&opt[IPOPT_OLEN] - (char *)ipha; 28259 if (optlen < IPOPT_MINLEN_IT) { 28260 goto param_prob; 28261 } 28262 if ((opts.ipoptp_flags & IPOPTP_ERROR) != 0) { 28263 ip1dbg(( 28264 "ip_wput_options: bad option offset\n")); 28265 code = (char *)&opt[IPOPT_OFFSET] - 28266 (char *)ipha; 28267 goto param_prob; 28268 } 28269 switch (opt[IPOPT_POS_OV_FLG] & 0x0F) { 28270 case IPOPT_TS_TSONLY: 28271 off = IPOPT_TS_TIMELEN; 28272 break; 28273 case IPOPT_TS_TSANDADDR: 28274 case IPOPT_TS_PRESPEC: 28275 case IPOPT_TS_PRESPEC_RFC791: 28276 off = IP_ADDR_LEN + IPOPT_TS_TIMELEN; 28277 break; 28278 default: 28279 code = (char *)&opt[IPOPT_POS_OV_FLG] - 28280 (char *)ipha; 28281 goto param_prob; 28282 } 28283 if (opt[IPOPT_OFFSET] - 1 + off > optlen && 28284 (opt[IPOPT_POS_OV_FLG] & 0xF0) == 0xF0) { 28285 /* 28286 * No room and the overflow counter is 15 28287 * already. 28288 */ 28289 goto param_prob; 28290 } 28291 break; 28292 } 28293 } 28294 28295 if ((opts.ipoptp_flags & IPOPTP_ERROR) == 0) 28296 return (0); 28297 28298 ip1dbg(("ip_wput_options: error processing IP options.")); 28299 code = (char *)&opt[IPOPT_OFFSET] - (char *)ipha; 28300 28301 param_prob: 28302 /* 28303 * Since ip_wput() isn't close to finished, we fill 28304 * in enough of the header for credible error reporting. 28305 */ 28306 if (ip_hdr_complete((ipha_t *)mp->b_rptr, zoneid, ipst)) { 28307 /* Failed */ 28308 freemsg(ipsec_mp); 28309 return (-1); 28310 } 28311 icmp_param_problem(q, ipsec_mp, (uint8_t)code, zoneid, ipst); 28312 return (-1); 28313 28314 bad_src_route: 28315 /* 28316 * Since ip_wput() isn't close to finished, we fill 28317 * in enough of the header for credible error reporting. 28318 */ 28319 if (ip_hdr_complete((ipha_t *)mp->b_rptr, zoneid, ipst)) { 28320 /* Failed */ 28321 freemsg(ipsec_mp); 28322 return (-1); 28323 } 28324 icmp_unreachable(q, ipsec_mp, ICMP_SOURCE_ROUTE_FAILED, zoneid, ipst); 28325 return (-1); 28326 } 28327 28328 /* 28329 * The maximum value of conn_drain_list_cnt is CONN_MAXDRAINCNT. 28330 * conn_drain_list_cnt can be changed by setting conn_drain_nthreads 28331 * thru /etc/system. 28332 */ 28333 #define CONN_MAXDRAINCNT 64 28334 28335 static void 28336 conn_drain_init(ip_stack_t *ipst) 28337 { 28338 int i; 28339 28340 ipst->ips_conn_drain_list_cnt = conn_drain_nthreads; 28341 28342 if ((ipst->ips_conn_drain_list_cnt == 0) || 28343 (ipst->ips_conn_drain_list_cnt > CONN_MAXDRAINCNT)) { 28344 /* 28345 * Default value of the number of drainers is the 28346 * number of cpus, subject to maximum of 8 drainers. 28347 */ 28348 if (boot_max_ncpus != -1) 28349 ipst->ips_conn_drain_list_cnt = MIN(boot_max_ncpus, 8); 28350 else 28351 ipst->ips_conn_drain_list_cnt = MIN(max_ncpus, 8); 28352 } 28353 28354 ipst->ips_conn_drain_list = kmem_zalloc(ipst->ips_conn_drain_list_cnt * 28355 sizeof (idl_t), KM_SLEEP); 28356 28357 for (i = 0; i < ipst->ips_conn_drain_list_cnt; i++) { 28358 mutex_init(&ipst->ips_conn_drain_list[i].idl_lock, NULL, 28359 MUTEX_DEFAULT, NULL); 28360 } 28361 } 28362 28363 static void 28364 conn_drain_fini(ip_stack_t *ipst) 28365 { 28366 int i; 28367 28368 for (i = 0; i < ipst->ips_conn_drain_list_cnt; i++) 28369 mutex_destroy(&ipst->ips_conn_drain_list[i].idl_lock); 28370 kmem_free(ipst->ips_conn_drain_list, 28371 ipst->ips_conn_drain_list_cnt * sizeof (idl_t)); 28372 ipst->ips_conn_drain_list = NULL; 28373 } 28374 28375 /* 28376 * Note: For an overview of how flowcontrol is handled in IP please see the 28377 * IP Flowcontrol notes at the top of this file. 28378 * 28379 * Flow control has blocked us from proceeding. Insert the given conn in one 28380 * of the conn drain lists. These conn wq's will be qenabled later on when 28381 * STREAMS flow control does a backenable. conn_walk_drain will enable 28382 * the first conn in each of these drain lists. Each of these qenabled conns 28383 * in turn enables the next in the list, after it runs, or when it closes, 28384 * thus sustaining the drain process. 28385 * 28386 * The only possible calling sequence is ip_wsrv (on conn) -> ip_wput -> 28387 * conn_drain_insert. Thus there can be only 1 instance of conn_drain_insert 28388 * running at any time, on a given conn, since there can be only 1 service proc 28389 * running on a queue at any time. 28390 */ 28391 void 28392 conn_drain_insert(conn_t *connp) 28393 { 28394 idl_t *idl; 28395 uint_t index; 28396 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 28397 28398 mutex_enter(&connp->conn_lock); 28399 if (connp->conn_state_flags & CONN_CLOSING) { 28400 /* 28401 * The conn is closing as a result of which CONN_CLOSING 28402 * is set. Return. 28403 */ 28404 mutex_exit(&connp->conn_lock); 28405 return; 28406 } else if (connp->conn_idl == NULL) { 28407 /* 28408 * Assign the next drain list round robin. We dont' use 28409 * a lock, and thus it may not be strictly round robin. 28410 * Atomicity of load/stores is enough to make sure that 28411 * conn_drain_list_index is always within bounds. 28412 */ 28413 index = ipst->ips_conn_drain_list_index; 28414 ASSERT(index < ipst->ips_conn_drain_list_cnt); 28415 connp->conn_idl = &ipst->ips_conn_drain_list[index]; 28416 index++; 28417 if (index == ipst->ips_conn_drain_list_cnt) 28418 index = 0; 28419 ipst->ips_conn_drain_list_index = index; 28420 } 28421 mutex_exit(&connp->conn_lock); 28422 28423 mutex_enter(CONN_DRAIN_LIST_LOCK(connp)); 28424 if ((connp->conn_drain_prev != NULL) || 28425 (connp->conn_state_flags & CONN_CLOSING)) { 28426 /* 28427 * The conn is already in the drain list, OR 28428 * the conn is closing. We need to check again for 28429 * the closing case again since close can happen 28430 * after we drop the conn_lock, and before we 28431 * acquire the CONN_DRAIN_LIST_LOCK. 28432 */ 28433 mutex_exit(CONN_DRAIN_LIST_LOCK(connp)); 28434 return; 28435 } else { 28436 idl = connp->conn_idl; 28437 } 28438 28439 /* 28440 * The conn is not in the drain list. Insert it at the 28441 * tail of the drain list. The drain list is circular 28442 * and doubly linked. idl_conn points to the 1st element 28443 * in the list. 28444 */ 28445 if (idl->idl_conn == NULL) { 28446 idl->idl_conn = connp; 28447 connp->conn_drain_next = connp; 28448 connp->conn_drain_prev = connp; 28449 } else { 28450 conn_t *head = idl->idl_conn; 28451 28452 connp->conn_drain_next = head; 28453 connp->conn_drain_prev = head->conn_drain_prev; 28454 head->conn_drain_prev->conn_drain_next = connp; 28455 head->conn_drain_prev = connp; 28456 } 28457 mutex_exit(CONN_DRAIN_LIST_LOCK(connp)); 28458 } 28459 28460 /* 28461 * This conn is closing, and we are called from ip_close. OR 28462 * This conn has been serviced by ip_wsrv, and we need to do the tail 28463 * processing. 28464 * If this conn is part of the drain list, we may need to sustain the drain 28465 * process by qenabling the next conn in the drain list. We may also need to 28466 * remove this conn from the list, if it is done. 28467 */ 28468 static void 28469 conn_drain_tail(conn_t *connp, boolean_t closing) 28470 { 28471 idl_t *idl; 28472 28473 /* 28474 * connp->conn_idl is stable at this point, and no lock is needed 28475 * to check it. If we are called from ip_close, close has already 28476 * set CONN_CLOSING, thus freezing the value of conn_idl, and 28477 * called us only because conn_idl is non-null. If we are called thru 28478 * service, conn_idl could be null, but it cannot change because 28479 * service is single-threaded per queue, and there cannot be another 28480 * instance of service trying to call conn_drain_insert on this conn 28481 * now. 28482 */ 28483 ASSERT(!closing || (connp->conn_idl != NULL)); 28484 28485 /* 28486 * If connp->conn_idl is null, the conn has not been inserted into any 28487 * drain list even once since creation of the conn. Just return. 28488 */ 28489 if (connp->conn_idl == NULL) 28490 return; 28491 28492 mutex_enter(CONN_DRAIN_LIST_LOCK(connp)); 28493 28494 if (connp->conn_drain_prev == NULL) { 28495 /* This conn is currently not in the drain list. */ 28496 mutex_exit(CONN_DRAIN_LIST_LOCK(connp)); 28497 return; 28498 } 28499 idl = connp->conn_idl; 28500 if (idl->idl_conn_draining == connp) { 28501 /* 28502 * This conn is the current drainer. If this is the last conn 28503 * in the drain list, we need to do more checks, in the 'if' 28504 * below. Otherwwise we need to just qenable the next conn, 28505 * to sustain the draining, and is handled in the 'else' 28506 * below. 28507 */ 28508 if (connp->conn_drain_next == idl->idl_conn) { 28509 /* 28510 * This conn is the last in this list. This round 28511 * of draining is complete. If idl_repeat is set, 28512 * it means another flow enabling has happened from 28513 * the driver/streams and we need to another round 28514 * of draining. 28515 * If there are more than 2 conns in the drain list, 28516 * do a left rotate by 1, so that all conns except the 28517 * conn at the head move towards the head by 1, and the 28518 * the conn at the head goes to the tail. This attempts 28519 * a more even share for all queues that are being 28520 * drained. 28521 */ 28522 if ((connp->conn_drain_next != connp) && 28523 (idl->idl_conn->conn_drain_next != connp)) { 28524 idl->idl_conn = idl->idl_conn->conn_drain_next; 28525 } 28526 if (idl->idl_repeat) { 28527 qenable(idl->idl_conn->conn_wq); 28528 idl->idl_conn_draining = idl->idl_conn; 28529 idl->idl_repeat = 0; 28530 } else { 28531 idl->idl_conn_draining = NULL; 28532 } 28533 } else { 28534 /* 28535 * If the next queue that we are now qenable'ing, 28536 * is closing, it will remove itself from this list 28537 * and qenable the subsequent queue in ip_close(). 28538 * Serialization is acheived thru idl_lock. 28539 */ 28540 qenable(connp->conn_drain_next->conn_wq); 28541 idl->idl_conn_draining = connp->conn_drain_next; 28542 } 28543 } 28544 if (!connp->conn_did_putbq || closing) { 28545 /* 28546 * Remove ourself from the drain list, if we did not do 28547 * a putbq, or if the conn is closing. 28548 * Note: It is possible that q->q_first is non-null. It means 28549 * that these messages landed after we did a enableok() in 28550 * ip_wsrv. Thus STREAMS will call ip_wsrv once again to 28551 * service them. 28552 */ 28553 if (connp->conn_drain_next == connp) { 28554 /* Singleton in the list */ 28555 ASSERT(connp->conn_drain_prev == connp); 28556 idl->idl_conn = NULL; 28557 idl->idl_conn_draining = NULL; 28558 } else { 28559 connp->conn_drain_prev->conn_drain_next = 28560 connp->conn_drain_next; 28561 connp->conn_drain_next->conn_drain_prev = 28562 connp->conn_drain_prev; 28563 if (idl->idl_conn == connp) 28564 idl->idl_conn = connp->conn_drain_next; 28565 ASSERT(idl->idl_conn_draining != connp); 28566 28567 } 28568 connp->conn_drain_next = NULL; 28569 connp->conn_drain_prev = NULL; 28570 } 28571 mutex_exit(CONN_DRAIN_LIST_LOCK(connp)); 28572 } 28573 28574 /* 28575 * Write service routine. Shared perimeter entry point. 28576 * ip_wsrv can be called in any of the following ways. 28577 * 1. The device queue's messages has fallen below the low water mark 28578 * and STREAMS has backenabled the ill_wq. We walk thru all the 28579 * the drain lists and backenable the first conn in each list. 28580 * 2. The above causes STREAMS to run ip_wsrv on the conn_wq of the 28581 * qenabled non-tcp upper layers. We start dequeing messages and call 28582 * ip_wput for each message. 28583 */ 28584 28585 void 28586 ip_wsrv(queue_t *q) 28587 { 28588 conn_t *connp; 28589 ill_t *ill; 28590 mblk_t *mp; 28591 28592 if (q->q_next) { 28593 ill = (ill_t *)q->q_ptr; 28594 if (ill->ill_state_flags == 0) { 28595 /* 28596 * The device flow control has opened up. 28597 * Walk through conn drain lists and qenable the 28598 * first conn in each list. This makes sense only 28599 * if the stream is fully plumbed and setup. 28600 * Hence the if check above. 28601 */ 28602 ip1dbg(("ip_wsrv: walking\n")); 28603 conn_walk_drain(ill->ill_ipst); 28604 } 28605 return; 28606 } 28607 28608 connp = Q_TO_CONN(q); 28609 ip1dbg(("ip_wsrv: %p %p\n", (void *)q, (void *)connp)); 28610 28611 /* 28612 * 1. Set conn_draining flag to signal that service is active. 28613 * 28614 * 2. ip_output determines whether it has been called from service, 28615 * based on the last parameter. If it is IP_WSRV it concludes it 28616 * has been called from service. 28617 * 28618 * 3. Message ordering is preserved by the following logic. 28619 * i. A directly called ip_output (i.e. not thru service) will queue 28620 * the message at the tail, if conn_draining is set (i.e. service 28621 * is running) or if q->q_first is non-null. 28622 * 28623 * ii. If ip_output is called from service, and if ip_output cannot 28624 * putnext due to flow control, it does a putbq. 28625 * 28626 * 4. noenable the queue so that a putbq from ip_wsrv does not reenable 28627 * (causing an infinite loop). 28628 */ 28629 ASSERT(!connp->conn_did_putbq); 28630 while ((q->q_first != NULL) && !connp->conn_did_putbq) { 28631 connp->conn_draining = 1; 28632 noenable(q); 28633 while ((mp = getq(q)) != NULL) { 28634 ASSERT(CONN_Q(q)); 28635 28636 ip_output(Q_TO_CONN(q), mp, q, IP_WSRV); 28637 if (connp->conn_did_putbq) { 28638 /* ip_wput did a putbq */ 28639 break; 28640 } 28641 } 28642 /* 28643 * At this point, a thread coming down from top, calling 28644 * ip_wput, may end up queueing the message. We have not yet 28645 * enabled the queue, so ip_wsrv won't be called again. 28646 * To avoid this race, check q->q_first again (in the loop) 28647 * If the other thread queued the message before we call 28648 * enableok(), we will catch it in the q->q_first check. 28649 * If the other thread queues the message after we call 28650 * enableok(), ip_wsrv will be called again by STREAMS. 28651 */ 28652 connp->conn_draining = 0; 28653 enableok(q); 28654 } 28655 28656 /* Enable the next conn for draining */ 28657 conn_drain_tail(connp, B_FALSE); 28658 28659 connp->conn_did_putbq = 0; 28660 } 28661 28662 /* 28663 * Walk the list of all conn's calling the function provided with the 28664 * specified argument for each. Note that this only walks conn's that 28665 * have been bound. 28666 * Applies to both IPv4 and IPv6. 28667 */ 28668 static void 28669 conn_walk_fanout(pfv_t func, void *arg, zoneid_t zoneid, ip_stack_t *ipst) 28670 { 28671 conn_walk_fanout_table(ipst->ips_ipcl_udp_fanout, 28672 ipst->ips_ipcl_udp_fanout_size, 28673 func, arg, zoneid); 28674 conn_walk_fanout_table(ipst->ips_ipcl_conn_fanout, 28675 ipst->ips_ipcl_conn_fanout_size, 28676 func, arg, zoneid); 28677 conn_walk_fanout_table(ipst->ips_ipcl_bind_fanout, 28678 ipst->ips_ipcl_bind_fanout_size, 28679 func, arg, zoneid); 28680 conn_walk_fanout_table(ipst->ips_ipcl_proto_fanout, 28681 IPPROTO_MAX, func, arg, zoneid); 28682 conn_walk_fanout_table(ipst->ips_ipcl_proto_fanout_v6, 28683 IPPROTO_MAX, func, arg, zoneid); 28684 } 28685 28686 /* 28687 * Flowcontrol has relieved, and STREAMS has backenabled us. For each list 28688 * of conns that need to be drained, check if drain is already in progress. 28689 * If so set the idl_repeat bit, indicating that the last conn in the list 28690 * needs to reinitiate the drain once again, for the list. If drain is not 28691 * in progress for the list, initiate the draining, by qenabling the 1st 28692 * conn in the list. The drain is self-sustaining, each qenabled conn will 28693 * in turn qenable the next conn, when it is done/blocked/closing. 28694 */ 28695 static void 28696 conn_walk_drain(ip_stack_t *ipst) 28697 { 28698 int i; 28699 idl_t *idl; 28700 28701 IP_STAT(ipst, ip_conn_walk_drain); 28702 28703 for (i = 0; i < ipst->ips_conn_drain_list_cnt; i++) { 28704 idl = &ipst->ips_conn_drain_list[i]; 28705 mutex_enter(&idl->idl_lock); 28706 if (idl->idl_conn == NULL) { 28707 mutex_exit(&idl->idl_lock); 28708 continue; 28709 } 28710 /* 28711 * If this list is not being drained currently by 28712 * an ip_wsrv thread, start the process. 28713 */ 28714 if (idl->idl_conn_draining == NULL) { 28715 ASSERT(idl->idl_repeat == 0); 28716 qenable(idl->idl_conn->conn_wq); 28717 idl->idl_conn_draining = idl->idl_conn; 28718 } else { 28719 idl->idl_repeat = 1; 28720 } 28721 mutex_exit(&idl->idl_lock); 28722 } 28723 } 28724 28725 /* 28726 * Walk an conn hash table of `count' buckets, calling func for each entry. 28727 */ 28728 static void 28729 conn_walk_fanout_table(connf_t *connfp, uint_t count, pfv_t func, void *arg, 28730 zoneid_t zoneid) 28731 { 28732 conn_t *connp; 28733 28734 while (count-- > 0) { 28735 mutex_enter(&connfp->connf_lock); 28736 for (connp = connfp->connf_head; connp != NULL; 28737 connp = connp->conn_next) { 28738 if (zoneid == GLOBAL_ZONEID || 28739 zoneid == connp->conn_zoneid) { 28740 CONN_INC_REF(connp); 28741 mutex_exit(&connfp->connf_lock); 28742 (*func)(connp, arg); 28743 mutex_enter(&connfp->connf_lock); 28744 CONN_DEC_REF(connp); 28745 } 28746 } 28747 mutex_exit(&connfp->connf_lock); 28748 connfp++; 28749 } 28750 } 28751 28752 /* ipcl_walk routine invoked for ip_conn_report for each conn. */ 28753 static void 28754 conn_report1(conn_t *connp, void *mp) 28755 { 28756 char buf1[INET6_ADDRSTRLEN]; 28757 char buf2[INET6_ADDRSTRLEN]; 28758 uint_t print_len, buf_len; 28759 28760 ASSERT(connp != NULL); 28761 28762 buf_len = ((mblk_t *)mp)->b_datap->db_lim - ((mblk_t *)mp)->b_wptr; 28763 if (buf_len <= 0) 28764 return; 28765 (void) inet_ntop(AF_INET6, &connp->conn_srcv6, buf1, sizeof (buf1)), 28766 (void) inet_ntop(AF_INET6, &connp->conn_remv6, buf2, sizeof (buf2)), 28767 print_len = snprintf((char *)((mblk_t *)mp)->b_wptr, buf_len, 28768 MI_COL_PTRFMT_STR MI_COL_PTRFMT_STR MI_COL_PTRFMT_STR 28769 "%5d %s/%05d %s/%05d\n", 28770 (void *)connp, (void *)CONNP_TO_RQ(connp), 28771 (void *)CONNP_TO_WQ(connp), connp->conn_zoneid, 28772 buf1, connp->conn_lport, 28773 buf2, connp->conn_fport); 28774 if (print_len < buf_len) { 28775 ((mblk_t *)mp)->b_wptr += print_len; 28776 } else { 28777 ((mblk_t *)mp)->b_wptr += buf_len; 28778 } 28779 } 28780 28781 /* 28782 * Named Dispatch routine to produce a formatted report on all conns 28783 * that are listed in one of the fanout tables. 28784 * This report is accessed by using the ndd utility to "get" ND variable 28785 * "ip_conn_status". 28786 */ 28787 /* ARGSUSED */ 28788 static int 28789 ip_conn_report(queue_t *q, mblk_t *mp, caddr_t arg, cred_t *ioc_cr) 28790 { 28791 conn_t *connp = Q_TO_CONN(q); 28792 28793 (void) mi_mpprintf(mp, 28794 "CONN " MI_COL_HDRPAD_STR 28795 "rfq " MI_COL_HDRPAD_STR 28796 "stq " MI_COL_HDRPAD_STR 28797 " zone local remote"); 28798 28799 /* 28800 * Because of the ndd constraint, at most we can have 64K buffer 28801 * to put in all conn info. So to be more efficient, just 28802 * allocate a 64K buffer here, assuming we need that large buffer. 28803 * This should be OK as only privileged processes can do ndd /dev/ip. 28804 */ 28805 if ((mp->b_cont = allocb(ND_MAX_BUF_LEN, BPRI_HI)) == NULL) { 28806 /* The following may work even if we cannot get a large buf. */ 28807 (void) mi_mpprintf(mp, "<< Out of buffer >>\n"); 28808 return (0); 28809 } 28810 28811 conn_walk_fanout(conn_report1, mp->b_cont, connp->conn_zoneid, 28812 connp->conn_netstack->netstack_ip); 28813 return (0); 28814 } 28815 28816 /* 28817 * Determine if the ill and multicast aspects of that packets 28818 * "matches" the conn. 28819 */ 28820 boolean_t 28821 conn_wantpacket(conn_t *connp, ill_t *ill, ipha_t *ipha, int fanout_flags, 28822 zoneid_t zoneid) 28823 { 28824 ill_t *in_ill; 28825 boolean_t found; 28826 ipif_t *ipif; 28827 ire_t *ire; 28828 ipaddr_t dst, src; 28829 ip_stack_t *ipst = connp->conn_netstack->netstack_ip; 28830 28831 dst = ipha->ipha_dst; 28832 src = ipha->ipha_src; 28833 28834 /* 28835 * conn_incoming_ill is set by IP_BOUND_IF which limits 28836 * unicast, broadcast and multicast reception to 28837 * conn_incoming_ill. conn_wantpacket itself is called 28838 * only for BROADCAST and multicast. 28839 * 28840 * 1) ip_rput supresses duplicate broadcasts if the ill 28841 * is part of a group. Hence, we should be receiving 28842 * just one copy of broadcast for the whole group. 28843 * Thus, if it is part of the group the packet could 28844 * come on any ill of the group and hence we need a 28845 * match on the group. Otherwise, match on ill should 28846 * be sufficient. 28847 * 28848 * 2) ip_rput does not suppress duplicate multicast packets. 28849 * If there are two interfaces in a ill group and we have 28850 * 2 applications (conns) joined a multicast group G on 28851 * both the interfaces, ilm_lookup_ill filter in ip_rput 28852 * will give us two packets because we join G on both the 28853 * interfaces rather than nominating just one interface 28854 * for receiving multicast like broadcast above. So, 28855 * we have to call ilg_lookup_ill to filter out duplicate 28856 * copies, if ill is part of a group. 28857 */ 28858 in_ill = connp->conn_incoming_ill; 28859 if (in_ill != NULL) { 28860 if (in_ill->ill_group == NULL) { 28861 if (in_ill != ill) 28862 return (B_FALSE); 28863 } else if (in_ill->ill_group != ill->ill_group) { 28864 return (B_FALSE); 28865 } 28866 } 28867 28868 if (!CLASSD(dst)) { 28869 if (IPCL_ZONE_MATCH(connp, zoneid)) 28870 return (B_TRUE); 28871 /* 28872 * The conn is in a different zone; we need to check that this 28873 * broadcast address is configured in the application's zone and 28874 * on one ill in the group. 28875 */ 28876 ipif = ipif_get_next_ipif(NULL, ill); 28877 if (ipif == NULL) 28878 return (B_FALSE); 28879 ire = ire_ctable_lookup(dst, 0, IRE_BROADCAST, ipif, 28880 connp->conn_zoneid, NULL, 28881 (MATCH_IRE_TYPE | MATCH_IRE_ILL_GROUP), ipst); 28882 ipif_refrele(ipif); 28883 if (ire != NULL) { 28884 ire_refrele(ire); 28885 return (B_TRUE); 28886 } else { 28887 return (B_FALSE); 28888 } 28889 } 28890 28891 if ((fanout_flags & IP_FF_NO_MCAST_LOOP) && 28892 connp->conn_zoneid == zoneid) { 28893 /* 28894 * Loopback case: the sending endpoint has IP_MULTICAST_LOOP 28895 * disabled, therefore we don't dispatch the multicast packet to 28896 * the sending zone. 28897 */ 28898 return (B_FALSE); 28899 } 28900 28901 if ((ill->ill_phyint->phyint_flags & PHYI_LOOPBACK) && 28902 connp->conn_zoneid != zoneid) { 28903 /* 28904 * Multicast packet on the loopback interface: we only match 28905 * conns who joined the group in the specified zone. 28906 */ 28907 return (B_FALSE); 28908 } 28909 28910 if (connp->conn_multi_router) { 28911 /* multicast packet and multicast router socket: send up */ 28912 return (B_TRUE); 28913 } 28914 28915 mutex_enter(&connp->conn_lock); 28916 found = (ilg_lookup_ill_withsrc(connp, dst, src, ill) != NULL); 28917 mutex_exit(&connp->conn_lock); 28918 return (found); 28919 } 28920 28921 /* 28922 * Finish processing of "arp_up" when AR_DLPIOP_DONE is received from arp. 28923 */ 28924 /* ARGSUSED */ 28925 static void 28926 ip_arp_done(ipsq_t *dummy_sq, queue_t *q, mblk_t *mp, void *dummy_arg) 28927 { 28928 ill_t *ill = (ill_t *)q->q_ptr; 28929 mblk_t *mp1, *mp2; 28930 ipif_t *ipif; 28931 int err = 0; 28932 conn_t *connp = NULL; 28933 ipsq_t *ipsq; 28934 arc_t *arc; 28935 28936 ip1dbg(("ip_arp_done(%s)\n", ill->ill_name)); 28937 28938 ASSERT((mp->b_wptr - mp->b_rptr) >= sizeof (arc_t)); 28939 ASSERT(((arc_t *)mp->b_rptr)->arc_cmd == AR_DLPIOP_DONE); 28940 28941 ASSERT(IAM_WRITER_ILL(ill)); 28942 mp2 = mp->b_cont; 28943 mp->b_cont = NULL; 28944 28945 /* 28946 * We have now received the arp bringup completion message 28947 * from ARP. Mark the arp bringup as done. Also if the arp 28948 * stream has already started closing, send up the AR_ARP_CLOSING 28949 * ack now since ARP is waiting in close for this ack. 28950 */ 28951 mutex_enter(&ill->ill_lock); 28952 ill->ill_arp_bringup_pending = 0; 28953 if (ill->ill_arp_closing) { 28954 mutex_exit(&ill->ill_lock); 28955 /* Let's reuse the mp for sending the ack */ 28956 arc = (arc_t *)mp->b_rptr; 28957 mp->b_wptr = mp->b_rptr + sizeof (arc_t); 28958 arc->arc_cmd = AR_ARP_CLOSING; 28959 qreply(q, mp); 28960 } else { 28961 mutex_exit(&ill->ill_lock); 28962 freeb(mp); 28963 } 28964 28965 ipsq = ill->ill_phyint->phyint_ipsq; 28966 ipif = ipsq->ipsq_pending_ipif; 28967 mp1 = ipsq_pending_mp_get(ipsq, &connp); 28968 ASSERT(!((mp1 != NULL) ^ (ipif != NULL))); 28969 if (mp1 == NULL) { 28970 /* bringup was aborted by the user */ 28971 freemsg(mp2); 28972 return; 28973 } 28974 28975 /* 28976 * If an IOCTL is waiting on this (ipsq_current_ioctl != 0), then we 28977 * must have an associated conn_t. Otherwise, we're bringing this 28978 * interface back up as part of handling an asynchronous event (e.g., 28979 * physical address change). 28980 */ 28981 if (ipsq->ipsq_current_ioctl != 0) { 28982 ASSERT(connp != NULL); 28983 q = CONNP_TO_WQ(connp); 28984 } else { 28985 ASSERT(connp == NULL); 28986 q = ill->ill_rq; 28987 } 28988 28989 /* 28990 * If the DL_BIND_REQ fails, it is noted 28991 * in arc_name_offset. 28992 */ 28993 err = *((int *)mp2->b_rptr); 28994 if (err == 0) { 28995 if (ipif->ipif_isv6) { 28996 if ((err = ipif_up_done_v6(ipif)) != 0) 28997 ip0dbg(("ip_arp_done: init failed\n")); 28998 } else { 28999 if ((err = ipif_up_done(ipif)) != 0) 29000 ip0dbg(("ip_arp_done: init failed\n")); 29001 } 29002 } else { 29003 ip0dbg(("ip_arp_done: DL_BIND_REQ failed\n")); 29004 } 29005 29006 freemsg(mp2); 29007 29008 if ((err == 0) && (ill->ill_up_ipifs)) { 29009 err = ill_up_ipifs(ill, q, mp1); 29010 if (err == EINPROGRESS) 29011 return; 29012 } 29013 29014 if (ill->ill_up_ipifs) 29015 ill_group_cleanup(ill); 29016 29017 /* 29018 * The operation must complete without EINPROGRESS since 29019 * ipsq_pending_mp_get() has removed the mblk from ipsq_pending_mp. 29020 * Otherwise, the operation will be stuck forever in the ipsq. 29021 */ 29022 ASSERT(err != EINPROGRESS); 29023 if (ipsq->ipsq_current_ioctl != 0) 29024 ip_ioctl_finish(q, mp1, err, NO_COPYOUT, ipsq); 29025 else 29026 ipsq_current_finish(ipsq); 29027 } 29028 29029 /* Allocate the private structure */ 29030 static int 29031 ip_priv_alloc(void **bufp) 29032 { 29033 void *buf; 29034 29035 if ((buf = kmem_alloc(sizeof (ip_priv_t), KM_NOSLEEP)) == NULL) 29036 return (ENOMEM); 29037 29038 *bufp = buf; 29039 return (0); 29040 } 29041 29042 /* Function to delete the private structure */ 29043 void 29044 ip_priv_free(void *buf) 29045 { 29046 ASSERT(buf != NULL); 29047 kmem_free(buf, sizeof (ip_priv_t)); 29048 } 29049 29050 /* 29051 * The entry point for IPPF processing. 29052 * If the classifier (IPGPC_CLASSIFY) is not loaded and configured, the 29053 * routine just returns. 29054 * 29055 * When called, ip_process generates an ipp_packet_t structure 29056 * which holds the state information for this packet and invokes the 29057 * the classifier (via ipp_packet_process). The classification, depending on 29058 * configured filters, results in a list of actions for this packet. Invoking 29059 * an action may cause the packet to be dropped, in which case the resulting 29060 * mblk (*mpp) is NULL. proc indicates the callout position for 29061 * this packet and ill_index is the interface this packet on or will leave 29062 * on (inbound and outbound resp.). 29063 */ 29064 void 29065 ip_process(ip_proc_t proc, mblk_t **mpp, uint32_t ill_index) 29066 { 29067 mblk_t *mp; 29068 ip_priv_t *priv; 29069 ipp_action_id_t aid; 29070 int rc = 0; 29071 ipp_packet_t *pp; 29072 #define IP_CLASS "ip" 29073 29074 /* If the classifier is not loaded, return */ 29075 if ((aid = ipp_action_lookup(IPGPC_CLASSIFY)) == IPP_ACTION_INVAL) { 29076 return; 29077 } 29078 29079 mp = *mpp; 29080 ASSERT(mp != NULL); 29081 29082 /* Allocate the packet structure */ 29083 rc = ipp_packet_alloc(&pp, IP_CLASS, aid); 29084 if (rc != 0) { 29085 *mpp = NULL; 29086 freemsg(mp); 29087 return; 29088 } 29089 29090 /* Allocate the private structure */ 29091 rc = ip_priv_alloc((void **)&priv); 29092 if (rc != 0) { 29093 *mpp = NULL; 29094 freemsg(mp); 29095 ipp_packet_free(pp); 29096 return; 29097 } 29098 priv->proc = proc; 29099 priv->ill_index = ill_index; 29100 ipp_packet_set_private(pp, priv, ip_priv_free); 29101 ipp_packet_set_data(pp, mp); 29102 29103 /* Invoke the classifier */ 29104 rc = ipp_packet_process(&pp); 29105 if (pp != NULL) { 29106 mp = ipp_packet_get_data(pp); 29107 ipp_packet_free(pp); 29108 if (rc != 0) { 29109 freemsg(mp); 29110 *mpp = NULL; 29111 } 29112 } else { 29113 *mpp = NULL; 29114 } 29115 #undef IP_CLASS 29116 } 29117 29118 /* 29119 * Propagate a multicast group membership operation (add/drop) on 29120 * all the interfaces crossed by the related multirt routes. 29121 * The call is considered successful if the operation succeeds 29122 * on at least one interface. 29123 */ 29124 static int 29125 ip_multirt_apply_membership(int (*fn)(conn_t *, boolean_t, ipaddr_t, ipaddr_t, 29126 uint_t *, mcast_record_t, ipaddr_t, mblk_t *), ire_t *ire, conn_t *connp, 29127 boolean_t checkonly, ipaddr_t group, mcast_record_t fmode, ipaddr_t src, 29128 mblk_t *first_mp) 29129 { 29130 ire_t *ire_gw; 29131 irb_t *irb; 29132 int error = 0; 29133 opt_restart_t *or; 29134 ip_stack_t *ipst = ire->ire_ipst; 29135 29136 irb = ire->ire_bucket; 29137 ASSERT(irb != NULL); 29138 29139 ASSERT(DB_TYPE(first_mp) == M_CTL); 29140 29141 or = (opt_restart_t *)first_mp->b_rptr; 29142 IRB_REFHOLD(irb); 29143 for (; ire != NULL; ire = ire->ire_next) { 29144 if ((ire->ire_flags & RTF_MULTIRT) == 0) 29145 continue; 29146 if (ire->ire_addr != group) 29147 continue; 29148 29149 ire_gw = ire_ftable_lookup(ire->ire_gateway_addr, 0, 0, 29150 IRE_INTERFACE, NULL, NULL, ALL_ZONES, 0, NULL, 29151 MATCH_IRE_RECURSIVE | MATCH_IRE_TYPE, ipst); 29152 /* No resolver exists for the gateway; skip this ire. */ 29153 if (ire_gw == NULL) 29154 continue; 29155 29156 /* 29157 * This function can return EINPROGRESS. If so the operation 29158 * will be restarted from ip_restart_optmgmt which will 29159 * call ip_opt_set and option processing will restart for 29160 * this option. So we may end up calling 'fn' more than once. 29161 * This requires that 'fn' is idempotent except for the 29162 * return value. The operation is considered a success if 29163 * it succeeds at least once on any one interface. 29164 */ 29165 error = fn(connp, checkonly, group, ire_gw->ire_src_addr, 29166 NULL, fmode, src, first_mp); 29167 if (error == 0) 29168 or->or_private = CGTP_MCAST_SUCCESS; 29169 29170 if (ip_debug > 0) { 29171 ulong_t off; 29172 char *ksym; 29173 ksym = kobj_getsymname((uintptr_t)fn, &off); 29174 ip2dbg(("ip_multirt_apply_membership: " 29175 "called %s, multirt group 0x%08x via itf 0x%08x, " 29176 "error %d [success %u]\n", 29177 ksym ? ksym : "?", 29178 ntohl(group), ntohl(ire_gw->ire_src_addr), 29179 error, or->or_private)); 29180 } 29181 29182 ire_refrele(ire_gw); 29183 if (error == EINPROGRESS) { 29184 IRB_REFRELE(irb); 29185 return (error); 29186 } 29187 } 29188 IRB_REFRELE(irb); 29189 /* 29190 * Consider the call as successful if we succeeded on at least 29191 * one interface. Otherwise, return the last encountered error. 29192 */ 29193 return (or->or_private == CGTP_MCAST_SUCCESS ? 0 : error); 29194 } 29195 29196 29197 /* 29198 * Issue a warning regarding a route crossing an interface with an 29199 * incorrect MTU. Only one message every 'ip_multirt_log_interval' 29200 * amount of time is logged. 29201 */ 29202 static void 29203 ip_multirt_bad_mtu(ire_t *ire, uint32_t max_frag) 29204 { 29205 hrtime_t current = gethrtime(); 29206 char buf[INET_ADDRSTRLEN]; 29207 ip_stack_t *ipst = ire->ire_ipst; 29208 29209 /* Convert interval in ms to hrtime in ns */ 29210 if (ipst->ips_multirt_bad_mtu_last_time + 29211 ((hrtime_t)ipst->ips_ip_multirt_log_interval * (hrtime_t)1000000) <= 29212 current) { 29213 cmn_err(CE_WARN, "ip: ignoring multiroute " 29214 "to %s, incorrect MTU %u (expected %u)\n", 29215 ip_dot_addr(ire->ire_addr, buf), 29216 ire->ire_max_frag, max_frag); 29217 29218 ipst->ips_multirt_bad_mtu_last_time = current; 29219 } 29220 } 29221 29222 29223 /* 29224 * Get the CGTP (multirouting) filtering status. 29225 * If 0, the CGTP hooks are transparent. 29226 */ 29227 /* ARGSUSED */ 29228 static int 29229 ip_cgtp_filter_get(queue_t *q, mblk_t *mp, caddr_t cp, cred_t *ioc_cr) 29230 { 29231 boolean_t *ip_cgtp_filter_value = (boolean_t *)cp; 29232 ip_stack_t *ipst = CONNQ_TO_IPST(q); 29233 29234 /* 29235 * Only applies to the shared stack since the filter_ops 29236 * do not carry an ip_stack_t or zoneid. 29237 */ 29238 if (ipst->ips_netstack->netstack_stackid != GLOBAL_NETSTACKID) 29239 return (ENOTSUP); 29240 29241 (void) mi_mpprintf(mp, "%d", (int)*ip_cgtp_filter_value); 29242 return (0); 29243 } 29244 29245 29246 /* 29247 * Set the CGTP (multirouting) filtering status. 29248 * If the status is changed from active to transparent 29249 * or from transparent to active, forward the new status 29250 * to the filtering module (if loaded). 29251 */ 29252 /* ARGSUSED */ 29253 static int 29254 ip_cgtp_filter_set(queue_t *q, mblk_t *mp, char *value, caddr_t cp, 29255 cred_t *ioc_cr) 29256 { 29257 long new_value; 29258 boolean_t *ip_cgtp_filter_value = (boolean_t *)cp; 29259 ip_stack_t *ipst = CONNQ_TO_IPST(q); 29260 29261 if (secpolicy_net_config(ioc_cr, B_FALSE) != 0) 29262 return (EPERM); 29263 29264 /* 29265 * Only applies to the shared stack since the filter_ops 29266 * do not carry an ip_stack_t or zoneid. 29267 */ 29268 if (ipst->ips_netstack->netstack_stackid != GLOBAL_NETSTACKID) 29269 return (ENOTSUP); 29270 29271 if (ddi_strtol(value, NULL, 10, &new_value) != 0 || 29272 new_value < 0 || new_value > 1) { 29273 return (EINVAL); 29274 } 29275 29276 /* 29277 * Do not enable CGTP filtering - thus preventing the hooks 29278 * from being invoked - if the version number of the 29279 * filtering module hooks does not match. 29280 */ 29281 if ((ip_cgtp_filter_ops != NULL) && 29282 (ip_cgtp_filter_ops->cfo_filter_rev != CGTP_FILTER_REV)) { 29283 cmn_err(CE_WARN, "IP: CGTP filtering version mismatch " 29284 "(module hooks version %d, expecting %d)\n", 29285 ip_cgtp_filter_ops->cfo_filter_rev, 29286 CGTP_FILTER_REV); 29287 return (ENOTSUP); 29288 } 29289 29290 if ((!*ip_cgtp_filter_value) && new_value) { 29291 cmn_err(CE_NOTE, "IP: enabling CGTP filtering%s", 29292 ip_cgtp_filter_ops == NULL ? 29293 " (module not loaded)" : ""); 29294 } 29295 if (*ip_cgtp_filter_value && (!new_value)) { 29296 cmn_err(CE_NOTE, "IP: disabling CGTP filtering%s", 29297 ip_cgtp_filter_ops == NULL ? 29298 " (module not loaded)" : ""); 29299 } 29300 29301 if (ip_cgtp_filter_ops != NULL) { 29302 int res; 29303 29304 res = ip_cgtp_filter_ops->cfo_change_state(new_value); 29305 if (res) 29306 return (res); 29307 } 29308 29309 *ip_cgtp_filter_value = (boolean_t)new_value; 29310 29311 return (0); 29312 } 29313 29314 29315 /* 29316 * Return the expected CGTP hooks version number. 29317 */ 29318 int 29319 ip_cgtp_filter_supported(void) 29320 { 29321 ip_stack_t *ipst; 29322 int ret; 29323 29324 ipst = netstack_find_by_stackid(GLOBAL_NETSTACKID)->netstack_ip; 29325 if (ipst == NULL) 29326 return (-1); 29327 ret = ip_cgtp_filter_rev; 29328 netstack_rele(ipst->ips_netstack); 29329 return (ret); 29330 } 29331 29332 29333 /* 29334 * CGTP hooks can be registered by directly touching ip_cgtp_filter_ops 29335 * or by invoking this function. In the first case, the version number 29336 * of the registered structure is checked at hooks activation time 29337 * in ip_cgtp_filter_set(). 29338 * 29339 * Only applies to the shared stack since the filter_ops 29340 * do not carry an ip_stack_t or zoneid. 29341 */ 29342 int 29343 ip_cgtp_filter_register(cgtp_filter_ops_t *ops) 29344 { 29345 ip_stack_t *ipst; 29346 29347 if (ops->cfo_filter_rev != CGTP_FILTER_REV) 29348 return (ENOTSUP); 29349 29350 ipst = netstack_find_by_stackid(GLOBAL_NETSTACKID)->netstack_ip; 29351 if (ipst == NULL) 29352 return (EINVAL); 29353 29354 ip_cgtp_filter_ops = ops; 29355 netstack_rele(ipst->ips_netstack); 29356 return (0); 29357 } 29358 29359 static squeue_func_t 29360 ip_squeue_switch(int val) 29361 { 29362 squeue_func_t rval = squeue_fill; 29363 29364 switch (val) { 29365 case IP_SQUEUE_ENTER_NODRAIN: 29366 rval = squeue_enter_nodrain; 29367 break; 29368 case IP_SQUEUE_ENTER: 29369 rval = squeue_enter; 29370 break; 29371 default: 29372 break; 29373 } 29374 return (rval); 29375 } 29376 29377 /* ARGSUSED */ 29378 static int 29379 ip_input_proc_set(queue_t *q, mblk_t *mp, char *value, 29380 caddr_t addr, cred_t *cr) 29381 { 29382 int *v = (int *)addr; 29383 long new_value; 29384 29385 if (secpolicy_net_config(cr, B_FALSE) != 0) 29386 return (EPERM); 29387 29388 if (ddi_strtol(value, NULL, 10, &new_value) != 0) 29389 return (EINVAL); 29390 29391 ip_input_proc = ip_squeue_switch(new_value); 29392 *v = new_value; 29393 return (0); 29394 } 29395 29396 /* ARGSUSED */ 29397 static int 29398 ip_int_set(queue_t *q, mblk_t *mp, char *value, 29399 caddr_t addr, cred_t *cr) 29400 { 29401 int *v = (int *)addr; 29402 long new_value; 29403 29404 if (secpolicy_net_config(cr, B_FALSE) != 0) 29405 return (EPERM); 29406 29407 if (ddi_strtol(value, NULL, 10, &new_value) != 0) 29408 return (EINVAL); 29409 29410 *v = new_value; 29411 return (0); 29412 } 29413 29414 /* 29415 * Handle changes to ipmp_hook_emulation ndd variable. 29416 * Need to update phyint_hook_ifindex. 29417 * Also generate a nic plumb event should a new ifidex be assigned to a group. 29418 */ 29419 static void 29420 ipmp_hook_emulation_changed(ip_stack_t *ipst) 29421 { 29422 phyint_t *phyi; 29423 phyint_t *phyi_tmp; 29424 char *groupname; 29425 int namelen; 29426 ill_t *ill; 29427 boolean_t new_group; 29428 29429 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 29430 /* 29431 * Group indicies are stored in the phyint - a common structure 29432 * to both IPv4 and IPv6. 29433 */ 29434 phyi = avl_first(&ipst->ips_phyint_g_list->phyint_list_avl_by_index); 29435 for (; phyi != NULL; 29436 phyi = avl_walk(&ipst->ips_phyint_g_list->phyint_list_avl_by_index, 29437 phyi, AVL_AFTER)) { 29438 /* Ignore the ones that do not have a group */ 29439 if (phyi->phyint_groupname_len == 0) 29440 continue; 29441 29442 /* 29443 * Look for other phyint in group. 29444 * Clear name/namelen so the lookup doesn't find ourselves. 29445 */ 29446 namelen = phyi->phyint_groupname_len; 29447 groupname = phyi->phyint_groupname; 29448 phyi->phyint_groupname_len = 0; 29449 phyi->phyint_groupname = NULL; 29450 29451 phyi_tmp = phyint_lookup_group(groupname, B_FALSE, ipst); 29452 /* Restore */ 29453 phyi->phyint_groupname_len = namelen; 29454 phyi->phyint_groupname = groupname; 29455 29456 new_group = B_FALSE; 29457 if (ipst->ips_ipmp_hook_emulation) { 29458 /* 29459 * If the group already exists and has already 29460 * been assigned a group ifindex, we use the existing 29461 * group_ifindex, otherwise we pick a new group_ifindex 29462 * here. 29463 */ 29464 if (phyi_tmp != NULL && 29465 phyi_tmp->phyint_group_ifindex != 0) { 29466 phyi->phyint_group_ifindex = 29467 phyi_tmp->phyint_group_ifindex; 29468 } else { 29469 /* XXX We need a recovery strategy here. */ 29470 if (!ip_assign_ifindex( 29471 &phyi->phyint_group_ifindex, ipst)) 29472 cmn_err(CE_PANIC, 29473 "ip_assign_ifindex() failed"); 29474 new_group = B_TRUE; 29475 } 29476 } else { 29477 phyi->phyint_group_ifindex = 0; 29478 } 29479 if (ipst->ips_ipmp_hook_emulation) 29480 phyi->phyint_hook_ifindex = phyi->phyint_group_ifindex; 29481 else 29482 phyi->phyint_hook_ifindex = phyi->phyint_ifindex; 29483 29484 /* 29485 * For IP Filter to find out the relationship between 29486 * names and interface indicies, we need to generate 29487 * a NE_PLUMB event when a new group can appear. 29488 * We always generate events when a new interface appears 29489 * (even when ipmp_hook_emulation is set) so there 29490 * is no need to generate NE_PLUMB events when 29491 * ipmp_hook_emulation is turned off. 29492 * And since it isn't critical for IP Filter to get 29493 * the NE_UNPLUMB events we skip those here. 29494 */ 29495 if (new_group) { 29496 /* 29497 * First phyint in group - generate group PLUMB event. 29498 * Since we are not running inside the ipsq we do 29499 * the dispatch immediately. 29500 */ 29501 if (phyi->phyint_illv4 != NULL) 29502 ill = phyi->phyint_illv4; 29503 else 29504 ill = phyi->phyint_illv6; 29505 29506 if (ill != NULL) { 29507 mutex_enter(&ill->ill_lock); 29508 ill_nic_info_plumb(ill, B_TRUE); 29509 ill_nic_info_dispatch(ill); 29510 mutex_exit(&ill->ill_lock); 29511 } 29512 } 29513 } 29514 rw_exit(&ipst->ips_ill_g_lock); 29515 } 29516 29517 /* ARGSUSED */ 29518 static int 29519 ipmp_hook_emulation_set(queue_t *q, mblk_t *mp, char *value, 29520 caddr_t addr, cred_t *cr) 29521 { 29522 int *v = (int *)addr; 29523 long new_value; 29524 ip_stack_t *ipst = CONNQ_TO_IPST(q); 29525 29526 if (ddi_strtol(value, NULL, 10, &new_value) != 0) 29527 return (EINVAL); 29528 29529 if (*v != new_value) { 29530 *v = new_value; 29531 ipmp_hook_emulation_changed(ipst); 29532 } 29533 return (0); 29534 } 29535 29536 static void * 29537 ip_kstat2_init(netstackid_t stackid, ip_stat_t *ip_statisticsp) 29538 { 29539 kstat_t *ksp; 29540 29541 ip_stat_t template = { 29542 { "ipsec_fanout_proto", KSTAT_DATA_UINT64 }, 29543 { "ip_udp_fannorm", KSTAT_DATA_UINT64 }, 29544 { "ip_udp_fanmb", KSTAT_DATA_UINT64 }, 29545 { "ip_udp_fanothers", KSTAT_DATA_UINT64 }, 29546 { "ip_udp_fast_path", KSTAT_DATA_UINT64 }, 29547 { "ip_udp_slow_path", KSTAT_DATA_UINT64 }, 29548 { "ip_udp_input_err", KSTAT_DATA_UINT64 }, 29549 { "ip_tcppullup", KSTAT_DATA_UINT64 }, 29550 { "ip_tcpoptions", KSTAT_DATA_UINT64 }, 29551 { "ip_multipkttcp", KSTAT_DATA_UINT64 }, 29552 { "ip_tcp_fast_path", KSTAT_DATA_UINT64 }, 29553 { "ip_tcp_slow_path", KSTAT_DATA_UINT64 }, 29554 { "ip_tcp_input_error", KSTAT_DATA_UINT64 }, 29555 { "ip_db_ref", KSTAT_DATA_UINT64 }, 29556 { "ip_notaligned1", KSTAT_DATA_UINT64 }, 29557 { "ip_notaligned2", KSTAT_DATA_UINT64 }, 29558 { "ip_multimblk3", KSTAT_DATA_UINT64 }, 29559 { "ip_multimblk4", KSTAT_DATA_UINT64 }, 29560 { "ip_ipoptions", KSTAT_DATA_UINT64 }, 29561 { "ip_classify_fail", KSTAT_DATA_UINT64 }, 29562 { "ip_opt", KSTAT_DATA_UINT64 }, 29563 { "ip_udp_rput_local", KSTAT_DATA_UINT64 }, 29564 { "ipsec_proto_ahesp", KSTAT_DATA_UINT64 }, 29565 { "ip_conn_flputbq", KSTAT_DATA_UINT64 }, 29566 { "ip_conn_walk_drain", KSTAT_DATA_UINT64 }, 29567 { "ip_out_sw_cksum", KSTAT_DATA_UINT64 }, 29568 { "ip_in_sw_cksum", KSTAT_DATA_UINT64 }, 29569 { "ip_trash_ire_reclaim_calls", KSTAT_DATA_UINT64 }, 29570 { "ip_trash_ire_reclaim_success", KSTAT_DATA_UINT64 }, 29571 { "ip_ire_arp_timer_expired", KSTAT_DATA_UINT64 }, 29572 { "ip_ire_redirect_timer_expired", KSTAT_DATA_UINT64 }, 29573 { "ip_ire_pmtu_timer_expired", KSTAT_DATA_UINT64 }, 29574 { "ip_input_multi_squeue", KSTAT_DATA_UINT64 }, 29575 { "ip_tcp_in_full_hw_cksum_err", KSTAT_DATA_UINT64 }, 29576 { "ip_tcp_in_part_hw_cksum_err", KSTAT_DATA_UINT64 }, 29577 { "ip_tcp_in_sw_cksum_err", KSTAT_DATA_UINT64 }, 29578 { "ip_tcp_out_sw_cksum_bytes", KSTAT_DATA_UINT64 }, 29579 { "ip_udp_in_full_hw_cksum_err", KSTAT_DATA_UINT64 }, 29580 { "ip_udp_in_part_hw_cksum_err", KSTAT_DATA_UINT64 }, 29581 { "ip_udp_in_sw_cksum_err", KSTAT_DATA_UINT64 }, 29582 { "ip_udp_out_sw_cksum_bytes", KSTAT_DATA_UINT64 }, 29583 { "ip_frag_mdt_pkt_out", KSTAT_DATA_UINT64 }, 29584 { "ip_frag_mdt_discarded", KSTAT_DATA_UINT64 }, 29585 { "ip_frag_mdt_allocfail", KSTAT_DATA_UINT64 }, 29586 { "ip_frag_mdt_addpdescfail", KSTAT_DATA_UINT64 }, 29587 { "ip_frag_mdt_allocd", KSTAT_DATA_UINT64 }, 29588 }; 29589 29590 ksp = kstat_create_netstack("ip", 0, "ipstat", "net", 29591 KSTAT_TYPE_NAMED, sizeof (template) / sizeof (kstat_named_t), 29592 KSTAT_FLAG_VIRTUAL, stackid); 29593 29594 if (ksp == NULL) 29595 return (NULL); 29596 29597 bcopy(&template, ip_statisticsp, sizeof (template)); 29598 ksp->ks_data = (void *)ip_statisticsp; 29599 ksp->ks_private = (void *)(uintptr_t)stackid; 29600 29601 kstat_install(ksp); 29602 return (ksp); 29603 } 29604 29605 static void 29606 ip_kstat2_fini(netstackid_t stackid, kstat_t *ksp) 29607 { 29608 if (ksp != NULL) { 29609 ASSERT(stackid == (netstackid_t)(uintptr_t)ksp->ks_private); 29610 kstat_delete_netstack(ksp, stackid); 29611 } 29612 } 29613 29614 static void * 29615 ip_kstat_init(netstackid_t stackid, ip_stack_t *ipst) 29616 { 29617 kstat_t *ksp; 29618 29619 ip_named_kstat_t template = { 29620 { "forwarding", KSTAT_DATA_UINT32, 0 }, 29621 { "defaultTTL", KSTAT_DATA_UINT32, 0 }, 29622 { "inReceives", KSTAT_DATA_UINT64, 0 }, 29623 { "inHdrErrors", KSTAT_DATA_UINT32, 0 }, 29624 { "inAddrErrors", KSTAT_DATA_UINT32, 0 }, 29625 { "forwDatagrams", KSTAT_DATA_UINT64, 0 }, 29626 { "inUnknownProtos", KSTAT_DATA_UINT32, 0 }, 29627 { "inDiscards", KSTAT_DATA_UINT32, 0 }, 29628 { "inDelivers", KSTAT_DATA_UINT64, 0 }, 29629 { "outRequests", KSTAT_DATA_UINT64, 0 }, 29630 { "outDiscards", KSTAT_DATA_UINT32, 0 }, 29631 { "outNoRoutes", KSTAT_DATA_UINT32, 0 }, 29632 { "reasmTimeout", KSTAT_DATA_UINT32, 0 }, 29633 { "reasmReqds", KSTAT_DATA_UINT32, 0 }, 29634 { "reasmOKs", KSTAT_DATA_UINT32, 0 }, 29635 { "reasmFails", KSTAT_DATA_UINT32, 0 }, 29636 { "fragOKs", KSTAT_DATA_UINT32, 0 }, 29637 { "fragFails", KSTAT_DATA_UINT32, 0 }, 29638 { "fragCreates", KSTAT_DATA_UINT32, 0 }, 29639 { "addrEntrySize", KSTAT_DATA_INT32, 0 }, 29640 { "routeEntrySize", KSTAT_DATA_INT32, 0 }, 29641 { "netToMediaEntrySize", KSTAT_DATA_INT32, 0 }, 29642 { "routingDiscards", KSTAT_DATA_UINT32, 0 }, 29643 { "inErrs", KSTAT_DATA_UINT32, 0 }, 29644 { "noPorts", KSTAT_DATA_UINT32, 0 }, 29645 { "inCksumErrs", KSTAT_DATA_UINT32, 0 }, 29646 { "reasmDuplicates", KSTAT_DATA_UINT32, 0 }, 29647 { "reasmPartDups", KSTAT_DATA_UINT32, 0 }, 29648 { "forwProhibits", KSTAT_DATA_UINT32, 0 }, 29649 { "udpInCksumErrs", KSTAT_DATA_UINT32, 0 }, 29650 { "udpInOverflows", KSTAT_DATA_UINT32, 0 }, 29651 { "rawipInOverflows", KSTAT_DATA_UINT32, 0 }, 29652 { "ipsecInSucceeded", KSTAT_DATA_UINT32, 0 }, 29653 { "ipsecInFailed", KSTAT_DATA_INT32, 0 }, 29654 { "memberEntrySize", KSTAT_DATA_INT32, 0 }, 29655 { "inIPv6", KSTAT_DATA_UINT32, 0 }, 29656 { "outIPv6", KSTAT_DATA_UINT32, 0 }, 29657 { "outSwitchIPv6", KSTAT_DATA_UINT32, 0 }, 29658 }; 29659 29660 ksp = kstat_create_netstack("ip", 0, "ip", "mib2", KSTAT_TYPE_NAMED, 29661 NUM_OF_FIELDS(ip_named_kstat_t), 29662 0, stackid); 29663 if (ksp == NULL || ksp->ks_data == NULL) 29664 return (NULL); 29665 29666 template.forwarding.value.ui32 = WE_ARE_FORWARDING(ipst) ? 1:2; 29667 template.defaultTTL.value.ui32 = (uint32_t)ipst->ips_ip_def_ttl; 29668 template.reasmTimeout.value.ui32 = ipst->ips_ip_g_frag_timeout; 29669 template.addrEntrySize.value.i32 = sizeof (mib2_ipAddrEntry_t); 29670 template.routeEntrySize.value.i32 = sizeof (mib2_ipRouteEntry_t); 29671 29672 template.netToMediaEntrySize.value.i32 = 29673 sizeof (mib2_ipNetToMediaEntry_t); 29674 29675 template.memberEntrySize.value.i32 = sizeof (ipv6_member_t); 29676 29677 bcopy(&template, ksp->ks_data, sizeof (template)); 29678 ksp->ks_update = ip_kstat_update; 29679 ksp->ks_private = (void *)(uintptr_t)stackid; 29680 29681 kstat_install(ksp); 29682 return (ksp); 29683 } 29684 29685 static void 29686 ip_kstat_fini(netstackid_t stackid, kstat_t *ksp) 29687 { 29688 if (ksp != NULL) { 29689 ASSERT(stackid == (netstackid_t)(uintptr_t)ksp->ks_private); 29690 kstat_delete_netstack(ksp, stackid); 29691 } 29692 } 29693 29694 static int 29695 ip_kstat_update(kstat_t *kp, int rw) 29696 { 29697 ip_named_kstat_t *ipkp; 29698 mib2_ipIfStatsEntry_t ipmib; 29699 ill_walk_context_t ctx; 29700 ill_t *ill; 29701 netstackid_t stackid = (zoneid_t)(uintptr_t)kp->ks_private; 29702 netstack_t *ns; 29703 ip_stack_t *ipst; 29704 29705 if (kp == NULL || kp->ks_data == NULL) 29706 return (EIO); 29707 29708 if (rw == KSTAT_WRITE) 29709 return (EACCES); 29710 29711 ns = netstack_find_by_stackid(stackid); 29712 if (ns == NULL) 29713 return (-1); 29714 ipst = ns->netstack_ip; 29715 if (ipst == NULL) { 29716 netstack_rele(ns); 29717 return (-1); 29718 } 29719 ipkp = (ip_named_kstat_t *)kp->ks_data; 29720 29721 bcopy(&ipst->ips_ip_mib, &ipmib, sizeof (ipmib)); 29722 rw_enter(&ipst->ips_ill_g_lock, RW_READER); 29723 ill = ILL_START_WALK_V4(&ctx, ipst); 29724 for (; ill != NULL; ill = ill_next(&ctx, ill)) 29725 ip_mib2_add_ip_stats(&ipmib, ill->ill_ip_mib); 29726 rw_exit(&ipst->ips_ill_g_lock); 29727 29728 ipkp->forwarding.value.ui32 = ipmib.ipIfStatsForwarding; 29729 ipkp->defaultTTL.value.ui32 = ipmib.ipIfStatsDefaultTTL; 29730 ipkp->inReceives.value.ui64 = ipmib.ipIfStatsHCInReceives; 29731 ipkp->inHdrErrors.value.ui32 = ipmib.ipIfStatsInHdrErrors; 29732 ipkp->inAddrErrors.value.ui32 = ipmib.ipIfStatsInAddrErrors; 29733 ipkp->forwDatagrams.value.ui64 = ipmib.ipIfStatsHCOutForwDatagrams; 29734 ipkp->inUnknownProtos.value.ui32 = ipmib.ipIfStatsInUnknownProtos; 29735 ipkp->inDiscards.value.ui32 = ipmib.ipIfStatsInDiscards; 29736 ipkp->inDelivers.value.ui64 = ipmib.ipIfStatsHCInDelivers; 29737 ipkp->outRequests.value.ui64 = ipmib.ipIfStatsHCOutRequests; 29738 ipkp->outDiscards.value.ui32 = ipmib.ipIfStatsOutDiscards; 29739 ipkp->outNoRoutes.value.ui32 = ipmib.ipIfStatsOutNoRoutes; 29740 ipkp->reasmTimeout.value.ui32 = ipst->ips_ip_g_frag_timeout; 29741 ipkp->reasmReqds.value.ui32 = ipmib.ipIfStatsReasmReqds; 29742 ipkp->reasmOKs.value.ui32 = ipmib.ipIfStatsReasmOKs; 29743 ipkp->reasmFails.value.ui32 = ipmib.ipIfStatsReasmFails; 29744 ipkp->fragOKs.value.ui32 = ipmib.ipIfStatsOutFragOKs; 29745 ipkp->fragFails.value.ui32 = ipmib.ipIfStatsOutFragFails; 29746 ipkp->fragCreates.value.ui32 = ipmib.ipIfStatsOutFragCreates; 29747 29748 ipkp->routingDiscards.value.ui32 = 0; 29749 ipkp->inErrs.value.ui32 = ipmib.tcpIfStatsInErrs; 29750 ipkp->noPorts.value.ui32 = ipmib.udpIfStatsNoPorts; 29751 ipkp->inCksumErrs.value.ui32 = ipmib.ipIfStatsInCksumErrs; 29752 ipkp->reasmDuplicates.value.ui32 = ipmib.ipIfStatsReasmDuplicates; 29753 ipkp->reasmPartDups.value.ui32 = ipmib.ipIfStatsReasmPartDups; 29754 ipkp->forwProhibits.value.ui32 = ipmib.ipIfStatsForwProhibits; 29755 ipkp->udpInCksumErrs.value.ui32 = ipmib.udpIfStatsInCksumErrs; 29756 ipkp->udpInOverflows.value.ui32 = ipmib.udpIfStatsInOverflows; 29757 ipkp->rawipInOverflows.value.ui32 = ipmib.rawipIfStatsInOverflows; 29758 ipkp->ipsecInSucceeded.value.ui32 = ipmib.ipsecIfStatsInSucceeded; 29759 ipkp->ipsecInFailed.value.i32 = ipmib.ipsecIfStatsInFailed; 29760 29761 ipkp->inIPv6.value.ui32 = ipmib.ipIfStatsInWrongIPVersion; 29762 ipkp->outIPv6.value.ui32 = ipmib.ipIfStatsOutWrongIPVersion; 29763 ipkp->outSwitchIPv6.value.ui32 = ipmib.ipIfStatsOutSwitchIPVersion; 29764 29765 netstack_rele(ns); 29766 29767 return (0); 29768 } 29769 29770 static void * 29771 icmp_kstat_init(netstackid_t stackid) 29772 { 29773 kstat_t *ksp; 29774 29775 icmp_named_kstat_t template = { 29776 { "inMsgs", KSTAT_DATA_UINT32 }, 29777 { "inErrors", KSTAT_DATA_UINT32 }, 29778 { "inDestUnreachs", KSTAT_DATA_UINT32 }, 29779 { "inTimeExcds", KSTAT_DATA_UINT32 }, 29780 { "inParmProbs", KSTAT_DATA_UINT32 }, 29781 { "inSrcQuenchs", KSTAT_DATA_UINT32 }, 29782 { "inRedirects", KSTAT_DATA_UINT32 }, 29783 { "inEchos", KSTAT_DATA_UINT32 }, 29784 { "inEchoReps", KSTAT_DATA_UINT32 }, 29785 { "inTimestamps", KSTAT_DATA_UINT32 }, 29786 { "inTimestampReps", KSTAT_DATA_UINT32 }, 29787 { "inAddrMasks", KSTAT_DATA_UINT32 }, 29788 { "inAddrMaskReps", KSTAT_DATA_UINT32 }, 29789 { "outMsgs", KSTAT_DATA_UINT32 }, 29790 { "outErrors", KSTAT_DATA_UINT32 }, 29791 { "outDestUnreachs", KSTAT_DATA_UINT32 }, 29792 { "outTimeExcds", KSTAT_DATA_UINT32 }, 29793 { "outParmProbs", KSTAT_DATA_UINT32 }, 29794 { "outSrcQuenchs", KSTAT_DATA_UINT32 }, 29795 { "outRedirects", KSTAT_DATA_UINT32 }, 29796 { "outEchos", KSTAT_DATA_UINT32 }, 29797 { "outEchoReps", KSTAT_DATA_UINT32 }, 29798 { "outTimestamps", KSTAT_DATA_UINT32 }, 29799 { "outTimestampReps", KSTAT_DATA_UINT32 }, 29800 { "outAddrMasks", KSTAT_DATA_UINT32 }, 29801 { "outAddrMaskReps", KSTAT_DATA_UINT32 }, 29802 { "inChksumErrs", KSTAT_DATA_UINT32 }, 29803 { "inUnknowns", KSTAT_DATA_UINT32 }, 29804 { "inFragNeeded", KSTAT_DATA_UINT32 }, 29805 { "outFragNeeded", KSTAT_DATA_UINT32 }, 29806 { "outDrops", KSTAT_DATA_UINT32 }, 29807 { "inOverFlows", KSTAT_DATA_UINT32 }, 29808 { "inBadRedirects", KSTAT_DATA_UINT32 }, 29809 }; 29810 29811 ksp = kstat_create_netstack("ip", 0, "icmp", "mib2", KSTAT_TYPE_NAMED, 29812 NUM_OF_FIELDS(icmp_named_kstat_t), 29813 0, stackid); 29814 if (ksp == NULL || ksp->ks_data == NULL) 29815 return (NULL); 29816 29817 bcopy(&template, ksp->ks_data, sizeof (template)); 29818 29819 ksp->ks_update = icmp_kstat_update; 29820 ksp->ks_private = (void *)(uintptr_t)stackid; 29821 29822 kstat_install(ksp); 29823 return (ksp); 29824 } 29825 29826 static void 29827 icmp_kstat_fini(netstackid_t stackid, kstat_t *ksp) 29828 { 29829 if (ksp != NULL) { 29830 ASSERT(stackid == (netstackid_t)(uintptr_t)ksp->ks_private); 29831 kstat_delete_netstack(ksp, stackid); 29832 } 29833 } 29834 29835 static int 29836 icmp_kstat_update(kstat_t *kp, int rw) 29837 { 29838 icmp_named_kstat_t *icmpkp; 29839 netstackid_t stackid = (zoneid_t)(uintptr_t)kp->ks_private; 29840 netstack_t *ns; 29841 ip_stack_t *ipst; 29842 29843 if ((kp == NULL) || (kp->ks_data == NULL)) 29844 return (EIO); 29845 29846 if (rw == KSTAT_WRITE) 29847 return (EACCES); 29848 29849 ns = netstack_find_by_stackid(stackid); 29850 if (ns == NULL) 29851 return (-1); 29852 ipst = ns->netstack_ip; 29853 if (ipst == NULL) { 29854 netstack_rele(ns); 29855 return (-1); 29856 } 29857 icmpkp = (icmp_named_kstat_t *)kp->ks_data; 29858 29859 icmpkp->inMsgs.value.ui32 = ipst->ips_icmp_mib.icmpInMsgs; 29860 icmpkp->inErrors.value.ui32 = ipst->ips_icmp_mib.icmpInErrors; 29861 icmpkp->inDestUnreachs.value.ui32 = 29862 ipst->ips_icmp_mib.icmpInDestUnreachs; 29863 icmpkp->inTimeExcds.value.ui32 = ipst->ips_icmp_mib.icmpInTimeExcds; 29864 icmpkp->inParmProbs.value.ui32 = ipst->ips_icmp_mib.icmpInParmProbs; 29865 icmpkp->inSrcQuenchs.value.ui32 = ipst->ips_icmp_mib.icmpInSrcQuenchs; 29866 icmpkp->inRedirects.value.ui32 = ipst->ips_icmp_mib.icmpInRedirects; 29867 icmpkp->inEchos.value.ui32 = ipst->ips_icmp_mib.icmpInEchos; 29868 icmpkp->inEchoReps.value.ui32 = ipst->ips_icmp_mib.icmpInEchoReps; 29869 icmpkp->inTimestamps.value.ui32 = ipst->ips_icmp_mib.icmpInTimestamps; 29870 icmpkp->inTimestampReps.value.ui32 = 29871 ipst->ips_icmp_mib.icmpInTimestampReps; 29872 icmpkp->inAddrMasks.value.ui32 = ipst->ips_icmp_mib.icmpInAddrMasks; 29873 icmpkp->inAddrMaskReps.value.ui32 = 29874 ipst->ips_icmp_mib.icmpInAddrMaskReps; 29875 icmpkp->outMsgs.value.ui32 = ipst->ips_icmp_mib.icmpOutMsgs; 29876 icmpkp->outErrors.value.ui32 = ipst->ips_icmp_mib.icmpOutErrors; 29877 icmpkp->outDestUnreachs.value.ui32 = 29878 ipst->ips_icmp_mib.icmpOutDestUnreachs; 29879 icmpkp->outTimeExcds.value.ui32 = ipst->ips_icmp_mib.icmpOutTimeExcds; 29880 icmpkp->outParmProbs.value.ui32 = ipst->ips_icmp_mib.icmpOutParmProbs; 29881 icmpkp->outSrcQuenchs.value.ui32 = 29882 ipst->ips_icmp_mib.icmpOutSrcQuenchs; 29883 icmpkp->outRedirects.value.ui32 = ipst->ips_icmp_mib.icmpOutRedirects; 29884 icmpkp->outEchos.value.ui32 = ipst->ips_icmp_mib.icmpOutEchos; 29885 icmpkp->outEchoReps.value.ui32 = ipst->ips_icmp_mib.icmpOutEchoReps; 29886 icmpkp->outTimestamps.value.ui32 = 29887 ipst->ips_icmp_mib.icmpOutTimestamps; 29888 icmpkp->outTimestampReps.value.ui32 = 29889 ipst->ips_icmp_mib.icmpOutTimestampReps; 29890 icmpkp->outAddrMasks.value.ui32 = 29891 ipst->ips_icmp_mib.icmpOutAddrMasks; 29892 icmpkp->outAddrMaskReps.value.ui32 = 29893 ipst->ips_icmp_mib.icmpOutAddrMaskReps; 29894 icmpkp->inCksumErrs.value.ui32 = ipst->ips_icmp_mib.icmpInCksumErrs; 29895 icmpkp->inUnknowns.value.ui32 = ipst->ips_icmp_mib.icmpInUnknowns; 29896 icmpkp->inFragNeeded.value.ui32 = ipst->ips_icmp_mib.icmpInFragNeeded; 29897 icmpkp->outFragNeeded.value.ui32 = 29898 ipst->ips_icmp_mib.icmpOutFragNeeded; 29899 icmpkp->outDrops.value.ui32 = ipst->ips_icmp_mib.icmpOutDrops; 29900 icmpkp->inOverflows.value.ui32 = ipst->ips_icmp_mib.icmpInOverflows; 29901 icmpkp->inBadRedirects.value.ui32 = 29902 ipst->ips_icmp_mib.icmpInBadRedirects; 29903 29904 netstack_rele(ns); 29905 return (0); 29906 } 29907 29908 /* 29909 * This is the fanout function for raw socket opened for SCTP. Note 29910 * that it is called after SCTP checks that there is no socket which 29911 * wants a packet. Then before SCTP handles this out of the blue packet, 29912 * this function is called to see if there is any raw socket for SCTP. 29913 * If there is and it is bound to the correct address, the packet will 29914 * be sent to that socket. Note that only one raw socket can be bound to 29915 * a port. This is assured in ipcl_sctp_hash_insert(); 29916 */ 29917 void 29918 ip_fanout_sctp_raw(mblk_t *mp, ill_t *recv_ill, ipha_t *ipha, boolean_t isv4, 29919 uint32_t ports, boolean_t mctl_present, uint_t flags, boolean_t ip_policy, 29920 zoneid_t zoneid) 29921 { 29922 conn_t *connp; 29923 queue_t *rq; 29924 mblk_t *first_mp; 29925 boolean_t secure; 29926 ip6_t *ip6h; 29927 ip_stack_t *ipst = recv_ill->ill_ipst; 29928 ipsec_stack_t *ipss = ipst->ips_netstack->netstack_ipsec; 29929 29930 first_mp = mp; 29931 if (mctl_present) { 29932 mp = first_mp->b_cont; 29933 secure = ipsec_in_is_secure(first_mp); 29934 ASSERT(mp != NULL); 29935 } else { 29936 secure = B_FALSE; 29937 } 29938 ip6h = (isv4) ? NULL : (ip6_t *)ipha; 29939 29940 connp = ipcl_classify_raw(mp, IPPROTO_SCTP, zoneid, ports, ipha, ipst); 29941 if (connp == NULL) { 29942 sctp_ootb_input(first_mp, recv_ill, zoneid, mctl_present); 29943 return; 29944 } 29945 rq = connp->conn_rq; 29946 if (!canputnext(rq)) { 29947 CONN_DEC_REF(connp); 29948 BUMP_MIB(recv_ill->ill_ip_mib, rawipIfStatsInOverflows); 29949 freemsg(first_mp); 29950 return; 29951 } 29952 if ((isv4 ? CONN_INBOUND_POLICY_PRESENT(connp, ipss) : 29953 CONN_INBOUND_POLICY_PRESENT_V6(connp, ipss)) || secure) { 29954 first_mp = ipsec_check_inbound_policy(first_mp, connp, 29955 (isv4 ? ipha : NULL), ip6h, mctl_present); 29956 if (first_mp == NULL) { 29957 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsInDiscards); 29958 CONN_DEC_REF(connp); 29959 return; 29960 } 29961 } 29962 /* 29963 * We probably should not send M_CTL message up to 29964 * raw socket. 29965 */ 29966 if (mctl_present) 29967 freeb(first_mp); 29968 29969 /* Initiate IPPF processing here if needed. */ 29970 if ((isv4 && IPP_ENABLED(IPP_LOCAL_IN, ipst) && ip_policy) || 29971 (!isv4 && IP6_IN_IPP(flags, ipst))) { 29972 ip_process(IPP_LOCAL_IN, &mp, 29973 recv_ill->ill_phyint->phyint_ifindex); 29974 if (mp == NULL) { 29975 CONN_DEC_REF(connp); 29976 return; 29977 } 29978 } 29979 29980 if (connp->conn_recvif || connp->conn_recvslla || 29981 ((connp->conn_ip_recvpktinfo || 29982 (!isv4 && IN6_IS_ADDR_LINKLOCAL(&ip6h->ip6_src))) && 29983 (flags & IP_FF_IPINFO))) { 29984 int in_flags = 0; 29985 29986 /* 29987 * Since sctp does not support IP_RECVPKTINFO for v4, only pass 29988 * IPF_RECVIF. 29989 */ 29990 if (connp->conn_recvif || connp->conn_ip_recvpktinfo) { 29991 in_flags = IPF_RECVIF; 29992 } 29993 if (connp->conn_recvslla) { 29994 in_flags |= IPF_RECVSLLA; 29995 } 29996 if (isv4) { 29997 mp = ip_add_info(mp, recv_ill, in_flags, 29998 IPCL_ZONEID(connp), ipst); 29999 } else { 30000 mp = ip_add_info_v6(mp, recv_ill, &ip6h->ip6_dst); 30001 if (mp == NULL) { 30002 BUMP_MIB(recv_ill->ill_ip_mib, 30003 ipIfStatsInDiscards); 30004 CONN_DEC_REF(connp); 30005 return; 30006 } 30007 } 30008 } 30009 30010 BUMP_MIB(recv_ill->ill_ip_mib, ipIfStatsHCInDelivers); 30011 /* 30012 * We are sending the IPSEC_IN message also up. Refer 30013 * to comments above this function. 30014 */ 30015 putnext(rq, mp); 30016 CONN_DEC_REF(connp); 30017 } 30018 30019 #define UPDATE_IP_MIB_OB_COUNTERS(ill, len) \ 30020 { \ 30021 BUMP_MIB((ill)->ill_ip_mib, ipIfStatsHCOutTransmits); \ 30022 UPDATE_MIB((ill)->ill_ip_mib, ipIfStatsHCOutOctets, (len)); \ 30023 } 30024 /* 30025 * This function should be called only if all packet processing 30026 * including fragmentation is complete. Callers of this function 30027 * must set mp->b_prev to one of these values: 30028 * {0, IPP_FWD_OUT, IPP_LOCAL_OUT} 30029 * prior to handing over the mp as first argument to this function. 30030 * 30031 * If the ire passed by caller is incomplete, this function 30032 * queues the packet and if necessary, sends ARP request and bails. 30033 * If the ire passed is fully resolved, we simply prepend 30034 * the link-layer header to the packet, do ipsec hw acceleration 30035 * work if necessary, and send the packet out on the wire. 30036 * 30037 * NOTE: IPSEC will only call this function with fully resolved 30038 * ires if hw acceleration is involved. 30039 * TODO list : 30040 * a Handle M_MULTIDATA so that 30041 * tcp_multisend->tcp_multisend_data can 30042 * call ip_xmit_v4 directly 30043 * b Handle post-ARP work for fragments so that 30044 * ip_wput_frag can call this function. 30045 */ 30046 ipxmit_state_t 30047 ip_xmit_v4(mblk_t *mp, ire_t *ire, ipsec_out_t *io, boolean_t flow_ctl_enabled) 30048 { 30049 nce_t *arpce; 30050 queue_t *q; 30051 int ill_index; 30052 mblk_t *nxt_mp, *first_mp; 30053 boolean_t xmit_drop = B_FALSE; 30054 ip_proc_t proc; 30055 ill_t *out_ill; 30056 int pkt_len; 30057 30058 arpce = ire->ire_nce; 30059 ASSERT(arpce != NULL); 30060 30061 DTRACE_PROBE2(ip__xmit__v4, ire_t *, ire, nce_t *, arpce); 30062 30063 mutex_enter(&arpce->nce_lock); 30064 switch (arpce->nce_state) { 30065 case ND_REACHABLE: 30066 /* If there are other queued packets, queue this packet */ 30067 if (arpce->nce_qd_mp != NULL) { 30068 if (mp != NULL) 30069 nce_queue_mp_common(arpce, mp, B_FALSE); 30070 mp = arpce->nce_qd_mp; 30071 } 30072 arpce->nce_qd_mp = NULL; 30073 mutex_exit(&arpce->nce_lock); 30074 30075 /* 30076 * Flush the queue. In the common case, where the 30077 * ARP is already resolved, it will go through the 30078 * while loop only once. 30079 */ 30080 while (mp != NULL) { 30081 30082 nxt_mp = mp->b_next; 30083 mp->b_next = NULL; 30084 ASSERT(mp->b_datap->db_type != M_CTL); 30085 pkt_len = ntohs(((ipha_t *)mp->b_rptr)->ipha_length); 30086 /* 30087 * This info is needed for IPQOS to do COS marking 30088 * in ip_wput_attach_llhdr->ip_process. 30089 */ 30090 proc = (ip_proc_t)(uintptr_t)mp->b_prev; 30091 mp->b_prev = NULL; 30092 30093 /* set up ill index for outbound qos processing */ 30094 out_ill = ire->ire_ipif->ipif_ill; 30095 ill_index = out_ill->ill_phyint->phyint_ifindex; 30096 first_mp = ip_wput_attach_llhdr(mp, ire, proc, 30097 ill_index); 30098 if (first_mp == NULL) { 30099 xmit_drop = B_TRUE; 30100 BUMP_MIB(out_ill->ill_ip_mib, 30101 ipIfStatsOutDiscards); 30102 goto next_mp; 30103 } 30104 /* non-ipsec hw accel case */ 30105 if (io == NULL || !io->ipsec_out_accelerated) { 30106 /* send it */ 30107 q = ire->ire_stq; 30108 if (proc == IPP_FWD_OUT) { 30109 UPDATE_IB_PKT_COUNT(ire); 30110 } else { 30111 UPDATE_OB_PKT_COUNT(ire); 30112 } 30113 ire->ire_last_used_time = lbolt; 30114 30115 if (flow_ctl_enabled || canputnext(q)) { 30116 if (proc == IPP_FWD_OUT) { 30117 BUMP_MIB(out_ill->ill_ip_mib, 30118 ipIfStatsHCOutForwDatagrams); 30119 } 30120 UPDATE_IP_MIB_OB_COUNTERS(out_ill, 30121 pkt_len); 30122 30123 putnext(q, first_mp); 30124 } else { 30125 BUMP_MIB(out_ill->ill_ip_mib, 30126 ipIfStatsOutDiscards); 30127 xmit_drop = B_TRUE; 30128 freemsg(first_mp); 30129 } 30130 } else { 30131 /* 30132 * Safety Pup says: make sure this 30133 * is going to the right interface! 30134 */ 30135 ill_t *ill1 = 30136 (ill_t *)ire->ire_stq->q_ptr; 30137 int ifindex = 30138 ill1->ill_phyint->phyint_ifindex; 30139 if (ifindex != 30140 io->ipsec_out_capab_ill_index) { 30141 xmit_drop = B_TRUE; 30142 freemsg(mp); 30143 } else { 30144 UPDATE_IP_MIB_OB_COUNTERS(ill1, 30145 pkt_len); 30146 ipsec_hw_putnext(ire->ire_stq, mp); 30147 } 30148 } 30149 next_mp: 30150 mp = nxt_mp; 30151 } /* while (mp != NULL) */ 30152 if (xmit_drop) 30153 return (SEND_FAILED); 30154 else 30155 return (SEND_PASSED); 30156 30157 case ND_INITIAL: 30158 case ND_INCOMPLETE: 30159 30160 /* 30161 * While we do send off packets to dests that 30162 * use fully-resolved CGTP routes, we do not 30163 * handle unresolved CGTP routes. 30164 */ 30165 ASSERT(!(ire->ire_flags & RTF_MULTIRT)); 30166 ASSERT(io == NULL || !io->ipsec_out_accelerated); 30167 30168 if (mp != NULL) { 30169 /* queue the packet */ 30170 nce_queue_mp_common(arpce, mp, B_FALSE); 30171 } 30172 30173 if (arpce->nce_state == ND_INCOMPLETE) { 30174 mutex_exit(&arpce->nce_lock); 30175 DTRACE_PROBE3(ip__xmit__incomplete, 30176 (ire_t *), ire, (mblk_t *), mp, 30177 (ipsec_out_t *), io); 30178 return (LOOKUP_IN_PROGRESS); 30179 } 30180 30181 arpce->nce_state = ND_INCOMPLETE; 30182 mutex_exit(&arpce->nce_lock); 30183 /* 30184 * Note that ire_add() (called from ire_forward()) 30185 * holds a ref on the ire until ARP is completed. 30186 */ 30187 30188 ire_arpresolve(ire, ire_to_ill(ire)); 30189 return (LOOKUP_IN_PROGRESS); 30190 default: 30191 ASSERT(0); 30192 mutex_exit(&arpce->nce_lock); 30193 return (LLHDR_RESLV_FAILED); 30194 } 30195 } 30196 30197 #undef UPDATE_IP_MIB_OB_COUNTERS 30198 30199 /* 30200 * Return B_TRUE if the buffers differ in length or content. 30201 * This is used for comparing extension header buffers. 30202 * Note that an extension header would be declared different 30203 * even if all that changed was the next header value in that header i.e. 30204 * what really changed is the next extension header. 30205 */ 30206 boolean_t 30207 ip_cmpbuf(const void *abuf, uint_t alen, boolean_t b_valid, const void *bbuf, 30208 uint_t blen) 30209 { 30210 if (!b_valid) 30211 blen = 0; 30212 30213 if (alen != blen) 30214 return (B_TRUE); 30215 if (alen == 0) 30216 return (B_FALSE); /* Both zero length */ 30217 return (bcmp(abuf, bbuf, alen)); 30218 } 30219 30220 /* 30221 * Preallocate memory for ip_savebuf(). Returns B_TRUE if ok. 30222 * Return B_FALSE if memory allocation fails - don't change any state! 30223 */ 30224 boolean_t 30225 ip_allocbuf(void **dstp, uint_t *dstlenp, boolean_t src_valid, 30226 const void *src, uint_t srclen) 30227 { 30228 void *dst; 30229 30230 if (!src_valid) 30231 srclen = 0; 30232 30233 ASSERT(*dstlenp == 0); 30234 if (src != NULL && srclen != 0) { 30235 dst = mi_alloc(srclen, BPRI_MED); 30236 if (dst == NULL) 30237 return (B_FALSE); 30238 } else { 30239 dst = NULL; 30240 } 30241 if (*dstp != NULL) 30242 mi_free(*dstp); 30243 *dstp = dst; 30244 *dstlenp = dst == NULL ? 0 : srclen; 30245 return (B_TRUE); 30246 } 30247 30248 /* 30249 * Replace what is in *dst, *dstlen with the source. 30250 * Assumes ip_allocbuf has already been called. 30251 */ 30252 void 30253 ip_savebuf(void **dstp, uint_t *dstlenp, boolean_t src_valid, 30254 const void *src, uint_t srclen) 30255 { 30256 if (!src_valid) 30257 srclen = 0; 30258 30259 ASSERT(*dstlenp == srclen); 30260 if (src != NULL && srclen != 0) 30261 bcopy(src, *dstp, srclen); 30262 } 30263 30264 /* 30265 * Free the storage pointed to by the members of an ip6_pkt_t. 30266 */ 30267 void 30268 ip6_pkt_free(ip6_pkt_t *ipp) 30269 { 30270 ASSERT(ipp->ipp_pathmtu == NULL && !(ipp->ipp_fields & IPPF_PATHMTU)); 30271 30272 if (ipp->ipp_fields & IPPF_HOPOPTS) { 30273 kmem_free(ipp->ipp_hopopts, ipp->ipp_hopoptslen); 30274 ipp->ipp_hopopts = NULL; 30275 ipp->ipp_hopoptslen = 0; 30276 } 30277 if (ipp->ipp_fields & IPPF_RTDSTOPTS) { 30278 kmem_free(ipp->ipp_rtdstopts, ipp->ipp_rtdstoptslen); 30279 ipp->ipp_rtdstopts = NULL; 30280 ipp->ipp_rtdstoptslen = 0; 30281 } 30282 if (ipp->ipp_fields & IPPF_DSTOPTS) { 30283 kmem_free(ipp->ipp_dstopts, ipp->ipp_dstoptslen); 30284 ipp->ipp_dstopts = NULL; 30285 ipp->ipp_dstoptslen = 0; 30286 } 30287 if (ipp->ipp_fields & IPPF_RTHDR) { 30288 kmem_free(ipp->ipp_rthdr, ipp->ipp_rthdrlen); 30289 ipp->ipp_rthdr = NULL; 30290 ipp->ipp_rthdrlen = 0; 30291 } 30292 ipp->ipp_fields &= ~(IPPF_HOPOPTS | IPPF_RTDSTOPTS | IPPF_DSTOPTS | 30293 IPPF_RTHDR); 30294 } 30295