Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* net/atm/raw.c - Raw AAL0 and AAL5 transports */ |
| 3 | |
| 4 | /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */ |
| 5 | |
Joe Perches | 9982446 | 2010-01-26 11:40:00 +0000 | [diff] [blame] | 6 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/atmdev.h> |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 10 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/skbuff.h> |
| 13 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
| 16 | #include "common.h" |
| 17 | #include "protocols.h" |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | /* |
| 20 | * SKB == NULL indicates that the link is being closed |
| 21 | */ |
| 22 | |
Joe Perches | fa61f0c | 2010-01-26 11:40:15 +0000 | [diff] [blame] | 23 | static void atm_push_raw(struct atm_vcc *vcc, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | { |
| 25 | if (skb) { |
| 26 | struct sock *sk = sk_atm(vcc); |
| 27 | |
| 28 | skb_queue_tail(&sk->sk_receive_queue, skb); |
David S. Miller | 676d236 | 2014-04-11 16:15:36 -0400 | [diff] [blame] | 29 | sk->sk_data_ready(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | } |
| 31 | } |
| 32 | |
Joe Perches | fa61f0c | 2010-01-26 11:40:15 +0000 | [diff] [blame] | 33 | static void atm_pop_raw(struct atm_vcc *vcc, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | { |
| 35 | struct sock *sk = sk_atm(vcc); |
| 36 | |
Joe Perches | 9982446 | 2010-01-26 11:40:00 +0000 | [diff] [blame] | 37 | pr_debug("(%d) %d -= %d\n", |
David Woodhouse | 9bbe60a | 2018-06-16 11:55:44 +0100 | [diff] [blame] | 38 | vcc->vci, sk_wmem_alloc_get(sk), ATM_SKB(skb)->acct_truesize); |
| 39 | WARN_ON(refcount_sub_and_test(ATM_SKB(skb)->acct_truesize, &sk->sk_wmem_alloc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | dev_kfree_skb_any(skb); |
| 41 | sk->sk_write_space(sk); |
| 42 | } |
| 43 | |
Joe Perches | fa61f0c | 2010-01-26 11:40:15 +0000 | [diff] [blame] | 44 | static int atm_send_aal0(struct atm_vcc *vcc, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
| 46 | /* |
| 47 | * Note that if vpi/vci are _ANY or _UNSPEC the below will |
| 48 | * still work |
| 49 | */ |
| 50 | if (!capable(CAP_NET_ADMIN) && |
Joe Perches | fa61f0c | 2010-01-26 11:40:15 +0000 | [diff] [blame] | 51 | (((u32 *)skb->data)[0] & (ATM_HDR_VPI_MASK | ATM_HDR_VCI_MASK)) != |
| 52 | ((vcc->vpi << ATM_HDR_VPI_SHIFT) | |
| 53 | (vcc->vci << ATM_HDR_VCI_SHIFT))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | kfree_skb(skb); |
| 55 | return -EADDRNOTAVAIL; |
YOSHIFUJI Hideaki | f7d5745 | 2007-02-09 23:24:29 +0900 | [diff] [blame] | 56 | } |
Joe Perches | fa61f0c | 2010-01-26 11:40:15 +0000 | [diff] [blame] | 57 | return vcc->dev->ops->send(vcc, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | int atm_init_aal0(struct atm_vcc *vcc) |
| 61 | { |
| 62 | vcc->push = atm_push_raw; |
| 63 | vcc->pop = atm_pop_raw; |
| 64 | vcc->push_oam = NULL; |
| 65 | vcc->send = atm_send_aal0; |
| 66 | return 0; |
| 67 | } |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | int atm_init_aal34(struct atm_vcc *vcc) |
| 70 | { |
| 71 | vcc->push = atm_push_raw; |
| 72 | vcc->pop = atm_pop_raw; |
| 73 | vcc->push_oam = NULL; |
| 74 | vcc->send = vcc->dev->ops->send; |
| 75 | return 0; |
| 76 | } |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | int atm_init_aal5(struct atm_vcc *vcc) |
| 79 | { |
| 80 | vcc->push = atm_push_raw; |
| 81 | vcc->pop = atm_pop_raw; |
| 82 | vcc->push_oam = NULL; |
| 83 | vcc->send = vcc->dev->ops->send; |
| 84 | return 0; |
| 85 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | EXPORT_SYMBOL(atm_init_aal5); |