Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* $Id: isdn_concap.c,v 1.1.2.2 2004/01/12 22:37:19 keil Exp $ |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 2 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Linux ISDN subsystem, protocol encapsulation |
| 4 | * |
| 5 | * This software may be used and distributed according to the terms |
| 6 | * of the GNU General Public License, incorporated herein by reference. |
| 7 | * |
| 8 | */ |
| 9 | |
| 10 | /* Stuff to support the concap_proto by isdn4linux. isdn4linux - specific |
| 11 | * stuff goes here. Stuff that depends only on the concap protocol goes to |
| 12 | * another -- protocol specific -- source file. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | |
| 17 | #include <linux/isdn.h> |
| 18 | #include "isdn_x25iface.h" |
| 19 | #include "isdn_net.h" |
| 20 | #include <linux/concap.h> |
| 21 | #include "isdn_concap.h" |
| 22 | |
| 23 | |
| 24 | /* The following set of device service operations are for encapsulation |
| 25 | protocols that require for reliable datalink semantics. That means: |
| 26 | |
| 27 | - before any data is to be submitted the connection must explicitly |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 28 | be set up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | - after the successful set up of the connection is signalled the |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 30 | connection is considered to be reliably up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 32 | Auto-dialing ist not compatible with this requirements. Thus, auto-dialing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | is completely bypassed. |
| 34 | |
| 35 | It might be possible to implement a (non standardized) datalink protocol |
| 36 | that provides a reliable data link service while using some auto dialing |
| 37 | mechanism. Such a protocol would need an auxiliary channel (i.e. user-user- |
| 38 | signaling on the D-channel) while the B-channel is down. |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 39 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | |
Adrian Bunk | 3e206b0 | 2005-06-25 14:58:35 -0700 | [diff] [blame] | 42 | static int isdn_concap_dl_data_req(struct concap_proto *concap, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 44 | struct net_device *ndev = concap->net_dev; |
Wang Chen | 838361f | 2008-12-03 15:49:46 -0800 | [diff] [blame] | 45 | isdn_net_dev *nd = ((isdn_net_local *) netdev_priv(ndev))->netdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | isdn_net_local *lp = isdn_net_get_locked_lp(nd); |
| 47 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 48 | IX25DEBUG("isdn_concap_dl_data_req: %s \n", concap->net_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | if (!lp) { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 50 | IX25DEBUG("isdn_concap_dl_data_req: %s : isdn_net_send_skb returned %d\n", concap->net_dev->name, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | return 1; |
| 52 | } |
| 53 | lp->huptimer = 0; |
| 54 | isdn_net_writebuf_skb(lp, skb); |
| 55 | spin_unlock_bh(&lp->xmit_lock); |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 56 | IX25DEBUG("isdn_concap_dl_data_req: %s : isdn_net_send_skb returned %d\n", concap->net_dev->name, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | |
Adrian Bunk | 3e206b0 | 2005-06-25 14:58:35 -0700 | [diff] [blame] | 61 | static int isdn_concap_dl_connect_req(struct concap_proto *concap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 63 | struct net_device *ndev = concap->net_dev; |
Joe Perches | a17531f | 2010-11-15 11:12:24 +0000 | [diff] [blame] | 64 | isdn_net_local *lp = netdev_priv(ndev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | int ret; |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 66 | IX25DEBUG("isdn_concap_dl_connect_req: %s \n", ndev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* dial ... */ |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 69 | ret = isdn_net_dial_req(lp); |
| 70 | if (ret) IX25DEBUG("dialing failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | return ret; |
| 72 | } |
| 73 | |
Adrian Bunk | 3e206b0 | 2005-06-25 14:58:35 -0700 | [diff] [blame] | 74 | static int isdn_concap_dl_disconn_req(struct concap_proto *concap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 76 | IX25DEBUG("isdn_concap_dl_disconn_req: %s \n", concap->net_dev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 78 | isdn_net_hangup(concap->net_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | struct concap_device_ops isdn_concap_reliable_dl_dops = { |
| 83 | &isdn_concap_dl_data_req, |
| 84 | &isdn_concap_dl_connect_req, |
| 85 | &isdn_concap_dl_disconn_req |
| 86 | }; |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | /* The following should better go into a dedicated source file such that |
| 89 | this sourcefile does not need to include any protocol specific header |
| 90 | files. For now: |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 91 | */ |
| 92 | struct concap_proto *isdn_concap_new(int encap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | { |
Joe Perches | 475be4d | 2012-02-19 19:52:38 -0800 | [diff] [blame] | 94 | switch (encap) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | case ISDN_NET_ENCAP_X25IFACE: |
| 96 | return isdn_x25iface_proto_new(); |
| 97 | } |
| 98 | return NULL; |
| 99 | } |