1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * NET4: Implementation of BSD Unix domain sockets. 4 * 5 * Authors: Alan Cox, <alan@lxorguk.ukuu.org.uk> 6 * 7 * Fixes: 8 * Linus Torvalds : Assorted bug cures. 9 * Niibe Yutaka : async I/O support. 10 * Carsten Paeth : PF_UNIX check, address fixes. 11 * Alan Cox : Limit size of allocated blocks. 12 * Alan Cox : Fixed the stupid socketpair bug. 13 * Alan Cox : BSD compatibility fine tuning. 14 * Alan Cox : Fixed a bug in connect when interrupted. 15 * Alan Cox : Sorted out a proper draft version of 16 * file descriptor passing hacked up from 17 * Mike Shaver's work. 18 * Marty Leisner : Fixes to fd passing 19 * Nick Nevin : recvmsg bugfix. 20 * Alan Cox : Started proper garbage collector 21 * Heiko EiBfeldt : Missing verify_area check 22 * Alan Cox : Started POSIXisms 23 * Andreas Schwab : Replace inode by dentry for proper 24 * reference counting 25 * Kirk Petersen : Made this a module 26 * Christoph Rohland : Elegant non-blocking accept/connect algorithm. 27 * Lots of bug fixes. 28 * Alexey Kuznetosv : Repaired (I hope) bugs introduces 29 * by above two patches. 30 * Andrea Arcangeli : If possible we block in connect(2) 31 * if the max backlog of the listen socket 32 * is been reached. This won't break 33 * old apps and it will avoid huge amount 34 * of socks hashed (this for unix_gc() 35 * performances reasons). 36 * Security fix that limits the max 37 * number of socks to 2*max_files and 38 * the number of skb queueable in the 39 * dgram receiver. 40 * Artur Skawina : Hash function optimizations 41 * Alexey Kuznetsov : Full scale SMP. Lot of bugs are introduced 8) 42 * Malcolm Beattie : Set peercred for socketpair 43 * Michal Ostrowski : Module initialization cleanup. 44 * Arnaldo C. Melo : Remove MOD_{INC,DEC}_USE_COUNT, 45 * the core infrastructure is doing that 46 * for all net proto families now (2.5.69+) 47 * 48 * Known differences from reference BSD that was tested: 49 * 50 * [TO FIX] 51 * ECONNREFUSED is not returned from one end of a connected() socket to the 52 * other the moment one end closes. 53 * fstat() doesn't return st_dev=0, and give the blksize as high water mark 54 * and a fake inode identifier (nor the BSD first socket fstat twice bug). 55 * [NOT TO FIX] 56 * accept() returns a path name even if the connecting socket has closed 57 * in the meantime (BSD loses the path and gives up). 58 * accept() returns 0 length path for an unbound connector. BSD returns 16 59 * and a null first byte in the path (but not for gethost/peername - BSD bug ??) 60 * socketpair(...SOCK_RAW..) doesn't panic the kernel. 61 * BSD af_unix apparently has connect forgetting to block properly. 62 * (need to check this with the POSIX spec in detail) 63 * 64 * Differences from 2.0.0-11-... (ANK) 65 * Bug fixes and improvements. 66 * - client shutdown killed server socket. 67 * - removed all useless cli/sti pairs. 68 * 69 * Semantic changes/extensions. 70 * - generic control message passing. 71 * - SCM_CREDENTIALS control message. 72 * - "Abstract" (not FS based) socket bindings. 73 * Abstract names are sequences of bytes (not zero terminated) 74 * started by 0, so that this name space does not intersect 75 * with BSD names. 76 */ 77 78 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 79 80 #include <linux/bpf-cgroup.h> 81 #include <linux/btf_ids.h> 82 #include <linux/dcache.h> 83 #include <linux/errno.h> 84 #include <linux/fcntl.h> 85 #include <linux/file.h> 86 #include <linux/filter.h> 87 #include <linux/fs.h> 88 #include <linux/fs_struct.h> 89 #include <linux/init.h> 90 #include <linux/kernel.h> 91 #include <linux/mount.h> 92 #include <linux/namei.h> 93 #include <linux/net.h> 94 #include <linux/pidfs.h> 95 #include <linux/poll.h> 96 #include <linux/proc_fs.h> 97 #include <linux/sched/signal.h> 98 #include <linux/security.h> 99 #include <linux/seq_file.h> 100 #include <linux/skbuff.h> 101 #include <linux/slab.h> 102 #include <linux/socket.h> 103 #include <linux/splice.h> 104 #include <linux/string.h> 105 #include <linux/uaccess.h> 106 #include <net/af_unix.h> 107 #include <net/net_namespace.h> 108 #include <net/scm.h> 109 #include <net/tcp_states.h> 110 #include <uapi/linux/sockios.h> 111 #include <uapi/linux/termios.h> 112 113 #include "af_unix.h" 114 115 static atomic_long_t unix_nr_socks; 116 static struct hlist_head bsd_socket_buckets[UNIX_HASH_SIZE / 2]; 117 static spinlock_t bsd_socket_locks[UNIX_HASH_SIZE / 2]; 118 119 /* SMP locking strategy: 120 * hash table is protected with spinlock. 121 * each socket state is protected by separate spinlock. 122 */ 123 #ifdef CONFIG_PROVE_LOCKING 124 #define cmp_ptr(l, r) (((l) > (r)) - ((l) < (r))) 125 126 static int unix_table_lock_cmp_fn(const struct lockdep_map *a, 127 const struct lockdep_map *b) 128 { 129 return cmp_ptr(a, b); 130 } 131 132 static int unix_state_lock_cmp_fn(const struct lockdep_map *_a, 133 const struct lockdep_map *_b) 134 { 135 const struct unix_sock *a, *b; 136 137 a = container_of(_a, struct unix_sock, lock.dep_map); 138 b = container_of(_b, struct unix_sock, lock.dep_map); 139 140 if (a->sk.sk_state == TCP_LISTEN) { 141 /* unix_stream_connect(): Before the 2nd unix_state_lock(), 142 * 143 * 1. a is TCP_LISTEN. 144 * 2. b is not a. 145 * 3. concurrent connect(b -> a) must fail. 146 * 147 * Except for 2. & 3., the b's state can be any possible 148 * value due to concurrent connect() or listen(). 149 * 150 * 2. is detected in debug_spin_lock_before(), and 3. cannot 151 * be expressed as lock_cmp_fn. 152 */ 153 switch (b->sk.sk_state) { 154 case TCP_CLOSE: 155 case TCP_ESTABLISHED: 156 case TCP_LISTEN: 157 return -1; 158 default: 159 /* Invalid case. */ 160 return 0; 161 } 162 } 163 164 /* Should never happen. Just to be symmetric. */ 165 if (b->sk.sk_state == TCP_LISTEN) { 166 switch (b->sk.sk_state) { 167 case TCP_CLOSE: 168 case TCP_ESTABLISHED: 169 return 1; 170 default: 171 return 0; 172 } 173 } 174 175 /* unix_state_double_lock(): ascending address order. */ 176 return cmp_ptr(a, b); 177 } 178 179 static int unix_recvq_lock_cmp_fn(const struct lockdep_map *_a, 180 const struct lockdep_map *_b) 181 { 182 const struct sock *a, *b; 183 184 a = container_of(_a, struct sock, sk_receive_queue.lock.dep_map); 185 b = container_of(_b, struct sock, sk_receive_queue.lock.dep_map); 186 187 /* unix_collect_skb(): listener -> embryo order. */ 188 if (a->sk_state == TCP_LISTEN && unix_sk(b)->listener == a) 189 return -1; 190 191 /* Should never happen. Just to be symmetric. */ 192 if (b->sk_state == TCP_LISTEN && unix_sk(a)->listener == b) 193 return 1; 194 195 return 0; 196 } 197 #endif 198 199 static unsigned int unix_unbound_hash(struct sock *sk) 200 { 201 unsigned long hash = (unsigned long)sk; 202 203 hash ^= hash >> 16; 204 hash ^= hash >> 8; 205 hash ^= sk->sk_type; 206 207 return hash & UNIX_HASH_MOD; 208 } 209 210 static unsigned int unix_bsd_hash(struct inode *i) 211 { 212 return i->i_ino & UNIX_HASH_MOD; 213 } 214 215 static unsigned int unix_abstract_hash(struct sockaddr_un *sunaddr, 216 int addr_len, int type) 217 { 218 __wsum csum = csum_partial(sunaddr, addr_len, 0); 219 unsigned int hash; 220 221 hash = (__force unsigned int)csum_fold(csum); 222 hash ^= hash >> 8; 223 hash ^= type; 224 225 return UNIX_HASH_MOD + 1 + (hash & UNIX_HASH_MOD); 226 } 227 228 static void unix_table_double_lock(struct net *net, 229 unsigned int hash1, unsigned int hash2) 230 { 231 if (hash1 == hash2) { 232 spin_lock(&net->unx.table.locks[hash1]); 233 return; 234 } 235 236 if (hash1 > hash2) 237 swap(hash1, hash2); 238 239 spin_lock(&net->unx.table.locks[hash1]); 240 spin_lock(&net->unx.table.locks[hash2]); 241 } 242 243 static void unix_table_double_unlock(struct net *net, 244 unsigned int hash1, unsigned int hash2) 245 { 246 if (hash1 == hash2) { 247 spin_unlock(&net->unx.table.locks[hash1]); 248 return; 249 } 250 251 spin_unlock(&net->unx.table.locks[hash1]); 252 spin_unlock(&net->unx.table.locks[hash2]); 253 } 254 255 #ifdef CONFIG_SECURITY_NETWORK 256 static void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) 257 { 258 UNIXCB(skb).secid = scm->secid; 259 } 260 261 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) 262 { 263 scm->secid = UNIXCB(skb).secid; 264 } 265 266 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) 267 { 268 return (scm->secid == UNIXCB(skb).secid); 269 } 270 #else 271 static inline void unix_get_secdata(struct scm_cookie *scm, struct sk_buff *skb) 272 { } 273 274 static inline void unix_set_secdata(struct scm_cookie *scm, struct sk_buff *skb) 275 { } 276 277 static inline bool unix_secdata_eq(struct scm_cookie *scm, struct sk_buff *skb) 278 { 279 return true; 280 } 281 #endif /* CONFIG_SECURITY_NETWORK */ 282 283 static inline int unix_may_send(struct sock *sk, struct sock *osk) 284 { 285 return !unix_peer(osk) || unix_peer(osk) == sk; 286 } 287 288 static inline int unix_recvq_full_lockless(const struct sock *sk) 289 { 290 return skb_queue_len_lockless(&sk->sk_receive_queue) > sk->sk_max_ack_backlog; 291 } 292 293 struct sock *unix_peer_get(struct sock *s) 294 { 295 struct sock *peer; 296 297 unix_state_lock(s); 298 peer = unix_peer(s); 299 if (peer) 300 sock_hold(peer); 301 unix_state_unlock(s); 302 return peer; 303 } 304 EXPORT_SYMBOL_GPL(unix_peer_get); 305 306 static struct unix_address *unix_create_addr(struct sockaddr_un *sunaddr, 307 int addr_len) 308 { 309 struct unix_address *addr; 310 311 addr = kmalloc(sizeof(*addr) + addr_len, GFP_KERNEL); 312 if (!addr) 313 return NULL; 314 315 refcount_set(&addr->refcnt, 1); 316 addr->len = addr_len; 317 memcpy(addr->name, sunaddr, addr_len); 318 319 return addr; 320 } 321 322 static inline void unix_release_addr(struct unix_address *addr) 323 { 324 if (refcount_dec_and_test(&addr->refcnt)) 325 kfree(addr); 326 } 327 328 /* 329 * Check unix socket name: 330 * - should be not zero length. 331 * - if started by not zero, should be NULL terminated (FS object) 332 * - if started by zero, it is abstract name. 333 */ 334 335 static int unix_validate_addr(struct sockaddr_un *sunaddr, int addr_len) 336 { 337 if (addr_len <= offsetof(struct sockaddr_un, sun_path) || 338 addr_len > sizeof(*sunaddr)) 339 return -EINVAL; 340 341 if (sunaddr->sun_family != AF_UNIX) 342 return -EINVAL; 343 344 return 0; 345 } 346 347 static int unix_mkname_bsd(struct sockaddr_un *sunaddr, int addr_len) 348 { 349 struct sockaddr_storage *addr = (struct sockaddr_storage *)sunaddr; 350 short offset = offsetof(struct sockaddr_storage, __data); 351 352 BUILD_BUG_ON(offset != offsetof(struct sockaddr_un, sun_path)); 353 354 /* This may look like an off by one error but it is a bit more 355 * subtle. 108 is the longest valid AF_UNIX path for a binding. 356 * sun_path[108] doesn't as such exist. However in kernel space 357 * we are guaranteed that it is a valid memory location in our 358 * kernel address buffer because syscall functions always pass 359 * a pointer of struct sockaddr_storage which has a bigger buffer 360 * than 108. Also, we must terminate sun_path for strlen() in 361 * getname_kernel(). 362 */ 363 addr->__data[addr_len - offset] = 0; 364 365 /* Don't pass sunaddr->sun_path to strlen(). Otherwise, 108 will 366 * cause panic if CONFIG_FORTIFY_SOURCE=y. Let __fortify_strlen() 367 * know the actual buffer. 368 */ 369 return strlen(addr->__data) + offset + 1; 370 } 371 372 static void __unix_remove_socket(struct sock *sk) 373 { 374 sk_del_node_init(sk); 375 } 376 377 static void __unix_insert_socket(struct net *net, struct sock *sk) 378 { 379 DEBUG_NET_WARN_ON_ONCE(!sk_unhashed(sk)); 380 sk_add_node(sk, &net->unx.table.buckets[sk->sk_hash]); 381 } 382 383 static void __unix_set_addr_hash(struct net *net, struct sock *sk, 384 struct unix_address *addr, unsigned int hash) 385 { 386 __unix_remove_socket(sk); 387 smp_store_release(&unix_sk(sk)->addr, addr); 388 389 sk->sk_hash = hash; 390 __unix_insert_socket(net, sk); 391 } 392 393 static void unix_remove_socket(struct net *net, struct sock *sk) 394 { 395 spin_lock(&net->unx.table.locks[sk->sk_hash]); 396 __unix_remove_socket(sk); 397 spin_unlock(&net->unx.table.locks[sk->sk_hash]); 398 } 399 400 static void unix_insert_unbound_socket(struct net *net, struct sock *sk) 401 { 402 spin_lock(&net->unx.table.locks[sk->sk_hash]); 403 __unix_insert_socket(net, sk); 404 spin_unlock(&net->unx.table.locks[sk->sk_hash]); 405 } 406 407 static void unix_insert_bsd_socket(struct sock *sk) 408 { 409 spin_lock(&bsd_socket_locks[sk->sk_hash]); 410 sk_add_bind_node(sk, &bsd_socket_buckets[sk->sk_hash]); 411 spin_unlock(&bsd_socket_locks[sk->sk_hash]); 412 } 413 414 static void unix_remove_bsd_socket(struct sock *sk) 415 { 416 if (!hlist_unhashed(&sk->sk_bind_node)) { 417 spin_lock(&bsd_socket_locks[sk->sk_hash]); 418 __sk_del_bind_node(sk); 419 spin_unlock(&bsd_socket_locks[sk->sk_hash]); 420 421 sk_node_init(&sk->sk_bind_node); 422 } 423 } 424 425 static struct sock *__unix_find_socket_byname(struct net *net, 426 struct sockaddr_un *sunname, 427 int len, unsigned int hash) 428 { 429 struct sock *s; 430 431 sk_for_each(s, &net->unx.table.buckets[hash]) { 432 struct unix_sock *u = unix_sk(s); 433 434 if (u->addr->len == len && 435 !memcmp(u->addr->name, sunname, len)) 436 return s; 437 } 438 return NULL; 439 } 440 441 static inline struct sock *unix_find_socket_byname(struct net *net, 442 struct sockaddr_un *sunname, 443 int len, unsigned int hash) 444 { 445 struct sock *s; 446 447 spin_lock(&net->unx.table.locks[hash]); 448 s = __unix_find_socket_byname(net, sunname, len, hash); 449 if (s) 450 sock_hold(s); 451 spin_unlock(&net->unx.table.locks[hash]); 452 return s; 453 } 454 455 static struct sock *unix_find_socket_byinode(struct inode *i) 456 { 457 unsigned int hash = unix_bsd_hash(i); 458 struct sock *s; 459 460 spin_lock(&bsd_socket_locks[hash]); 461 sk_for_each_bound(s, &bsd_socket_buckets[hash]) { 462 struct dentry *dentry = unix_sk(s)->path.dentry; 463 464 if (dentry && d_backing_inode(dentry) == i) { 465 sock_hold(s); 466 spin_unlock(&bsd_socket_locks[hash]); 467 return s; 468 } 469 } 470 spin_unlock(&bsd_socket_locks[hash]); 471 return NULL; 472 } 473 474 /* Support code for asymmetrically connected dgram sockets 475 * 476 * If a datagram socket is connected to a socket not itself connected 477 * to the first socket (eg, /dev/log), clients may only enqueue more 478 * messages if the present receive queue of the server socket is not 479 * "too large". This means there's a second writeability condition 480 * poll and sendmsg need to test. The dgram recv code will do a wake 481 * up on the peer_wait wait queue of a socket upon reception of a 482 * datagram which needs to be propagated to sleeping would-be writers 483 * since these might not have sent anything so far. This can't be 484 * accomplished via poll_wait because the lifetime of the server 485 * socket might be less than that of its clients if these break their 486 * association with it or if the server socket is closed while clients 487 * are still connected to it and there's no way to inform "a polling 488 * implementation" that it should let go of a certain wait queue 489 * 490 * In order to propagate a wake up, a wait_queue_entry_t of the client 491 * socket is enqueued on the peer_wait queue of the server socket 492 * whose wake function does a wake_up on the ordinary client socket 493 * wait queue. This connection is established whenever a write (or 494 * poll for write) hit the flow control condition and broken when the 495 * association to the server socket is dissolved or after a wake up 496 * was relayed. 497 */ 498 499 static int unix_dgram_peer_wake_relay(wait_queue_entry_t *q, unsigned mode, int flags, 500 void *key) 501 { 502 struct unix_sock *u; 503 wait_queue_head_t *u_sleep; 504 505 u = container_of(q, struct unix_sock, peer_wake); 506 507 __remove_wait_queue(&unix_sk(u->peer_wake.private)->peer_wait, 508 q); 509 u->peer_wake.private = NULL; 510 511 /* relaying can only happen while the wq still exists */ 512 u_sleep = sk_sleep(&u->sk); 513 if (u_sleep) 514 wake_up_interruptible_poll(u_sleep, key_to_poll(key)); 515 516 return 0; 517 } 518 519 static int unix_dgram_peer_wake_connect(struct sock *sk, struct sock *other) 520 { 521 struct unix_sock *u, *u_other; 522 int rc; 523 524 u = unix_sk(sk); 525 u_other = unix_sk(other); 526 rc = 0; 527 spin_lock(&u_other->peer_wait.lock); 528 529 if (!u->peer_wake.private) { 530 u->peer_wake.private = other; 531 __add_wait_queue(&u_other->peer_wait, &u->peer_wake); 532 533 rc = 1; 534 } 535 536 spin_unlock(&u_other->peer_wait.lock); 537 return rc; 538 } 539 540 static void unix_dgram_peer_wake_disconnect(struct sock *sk, 541 struct sock *other) 542 { 543 struct unix_sock *u, *u_other; 544 545 u = unix_sk(sk); 546 u_other = unix_sk(other); 547 spin_lock(&u_other->peer_wait.lock); 548 549 if (u->peer_wake.private == other) { 550 __remove_wait_queue(&u_other->peer_wait, &u->peer_wake); 551 u->peer_wake.private = NULL; 552 } 553 554 spin_unlock(&u_other->peer_wait.lock); 555 } 556 557 static void unix_dgram_peer_wake_disconnect_wakeup(struct sock *sk, 558 struct sock *other) 559 { 560 unix_dgram_peer_wake_disconnect(sk, other); 561 wake_up_interruptible_poll(sk_sleep(sk), 562 EPOLLOUT | 563 EPOLLWRNORM | 564 EPOLLWRBAND); 565 } 566 567 /* preconditions: 568 * - unix_peer(sk) == other 569 * - association is stable 570 */ 571 static int unix_dgram_peer_wake_me(struct sock *sk, struct sock *other) 572 { 573 int connected; 574 575 connected = unix_dgram_peer_wake_connect(sk, other); 576 577 /* If other is SOCK_DEAD, we want to make sure we signal 578 * POLLOUT, such that a subsequent write() can get a 579 * -ECONNREFUSED. Otherwise, if we haven't queued any skbs 580 * to other and its full, we will hang waiting for POLLOUT. 581 */ 582 if (unix_recvq_full_lockless(other) && !sock_flag(other, SOCK_DEAD)) 583 return 1; 584 585 if (connected) 586 unix_dgram_peer_wake_disconnect(sk, other); 587 588 return 0; 589 } 590 591 static int unix_writable(const struct sock *sk, unsigned char state) 592 { 593 return state != TCP_LISTEN && 594 (refcount_read(&sk->sk_wmem_alloc) << 2) <= READ_ONCE(sk->sk_sndbuf); 595 } 596 597 static void unix_write_space(struct sock *sk) 598 { 599 struct socket_wq *wq; 600 601 rcu_read_lock(); 602 if (unix_writable(sk, READ_ONCE(sk->sk_state))) { 603 wq = rcu_dereference(sk->sk_wq); 604 if (skwq_has_sleeper(wq)) 605 wake_up_interruptible_sync_poll(&wq->wait, 606 EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND); 607 sk_wake_async_rcu(sk, SOCK_WAKE_SPACE, POLL_OUT); 608 } 609 rcu_read_unlock(); 610 } 611 612 /* When dgram socket disconnects (or changes its peer), we clear its receive 613 * queue of packets arrived from previous peer. First, it allows to do 614 * flow control based only on wmem_alloc; second, sk connected to peer 615 * may receive messages only from that peer. */ 616 static void unix_dgram_disconnected(struct sock *sk, struct sock *other) 617 { 618 if (!skb_queue_empty(&sk->sk_receive_queue)) { 619 skb_queue_purge_reason(&sk->sk_receive_queue, 620 SKB_DROP_REASON_UNIX_DISCONNECT); 621 622 wake_up_interruptible_all(&unix_sk(sk)->peer_wait); 623 624 /* If one link of bidirectional dgram pipe is disconnected, 625 * we signal error. Messages are lost. Do not make this, 626 * when peer was not connected to us. 627 */ 628 if (!sock_flag(other, SOCK_DEAD) && unix_peer(other) == sk) { 629 WRITE_ONCE(other->sk_err, ECONNRESET); 630 sk_error_report(other); 631 } 632 } 633 } 634 635 static void unix_sock_destructor(struct sock *sk) 636 { 637 struct unix_sock *u = unix_sk(sk); 638 639 skb_queue_purge_reason(&sk->sk_receive_queue, SKB_DROP_REASON_SOCKET_CLOSE); 640 641 DEBUG_NET_WARN_ON_ONCE(refcount_read(&sk->sk_wmem_alloc)); 642 DEBUG_NET_WARN_ON_ONCE(!sk_unhashed(sk)); 643 DEBUG_NET_WARN_ON_ONCE(sk->sk_socket); 644 if (!sock_flag(sk, SOCK_DEAD)) { 645 pr_info("Attempt to release alive unix socket: %p\n", sk); 646 return; 647 } 648 649 if (sk->sk_peer_pid) 650 pidfs_put_pid(sk->sk_peer_pid); 651 652 if (u->addr) 653 unix_release_addr(u->addr); 654 655 atomic_long_dec(&unix_nr_socks); 656 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1); 657 #ifdef UNIX_REFCNT_DEBUG 658 pr_debug("UNIX %p is destroyed, %ld are still alive.\n", sk, 659 atomic_long_read(&unix_nr_socks)); 660 #endif 661 } 662 663 static unsigned int unix_skb_len(const struct sk_buff *skb) 664 { 665 return skb->len - UNIXCB(skb).consumed; 666 } 667 668 static void unix_release_sock(struct sock *sk, int embrion) 669 { 670 struct unix_sock *u = unix_sk(sk); 671 struct sock *skpair; 672 struct sk_buff *skb; 673 struct path path; 674 int state; 675 676 unix_remove_socket(sock_net(sk), sk); 677 unix_remove_bsd_socket(sk); 678 679 /* Clear state */ 680 unix_state_lock(sk); 681 sock_orphan(sk); 682 WRITE_ONCE(sk->sk_shutdown, SHUTDOWN_MASK); 683 path = u->path; 684 u->path.dentry = NULL; 685 u->path.mnt = NULL; 686 state = sk->sk_state; 687 WRITE_ONCE(sk->sk_state, TCP_CLOSE); 688 689 skpair = unix_peer(sk); 690 unix_peer(sk) = NULL; 691 692 unix_state_unlock(sk); 693 694 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 695 u->oob_skb = NULL; 696 #endif 697 698 wake_up_interruptible_all(&u->peer_wait); 699 700 if (skpair != NULL) { 701 if (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) { 702 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue); 703 704 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 705 if (skb && !unix_skb_len(skb)) 706 skb = skb_peek_next(skb, &sk->sk_receive_queue); 707 #endif 708 unix_state_lock(skpair); 709 /* No more writes */ 710 WRITE_ONCE(skpair->sk_shutdown, SHUTDOWN_MASK); 711 if (skb || embrion) 712 WRITE_ONCE(skpair->sk_err, ECONNRESET); 713 unix_state_unlock(skpair); 714 skpair->sk_state_change(skpair); 715 sk_wake_async(skpair, SOCK_WAKE_WAITD, POLL_HUP); 716 } 717 718 unix_dgram_peer_wake_disconnect(sk, skpair); 719 sock_put(skpair); /* It may now die */ 720 } 721 722 /* Try to flush out this socket. Throw out buffers at least */ 723 724 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) { 725 if (state == TCP_LISTEN) 726 unix_release_sock(skb->sk, 1); 727 728 /* passed fds are erased in the kfree_skb hook */ 729 kfree_skb_reason(skb, SKB_DROP_REASON_SOCKET_CLOSE); 730 } 731 732 if (path.dentry) 733 path_put(&path); 734 735 sock_put(sk); 736 737 /* ---- Socket is dead now and most probably destroyed ---- */ 738 739 /* 740 * Fixme: BSD difference: In BSD all sockets connected to us get 741 * ECONNRESET and we die on the spot. In Linux we behave 742 * like files and pipes do and wait for the last 743 * dereference. 744 * 745 * Can't we simply set sock->err? 746 * 747 * What the above comment does talk about? --ANK(980817) 748 */ 749 750 if (READ_ONCE(unix_tot_inflight)) 751 unix_gc(); /* Garbage collect fds */ 752 } 753 754 struct unix_peercred { 755 struct pid *peer_pid; 756 const struct cred *peer_cred; 757 }; 758 759 static inline int prepare_peercred(struct unix_peercred *peercred) 760 { 761 struct pid *pid; 762 int err; 763 764 pid = task_tgid(current); 765 err = pidfs_register_pid(pid); 766 if (likely(!err)) { 767 peercred->peer_pid = get_pid(pid); 768 peercred->peer_cred = get_current_cred(); 769 } 770 return err; 771 } 772 773 static void drop_peercred(struct unix_peercred *peercred) 774 { 775 const struct cred *cred = NULL; 776 struct pid *pid = NULL; 777 778 might_sleep(); 779 780 swap(peercred->peer_pid, pid); 781 swap(peercred->peer_cred, cred); 782 783 pidfs_put_pid(pid); 784 put_pid(pid); 785 put_cred(cred); 786 } 787 788 static inline void init_peercred(struct sock *sk, 789 const struct unix_peercred *peercred) 790 { 791 sk->sk_peer_pid = peercred->peer_pid; 792 sk->sk_peer_cred = peercred->peer_cred; 793 } 794 795 static void update_peercred(struct sock *sk, struct unix_peercred *peercred) 796 { 797 const struct cred *old_cred; 798 struct pid *old_pid; 799 800 spin_lock(&sk->sk_peer_lock); 801 old_pid = sk->sk_peer_pid; 802 old_cred = sk->sk_peer_cred; 803 init_peercred(sk, peercred); 804 spin_unlock(&sk->sk_peer_lock); 805 806 peercred->peer_pid = old_pid; 807 peercred->peer_cred = old_cred; 808 } 809 810 static void copy_peercred(struct sock *sk, struct sock *peersk) 811 { 812 lockdep_assert_held(&unix_sk(peersk)->lock); 813 814 spin_lock(&sk->sk_peer_lock); 815 sk->sk_peer_pid = get_pid(peersk->sk_peer_pid); 816 pidfs_get_pid(sk->sk_peer_pid); 817 sk->sk_peer_cred = get_cred(peersk->sk_peer_cred); 818 spin_unlock(&sk->sk_peer_lock); 819 } 820 821 static bool unix_may_passcred(const struct sock *sk) 822 { 823 return sk->sk_scm_credentials || sk->sk_scm_pidfd; 824 } 825 826 static int unix_listen(struct socket *sock, int backlog) 827 { 828 int err; 829 struct sock *sk = sock->sk; 830 struct unix_sock *u = unix_sk(sk); 831 struct unix_peercred peercred = {}; 832 833 err = -EOPNOTSUPP; 834 if (sock->type != SOCK_STREAM && sock->type != SOCK_SEQPACKET) 835 goto out; /* Only stream/seqpacket sockets accept */ 836 err = -EINVAL; 837 if (!READ_ONCE(u->addr)) 838 goto out; /* No listens on an unbound socket */ 839 err = prepare_peercred(&peercred); 840 if (err) 841 goto out; 842 unix_state_lock(sk); 843 if (sk->sk_state != TCP_CLOSE && sk->sk_state != TCP_LISTEN) 844 goto out_unlock; 845 if (backlog > sk->sk_max_ack_backlog) 846 wake_up_interruptible_all(&u->peer_wait); 847 sk->sk_max_ack_backlog = backlog; 848 WRITE_ONCE(sk->sk_state, TCP_LISTEN); 849 850 /* set credentials so connect can copy them */ 851 update_peercred(sk, &peercred); 852 err = 0; 853 854 out_unlock: 855 unix_state_unlock(sk); 856 drop_peercred(&peercred); 857 out: 858 return err; 859 } 860 861 static int unix_release(struct socket *); 862 static int unix_bind(struct socket *, struct sockaddr *, int); 863 static int unix_stream_connect(struct socket *, struct sockaddr *, 864 int addr_len, int flags); 865 static int unix_socketpair(struct socket *, struct socket *); 866 static int unix_accept(struct socket *, struct socket *, struct proto_accept_arg *arg); 867 static int unix_getname(struct socket *, struct sockaddr *, int); 868 static __poll_t unix_poll(struct file *, struct socket *, poll_table *); 869 static __poll_t unix_dgram_poll(struct file *, struct socket *, 870 poll_table *); 871 static int unix_ioctl(struct socket *, unsigned int, unsigned long); 872 #ifdef CONFIG_COMPAT 873 static int unix_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg); 874 #endif 875 static int unix_shutdown(struct socket *, int); 876 static int unix_stream_sendmsg(struct socket *, struct msghdr *, size_t); 877 static int unix_stream_recvmsg(struct socket *, struct msghdr *, size_t, int); 878 static ssize_t unix_stream_splice_read(struct socket *, loff_t *ppos, 879 struct pipe_inode_info *, size_t size, 880 unsigned int flags); 881 static int unix_dgram_sendmsg(struct socket *, struct msghdr *, size_t); 882 static int unix_dgram_recvmsg(struct socket *, struct msghdr *, size_t, int); 883 static int unix_read_skb(struct sock *sk, skb_read_actor_t recv_actor); 884 static int unix_stream_read_skb(struct sock *sk, skb_read_actor_t recv_actor); 885 static int unix_dgram_connect(struct socket *, struct sockaddr *, 886 int, int); 887 static int unix_seqpacket_sendmsg(struct socket *, struct msghdr *, size_t); 888 static int unix_seqpacket_recvmsg(struct socket *, struct msghdr *, size_t, 889 int); 890 891 #ifdef CONFIG_PROC_FS 892 static int unix_count_nr_fds(struct sock *sk) 893 { 894 struct sk_buff *skb; 895 struct unix_sock *u; 896 int nr_fds = 0; 897 898 spin_lock(&sk->sk_receive_queue.lock); 899 skb = skb_peek(&sk->sk_receive_queue); 900 while (skb) { 901 u = unix_sk(skb->sk); 902 nr_fds += atomic_read(&u->scm_stat.nr_fds); 903 skb = skb_peek_next(skb, &sk->sk_receive_queue); 904 } 905 spin_unlock(&sk->sk_receive_queue.lock); 906 907 return nr_fds; 908 } 909 910 static void unix_show_fdinfo(struct seq_file *m, struct socket *sock) 911 { 912 struct sock *sk = sock->sk; 913 unsigned char s_state; 914 struct unix_sock *u; 915 int nr_fds = 0; 916 917 if (sk) { 918 s_state = READ_ONCE(sk->sk_state); 919 u = unix_sk(sk); 920 921 /* SOCK_STREAM and SOCK_SEQPACKET sockets never change their 922 * sk_state after switching to TCP_ESTABLISHED or TCP_LISTEN. 923 * SOCK_DGRAM is ordinary. So, no lock is needed. 924 */ 925 if (sock->type == SOCK_DGRAM || s_state == TCP_ESTABLISHED) 926 nr_fds = atomic_read(&u->scm_stat.nr_fds); 927 else if (s_state == TCP_LISTEN) 928 nr_fds = unix_count_nr_fds(sk); 929 930 seq_printf(m, "scm_fds: %u\n", nr_fds); 931 } 932 } 933 #else 934 #define unix_show_fdinfo NULL 935 #endif 936 937 static const struct proto_ops unix_stream_ops = { 938 .family = PF_UNIX, 939 .owner = THIS_MODULE, 940 .release = unix_release, 941 .bind = unix_bind, 942 .connect = unix_stream_connect, 943 .socketpair = unix_socketpair, 944 .accept = unix_accept, 945 .getname = unix_getname, 946 .poll = unix_poll, 947 .ioctl = unix_ioctl, 948 #ifdef CONFIG_COMPAT 949 .compat_ioctl = unix_compat_ioctl, 950 #endif 951 .listen = unix_listen, 952 .shutdown = unix_shutdown, 953 .sendmsg = unix_stream_sendmsg, 954 .recvmsg = unix_stream_recvmsg, 955 .read_skb = unix_stream_read_skb, 956 .mmap = sock_no_mmap, 957 .splice_read = unix_stream_splice_read, 958 .set_peek_off = sk_set_peek_off, 959 .show_fdinfo = unix_show_fdinfo, 960 }; 961 962 static const struct proto_ops unix_dgram_ops = { 963 .family = PF_UNIX, 964 .owner = THIS_MODULE, 965 .release = unix_release, 966 .bind = unix_bind, 967 .connect = unix_dgram_connect, 968 .socketpair = unix_socketpair, 969 .accept = sock_no_accept, 970 .getname = unix_getname, 971 .poll = unix_dgram_poll, 972 .ioctl = unix_ioctl, 973 #ifdef CONFIG_COMPAT 974 .compat_ioctl = unix_compat_ioctl, 975 #endif 976 .listen = sock_no_listen, 977 .shutdown = unix_shutdown, 978 .sendmsg = unix_dgram_sendmsg, 979 .read_skb = unix_read_skb, 980 .recvmsg = unix_dgram_recvmsg, 981 .mmap = sock_no_mmap, 982 .set_peek_off = sk_set_peek_off, 983 .show_fdinfo = unix_show_fdinfo, 984 }; 985 986 static const struct proto_ops unix_seqpacket_ops = { 987 .family = PF_UNIX, 988 .owner = THIS_MODULE, 989 .release = unix_release, 990 .bind = unix_bind, 991 .connect = unix_stream_connect, 992 .socketpair = unix_socketpair, 993 .accept = unix_accept, 994 .getname = unix_getname, 995 .poll = unix_dgram_poll, 996 .ioctl = unix_ioctl, 997 #ifdef CONFIG_COMPAT 998 .compat_ioctl = unix_compat_ioctl, 999 #endif 1000 .listen = unix_listen, 1001 .shutdown = unix_shutdown, 1002 .sendmsg = unix_seqpacket_sendmsg, 1003 .recvmsg = unix_seqpacket_recvmsg, 1004 .mmap = sock_no_mmap, 1005 .set_peek_off = sk_set_peek_off, 1006 .show_fdinfo = unix_show_fdinfo, 1007 }; 1008 1009 static void unix_close(struct sock *sk, long timeout) 1010 { 1011 /* Nothing to do here, unix socket does not need a ->close(). 1012 * This is merely for sockmap. 1013 */ 1014 } 1015 1016 static bool unix_bpf_bypass_getsockopt(int level, int optname) 1017 { 1018 if (level == SOL_SOCKET) { 1019 switch (optname) { 1020 case SO_PEERPIDFD: 1021 return true; 1022 default: 1023 return false; 1024 } 1025 } 1026 1027 return false; 1028 } 1029 1030 struct proto unix_dgram_proto = { 1031 .name = "UNIX", 1032 .owner = THIS_MODULE, 1033 .obj_size = sizeof(struct unix_sock), 1034 .close = unix_close, 1035 .bpf_bypass_getsockopt = unix_bpf_bypass_getsockopt, 1036 #ifdef CONFIG_BPF_SYSCALL 1037 .psock_update_sk_prot = unix_dgram_bpf_update_proto, 1038 #endif 1039 }; 1040 1041 struct proto unix_stream_proto = { 1042 .name = "UNIX-STREAM", 1043 .owner = THIS_MODULE, 1044 .obj_size = sizeof(struct unix_sock), 1045 .close = unix_close, 1046 .bpf_bypass_getsockopt = unix_bpf_bypass_getsockopt, 1047 #ifdef CONFIG_BPF_SYSCALL 1048 .psock_update_sk_prot = unix_stream_bpf_update_proto, 1049 #endif 1050 }; 1051 1052 static struct sock *unix_create1(struct net *net, struct socket *sock, int kern, int type) 1053 { 1054 struct unix_sock *u; 1055 struct sock *sk; 1056 int err; 1057 1058 atomic_long_inc(&unix_nr_socks); 1059 if (atomic_long_read(&unix_nr_socks) > 2 * get_max_files()) { 1060 err = -ENFILE; 1061 goto err; 1062 } 1063 1064 if (type == SOCK_STREAM) 1065 sk = sk_alloc(net, PF_UNIX, GFP_KERNEL, &unix_stream_proto, kern); 1066 else /*dgram and seqpacket */ 1067 sk = sk_alloc(net, PF_UNIX, GFP_KERNEL, &unix_dgram_proto, kern); 1068 1069 if (!sk) { 1070 err = -ENOMEM; 1071 goto err; 1072 } 1073 1074 sock_init_data(sock, sk); 1075 1076 sk->sk_scm_rights = 1; 1077 sk->sk_hash = unix_unbound_hash(sk); 1078 sk->sk_allocation = GFP_KERNEL_ACCOUNT; 1079 sk->sk_write_space = unix_write_space; 1080 sk->sk_max_ack_backlog = READ_ONCE(net->unx.sysctl_max_dgram_qlen); 1081 sk->sk_destruct = unix_sock_destructor; 1082 lock_set_cmp_fn(&sk->sk_receive_queue.lock, unix_recvq_lock_cmp_fn, NULL); 1083 1084 u = unix_sk(sk); 1085 u->listener = NULL; 1086 u->vertex = NULL; 1087 u->path.dentry = NULL; 1088 u->path.mnt = NULL; 1089 spin_lock_init(&u->lock); 1090 lock_set_cmp_fn(&u->lock, unix_state_lock_cmp_fn, NULL); 1091 mutex_init(&u->iolock); /* single task reading lock */ 1092 mutex_init(&u->bindlock); /* single task binding lock */ 1093 init_waitqueue_head(&u->peer_wait); 1094 init_waitqueue_func_entry(&u->peer_wake, unix_dgram_peer_wake_relay); 1095 memset(&u->scm_stat, 0, sizeof(struct scm_stat)); 1096 unix_insert_unbound_socket(net, sk); 1097 1098 sock_prot_inuse_add(net, sk->sk_prot, 1); 1099 1100 return sk; 1101 1102 err: 1103 atomic_long_dec(&unix_nr_socks); 1104 return ERR_PTR(err); 1105 } 1106 1107 static int unix_create(struct net *net, struct socket *sock, int protocol, 1108 int kern) 1109 { 1110 struct sock *sk; 1111 1112 if (protocol && protocol != PF_UNIX) 1113 return -EPROTONOSUPPORT; 1114 1115 sock->state = SS_UNCONNECTED; 1116 1117 switch (sock->type) { 1118 case SOCK_STREAM: 1119 sock->ops = &unix_stream_ops; 1120 break; 1121 /* 1122 * Believe it or not BSD has AF_UNIX, SOCK_RAW though 1123 * nothing uses it. 1124 */ 1125 case SOCK_RAW: 1126 sock->type = SOCK_DGRAM; 1127 fallthrough; 1128 case SOCK_DGRAM: 1129 sock->ops = &unix_dgram_ops; 1130 break; 1131 case SOCK_SEQPACKET: 1132 sock->ops = &unix_seqpacket_ops; 1133 break; 1134 default: 1135 return -ESOCKTNOSUPPORT; 1136 } 1137 1138 sk = unix_create1(net, sock, kern, sock->type); 1139 if (IS_ERR(sk)) 1140 return PTR_ERR(sk); 1141 1142 return 0; 1143 } 1144 1145 static int unix_release(struct socket *sock) 1146 { 1147 struct sock *sk = sock->sk; 1148 1149 if (!sk) 1150 return 0; 1151 1152 sk->sk_prot->close(sk, 0); 1153 unix_release_sock(sk, 0); 1154 sock->sk = NULL; 1155 1156 return 0; 1157 } 1158 1159 static struct sock *unix_find_bsd(struct sockaddr_un *sunaddr, int addr_len, 1160 int type, int flags) 1161 { 1162 struct inode *inode; 1163 struct path path; 1164 struct sock *sk; 1165 int err; 1166 1167 unix_mkname_bsd(sunaddr, addr_len); 1168 1169 if (flags & SOCK_COREDUMP) { 1170 const struct cred *cred; 1171 struct cred *kcred; 1172 struct path root; 1173 1174 kcred = prepare_kernel_cred(&init_task); 1175 if (!kcred) { 1176 err = -ENOMEM; 1177 goto fail; 1178 } 1179 1180 task_lock(&init_task); 1181 get_fs_root(init_task.fs, &root); 1182 task_unlock(&init_task); 1183 1184 cred = override_creds(kcred); 1185 err = vfs_path_lookup(root.dentry, root.mnt, sunaddr->sun_path, 1186 LOOKUP_BENEATH | LOOKUP_NO_SYMLINKS | 1187 LOOKUP_NO_MAGICLINKS, &path); 1188 put_cred(revert_creds(cred)); 1189 path_put(&root); 1190 if (err) 1191 goto fail; 1192 } else { 1193 err = kern_path(sunaddr->sun_path, LOOKUP_FOLLOW, &path); 1194 if (err) 1195 goto fail; 1196 1197 err = path_permission(&path, MAY_WRITE); 1198 if (err) 1199 goto path_put; 1200 } 1201 1202 err = -ECONNREFUSED; 1203 inode = d_backing_inode(path.dentry); 1204 if (!S_ISSOCK(inode->i_mode)) 1205 goto path_put; 1206 1207 sk = unix_find_socket_byinode(inode); 1208 if (!sk) 1209 goto path_put; 1210 1211 err = -EPROTOTYPE; 1212 if (sk->sk_type == type) 1213 touch_atime(&path); 1214 else 1215 goto sock_put; 1216 1217 path_put(&path); 1218 1219 return sk; 1220 1221 sock_put: 1222 sock_put(sk); 1223 path_put: 1224 path_put(&path); 1225 fail: 1226 return ERR_PTR(err); 1227 } 1228 1229 static struct sock *unix_find_abstract(struct net *net, 1230 struct sockaddr_un *sunaddr, 1231 int addr_len, int type) 1232 { 1233 unsigned int hash = unix_abstract_hash(sunaddr, addr_len, type); 1234 struct dentry *dentry; 1235 struct sock *sk; 1236 1237 sk = unix_find_socket_byname(net, sunaddr, addr_len, hash); 1238 if (!sk) 1239 return ERR_PTR(-ECONNREFUSED); 1240 1241 dentry = unix_sk(sk)->path.dentry; 1242 if (dentry) 1243 touch_atime(&unix_sk(sk)->path); 1244 1245 return sk; 1246 } 1247 1248 static struct sock *unix_find_other(struct net *net, 1249 struct sockaddr_un *sunaddr, 1250 int addr_len, int type, int flags) 1251 { 1252 struct sock *sk; 1253 1254 if (sunaddr->sun_path[0]) 1255 sk = unix_find_bsd(sunaddr, addr_len, type, flags); 1256 else 1257 sk = unix_find_abstract(net, sunaddr, addr_len, type); 1258 1259 return sk; 1260 } 1261 1262 static int unix_autobind(struct sock *sk) 1263 { 1264 struct unix_sock *u = unix_sk(sk); 1265 unsigned int new_hash, old_hash; 1266 struct net *net = sock_net(sk); 1267 struct unix_address *addr; 1268 u32 lastnum, ordernum; 1269 int err; 1270 1271 err = mutex_lock_interruptible(&u->bindlock); 1272 if (err) 1273 return err; 1274 1275 if (u->addr) 1276 goto out; 1277 1278 err = -ENOMEM; 1279 addr = kzalloc(sizeof(*addr) + 1280 offsetof(struct sockaddr_un, sun_path) + 16, GFP_KERNEL); 1281 if (!addr) 1282 goto out; 1283 1284 addr->len = offsetof(struct sockaddr_un, sun_path) + 6; 1285 addr->name->sun_family = AF_UNIX; 1286 refcount_set(&addr->refcnt, 1); 1287 1288 old_hash = sk->sk_hash; 1289 ordernum = get_random_u32(); 1290 lastnum = ordernum & 0xFFFFF; 1291 retry: 1292 ordernum = (ordernum + 1) & 0xFFFFF; 1293 sprintf(addr->name->sun_path + 1, "%05x", ordernum); 1294 1295 new_hash = unix_abstract_hash(addr->name, addr->len, sk->sk_type); 1296 unix_table_double_lock(net, old_hash, new_hash); 1297 1298 if (__unix_find_socket_byname(net, addr->name, addr->len, new_hash)) { 1299 unix_table_double_unlock(net, old_hash, new_hash); 1300 1301 /* __unix_find_socket_byname() may take long time if many names 1302 * are already in use. 1303 */ 1304 cond_resched(); 1305 1306 if (ordernum == lastnum) { 1307 /* Give up if all names seems to be in use. */ 1308 err = -ENOSPC; 1309 unix_release_addr(addr); 1310 goto out; 1311 } 1312 1313 goto retry; 1314 } 1315 1316 __unix_set_addr_hash(net, sk, addr, new_hash); 1317 unix_table_double_unlock(net, old_hash, new_hash); 1318 err = 0; 1319 1320 out: mutex_unlock(&u->bindlock); 1321 return err; 1322 } 1323 1324 static int unix_bind_bsd(struct sock *sk, struct sockaddr_un *sunaddr, 1325 int addr_len) 1326 { 1327 umode_t mode = S_IFSOCK | 1328 (SOCK_INODE(sk->sk_socket)->i_mode & ~current_umask()); 1329 struct unix_sock *u = unix_sk(sk); 1330 unsigned int new_hash, old_hash; 1331 struct net *net = sock_net(sk); 1332 struct mnt_idmap *idmap; 1333 struct unix_address *addr; 1334 struct dentry *dentry; 1335 struct path parent; 1336 int err; 1337 1338 addr_len = unix_mkname_bsd(sunaddr, addr_len); 1339 addr = unix_create_addr(sunaddr, addr_len); 1340 if (!addr) 1341 return -ENOMEM; 1342 1343 /* 1344 * Get the parent directory, calculate the hash for last 1345 * component. 1346 */ 1347 dentry = kern_path_create(AT_FDCWD, addr->name->sun_path, &parent, 0); 1348 if (IS_ERR(dentry)) { 1349 err = PTR_ERR(dentry); 1350 goto out; 1351 } 1352 1353 /* 1354 * All right, let's create it. 1355 */ 1356 idmap = mnt_idmap(parent.mnt); 1357 err = security_path_mknod(&parent, dentry, mode, 0); 1358 if (!err) 1359 err = vfs_mknod(idmap, d_inode(parent.dentry), dentry, mode, 0); 1360 if (err) 1361 goto out_path; 1362 err = mutex_lock_interruptible(&u->bindlock); 1363 if (err) 1364 goto out_unlink; 1365 if (u->addr) 1366 goto out_unlock; 1367 1368 old_hash = sk->sk_hash; 1369 new_hash = unix_bsd_hash(d_backing_inode(dentry)); 1370 unix_table_double_lock(net, old_hash, new_hash); 1371 u->path.mnt = mntget(parent.mnt); 1372 u->path.dentry = dget(dentry); 1373 __unix_set_addr_hash(net, sk, addr, new_hash); 1374 unix_table_double_unlock(net, old_hash, new_hash); 1375 unix_insert_bsd_socket(sk); 1376 mutex_unlock(&u->bindlock); 1377 done_path_create(&parent, dentry); 1378 return 0; 1379 1380 out_unlock: 1381 mutex_unlock(&u->bindlock); 1382 err = -EINVAL; 1383 out_unlink: 1384 /* failed after successful mknod? unlink what we'd created... */ 1385 vfs_unlink(idmap, d_inode(parent.dentry), dentry, NULL); 1386 out_path: 1387 done_path_create(&parent, dentry); 1388 out: 1389 unix_release_addr(addr); 1390 return err == -EEXIST ? -EADDRINUSE : err; 1391 } 1392 1393 static int unix_bind_abstract(struct sock *sk, struct sockaddr_un *sunaddr, 1394 int addr_len) 1395 { 1396 struct unix_sock *u = unix_sk(sk); 1397 unsigned int new_hash, old_hash; 1398 struct net *net = sock_net(sk); 1399 struct unix_address *addr; 1400 int err; 1401 1402 addr = unix_create_addr(sunaddr, addr_len); 1403 if (!addr) 1404 return -ENOMEM; 1405 1406 err = mutex_lock_interruptible(&u->bindlock); 1407 if (err) 1408 goto out; 1409 1410 if (u->addr) { 1411 err = -EINVAL; 1412 goto out_mutex; 1413 } 1414 1415 old_hash = sk->sk_hash; 1416 new_hash = unix_abstract_hash(addr->name, addr->len, sk->sk_type); 1417 unix_table_double_lock(net, old_hash, new_hash); 1418 1419 if (__unix_find_socket_byname(net, addr->name, addr->len, new_hash)) 1420 goto out_spin; 1421 1422 __unix_set_addr_hash(net, sk, addr, new_hash); 1423 unix_table_double_unlock(net, old_hash, new_hash); 1424 mutex_unlock(&u->bindlock); 1425 return 0; 1426 1427 out_spin: 1428 unix_table_double_unlock(net, old_hash, new_hash); 1429 err = -EADDRINUSE; 1430 out_mutex: 1431 mutex_unlock(&u->bindlock); 1432 out: 1433 unix_release_addr(addr); 1434 return err; 1435 } 1436 1437 static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len) 1438 { 1439 struct sockaddr_un *sunaddr = (struct sockaddr_un *)uaddr; 1440 struct sock *sk = sock->sk; 1441 int err; 1442 1443 if (addr_len == offsetof(struct sockaddr_un, sun_path) && 1444 sunaddr->sun_family == AF_UNIX) 1445 return unix_autobind(sk); 1446 1447 err = unix_validate_addr(sunaddr, addr_len); 1448 if (err) 1449 return err; 1450 1451 if (sunaddr->sun_path[0]) 1452 err = unix_bind_bsd(sk, sunaddr, addr_len); 1453 else 1454 err = unix_bind_abstract(sk, sunaddr, addr_len); 1455 1456 return err; 1457 } 1458 1459 static void unix_state_double_lock(struct sock *sk1, struct sock *sk2) 1460 { 1461 if (unlikely(sk1 == sk2) || !sk2) { 1462 unix_state_lock(sk1); 1463 return; 1464 } 1465 1466 if (sk1 > sk2) 1467 swap(sk1, sk2); 1468 1469 unix_state_lock(sk1); 1470 unix_state_lock(sk2); 1471 } 1472 1473 static void unix_state_double_unlock(struct sock *sk1, struct sock *sk2) 1474 { 1475 if (unlikely(sk1 == sk2) || !sk2) { 1476 unix_state_unlock(sk1); 1477 return; 1478 } 1479 unix_state_unlock(sk1); 1480 unix_state_unlock(sk2); 1481 } 1482 1483 static int unix_dgram_connect(struct socket *sock, struct sockaddr *addr, 1484 int alen, int flags) 1485 { 1486 struct sockaddr_un *sunaddr = (struct sockaddr_un *)addr; 1487 struct sock *sk = sock->sk; 1488 struct sock *other; 1489 int err; 1490 1491 err = -EINVAL; 1492 if (alen < offsetofend(struct sockaddr, sa_family)) 1493 goto out; 1494 1495 if (addr->sa_family != AF_UNSPEC) { 1496 err = unix_validate_addr(sunaddr, alen); 1497 if (err) 1498 goto out; 1499 1500 err = BPF_CGROUP_RUN_PROG_UNIX_CONNECT_LOCK(sk, addr, &alen); 1501 if (err) 1502 goto out; 1503 1504 if (unix_may_passcred(sk) && !READ_ONCE(unix_sk(sk)->addr)) { 1505 err = unix_autobind(sk); 1506 if (err) 1507 goto out; 1508 } 1509 1510 restart: 1511 other = unix_find_other(sock_net(sk), sunaddr, alen, sock->type, 0); 1512 if (IS_ERR(other)) { 1513 err = PTR_ERR(other); 1514 goto out; 1515 } 1516 1517 unix_state_double_lock(sk, other); 1518 1519 /* Apparently VFS overslept socket death. Retry. */ 1520 if (sock_flag(other, SOCK_DEAD)) { 1521 unix_state_double_unlock(sk, other); 1522 sock_put(other); 1523 goto restart; 1524 } 1525 1526 err = -EPERM; 1527 if (!unix_may_send(sk, other)) 1528 goto out_unlock; 1529 1530 err = security_unix_may_send(sk->sk_socket, other->sk_socket); 1531 if (err) 1532 goto out_unlock; 1533 1534 WRITE_ONCE(sk->sk_state, TCP_ESTABLISHED); 1535 WRITE_ONCE(other->sk_state, TCP_ESTABLISHED); 1536 } else { 1537 /* 1538 * 1003.1g breaking connected state with AF_UNSPEC 1539 */ 1540 other = NULL; 1541 unix_state_double_lock(sk, other); 1542 } 1543 1544 /* 1545 * If it was connected, reconnect. 1546 */ 1547 if (unix_peer(sk)) { 1548 struct sock *old_peer = unix_peer(sk); 1549 1550 unix_peer(sk) = other; 1551 if (!other) 1552 WRITE_ONCE(sk->sk_state, TCP_CLOSE); 1553 unix_dgram_peer_wake_disconnect_wakeup(sk, old_peer); 1554 1555 unix_state_double_unlock(sk, other); 1556 1557 if (other != old_peer) { 1558 unix_dgram_disconnected(sk, old_peer); 1559 1560 unix_state_lock(old_peer); 1561 if (!unix_peer(old_peer)) 1562 WRITE_ONCE(old_peer->sk_state, TCP_CLOSE); 1563 unix_state_unlock(old_peer); 1564 } 1565 1566 sock_put(old_peer); 1567 } else { 1568 unix_peer(sk) = other; 1569 unix_state_double_unlock(sk, other); 1570 } 1571 1572 return 0; 1573 1574 out_unlock: 1575 unix_state_double_unlock(sk, other); 1576 sock_put(other); 1577 out: 1578 return err; 1579 } 1580 1581 static long unix_wait_for_peer(struct sock *other, long timeo) 1582 { 1583 struct unix_sock *u = unix_sk(other); 1584 int sched; 1585 DEFINE_WAIT(wait); 1586 1587 prepare_to_wait_exclusive(&u->peer_wait, &wait, TASK_INTERRUPTIBLE); 1588 1589 sched = !sock_flag(other, SOCK_DEAD) && 1590 !(other->sk_shutdown & RCV_SHUTDOWN) && 1591 unix_recvq_full_lockless(other); 1592 1593 unix_state_unlock(other); 1594 1595 if (sched) 1596 timeo = schedule_timeout(timeo); 1597 1598 finish_wait(&u->peer_wait, &wait); 1599 return timeo; 1600 } 1601 1602 static int unix_stream_connect(struct socket *sock, struct sockaddr *uaddr, 1603 int addr_len, int flags) 1604 { 1605 struct sockaddr_un *sunaddr = (struct sockaddr_un *)uaddr; 1606 struct sock *sk = sock->sk, *newsk = NULL, *other = NULL; 1607 struct unix_sock *u = unix_sk(sk), *newu, *otheru; 1608 struct unix_peercred peercred = {}; 1609 struct net *net = sock_net(sk); 1610 struct sk_buff *skb = NULL; 1611 unsigned char state; 1612 long timeo; 1613 int err; 1614 1615 err = unix_validate_addr(sunaddr, addr_len); 1616 if (err) 1617 goto out; 1618 1619 err = BPF_CGROUP_RUN_PROG_UNIX_CONNECT_LOCK(sk, uaddr, &addr_len); 1620 if (err) 1621 goto out; 1622 1623 if (unix_may_passcred(sk) && !READ_ONCE(u->addr)) { 1624 err = unix_autobind(sk); 1625 if (err) 1626 goto out; 1627 } 1628 1629 timeo = sock_sndtimeo(sk, flags & O_NONBLOCK); 1630 1631 /* First of all allocate resources. 1632 * If we will make it after state is locked, 1633 * we will have to recheck all again in any case. 1634 */ 1635 1636 /* create new sock for complete connection */ 1637 newsk = unix_create1(net, NULL, 0, sock->type); 1638 if (IS_ERR(newsk)) { 1639 err = PTR_ERR(newsk); 1640 goto out; 1641 } 1642 1643 err = prepare_peercred(&peercred); 1644 if (err) 1645 goto out; 1646 1647 /* Allocate skb for sending to listening sock */ 1648 skb = sock_wmalloc(newsk, 1, 0, GFP_KERNEL); 1649 if (!skb) { 1650 err = -ENOMEM; 1651 goto out_free_sk; 1652 } 1653 1654 restart: 1655 /* Find listening sock. */ 1656 other = unix_find_other(net, sunaddr, addr_len, sk->sk_type, flags); 1657 if (IS_ERR(other)) { 1658 err = PTR_ERR(other); 1659 goto out_free_skb; 1660 } 1661 1662 unix_state_lock(other); 1663 1664 /* Apparently VFS overslept socket death. Retry. */ 1665 if (sock_flag(other, SOCK_DEAD)) { 1666 unix_state_unlock(other); 1667 sock_put(other); 1668 goto restart; 1669 } 1670 1671 if (other->sk_state != TCP_LISTEN || 1672 other->sk_shutdown & RCV_SHUTDOWN) { 1673 err = -ECONNREFUSED; 1674 goto out_unlock; 1675 } 1676 1677 if (unix_recvq_full_lockless(other)) { 1678 if (!timeo) { 1679 err = -EAGAIN; 1680 goto out_unlock; 1681 } 1682 1683 timeo = unix_wait_for_peer(other, timeo); 1684 sock_put(other); 1685 1686 err = sock_intr_errno(timeo); 1687 if (signal_pending(current)) 1688 goto out_free_skb; 1689 1690 goto restart; 1691 } 1692 1693 /* self connect and simultaneous connect are eliminated 1694 * by rejecting TCP_LISTEN socket to avoid deadlock. 1695 */ 1696 state = READ_ONCE(sk->sk_state); 1697 if (unlikely(state != TCP_CLOSE)) { 1698 err = state == TCP_ESTABLISHED ? -EISCONN : -EINVAL; 1699 goto out_unlock; 1700 } 1701 1702 unix_state_lock(sk); 1703 1704 if (unlikely(sk->sk_state != TCP_CLOSE)) { 1705 err = sk->sk_state == TCP_ESTABLISHED ? -EISCONN : -EINVAL; 1706 unix_state_unlock(sk); 1707 goto out_unlock; 1708 } 1709 1710 err = security_unix_stream_connect(sk, other, newsk); 1711 if (err) { 1712 unix_state_unlock(sk); 1713 goto out_unlock; 1714 } 1715 1716 /* The way is open! Fastly set all the necessary fields... */ 1717 1718 sock_hold(sk); 1719 unix_peer(newsk) = sk; 1720 newsk->sk_state = TCP_ESTABLISHED; 1721 newsk->sk_type = sk->sk_type; 1722 newsk->sk_scm_recv_flags = other->sk_scm_recv_flags; 1723 init_peercred(newsk, &peercred); 1724 1725 newu = unix_sk(newsk); 1726 newu->listener = other; 1727 RCU_INIT_POINTER(newsk->sk_wq, &newu->peer_wq); 1728 otheru = unix_sk(other); 1729 1730 /* copy address information from listening to new sock 1731 * 1732 * The contents of *(otheru->addr) and otheru->path 1733 * are seen fully set up here, since we have found 1734 * otheru in hash under its lock. Insertion into the 1735 * hash chain we'd found it in had been done in an 1736 * earlier critical area protected by the chain's lock, 1737 * the same one where we'd set *(otheru->addr) contents, 1738 * as well as otheru->path and otheru->addr itself. 1739 * 1740 * Using smp_store_release() here to set newu->addr 1741 * is enough to make those stores, as well as stores 1742 * to newu->path visible to anyone who gets newu->addr 1743 * by smp_load_acquire(). IOW, the same warranties 1744 * as for unix_sock instances bound in unix_bind() or 1745 * in unix_autobind(). 1746 */ 1747 if (otheru->path.dentry) { 1748 path_get(&otheru->path); 1749 newu->path = otheru->path; 1750 } 1751 refcount_inc(&otheru->addr->refcnt); 1752 smp_store_release(&newu->addr, otheru->addr); 1753 1754 /* Set credentials */ 1755 copy_peercred(sk, other); 1756 1757 sock->state = SS_CONNECTED; 1758 WRITE_ONCE(sk->sk_state, TCP_ESTABLISHED); 1759 sock_hold(newsk); 1760 1761 smp_mb__after_atomic(); /* sock_hold() does an atomic_inc() */ 1762 unix_peer(sk) = newsk; 1763 1764 unix_state_unlock(sk); 1765 1766 /* take ten and send info to listening sock */ 1767 spin_lock(&other->sk_receive_queue.lock); 1768 __skb_queue_tail(&other->sk_receive_queue, skb); 1769 spin_unlock(&other->sk_receive_queue.lock); 1770 unix_state_unlock(other); 1771 other->sk_data_ready(other); 1772 sock_put(other); 1773 return 0; 1774 1775 out_unlock: 1776 unix_state_unlock(other); 1777 sock_put(other); 1778 out_free_skb: 1779 consume_skb(skb); 1780 out_free_sk: 1781 unix_release_sock(newsk, 0); 1782 out: 1783 drop_peercred(&peercred); 1784 return err; 1785 } 1786 1787 static int unix_socketpair(struct socket *socka, struct socket *sockb) 1788 { 1789 struct unix_peercred ska_peercred = {}, skb_peercred = {}; 1790 struct sock *ska = socka->sk, *skb = sockb->sk; 1791 int err; 1792 1793 err = prepare_peercred(&ska_peercred); 1794 if (err) 1795 return err; 1796 1797 err = prepare_peercred(&skb_peercred); 1798 if (err) { 1799 drop_peercred(&ska_peercred); 1800 return err; 1801 } 1802 1803 /* Join our sockets back to back */ 1804 sock_hold(ska); 1805 sock_hold(skb); 1806 unix_peer(ska) = skb; 1807 unix_peer(skb) = ska; 1808 init_peercred(ska, &ska_peercred); 1809 init_peercred(skb, &skb_peercred); 1810 1811 ska->sk_state = TCP_ESTABLISHED; 1812 skb->sk_state = TCP_ESTABLISHED; 1813 socka->state = SS_CONNECTED; 1814 sockb->state = SS_CONNECTED; 1815 return 0; 1816 } 1817 1818 static int unix_accept(struct socket *sock, struct socket *newsock, 1819 struct proto_accept_arg *arg) 1820 { 1821 struct sock *sk = sock->sk; 1822 struct sk_buff *skb; 1823 struct sock *tsk; 1824 1825 arg->err = -EOPNOTSUPP; 1826 if (sock->type != SOCK_STREAM && sock->type != SOCK_SEQPACKET) 1827 goto out; 1828 1829 arg->err = -EINVAL; 1830 if (READ_ONCE(sk->sk_state) != TCP_LISTEN) 1831 goto out; 1832 1833 /* If socket state is TCP_LISTEN it cannot change (for now...), 1834 * so that no locks are necessary. 1835 */ 1836 1837 skb = skb_recv_datagram(sk, (arg->flags & O_NONBLOCK) ? MSG_DONTWAIT : 0, 1838 &arg->err); 1839 if (!skb) { 1840 /* This means receive shutdown. */ 1841 if (arg->err == 0) 1842 arg->err = -EINVAL; 1843 goto out; 1844 } 1845 1846 tsk = skb->sk; 1847 skb_free_datagram(sk, skb); 1848 wake_up_interruptible(&unix_sk(sk)->peer_wait); 1849 1850 /* attach accepted sock to socket */ 1851 unix_state_lock(tsk); 1852 unix_update_edges(unix_sk(tsk)); 1853 newsock->state = SS_CONNECTED; 1854 sock_graft(tsk, newsock); 1855 unix_state_unlock(tsk); 1856 return 0; 1857 1858 out: 1859 return arg->err; 1860 } 1861 1862 1863 static int unix_getname(struct socket *sock, struct sockaddr *uaddr, int peer) 1864 { 1865 struct sock *sk = sock->sk; 1866 struct unix_address *addr; 1867 DECLARE_SOCKADDR(struct sockaddr_un *, sunaddr, uaddr); 1868 int err = 0; 1869 1870 if (peer) { 1871 sk = unix_peer_get(sk); 1872 1873 err = -ENOTCONN; 1874 if (!sk) 1875 goto out; 1876 err = 0; 1877 } else { 1878 sock_hold(sk); 1879 } 1880 1881 addr = smp_load_acquire(&unix_sk(sk)->addr); 1882 if (!addr) { 1883 sunaddr->sun_family = AF_UNIX; 1884 sunaddr->sun_path[0] = 0; 1885 err = offsetof(struct sockaddr_un, sun_path); 1886 } else { 1887 err = addr->len; 1888 memcpy(sunaddr, addr->name, addr->len); 1889 1890 if (peer) 1891 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, &err, 1892 CGROUP_UNIX_GETPEERNAME); 1893 else 1894 BPF_CGROUP_RUN_SA_PROG(sk, uaddr, &err, 1895 CGROUP_UNIX_GETSOCKNAME); 1896 } 1897 sock_put(sk); 1898 out: 1899 return err; 1900 } 1901 1902 /* The "user->unix_inflight" variable is protected by the garbage 1903 * collection lock, and we just read it locklessly here. If you go 1904 * over the limit, there might be a tiny race in actually noticing 1905 * it across threads. Tough. 1906 */ 1907 static inline bool too_many_unix_fds(struct task_struct *p) 1908 { 1909 struct user_struct *user = current_user(); 1910 1911 if (unlikely(READ_ONCE(user->unix_inflight) > task_rlimit(p, RLIMIT_NOFILE))) 1912 return !capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN); 1913 return false; 1914 } 1915 1916 static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb) 1917 { 1918 if (too_many_unix_fds(current)) 1919 return -ETOOMANYREFS; 1920 1921 UNIXCB(skb).fp = scm->fp; 1922 scm->fp = NULL; 1923 1924 if (unix_prepare_fpl(UNIXCB(skb).fp)) 1925 return -ENOMEM; 1926 1927 return 0; 1928 } 1929 1930 static void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb) 1931 { 1932 scm->fp = UNIXCB(skb).fp; 1933 UNIXCB(skb).fp = NULL; 1934 1935 unix_destroy_fpl(scm->fp); 1936 } 1937 1938 static void unix_peek_fds(struct scm_cookie *scm, struct sk_buff *skb) 1939 { 1940 scm->fp = scm_fp_dup(UNIXCB(skb).fp); 1941 } 1942 1943 static void unix_destruct_scm(struct sk_buff *skb) 1944 { 1945 struct scm_cookie scm; 1946 1947 memset(&scm, 0, sizeof(scm)); 1948 scm.pid = UNIXCB(skb).pid; 1949 if (UNIXCB(skb).fp) 1950 unix_detach_fds(&scm, skb); 1951 1952 /* Alas, it calls VFS */ 1953 /* So fscking what? fput() had been SMP-safe since the last Summer */ 1954 scm_destroy(&scm); 1955 sock_wfree(skb); 1956 } 1957 1958 static int unix_scm_to_skb(struct scm_cookie *scm, struct sk_buff *skb, bool send_fds) 1959 { 1960 int err = 0; 1961 1962 UNIXCB(skb).pid = get_pid(scm->pid); 1963 UNIXCB(skb).uid = scm->creds.uid; 1964 UNIXCB(skb).gid = scm->creds.gid; 1965 UNIXCB(skb).fp = NULL; 1966 unix_get_secdata(scm, skb); 1967 if (scm->fp && send_fds) 1968 err = unix_attach_fds(scm, skb); 1969 1970 skb->destructor = unix_destruct_scm; 1971 return err; 1972 } 1973 1974 /* 1975 * Some apps rely on write() giving SCM_CREDENTIALS 1976 * We include credentials if source or destination socket 1977 * asserted SOCK_PASSCRED. 1978 */ 1979 static void unix_maybe_add_creds(struct sk_buff *skb, const struct sock *sk, 1980 const struct sock *other) 1981 { 1982 if (UNIXCB(skb).pid) 1983 return; 1984 1985 if (unix_may_passcred(sk) || unix_may_passcred(other) || 1986 !other->sk_socket) { 1987 UNIXCB(skb).pid = get_pid(task_tgid(current)); 1988 current_uid_gid(&UNIXCB(skb).uid, &UNIXCB(skb).gid); 1989 } 1990 } 1991 1992 static bool unix_skb_scm_eq(struct sk_buff *skb, 1993 struct scm_cookie *scm) 1994 { 1995 return UNIXCB(skb).pid == scm->pid && 1996 uid_eq(UNIXCB(skb).uid, scm->creds.uid) && 1997 gid_eq(UNIXCB(skb).gid, scm->creds.gid) && 1998 unix_secdata_eq(scm, skb); 1999 } 2000 2001 static void scm_stat_add(struct sock *sk, struct sk_buff *skb) 2002 { 2003 struct scm_fp_list *fp = UNIXCB(skb).fp; 2004 struct unix_sock *u = unix_sk(sk); 2005 2006 if (unlikely(fp && fp->count)) { 2007 atomic_add(fp->count, &u->scm_stat.nr_fds); 2008 unix_add_edges(fp, u); 2009 } 2010 } 2011 2012 static void scm_stat_del(struct sock *sk, struct sk_buff *skb) 2013 { 2014 struct scm_fp_list *fp = UNIXCB(skb).fp; 2015 struct unix_sock *u = unix_sk(sk); 2016 2017 if (unlikely(fp && fp->count)) { 2018 atomic_sub(fp->count, &u->scm_stat.nr_fds); 2019 unix_del_edges(fp); 2020 } 2021 } 2022 2023 /* 2024 * Send AF_UNIX data. 2025 */ 2026 2027 static int unix_dgram_sendmsg(struct socket *sock, struct msghdr *msg, 2028 size_t len) 2029 { 2030 struct sock *sk = sock->sk, *other = NULL; 2031 struct unix_sock *u = unix_sk(sk); 2032 struct scm_cookie scm; 2033 struct sk_buff *skb; 2034 int data_len = 0; 2035 int sk_locked; 2036 long timeo; 2037 int err; 2038 2039 err = scm_send(sock, msg, &scm, false); 2040 if (err < 0) 2041 return err; 2042 2043 wait_for_unix_gc(scm.fp); 2044 2045 if (msg->msg_flags & MSG_OOB) { 2046 err = -EOPNOTSUPP; 2047 goto out; 2048 } 2049 2050 if (msg->msg_namelen) { 2051 err = unix_validate_addr(msg->msg_name, msg->msg_namelen); 2052 if (err) 2053 goto out; 2054 2055 err = BPF_CGROUP_RUN_PROG_UNIX_SENDMSG_LOCK(sk, 2056 msg->msg_name, 2057 &msg->msg_namelen, 2058 NULL); 2059 if (err) 2060 goto out; 2061 } 2062 2063 if (unix_may_passcred(sk) && !READ_ONCE(u->addr)) { 2064 err = unix_autobind(sk); 2065 if (err) 2066 goto out; 2067 } 2068 2069 if (len > READ_ONCE(sk->sk_sndbuf) - 32) { 2070 err = -EMSGSIZE; 2071 goto out; 2072 } 2073 2074 if (len > SKB_MAX_ALLOC) { 2075 data_len = min_t(size_t, 2076 len - SKB_MAX_ALLOC, 2077 MAX_SKB_FRAGS * PAGE_SIZE); 2078 data_len = PAGE_ALIGN(data_len); 2079 2080 BUILD_BUG_ON(SKB_MAX_ALLOC < PAGE_SIZE); 2081 } 2082 2083 skb = sock_alloc_send_pskb(sk, len - data_len, data_len, 2084 msg->msg_flags & MSG_DONTWAIT, &err, 2085 PAGE_ALLOC_COSTLY_ORDER); 2086 if (!skb) 2087 goto out; 2088 2089 err = unix_scm_to_skb(&scm, skb, true); 2090 if (err < 0) 2091 goto out_free; 2092 2093 skb_put(skb, len - data_len); 2094 skb->data_len = data_len; 2095 skb->len = len; 2096 err = skb_copy_datagram_from_iter(skb, 0, &msg->msg_iter, len); 2097 if (err) 2098 goto out_free; 2099 2100 timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT); 2101 2102 if (msg->msg_namelen) { 2103 lookup: 2104 other = unix_find_other(sock_net(sk), msg->msg_name, 2105 msg->msg_namelen, sk->sk_type, 0); 2106 if (IS_ERR(other)) { 2107 err = PTR_ERR(other); 2108 goto out_free; 2109 } 2110 } else { 2111 other = unix_peer_get(sk); 2112 if (!other) { 2113 err = -ENOTCONN; 2114 goto out_free; 2115 } 2116 } 2117 2118 if (sk_filter(other, skb) < 0) { 2119 /* Toss the packet but do not return any error to the sender */ 2120 err = len; 2121 goto out_sock_put; 2122 } 2123 2124 restart: 2125 sk_locked = 0; 2126 unix_state_lock(other); 2127 restart_locked: 2128 2129 if (!unix_may_send(sk, other)) { 2130 err = -EPERM; 2131 goto out_unlock; 2132 } 2133 2134 if (unlikely(sock_flag(other, SOCK_DEAD))) { 2135 /* Check with 1003.1g - what should datagram error */ 2136 2137 unix_state_unlock(other); 2138 2139 if (sk->sk_type == SOCK_SEQPACKET) { 2140 /* We are here only when racing with unix_release_sock() 2141 * is clearing @other. Never change state to TCP_CLOSE 2142 * unlike SOCK_DGRAM wants. 2143 */ 2144 err = -EPIPE; 2145 goto out_sock_put; 2146 } 2147 2148 if (!sk_locked) 2149 unix_state_lock(sk); 2150 2151 if (unix_peer(sk) == other) { 2152 unix_peer(sk) = NULL; 2153 unix_dgram_peer_wake_disconnect_wakeup(sk, other); 2154 2155 WRITE_ONCE(sk->sk_state, TCP_CLOSE); 2156 unix_state_unlock(sk); 2157 2158 unix_dgram_disconnected(sk, other); 2159 sock_put(other); 2160 err = -ECONNREFUSED; 2161 goto out_sock_put; 2162 } 2163 2164 unix_state_unlock(sk); 2165 2166 if (!msg->msg_namelen) { 2167 err = -ECONNRESET; 2168 goto out_sock_put; 2169 } 2170 2171 sock_put(other); 2172 goto lookup; 2173 } 2174 2175 if (other->sk_shutdown & RCV_SHUTDOWN) { 2176 err = -EPIPE; 2177 goto out_unlock; 2178 } 2179 2180 if (UNIXCB(skb).fp && !other->sk_scm_rights) { 2181 err = -EPERM; 2182 goto out_unlock; 2183 } 2184 2185 if (sk->sk_type != SOCK_SEQPACKET) { 2186 err = security_unix_may_send(sk->sk_socket, other->sk_socket); 2187 if (err) 2188 goto out_unlock; 2189 } 2190 2191 /* other == sk && unix_peer(other) != sk if 2192 * - unix_peer(sk) == NULL, destination address bound to sk 2193 * - unix_peer(sk) == sk by time of get but disconnected before lock 2194 */ 2195 if (other != sk && 2196 unlikely(unix_peer(other) != sk && 2197 unix_recvq_full_lockless(other))) { 2198 if (timeo) { 2199 timeo = unix_wait_for_peer(other, timeo); 2200 2201 err = sock_intr_errno(timeo); 2202 if (signal_pending(current)) 2203 goto out_sock_put; 2204 2205 goto restart; 2206 } 2207 2208 if (!sk_locked) { 2209 unix_state_unlock(other); 2210 unix_state_double_lock(sk, other); 2211 } 2212 2213 if (unix_peer(sk) != other || 2214 unix_dgram_peer_wake_me(sk, other)) { 2215 err = -EAGAIN; 2216 sk_locked = 1; 2217 goto out_unlock; 2218 } 2219 2220 if (!sk_locked) { 2221 sk_locked = 1; 2222 goto restart_locked; 2223 } 2224 } 2225 2226 if (unlikely(sk_locked)) 2227 unix_state_unlock(sk); 2228 2229 if (sock_flag(other, SOCK_RCVTSTAMP)) 2230 __net_timestamp(skb); 2231 2232 unix_maybe_add_creds(skb, sk, other); 2233 scm_stat_add(other, skb); 2234 skb_queue_tail(&other->sk_receive_queue, skb); 2235 unix_state_unlock(other); 2236 other->sk_data_ready(other); 2237 sock_put(other); 2238 scm_destroy(&scm); 2239 return len; 2240 2241 out_unlock: 2242 if (sk_locked) 2243 unix_state_unlock(sk); 2244 unix_state_unlock(other); 2245 out_sock_put: 2246 sock_put(other); 2247 out_free: 2248 consume_skb(skb); 2249 out: 2250 scm_destroy(&scm); 2251 return err; 2252 } 2253 2254 /* We use paged skbs for stream sockets, and limit occupancy to 32768 2255 * bytes, and a minimum of a full page. 2256 */ 2257 #define UNIX_SKB_FRAGS_SZ (PAGE_SIZE << get_order(32768)) 2258 2259 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2260 static int queue_oob(struct sock *sk, struct msghdr *msg, struct sock *other, 2261 struct scm_cookie *scm, bool fds_sent) 2262 { 2263 struct unix_sock *ousk = unix_sk(other); 2264 struct sk_buff *skb; 2265 int err; 2266 2267 skb = sock_alloc_send_skb(sk, 1, msg->msg_flags & MSG_DONTWAIT, &err); 2268 2269 if (!skb) 2270 return err; 2271 2272 err = unix_scm_to_skb(scm, skb, !fds_sent); 2273 if (err < 0) 2274 goto out; 2275 2276 skb_put(skb, 1); 2277 err = skb_copy_datagram_from_iter(skb, 0, &msg->msg_iter, 1); 2278 2279 if (err) 2280 goto out; 2281 2282 unix_state_lock(other); 2283 2284 if (sock_flag(other, SOCK_DEAD) || 2285 (other->sk_shutdown & RCV_SHUTDOWN)) { 2286 err = -EPIPE; 2287 goto out_unlock; 2288 } 2289 2290 if (UNIXCB(skb).fp && !other->sk_scm_rights) { 2291 err = -EPERM; 2292 goto out_unlock; 2293 } 2294 2295 unix_maybe_add_creds(skb, sk, other); 2296 scm_stat_add(other, skb); 2297 2298 spin_lock(&other->sk_receive_queue.lock); 2299 WRITE_ONCE(ousk->oob_skb, skb); 2300 __skb_queue_tail(&other->sk_receive_queue, skb); 2301 spin_unlock(&other->sk_receive_queue.lock); 2302 2303 sk_send_sigurg(other); 2304 unix_state_unlock(other); 2305 other->sk_data_ready(other); 2306 2307 return 0; 2308 out_unlock: 2309 unix_state_unlock(other); 2310 out: 2311 consume_skb(skb); 2312 return err; 2313 } 2314 #endif 2315 2316 static int unix_stream_sendmsg(struct socket *sock, struct msghdr *msg, 2317 size_t len) 2318 { 2319 struct sock *sk = sock->sk; 2320 struct sk_buff *skb = NULL; 2321 struct sock *other = NULL; 2322 struct scm_cookie scm; 2323 bool fds_sent = false; 2324 int err, sent = 0; 2325 2326 err = scm_send(sock, msg, &scm, false); 2327 if (err < 0) 2328 return err; 2329 2330 wait_for_unix_gc(scm.fp); 2331 2332 if (msg->msg_flags & MSG_OOB) { 2333 err = -EOPNOTSUPP; 2334 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2335 if (len) 2336 len--; 2337 else 2338 #endif 2339 goto out_err; 2340 } 2341 2342 if (msg->msg_namelen) { 2343 err = READ_ONCE(sk->sk_state) == TCP_ESTABLISHED ? -EISCONN : -EOPNOTSUPP; 2344 goto out_err; 2345 } else { 2346 other = unix_peer(sk); 2347 if (!other) { 2348 err = -ENOTCONN; 2349 goto out_err; 2350 } 2351 } 2352 2353 if (READ_ONCE(sk->sk_shutdown) & SEND_SHUTDOWN) 2354 goto out_pipe; 2355 2356 while (sent < len) { 2357 int size = len - sent; 2358 int data_len; 2359 2360 if (unlikely(msg->msg_flags & MSG_SPLICE_PAGES)) { 2361 skb = sock_alloc_send_pskb(sk, 0, 0, 2362 msg->msg_flags & MSG_DONTWAIT, 2363 &err, 0); 2364 } else { 2365 /* Keep two messages in the pipe so it schedules better */ 2366 size = min_t(int, size, (READ_ONCE(sk->sk_sndbuf) >> 1) - 64); 2367 2368 /* allow fallback to order-0 allocations */ 2369 size = min_t(int, size, SKB_MAX_HEAD(0) + UNIX_SKB_FRAGS_SZ); 2370 2371 data_len = max_t(int, 0, size - SKB_MAX_HEAD(0)); 2372 2373 data_len = min_t(size_t, size, PAGE_ALIGN(data_len)); 2374 2375 skb = sock_alloc_send_pskb(sk, size - data_len, data_len, 2376 msg->msg_flags & MSG_DONTWAIT, &err, 2377 get_order(UNIX_SKB_FRAGS_SZ)); 2378 } 2379 if (!skb) 2380 goto out_err; 2381 2382 /* Only send the fds in the first buffer */ 2383 err = unix_scm_to_skb(&scm, skb, !fds_sent); 2384 if (err < 0) 2385 goto out_free; 2386 2387 fds_sent = true; 2388 2389 if (unlikely(msg->msg_flags & MSG_SPLICE_PAGES)) { 2390 skb->ip_summed = CHECKSUM_UNNECESSARY; 2391 err = skb_splice_from_iter(skb, &msg->msg_iter, size); 2392 if (err < 0) 2393 goto out_free; 2394 2395 size = err; 2396 refcount_add(size, &sk->sk_wmem_alloc); 2397 } else { 2398 skb_put(skb, size - data_len); 2399 skb->data_len = data_len; 2400 skb->len = size; 2401 err = skb_copy_datagram_from_iter(skb, 0, &msg->msg_iter, size); 2402 if (err) 2403 goto out_free; 2404 } 2405 2406 unix_state_lock(other); 2407 2408 if (sock_flag(other, SOCK_DEAD) || 2409 (other->sk_shutdown & RCV_SHUTDOWN)) 2410 goto out_pipe_unlock; 2411 2412 if (UNIXCB(skb).fp && !other->sk_scm_rights) { 2413 unix_state_unlock(other); 2414 err = -EPERM; 2415 goto out_free; 2416 } 2417 2418 unix_maybe_add_creds(skb, sk, other); 2419 scm_stat_add(other, skb); 2420 skb_queue_tail(&other->sk_receive_queue, skb); 2421 unix_state_unlock(other); 2422 other->sk_data_ready(other); 2423 sent += size; 2424 } 2425 2426 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2427 if (msg->msg_flags & MSG_OOB) { 2428 err = queue_oob(sk, msg, other, &scm, fds_sent); 2429 if (err) 2430 goto out_err; 2431 sent++; 2432 } 2433 #endif 2434 2435 scm_destroy(&scm); 2436 2437 return sent; 2438 2439 out_pipe_unlock: 2440 unix_state_unlock(other); 2441 out_pipe: 2442 if (!sent && !(msg->msg_flags & MSG_NOSIGNAL)) 2443 send_sig(SIGPIPE, current, 0); 2444 err = -EPIPE; 2445 out_free: 2446 consume_skb(skb); 2447 out_err: 2448 scm_destroy(&scm); 2449 return sent ? : err; 2450 } 2451 2452 static int unix_seqpacket_sendmsg(struct socket *sock, struct msghdr *msg, 2453 size_t len) 2454 { 2455 int err; 2456 struct sock *sk = sock->sk; 2457 2458 err = sock_error(sk); 2459 if (err) 2460 return err; 2461 2462 if (READ_ONCE(sk->sk_state) != TCP_ESTABLISHED) 2463 return -ENOTCONN; 2464 2465 if (msg->msg_namelen) 2466 msg->msg_namelen = 0; 2467 2468 return unix_dgram_sendmsg(sock, msg, len); 2469 } 2470 2471 static int unix_seqpacket_recvmsg(struct socket *sock, struct msghdr *msg, 2472 size_t size, int flags) 2473 { 2474 struct sock *sk = sock->sk; 2475 2476 if (READ_ONCE(sk->sk_state) != TCP_ESTABLISHED) 2477 return -ENOTCONN; 2478 2479 return unix_dgram_recvmsg(sock, msg, size, flags); 2480 } 2481 2482 static void unix_copy_addr(struct msghdr *msg, struct sock *sk) 2483 { 2484 struct unix_address *addr = smp_load_acquire(&unix_sk(sk)->addr); 2485 2486 if (addr) { 2487 msg->msg_namelen = addr->len; 2488 memcpy(msg->msg_name, addr->name, addr->len); 2489 } 2490 } 2491 2492 int __unix_dgram_recvmsg(struct sock *sk, struct msghdr *msg, size_t size, 2493 int flags) 2494 { 2495 struct scm_cookie scm; 2496 struct socket *sock = sk->sk_socket; 2497 struct unix_sock *u = unix_sk(sk); 2498 struct sk_buff *skb, *last; 2499 long timeo; 2500 int skip; 2501 int err; 2502 2503 err = -EOPNOTSUPP; 2504 if (flags&MSG_OOB) 2505 goto out; 2506 2507 timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); 2508 2509 do { 2510 mutex_lock(&u->iolock); 2511 2512 skip = sk_peek_offset(sk, flags); 2513 skb = __skb_try_recv_datagram(sk, &sk->sk_receive_queue, flags, 2514 &skip, &err, &last); 2515 if (skb) { 2516 if (!(flags & MSG_PEEK)) 2517 scm_stat_del(sk, skb); 2518 break; 2519 } 2520 2521 mutex_unlock(&u->iolock); 2522 2523 if (err != -EAGAIN) 2524 break; 2525 } while (timeo && 2526 !__skb_wait_for_more_packets(sk, &sk->sk_receive_queue, 2527 &err, &timeo, last)); 2528 2529 if (!skb) { /* implies iolock unlocked */ 2530 unix_state_lock(sk); 2531 /* Signal EOF on disconnected non-blocking SEQPACKET socket. */ 2532 if (sk->sk_type == SOCK_SEQPACKET && err == -EAGAIN && 2533 (sk->sk_shutdown & RCV_SHUTDOWN)) 2534 err = 0; 2535 unix_state_unlock(sk); 2536 goto out; 2537 } 2538 2539 if (wq_has_sleeper(&u->peer_wait)) 2540 wake_up_interruptible_sync_poll(&u->peer_wait, 2541 EPOLLOUT | EPOLLWRNORM | 2542 EPOLLWRBAND); 2543 2544 if (msg->msg_name) { 2545 unix_copy_addr(msg, skb->sk); 2546 2547 BPF_CGROUP_RUN_PROG_UNIX_RECVMSG_LOCK(sk, 2548 msg->msg_name, 2549 &msg->msg_namelen); 2550 } 2551 2552 if (size > skb->len - skip) 2553 size = skb->len - skip; 2554 else if (size < skb->len - skip) 2555 msg->msg_flags |= MSG_TRUNC; 2556 2557 err = skb_copy_datagram_msg(skb, skip, msg, size); 2558 if (err) 2559 goto out_free; 2560 2561 if (sock_flag(sk, SOCK_RCVTSTAMP)) 2562 __sock_recv_timestamp(msg, sk, skb); 2563 2564 memset(&scm, 0, sizeof(scm)); 2565 2566 scm_set_cred(&scm, UNIXCB(skb).pid, UNIXCB(skb).uid, UNIXCB(skb).gid); 2567 unix_set_secdata(&scm, skb); 2568 2569 if (!(flags & MSG_PEEK)) { 2570 if (UNIXCB(skb).fp) 2571 unix_detach_fds(&scm, skb); 2572 2573 sk_peek_offset_bwd(sk, skb->len); 2574 } else { 2575 /* It is questionable: on PEEK we could: 2576 - do not return fds - good, but too simple 8) 2577 - return fds, and do not return them on read (old strategy, 2578 apparently wrong) 2579 - clone fds (I chose it for now, it is the most universal 2580 solution) 2581 2582 POSIX 1003.1g does not actually define this clearly 2583 at all. POSIX 1003.1g doesn't define a lot of things 2584 clearly however! 2585 2586 */ 2587 2588 sk_peek_offset_fwd(sk, size); 2589 2590 if (UNIXCB(skb).fp) 2591 unix_peek_fds(&scm, skb); 2592 } 2593 err = (flags & MSG_TRUNC) ? skb->len - skip : size; 2594 2595 scm_recv_unix(sock, msg, &scm, flags); 2596 2597 out_free: 2598 skb_free_datagram(sk, skb); 2599 mutex_unlock(&u->iolock); 2600 out: 2601 return err; 2602 } 2603 2604 static int unix_dgram_recvmsg(struct socket *sock, struct msghdr *msg, size_t size, 2605 int flags) 2606 { 2607 struct sock *sk = sock->sk; 2608 2609 #ifdef CONFIG_BPF_SYSCALL 2610 const struct proto *prot = READ_ONCE(sk->sk_prot); 2611 2612 if (prot != &unix_dgram_proto) 2613 return prot->recvmsg(sk, msg, size, flags, NULL); 2614 #endif 2615 return __unix_dgram_recvmsg(sk, msg, size, flags); 2616 } 2617 2618 static int unix_read_skb(struct sock *sk, skb_read_actor_t recv_actor) 2619 { 2620 struct unix_sock *u = unix_sk(sk); 2621 struct sk_buff *skb; 2622 int err; 2623 2624 mutex_lock(&u->iolock); 2625 skb = skb_recv_datagram(sk, MSG_DONTWAIT, &err); 2626 mutex_unlock(&u->iolock); 2627 if (!skb) 2628 return err; 2629 2630 return recv_actor(sk, skb); 2631 } 2632 2633 /* 2634 * Sleep until more data has arrived. But check for races.. 2635 */ 2636 static long unix_stream_data_wait(struct sock *sk, long timeo, 2637 struct sk_buff *last, unsigned int last_len, 2638 bool freezable) 2639 { 2640 unsigned int state = TASK_INTERRUPTIBLE | freezable * TASK_FREEZABLE; 2641 struct sk_buff *tail; 2642 DEFINE_WAIT(wait); 2643 2644 unix_state_lock(sk); 2645 2646 for (;;) { 2647 prepare_to_wait(sk_sleep(sk), &wait, state); 2648 2649 tail = skb_peek_tail(&sk->sk_receive_queue); 2650 if (tail != last || 2651 (tail && tail->len != last_len) || 2652 sk->sk_err || 2653 (sk->sk_shutdown & RCV_SHUTDOWN) || 2654 signal_pending(current) || 2655 !timeo) 2656 break; 2657 2658 sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk); 2659 unix_state_unlock(sk); 2660 timeo = schedule_timeout(timeo); 2661 unix_state_lock(sk); 2662 2663 if (sock_flag(sk, SOCK_DEAD)) 2664 break; 2665 2666 sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk); 2667 } 2668 2669 finish_wait(sk_sleep(sk), &wait); 2670 unix_state_unlock(sk); 2671 return timeo; 2672 } 2673 2674 struct unix_stream_read_state { 2675 int (*recv_actor)(struct sk_buff *, int, int, 2676 struct unix_stream_read_state *); 2677 struct socket *socket; 2678 struct msghdr *msg; 2679 struct pipe_inode_info *pipe; 2680 size_t size; 2681 int flags; 2682 unsigned int splice_flags; 2683 }; 2684 2685 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2686 static int unix_stream_recv_urg(struct unix_stream_read_state *state) 2687 { 2688 struct sk_buff *oob_skb, *read_skb = NULL; 2689 struct socket *sock = state->socket; 2690 struct sock *sk = sock->sk; 2691 struct unix_sock *u = unix_sk(sk); 2692 int chunk = 1; 2693 2694 mutex_lock(&u->iolock); 2695 unix_state_lock(sk); 2696 spin_lock(&sk->sk_receive_queue.lock); 2697 2698 if (sock_flag(sk, SOCK_URGINLINE) || !u->oob_skb) { 2699 spin_unlock(&sk->sk_receive_queue.lock); 2700 unix_state_unlock(sk); 2701 mutex_unlock(&u->iolock); 2702 return -EINVAL; 2703 } 2704 2705 oob_skb = u->oob_skb; 2706 2707 if (!(state->flags & MSG_PEEK)) { 2708 WRITE_ONCE(u->oob_skb, NULL); 2709 2710 if (oob_skb->prev != (struct sk_buff *)&sk->sk_receive_queue && 2711 !unix_skb_len(oob_skb->prev)) { 2712 read_skb = oob_skb->prev; 2713 __skb_unlink(read_skb, &sk->sk_receive_queue); 2714 } 2715 } 2716 2717 spin_unlock(&sk->sk_receive_queue.lock); 2718 unix_state_unlock(sk); 2719 2720 chunk = state->recv_actor(oob_skb, 0, chunk, state); 2721 2722 if (!(state->flags & MSG_PEEK)) 2723 UNIXCB(oob_skb).consumed += 1; 2724 2725 mutex_unlock(&u->iolock); 2726 2727 consume_skb(read_skb); 2728 2729 if (chunk < 0) 2730 return -EFAULT; 2731 2732 state->msg->msg_flags |= MSG_OOB; 2733 return 1; 2734 } 2735 2736 static struct sk_buff *manage_oob(struct sk_buff *skb, struct sock *sk, 2737 int flags, int copied) 2738 { 2739 struct sk_buff *read_skb = NULL, *unread_skb = NULL; 2740 struct unix_sock *u = unix_sk(sk); 2741 2742 if (likely(unix_skb_len(skb) && skb != READ_ONCE(u->oob_skb))) 2743 return skb; 2744 2745 spin_lock(&sk->sk_receive_queue.lock); 2746 2747 if (!unix_skb_len(skb)) { 2748 if (copied && (!u->oob_skb || skb == u->oob_skb)) { 2749 skb = NULL; 2750 } else if (flags & MSG_PEEK) { 2751 skb = skb_peek_next(skb, &sk->sk_receive_queue); 2752 } else { 2753 read_skb = skb; 2754 skb = skb_peek_next(skb, &sk->sk_receive_queue); 2755 __skb_unlink(read_skb, &sk->sk_receive_queue); 2756 } 2757 2758 if (!skb) 2759 goto unlock; 2760 } 2761 2762 if (skb != u->oob_skb) 2763 goto unlock; 2764 2765 if (copied) { 2766 skb = NULL; 2767 } else if (!(flags & MSG_PEEK)) { 2768 WRITE_ONCE(u->oob_skb, NULL); 2769 2770 if (!sock_flag(sk, SOCK_URGINLINE)) { 2771 __skb_unlink(skb, &sk->sk_receive_queue); 2772 unread_skb = skb; 2773 skb = skb_peek(&sk->sk_receive_queue); 2774 } 2775 } else if (!sock_flag(sk, SOCK_URGINLINE)) { 2776 skb = skb_peek_next(skb, &sk->sk_receive_queue); 2777 } 2778 2779 unlock: 2780 spin_unlock(&sk->sk_receive_queue.lock); 2781 2782 consume_skb(read_skb); 2783 kfree_skb_reason(unread_skb, SKB_DROP_REASON_UNIX_SKIP_OOB); 2784 2785 return skb; 2786 } 2787 #endif 2788 2789 static int unix_stream_read_skb(struct sock *sk, skb_read_actor_t recv_actor) 2790 { 2791 struct unix_sock *u = unix_sk(sk); 2792 struct sk_buff *skb; 2793 int err; 2794 2795 if (unlikely(READ_ONCE(sk->sk_state) != TCP_ESTABLISHED)) 2796 return -ENOTCONN; 2797 2798 mutex_lock(&u->iolock); 2799 skb = skb_recv_datagram(sk, MSG_DONTWAIT, &err); 2800 mutex_unlock(&u->iolock); 2801 if (!skb) 2802 return err; 2803 2804 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2805 if (unlikely(skb == READ_ONCE(u->oob_skb))) { 2806 bool drop = false; 2807 2808 unix_state_lock(sk); 2809 2810 if (sock_flag(sk, SOCK_DEAD)) { 2811 unix_state_unlock(sk); 2812 kfree_skb_reason(skb, SKB_DROP_REASON_SOCKET_CLOSE); 2813 return -ECONNRESET; 2814 } 2815 2816 spin_lock(&sk->sk_receive_queue.lock); 2817 if (likely(skb == u->oob_skb)) { 2818 WRITE_ONCE(u->oob_skb, NULL); 2819 drop = true; 2820 } 2821 spin_unlock(&sk->sk_receive_queue.lock); 2822 2823 unix_state_unlock(sk); 2824 2825 if (drop) { 2826 kfree_skb_reason(skb, SKB_DROP_REASON_UNIX_SKIP_OOB); 2827 return -EAGAIN; 2828 } 2829 } 2830 #endif 2831 2832 return recv_actor(sk, skb); 2833 } 2834 2835 static int unix_stream_read_generic(struct unix_stream_read_state *state, 2836 bool freezable) 2837 { 2838 struct scm_cookie scm; 2839 struct socket *sock = state->socket; 2840 struct sock *sk = sock->sk; 2841 struct unix_sock *u = unix_sk(sk); 2842 int copied = 0; 2843 int flags = state->flags; 2844 int noblock = flags & MSG_DONTWAIT; 2845 bool check_creds = false; 2846 int target; 2847 int err = 0; 2848 long timeo; 2849 int skip; 2850 size_t size = state->size; 2851 unsigned int last_len; 2852 2853 if (unlikely(READ_ONCE(sk->sk_state) != TCP_ESTABLISHED)) { 2854 err = -EINVAL; 2855 goto out; 2856 } 2857 2858 if (unlikely(flags & MSG_OOB)) { 2859 err = -EOPNOTSUPP; 2860 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2861 err = unix_stream_recv_urg(state); 2862 #endif 2863 goto out; 2864 } 2865 2866 target = sock_rcvlowat(sk, flags & MSG_WAITALL, size); 2867 timeo = sock_rcvtimeo(sk, noblock); 2868 2869 memset(&scm, 0, sizeof(scm)); 2870 2871 /* Lock the socket to prevent queue disordering 2872 * while sleeps in memcpy_tomsg 2873 */ 2874 mutex_lock(&u->iolock); 2875 2876 skip = max(sk_peek_offset(sk, flags), 0); 2877 2878 do { 2879 struct sk_buff *skb, *last; 2880 int chunk; 2881 2882 redo: 2883 unix_state_lock(sk); 2884 if (sock_flag(sk, SOCK_DEAD)) { 2885 err = -ECONNRESET; 2886 goto unlock; 2887 } 2888 last = skb = skb_peek(&sk->sk_receive_queue); 2889 last_len = last ? last->len : 0; 2890 2891 again: 2892 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 2893 if (skb) { 2894 skb = manage_oob(skb, sk, flags, copied); 2895 if (!skb && copied) { 2896 unix_state_unlock(sk); 2897 break; 2898 } 2899 } 2900 #endif 2901 if (skb == NULL) { 2902 if (copied >= target) 2903 goto unlock; 2904 2905 /* 2906 * POSIX 1003.1g mandates this order. 2907 */ 2908 2909 err = sock_error(sk); 2910 if (err) 2911 goto unlock; 2912 if (sk->sk_shutdown & RCV_SHUTDOWN) 2913 goto unlock; 2914 2915 unix_state_unlock(sk); 2916 if (!timeo) { 2917 err = -EAGAIN; 2918 break; 2919 } 2920 2921 mutex_unlock(&u->iolock); 2922 2923 timeo = unix_stream_data_wait(sk, timeo, last, 2924 last_len, freezable); 2925 2926 if (signal_pending(current)) { 2927 err = sock_intr_errno(timeo); 2928 scm_destroy(&scm); 2929 goto out; 2930 } 2931 2932 mutex_lock(&u->iolock); 2933 goto redo; 2934 unlock: 2935 unix_state_unlock(sk); 2936 break; 2937 } 2938 2939 while (skip >= unix_skb_len(skb)) { 2940 skip -= unix_skb_len(skb); 2941 last = skb; 2942 last_len = skb->len; 2943 skb = skb_peek_next(skb, &sk->sk_receive_queue); 2944 if (!skb) 2945 goto again; 2946 } 2947 2948 unix_state_unlock(sk); 2949 2950 if (check_creds) { 2951 /* Never glue messages from different writers */ 2952 if (!unix_skb_scm_eq(skb, &scm)) 2953 break; 2954 } else if (unix_may_passcred(sk)) { 2955 /* Copy credentials */ 2956 scm_set_cred(&scm, UNIXCB(skb).pid, UNIXCB(skb).uid, UNIXCB(skb).gid); 2957 unix_set_secdata(&scm, skb); 2958 check_creds = true; 2959 } 2960 2961 /* Copy address just once */ 2962 if (state->msg && state->msg->msg_name) { 2963 DECLARE_SOCKADDR(struct sockaddr_un *, sunaddr, 2964 state->msg->msg_name); 2965 unix_copy_addr(state->msg, skb->sk); 2966 2967 BPF_CGROUP_RUN_PROG_UNIX_RECVMSG_LOCK(sk, 2968 state->msg->msg_name, 2969 &state->msg->msg_namelen); 2970 2971 sunaddr = NULL; 2972 } 2973 2974 chunk = min_t(unsigned int, unix_skb_len(skb) - skip, size); 2975 chunk = state->recv_actor(skb, skip, chunk, state); 2976 if (chunk < 0) { 2977 if (copied == 0) 2978 copied = -EFAULT; 2979 break; 2980 } 2981 copied += chunk; 2982 size -= chunk; 2983 2984 /* Mark read part of skb as used */ 2985 if (!(flags & MSG_PEEK)) { 2986 UNIXCB(skb).consumed += chunk; 2987 2988 sk_peek_offset_bwd(sk, chunk); 2989 2990 if (UNIXCB(skb).fp) { 2991 scm_stat_del(sk, skb); 2992 unix_detach_fds(&scm, skb); 2993 } 2994 2995 if (unix_skb_len(skb)) 2996 break; 2997 2998 skb_unlink(skb, &sk->sk_receive_queue); 2999 consume_skb(skb); 3000 3001 if (scm.fp) 3002 break; 3003 } else { 3004 /* It is questionable, see note in unix_dgram_recvmsg. 3005 */ 3006 if (UNIXCB(skb).fp) 3007 unix_peek_fds(&scm, skb); 3008 3009 sk_peek_offset_fwd(sk, chunk); 3010 3011 if (UNIXCB(skb).fp) 3012 break; 3013 3014 skip = 0; 3015 last = skb; 3016 last_len = skb->len; 3017 unix_state_lock(sk); 3018 skb = skb_peek_next(skb, &sk->sk_receive_queue); 3019 if (skb) 3020 goto again; 3021 unix_state_unlock(sk); 3022 break; 3023 } 3024 } while (size); 3025 3026 mutex_unlock(&u->iolock); 3027 if (state->msg) 3028 scm_recv_unix(sock, state->msg, &scm, flags); 3029 else 3030 scm_destroy(&scm); 3031 out: 3032 return copied ? : err; 3033 } 3034 3035 static int unix_stream_read_actor(struct sk_buff *skb, 3036 int skip, int chunk, 3037 struct unix_stream_read_state *state) 3038 { 3039 int ret; 3040 3041 ret = skb_copy_datagram_msg(skb, UNIXCB(skb).consumed + skip, 3042 state->msg, chunk); 3043 return ret ?: chunk; 3044 } 3045 3046 int __unix_stream_recvmsg(struct sock *sk, struct msghdr *msg, 3047 size_t size, int flags) 3048 { 3049 struct unix_stream_read_state state = { 3050 .recv_actor = unix_stream_read_actor, 3051 .socket = sk->sk_socket, 3052 .msg = msg, 3053 .size = size, 3054 .flags = flags 3055 }; 3056 3057 return unix_stream_read_generic(&state, true); 3058 } 3059 3060 static int unix_stream_recvmsg(struct socket *sock, struct msghdr *msg, 3061 size_t size, int flags) 3062 { 3063 struct unix_stream_read_state state = { 3064 .recv_actor = unix_stream_read_actor, 3065 .socket = sock, 3066 .msg = msg, 3067 .size = size, 3068 .flags = flags 3069 }; 3070 3071 #ifdef CONFIG_BPF_SYSCALL 3072 struct sock *sk = sock->sk; 3073 const struct proto *prot = READ_ONCE(sk->sk_prot); 3074 3075 if (prot != &unix_stream_proto) 3076 return prot->recvmsg(sk, msg, size, flags, NULL); 3077 #endif 3078 return unix_stream_read_generic(&state, true); 3079 } 3080 3081 static int unix_stream_splice_actor(struct sk_buff *skb, 3082 int skip, int chunk, 3083 struct unix_stream_read_state *state) 3084 { 3085 return skb_splice_bits(skb, state->socket->sk, 3086 UNIXCB(skb).consumed + skip, 3087 state->pipe, chunk, state->splice_flags); 3088 } 3089 3090 static ssize_t unix_stream_splice_read(struct socket *sock, loff_t *ppos, 3091 struct pipe_inode_info *pipe, 3092 size_t size, unsigned int flags) 3093 { 3094 struct unix_stream_read_state state = { 3095 .recv_actor = unix_stream_splice_actor, 3096 .socket = sock, 3097 .pipe = pipe, 3098 .size = size, 3099 .splice_flags = flags, 3100 }; 3101 3102 if (unlikely(*ppos)) 3103 return -ESPIPE; 3104 3105 if (sock->file->f_flags & O_NONBLOCK || 3106 flags & SPLICE_F_NONBLOCK) 3107 state.flags = MSG_DONTWAIT; 3108 3109 return unix_stream_read_generic(&state, false); 3110 } 3111 3112 static int unix_shutdown(struct socket *sock, int mode) 3113 { 3114 struct sock *sk = sock->sk; 3115 struct sock *other; 3116 3117 if (mode < SHUT_RD || mode > SHUT_RDWR) 3118 return -EINVAL; 3119 /* This maps: 3120 * SHUT_RD (0) -> RCV_SHUTDOWN (1) 3121 * SHUT_WR (1) -> SEND_SHUTDOWN (2) 3122 * SHUT_RDWR (2) -> SHUTDOWN_MASK (3) 3123 */ 3124 ++mode; 3125 3126 unix_state_lock(sk); 3127 WRITE_ONCE(sk->sk_shutdown, sk->sk_shutdown | mode); 3128 other = unix_peer(sk); 3129 if (other) 3130 sock_hold(other); 3131 unix_state_unlock(sk); 3132 sk->sk_state_change(sk); 3133 3134 if (other && 3135 (sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET)) { 3136 3137 int peer_mode = 0; 3138 const struct proto *prot = READ_ONCE(other->sk_prot); 3139 3140 if (prot->unhash) 3141 prot->unhash(other); 3142 if (mode&RCV_SHUTDOWN) 3143 peer_mode |= SEND_SHUTDOWN; 3144 if (mode&SEND_SHUTDOWN) 3145 peer_mode |= RCV_SHUTDOWN; 3146 unix_state_lock(other); 3147 WRITE_ONCE(other->sk_shutdown, other->sk_shutdown | peer_mode); 3148 unix_state_unlock(other); 3149 other->sk_state_change(other); 3150 if (peer_mode == SHUTDOWN_MASK) 3151 sk_wake_async(other, SOCK_WAKE_WAITD, POLL_HUP); 3152 else if (peer_mode & RCV_SHUTDOWN) 3153 sk_wake_async(other, SOCK_WAKE_WAITD, POLL_IN); 3154 } 3155 if (other) 3156 sock_put(other); 3157 3158 return 0; 3159 } 3160 3161 long unix_inq_len(struct sock *sk) 3162 { 3163 struct sk_buff *skb; 3164 long amount = 0; 3165 3166 if (READ_ONCE(sk->sk_state) == TCP_LISTEN) 3167 return -EINVAL; 3168 3169 spin_lock(&sk->sk_receive_queue.lock); 3170 if (sk->sk_type == SOCK_STREAM || 3171 sk->sk_type == SOCK_SEQPACKET) { 3172 skb_queue_walk(&sk->sk_receive_queue, skb) 3173 amount += unix_skb_len(skb); 3174 } else { 3175 skb = skb_peek(&sk->sk_receive_queue); 3176 if (skb) 3177 amount = skb->len; 3178 } 3179 spin_unlock(&sk->sk_receive_queue.lock); 3180 3181 return amount; 3182 } 3183 EXPORT_SYMBOL_GPL(unix_inq_len); 3184 3185 long unix_outq_len(struct sock *sk) 3186 { 3187 return sk_wmem_alloc_get(sk); 3188 } 3189 EXPORT_SYMBOL_GPL(unix_outq_len); 3190 3191 static int unix_open_file(struct sock *sk) 3192 { 3193 struct path path; 3194 struct file *f; 3195 int fd; 3196 3197 if (!ns_capable(sock_net(sk)->user_ns, CAP_NET_ADMIN)) 3198 return -EPERM; 3199 3200 if (!smp_load_acquire(&unix_sk(sk)->addr)) 3201 return -ENOENT; 3202 3203 path = unix_sk(sk)->path; 3204 if (!path.dentry) 3205 return -ENOENT; 3206 3207 path_get(&path); 3208 3209 fd = get_unused_fd_flags(O_CLOEXEC); 3210 if (fd < 0) 3211 goto out; 3212 3213 f = dentry_open(&path, O_PATH, current_cred()); 3214 if (IS_ERR(f)) { 3215 put_unused_fd(fd); 3216 fd = PTR_ERR(f); 3217 goto out; 3218 } 3219 3220 fd_install(fd, f); 3221 out: 3222 path_put(&path); 3223 3224 return fd; 3225 } 3226 3227 static int unix_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) 3228 { 3229 struct sock *sk = sock->sk; 3230 long amount = 0; 3231 int err; 3232 3233 switch (cmd) { 3234 case SIOCOUTQ: 3235 amount = unix_outq_len(sk); 3236 err = put_user(amount, (int __user *)arg); 3237 break; 3238 case SIOCINQ: 3239 amount = unix_inq_len(sk); 3240 if (amount < 0) 3241 err = amount; 3242 else 3243 err = put_user(amount, (int __user *)arg); 3244 break; 3245 case SIOCUNIXFILE: 3246 err = unix_open_file(sk); 3247 break; 3248 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 3249 case SIOCATMARK: 3250 { 3251 struct unix_sock *u = unix_sk(sk); 3252 struct sk_buff *skb; 3253 int answ = 0; 3254 3255 mutex_lock(&u->iolock); 3256 3257 skb = skb_peek(&sk->sk_receive_queue); 3258 if (skb) { 3259 struct sk_buff *oob_skb = READ_ONCE(u->oob_skb); 3260 struct sk_buff *next_skb; 3261 3262 next_skb = skb_peek_next(skb, &sk->sk_receive_queue); 3263 3264 if (skb == oob_skb || 3265 (!unix_skb_len(skb) && 3266 (!oob_skb || next_skb == oob_skb))) 3267 answ = 1; 3268 } 3269 3270 mutex_unlock(&u->iolock); 3271 3272 err = put_user(answ, (int __user *)arg); 3273 } 3274 break; 3275 #endif 3276 default: 3277 err = -ENOIOCTLCMD; 3278 break; 3279 } 3280 return err; 3281 } 3282 3283 #ifdef CONFIG_COMPAT 3284 static int unix_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg) 3285 { 3286 return unix_ioctl(sock, cmd, (unsigned long)compat_ptr(arg)); 3287 } 3288 #endif 3289 3290 static __poll_t unix_poll(struct file *file, struct socket *sock, poll_table *wait) 3291 { 3292 struct sock *sk = sock->sk; 3293 unsigned char state; 3294 __poll_t mask; 3295 u8 shutdown; 3296 3297 sock_poll_wait(file, sock, wait); 3298 mask = 0; 3299 shutdown = READ_ONCE(sk->sk_shutdown); 3300 state = READ_ONCE(sk->sk_state); 3301 3302 /* exceptional events? */ 3303 if (READ_ONCE(sk->sk_err)) 3304 mask |= EPOLLERR; 3305 if (shutdown == SHUTDOWN_MASK) 3306 mask |= EPOLLHUP; 3307 if (shutdown & RCV_SHUTDOWN) 3308 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM; 3309 3310 /* readable? */ 3311 if (!skb_queue_empty_lockless(&sk->sk_receive_queue)) 3312 mask |= EPOLLIN | EPOLLRDNORM; 3313 if (sk_is_readable(sk)) 3314 mask |= EPOLLIN | EPOLLRDNORM; 3315 #if IS_ENABLED(CONFIG_AF_UNIX_OOB) 3316 if (READ_ONCE(unix_sk(sk)->oob_skb)) 3317 mask |= EPOLLPRI; 3318 #endif 3319 3320 /* Connection-based need to check for termination and startup */ 3321 if ((sk->sk_type == SOCK_STREAM || sk->sk_type == SOCK_SEQPACKET) && 3322 state == TCP_CLOSE) 3323 mask |= EPOLLHUP; 3324 3325 /* 3326 * we set writable also when the other side has shut down the 3327 * connection. This prevents stuck sockets. 3328 */ 3329 if (unix_writable(sk, state)) 3330 mask |= EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND; 3331 3332 return mask; 3333 } 3334 3335 static __poll_t unix_dgram_poll(struct file *file, struct socket *sock, 3336 poll_table *wait) 3337 { 3338 struct sock *sk = sock->sk, *other; 3339 unsigned int writable; 3340 unsigned char state; 3341 __poll_t mask; 3342 u8 shutdown; 3343 3344 sock_poll_wait(file, sock, wait); 3345 mask = 0; 3346 shutdown = READ_ONCE(sk->sk_shutdown); 3347 state = READ_ONCE(sk->sk_state); 3348 3349 /* exceptional events? */ 3350 if (READ_ONCE(sk->sk_err) || 3351 !skb_queue_empty_lockless(&sk->sk_error_queue)) 3352 mask |= EPOLLERR | 3353 (sock_flag(sk, SOCK_SELECT_ERR_QUEUE) ? EPOLLPRI : 0); 3354 3355 if (shutdown & RCV_SHUTDOWN) 3356 mask |= EPOLLRDHUP | EPOLLIN | EPOLLRDNORM; 3357 if (shutdown == SHUTDOWN_MASK) 3358 mask |= EPOLLHUP; 3359 3360 /* readable? */ 3361 if (!skb_queue_empty_lockless(&sk->sk_receive_queue)) 3362 mask |= EPOLLIN | EPOLLRDNORM; 3363 if (sk_is_readable(sk)) 3364 mask |= EPOLLIN | EPOLLRDNORM; 3365 3366 /* Connection-based need to check for termination and startup */ 3367 if (sk->sk_type == SOCK_SEQPACKET && state == TCP_CLOSE) 3368 mask |= EPOLLHUP; 3369 3370 /* No write status requested, avoid expensive OUT tests. */ 3371 if (!(poll_requested_events(wait) & (EPOLLWRBAND|EPOLLWRNORM|EPOLLOUT))) 3372 return mask; 3373 3374 writable = unix_writable(sk, state); 3375 if (writable) { 3376 unix_state_lock(sk); 3377 3378 other = unix_peer(sk); 3379 if (other && unix_peer(other) != sk && 3380 unix_recvq_full_lockless(other) && 3381 unix_dgram_peer_wake_me(sk, other)) 3382 writable = 0; 3383 3384 unix_state_unlock(sk); 3385 } 3386 3387 if (writable) 3388 mask |= EPOLLOUT | EPOLLWRNORM | EPOLLWRBAND; 3389 else 3390 sk_set_bit(SOCKWQ_ASYNC_NOSPACE, sk); 3391 3392 return mask; 3393 } 3394 3395 #ifdef CONFIG_PROC_FS 3396 3397 #define BUCKET_SPACE (BITS_PER_LONG - (UNIX_HASH_BITS + 1) - 1) 3398 3399 #define get_bucket(x) ((x) >> BUCKET_SPACE) 3400 #define get_offset(x) ((x) & ((1UL << BUCKET_SPACE) - 1)) 3401 #define set_bucket_offset(b, o) ((b) << BUCKET_SPACE | (o)) 3402 3403 static struct sock *unix_from_bucket(struct seq_file *seq, loff_t *pos) 3404 { 3405 unsigned long offset = get_offset(*pos); 3406 unsigned long bucket = get_bucket(*pos); 3407 unsigned long count = 0; 3408 struct sock *sk; 3409 3410 for (sk = sk_head(&seq_file_net(seq)->unx.table.buckets[bucket]); 3411 sk; sk = sk_next(sk)) { 3412 if (++count == offset) 3413 break; 3414 } 3415 3416 return sk; 3417 } 3418 3419 static struct sock *unix_get_first(struct seq_file *seq, loff_t *pos) 3420 { 3421 unsigned long bucket = get_bucket(*pos); 3422 struct net *net = seq_file_net(seq); 3423 struct sock *sk; 3424 3425 while (bucket < UNIX_HASH_SIZE) { 3426 spin_lock(&net->unx.table.locks[bucket]); 3427 3428 sk = unix_from_bucket(seq, pos); 3429 if (sk) 3430 return sk; 3431 3432 spin_unlock(&net->unx.table.locks[bucket]); 3433 3434 *pos = set_bucket_offset(++bucket, 1); 3435 } 3436 3437 return NULL; 3438 } 3439 3440 static struct sock *unix_get_next(struct seq_file *seq, struct sock *sk, 3441 loff_t *pos) 3442 { 3443 unsigned long bucket = get_bucket(*pos); 3444 3445 sk = sk_next(sk); 3446 if (sk) 3447 return sk; 3448 3449 3450 spin_unlock(&seq_file_net(seq)->unx.table.locks[bucket]); 3451 3452 *pos = set_bucket_offset(++bucket, 1); 3453 3454 return unix_get_first(seq, pos); 3455 } 3456 3457 static void *unix_seq_start(struct seq_file *seq, loff_t *pos) 3458 { 3459 if (!*pos) 3460 return SEQ_START_TOKEN; 3461 3462 return unix_get_first(seq, pos); 3463 } 3464 3465 static void *unix_seq_next(struct seq_file *seq, void *v, loff_t *pos) 3466 { 3467 ++*pos; 3468 3469 if (v == SEQ_START_TOKEN) 3470 return unix_get_first(seq, pos); 3471 3472 return unix_get_next(seq, v, pos); 3473 } 3474 3475 static void unix_seq_stop(struct seq_file *seq, void *v) 3476 { 3477 struct sock *sk = v; 3478 3479 if (sk) 3480 spin_unlock(&seq_file_net(seq)->unx.table.locks[sk->sk_hash]); 3481 } 3482 3483 static int unix_seq_show(struct seq_file *seq, void *v) 3484 { 3485 3486 if (v == SEQ_START_TOKEN) 3487 seq_puts(seq, "Num RefCount Protocol Flags Type St " 3488 "Inode Path\n"); 3489 else { 3490 struct sock *s = v; 3491 struct unix_sock *u = unix_sk(s); 3492 unix_state_lock(s); 3493 3494 seq_printf(seq, "%pK: %08X %08X %08X %04X %02X %5lu", 3495 s, 3496 refcount_read(&s->sk_refcnt), 3497 0, 3498 s->sk_state == TCP_LISTEN ? __SO_ACCEPTCON : 0, 3499 s->sk_type, 3500 s->sk_socket ? 3501 (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTED : SS_UNCONNECTED) : 3502 (s->sk_state == TCP_ESTABLISHED ? SS_CONNECTING : SS_DISCONNECTING), 3503 sock_i_ino(s)); 3504 3505 if (u->addr) { // under a hash table lock here 3506 int i, len; 3507 seq_putc(seq, ' '); 3508 3509 i = 0; 3510 len = u->addr->len - 3511 offsetof(struct sockaddr_un, sun_path); 3512 if (u->addr->name->sun_path[0]) { 3513 len--; 3514 } else { 3515 seq_putc(seq, '@'); 3516 i++; 3517 } 3518 for ( ; i < len; i++) 3519 seq_putc(seq, u->addr->name->sun_path[i] ?: 3520 '@'); 3521 } 3522 unix_state_unlock(s); 3523 seq_putc(seq, '\n'); 3524 } 3525 3526 return 0; 3527 } 3528 3529 static const struct seq_operations unix_seq_ops = { 3530 .start = unix_seq_start, 3531 .next = unix_seq_next, 3532 .stop = unix_seq_stop, 3533 .show = unix_seq_show, 3534 }; 3535 3536 #ifdef CONFIG_BPF_SYSCALL 3537 struct bpf_unix_iter_state { 3538 struct seq_net_private p; 3539 unsigned int cur_sk; 3540 unsigned int end_sk; 3541 unsigned int max_sk; 3542 struct sock **batch; 3543 bool st_bucket_done; 3544 }; 3545 3546 struct bpf_iter__unix { 3547 __bpf_md_ptr(struct bpf_iter_meta *, meta); 3548 __bpf_md_ptr(struct unix_sock *, unix_sk); 3549 uid_t uid __aligned(8); 3550 }; 3551 3552 static int unix_prog_seq_show(struct bpf_prog *prog, struct bpf_iter_meta *meta, 3553 struct unix_sock *unix_sk, uid_t uid) 3554 { 3555 struct bpf_iter__unix ctx; 3556 3557 meta->seq_num--; /* skip SEQ_START_TOKEN */ 3558 ctx.meta = meta; 3559 ctx.unix_sk = unix_sk; 3560 ctx.uid = uid; 3561 return bpf_iter_run_prog(prog, &ctx); 3562 } 3563 3564 static int bpf_iter_unix_hold_batch(struct seq_file *seq, struct sock *start_sk) 3565 3566 { 3567 struct bpf_unix_iter_state *iter = seq->private; 3568 unsigned int expected = 1; 3569 struct sock *sk; 3570 3571 sock_hold(start_sk); 3572 iter->batch[iter->end_sk++] = start_sk; 3573 3574 for (sk = sk_next(start_sk); sk; sk = sk_next(sk)) { 3575 if (iter->end_sk < iter->max_sk) { 3576 sock_hold(sk); 3577 iter->batch[iter->end_sk++] = sk; 3578 } 3579 3580 expected++; 3581 } 3582 3583 spin_unlock(&seq_file_net(seq)->unx.table.locks[start_sk->sk_hash]); 3584 3585 return expected; 3586 } 3587 3588 static void bpf_iter_unix_put_batch(struct bpf_unix_iter_state *iter) 3589 { 3590 while (iter->cur_sk < iter->end_sk) 3591 sock_put(iter->batch[iter->cur_sk++]); 3592 } 3593 3594 static int bpf_iter_unix_realloc_batch(struct bpf_unix_iter_state *iter, 3595 unsigned int new_batch_sz) 3596 { 3597 struct sock **new_batch; 3598 3599 new_batch = kvmalloc(sizeof(*new_batch) * new_batch_sz, 3600 GFP_USER | __GFP_NOWARN); 3601 if (!new_batch) 3602 return -ENOMEM; 3603 3604 bpf_iter_unix_put_batch(iter); 3605 kvfree(iter->batch); 3606 iter->batch = new_batch; 3607 iter->max_sk = new_batch_sz; 3608 3609 return 0; 3610 } 3611 3612 static struct sock *bpf_iter_unix_batch(struct seq_file *seq, 3613 loff_t *pos) 3614 { 3615 struct bpf_unix_iter_state *iter = seq->private; 3616 unsigned int expected; 3617 bool resized = false; 3618 struct sock *sk; 3619 3620 if (iter->st_bucket_done) 3621 *pos = set_bucket_offset(get_bucket(*pos) + 1, 1); 3622 3623 again: 3624 /* Get a new batch */ 3625 iter->cur_sk = 0; 3626 iter->end_sk = 0; 3627 3628 sk = unix_get_first(seq, pos); 3629 if (!sk) 3630 return NULL; /* Done */ 3631 3632 expected = bpf_iter_unix_hold_batch(seq, sk); 3633 3634 if (iter->end_sk == expected) { 3635 iter->st_bucket_done = true; 3636 return sk; 3637 } 3638 3639 if (!resized && !bpf_iter_unix_realloc_batch(iter, expected * 3 / 2)) { 3640 resized = true; 3641 goto again; 3642 } 3643 3644 return sk; 3645 } 3646 3647 static void *bpf_iter_unix_seq_start(struct seq_file *seq, loff_t *pos) 3648 { 3649 if (!*pos) 3650 return SEQ_START_TOKEN; 3651 3652 /* bpf iter does not support lseek, so it always 3653 * continue from where it was stop()-ped. 3654 */ 3655 return bpf_iter_unix_batch(seq, pos); 3656 } 3657 3658 static void *bpf_iter_unix_seq_next(struct seq_file *seq, void *v, loff_t *pos) 3659 { 3660 struct bpf_unix_iter_state *iter = seq->private; 3661 struct sock *sk; 3662 3663 /* Whenever seq_next() is called, the iter->cur_sk is 3664 * done with seq_show(), so advance to the next sk in 3665 * the batch. 3666 */ 3667 if (iter->cur_sk < iter->end_sk) 3668 sock_put(iter->batch[iter->cur_sk++]); 3669 3670 ++*pos; 3671 3672 if (iter->cur_sk < iter->end_sk) 3673 sk = iter->batch[iter->cur_sk]; 3674 else 3675 sk = bpf_iter_unix_batch(seq, pos); 3676 3677 return sk; 3678 } 3679 3680 static int bpf_iter_unix_seq_show(struct seq_file *seq, void *v) 3681 { 3682 struct bpf_iter_meta meta; 3683 struct bpf_prog *prog; 3684 struct sock *sk = v; 3685 uid_t uid; 3686 bool slow; 3687 int ret; 3688 3689 if (v == SEQ_START_TOKEN) 3690 return 0; 3691 3692 slow = lock_sock_fast(sk); 3693 3694 if (unlikely(sk_unhashed(sk))) { 3695 ret = SEQ_SKIP; 3696 goto unlock; 3697 } 3698 3699 uid = from_kuid_munged(seq_user_ns(seq), sk_uid(sk)); 3700 meta.seq = seq; 3701 prog = bpf_iter_get_info(&meta, false); 3702 ret = unix_prog_seq_show(prog, &meta, v, uid); 3703 unlock: 3704 unlock_sock_fast(sk, slow); 3705 return ret; 3706 } 3707 3708 static void bpf_iter_unix_seq_stop(struct seq_file *seq, void *v) 3709 { 3710 struct bpf_unix_iter_state *iter = seq->private; 3711 struct bpf_iter_meta meta; 3712 struct bpf_prog *prog; 3713 3714 if (!v) { 3715 meta.seq = seq; 3716 prog = bpf_iter_get_info(&meta, true); 3717 if (prog) 3718 (void)unix_prog_seq_show(prog, &meta, v, 0); 3719 } 3720 3721 if (iter->cur_sk < iter->end_sk) 3722 bpf_iter_unix_put_batch(iter); 3723 } 3724 3725 static const struct seq_operations bpf_iter_unix_seq_ops = { 3726 .start = bpf_iter_unix_seq_start, 3727 .next = bpf_iter_unix_seq_next, 3728 .stop = bpf_iter_unix_seq_stop, 3729 .show = bpf_iter_unix_seq_show, 3730 }; 3731 #endif 3732 #endif 3733 3734 static const struct net_proto_family unix_family_ops = { 3735 .family = PF_UNIX, 3736 .create = unix_create, 3737 .owner = THIS_MODULE, 3738 }; 3739 3740 3741 static int __net_init unix_net_init(struct net *net) 3742 { 3743 int i; 3744 3745 net->unx.sysctl_max_dgram_qlen = 10; 3746 if (unix_sysctl_register(net)) 3747 goto out; 3748 3749 #ifdef CONFIG_PROC_FS 3750 if (!proc_create_net("unix", 0, net->proc_net, &unix_seq_ops, 3751 sizeof(struct seq_net_private))) 3752 goto err_sysctl; 3753 #endif 3754 3755 net->unx.table.locks = kvmalloc_array(UNIX_HASH_SIZE, 3756 sizeof(spinlock_t), GFP_KERNEL); 3757 if (!net->unx.table.locks) 3758 goto err_proc; 3759 3760 net->unx.table.buckets = kvmalloc_array(UNIX_HASH_SIZE, 3761 sizeof(struct hlist_head), 3762 GFP_KERNEL); 3763 if (!net->unx.table.buckets) 3764 goto free_locks; 3765 3766 for (i = 0; i < UNIX_HASH_SIZE; i++) { 3767 spin_lock_init(&net->unx.table.locks[i]); 3768 lock_set_cmp_fn(&net->unx.table.locks[i], unix_table_lock_cmp_fn, NULL); 3769 INIT_HLIST_HEAD(&net->unx.table.buckets[i]); 3770 } 3771 3772 return 0; 3773 3774 free_locks: 3775 kvfree(net->unx.table.locks); 3776 err_proc: 3777 #ifdef CONFIG_PROC_FS 3778 remove_proc_entry("unix", net->proc_net); 3779 err_sysctl: 3780 #endif 3781 unix_sysctl_unregister(net); 3782 out: 3783 return -ENOMEM; 3784 } 3785 3786 static void __net_exit unix_net_exit(struct net *net) 3787 { 3788 kvfree(net->unx.table.buckets); 3789 kvfree(net->unx.table.locks); 3790 unix_sysctl_unregister(net); 3791 remove_proc_entry("unix", net->proc_net); 3792 } 3793 3794 static struct pernet_operations unix_net_ops = { 3795 .init = unix_net_init, 3796 .exit = unix_net_exit, 3797 }; 3798 3799 #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 3800 DEFINE_BPF_ITER_FUNC(unix, struct bpf_iter_meta *meta, 3801 struct unix_sock *unix_sk, uid_t uid) 3802 3803 #define INIT_BATCH_SZ 16 3804 3805 static int bpf_iter_init_unix(void *priv_data, struct bpf_iter_aux_info *aux) 3806 { 3807 struct bpf_unix_iter_state *iter = priv_data; 3808 int err; 3809 3810 err = bpf_iter_init_seq_net(priv_data, aux); 3811 if (err) 3812 return err; 3813 3814 err = bpf_iter_unix_realloc_batch(iter, INIT_BATCH_SZ); 3815 if (err) { 3816 bpf_iter_fini_seq_net(priv_data); 3817 return err; 3818 } 3819 3820 return 0; 3821 } 3822 3823 static void bpf_iter_fini_unix(void *priv_data) 3824 { 3825 struct bpf_unix_iter_state *iter = priv_data; 3826 3827 bpf_iter_fini_seq_net(priv_data); 3828 kvfree(iter->batch); 3829 } 3830 3831 static const struct bpf_iter_seq_info unix_seq_info = { 3832 .seq_ops = &bpf_iter_unix_seq_ops, 3833 .init_seq_private = bpf_iter_init_unix, 3834 .fini_seq_private = bpf_iter_fini_unix, 3835 .seq_priv_size = sizeof(struct bpf_unix_iter_state), 3836 }; 3837 3838 static const struct bpf_func_proto * 3839 bpf_iter_unix_get_func_proto(enum bpf_func_id func_id, 3840 const struct bpf_prog *prog) 3841 { 3842 switch (func_id) { 3843 case BPF_FUNC_setsockopt: 3844 return &bpf_sk_setsockopt_proto; 3845 case BPF_FUNC_getsockopt: 3846 return &bpf_sk_getsockopt_proto; 3847 default: 3848 return NULL; 3849 } 3850 } 3851 3852 static struct bpf_iter_reg unix_reg_info = { 3853 .target = "unix", 3854 .ctx_arg_info_size = 1, 3855 .ctx_arg_info = { 3856 { offsetof(struct bpf_iter__unix, unix_sk), 3857 PTR_TO_BTF_ID_OR_NULL }, 3858 }, 3859 .get_func_proto = bpf_iter_unix_get_func_proto, 3860 .seq_info = &unix_seq_info, 3861 }; 3862 3863 static void __init bpf_iter_register(void) 3864 { 3865 unix_reg_info.ctx_arg_info[0].btf_id = btf_sock_ids[BTF_SOCK_TYPE_UNIX]; 3866 if (bpf_iter_reg_target(&unix_reg_info)) 3867 pr_warn("Warning: could not register bpf iterator unix\n"); 3868 } 3869 #endif 3870 3871 static int __init af_unix_init(void) 3872 { 3873 int i, rc = -1; 3874 3875 BUILD_BUG_ON(sizeof(struct unix_skb_parms) > sizeof_field(struct sk_buff, cb)); 3876 3877 for (i = 0; i < UNIX_HASH_SIZE / 2; i++) { 3878 spin_lock_init(&bsd_socket_locks[i]); 3879 INIT_HLIST_HEAD(&bsd_socket_buckets[i]); 3880 } 3881 3882 rc = proto_register(&unix_dgram_proto, 1); 3883 if (rc != 0) { 3884 pr_crit("%s: Cannot create unix_sock SLAB cache!\n", __func__); 3885 goto out; 3886 } 3887 3888 rc = proto_register(&unix_stream_proto, 1); 3889 if (rc != 0) { 3890 pr_crit("%s: Cannot create unix_sock SLAB cache!\n", __func__); 3891 proto_unregister(&unix_dgram_proto); 3892 goto out; 3893 } 3894 3895 sock_register(&unix_family_ops); 3896 register_pernet_subsys(&unix_net_ops); 3897 unix_bpf_build_proto(); 3898 3899 #if defined(CONFIG_BPF_SYSCALL) && defined(CONFIG_PROC_FS) 3900 bpf_iter_register(); 3901 #endif 3902 3903 out: 3904 return rc; 3905 } 3906 3907 /* Later than subsys_initcall() because we depend on stuff initialised there */ 3908 fs_initcall(af_unix_init); 3909