Merge remote-tracking branch 'stable/linux-5.15.y' into rpi-5.15.y
[platform/kernel/linux-rpi.git] / net / kcm / kcmsock.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Kernel Connection Multiplexor
4  *
5  * Copyright (c) 2016 Tom Herbert <tom@herbertland.com>
6  */
7
8 #include <linux/bpf.h>
9 #include <linux/errno.h>
10 #include <linux/errqueue.h>
11 #include <linux/file.h>
12 #include <linux/in.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/net.h>
16 #include <linux/netdevice.h>
17 #include <linux/poll.h>
18 #include <linux/rculist.h>
19 #include <linux/skbuff.h>
20 #include <linux/socket.h>
21 #include <linux/uaccess.h>
22 #include <linux/workqueue.h>
23 #include <linux/syscalls.h>
24 #include <linux/sched/signal.h>
25
26 #include <net/kcm.h>
27 #include <net/netns/generic.h>
28 #include <net/sock.h>
29 #include <uapi/linux/kcm.h>
30
31 unsigned int kcm_net_id;
32
33 static struct kmem_cache *kcm_psockp __read_mostly;
34 static struct kmem_cache *kcm_muxp __read_mostly;
35 static struct workqueue_struct *kcm_wq;
36
37 static inline struct kcm_sock *kcm_sk(const struct sock *sk)
38 {
39         return (struct kcm_sock *)sk;
40 }
41
42 static inline struct kcm_tx_msg *kcm_tx_msg(struct sk_buff *skb)
43 {
44         return (struct kcm_tx_msg *)skb->cb;
45 }
46
47 static void report_csk_error(struct sock *csk, int err)
48 {
49         csk->sk_err = EPIPE;
50         sk_error_report(csk);
51 }
52
53 static void kcm_abort_tx_psock(struct kcm_psock *psock, int err,
54                                bool wakeup_kcm)
55 {
56         struct sock *csk = psock->sk;
57         struct kcm_mux *mux = psock->mux;
58
59         /* Unrecoverable error in transmit */
60
61         spin_lock_bh(&mux->lock);
62
63         if (psock->tx_stopped) {
64                 spin_unlock_bh(&mux->lock);
65                 return;
66         }
67
68         psock->tx_stopped = 1;
69         KCM_STATS_INCR(psock->stats.tx_aborts);
70
71         if (!psock->tx_kcm) {
72                 /* Take off psocks_avail list */
73                 list_del(&psock->psock_avail_list);
74         } else if (wakeup_kcm) {
75                 /* In this case psock is being aborted while outside of
76                  * write_msgs and psock is reserved. Schedule tx_work
77                  * to handle the failure there. Need to commit tx_stopped
78                  * before queuing work.
79                  */
80                 smp_mb();
81
82                 queue_work(kcm_wq, &psock->tx_kcm->tx_work);
83         }
84
85         spin_unlock_bh(&mux->lock);
86
87         /* Report error on lower socket */
88         report_csk_error(csk, err);
89 }
90
91 /* RX mux lock held. */
92 static void kcm_update_rx_mux_stats(struct kcm_mux *mux,
93                                     struct kcm_psock *psock)
94 {
95         STRP_STATS_ADD(mux->stats.rx_bytes,
96                        psock->strp.stats.bytes -
97                        psock->saved_rx_bytes);
98         mux->stats.rx_msgs +=
99                 psock->strp.stats.msgs - psock->saved_rx_msgs;
100         psock->saved_rx_msgs = psock->strp.stats.msgs;
101         psock->saved_rx_bytes = psock->strp.stats.bytes;
102 }
103
104 static void kcm_update_tx_mux_stats(struct kcm_mux *mux,
105                                     struct kcm_psock *psock)
106 {
107         KCM_STATS_ADD(mux->stats.tx_bytes,
108                       psock->stats.tx_bytes - psock->saved_tx_bytes);
109         mux->stats.tx_msgs +=
110                 psock->stats.tx_msgs - psock->saved_tx_msgs;
111         psock->saved_tx_msgs = psock->stats.tx_msgs;
112         psock->saved_tx_bytes = psock->stats.tx_bytes;
113 }
114
115 static int kcm_queue_rcv_skb(struct sock *sk, struct sk_buff *skb);
116
117 /* KCM is ready to receive messages on its queue-- either the KCM is new or
118  * has become unblocked after being blocked on full socket buffer. Queue any
119  * pending ready messages on a psock. RX mux lock held.
120  */
121 static void kcm_rcv_ready(struct kcm_sock *kcm)
122 {
123         struct kcm_mux *mux = kcm->mux;
124         struct kcm_psock *psock;
125         struct sk_buff *skb;
126
127         if (unlikely(kcm->rx_wait || kcm->rx_psock || kcm->rx_disabled))
128                 return;
129
130         while (unlikely((skb = __skb_dequeue(&mux->rx_hold_queue)))) {
131                 if (kcm_queue_rcv_skb(&kcm->sk, skb)) {
132                         /* Assuming buffer limit has been reached */
133                         skb_queue_head(&mux->rx_hold_queue, skb);
134                         WARN_ON(!sk_rmem_alloc_get(&kcm->sk));
135                         return;
136                 }
137         }
138
139         while (!list_empty(&mux->psocks_ready)) {
140                 psock = list_first_entry(&mux->psocks_ready, struct kcm_psock,
141                                          psock_ready_list);
142
143                 if (kcm_queue_rcv_skb(&kcm->sk, psock->ready_rx_msg)) {
144                         /* Assuming buffer limit has been reached */
145                         WARN_ON(!sk_rmem_alloc_get(&kcm->sk));
146                         return;
147                 }
148
149                 /* Consumed the ready message on the psock. Schedule rx_work to
150                  * get more messages.
151                  */
152                 list_del(&psock->psock_ready_list);
153                 psock->ready_rx_msg = NULL;
154                 /* Commit clearing of ready_rx_msg for queuing work */
155                 smp_mb();
156
157                 strp_unpause(&psock->strp);
158                 strp_check_rcv(&psock->strp);
159         }
160
161         /* Buffer limit is okay now, add to ready list */
162         list_add_tail(&kcm->wait_rx_list,
163                       &kcm->mux->kcm_rx_waiters);
164         /* paired with lockless reads in kcm_rfree() */
165         WRITE_ONCE(kcm->rx_wait, true);
166 }
167
168 static void kcm_rfree(struct sk_buff *skb)
169 {
170         struct sock *sk = skb->sk;
171         struct kcm_sock *kcm = kcm_sk(sk);
172         struct kcm_mux *mux = kcm->mux;
173         unsigned int len = skb->truesize;
174
175         sk_mem_uncharge(sk, len);
176         atomic_sub(len, &sk->sk_rmem_alloc);
177
178         /* For reading rx_wait and rx_psock without holding lock */
179         smp_mb__after_atomic();
180
181         if (!READ_ONCE(kcm->rx_wait) && !READ_ONCE(kcm->rx_psock) &&
182             sk_rmem_alloc_get(sk) < sk->sk_rcvlowat) {
183                 spin_lock_bh(&mux->rx_lock);
184                 kcm_rcv_ready(kcm);
185                 spin_unlock_bh(&mux->rx_lock);
186         }
187 }
188
189 static int kcm_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
190 {
191         struct sk_buff_head *list = &sk->sk_receive_queue;
192
193         if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
194                 return -ENOMEM;
195
196         if (!sk_rmem_schedule(sk, skb, skb->truesize))
197                 return -ENOBUFS;
198
199         skb->dev = NULL;
200
201         skb_orphan(skb);
202         skb->sk = sk;
203         skb->destructor = kcm_rfree;
204         atomic_add(skb->truesize, &sk->sk_rmem_alloc);
205         sk_mem_charge(sk, skb->truesize);
206
207         skb_queue_tail(list, skb);
208
209         if (!sock_flag(sk, SOCK_DEAD))
210                 sk->sk_data_ready(sk);
211
212         return 0;
213 }
214
215 /* Requeue received messages for a kcm socket to other kcm sockets. This is
216  * called with a kcm socket is receive disabled.
217  * RX mux lock held.
218  */
219 static void requeue_rx_msgs(struct kcm_mux *mux, struct sk_buff_head *head)
220 {
221         struct sk_buff *skb;
222         struct kcm_sock *kcm;
223
224         while ((skb = skb_dequeue(head))) {
225                 /* Reset destructor to avoid calling kcm_rcv_ready */
226                 skb->destructor = sock_rfree;
227                 skb_orphan(skb);
228 try_again:
229                 if (list_empty(&mux->kcm_rx_waiters)) {
230                         skb_queue_tail(&mux->rx_hold_queue, skb);
231                         continue;
232                 }
233
234                 kcm = list_first_entry(&mux->kcm_rx_waiters,
235                                        struct kcm_sock, wait_rx_list);
236
237                 if (kcm_queue_rcv_skb(&kcm->sk, skb)) {
238                         /* Should mean socket buffer full */
239                         list_del(&kcm->wait_rx_list);
240                         /* paired with lockless reads in kcm_rfree() */
241                         WRITE_ONCE(kcm->rx_wait, false);
242
243                         /* Commit rx_wait to read in kcm_free */
244                         smp_wmb();
245
246                         goto try_again;
247                 }
248         }
249 }
250
251 /* Lower sock lock held */
252 static struct kcm_sock *reserve_rx_kcm(struct kcm_psock *psock,
253                                        struct sk_buff *head)
254 {
255         struct kcm_mux *mux = psock->mux;
256         struct kcm_sock *kcm;
257
258         WARN_ON(psock->ready_rx_msg);
259
260         if (psock->rx_kcm)
261                 return psock->rx_kcm;
262
263         spin_lock_bh(&mux->rx_lock);
264
265         if (psock->rx_kcm) {
266                 spin_unlock_bh(&mux->rx_lock);
267                 return psock->rx_kcm;
268         }
269
270         kcm_update_rx_mux_stats(mux, psock);
271
272         if (list_empty(&mux->kcm_rx_waiters)) {
273                 psock->ready_rx_msg = head;
274                 strp_pause(&psock->strp);
275                 list_add_tail(&psock->psock_ready_list,
276                               &mux->psocks_ready);
277                 spin_unlock_bh(&mux->rx_lock);
278                 return NULL;
279         }
280
281         kcm = list_first_entry(&mux->kcm_rx_waiters,
282                                struct kcm_sock, wait_rx_list);
283         list_del(&kcm->wait_rx_list);
284         /* paired with lockless reads in kcm_rfree() */
285         WRITE_ONCE(kcm->rx_wait, false);
286
287         psock->rx_kcm = kcm;
288         /* paired with lockless reads in kcm_rfree() */
289         WRITE_ONCE(kcm->rx_psock, psock);
290
291         spin_unlock_bh(&mux->rx_lock);
292
293         return kcm;
294 }
295
296 static void kcm_done(struct kcm_sock *kcm);
297
298 static void kcm_done_work(struct work_struct *w)
299 {
300         kcm_done(container_of(w, struct kcm_sock, done_work));
301 }
302
303 /* Lower sock held */
304 static void unreserve_rx_kcm(struct kcm_psock *psock,
305                              bool rcv_ready)
306 {
307         struct kcm_sock *kcm = psock->rx_kcm;
308         struct kcm_mux *mux = psock->mux;
309
310         if (!kcm)
311                 return;
312
313         spin_lock_bh(&mux->rx_lock);
314
315         psock->rx_kcm = NULL;
316         /* paired with lockless reads in kcm_rfree() */
317         WRITE_ONCE(kcm->rx_psock, NULL);
318
319         /* Commit kcm->rx_psock before sk_rmem_alloc_get to sync with
320          * kcm_rfree
321          */
322         smp_mb();
323
324         if (unlikely(kcm->done)) {
325                 spin_unlock_bh(&mux->rx_lock);
326
327                 /* Need to run kcm_done in a task since we need to qcquire
328                  * callback locks which may already be held here.
329                  */
330                 INIT_WORK(&kcm->done_work, kcm_done_work);
331                 schedule_work(&kcm->done_work);
332                 return;
333         }
334
335         if (unlikely(kcm->rx_disabled)) {
336                 requeue_rx_msgs(mux, &kcm->sk.sk_receive_queue);
337         } else if (rcv_ready || unlikely(!sk_rmem_alloc_get(&kcm->sk))) {
338                 /* Check for degenerative race with rx_wait that all
339                  * data was dequeued (accounted for in kcm_rfree).
340                  */
341                 kcm_rcv_ready(kcm);
342         }
343         spin_unlock_bh(&mux->rx_lock);
344 }
345
346 /* Lower sock lock held */
347 static void psock_data_ready(struct sock *sk)
348 {
349         struct kcm_psock *psock;
350
351         read_lock_bh(&sk->sk_callback_lock);
352
353         psock = (struct kcm_psock *)sk->sk_user_data;
354         if (likely(psock))
355                 strp_data_ready(&psock->strp);
356
357         read_unlock_bh(&sk->sk_callback_lock);
358 }
359
360 /* Called with lower sock held */
361 static void kcm_rcv_strparser(struct strparser *strp, struct sk_buff *skb)
362 {
363         struct kcm_psock *psock = container_of(strp, struct kcm_psock, strp);
364         struct kcm_sock *kcm;
365
366 try_queue:
367         kcm = reserve_rx_kcm(psock, skb);
368         if (!kcm) {
369                  /* Unable to reserve a KCM, message is held in psock and strp
370                   * is paused.
371                   */
372                 return;
373         }
374
375         if (kcm_queue_rcv_skb(&kcm->sk, skb)) {
376                 /* Should mean socket buffer full */
377                 unreserve_rx_kcm(psock, false);
378                 goto try_queue;
379         }
380 }
381
382 static int kcm_parse_func_strparser(struct strparser *strp, struct sk_buff *skb)
383 {
384         struct kcm_psock *psock = container_of(strp, struct kcm_psock, strp);
385         struct bpf_prog *prog = psock->bpf_prog;
386         int res;
387
388         res = bpf_prog_run_pin_on_cpu(prog, skb);
389         return res;
390 }
391
392 static int kcm_read_sock_done(struct strparser *strp, int err)
393 {
394         struct kcm_psock *psock = container_of(strp, struct kcm_psock, strp);
395
396         unreserve_rx_kcm(psock, true);
397
398         return err;
399 }
400
401 static void psock_state_change(struct sock *sk)
402 {
403         /* TCP only does a EPOLLIN for a half close. Do a EPOLLHUP here
404          * since application will normally not poll with EPOLLIN
405          * on the TCP sockets.
406          */
407
408         report_csk_error(sk, EPIPE);
409 }
410
411 static void psock_write_space(struct sock *sk)
412 {
413         struct kcm_psock *psock;
414         struct kcm_mux *mux;
415         struct kcm_sock *kcm;
416
417         read_lock_bh(&sk->sk_callback_lock);
418
419         psock = (struct kcm_psock *)sk->sk_user_data;
420         if (unlikely(!psock))
421                 goto out;
422         mux = psock->mux;
423
424         spin_lock_bh(&mux->lock);
425
426         /* Check if the socket is reserved so someone is waiting for sending. */
427         kcm = psock->tx_kcm;
428         if (kcm && !unlikely(kcm->tx_stopped))
429                 queue_work(kcm_wq, &kcm->tx_work);
430
431         spin_unlock_bh(&mux->lock);
432 out:
433         read_unlock_bh(&sk->sk_callback_lock);
434 }
435
436 static void unreserve_psock(struct kcm_sock *kcm);
437
438 /* kcm sock is locked. */
439 static struct kcm_psock *reserve_psock(struct kcm_sock *kcm)
440 {
441         struct kcm_mux *mux = kcm->mux;
442         struct kcm_psock *psock;
443
444         psock = kcm->tx_psock;
445
446         smp_rmb(); /* Must read tx_psock before tx_wait */
447
448         if (psock) {
449                 WARN_ON(kcm->tx_wait);
450                 if (unlikely(psock->tx_stopped))
451                         unreserve_psock(kcm);
452                 else
453                         return kcm->tx_psock;
454         }
455
456         spin_lock_bh(&mux->lock);
457
458         /* Check again under lock to see if psock was reserved for this
459          * psock via psock_unreserve.
460          */
461         psock = kcm->tx_psock;
462         if (unlikely(psock)) {
463                 WARN_ON(kcm->tx_wait);
464                 spin_unlock_bh(&mux->lock);
465                 return kcm->tx_psock;
466         }
467
468         if (!list_empty(&mux->psocks_avail)) {
469                 psock = list_first_entry(&mux->psocks_avail,
470                                          struct kcm_psock,
471                                          psock_avail_list);
472                 list_del(&psock->psock_avail_list);
473                 if (kcm->tx_wait) {
474                         list_del(&kcm->wait_psock_list);
475                         kcm->tx_wait = false;
476                 }
477                 kcm->tx_psock = psock;
478                 psock->tx_kcm = kcm;
479                 KCM_STATS_INCR(psock->stats.reserved);
480         } else if (!kcm->tx_wait) {
481                 list_add_tail(&kcm->wait_psock_list,
482                               &mux->kcm_tx_waiters);
483                 kcm->tx_wait = true;
484         }
485
486         spin_unlock_bh(&mux->lock);
487
488         return psock;
489 }
490
491 /* mux lock held */
492 static void psock_now_avail(struct kcm_psock *psock)
493 {
494         struct kcm_mux *mux = psock->mux;
495         struct kcm_sock *kcm;
496
497         if (list_empty(&mux->kcm_tx_waiters)) {
498                 list_add_tail(&psock->psock_avail_list,
499                               &mux->psocks_avail);
500         } else {
501                 kcm = list_first_entry(&mux->kcm_tx_waiters,
502                                        struct kcm_sock,
503                                        wait_psock_list);
504                 list_del(&kcm->wait_psock_list);
505                 kcm->tx_wait = false;
506                 psock->tx_kcm = kcm;
507
508                 /* Commit before changing tx_psock since that is read in
509                  * reserve_psock before queuing work.
510                  */
511                 smp_mb();
512
513                 kcm->tx_psock = psock;
514                 KCM_STATS_INCR(psock->stats.reserved);
515                 queue_work(kcm_wq, &kcm->tx_work);
516         }
517 }
518
519 /* kcm sock is locked. */
520 static void unreserve_psock(struct kcm_sock *kcm)
521 {
522         struct kcm_psock *psock;
523         struct kcm_mux *mux = kcm->mux;
524
525         spin_lock_bh(&mux->lock);
526
527         psock = kcm->tx_psock;
528
529         if (WARN_ON(!psock)) {
530                 spin_unlock_bh(&mux->lock);
531                 return;
532         }
533
534         smp_rmb(); /* Read tx_psock before tx_wait */
535
536         kcm_update_tx_mux_stats(mux, psock);
537
538         WARN_ON(kcm->tx_wait);
539
540         kcm->tx_psock = NULL;
541         psock->tx_kcm = NULL;
542         KCM_STATS_INCR(psock->stats.unreserved);
543
544         if (unlikely(psock->tx_stopped)) {
545                 if (psock->done) {
546                         /* Deferred free */
547                         list_del(&psock->psock_list);
548                         mux->psocks_cnt--;
549                         sock_put(psock->sk);
550                         fput(psock->sk->sk_socket->file);
551                         kmem_cache_free(kcm_psockp, psock);
552                 }
553
554                 /* Don't put back on available list */
555
556                 spin_unlock_bh(&mux->lock);
557
558                 return;
559         }
560
561         psock_now_avail(psock);
562
563         spin_unlock_bh(&mux->lock);
564 }
565
566 static void kcm_report_tx_retry(struct kcm_sock *kcm)
567 {
568         struct kcm_mux *mux = kcm->mux;
569
570         spin_lock_bh(&mux->lock);
571         KCM_STATS_INCR(mux->stats.tx_retries);
572         spin_unlock_bh(&mux->lock);
573 }
574
575 /* Write any messages ready on the kcm socket.  Called with kcm sock lock
576  * held.  Return bytes actually sent or error.
577  */
578 static int kcm_write_msgs(struct kcm_sock *kcm)
579 {
580         struct sock *sk = &kcm->sk;
581         struct kcm_psock *psock;
582         struct sk_buff *skb, *head;
583         struct kcm_tx_msg *txm;
584         unsigned short fragidx, frag_offset;
585         unsigned int sent, total_sent = 0;
586         int ret = 0;
587
588         kcm->tx_wait_more = false;
589         psock = kcm->tx_psock;
590         if (unlikely(psock && psock->tx_stopped)) {
591                 /* A reserved psock was aborted asynchronously. Unreserve
592                  * it and we'll retry the message.
593                  */
594                 unreserve_psock(kcm);
595                 kcm_report_tx_retry(kcm);
596                 if (skb_queue_empty(&sk->sk_write_queue))
597                         return 0;
598
599                 kcm_tx_msg(skb_peek(&sk->sk_write_queue))->sent = 0;
600
601         } else if (skb_queue_empty(&sk->sk_write_queue)) {
602                 return 0;
603         }
604
605         head = skb_peek(&sk->sk_write_queue);
606         txm = kcm_tx_msg(head);
607
608         if (txm->sent) {
609                 /* Send of first skbuff in queue already in progress */
610                 if (WARN_ON(!psock)) {
611                         ret = -EINVAL;
612                         goto out;
613                 }
614                 sent = txm->sent;
615                 frag_offset = txm->frag_offset;
616                 fragidx = txm->fragidx;
617                 skb = txm->frag_skb;
618
619                 goto do_frag;
620         }
621
622 try_again:
623         psock = reserve_psock(kcm);
624         if (!psock)
625                 goto out;
626
627         do {
628                 skb = head;
629                 txm = kcm_tx_msg(head);
630                 sent = 0;
631
632 do_frag_list:
633                 if (WARN_ON(!skb_shinfo(skb)->nr_frags)) {
634                         ret = -EINVAL;
635                         goto out;
636                 }
637
638                 for (fragidx = 0; fragidx < skb_shinfo(skb)->nr_frags;
639                      fragidx++) {
640                         skb_frag_t *frag;
641
642                         frag_offset = 0;
643 do_frag:
644                         frag = &skb_shinfo(skb)->frags[fragidx];
645                         if (WARN_ON(!skb_frag_size(frag))) {
646                                 ret = -EINVAL;
647                                 goto out;
648                         }
649
650                         ret = kernel_sendpage(psock->sk->sk_socket,
651                                               skb_frag_page(frag),
652                                               skb_frag_off(frag) + frag_offset,
653                                               skb_frag_size(frag) - frag_offset,
654                                               MSG_DONTWAIT);
655                         if (ret <= 0) {
656                                 if (ret == -EAGAIN) {
657                                         /* Save state to try again when there's
658                                          * write space on the socket
659                                          */
660                                         txm->sent = sent;
661                                         txm->frag_offset = frag_offset;
662                                         txm->fragidx = fragidx;
663                                         txm->frag_skb = skb;
664
665                                         ret = 0;
666                                         goto out;
667                                 }
668
669                                 /* Hard failure in sending message, abort this
670                                  * psock since it has lost framing
671                                  * synchronization and retry sending the
672                                  * message from the beginning.
673                                  */
674                                 kcm_abort_tx_psock(psock, ret ? -ret : EPIPE,
675                                                    true);
676                                 unreserve_psock(kcm);
677
678                                 txm->sent = 0;
679                                 kcm_report_tx_retry(kcm);
680                                 ret = 0;
681
682                                 goto try_again;
683                         }
684
685                         sent += ret;
686                         frag_offset += ret;
687                         KCM_STATS_ADD(psock->stats.tx_bytes, ret);
688                         if (frag_offset < skb_frag_size(frag)) {
689                                 /* Not finished with this frag */
690                                 goto do_frag;
691                         }
692                 }
693
694                 if (skb == head) {
695                         if (skb_has_frag_list(skb)) {
696                                 skb = skb_shinfo(skb)->frag_list;
697                                 goto do_frag_list;
698                         }
699                 } else if (skb->next) {
700                         skb = skb->next;
701                         goto do_frag_list;
702                 }
703
704                 /* Successfully sent the whole packet, account for it. */
705                 skb_dequeue(&sk->sk_write_queue);
706                 kfree_skb(head);
707                 sk->sk_wmem_queued -= sent;
708                 total_sent += sent;
709                 KCM_STATS_INCR(psock->stats.tx_msgs);
710         } while ((head = skb_peek(&sk->sk_write_queue)));
711 out:
712         if (!head) {
713                 /* Done with all queued messages. */
714                 WARN_ON(!skb_queue_empty(&sk->sk_write_queue));
715                 unreserve_psock(kcm);
716         }
717
718         /* Check if write space is available */
719         sk->sk_write_space(sk);
720
721         return total_sent ? : ret;
722 }
723
724 static void kcm_tx_work(struct work_struct *w)
725 {
726         struct kcm_sock *kcm = container_of(w, struct kcm_sock, tx_work);
727         struct sock *sk = &kcm->sk;
728         int err;
729
730         lock_sock(sk);
731
732         /* Primarily for SOCK_DGRAM sockets, also handle asynchronous tx
733          * aborts
734          */
735         err = kcm_write_msgs(kcm);
736         if (err < 0) {
737                 /* Hard failure in write, report error on KCM socket */
738                 pr_warn("KCM: Hard failure on kcm_write_msgs %d\n", err);
739                 report_csk_error(&kcm->sk, -err);
740                 goto out;
741         }
742
743         /* Primarily for SOCK_SEQPACKET sockets */
744         if (likely(sk->sk_socket) &&
745             test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
746                 clear_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
747                 sk->sk_write_space(sk);
748         }
749
750 out:
751         release_sock(sk);
752 }
753
754 static void kcm_push(struct kcm_sock *kcm)
755 {
756         if (kcm->tx_wait_more)
757                 kcm_write_msgs(kcm);
758 }
759
760 static ssize_t kcm_sendpage(struct socket *sock, struct page *page,
761                             int offset, size_t size, int flags)
762
763 {
764         struct sock *sk = sock->sk;
765         struct kcm_sock *kcm = kcm_sk(sk);
766         struct sk_buff *skb = NULL, *head = NULL;
767         long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT);
768         bool eor;
769         int err = 0;
770         int i;
771
772         if (flags & MSG_SENDPAGE_NOTLAST)
773                 flags |= MSG_MORE;
774
775         /* No MSG_EOR from splice, only look at MSG_MORE */
776         eor = !(flags & MSG_MORE);
777
778         lock_sock(sk);
779
780         sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
781
782         err = -EPIPE;
783         if (sk->sk_err)
784                 goto out_error;
785
786         if (kcm->seq_skb) {
787                 /* Previously opened message */
788                 head = kcm->seq_skb;
789                 skb = kcm_tx_msg(head)->last_skb;
790                 i = skb_shinfo(skb)->nr_frags;
791
792                 if (skb_can_coalesce(skb, i, page, offset)) {
793                         skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], size);
794                         skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG;
795                         goto coalesced;
796                 }
797
798                 if (i >= MAX_SKB_FRAGS) {
799                         struct sk_buff *tskb;
800
801                         tskb = alloc_skb(0, sk->sk_allocation);
802                         while (!tskb) {
803                                 kcm_push(kcm);
804                                 err = sk_stream_wait_memory(sk, &timeo);
805                                 if (err)
806                                         goto out_error;
807                         }
808
809                         if (head == skb)
810                                 skb_shinfo(head)->frag_list = tskb;
811                         else
812                                 skb->next = tskb;
813
814                         skb = tskb;
815                         skb->ip_summed = CHECKSUM_UNNECESSARY;
816                         i = 0;
817                 }
818         } else {
819                 /* Call the sk_stream functions to manage the sndbuf mem. */
820                 if (!sk_stream_memory_free(sk)) {
821                         kcm_push(kcm);
822                         set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
823                         err = sk_stream_wait_memory(sk, &timeo);
824                         if (err)
825                                 goto out_error;
826                 }
827
828                 head = alloc_skb(0, sk->sk_allocation);
829                 while (!head) {
830                         kcm_push(kcm);
831                         err = sk_stream_wait_memory(sk, &timeo);
832                         if (err)
833                                 goto out_error;
834                 }
835
836                 skb = head;
837                 i = 0;
838         }
839
840         get_page(page);
841         skb_fill_page_desc_noacc(skb, i, page, offset, size);
842         skb_shinfo(skb)->flags |= SKBFL_SHARED_FRAG;
843
844 coalesced:
845         skb->len += size;
846         skb->data_len += size;
847         skb->truesize += size;
848         sk->sk_wmem_queued += size;
849         sk_mem_charge(sk, size);
850
851         if (head != skb) {
852                 head->len += size;
853                 head->data_len += size;
854                 head->truesize += size;
855         }
856
857         if (eor) {
858                 bool not_busy = skb_queue_empty(&sk->sk_write_queue);
859
860                 /* Message complete, queue it on send buffer */
861                 __skb_queue_tail(&sk->sk_write_queue, head);
862                 kcm->seq_skb = NULL;
863                 KCM_STATS_INCR(kcm->stats.tx_msgs);
864
865                 if (flags & MSG_BATCH) {
866                         kcm->tx_wait_more = true;
867                 } else if (kcm->tx_wait_more || not_busy) {
868                         err = kcm_write_msgs(kcm);
869                         if (err < 0) {
870                                 /* We got a hard error in write_msgs but have
871                                  * already queued this message. Report an error
872                                  * in the socket, but don't affect return value
873                                  * from sendmsg
874                                  */
875                                 pr_warn("KCM: Hard failure on kcm_write_msgs\n");
876                                 report_csk_error(&kcm->sk, -err);
877                         }
878                 }
879         } else {
880                 /* Message not complete, save state */
881                 kcm->seq_skb = head;
882                 kcm_tx_msg(head)->last_skb = skb;
883         }
884
885         KCM_STATS_ADD(kcm->stats.tx_bytes, size);
886
887         release_sock(sk);
888         return size;
889
890 out_error:
891         kcm_push(kcm);
892
893         err = sk_stream_error(sk, flags, err);
894
895         /* make sure we wake any epoll edge trigger waiter */
896         if (unlikely(skb_queue_len(&sk->sk_write_queue) == 0 && err == -EAGAIN))
897                 sk->sk_write_space(sk);
898
899         release_sock(sk);
900         return err;
901 }
902
903 static int kcm_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
904 {
905         struct sock *sk = sock->sk;
906         struct kcm_sock *kcm = kcm_sk(sk);
907         struct sk_buff *skb = NULL, *head = NULL;
908         size_t copy, copied = 0;
909         long timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
910         int eor = (sock->type == SOCK_DGRAM) ?
911                   !(msg->msg_flags & MSG_MORE) : !!(msg->msg_flags & MSG_EOR);
912         int err = -EPIPE;
913
914         lock_sock(sk);
915
916         /* Per tcp_sendmsg this should be in poll */
917         sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk);
918
919         if (sk->sk_err)
920                 goto out_error;
921
922         if (kcm->seq_skb) {
923                 /* Previously opened message */
924                 head = kcm->seq_skb;
925                 skb = kcm_tx_msg(head)->last_skb;
926                 goto start;
927         }
928
929         /* Call the sk_stream functions to manage the sndbuf mem. */
930         if (!sk_stream_memory_free(sk)) {
931                 kcm_push(kcm);
932                 set_bit(SOCK_NOSPACE, &sk->sk_socket->flags);
933                 err = sk_stream_wait_memory(sk, &timeo);
934                 if (err)
935                         goto out_error;
936         }
937
938         if (msg_data_left(msg)) {
939                 /* New message, alloc head skb */
940                 head = alloc_skb(0, sk->sk_allocation);
941                 while (!head) {
942                         kcm_push(kcm);
943                         err = sk_stream_wait_memory(sk, &timeo);
944                         if (err)
945                                 goto out_error;
946
947                         head = alloc_skb(0, sk->sk_allocation);
948                 }
949
950                 skb = head;
951
952                 /* Set ip_summed to CHECKSUM_UNNECESSARY to avoid calling
953                  * csum_and_copy_from_iter from skb_do_copy_data_nocache.
954                  */
955                 skb->ip_summed = CHECKSUM_UNNECESSARY;
956         }
957
958 start:
959         while (msg_data_left(msg)) {
960                 bool merge = true;
961                 int i = skb_shinfo(skb)->nr_frags;
962                 struct page_frag *pfrag = sk_page_frag(sk);
963
964                 if (!sk_page_frag_refill(sk, pfrag))
965                         goto wait_for_memory;
966
967                 if (!skb_can_coalesce(skb, i, pfrag->page,
968                                       pfrag->offset)) {
969                         if (i == MAX_SKB_FRAGS) {
970                                 struct sk_buff *tskb;
971
972                                 tskb = alloc_skb(0, sk->sk_allocation);
973                                 if (!tskb)
974                                         goto wait_for_memory;
975
976                                 if (head == skb)
977                                         skb_shinfo(head)->frag_list = tskb;
978                                 else
979                                         skb->next = tskb;
980
981                                 skb = tskb;
982                                 skb->ip_summed = CHECKSUM_UNNECESSARY;
983                                 continue;
984                         }
985                         merge = false;
986                 }
987
988                 copy = min_t(int, msg_data_left(msg),
989                              pfrag->size - pfrag->offset);
990
991                 if (!sk_wmem_schedule(sk, copy))
992                         goto wait_for_memory;
993
994                 err = skb_copy_to_page_nocache(sk, &msg->msg_iter, skb,
995                                                pfrag->page,
996                                                pfrag->offset,
997                                                copy);
998                 if (err)
999                         goto out_error;
1000
1001                 /* Update the skb. */
1002                 if (merge) {
1003                         skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1], copy);
1004                 } else {
1005                         skb_fill_page_desc(skb, i, pfrag->page,
1006                                            pfrag->offset, copy);
1007                         get_page(pfrag->page);
1008                 }
1009
1010                 pfrag->offset += copy;
1011                 copied += copy;
1012                 if (head != skb) {
1013                         head->len += copy;
1014                         head->data_len += copy;
1015                 }
1016
1017                 continue;
1018
1019 wait_for_memory:
1020                 kcm_push(kcm);
1021                 err = sk_stream_wait_memory(sk, &timeo);
1022                 if (err)
1023                         goto out_error;
1024         }
1025
1026         if (eor) {
1027                 bool not_busy = skb_queue_empty(&sk->sk_write_queue);
1028
1029                 if (head) {
1030                         /* Message complete, queue it on send buffer */
1031                         __skb_queue_tail(&sk->sk_write_queue, head);
1032                         kcm->seq_skb = NULL;
1033                         KCM_STATS_INCR(kcm->stats.tx_msgs);
1034                 }
1035
1036                 if (msg->msg_flags & MSG_BATCH) {
1037                         kcm->tx_wait_more = true;
1038                 } else if (kcm->tx_wait_more || not_busy) {
1039                         err = kcm_write_msgs(kcm);
1040                         if (err < 0) {
1041                                 /* We got a hard error in write_msgs but have
1042                                  * already queued this message. Report an error
1043                                  * in the socket, but don't affect return value
1044                                  * from sendmsg
1045                                  */
1046                                 pr_warn("KCM: Hard failure on kcm_write_msgs\n");
1047                                 report_csk_error(&kcm->sk, -err);
1048                         }
1049                 }
1050         } else {
1051                 /* Message not complete, save state */
1052 partial_message:
1053                 if (head) {
1054                         kcm->seq_skb = head;
1055                         kcm_tx_msg(head)->last_skb = skb;
1056                 }
1057         }
1058
1059         KCM_STATS_ADD(kcm->stats.tx_bytes, copied);
1060
1061         release_sock(sk);
1062         return copied;
1063
1064 out_error:
1065         kcm_push(kcm);
1066
1067         if (copied && sock->type == SOCK_SEQPACKET) {
1068                 /* Wrote some bytes before encountering an
1069                  * error, return partial success.
1070                  */
1071                 goto partial_message;
1072         }
1073
1074         if (head != kcm->seq_skb)
1075                 kfree_skb(head);
1076
1077         err = sk_stream_error(sk, msg->msg_flags, err);
1078
1079         /* make sure we wake any epoll edge trigger waiter */
1080         if (unlikely(skb_queue_len(&sk->sk_write_queue) == 0 && err == -EAGAIN))
1081                 sk->sk_write_space(sk);
1082
1083         release_sock(sk);
1084         return err;
1085 }
1086
1087 static int kcm_recvmsg(struct socket *sock, struct msghdr *msg,
1088                        size_t len, int flags)
1089 {
1090         int noblock = flags & MSG_DONTWAIT;
1091         struct sock *sk = sock->sk;
1092         struct kcm_sock *kcm = kcm_sk(sk);
1093         int err = 0;
1094         struct strp_msg *stm;
1095         int copied = 0;
1096         struct sk_buff *skb;
1097
1098         skb = skb_recv_datagram(sk, flags, noblock, &err);
1099         if (!skb)
1100                 goto out;
1101
1102         /* Okay, have a message on the receive queue */
1103
1104         stm = strp_msg(skb);
1105
1106         if (len > stm->full_len)
1107                 len = stm->full_len;
1108
1109         err = skb_copy_datagram_msg(skb, stm->offset, msg, len);
1110         if (err < 0)
1111                 goto out;
1112
1113         copied = len;
1114         if (likely(!(flags & MSG_PEEK))) {
1115                 KCM_STATS_ADD(kcm->stats.rx_bytes, copied);
1116                 if (copied < stm->full_len) {
1117                         if (sock->type == SOCK_DGRAM) {
1118                                 /* Truncated message */
1119                                 msg->msg_flags |= MSG_TRUNC;
1120                                 goto msg_finished;
1121                         }
1122                         stm->offset += copied;
1123                         stm->full_len -= copied;
1124                 } else {
1125 msg_finished:
1126                         /* Finished with message */
1127                         msg->msg_flags |= MSG_EOR;
1128                         KCM_STATS_INCR(kcm->stats.rx_msgs);
1129                 }
1130         }
1131
1132 out:
1133         skb_free_datagram(sk, skb);
1134         return copied ? : err;
1135 }
1136
1137 static ssize_t kcm_splice_read(struct socket *sock, loff_t *ppos,
1138                                struct pipe_inode_info *pipe, size_t len,
1139                                unsigned int flags)
1140 {
1141         int noblock = flags & MSG_DONTWAIT;
1142         struct sock *sk = sock->sk;
1143         struct kcm_sock *kcm = kcm_sk(sk);
1144         struct strp_msg *stm;
1145         int err = 0;
1146         ssize_t copied;
1147         struct sk_buff *skb;
1148
1149         /* Only support splice for SOCKSEQPACKET */
1150
1151         skb = skb_recv_datagram(sk, flags, noblock, &err);
1152         if (!skb)
1153                 goto err_out;
1154
1155         /* Okay, have a message on the receive queue */
1156
1157         stm = strp_msg(skb);
1158
1159         if (len > stm->full_len)
1160                 len = stm->full_len;
1161
1162         copied = skb_splice_bits(skb, sk, stm->offset, pipe, len, flags);
1163         if (copied < 0) {
1164                 err = copied;
1165                 goto err_out;
1166         }
1167
1168         KCM_STATS_ADD(kcm->stats.rx_bytes, copied);
1169
1170         stm->offset += copied;
1171         stm->full_len -= copied;
1172
1173         /* We have no way to return MSG_EOR. If all the bytes have been
1174          * read we still leave the message in the receive socket buffer.
1175          * A subsequent recvmsg needs to be done to return MSG_EOR and
1176          * finish reading the message.
1177          */
1178
1179         skb_free_datagram(sk, skb);
1180         return copied;
1181
1182 err_out:
1183         skb_free_datagram(sk, skb);
1184         return err;
1185 }
1186
1187 /* kcm sock lock held */
1188 static void kcm_recv_disable(struct kcm_sock *kcm)
1189 {
1190         struct kcm_mux *mux = kcm->mux;
1191
1192         if (kcm->rx_disabled)
1193                 return;
1194
1195         spin_lock_bh(&mux->rx_lock);
1196
1197         kcm->rx_disabled = 1;
1198
1199         /* If a psock is reserved we'll do cleanup in unreserve */
1200         if (!kcm->rx_psock) {
1201                 if (kcm->rx_wait) {
1202                         list_del(&kcm->wait_rx_list);
1203                         /* paired with lockless reads in kcm_rfree() */
1204                         WRITE_ONCE(kcm->rx_wait, false);
1205                 }
1206
1207                 requeue_rx_msgs(mux, &kcm->sk.sk_receive_queue);
1208         }
1209
1210         spin_unlock_bh(&mux->rx_lock);
1211 }
1212
1213 /* kcm sock lock held */
1214 static void kcm_recv_enable(struct kcm_sock *kcm)
1215 {
1216         struct kcm_mux *mux = kcm->mux;
1217
1218         if (!kcm->rx_disabled)
1219                 return;
1220
1221         spin_lock_bh(&mux->rx_lock);
1222
1223         kcm->rx_disabled = 0;
1224         kcm_rcv_ready(kcm);
1225
1226         spin_unlock_bh(&mux->rx_lock);
1227 }
1228
1229 static int kcm_setsockopt(struct socket *sock, int level, int optname,
1230                           sockptr_t optval, unsigned int optlen)
1231 {
1232         struct kcm_sock *kcm = kcm_sk(sock->sk);
1233         int val, valbool;
1234         int err = 0;
1235
1236         if (level != SOL_KCM)
1237                 return -ENOPROTOOPT;
1238
1239         if (optlen < sizeof(int))
1240                 return -EINVAL;
1241
1242         if (copy_from_sockptr(&val, optval, sizeof(int)))
1243                 return -EFAULT;
1244
1245         valbool = val ? 1 : 0;
1246
1247         switch (optname) {
1248         case KCM_RECV_DISABLE:
1249                 lock_sock(&kcm->sk);
1250                 if (valbool)
1251                         kcm_recv_disable(kcm);
1252                 else
1253                         kcm_recv_enable(kcm);
1254                 release_sock(&kcm->sk);
1255                 break;
1256         default:
1257                 err = -ENOPROTOOPT;
1258         }
1259
1260         return err;
1261 }
1262
1263 static int kcm_getsockopt(struct socket *sock, int level, int optname,
1264                           char __user *optval, int __user *optlen)
1265 {
1266         struct kcm_sock *kcm = kcm_sk(sock->sk);
1267         int val, len;
1268
1269         if (level != SOL_KCM)
1270                 return -ENOPROTOOPT;
1271
1272         if (get_user(len, optlen))
1273                 return -EFAULT;
1274
1275         len = min_t(unsigned int, len, sizeof(int));
1276         if (len < 0)
1277                 return -EINVAL;
1278
1279         switch (optname) {
1280         case KCM_RECV_DISABLE:
1281                 val = kcm->rx_disabled;
1282                 break;
1283         default:
1284                 return -ENOPROTOOPT;
1285         }
1286
1287         if (put_user(len, optlen))
1288                 return -EFAULT;
1289         if (copy_to_user(optval, &val, len))
1290                 return -EFAULT;
1291         return 0;
1292 }
1293
1294 static void init_kcm_sock(struct kcm_sock *kcm, struct kcm_mux *mux)
1295 {
1296         struct kcm_sock *tkcm;
1297         struct list_head *head;
1298         int index = 0;
1299
1300         /* For SOCK_SEQPACKET sock type, datagram_poll checks the sk_state, so
1301          * we set sk_state, otherwise epoll_wait always returns right away with
1302          * EPOLLHUP
1303          */
1304         kcm->sk.sk_state = TCP_ESTABLISHED;
1305
1306         /* Add to mux's kcm sockets list */
1307         kcm->mux = mux;
1308         spin_lock_bh(&mux->lock);
1309
1310         head = &mux->kcm_socks;
1311         list_for_each_entry(tkcm, &mux->kcm_socks, kcm_sock_list) {
1312                 if (tkcm->index != index)
1313                         break;
1314                 head = &tkcm->kcm_sock_list;
1315                 index++;
1316         }
1317
1318         list_add(&kcm->kcm_sock_list, head);
1319         kcm->index = index;
1320
1321         mux->kcm_socks_cnt++;
1322         spin_unlock_bh(&mux->lock);
1323
1324         INIT_WORK(&kcm->tx_work, kcm_tx_work);
1325
1326         spin_lock_bh(&mux->rx_lock);
1327         kcm_rcv_ready(kcm);
1328         spin_unlock_bh(&mux->rx_lock);
1329 }
1330
1331 static int kcm_attach(struct socket *sock, struct socket *csock,
1332                       struct bpf_prog *prog)
1333 {
1334         struct kcm_sock *kcm = kcm_sk(sock->sk);
1335         struct kcm_mux *mux = kcm->mux;
1336         struct sock *csk;
1337         struct kcm_psock *psock = NULL, *tpsock;
1338         struct list_head *head;
1339         int index = 0;
1340         static const struct strp_callbacks cb = {
1341                 .rcv_msg = kcm_rcv_strparser,
1342                 .parse_msg = kcm_parse_func_strparser,
1343                 .read_sock_done = kcm_read_sock_done,
1344         };
1345         int err = 0;
1346
1347         csk = csock->sk;
1348         if (!csk)
1349                 return -EINVAL;
1350
1351         lock_sock(csk);
1352
1353         /* Only allow TCP sockets to be attached for now */
1354         if ((csk->sk_family != AF_INET && csk->sk_family != AF_INET6) ||
1355             csk->sk_protocol != IPPROTO_TCP) {
1356                 err = -EOPNOTSUPP;
1357                 goto out;
1358         }
1359
1360         /* Don't allow listeners or closed sockets */
1361         if (csk->sk_state == TCP_LISTEN || csk->sk_state == TCP_CLOSE) {
1362                 err = -EOPNOTSUPP;
1363                 goto out;
1364         }
1365
1366         psock = kmem_cache_zalloc(kcm_psockp, GFP_KERNEL);
1367         if (!psock) {
1368                 err = -ENOMEM;
1369                 goto out;
1370         }
1371
1372         psock->mux = mux;
1373         psock->sk = csk;
1374         psock->bpf_prog = prog;
1375
1376         write_lock_bh(&csk->sk_callback_lock);
1377
1378         /* Check if sk_user_data is already by KCM or someone else.
1379          * Must be done under lock to prevent race conditions.
1380          */
1381         if (csk->sk_user_data) {
1382                 write_unlock_bh(&csk->sk_callback_lock);
1383                 kmem_cache_free(kcm_psockp, psock);
1384                 err = -EALREADY;
1385                 goto out;
1386         }
1387
1388         err = strp_init(&psock->strp, csk, &cb);
1389         if (err) {
1390                 write_unlock_bh(&csk->sk_callback_lock);
1391                 kmem_cache_free(kcm_psockp, psock);
1392                 goto out;
1393         }
1394
1395         psock->save_data_ready = csk->sk_data_ready;
1396         psock->save_write_space = csk->sk_write_space;
1397         psock->save_state_change = csk->sk_state_change;
1398         csk->sk_user_data = psock;
1399         csk->sk_data_ready = psock_data_ready;
1400         csk->sk_write_space = psock_write_space;
1401         csk->sk_state_change = psock_state_change;
1402
1403         write_unlock_bh(&csk->sk_callback_lock);
1404
1405         sock_hold(csk);
1406
1407         /* Finished initialization, now add the psock to the MUX. */
1408         spin_lock_bh(&mux->lock);
1409         head = &mux->psocks;
1410         list_for_each_entry(tpsock, &mux->psocks, psock_list) {
1411                 if (tpsock->index != index)
1412                         break;
1413                 head = &tpsock->psock_list;
1414                 index++;
1415         }
1416
1417         list_add(&psock->psock_list, head);
1418         psock->index = index;
1419
1420         KCM_STATS_INCR(mux->stats.psock_attach);
1421         mux->psocks_cnt++;
1422         psock_now_avail(psock);
1423         spin_unlock_bh(&mux->lock);
1424
1425         /* Schedule RX work in case there are already bytes queued */
1426         strp_check_rcv(&psock->strp);
1427
1428 out:
1429         release_sock(csk);
1430
1431         return err;
1432 }
1433
1434 static int kcm_attach_ioctl(struct socket *sock, struct kcm_attach *info)
1435 {
1436         struct socket *csock;
1437         struct bpf_prog *prog;
1438         int err;
1439
1440         csock = sockfd_lookup(info->fd, &err);
1441         if (!csock)
1442                 return -ENOENT;
1443
1444         prog = bpf_prog_get_type(info->bpf_fd, BPF_PROG_TYPE_SOCKET_FILTER);
1445         if (IS_ERR(prog)) {
1446                 err = PTR_ERR(prog);
1447                 goto out;
1448         }
1449
1450         err = kcm_attach(sock, csock, prog);
1451         if (err) {
1452                 bpf_prog_put(prog);
1453                 goto out;
1454         }
1455
1456         /* Keep reference on file also */
1457
1458         return 0;
1459 out:
1460         sockfd_put(csock);
1461         return err;
1462 }
1463
1464 static void kcm_unattach(struct kcm_psock *psock)
1465 {
1466         struct sock *csk = psock->sk;
1467         struct kcm_mux *mux = psock->mux;
1468
1469         lock_sock(csk);
1470
1471         /* Stop getting callbacks from TCP socket. After this there should
1472          * be no way to reserve a kcm for this psock.
1473          */
1474         write_lock_bh(&csk->sk_callback_lock);
1475         csk->sk_user_data = NULL;
1476         csk->sk_data_ready = psock->save_data_ready;
1477         csk->sk_write_space = psock->save_write_space;
1478         csk->sk_state_change = psock->save_state_change;
1479         strp_stop(&psock->strp);
1480
1481         if (WARN_ON(psock->rx_kcm)) {
1482                 write_unlock_bh(&csk->sk_callback_lock);
1483                 release_sock(csk);
1484                 return;
1485         }
1486
1487         spin_lock_bh(&mux->rx_lock);
1488
1489         /* Stop receiver activities. After this point psock should not be
1490          * able to get onto ready list either through callbacks or work.
1491          */
1492         if (psock->ready_rx_msg) {
1493                 list_del(&psock->psock_ready_list);
1494                 kfree_skb(psock->ready_rx_msg);
1495                 psock->ready_rx_msg = NULL;
1496                 KCM_STATS_INCR(mux->stats.rx_ready_drops);
1497         }
1498
1499         spin_unlock_bh(&mux->rx_lock);
1500
1501         write_unlock_bh(&csk->sk_callback_lock);
1502
1503         /* Call strp_done without sock lock */
1504         release_sock(csk);
1505         strp_done(&psock->strp);
1506         lock_sock(csk);
1507
1508         bpf_prog_put(psock->bpf_prog);
1509
1510         spin_lock_bh(&mux->lock);
1511
1512         aggregate_psock_stats(&psock->stats, &mux->aggregate_psock_stats);
1513         save_strp_stats(&psock->strp, &mux->aggregate_strp_stats);
1514
1515         KCM_STATS_INCR(mux->stats.psock_unattach);
1516
1517         if (psock->tx_kcm) {
1518                 /* psock was reserved.  Just mark it finished and we will clean
1519                  * up in the kcm paths, we need kcm lock which can not be
1520                  * acquired here.
1521                  */
1522                 KCM_STATS_INCR(mux->stats.psock_unattach_rsvd);
1523                 spin_unlock_bh(&mux->lock);
1524
1525                 /* We are unattaching a socket that is reserved. Abort the
1526                  * socket since we may be out of sync in sending on it. We need
1527                  * to do this without the mux lock.
1528                  */
1529                 kcm_abort_tx_psock(psock, EPIPE, false);
1530
1531                 spin_lock_bh(&mux->lock);
1532                 if (!psock->tx_kcm) {
1533                         /* psock now unreserved in window mux was unlocked */
1534                         goto no_reserved;
1535                 }
1536                 psock->done = 1;
1537
1538                 /* Commit done before queuing work to process it */
1539                 smp_mb();
1540
1541                 /* Queue tx work to make sure psock->done is handled */
1542                 queue_work(kcm_wq, &psock->tx_kcm->tx_work);
1543                 spin_unlock_bh(&mux->lock);
1544         } else {
1545 no_reserved:
1546                 if (!psock->tx_stopped)
1547                         list_del(&psock->psock_avail_list);
1548                 list_del(&psock->psock_list);
1549                 mux->psocks_cnt--;
1550                 spin_unlock_bh(&mux->lock);
1551
1552                 sock_put(csk);
1553                 fput(csk->sk_socket->file);
1554                 kmem_cache_free(kcm_psockp, psock);
1555         }
1556
1557         release_sock(csk);
1558 }
1559
1560 static int kcm_unattach_ioctl(struct socket *sock, struct kcm_unattach *info)
1561 {
1562         struct kcm_sock *kcm = kcm_sk(sock->sk);
1563         struct kcm_mux *mux = kcm->mux;
1564         struct kcm_psock *psock;
1565         struct socket *csock;
1566         struct sock *csk;
1567         int err;
1568
1569         csock = sockfd_lookup(info->fd, &err);
1570         if (!csock)
1571                 return -ENOENT;
1572
1573         csk = csock->sk;
1574         if (!csk) {
1575                 err = -EINVAL;
1576                 goto out;
1577         }
1578
1579         err = -ENOENT;
1580
1581         spin_lock_bh(&mux->lock);
1582
1583         list_for_each_entry(psock, &mux->psocks, psock_list) {
1584                 if (psock->sk != csk)
1585                         continue;
1586
1587                 /* Found the matching psock */
1588
1589                 if (psock->unattaching || WARN_ON(psock->done)) {
1590                         err = -EALREADY;
1591                         break;
1592                 }
1593
1594                 psock->unattaching = 1;
1595
1596                 spin_unlock_bh(&mux->lock);
1597
1598                 /* Lower socket lock should already be held */
1599                 kcm_unattach(psock);
1600
1601                 err = 0;
1602                 goto out;
1603         }
1604
1605         spin_unlock_bh(&mux->lock);
1606
1607 out:
1608         sockfd_put(csock);
1609         return err;
1610 }
1611
1612 static struct proto kcm_proto = {
1613         .name   = "KCM",
1614         .owner  = THIS_MODULE,
1615         .obj_size = sizeof(struct kcm_sock),
1616 };
1617
1618 /* Clone a kcm socket. */
1619 static struct file *kcm_clone(struct socket *osock)
1620 {
1621         struct socket *newsock;
1622         struct sock *newsk;
1623
1624         newsock = sock_alloc();
1625         if (!newsock)
1626                 return ERR_PTR(-ENFILE);
1627
1628         newsock->type = osock->type;
1629         newsock->ops = osock->ops;
1630
1631         __module_get(newsock->ops->owner);
1632
1633         newsk = sk_alloc(sock_net(osock->sk), PF_KCM, GFP_KERNEL,
1634                          &kcm_proto, false);
1635         if (!newsk) {
1636                 sock_release(newsock);
1637                 return ERR_PTR(-ENOMEM);
1638         }
1639         sock_init_data(newsock, newsk);
1640         init_kcm_sock(kcm_sk(newsk), kcm_sk(osock->sk)->mux);
1641
1642         return sock_alloc_file(newsock, 0, osock->sk->sk_prot_creator->name);
1643 }
1644
1645 static int kcm_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1646 {
1647         int err;
1648
1649         switch (cmd) {
1650         case SIOCKCMATTACH: {
1651                 struct kcm_attach info;
1652
1653                 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
1654                         return -EFAULT;
1655
1656                 err = kcm_attach_ioctl(sock, &info);
1657
1658                 break;
1659         }
1660         case SIOCKCMUNATTACH: {
1661                 struct kcm_unattach info;
1662
1663                 if (copy_from_user(&info, (void __user *)arg, sizeof(info)))
1664                         return -EFAULT;
1665
1666                 err = kcm_unattach_ioctl(sock, &info);
1667
1668                 break;
1669         }
1670         case SIOCKCMCLONE: {
1671                 struct kcm_clone info;
1672                 struct file *file;
1673
1674                 info.fd = get_unused_fd_flags(0);
1675                 if (unlikely(info.fd < 0))
1676                         return info.fd;
1677
1678                 file = kcm_clone(sock);
1679                 if (IS_ERR(file)) {
1680                         put_unused_fd(info.fd);
1681                         return PTR_ERR(file);
1682                 }
1683                 if (copy_to_user((void __user *)arg, &info,
1684                                  sizeof(info))) {
1685                         put_unused_fd(info.fd);
1686                         fput(file);
1687                         return -EFAULT;
1688                 }
1689                 fd_install(info.fd, file);
1690                 err = 0;
1691                 break;
1692         }
1693         default:
1694                 err = -ENOIOCTLCMD;
1695                 break;
1696         }
1697
1698         return err;
1699 }
1700
1701 static void free_mux(struct rcu_head *rcu)
1702 {
1703         struct kcm_mux *mux = container_of(rcu,
1704             struct kcm_mux, rcu);
1705
1706         kmem_cache_free(kcm_muxp, mux);
1707 }
1708
1709 static void release_mux(struct kcm_mux *mux)
1710 {
1711         struct kcm_net *knet = mux->knet;
1712         struct kcm_psock *psock, *tmp_psock;
1713
1714         /* Release psocks */
1715         list_for_each_entry_safe(psock, tmp_psock,
1716                                  &mux->psocks, psock_list) {
1717                 if (!WARN_ON(psock->unattaching))
1718                         kcm_unattach(psock);
1719         }
1720
1721         if (WARN_ON(mux->psocks_cnt))
1722                 return;
1723
1724         __skb_queue_purge(&mux->rx_hold_queue);
1725
1726         mutex_lock(&knet->mutex);
1727         aggregate_mux_stats(&mux->stats, &knet->aggregate_mux_stats);
1728         aggregate_psock_stats(&mux->aggregate_psock_stats,
1729                               &knet->aggregate_psock_stats);
1730         aggregate_strp_stats(&mux->aggregate_strp_stats,
1731                              &knet->aggregate_strp_stats);
1732         list_del_rcu(&mux->kcm_mux_list);
1733         knet->count--;
1734         mutex_unlock(&knet->mutex);
1735
1736         call_rcu(&mux->rcu, free_mux);
1737 }
1738
1739 static void kcm_done(struct kcm_sock *kcm)
1740 {
1741         struct kcm_mux *mux = kcm->mux;
1742         struct sock *sk = &kcm->sk;
1743         int socks_cnt;
1744
1745         spin_lock_bh(&mux->rx_lock);
1746         if (kcm->rx_psock) {
1747                 /* Cleanup in unreserve_rx_kcm */
1748                 WARN_ON(kcm->done);
1749                 kcm->rx_disabled = 1;
1750                 kcm->done = 1;
1751                 spin_unlock_bh(&mux->rx_lock);
1752                 return;
1753         }
1754
1755         if (kcm->rx_wait) {
1756                 list_del(&kcm->wait_rx_list);
1757                 /* paired with lockless reads in kcm_rfree() */
1758                 WRITE_ONCE(kcm->rx_wait, false);
1759         }
1760         /* Move any pending receive messages to other kcm sockets */
1761         requeue_rx_msgs(mux, &sk->sk_receive_queue);
1762
1763         spin_unlock_bh(&mux->rx_lock);
1764
1765         if (WARN_ON(sk_rmem_alloc_get(sk)))
1766                 return;
1767
1768         /* Detach from MUX */
1769         spin_lock_bh(&mux->lock);
1770
1771         list_del(&kcm->kcm_sock_list);
1772         mux->kcm_socks_cnt--;
1773         socks_cnt = mux->kcm_socks_cnt;
1774
1775         spin_unlock_bh(&mux->lock);
1776
1777         if (!socks_cnt) {
1778                 /* We are done with the mux now. */
1779                 release_mux(mux);
1780         }
1781
1782         WARN_ON(kcm->rx_wait);
1783
1784         sock_put(&kcm->sk);
1785 }
1786
1787 /* Called by kcm_release to close a KCM socket.
1788  * If this is the last KCM socket on the MUX, destroy the MUX.
1789  */
1790 static int kcm_release(struct socket *sock)
1791 {
1792         struct sock *sk = sock->sk;
1793         struct kcm_sock *kcm;
1794         struct kcm_mux *mux;
1795         struct kcm_psock *psock;
1796
1797         if (!sk)
1798                 return 0;
1799
1800         kcm = kcm_sk(sk);
1801         mux = kcm->mux;
1802
1803         lock_sock(sk);
1804         sock_orphan(sk);
1805         kfree_skb(kcm->seq_skb);
1806
1807         /* Purge queue under lock to avoid race condition with tx_work trying
1808          * to act when queue is nonempty. If tx_work runs after this point
1809          * it will just return.
1810          */
1811         __skb_queue_purge(&sk->sk_write_queue);
1812
1813         /* Set tx_stopped. This is checked when psock is bound to a kcm and we
1814          * get a writespace callback. This prevents further work being queued
1815          * from the callback (unbinding the psock occurs after canceling work.
1816          */
1817         kcm->tx_stopped = 1;
1818
1819         release_sock(sk);
1820
1821         spin_lock_bh(&mux->lock);
1822         if (kcm->tx_wait) {
1823                 /* Take of tx_wait list, after this point there should be no way
1824                  * that a psock will be assigned to this kcm.
1825                  */
1826                 list_del(&kcm->wait_psock_list);
1827                 kcm->tx_wait = false;
1828         }
1829         spin_unlock_bh(&mux->lock);
1830
1831         /* Cancel work. After this point there should be no outside references
1832          * to the kcm socket.
1833          */
1834         cancel_work_sync(&kcm->tx_work);
1835
1836         lock_sock(sk);
1837         psock = kcm->tx_psock;
1838         if (psock) {
1839                 /* A psock was reserved, so we need to kill it since it
1840                  * may already have some bytes queued from a message. We
1841                  * need to do this after removing kcm from tx_wait list.
1842                  */
1843                 kcm_abort_tx_psock(psock, EPIPE, false);
1844                 unreserve_psock(kcm);
1845         }
1846         release_sock(sk);
1847
1848         WARN_ON(kcm->tx_wait);
1849         WARN_ON(kcm->tx_psock);
1850
1851         sock->sk = NULL;
1852
1853         kcm_done(kcm);
1854
1855         return 0;
1856 }
1857
1858 static const struct proto_ops kcm_dgram_ops = {
1859         .family =       PF_KCM,
1860         .owner =        THIS_MODULE,
1861         .release =      kcm_release,
1862         .bind =         sock_no_bind,
1863         .connect =      sock_no_connect,
1864         .socketpair =   sock_no_socketpair,
1865         .accept =       sock_no_accept,
1866         .getname =      sock_no_getname,
1867         .poll =         datagram_poll,
1868         .ioctl =        kcm_ioctl,
1869         .listen =       sock_no_listen,
1870         .shutdown =     sock_no_shutdown,
1871         .setsockopt =   kcm_setsockopt,
1872         .getsockopt =   kcm_getsockopt,
1873         .sendmsg =      kcm_sendmsg,
1874         .recvmsg =      kcm_recvmsg,
1875         .mmap =         sock_no_mmap,
1876         .sendpage =     kcm_sendpage,
1877 };
1878
1879 static const struct proto_ops kcm_seqpacket_ops = {
1880         .family =       PF_KCM,
1881         .owner =        THIS_MODULE,
1882         .release =      kcm_release,
1883         .bind =         sock_no_bind,
1884         .connect =      sock_no_connect,
1885         .socketpair =   sock_no_socketpair,
1886         .accept =       sock_no_accept,
1887         .getname =      sock_no_getname,
1888         .poll =         datagram_poll,
1889         .ioctl =        kcm_ioctl,
1890         .listen =       sock_no_listen,
1891         .shutdown =     sock_no_shutdown,
1892         .setsockopt =   kcm_setsockopt,
1893         .getsockopt =   kcm_getsockopt,
1894         .sendmsg =      kcm_sendmsg,
1895         .recvmsg =      kcm_recvmsg,
1896         .mmap =         sock_no_mmap,
1897         .sendpage =     kcm_sendpage,
1898         .splice_read =  kcm_splice_read,
1899 };
1900
1901 /* Create proto operation for kcm sockets */
1902 static int kcm_create(struct net *net, struct socket *sock,
1903                       int protocol, int kern)
1904 {
1905         struct kcm_net *knet = net_generic(net, kcm_net_id);
1906         struct sock *sk;
1907         struct kcm_mux *mux;
1908
1909         switch (sock->type) {
1910         case SOCK_DGRAM:
1911                 sock->ops = &kcm_dgram_ops;
1912                 break;
1913         case SOCK_SEQPACKET:
1914                 sock->ops = &kcm_seqpacket_ops;
1915                 break;
1916         default:
1917                 return -ESOCKTNOSUPPORT;
1918         }
1919
1920         if (protocol != KCMPROTO_CONNECTED)
1921                 return -EPROTONOSUPPORT;
1922
1923         sk = sk_alloc(net, PF_KCM, GFP_KERNEL, &kcm_proto, kern);
1924         if (!sk)
1925                 return -ENOMEM;
1926
1927         /* Allocate a kcm mux, shared between KCM sockets */
1928         mux = kmem_cache_zalloc(kcm_muxp, GFP_KERNEL);
1929         if (!mux) {
1930                 sk_free(sk);
1931                 return -ENOMEM;
1932         }
1933
1934         spin_lock_init(&mux->lock);
1935         spin_lock_init(&mux->rx_lock);
1936         INIT_LIST_HEAD(&mux->kcm_socks);
1937         INIT_LIST_HEAD(&mux->kcm_rx_waiters);
1938         INIT_LIST_HEAD(&mux->kcm_tx_waiters);
1939
1940         INIT_LIST_HEAD(&mux->psocks);
1941         INIT_LIST_HEAD(&mux->psocks_ready);
1942         INIT_LIST_HEAD(&mux->psocks_avail);
1943
1944         mux->knet = knet;
1945
1946         /* Add new MUX to list */
1947         mutex_lock(&knet->mutex);
1948         list_add_rcu(&mux->kcm_mux_list, &knet->mux_list);
1949         knet->count++;
1950         mutex_unlock(&knet->mutex);
1951
1952         skb_queue_head_init(&mux->rx_hold_queue);
1953
1954         /* Init KCM socket */
1955         sock_init_data(sock, sk);
1956         init_kcm_sock(kcm_sk(sk), mux);
1957
1958         return 0;
1959 }
1960
1961 static const struct net_proto_family kcm_family_ops = {
1962         .family = PF_KCM,
1963         .create = kcm_create,
1964         .owner  = THIS_MODULE,
1965 };
1966
1967 static __net_init int kcm_init_net(struct net *net)
1968 {
1969         struct kcm_net *knet = net_generic(net, kcm_net_id);
1970
1971         INIT_LIST_HEAD_RCU(&knet->mux_list);
1972         mutex_init(&knet->mutex);
1973
1974         return 0;
1975 }
1976
1977 static __net_exit void kcm_exit_net(struct net *net)
1978 {
1979         struct kcm_net *knet = net_generic(net, kcm_net_id);
1980
1981         /* All KCM sockets should be closed at this point, which should mean
1982          * that all multiplexors and psocks have been destroyed.
1983          */
1984         WARN_ON(!list_empty(&knet->mux_list));
1985 }
1986
1987 static struct pernet_operations kcm_net_ops = {
1988         .init = kcm_init_net,
1989         .exit = kcm_exit_net,
1990         .id   = &kcm_net_id,
1991         .size = sizeof(struct kcm_net),
1992 };
1993
1994 static int __init kcm_init(void)
1995 {
1996         int err = -ENOMEM;
1997
1998         kcm_muxp = kmem_cache_create("kcm_mux_cache",
1999                                      sizeof(struct kcm_mux), 0,
2000                                      SLAB_HWCACHE_ALIGN, NULL);
2001         if (!kcm_muxp)
2002                 goto fail;
2003
2004         kcm_psockp = kmem_cache_create("kcm_psock_cache",
2005                                        sizeof(struct kcm_psock), 0,
2006                                         SLAB_HWCACHE_ALIGN, NULL);
2007         if (!kcm_psockp)
2008                 goto fail;
2009
2010         kcm_wq = create_singlethread_workqueue("kkcmd");
2011         if (!kcm_wq)
2012                 goto fail;
2013
2014         err = proto_register(&kcm_proto, 1);
2015         if (err)
2016                 goto fail;
2017
2018         err = register_pernet_device(&kcm_net_ops);
2019         if (err)
2020                 goto net_ops_fail;
2021
2022         err = sock_register(&kcm_family_ops);
2023         if (err)
2024                 goto sock_register_fail;
2025
2026         err = kcm_proc_init();
2027         if (err)
2028                 goto proc_init_fail;
2029
2030         return 0;
2031
2032 proc_init_fail:
2033         sock_unregister(PF_KCM);
2034
2035 sock_register_fail:
2036         unregister_pernet_device(&kcm_net_ops);
2037
2038 net_ops_fail:
2039         proto_unregister(&kcm_proto);
2040
2041 fail:
2042         kmem_cache_destroy(kcm_muxp);
2043         kmem_cache_destroy(kcm_psockp);
2044
2045         if (kcm_wq)
2046                 destroy_workqueue(kcm_wq);
2047
2048         return err;
2049 }
2050
2051 static void __exit kcm_exit(void)
2052 {
2053         kcm_proc_exit();
2054         sock_unregister(PF_KCM);
2055         unregister_pernet_device(&kcm_net_ops);
2056         proto_unregister(&kcm_proto);
2057         destroy_workqueue(kcm_wq);
2058
2059         kmem_cache_destroy(kcm_muxp);
2060         kmem_cache_destroy(kcm_psockp);
2061 }
2062
2063 module_init(kcm_init);
2064 module_exit(kcm_exit);
2065
2066 MODULE_LICENSE("GPL");
2067 MODULE_ALIAS_NETPROTO(PF_KCM);