1 /* net/atm/raw.c - Raw AAL0 and AAL5 transports */
3 /* Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA */
6 #include <linux/module.h>
7 #include <linux/sched.h>
8 #include <linux/atmdev.h>
9 #include <linux/kernel.h>
10 #include <linux/skbuff.h>
14 #include "protocols.h"
18 #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
20 #define DPRINTK(format,args...)
25 * SKB == NULL indicates that the link is being closed
28 static void atm_push_raw(struct atm_vcc
*vcc
,struct sk_buff
*skb
)
31 struct sock
*sk
= sk_atm(vcc
);
33 skb_queue_tail(&sk
->sk_receive_queue
, skb
);
34 sk
->sk_data_ready(sk
, skb
->len
);
39 static void atm_pop_raw(struct atm_vcc
*vcc
,struct sk_buff
*skb
)
41 struct sock
*sk
= sk_atm(vcc
);
43 DPRINTK("APopR (%d) %d -= %d\n", vcc
->vci
, sk
->sk_wmem_alloc
,
45 atomic_sub(skb
->truesize
, &sk
->sk_wmem_alloc
);
46 dev_kfree_skb_any(skb
);
47 sk
->sk_write_space(sk
);
51 static int atm_send_aal0(struct atm_vcc
*vcc
,struct sk_buff
*skb
)
54 * Note that if vpi/vci are _ANY or _UNSPEC the below will
57 if (!capable(CAP_NET_ADMIN
) &&
58 (((u32
*) skb
->data
)[0] & (ATM_HDR_VPI_MASK
| ATM_HDR_VCI_MASK
)) !=
59 ((vcc
->vpi
<< ATM_HDR_VPI_SHIFT
) | (vcc
->vci
<< ATM_HDR_VCI_SHIFT
)))
62 return -EADDRNOTAVAIL
;
64 return vcc
->dev
->ops
->send(vcc
,skb
);
68 int atm_init_aal0(struct atm_vcc
*vcc
)
70 vcc
->push
= atm_push_raw
;
71 vcc
->pop
= atm_pop_raw
;
73 vcc
->send
= atm_send_aal0
;
78 int atm_init_aal34(struct atm_vcc
*vcc
)
80 vcc
->push
= atm_push_raw
;
81 vcc
->pop
= atm_pop_raw
;
83 vcc
->send
= vcc
->dev
->ops
->send
;
88 int atm_init_aal5(struct atm_vcc
*vcc
)
90 vcc
->push
= atm_push_raw
;
91 vcc
->pop
= atm_pop_raw
;
93 vcc
->send
= vcc
->dev
->ops
->send
;
98 EXPORT_SYMBOL(atm_init_aal5
);