1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef _NET_XFRM_H 3 #define _NET_XFRM_H 4 5 #include <linux/compiler.h> 6 #include <linux/xfrm.h> 7 #include <linux/spinlock.h> 8 #include <linux/list.h> 9 #include <linux/skbuff.h> 10 #include <linux/socket.h> 11 #include <linux/pfkeyv2.h> 12 #include <linux/ipsec.h> 13 #include <linux/in6.h> 14 #include <linux/mutex.h> 15 #include <linux/audit.h> 16 #include <linux/slab.h> 17 #include <linux/refcount.h> 18 #include <linux/sockptr.h> 19 20 #include <net/sock.h> 21 #include <net/dst.h> 22 #include <net/inet_dscp.h> 23 #include <net/ip.h> 24 #include <net/route.h> 25 #include <net/ipv6.h> 26 #include <net/ip6_fib.h> 27 #include <net/flow.h> 28 #include <net/gro_cells.h> 29 30 #include <linux/interrupt.h> 31 32 #ifdef CONFIG_XFRM_STATISTICS 33 #include <net/snmp.h> 34 #endif 35 36 #define XFRM_PROTO_ESP 50 37 #define XFRM_PROTO_AH 51 38 #define XFRM_PROTO_COMP 108 39 #define XFRM_PROTO_IPIP 4 40 #define XFRM_PROTO_IPV6 41 41 #define XFRM_PROTO_IPTFS IPPROTO_AGGFRAG 42 #define XFRM_PROTO_ROUTING IPPROTO_ROUTING 43 #define XFRM_PROTO_DSTOPTS IPPROTO_DSTOPTS 44 45 #define XFRM_ALIGN4(len) (((len) + 3) & ~3) 46 #define XFRM_ALIGN8(len) (((len) + 7) & ~7) 47 #define MODULE_ALIAS_XFRM_MODE(family, encap) \ 48 MODULE_ALIAS("xfrm-mode-" __stringify(family) "-" __stringify(encap)) 49 #define MODULE_ALIAS_XFRM_TYPE(family, proto) \ 50 MODULE_ALIAS("xfrm-type-" __stringify(family) "-" __stringify(proto)) 51 #define MODULE_ALIAS_XFRM_OFFLOAD_TYPE(family, proto) \ 52 MODULE_ALIAS("xfrm-offload-" __stringify(family) "-" __stringify(proto)) 53 54 #ifdef CONFIG_XFRM_STATISTICS 55 #define XFRM_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.xfrm_statistics, field) 56 #define XFRM_ADD_STATS(net, field, val) SNMP_ADD_STATS((net)->mib.xfrm_statistics, field, val) 57 #else 58 #define XFRM_INC_STATS(net, field) ((void)(net)) 59 #define XFRM_ADD_STATS(net, field, val) ((void)(net)) 60 #endif 61 62 63 /* Organization of SPD aka "XFRM rules" 64 ------------------------------------ 65 66 Basic objects: 67 - policy rule, struct xfrm_policy (=SPD entry) 68 - bundle of transformations, struct dst_entry == struct xfrm_dst (=SA bundle) 69 - instance of a transformer, struct xfrm_state (=SA) 70 - template to clone xfrm_state, struct xfrm_tmpl 71 72 SPD is organized as hash table (for policies that meet minimum address prefix 73 length setting, net->xfrm.policy_hthresh). Other policies are stored in 74 lists, sorted into rbtree ordered by destination and source address networks. 75 See net/xfrm/xfrm_policy.c for details. 76 77 (To be compatible with existing pfkeyv2 implementations, 78 many rules with priority of 0x7fffffff are allowed to exist and 79 such rules are ordered in an unpredictable way, thanks to bsd folks.) 80 81 If "action" is "block", then we prohibit the flow, otherwise: 82 if "xfrms_nr" is zero, the flow passes untransformed. Otherwise, 83 policy entry has list of up to XFRM_MAX_DEPTH transformations, 84 described by templates xfrm_tmpl. Each template is resolved 85 to a complete xfrm_state (see below) and we pack bundle of transformations 86 to a dst_entry returned to requester. 87 88 dst -. xfrm .-> xfrm_state #1 89 |---. child .-> dst -. xfrm .-> xfrm_state #2 90 |---. child .-> dst -. xfrm .-> xfrm_state #3 91 |---. child .-> NULL 92 93 94 Resolution of xrfm_tmpl 95 ----------------------- 96 Template contains: 97 1. ->mode Mode: transport or tunnel 98 2. ->id.proto Protocol: AH/ESP/IPCOMP 99 3. ->id.daddr Remote tunnel endpoint, ignored for transport mode. 100 Q: allow to resolve security gateway? 101 4. ->id.spi If not zero, static SPI. 102 5. ->saddr Local tunnel endpoint, ignored for transport mode. 103 6. ->algos List of allowed algos. Plain bitmask now. 104 Q: ealgos, aalgos, calgos. What a mess... 105 7. ->share Sharing mode. 106 Q: how to implement private sharing mode? To add struct sock* to 107 flow id? 108 109 Having this template we search through SAD searching for entries 110 with appropriate mode/proto/algo, permitted by selector. 111 If no appropriate entry found, it is requested from key manager. 112 113 PROBLEMS: 114 Q: How to find all the bundles referring to a physical path for 115 PMTU discovery? Seems, dst should contain list of all parents... 116 and enter to infinite locking hierarchy disaster. 117 No! It is easier, we will not search for them, let them find us. 118 We add genid to each dst plus pointer to genid of raw IP route, 119 pmtu disc will update pmtu on raw IP route and increase its genid. 120 dst_check() will see this for top level and trigger resyncing 121 metrics. Plus, it will be made via sk->sk_dst_cache. Solved. 122 */ 123 124 struct xfrm_state_walk { 125 struct list_head all; 126 u8 state; 127 u8 dying; 128 u8 proto; 129 u32 seq; 130 struct xfrm_address_filter *filter; 131 }; 132 133 enum { 134 XFRM_DEV_OFFLOAD_IN = 1, 135 XFRM_DEV_OFFLOAD_OUT, 136 XFRM_DEV_OFFLOAD_FWD, 137 }; 138 139 enum { 140 XFRM_DEV_OFFLOAD_UNSPECIFIED, 141 XFRM_DEV_OFFLOAD_CRYPTO, 142 XFRM_DEV_OFFLOAD_PACKET, 143 }; 144 145 enum { 146 XFRM_DEV_OFFLOAD_FLAG_ACQ = 1, 147 }; 148 149 struct xfrm_dev_offload { 150 /* The device for this offload. 151 * Device drivers should not use this directly, as that will prevent 152 * them from working with bonding device. Instead, the device passed 153 * to the add/delete callbacks should be used. 154 */ 155 struct net_device *dev; 156 netdevice_tracker dev_tracker; 157 /* This is a private pointer used by the bonding driver (and eventually 158 * should be moved there). Device drivers should not use it. 159 * Protected by xfrm_state.lock AND bond.ipsec_lock in most cases, 160 * except in the .xdo_dev_state_del() flow, where only xfrm_state.lock 161 * is held. 162 */ 163 struct net_device *real_dev; 164 unsigned long offload_handle; 165 u8 dir : 2; 166 u8 type : 2; 167 u8 flags : 2; 168 }; 169 170 struct xfrm_mode { 171 u8 encap; 172 u8 family; 173 u8 flags; 174 }; 175 176 /* Flags for xfrm_mode. */ 177 enum { 178 XFRM_MODE_FLAG_TUNNEL = 1, 179 }; 180 181 enum xfrm_replay_mode { 182 XFRM_REPLAY_MODE_LEGACY, 183 XFRM_REPLAY_MODE_BMP, 184 XFRM_REPLAY_MODE_ESN, 185 }; 186 187 /* Full description of state of transformer. */ 188 struct xfrm_state { 189 possible_net_t xs_net; 190 union { 191 struct hlist_node gclist; 192 struct hlist_node bydst; 193 }; 194 union { 195 struct hlist_node dev_gclist; 196 struct hlist_node bysrc; 197 }; 198 struct hlist_node byspi; 199 struct hlist_node byseq; 200 struct hlist_node state_cache; 201 struct hlist_node state_cache_input; 202 203 refcount_t refcnt; 204 spinlock_t lock; 205 206 u32 pcpu_num; 207 struct xfrm_id id; 208 struct xfrm_selector sel; 209 struct xfrm_mark mark; 210 u32 if_id; 211 u32 tfcpad; 212 213 u32 genid; 214 215 /* Key manager bits */ 216 struct xfrm_state_walk km; 217 218 /* Parameters of this state. */ 219 struct { 220 u32 reqid; 221 u8 mode; 222 u8 replay_window; 223 u8 aalgo, ealgo, calgo; 224 u8 flags; 225 u16 family; 226 xfrm_address_t saddr; 227 int header_len; 228 int enc_hdr_len; 229 int trailer_len; 230 u32 extra_flags; 231 struct xfrm_mark smark; 232 } props; 233 234 struct xfrm_lifetime_cfg lft; 235 236 /* Data for transformer */ 237 struct xfrm_algo_auth *aalg; 238 struct xfrm_algo *ealg; 239 struct xfrm_algo *calg; 240 struct xfrm_algo_aead *aead; 241 const char *geniv; 242 243 /* mapping change rate limiting */ 244 __be16 new_mapping_sport; 245 u32 new_mapping; /* seconds */ 246 u32 mapping_maxage; /* seconds for input SA */ 247 248 /* Data for encapsulator */ 249 struct xfrm_encap_tmpl *encap; 250 251 /* NAT keepalive */ 252 u32 nat_keepalive_interval; /* seconds */ 253 time64_t nat_keepalive_expiration; 254 255 /* Data for care-of address */ 256 xfrm_address_t *coaddr; 257 258 /* IPComp needs an IPIP tunnel for handling uncompressed packets */ 259 struct xfrm_state *tunnel; 260 261 /* If a tunnel, number of users + 1 */ 262 atomic_t tunnel_users; 263 264 /* State for replay detection */ 265 struct xfrm_replay_state replay; 266 struct xfrm_replay_state_esn *replay_esn; 267 268 /* Replay detection state at the time we sent the last notification */ 269 struct xfrm_replay_state preplay; 270 struct xfrm_replay_state_esn *preplay_esn; 271 272 /* replay detection mode */ 273 enum xfrm_replay_mode repl_mode; 274 /* internal flag that only holds state for delayed aevent at the 275 * moment 276 */ 277 u32 xflags; 278 279 /* Replay detection notification settings */ 280 u32 replay_maxage; 281 u32 replay_maxdiff; 282 283 /* Replay detection notification timer */ 284 struct timer_list rtimer; 285 286 /* Statistics */ 287 struct xfrm_stats stats; 288 289 struct xfrm_lifetime_cur curlft; 290 struct hrtimer mtimer; 291 292 struct xfrm_dev_offload xso; 293 294 /* used to fix curlft->add_time when changing date */ 295 long saved_tmo; 296 297 /* Last used time */ 298 time64_t lastused; 299 300 struct page_frag xfrag; 301 302 /* Reference to data common to all the instances of this 303 * transformer. */ 304 const struct xfrm_type *type; 305 struct xfrm_mode inner_mode; 306 struct xfrm_mode inner_mode_iaf; 307 struct xfrm_mode outer_mode; 308 309 const struct xfrm_type_offload *type_offload; 310 311 /* Security context */ 312 struct xfrm_sec_ctx *security; 313 314 /* Private data of this transformer, format is opaque, 315 * interpreted by xfrm_type methods. */ 316 void *data; 317 u8 dir; 318 319 const struct xfrm_mode_cbs *mode_cbs; 320 void *mode_data; 321 }; 322 323 static inline struct net *xs_net(struct xfrm_state *x) 324 { 325 return read_pnet(&x->xs_net); 326 } 327 328 /* xflags - make enum if more show up */ 329 #define XFRM_TIME_DEFER 1 330 #define XFRM_SOFT_EXPIRE 2 331 332 enum { 333 XFRM_STATE_VOID, 334 XFRM_STATE_ACQ, 335 XFRM_STATE_VALID, 336 XFRM_STATE_ERROR, 337 XFRM_STATE_EXPIRED, 338 XFRM_STATE_DEAD 339 }; 340 341 /* callback structure passed from either netlink or pfkey */ 342 struct km_event { 343 union { 344 u32 hard; 345 u32 proto; 346 u32 byid; 347 u32 aevent; 348 u32 type; 349 } data; 350 351 u32 seq; 352 u32 portid; 353 u32 event; 354 struct net *net; 355 }; 356 357 struct xfrm_if_decode_session_result { 358 struct net *net; 359 u32 if_id; 360 }; 361 362 struct xfrm_if_cb { 363 bool (*decode_session)(struct sk_buff *skb, 364 unsigned short family, 365 struct xfrm_if_decode_session_result *res); 366 }; 367 368 void xfrm_if_register_cb(const struct xfrm_if_cb *ifcb); 369 void xfrm_if_unregister_cb(void); 370 371 struct xfrm_dst_lookup_params { 372 struct net *net; 373 dscp_t dscp; 374 int oif; 375 xfrm_address_t *saddr; 376 xfrm_address_t *daddr; 377 u32 mark; 378 __u8 ipproto; 379 union flowi_uli uli; 380 }; 381 382 struct net_device; 383 struct xfrm_type; 384 struct xfrm_dst; 385 struct xfrm_policy_afinfo { 386 struct dst_ops *dst_ops; 387 struct dst_entry *(*dst_lookup)(const struct xfrm_dst_lookup_params *params); 388 int (*get_saddr)(xfrm_address_t *saddr, 389 const struct xfrm_dst_lookup_params *params); 390 int (*fill_dst)(struct xfrm_dst *xdst, 391 struct net_device *dev, 392 const struct flowi *fl); 393 struct dst_entry *(*blackhole_route)(struct net *net, struct dst_entry *orig); 394 }; 395 396 int xfrm_policy_register_afinfo(const struct xfrm_policy_afinfo *afinfo, int family); 397 void xfrm_policy_unregister_afinfo(const struct xfrm_policy_afinfo *afinfo); 398 void km_policy_notify(struct xfrm_policy *xp, int dir, 399 const struct km_event *c); 400 void km_state_notify(struct xfrm_state *x, const struct km_event *c); 401 402 struct xfrm_tmpl; 403 int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, 404 struct xfrm_policy *pol); 405 void km_state_expired(struct xfrm_state *x, int hard, u32 portid); 406 int __xfrm_state_delete(struct xfrm_state *x); 407 408 struct xfrm_state_afinfo { 409 u8 family; 410 u8 proto; 411 412 const struct xfrm_type_offload *type_offload_esp; 413 414 const struct xfrm_type *type_esp; 415 const struct xfrm_type *type_ipip; 416 const struct xfrm_type *type_ipip6; 417 const struct xfrm_type *type_comp; 418 const struct xfrm_type *type_ah; 419 const struct xfrm_type *type_routing; 420 const struct xfrm_type *type_dstopts; 421 422 int (*output)(struct net *net, struct sock *sk, struct sk_buff *skb); 423 int (*transport_finish)(struct sk_buff *skb, 424 int async); 425 void (*local_error)(struct sk_buff *skb, u32 mtu); 426 }; 427 428 int xfrm_state_register_afinfo(struct xfrm_state_afinfo *afinfo); 429 int xfrm_state_unregister_afinfo(struct xfrm_state_afinfo *afinfo); 430 struct xfrm_state_afinfo *xfrm_state_get_afinfo(unsigned int family); 431 struct xfrm_state_afinfo *xfrm_state_afinfo_get_rcu(unsigned int family); 432 433 struct xfrm_input_afinfo { 434 u8 family; 435 bool is_ipip; 436 int (*callback)(struct sk_buff *skb, u8 protocol, 437 int err); 438 }; 439 440 int xfrm_input_register_afinfo(const struct xfrm_input_afinfo *afinfo); 441 int xfrm_input_unregister_afinfo(const struct xfrm_input_afinfo *afinfo); 442 443 void xfrm_flush_gc(void); 444 445 struct xfrm_type { 446 struct module *owner; 447 u8 proto; 448 u8 flags; 449 #define XFRM_TYPE_NON_FRAGMENT 1 450 #define XFRM_TYPE_REPLAY_PROT 2 451 #define XFRM_TYPE_LOCAL_COADDR 4 452 #define XFRM_TYPE_REMOTE_COADDR 8 453 454 int (*init_state)(struct xfrm_state *x, 455 struct netlink_ext_ack *extack); 456 void (*destructor)(struct xfrm_state *); 457 int (*input)(struct xfrm_state *, struct sk_buff *skb); 458 int (*output)(struct xfrm_state *, struct sk_buff *pskb); 459 int (*reject)(struct xfrm_state *, struct sk_buff *, 460 const struct flowi *); 461 }; 462 463 int xfrm_register_type(const struct xfrm_type *type, unsigned short family); 464 void xfrm_unregister_type(const struct xfrm_type *type, unsigned short family); 465 466 struct xfrm_type_offload { 467 struct module *owner; 468 u8 proto; 469 void (*encap)(struct xfrm_state *, struct sk_buff *pskb); 470 int (*input_tail)(struct xfrm_state *x, struct sk_buff *skb); 471 int (*xmit)(struct xfrm_state *, struct sk_buff *pskb, netdev_features_t features); 472 }; 473 474 int xfrm_register_type_offload(const struct xfrm_type_offload *type, unsigned short family); 475 void xfrm_unregister_type_offload(const struct xfrm_type_offload *type, unsigned short family); 476 void xfrm_set_type_offload(struct xfrm_state *x, bool try_load); 477 static inline void xfrm_unset_type_offload(struct xfrm_state *x) 478 { 479 if (!x->type_offload) 480 return; 481 482 module_put(x->type_offload->owner); 483 x->type_offload = NULL; 484 } 485 486 /** 487 * struct xfrm_mode_cbs - XFRM mode callbacks 488 * @owner: module owner or NULL 489 * @init_state: Add/init mode specific state in `xfrm_state *x` 490 * @clone_state: Copy mode specific values from `orig` to new state `x` 491 * @destroy_state: Cleanup mode specific state from `xfrm_state *x` 492 * @user_init: Process mode specific netlink attributes from user 493 * @copy_to_user: Add netlink attributes to `attrs` based on state in `x` 494 * @sa_len: Return space required to store mode specific netlink attributes 495 * @get_inner_mtu: Return avail payload space after removing encap overhead 496 * @input: Process received packet from SA using mode 497 * @output: Output given packet using mode 498 * @prepare_output: Add mode specific encapsulation to packet in skb. On return 499 * `transport_header` should point at ESP header, `network_header` should 500 * point at outer IP header and `mac_header` should opint at the 501 * protocol/nexthdr field of the outer IP. 502 * 503 * One should examine and understand the specific uses of these callbacks in 504 * xfrm for further detail on how and when these functions are called. RTSL. 505 */ 506 struct xfrm_mode_cbs { 507 struct module *owner; 508 int (*init_state)(struct xfrm_state *x); 509 int (*clone_state)(struct xfrm_state *x, struct xfrm_state *orig); 510 void (*destroy_state)(struct xfrm_state *x); 511 int (*user_init)(struct net *net, struct xfrm_state *x, 512 struct nlattr **attrs, 513 struct netlink_ext_ack *extack); 514 int (*copy_to_user)(struct xfrm_state *x, struct sk_buff *skb); 515 unsigned int (*sa_len)(const struct xfrm_state *x); 516 u32 (*get_inner_mtu)(struct xfrm_state *x, int outer_mtu); 517 int (*input)(struct xfrm_state *x, struct sk_buff *skb); 518 int (*output)(struct net *net, struct sock *sk, struct sk_buff *skb); 519 int (*prepare_output)(struct xfrm_state *x, struct sk_buff *skb); 520 }; 521 522 int xfrm_register_mode_cbs(u8 mode, const struct xfrm_mode_cbs *mode_cbs); 523 void xfrm_unregister_mode_cbs(u8 mode); 524 525 static inline int xfrm_af2proto(unsigned int family) 526 { 527 switch(family) { 528 case AF_INET: 529 return IPPROTO_IPIP; 530 case AF_INET6: 531 return IPPROTO_IPV6; 532 default: 533 return 0; 534 } 535 } 536 537 static inline const struct xfrm_mode *xfrm_ip2inner_mode(struct xfrm_state *x, int ipproto) 538 { 539 if ((x->sel.family != AF_UNSPEC) || 540 (ipproto == IPPROTO_IPIP && x->props.family == AF_INET) || 541 (ipproto == IPPROTO_IPV6 && x->props.family == AF_INET6)) 542 return &x->inner_mode; 543 else 544 return &x->inner_mode_iaf; 545 } 546 547 struct xfrm_tmpl { 548 /* id in template is interpreted as: 549 * daddr - destination of tunnel, may be zero for transport mode. 550 * spi - zero to acquire spi. Not zero if spi is static, then 551 * daddr must be fixed too. 552 * proto - AH/ESP/IPCOMP 553 */ 554 struct xfrm_id id; 555 556 /* Source address of tunnel. Ignored, if it is not a tunnel. */ 557 xfrm_address_t saddr; 558 559 unsigned short encap_family; 560 561 u32 reqid; 562 563 /* Mode: transport, tunnel etc. */ 564 u8 mode; 565 566 /* Sharing mode: unique, this session only, this user only etc. */ 567 u8 share; 568 569 /* May skip this transfomration if no SA is found */ 570 u8 optional; 571 572 /* Skip aalgos/ealgos/calgos checks. */ 573 u8 allalgs; 574 575 /* Bit mask of algos allowed for acquisition */ 576 u32 aalgos; 577 u32 ealgos; 578 u32 calgos; 579 }; 580 581 #define XFRM_MAX_DEPTH 6 582 #define XFRM_MAX_OFFLOAD_DEPTH 1 583 584 struct xfrm_policy_walk_entry { 585 struct list_head all; 586 u8 dead; 587 }; 588 589 struct xfrm_policy_walk { 590 struct xfrm_policy_walk_entry walk; 591 u8 type; 592 u32 seq; 593 }; 594 595 struct xfrm_policy_queue { 596 struct sk_buff_head hold_queue; 597 struct timer_list hold_timer; 598 unsigned long timeout; 599 }; 600 601 /** 602 * struct xfrm_policy - xfrm policy 603 * @xp_net: network namespace the policy lives in 604 * @bydst: hlist node for SPD hash table or rbtree list 605 * @byidx: hlist node for index hash table 606 * @state_cache_list: hlist head for policy cached xfrm states 607 * @lock: serialize changes to policy structure members 608 * @refcnt: reference count, freed once it reaches 0 609 * @pos: kernel internal tie-breaker to determine age of policy 610 * @timer: timer 611 * @genid: generation, used to invalidate old policies 612 * @priority: priority, set by userspace 613 * @index: policy index (autogenerated) 614 * @if_id: virtual xfrm interface id 615 * @mark: packet mark 616 * @selector: selector 617 * @lft: liftime configuration data 618 * @curlft: liftime state 619 * @walk: list head on pernet policy list 620 * @polq: queue to hold packets while aqcuire operaion in progress 621 * @bydst_reinsert: policy tree node needs to be merged 622 * @type: XFRM_POLICY_TYPE_MAIN or _SUB 623 * @action: XFRM_POLICY_ALLOW or _BLOCK 624 * @flags: XFRM_POLICY_LOCALOK, XFRM_POLICY_ICMP 625 * @xfrm_nr: number of used templates in @xfrm_vec 626 * @family: protocol family 627 * @security: SELinux security label 628 * @xfrm_vec: array of templates to resolve state 629 * @rcu: rcu head, used to defer memory release 630 * @xdo: hardware offload state 631 */ 632 struct xfrm_policy { 633 possible_net_t xp_net; 634 struct hlist_node bydst; 635 struct hlist_node byidx; 636 637 struct hlist_head state_cache_list; 638 639 /* This lock only affects elements except for entry. */ 640 rwlock_t lock; 641 refcount_t refcnt; 642 u32 pos; 643 struct timer_list timer; 644 645 atomic_t genid; 646 u32 priority; 647 u32 index; 648 u32 if_id; 649 struct xfrm_mark mark; 650 struct xfrm_selector selector; 651 struct xfrm_lifetime_cfg lft; 652 struct xfrm_lifetime_cur curlft; 653 struct xfrm_policy_walk_entry walk; 654 struct xfrm_policy_queue polq; 655 bool bydst_reinsert; 656 u8 type; 657 u8 action; 658 u8 flags; 659 u8 xfrm_nr; 660 u16 family; 661 struct xfrm_sec_ctx *security; 662 struct xfrm_tmpl xfrm_vec[XFRM_MAX_DEPTH]; 663 struct rcu_head rcu; 664 665 struct xfrm_dev_offload xdo; 666 }; 667 668 static inline struct net *xp_net(const struct xfrm_policy *xp) 669 { 670 return read_pnet(&xp->xp_net); 671 } 672 673 struct xfrm_kmaddress { 674 xfrm_address_t local; 675 xfrm_address_t remote; 676 u32 reserved; 677 u16 family; 678 }; 679 680 struct xfrm_migrate { 681 xfrm_address_t old_daddr; 682 xfrm_address_t old_saddr; 683 xfrm_address_t new_daddr; 684 xfrm_address_t new_saddr; 685 struct xfrm_encap_tmpl *encap; 686 struct xfrm_user_offload *xuo; 687 struct xfrm_mark old_mark; 688 const struct xfrm_mark *new_mark; 689 struct xfrm_mark smark; 690 u8 proto; 691 u8 mode; 692 u16 msg_type; /* XFRM_MSG_MIGRATE or XFRM_MSG_MIGRATE_STATE */ 693 u32 flags; 694 u32 old_reqid; 695 u32 new_reqid; 696 u32 nat_keepalive_interval; 697 u32 mapping_maxage; 698 u16 old_family; 699 u16 new_family; 700 const struct xfrm_selector *new_sel; 701 }; 702 703 #define XFRM_KM_TIMEOUT 30 704 /* what happened */ 705 #define XFRM_REPLAY_UPDATE XFRM_AE_CR 706 #define XFRM_REPLAY_TIMEOUT XFRM_AE_CE 707 708 /* default aevent timeout in units of 100ms */ 709 #define XFRM_AE_ETIME 10 710 /* Async Event timer multiplier */ 711 #define XFRM_AE_ETH_M 10 712 /* default seq threshold size */ 713 #define XFRM_AE_SEQT_SIZE 2 714 715 struct xfrm_mgr { 716 struct list_head list; 717 int (*notify)(struct xfrm_state *x, const struct km_event *c); 718 int (*acquire)(struct xfrm_state *x, struct xfrm_tmpl *, struct xfrm_policy *xp); 719 struct xfrm_policy *(*compile_policy)(struct sock *sk, int opt, u8 *data, int len, int *dir); 720 int (*new_mapping)(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport); 721 int (*notify_policy)(struct xfrm_policy *x, int dir, const struct km_event *c); 722 int (*report)(struct net *net, u8 proto, struct xfrm_selector *sel, xfrm_address_t *addr); 723 int (*migrate)(const struct xfrm_selector *sel, 724 u8 dir, u8 type, 725 const struct xfrm_migrate *m, 726 int num_bundles, 727 const struct xfrm_kmaddress *k, 728 struct net *net, 729 const struct xfrm_encap_tmpl *encap); 730 bool (*is_alive)(const struct km_event *c); 731 }; 732 733 void xfrm_register_km(struct xfrm_mgr *km); 734 void xfrm_unregister_km(struct xfrm_mgr *km); 735 736 struct xfrm_tunnel_skb_cb { 737 union { 738 struct inet_skb_parm h4; 739 struct inet6_skb_parm h6; 740 } header; 741 742 union { 743 struct ip_tunnel *ip4; 744 struct ip6_tnl *ip6; 745 } tunnel; 746 }; 747 748 #define XFRM_TUNNEL_SKB_CB(__skb) ((struct xfrm_tunnel_skb_cb *)&((__skb)->cb[0])) 749 750 /* 751 * This structure is used for the duration where packets are being 752 * transformed by IPsec. As soon as the packet leaves IPsec the 753 * area beyond the generic IP part may be overwritten. 754 */ 755 struct xfrm_skb_cb { 756 struct xfrm_tunnel_skb_cb header; 757 758 /* Sequence number for replay protection. */ 759 union { 760 struct { 761 __u32 low; 762 __u32 hi; 763 } output; 764 struct { 765 __be32 low; 766 __be32 hi; 767 } input; 768 } seq; 769 }; 770 771 #define XFRM_SKB_CB(__skb) ((struct xfrm_skb_cb *)&((__skb)->cb[0])) 772 773 /* 774 * This structure is used by the afinfo prepare_input/prepare_output functions 775 * to transmit header information to the mode input/output functions. 776 */ 777 struct xfrm_mode_skb_cb { 778 struct xfrm_tunnel_skb_cb header; 779 780 /* Copied from header for IPv4, always set to zero and DF for IPv6. */ 781 __be16 id; 782 __be16 frag_off; 783 784 /* IP header length (excluding options or extension headers). */ 785 u8 ihl; 786 787 /* TOS for IPv4, class for IPv6. */ 788 u8 tos; 789 790 /* TTL for IPv4, hop limitfor IPv6. */ 791 u8 ttl; 792 793 /* Protocol for IPv4, NH for IPv6. */ 794 u8 protocol; 795 796 /* Option length for IPv4, zero for IPv6. */ 797 u8 optlen; 798 799 /* Used by IPv6 only, zero for IPv4. */ 800 u8 flow_lbl[3]; 801 }; 802 803 #define XFRM_MODE_SKB_CB(__skb) ((struct xfrm_mode_skb_cb *)&((__skb)->cb[0])) 804 805 /* 806 * This structure is used by the input processing to locate the SPI and 807 * related information. 808 */ 809 struct xfrm_spi_skb_cb { 810 struct xfrm_tunnel_skb_cb header; 811 812 unsigned int daddroff; 813 unsigned int family; 814 __be32 seq; 815 }; 816 817 #define XFRM_SPI_SKB_CB(__skb) ((struct xfrm_spi_skb_cb *)&((__skb)->cb[0])) 818 819 #ifdef CONFIG_AUDITSYSCALL 820 static inline struct audit_buffer *xfrm_audit_start(const char *op) 821 { 822 struct audit_buffer *audit_buf = NULL; 823 824 if (audit_enabled == AUDIT_OFF) 825 return NULL; 826 audit_buf = audit_log_start(audit_context(), GFP_ATOMIC, 827 AUDIT_MAC_IPSEC_EVENT); 828 if (audit_buf == NULL) 829 return NULL; 830 audit_log_format(audit_buf, "op=%s", op); 831 return audit_buf; 832 } 833 834 static inline void xfrm_audit_helper_usrinfo(bool task_valid, 835 struct audit_buffer *audit_buf) 836 { 837 const unsigned int auid = from_kuid(&init_user_ns, task_valid ? 838 audit_get_loginuid(current) : 839 INVALID_UID); 840 const unsigned int ses = task_valid ? audit_get_sessionid(current) : 841 AUDIT_SID_UNSET; 842 843 audit_log_format(audit_buf, " auid=%u ses=%u", auid, ses); 844 audit_log_task_context(audit_buf); 845 } 846 847 void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, bool task_valid); 848 void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, 849 bool task_valid); 850 void xfrm_audit_state_add(struct xfrm_state *x, int result, bool task_valid); 851 void xfrm_audit_state_delete(struct xfrm_state *x, int result, bool task_valid); 852 void xfrm_audit_state_replay_overflow(struct xfrm_state *x, 853 struct sk_buff *skb); 854 void xfrm_audit_state_replay(struct xfrm_state *x, struct sk_buff *skb, 855 __be32 net_seq); 856 void xfrm_audit_state_notfound_simple(struct sk_buff *skb, u16 family); 857 void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family, __be32 net_spi, 858 __be32 net_seq); 859 void xfrm_audit_state_icvfail(struct xfrm_state *x, struct sk_buff *skb, 860 u8 proto); 861 #else 862 863 static inline void xfrm_audit_policy_add(struct xfrm_policy *xp, int result, 864 bool task_valid) 865 { 866 } 867 868 static inline void xfrm_audit_policy_delete(struct xfrm_policy *xp, int result, 869 bool task_valid) 870 { 871 } 872 873 static inline void xfrm_audit_state_add(struct xfrm_state *x, int result, 874 bool task_valid) 875 { 876 } 877 878 static inline void xfrm_audit_state_delete(struct xfrm_state *x, int result, 879 bool task_valid) 880 { 881 } 882 883 static inline void xfrm_audit_state_replay_overflow(struct xfrm_state *x, 884 struct sk_buff *skb) 885 { 886 } 887 888 static inline void xfrm_audit_state_replay(struct xfrm_state *x, 889 struct sk_buff *skb, __be32 net_seq) 890 { 891 } 892 893 static inline void xfrm_audit_state_notfound_simple(struct sk_buff *skb, 894 u16 family) 895 { 896 } 897 898 static inline void xfrm_audit_state_notfound(struct sk_buff *skb, u16 family, 899 __be32 net_spi, __be32 net_seq) 900 { 901 } 902 903 static inline void xfrm_audit_state_icvfail(struct xfrm_state *x, 904 struct sk_buff *skb, u8 proto) 905 { 906 } 907 #endif /* CONFIG_AUDITSYSCALL */ 908 909 static inline void xfrm_pol_hold(struct xfrm_policy *policy) 910 { 911 if (likely(policy != NULL)) 912 refcount_inc(&policy->refcnt); 913 } 914 915 void xfrm_policy_destroy(struct xfrm_policy *policy); 916 917 static inline void xfrm_pol_put(struct xfrm_policy *policy) 918 { 919 if (refcount_dec_and_test(&policy->refcnt)) 920 xfrm_policy_destroy(policy); 921 } 922 923 static inline void xfrm_pols_put(struct xfrm_policy **pols, int npols) 924 { 925 int i; 926 for (i = npols - 1; i >= 0; --i) 927 xfrm_pol_put(pols[i]); 928 } 929 930 void __xfrm_state_destroy(struct xfrm_state *); 931 932 static inline void __xfrm_state_put(struct xfrm_state *x) 933 { 934 refcount_dec(&x->refcnt); 935 } 936 937 static inline void xfrm_state_put(struct xfrm_state *x) 938 { 939 if (refcount_dec_and_test(&x->refcnt)) 940 __xfrm_state_destroy(x); 941 } 942 943 static inline void xfrm_state_hold(struct xfrm_state *x) 944 { 945 refcount_inc(&x->refcnt); 946 } 947 948 static inline bool addr_match(const void *token1, const void *token2, 949 unsigned int prefixlen) 950 { 951 const __be32 *a1 = token1; 952 const __be32 *a2 = token2; 953 unsigned int pdw; 954 unsigned int pbi; 955 956 pdw = prefixlen >> 5; /* num of whole u32 in prefix */ 957 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */ 958 959 if (pdw) 960 if (memcmp(a1, a2, pdw << 2)) 961 return false; 962 963 if (pbi) { 964 __be32 mask; 965 966 mask = htonl((0xffffffff) << (32 - pbi)); 967 968 if ((a1[pdw] ^ a2[pdw]) & mask) 969 return false; 970 } 971 972 return true; 973 } 974 975 static inline bool addr4_match(__be32 a1, __be32 a2, u8 prefixlen) 976 { 977 /* C99 6.5.7 (3): u32 << 32 is undefined behaviour */ 978 if (sizeof(long) == 4 && prefixlen == 0) 979 return true; 980 return !((a1 ^ a2) & htonl(~0UL << (32 - prefixlen))); 981 } 982 983 static __inline__ 984 __be16 xfrm_flowi_sport(const struct flowi *fl, const union flowi_uli *uli) 985 { 986 __be16 port; 987 switch(fl->flowi_proto) { 988 case IPPROTO_TCP: 989 case IPPROTO_UDP: 990 case IPPROTO_UDPLITE: 991 case IPPROTO_SCTP: 992 port = uli->ports.sport; 993 break; 994 case IPPROTO_ICMP: 995 case IPPROTO_ICMPV6: 996 port = htons(uli->icmpt.type); 997 break; 998 case IPPROTO_MH: 999 port = htons(uli->mht.type); 1000 break; 1001 case IPPROTO_GRE: 1002 port = htons(ntohl(uli->gre_key) >> 16); 1003 break; 1004 default: 1005 port = 0; /*XXX*/ 1006 } 1007 return port; 1008 } 1009 1010 static __inline__ 1011 __be16 xfrm_flowi_dport(const struct flowi *fl, const union flowi_uli *uli) 1012 { 1013 __be16 port; 1014 switch(fl->flowi_proto) { 1015 case IPPROTO_TCP: 1016 case IPPROTO_UDP: 1017 case IPPROTO_UDPLITE: 1018 case IPPROTO_SCTP: 1019 port = uli->ports.dport; 1020 break; 1021 case IPPROTO_ICMP: 1022 case IPPROTO_ICMPV6: 1023 port = htons(uli->icmpt.code); 1024 break; 1025 case IPPROTO_GRE: 1026 port = htons(ntohl(uli->gre_key) & 0xffff); 1027 break; 1028 default: 1029 port = 0; /*XXX*/ 1030 } 1031 return port; 1032 } 1033 1034 bool xfrm_selector_match(const struct xfrm_selector *sel, 1035 const struct flowi *fl, unsigned short family); 1036 1037 #ifdef CONFIG_SECURITY_NETWORK_XFRM 1038 /* If neither has a context --> match 1039 * Otherwise, both must have a context and the sids, doi, alg must match 1040 */ 1041 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) 1042 { 1043 return ((!s1 && !s2) || 1044 (s1 && s2 && 1045 (s1->ctx_sid == s2->ctx_sid) && 1046 (s1->ctx_doi == s2->ctx_doi) && 1047 (s1->ctx_alg == s2->ctx_alg))); 1048 } 1049 #else 1050 static inline bool xfrm_sec_ctx_match(struct xfrm_sec_ctx *s1, struct xfrm_sec_ctx *s2) 1051 { 1052 return true; 1053 } 1054 #endif 1055 1056 /* A struct encoding bundle of transformations to apply to some set of flow. 1057 * 1058 * xdst->child points to the next element of bundle. 1059 * dst->xfrm points to an instanse of transformer. 1060 * 1061 * Due to unfortunate limitations of current routing cache, which we 1062 * have no time to fix, it mirrors struct rtable and bound to the same 1063 * routing key, including saddr,daddr. However, we can have many of 1064 * bundles differing by session id. All the bundles grow from a parent 1065 * policy rule. 1066 */ 1067 struct xfrm_dst { 1068 union { 1069 struct dst_entry dst; 1070 struct rtable rt; 1071 struct rt6_info rt6; 1072 } u; 1073 struct dst_entry *route; 1074 struct dst_entry *child; 1075 struct dst_entry *path; 1076 struct xfrm_policy *pols[XFRM_POLICY_TYPE_MAX]; 1077 int num_pols, num_xfrms; 1078 u32 xfrm_genid; 1079 u32 policy_genid; 1080 u32 route_mtu_cached; 1081 u32 child_mtu_cached; 1082 u32 route_cookie; 1083 u32 path_cookie; 1084 }; 1085 1086 static inline struct dst_entry *xfrm_dst_path(const struct dst_entry *dst) 1087 { 1088 #ifdef CONFIG_XFRM 1089 if (dst->xfrm || (dst->flags & DST_XFRM_QUEUE)) { 1090 const struct xfrm_dst *xdst = (const struct xfrm_dst *) dst; 1091 1092 return xdst->path; 1093 } 1094 #endif 1095 return (struct dst_entry *) dst; 1096 } 1097 1098 static inline struct dst_entry *xfrm_dst_child(const struct dst_entry *dst) 1099 { 1100 #ifdef CONFIG_XFRM 1101 if (dst->xfrm || (dst->flags & DST_XFRM_QUEUE)) { 1102 struct xfrm_dst *xdst = (struct xfrm_dst *) dst; 1103 return xdst->child; 1104 } 1105 #endif 1106 return NULL; 1107 } 1108 1109 #ifdef CONFIG_XFRM 1110 static inline void xfrm_dst_set_child(struct xfrm_dst *xdst, struct dst_entry *child) 1111 { 1112 xdst->child = child; 1113 } 1114 1115 static inline void xfrm_dst_destroy(struct xfrm_dst *xdst) 1116 { 1117 xfrm_pols_put(xdst->pols, xdst->num_pols); 1118 dst_release(xdst->route); 1119 if (likely(xdst->u.dst.xfrm)) 1120 xfrm_state_put(xdst->u.dst.xfrm); 1121 } 1122 #endif 1123 1124 void xfrm_dst_ifdown(struct dst_entry *dst, struct net_device *dev); 1125 1126 struct xfrm_if_parms { 1127 int link; /* ifindex of underlying L2 interface */ 1128 u32 if_id; /* interface identifier */ 1129 bool collect_md; 1130 }; 1131 1132 struct xfrm_if { 1133 struct xfrm_if __rcu *next; /* next interface in list */ 1134 struct net_device *dev; /* virtual device associated with interface */ 1135 struct net *net; /* netns for packet i/o */ 1136 struct xfrm_if_parms p; /* interface parms */ 1137 1138 struct gro_cells gro_cells; 1139 }; 1140 1141 struct xfrm_offload { 1142 /* Output sequence number for replay protection on offloading. */ 1143 struct { 1144 __u32 low; 1145 __u32 hi; 1146 } seq; 1147 1148 __u32 flags; 1149 #define SA_DELETE_REQ 1 1150 #define CRYPTO_DONE 2 1151 #define CRYPTO_NEXT_DONE 4 1152 #define CRYPTO_FALLBACK 8 1153 #define XFRM_GSO_SEGMENT 16 1154 #define XFRM_GRO 32 1155 /* 64 is free */ 1156 #define XFRM_DEV_RESUME 128 1157 #define XFRM_XMIT 256 1158 1159 __u32 status; 1160 #define CRYPTO_SUCCESS 1 1161 #define CRYPTO_GENERIC_ERROR 2 1162 #define CRYPTO_TRANSPORT_AH_AUTH_FAILED 4 1163 #define CRYPTO_TRANSPORT_ESP_AUTH_FAILED 8 1164 #define CRYPTO_TUNNEL_AH_AUTH_FAILED 16 1165 #define CRYPTO_TUNNEL_ESP_AUTH_FAILED 32 1166 #define CRYPTO_INVALID_PACKET_SYNTAX 64 1167 #define CRYPTO_INVALID_PROTOCOL 128 1168 1169 /* Used to keep whole l2 header for transport mode GRO */ 1170 __u16 orig_mac_len; 1171 1172 __u8 proto; 1173 __u8 inner_ipproto; 1174 }; 1175 1176 struct sec_path { 1177 struct xfrm_state *xvec[XFRM_MAX_DEPTH]; 1178 struct xfrm_offload ovec[XFRM_MAX_OFFLOAD_DEPTH]; 1179 1180 u8 len; 1181 u8 olen; 1182 u8 verified_cnt; 1183 }; 1184 1185 struct sec_path *secpath_set(struct sk_buff *skb); 1186 1187 static inline void 1188 secpath_reset(struct sk_buff *skb) 1189 { 1190 #ifdef CONFIG_XFRM 1191 skb_ext_del(skb, SKB_EXT_SEC_PATH); 1192 #endif 1193 } 1194 1195 static inline int 1196 xfrm_addr_any(const xfrm_address_t *addr, unsigned short family) 1197 { 1198 switch (family) { 1199 case AF_INET: 1200 return addr->a4 == 0; 1201 case AF_INET6: 1202 return ipv6_addr_any(&addr->in6); 1203 } 1204 return 0; 1205 } 1206 1207 static inline int 1208 __xfrm4_state_addr_cmp(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x) 1209 { 1210 return (tmpl->saddr.a4 && 1211 tmpl->saddr.a4 != x->props.saddr.a4); 1212 } 1213 1214 static inline int 1215 __xfrm6_state_addr_cmp(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x) 1216 { 1217 return (!ipv6_addr_any((struct in6_addr*)&tmpl->saddr) && 1218 !ipv6_addr_equal((struct in6_addr *)&tmpl->saddr, (struct in6_addr*)&x->props.saddr)); 1219 } 1220 1221 static inline int 1222 xfrm_state_addr_cmp(const struct xfrm_tmpl *tmpl, const struct xfrm_state *x, unsigned short family) 1223 { 1224 switch (family) { 1225 case AF_INET: 1226 return __xfrm4_state_addr_cmp(tmpl, x); 1227 case AF_INET6: 1228 return __xfrm6_state_addr_cmp(tmpl, x); 1229 } 1230 return !0; 1231 } 1232 1233 #ifdef CONFIG_XFRM 1234 static inline struct xfrm_state *xfrm_input_state(struct sk_buff *skb) 1235 { 1236 struct sec_path *sp = skb_sec_path(skb); 1237 1238 return sp->xvec[sp->len - 1]; 1239 } 1240 #endif 1241 1242 static inline struct xfrm_offload *xfrm_offload(struct sk_buff *skb) 1243 { 1244 #ifdef CONFIG_XFRM 1245 struct sec_path *sp = skb_sec_path(skb); 1246 1247 if (!sp || !sp->olen || sp->len != sp->olen) 1248 return NULL; 1249 1250 return &sp->ovec[sp->olen - 1]; 1251 #else 1252 return NULL; 1253 #endif 1254 } 1255 1256 #ifdef CONFIG_XFRM 1257 int __xfrm_policy_check(struct sock *, int dir, struct sk_buff *skb, 1258 unsigned short family); 1259 1260 static inline bool __xfrm_check_nopolicy(struct net *net, struct sk_buff *skb, 1261 int dir) 1262 { 1263 if (!net->xfrm.policy_count[dir] && !secpath_exists(skb)) 1264 return net->xfrm.policy_default[dir] == XFRM_USERPOLICY_ACCEPT; 1265 1266 return false; 1267 } 1268 1269 static inline bool __xfrm_check_dev_nopolicy(struct sk_buff *skb, 1270 int dir, unsigned short family) 1271 { 1272 if (dir != XFRM_POLICY_OUT && family == AF_INET) { 1273 /* same dst may be used for traffic originating from 1274 * devices with different policy settings. 1275 */ 1276 return IPCB(skb)->flags & IPSKB_NOPOLICY; 1277 } 1278 return skb_dst(skb) && (skb_dst(skb)->flags & DST_NOPOLICY); 1279 } 1280 1281 static inline int __xfrm_policy_check2(struct sock *sk, int dir, 1282 struct sk_buff *skb, 1283 unsigned int family, int reverse) 1284 { 1285 struct net *net = dev_net(skb->dev); 1286 int ndir = dir | (reverse ? XFRM_POLICY_MASK + 1 : 0); 1287 struct xfrm_offload *xo = xfrm_offload(skb); 1288 struct xfrm_state *x; 1289 1290 if (sk && sk->sk_policy[XFRM_POLICY_IN]) 1291 return __xfrm_policy_check(sk, ndir, skb, family); 1292 1293 if (xo) { 1294 x = xfrm_input_state(skb); 1295 if (x->xso.type == XFRM_DEV_OFFLOAD_PACKET) { 1296 bool check = (xo->flags & CRYPTO_DONE) && 1297 (xo->status & CRYPTO_SUCCESS); 1298 1299 /* The packets here are plain ones and secpath was 1300 * needed to indicate that hardware already handled 1301 * them and there is no need to do nothing in addition. 1302 * 1303 * Consume secpath which was set by drivers. 1304 */ 1305 secpath_reset(skb); 1306 return check; 1307 } 1308 } 1309 1310 return __xfrm_check_nopolicy(net, skb, dir) || 1311 __xfrm_check_dev_nopolicy(skb, dir, family) || 1312 __xfrm_policy_check(sk, ndir, skb, family); 1313 } 1314 1315 static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family) 1316 { 1317 return __xfrm_policy_check2(sk, dir, skb, family, 0); 1318 } 1319 1320 static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb) 1321 { 1322 return xfrm_policy_check(sk, dir, skb, AF_INET); 1323 } 1324 1325 static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb) 1326 { 1327 return xfrm_policy_check(sk, dir, skb, AF_INET6); 1328 } 1329 1330 static inline int xfrm4_policy_check_reverse(struct sock *sk, int dir, 1331 struct sk_buff *skb) 1332 { 1333 return __xfrm_policy_check2(sk, dir, skb, AF_INET, 1); 1334 } 1335 1336 static inline int xfrm6_policy_check_reverse(struct sock *sk, int dir, 1337 struct sk_buff *skb) 1338 { 1339 return __xfrm_policy_check2(sk, dir, skb, AF_INET6, 1); 1340 } 1341 1342 int __xfrm_decode_session(struct net *net, struct sk_buff *skb, struct flowi *fl, 1343 unsigned int family, int reverse); 1344 1345 static inline int xfrm_decode_session(struct net *net, struct sk_buff *skb, struct flowi *fl, 1346 unsigned int family) 1347 { 1348 return __xfrm_decode_session(net, skb, fl, family, 0); 1349 } 1350 1351 static inline int xfrm_decode_session_reverse(struct net *net, struct sk_buff *skb, 1352 struct flowi *fl, 1353 unsigned int family) 1354 { 1355 return __xfrm_decode_session(net, skb, fl, family, 1); 1356 } 1357 1358 int __xfrm_route_forward(struct sk_buff *skb, unsigned short family); 1359 1360 static inline int xfrm_route_forward(struct sk_buff *skb, unsigned short family) 1361 { 1362 struct net *net = dev_net(skb->dev); 1363 1364 if (!net->xfrm.policy_count[XFRM_POLICY_OUT] && 1365 net->xfrm.policy_default[XFRM_POLICY_OUT] == XFRM_USERPOLICY_ACCEPT) 1366 return true; 1367 1368 return (skb_dst(skb)->flags & DST_NOXFRM) || 1369 __xfrm_route_forward(skb, family); 1370 } 1371 1372 static inline int xfrm4_route_forward(struct sk_buff *skb) 1373 { 1374 return xfrm_route_forward(skb, AF_INET); 1375 } 1376 1377 static inline int xfrm6_route_forward(struct sk_buff *skb) 1378 { 1379 return xfrm_route_forward(skb, AF_INET6); 1380 } 1381 1382 int __xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk); 1383 1384 static inline int xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk) 1385 { 1386 if (!sk_fullsock(osk)) 1387 return 0; 1388 sk->sk_policy[0] = NULL; 1389 sk->sk_policy[1] = NULL; 1390 if (unlikely(osk->sk_policy[0] || osk->sk_policy[1])) 1391 return __xfrm_sk_clone_policy(sk, osk); 1392 return 0; 1393 } 1394 1395 int xfrm_policy_delete(struct xfrm_policy *pol, int dir); 1396 1397 static inline void xfrm_sk_free_policy(struct sock *sk) 1398 { 1399 struct xfrm_policy *pol; 1400 1401 pol = rcu_dereference_protected(sk->sk_policy[0], 1); 1402 if (unlikely(pol != NULL)) { 1403 xfrm_policy_delete(pol, XFRM_POLICY_MAX); 1404 sk->sk_policy[0] = NULL; 1405 } 1406 pol = rcu_dereference_protected(sk->sk_policy[1], 1); 1407 if (unlikely(pol != NULL)) { 1408 xfrm_policy_delete(pol, XFRM_POLICY_MAX+1); 1409 sk->sk_policy[1] = NULL; 1410 } 1411 } 1412 1413 #else 1414 1415 static inline void xfrm_sk_free_policy(struct sock *sk) {} 1416 static inline int xfrm_sk_clone_policy(struct sock *sk, const struct sock *osk) { return 0; } 1417 static inline int xfrm6_route_forward(struct sk_buff *skb) { return 1; } 1418 static inline int xfrm4_route_forward(struct sk_buff *skb) { return 1; } 1419 static inline int xfrm6_policy_check(struct sock *sk, int dir, struct sk_buff *skb) 1420 { 1421 return 1; 1422 } 1423 static inline int xfrm4_policy_check(struct sock *sk, int dir, struct sk_buff *skb) 1424 { 1425 return 1; 1426 } 1427 static inline int xfrm_policy_check(struct sock *sk, int dir, struct sk_buff *skb, unsigned short family) 1428 { 1429 return 1; 1430 } 1431 static inline int xfrm_decode_session_reverse(struct net *net, struct sk_buff *skb, 1432 struct flowi *fl, 1433 unsigned int family) 1434 { 1435 return -ENOSYS; 1436 } 1437 static inline int xfrm4_policy_check_reverse(struct sock *sk, int dir, 1438 struct sk_buff *skb) 1439 { 1440 return 1; 1441 } 1442 static inline int xfrm6_policy_check_reverse(struct sock *sk, int dir, 1443 struct sk_buff *skb) 1444 { 1445 return 1; 1446 } 1447 #endif 1448 1449 static __inline__ 1450 xfrm_address_t *xfrm_flowi_daddr(const struct flowi *fl, unsigned short family) 1451 { 1452 switch (family){ 1453 case AF_INET: 1454 return (xfrm_address_t *)&fl->u.ip4.daddr; 1455 case AF_INET6: 1456 return (xfrm_address_t *)&fl->u.ip6.daddr; 1457 } 1458 return NULL; 1459 } 1460 1461 static __inline__ 1462 xfrm_address_t *xfrm_flowi_saddr(const struct flowi *fl, unsigned short family) 1463 { 1464 switch (family){ 1465 case AF_INET: 1466 return (xfrm_address_t *)&fl->u.ip4.saddr; 1467 case AF_INET6: 1468 return (xfrm_address_t *)&fl->u.ip6.saddr; 1469 } 1470 return NULL; 1471 } 1472 1473 static __inline__ 1474 void xfrm_flowi_addr_get(const struct flowi *fl, 1475 xfrm_address_t *saddr, xfrm_address_t *daddr, 1476 unsigned short family) 1477 { 1478 switch(family) { 1479 case AF_INET: 1480 memcpy(&saddr->a4, &fl->u.ip4.saddr, sizeof(saddr->a4)); 1481 memcpy(&daddr->a4, &fl->u.ip4.daddr, sizeof(daddr->a4)); 1482 break; 1483 case AF_INET6: 1484 saddr->in6 = fl->u.ip6.saddr; 1485 daddr->in6 = fl->u.ip6.daddr; 1486 break; 1487 } 1488 } 1489 1490 static __inline__ int 1491 __xfrm4_state_addr_check(const struct xfrm_state *x, 1492 const xfrm_address_t *daddr, const xfrm_address_t *saddr) 1493 { 1494 if (daddr->a4 == x->id.daddr.a4 && 1495 (saddr->a4 == x->props.saddr.a4 || !saddr->a4 || !x->props.saddr.a4)) 1496 return 1; 1497 return 0; 1498 } 1499 1500 static __inline__ int 1501 __xfrm6_state_addr_check(const struct xfrm_state *x, 1502 const xfrm_address_t *daddr, const xfrm_address_t *saddr) 1503 { 1504 if (ipv6_addr_equal((struct in6_addr *)daddr, (struct in6_addr *)&x->id.daddr) && 1505 (ipv6_addr_equal((struct in6_addr *)saddr, (struct in6_addr *)&x->props.saddr) || 1506 ipv6_addr_any((struct in6_addr *)saddr) || 1507 ipv6_addr_any((struct in6_addr *)&x->props.saddr))) 1508 return 1; 1509 return 0; 1510 } 1511 1512 static __inline__ int 1513 xfrm_state_addr_check(const struct xfrm_state *x, 1514 const xfrm_address_t *daddr, const xfrm_address_t *saddr, 1515 unsigned short family) 1516 { 1517 switch (family) { 1518 case AF_INET: 1519 return __xfrm4_state_addr_check(x, daddr, saddr); 1520 case AF_INET6: 1521 return __xfrm6_state_addr_check(x, daddr, saddr); 1522 } 1523 return 0; 1524 } 1525 1526 static __inline__ int 1527 xfrm_state_addr_flow_check(const struct xfrm_state *x, const struct flowi *fl, 1528 unsigned short family) 1529 { 1530 switch (family) { 1531 case AF_INET: 1532 return __xfrm4_state_addr_check(x, 1533 (const xfrm_address_t *)&fl->u.ip4.daddr, 1534 (const xfrm_address_t *)&fl->u.ip4.saddr); 1535 case AF_INET6: 1536 return __xfrm6_state_addr_check(x, 1537 (const xfrm_address_t *)&fl->u.ip6.daddr, 1538 (const xfrm_address_t *)&fl->u.ip6.saddr); 1539 } 1540 return 0; 1541 } 1542 1543 static inline int xfrm_state_kern(const struct xfrm_state *x) 1544 { 1545 return atomic_read(&x->tunnel_users); 1546 } 1547 1548 static inline bool xfrm_id_proto_valid(u8 proto) 1549 { 1550 switch (proto) { 1551 case IPPROTO_AH: 1552 case IPPROTO_ESP: 1553 case IPPROTO_COMP: 1554 #if IS_ENABLED(CONFIG_IPV6) 1555 case IPPROTO_ROUTING: 1556 case IPPROTO_DSTOPTS: 1557 #endif 1558 return true; 1559 default: 1560 return false; 1561 } 1562 } 1563 1564 /* IPSEC_PROTO_ANY only matches 3 IPsec protocols, 0 could match all. */ 1565 static inline int xfrm_id_proto_match(u8 proto, u8 userproto) 1566 { 1567 return (!userproto || proto == userproto || 1568 (userproto == IPSEC_PROTO_ANY && (proto == IPPROTO_AH || 1569 proto == IPPROTO_ESP || 1570 proto == IPPROTO_COMP))); 1571 } 1572 1573 /* 1574 * xfrm algorithm information 1575 */ 1576 struct xfrm_algo_aead_info { 1577 char *geniv; 1578 u16 icv_truncbits; 1579 }; 1580 1581 struct xfrm_algo_auth_info { 1582 u16 icv_truncbits; 1583 u16 icv_fullbits; 1584 }; 1585 1586 struct xfrm_algo_encr_info { 1587 char *geniv; 1588 u16 blockbits; 1589 u16 defkeybits; 1590 }; 1591 1592 struct xfrm_algo_comp_info { 1593 u16 threshold; 1594 }; 1595 1596 struct xfrm_algo_desc { 1597 char *name; 1598 char *compat; 1599 u8 available:1; 1600 u8 pfkey_supported:1; 1601 union { 1602 struct xfrm_algo_aead_info aead; 1603 struct xfrm_algo_auth_info auth; 1604 struct xfrm_algo_encr_info encr; 1605 struct xfrm_algo_comp_info comp; 1606 } uinfo; 1607 struct sadb_alg desc; 1608 }; 1609 1610 /* XFRM protocol handlers. */ 1611 struct xfrm4_protocol { 1612 int (*handler)(struct sk_buff *skb); 1613 int (*input_handler)(struct sk_buff *skb, int nexthdr, __be32 spi, 1614 int encap_type); 1615 int (*cb_handler)(struct sk_buff *skb, int err); 1616 int (*err_handler)(struct sk_buff *skb, u32 info); 1617 1618 struct xfrm4_protocol __rcu *next; 1619 int priority; 1620 }; 1621 1622 struct xfrm6_protocol { 1623 int (*handler)(struct sk_buff *skb); 1624 int (*input_handler)(struct sk_buff *skb, int nexthdr, __be32 spi, 1625 int encap_type); 1626 int (*cb_handler)(struct sk_buff *skb, int err); 1627 int (*err_handler)(struct sk_buff *skb, struct inet6_skb_parm *opt, 1628 u8 type, u8 code, int offset, __be32 info); 1629 1630 struct xfrm6_protocol __rcu *next; 1631 int priority; 1632 }; 1633 1634 /* XFRM tunnel handlers. */ 1635 struct xfrm_tunnel { 1636 int (*handler)(struct sk_buff *skb); 1637 int (*cb_handler)(struct sk_buff *skb, int err); 1638 int (*err_handler)(struct sk_buff *skb, u32 info); 1639 1640 struct xfrm_tunnel __rcu *next; 1641 int priority; 1642 }; 1643 1644 struct xfrm6_tunnel { 1645 int (*handler)(struct sk_buff *skb); 1646 int (*cb_handler)(struct sk_buff *skb, int err); 1647 int (*err_handler)(struct sk_buff *skb, struct inet6_skb_parm *opt, 1648 u8 type, u8 code, int offset, __be32 info); 1649 struct xfrm6_tunnel __rcu *next; 1650 int priority; 1651 }; 1652 1653 void xfrm_init(void); 1654 void xfrm4_init(void); 1655 int xfrm_state_init(struct net *net); 1656 void xfrm_state_fini(struct net *net); 1657 void xfrm4_state_init(void); 1658 void xfrm4_protocol_init(void); 1659 #ifdef CONFIG_XFRM 1660 int xfrm6_init(void); 1661 void xfrm6_fini(void); 1662 int xfrm6_state_init(void); 1663 void xfrm6_state_fini(void); 1664 int xfrm6_protocol_init(void); 1665 void xfrm6_protocol_fini(void); 1666 #else 1667 static inline int xfrm6_init(void) 1668 { 1669 return 0; 1670 } 1671 static inline void xfrm6_fini(void) 1672 { 1673 ; 1674 } 1675 #endif 1676 1677 #ifdef CONFIG_XFRM_STATISTICS 1678 int xfrm_proc_init(struct net *net); 1679 void xfrm_proc_fini(struct net *net); 1680 #endif 1681 1682 int xfrm_sysctl_init(struct net *net); 1683 #ifdef CONFIG_SYSCTL 1684 void xfrm_sysctl_fini(struct net *net); 1685 #else 1686 static inline void xfrm_sysctl_fini(struct net *net) 1687 { 1688 } 1689 #endif 1690 1691 void xfrm_state_walk_init(struct xfrm_state_walk *walk, u8 proto, 1692 struct xfrm_address_filter *filter); 1693 int xfrm_state_walk(struct net *net, struct xfrm_state_walk *walk, 1694 int (*func)(struct xfrm_state *, int, void*), void *); 1695 void xfrm_state_walk_done(struct xfrm_state_walk *walk, struct net *net); 1696 struct xfrm_state *xfrm_state_alloc(struct net *net); 1697 void xfrm_state_free(struct xfrm_state *x); 1698 struct xfrm_state *xfrm_state_find(const xfrm_address_t *daddr, 1699 const xfrm_address_t *saddr, 1700 const struct flowi *fl, 1701 struct xfrm_tmpl *tmpl, 1702 struct xfrm_policy *pol, int *err, 1703 unsigned short family, u32 if_id); 1704 struct xfrm_state *xfrm_stateonly_find(struct net *net, u32 mark, u32 if_id, 1705 xfrm_address_t *daddr, 1706 xfrm_address_t *saddr, 1707 unsigned short family, 1708 u8 mode, u8 proto, u32 reqid); 1709 struct xfrm_state *xfrm_state_lookup_byspi(struct net *net, __be32 spi, 1710 unsigned short family); 1711 int xfrm_state_check_expire(struct xfrm_state *x); 1712 void xfrm_state_update_stats(struct net *net); 1713 #ifdef CONFIG_XFRM_OFFLOAD 1714 static inline void xfrm_dev_state_update_stats(struct xfrm_state *x) 1715 { 1716 struct xfrm_dev_offload *xdo = &x->xso; 1717 struct net_device *dev = READ_ONCE(xdo->dev); 1718 1719 if (dev && dev->xfrmdev_ops && 1720 dev->xfrmdev_ops->xdo_dev_state_update_stats) 1721 dev->xfrmdev_ops->xdo_dev_state_update_stats(x); 1722 1723 } 1724 #else 1725 static inline void xfrm_dev_state_update_stats(struct xfrm_state *x) {} 1726 #endif 1727 void xfrm_state_insert(struct xfrm_state *x); 1728 int xfrm_state_add(struct xfrm_state *x); 1729 int xfrm_state_update(struct xfrm_state *x); 1730 struct xfrm_state *xfrm_state_lookup(struct net *net, u32 mark, 1731 const xfrm_address_t *daddr, __be32 spi, 1732 u8 proto, unsigned short family); 1733 struct xfrm_state *xfrm_input_state_lookup(struct net *net, u32 mark, 1734 const xfrm_address_t *daddr, 1735 __be32 spi, u8 proto, 1736 unsigned short family); 1737 struct xfrm_state *xfrm_state_lookup_byaddr(struct net *net, u32 mark, 1738 const xfrm_address_t *daddr, 1739 const xfrm_address_t *saddr, 1740 u8 proto, 1741 unsigned short family); 1742 #ifdef CONFIG_XFRM_SUB_POLICY 1743 void xfrm_tmpl_sort(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n, 1744 unsigned short family); 1745 void xfrm_state_sort(struct xfrm_state **dst, struct xfrm_state **src, int n, 1746 unsigned short family); 1747 #else 1748 static inline void xfrm_tmpl_sort(struct xfrm_tmpl **d, struct xfrm_tmpl **s, 1749 int n, unsigned short family) 1750 { 1751 } 1752 1753 static inline void xfrm_state_sort(struct xfrm_state **d, struct xfrm_state **s, 1754 int n, unsigned short family) 1755 { 1756 } 1757 #endif 1758 1759 struct xfrmk_sadinfo { 1760 u32 sadhcnt; /* current hash bkts */ 1761 u32 sadhmcnt; /* max allowed hash bkts */ 1762 u32 sadcnt; /* current running count */ 1763 }; 1764 1765 struct xfrmk_spdinfo { 1766 u32 incnt; 1767 u32 outcnt; 1768 u32 fwdcnt; 1769 u32 inscnt; 1770 u32 outscnt; 1771 u32 fwdscnt; 1772 u32 spdhcnt; 1773 u32 spdhmcnt; 1774 }; 1775 1776 struct xfrm_state *xfrm_find_acq_byseq(struct net *net, u32 mark, u32 seq, u32 pcpu_num); 1777 int xfrm_state_delete(struct xfrm_state *x); 1778 int xfrm_state_flush(struct net *net, u8 proto, bool task_valid); 1779 int xfrm_dev_state_flush(struct net *net, struct net_device *dev, bool task_valid); 1780 int xfrm_dev_policy_flush(struct net *net, struct net_device *dev, 1781 bool task_valid); 1782 void xfrm_sad_getinfo(struct net *net, struct xfrmk_sadinfo *si); 1783 void xfrm_spd_getinfo(struct net *net, struct xfrmk_spdinfo *si); 1784 u32 xfrm_replay_seqhi(struct xfrm_state *x, __be32 net_seq); 1785 int xfrm_init_replay(struct xfrm_state *x, struct netlink_ext_ack *extack); 1786 u32 xfrm_state_mtu(struct xfrm_state *x, int mtu); 1787 int __xfrm_init_state(struct xfrm_state *x, struct netlink_ext_ack *extack); 1788 int xfrm_init_state(struct xfrm_state *x, struct netlink_ext_ack *extack); 1789 int xfrm_input(struct sk_buff *skb, int nexthdr, __be32 spi, int encap_type); 1790 int xfrm_input_resume(struct sk_buff *skb, int nexthdr); 1791 int xfrm_trans_queue_net(struct net *net, struct sk_buff *skb, 1792 int (*finish)(struct net *, struct sock *, 1793 struct sk_buff *)); 1794 int xfrm_trans_queue(struct sk_buff *skb, 1795 int (*finish)(struct net *, struct sock *, 1796 struct sk_buff *)); 1797 int xfrm_output_resume(struct sock *sk, struct sk_buff *skb, int err); 1798 int xfrm_output(struct sock *sk, struct sk_buff *skb); 1799 int xfrm4_tunnel_check_size(struct sk_buff *skb); 1800 #if IS_ENABLED(CONFIG_IPV6) 1801 int xfrm6_tunnel_check_size(struct sk_buff *skb); 1802 #else 1803 static inline int xfrm6_tunnel_check_size(struct sk_buff *skb) 1804 { 1805 return -EMSGSIZE; 1806 } 1807 #endif 1808 1809 #if IS_ENABLED(CONFIG_NET_PKTGEN) 1810 int pktgen_xfrm_outer_mode_output(struct xfrm_state *x, struct sk_buff *skb); 1811 #endif 1812 1813 void xfrm_local_error(struct sk_buff *skb, int mtu); 1814 int xfrm4_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi, 1815 int encap_type); 1816 int xfrm4_transport_finish(struct sk_buff *skb, int async); 1817 int xfrm4_rcv(struct sk_buff *skb); 1818 1819 static inline int xfrm4_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi) 1820 { 1821 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = NULL; 1822 XFRM_SPI_SKB_CB(skb)->family = AF_INET; 1823 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct iphdr, daddr); 1824 return xfrm_input(skb, nexthdr, spi, 0); 1825 } 1826 1827 int xfrm4_output(struct net *net, struct sock *sk, struct sk_buff *skb); 1828 int xfrm4_protocol_register(struct xfrm4_protocol *handler, unsigned char protocol); 1829 int xfrm4_protocol_deregister(struct xfrm4_protocol *handler, unsigned char protocol); 1830 int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family); 1831 int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family); 1832 void xfrm4_local_error(struct sk_buff *skb, u32 mtu); 1833 int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi, 1834 struct ip6_tnl *t); 1835 int xfrm6_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi, 1836 int encap_type); 1837 int xfrm6_transport_finish(struct sk_buff *skb, int async); 1838 int xfrm6_rcv_tnl(struct sk_buff *skb, struct ip6_tnl *t); 1839 int xfrm6_rcv(struct sk_buff *skb); 1840 int xfrm6_input_addr(struct sk_buff *skb, xfrm_address_t *daddr, 1841 xfrm_address_t *saddr, u8 proto); 1842 void xfrm6_local_error(struct sk_buff *skb, u32 mtu); 1843 int xfrm6_protocol_register(struct xfrm6_protocol *handler, unsigned char protocol); 1844 int xfrm6_protocol_deregister(struct xfrm6_protocol *handler, unsigned char protocol); 1845 int xfrm6_tunnel_register(struct xfrm6_tunnel *handler, unsigned short family); 1846 int xfrm6_tunnel_deregister(struct xfrm6_tunnel *handler, unsigned short family); 1847 __be32 xfrm6_tunnel_alloc_spi(struct net *net, xfrm_address_t *saddr); 1848 __be32 xfrm6_tunnel_spi_lookup(struct net *net, const xfrm_address_t *saddr); 1849 int xfrm6_output(struct net *net, struct sock *sk, struct sk_buff *skb); 1850 1851 #ifdef CONFIG_XFRM 1852 void xfrm6_local_rxpmtu(struct sk_buff *skb, u32 mtu); 1853 int xfrm4_udp_encap_rcv(struct sock *sk, struct sk_buff *skb); 1854 int xfrm6_udp_encap_rcv(struct sock *sk, struct sk_buff *skb); 1855 struct sk_buff *xfrm4_gro_udp_encap_rcv(struct sock *sk, struct list_head *head, 1856 struct sk_buff *skb); 1857 struct sk_buff *xfrm6_gro_udp_encap_rcv(struct sock *sk, struct list_head *head, 1858 struct sk_buff *skb); 1859 int xfrm_user_policy(struct sock *sk, int optname, sockptr_t optval, 1860 int optlen); 1861 #else 1862 static inline int xfrm_user_policy(struct sock *sk, int optname, 1863 sockptr_t optval, int optlen) 1864 { 1865 return -ENOPROTOOPT; 1866 } 1867 #endif 1868 1869 struct dst_entry *__xfrm_dst_lookup(int family, const struct xfrm_dst_lookup_params *params); 1870 1871 struct xfrm_policy *xfrm_policy_alloc(struct net *net, gfp_t gfp); 1872 1873 void xfrm_policy_walk_init(struct xfrm_policy_walk *walk, u8 type); 1874 int xfrm_policy_walk(struct net *net, struct xfrm_policy_walk *walk, 1875 int (*func)(struct xfrm_policy *, int, int, void*), 1876 void *); 1877 void xfrm_policy_walk_done(struct xfrm_policy_walk *walk, struct net *net); 1878 int xfrm_policy_insert(int dir, struct xfrm_policy *policy, int excl); 1879 struct xfrm_policy *xfrm_policy_bysel_ctx(struct net *net, 1880 const struct xfrm_mark *mark, 1881 u32 if_id, u8 type, int dir, 1882 struct xfrm_selector *sel, 1883 struct xfrm_sec_ctx *ctx, int delete, 1884 int *err); 1885 struct xfrm_policy *xfrm_policy_byid(struct net *net, 1886 const struct xfrm_mark *mark, u32 if_id, 1887 u8 type, int dir, u32 id, int delete, 1888 int *err); 1889 int xfrm_policy_flush(struct net *net, u8 type, bool task_valid); 1890 void xfrm_policy_hash_rebuild(struct net *net); 1891 u32 xfrm_get_acqseq(void); 1892 int verify_spi_info(u8 proto, u32 min, u32 max, struct netlink_ext_ack *extack); 1893 int xfrm_alloc_spi(struct xfrm_state *x, u32 minspi, u32 maxspi, 1894 struct netlink_ext_ack *extack); 1895 struct xfrm_state *xfrm_find_acq(struct net *net, const struct xfrm_mark *mark, 1896 u8 mode, u32 reqid, u32 if_id, u32 pcpu_num, u8 proto, 1897 const xfrm_address_t *daddr, 1898 const xfrm_address_t *saddr, int create, 1899 unsigned short family); 1900 int xfrm_sk_policy_insert(struct sock *sk, int dir, struct xfrm_policy *pol); 1901 1902 #ifdef CONFIG_XFRM_MIGRATE 1903 int km_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, 1904 const struct xfrm_migrate *m, int num_bundles, 1905 const struct xfrm_kmaddress *k, struct net *net, 1906 const struct xfrm_encap_tmpl *encap); 1907 struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *net, 1908 u32 if_id); 1909 struct xfrm_state *xfrm_state_migrate_create(struct xfrm_state *x, 1910 const struct xfrm_migrate *m, 1911 struct net *net, 1912 struct netlink_ext_ack *extack); 1913 int xfrm_state_migrate_install(const struct xfrm_state *x, 1914 struct xfrm_state *xc, 1915 const struct xfrm_migrate *m, 1916 struct netlink_ext_ack *extack); 1917 struct xfrm_state *xfrm_state_migrate(struct xfrm_state *x, 1918 struct xfrm_migrate *m, 1919 struct net *net, 1920 struct netlink_ext_ack *extack); 1921 int xfrm_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, 1922 struct xfrm_migrate *m, int num_bundles, 1923 struct xfrm_kmaddress *k, struct net *net, 1924 struct xfrm_encap_tmpl *encap, u32 if_id, 1925 struct netlink_ext_ack *extack, 1926 struct xfrm_user_offload *xuo); 1927 #endif 1928 1929 int km_new_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, __be16 sport); 1930 void km_policy_expired(struct xfrm_policy *pol, int dir, int hard, u32 portid); 1931 int km_report(struct net *net, u8 proto, struct xfrm_selector *sel, 1932 xfrm_address_t *addr); 1933 1934 void xfrm_input_init(void); 1935 int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, __be32 *spi, __be32 *seq); 1936 1937 void xfrm_probe_algs(void); 1938 int xfrm_count_pfkey_auth_supported(void); 1939 int xfrm_count_pfkey_enc_supported(void); 1940 struct xfrm_algo_desc *xfrm_aalg_get_byidx(unsigned int idx); 1941 struct xfrm_algo_desc *xfrm_ealg_get_byidx(unsigned int idx); 1942 struct xfrm_algo_desc *xfrm_aalg_get_byid(int alg_id); 1943 struct xfrm_algo_desc *xfrm_ealg_get_byid(int alg_id); 1944 struct xfrm_algo_desc *xfrm_calg_get_byid(int alg_id); 1945 struct xfrm_algo_desc *xfrm_aalg_get_byname(const char *name, int probe); 1946 struct xfrm_algo_desc *xfrm_ealg_get_byname(const char *name, int probe); 1947 struct xfrm_algo_desc *xfrm_calg_get_byname(const char *name, int probe); 1948 struct xfrm_algo_desc *xfrm_aead_get_byname(const char *name, int icv_len, 1949 int probe); 1950 1951 static inline bool xfrm6_addr_equal(const xfrm_address_t *a, 1952 const xfrm_address_t *b) 1953 { 1954 return ipv6_addr_equal((const struct in6_addr *)a, 1955 (const struct in6_addr *)b); 1956 } 1957 1958 static inline bool xfrm_addr_equal(const xfrm_address_t *a, 1959 const xfrm_address_t *b, 1960 sa_family_t family) 1961 { 1962 switch (family) { 1963 default: 1964 case AF_INET: 1965 return ((__force u32)a->a4 ^ (__force u32)b->a4) == 0; 1966 case AF_INET6: 1967 return xfrm6_addr_equal(a, b); 1968 } 1969 } 1970 1971 static inline int xfrm_policy_id2dir(u32 index) 1972 { 1973 return index & 7; 1974 } 1975 1976 #ifdef CONFIG_XFRM 1977 void xfrm_replay_advance(struct xfrm_state *x, __be32 net_seq); 1978 int xfrm_replay_check(struct xfrm_state *x, struct sk_buff *skb, __be32 net_seq); 1979 void xfrm_replay_notify(struct xfrm_state *x, int event); 1980 int xfrm_replay_overflow(struct xfrm_state *x, struct sk_buff *skb); 1981 int xfrm_replay_recheck(struct xfrm_state *x, struct sk_buff *skb, __be32 net_seq); 1982 1983 static inline int xfrm_aevent_is_on(struct net *net) 1984 { 1985 struct sock *nlsk; 1986 int ret = 0; 1987 1988 rcu_read_lock(); 1989 nlsk = rcu_dereference(net->xfrm.nlsk); 1990 if (nlsk) 1991 ret = netlink_has_listeners(nlsk, XFRMNLGRP_AEVENTS); 1992 rcu_read_unlock(); 1993 return ret; 1994 } 1995 1996 static inline int xfrm_acquire_is_on(struct net *net) 1997 { 1998 struct sock *nlsk; 1999 int ret = 0; 2000 2001 rcu_read_lock(); 2002 nlsk = rcu_dereference(net->xfrm.nlsk); 2003 if (nlsk) 2004 ret = netlink_has_listeners(nlsk, XFRMNLGRP_ACQUIRE); 2005 rcu_read_unlock(); 2006 2007 return ret; 2008 } 2009 #endif 2010 2011 static inline unsigned int aead_len(struct xfrm_algo_aead *alg) 2012 { 2013 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8); 2014 } 2015 2016 static inline unsigned int xfrm_alg_len(const struct xfrm_algo *alg) 2017 { 2018 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8); 2019 } 2020 2021 static inline unsigned int xfrm_alg_auth_len(const struct xfrm_algo_auth *alg) 2022 { 2023 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8); 2024 } 2025 2026 static inline unsigned int xfrm_replay_state_esn_len(struct xfrm_replay_state_esn *replay_esn) 2027 { 2028 return sizeof(*replay_esn) + replay_esn->bmp_len * sizeof(__u32); 2029 } 2030 2031 #ifdef CONFIG_XFRM_MIGRATE 2032 static inline int xfrm_replay_clone(struct xfrm_state *x, 2033 const struct xfrm_state *orig) 2034 { 2035 /* Counters synced later in xfrm_replay_sync() */ 2036 2037 x->replay = orig->replay; 2038 x->preplay = orig->preplay; 2039 2040 if (orig->replay_esn) { 2041 x->replay_esn = kmemdup(orig->replay_esn, 2042 xfrm_replay_state_esn_len(orig->replay_esn), 2043 GFP_KERNEL); 2044 if (!x->replay_esn) 2045 return -ENOMEM; 2046 x->preplay_esn = kmemdup(orig->preplay_esn, 2047 xfrm_replay_state_esn_len(orig->preplay_esn), 2048 GFP_KERNEL); 2049 if (!x->preplay_esn) 2050 return -ENOMEM; 2051 } 2052 2053 return 0; 2054 } 2055 2056 static inline void xfrm_replay_sync(struct xfrm_state *x, const struct xfrm_state *orig) 2057 { 2058 x->replay = orig->replay; 2059 x->preplay = orig->preplay; 2060 2061 if (orig->replay_esn) { 2062 memcpy(x->replay_esn, orig->replay_esn, 2063 xfrm_replay_state_esn_len(orig->replay_esn)); 2064 2065 memcpy(x->preplay_esn, orig->preplay_esn, 2066 xfrm_replay_state_esn_len(orig->preplay_esn)); 2067 } 2068 } 2069 2070 static inline void xfrm_migrate_sync(struct xfrm_state *x, 2071 const struct xfrm_state *orig) 2072 { 2073 /* called under lock so no race conditions or mallocs allowed */ 2074 memcpy(&x->curlft, &orig->curlft, sizeof(x->curlft)); 2075 xfrm_replay_sync(x, orig); 2076 } 2077 2078 static inline struct xfrm_algo_aead *xfrm_algo_aead_clone(struct xfrm_algo_aead *orig) 2079 { 2080 return kmemdup(orig, aead_len(orig), GFP_KERNEL); 2081 } 2082 2083 2084 static inline struct xfrm_algo *xfrm_algo_clone(struct xfrm_algo *orig) 2085 { 2086 return kmemdup(orig, xfrm_alg_len(orig), GFP_KERNEL); 2087 } 2088 2089 static inline struct xfrm_algo_auth *xfrm_algo_auth_clone(struct xfrm_algo_auth *orig) 2090 { 2091 return kmemdup(orig, xfrm_alg_auth_len(orig), GFP_KERNEL); 2092 } 2093 2094 static inline void xfrm_states_put(struct xfrm_state **states, int n) 2095 { 2096 int i; 2097 for (i = 0; i < n; i++) 2098 xfrm_state_put(*(states + i)); 2099 } 2100 2101 static inline void xfrm_states_delete(struct xfrm_state **states, int n) 2102 { 2103 int i; 2104 for (i = 0; i < n; i++) 2105 xfrm_state_delete(*(states + i)); 2106 } 2107 #endif 2108 2109 void __init xfrm_dev_init(void); 2110 2111 #ifdef CONFIG_XFRM_OFFLOAD 2112 void xfrm_dev_resume(struct sk_buff *skb); 2113 void xfrm_dev_backlog(struct softnet_data *sd); 2114 struct sk_buff *validate_xmit_xfrm(struct sk_buff *skb, netdev_features_t features, bool *again); 2115 int xfrm_dev_state_add(struct net *net, struct xfrm_state *x, 2116 const struct xfrm_user_offload *xuo, 2117 struct netlink_ext_ack *extack); 2118 int xfrm_dev_policy_add(struct net *net, struct xfrm_policy *xp, 2119 struct xfrm_user_offload *xuo, u8 dir, 2120 struct netlink_ext_ack *extack); 2121 bool xfrm_dev_offload_ok(struct sk_buff *skb, struct xfrm_state *x); 2122 void xfrm_dev_state_delete(struct xfrm_state *x); 2123 void xfrm_dev_state_free(struct xfrm_state *x); 2124 2125 static inline void xfrm_dev_state_advance_esn(struct xfrm_state *x) 2126 { 2127 struct xfrm_dev_offload *xso = &x->xso; 2128 struct net_device *dev = READ_ONCE(xso->dev); 2129 2130 if (dev && dev->xfrmdev_ops->xdo_dev_state_advance_esn) 2131 dev->xfrmdev_ops->xdo_dev_state_advance_esn(x); 2132 } 2133 2134 static inline bool xfrm_dst_offload_ok(struct dst_entry *dst) 2135 { 2136 struct xfrm_state *x = dst->xfrm; 2137 struct xfrm_dst *xdst; 2138 2139 if (!x || !x->type_offload) 2140 return false; 2141 2142 xdst = (struct xfrm_dst *) dst; 2143 if (!x->xso.offload_handle && !xdst->child->xfrm) 2144 return true; 2145 if (x->xso.offload_handle && (x->xso.dev == xfrm_dst_path(dst)->dev) && 2146 !xdst->child->xfrm) 2147 return true; 2148 2149 return false; 2150 } 2151 2152 static inline void xfrm_dev_policy_delete(struct xfrm_policy *x) 2153 { 2154 struct xfrm_dev_offload *xdo = &x->xdo; 2155 struct net_device *dev = xdo->dev; 2156 2157 if (dev && dev->xfrmdev_ops && dev->xfrmdev_ops->xdo_dev_policy_delete) 2158 dev->xfrmdev_ops->xdo_dev_policy_delete(x); 2159 } 2160 2161 static inline void xfrm_dev_policy_free(struct xfrm_policy *x) 2162 { 2163 struct xfrm_dev_offload *xdo = &x->xdo; 2164 struct net_device *dev = xdo->dev; 2165 2166 if (dev && dev->xfrmdev_ops) { 2167 if (dev->xfrmdev_ops->xdo_dev_policy_free) 2168 dev->xfrmdev_ops->xdo_dev_policy_free(x); 2169 xdo->dev = NULL; 2170 netdev_put(dev, &xdo->dev_tracker); 2171 } 2172 } 2173 #else 2174 static inline void xfrm_dev_resume(struct sk_buff *skb) 2175 { 2176 } 2177 2178 static inline void xfrm_dev_backlog(struct softnet_data *sd) 2179 { 2180 } 2181 2182 static inline struct sk_buff *validate_xmit_xfrm(struct sk_buff *skb, netdev_features_t features, bool *again) 2183 { 2184 return skb; 2185 } 2186 2187 static inline int xfrm_dev_state_add(struct net *net, struct xfrm_state *x, 2188 const struct xfrm_user_offload *xuo, 2189 struct netlink_ext_ack *extack) 2190 { 2191 return 0; 2192 } 2193 2194 static inline void xfrm_dev_state_delete(struct xfrm_state *x) 2195 { 2196 } 2197 2198 static inline void xfrm_dev_state_free(struct xfrm_state *x) 2199 { 2200 } 2201 2202 static inline int xfrm_dev_policy_add(struct net *net, struct xfrm_policy *xp, 2203 struct xfrm_user_offload *xuo, u8 dir, 2204 struct netlink_ext_ack *extack) 2205 { 2206 return 0; 2207 } 2208 2209 static inline void xfrm_dev_policy_delete(struct xfrm_policy *x) 2210 { 2211 } 2212 2213 static inline void xfrm_dev_policy_free(struct xfrm_policy *x) 2214 { 2215 } 2216 2217 static inline bool xfrm_dev_offload_ok(struct sk_buff *skb, struct xfrm_state *x) 2218 { 2219 return false; 2220 } 2221 2222 static inline void xfrm_dev_state_advance_esn(struct xfrm_state *x) 2223 { 2224 } 2225 2226 static inline bool xfrm_dst_offload_ok(struct dst_entry *dst) 2227 { 2228 return false; 2229 } 2230 #endif 2231 2232 static inline int xfrm_mark_get(struct nlattr **attrs, struct xfrm_mark *m) 2233 { 2234 if (attrs[XFRMA_MARK]) 2235 memcpy(m, nla_data(attrs[XFRMA_MARK]), sizeof(struct xfrm_mark)); 2236 else 2237 m->v = m->m = 0; 2238 2239 return m->v & m->m; 2240 } 2241 2242 static inline int xfrm_mark_put(struct sk_buff *skb, const struct xfrm_mark *m) 2243 { 2244 int ret = 0; 2245 2246 if (m->m | m->v) 2247 ret = nla_put(skb, XFRMA_MARK, sizeof(struct xfrm_mark), m); 2248 return ret; 2249 } 2250 2251 static inline __u32 xfrm_smark_get(__u32 mark, struct xfrm_state *x) 2252 { 2253 struct xfrm_mark *m = &x->props.smark; 2254 2255 return (m->v & m->m) | (mark & ~m->m); 2256 } 2257 2258 static inline int xfrm_if_id_put(struct sk_buff *skb, __u32 if_id) 2259 { 2260 int ret = 0; 2261 2262 if (if_id) 2263 ret = nla_put_u32(skb, XFRMA_IF_ID, if_id); 2264 return ret; 2265 } 2266 2267 static inline int xfrm_tunnel_check(struct sk_buff *skb, struct xfrm_state *x, 2268 unsigned int family) 2269 { 2270 bool tunnel = false; 2271 2272 switch(family) { 2273 case AF_INET: 2274 if (XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4) 2275 tunnel = true; 2276 break; 2277 case AF_INET6: 2278 if (XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip6) 2279 tunnel = true; 2280 break; 2281 } 2282 if (tunnel && !(x->outer_mode.flags & XFRM_MODE_FLAG_TUNNEL)) 2283 return -EINVAL; 2284 2285 return 0; 2286 } 2287 2288 extern const int xfrm_msg_min[XFRM_NR_MSGTYPES]; 2289 extern const struct nla_policy xfrma_policy[XFRMA_MAX+1]; 2290 2291 struct xfrm_translator { 2292 /* Allocate frag_list and put compat translation there */ 2293 int (*alloc_compat)(struct sk_buff *skb, const struct nlmsghdr *src); 2294 2295 /* Allocate nlmsg with 64-bit translaton of received 32-bit message */ 2296 struct nlmsghdr *(*rcv_msg_compat)(const struct nlmsghdr *nlh, 2297 int maxtype, const struct nla_policy *policy, 2298 struct netlink_ext_ack *extack); 2299 2300 /* Translate 32-bit user_policy from sockptr */ 2301 int (*xlate_user_policy_sockptr)(u8 **pdata32, int optlen); 2302 2303 struct module *owner; 2304 }; 2305 2306 #if IS_ENABLED(CONFIG_XFRM_USER_COMPAT) 2307 extern int xfrm_register_translator(struct xfrm_translator *xtr); 2308 extern int xfrm_unregister_translator(struct xfrm_translator *xtr); 2309 extern struct xfrm_translator *xfrm_get_translator(void); 2310 extern void xfrm_put_translator(struct xfrm_translator *xtr); 2311 #else 2312 static inline struct xfrm_translator *xfrm_get_translator(void) 2313 { 2314 return NULL; 2315 } 2316 static inline void xfrm_put_translator(struct xfrm_translator *xtr) 2317 { 2318 } 2319 #endif 2320 2321 #if IS_ENABLED(CONFIG_IPV6) 2322 static inline bool xfrm6_local_dontfrag(const struct sock *sk) 2323 { 2324 int proto; 2325 2326 if (!sk || sk->sk_family != AF_INET6) 2327 return false; 2328 2329 proto = sk->sk_protocol; 2330 if (proto == IPPROTO_UDP || proto == IPPROTO_RAW) 2331 return inet6_test_bit(DONTFRAG, sk); 2332 2333 return false; 2334 } 2335 #endif 2336 2337 #if (IS_BUILTIN(CONFIG_XFRM_INTERFACE) && IS_ENABLED(CONFIG_DEBUG_INFO_BTF)) || \ 2338 (IS_MODULE(CONFIG_XFRM_INTERFACE) && IS_ENABLED(CONFIG_DEBUG_INFO_BTF_MODULES)) 2339 2340 extern struct metadata_dst __percpu *xfrm_bpf_md_dst; 2341 2342 int register_xfrm_interface_bpf(void); 2343 2344 #else 2345 2346 static inline int register_xfrm_interface_bpf(void) 2347 { 2348 return 0; 2349 } 2350 2351 #endif 2352 2353 #if IS_ENABLED(CONFIG_DEBUG_INFO_BTF) 2354 int register_xfrm_state_bpf(void); 2355 #else 2356 static inline int register_xfrm_state_bpf(void) 2357 { 2358 return 0; 2359 } 2360 #endif 2361 2362 int xfrm_nat_keepalive_init(unsigned short family); 2363 void xfrm_nat_keepalive_fini(unsigned short family); 2364 int xfrm_nat_keepalive_net_init(struct net *net); 2365 int xfrm_nat_keepalive_net_fini(struct net *net); 2366 void xfrm_nat_keepalive_state_updated(struct xfrm_state *x); 2367 2368 #endif /* _NET_XFRM_H */ 2369