l2cap_proc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.    BlueZ - Bluetooth protocol stack for Linux
  3.    Copyright (C) 2000-2001 Qualcomm Incorporated
  4.    Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License version 2 as
  7.    published by the Free Software Foundation;
  8.    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  9.    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  10.    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  11.    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  12.    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 
  13.    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 
  14.    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 
  15.    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16.    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 
  17.    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 
  18.    SOFTWARE IS DISCLAIMED.
  19. */
  20. /*
  21.  * BlueZ L2CAP proc fs support.
  22.  *
  23.  * $Id: l2cap_proc.c,v 1.2 2001/06/02 01:40:09 maxk Exp $
  24.  */
  25. #include <linux/config.h>
  26. #include <linux/module.h>
  27. #include <linux/types.h>
  28. #include <linux/errno.h>
  29. #include <linux/kernel.h>
  30. #include <linux/major.h>
  31. #include <linux/sched.h>
  32. #include <linux/slab.h>
  33. #include <linux/poll.h>
  34. #include <linux/fcntl.h>
  35. #include <linux/init.h>
  36. #include <linux/skbuff.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/socket.h>
  39. #include <linux/skbuff.h>
  40. #include <linux/proc_fs.h>
  41. #include <linux/list.h>
  42. #include <net/sock.h>
  43. #include <asm/system.h>
  44. #include <asm/uaccess.h>
  45. #include <net/bluetooth/bluez.h>
  46. #include <net/bluetooth/bluetooth.h>
  47. #include <net/bluetooth/hci_core.h>
  48. #include <net/bluetooth/l2cap_core.h>
  49. #ifndef L2CAP_DEBUG
  50. #undef  DBG
  51. #define DBG( A... )
  52. #endif
  53. /* ----- PROC fs support ----- */
  54. static int l2cap_conn_dump(char *buf, struct l2cap_iff *iff)
  55. {
  56. struct list_head *p;
  57. char *ptr = buf;
  58. list_for_each(p, &iff->conn_list) {
  59. struct l2cap_conn *c;
  60. c = list_entry(p, struct l2cap_conn, list);
  61. ptr += sprintf(ptr, "    %p %d %p %p %s %sn", 
  62. c, c->state, c->iff, c->hconn, batostr(&c->src), batostr(&c->dst));
  63. }
  64. return ptr - buf;
  65. }
  66. static int l2cap_iff_dump(char *buf)
  67. {
  68. struct list_head *p;
  69. char *ptr = buf;
  70. ptr += sprintf(ptr, "Interfaces:n");
  71. write_lock(&l2cap_rt_lock);
  72. list_for_each(p, &l2cap_iff_list) {
  73. struct l2cap_iff *iff;
  74. iff = list_entry(p, struct l2cap_iff, list);
  75. ptr += sprintf(ptr, "  %s %p %pn", iff->hdev->name, iff, iff->hdev);
  76. l2cap_iff_lock(iff);
  77. ptr += l2cap_conn_dump(ptr, iff);
  78. l2cap_iff_unlock(iff);
  79. }
  80. write_unlock(&l2cap_rt_lock);
  81. ptr += sprintf(ptr, "n");
  82. return ptr - buf;
  83. }
  84. static int l2cap_sock_dump(char *buf, struct bluez_sock_list *list)
  85. {
  86. struct l2cap_pinfo *pi;
  87. struct sock *sk;
  88. char *ptr = buf;
  89. ptr += sprintf(ptr, "Sockets:n");
  90. write_lock(&list->lock);
  91. for (sk = list->head; sk; sk = sk->next) {
  92. pi = l2cap_pi(sk);
  93. ptr += sprintf(ptr, "  %p %d %p %d %s %s 0x%4.4x 0x%4.4x %d %dn", sk, sk->state, pi->conn, pi->psm,
  94.                batostr(&pi->src), batostr(&pi->dst), pi->scid, pi->dcid, pi->imtu, pi->omtu );
  95. }
  96. write_unlock(&list->lock);
  97. ptr += sprintf(ptr, "n");
  98. return ptr - buf;
  99. }
  100. static int l2cap_read_proc(char *buf, char **start, off_t offset, int count, int *eof, void *priv)
  101. {
  102. char *ptr = buf;
  103. int len;
  104. DBG("count %d, offset %ld", count, offset);
  105. ptr += l2cap_iff_dump(ptr);
  106. ptr += l2cap_sock_dump(ptr, &l2cap_sk_list);
  107. len  = ptr - buf;
  108. if (len <= count + offset)
  109. *eof = 1;
  110. *start = buf + offset;
  111. len -= offset;
  112. if (len > count)
  113. len = count;
  114. if (len < 0)
  115. len = 0;
  116. return len;
  117. }
  118. void l2cap_register_proc(void)
  119. {
  120. create_proc_read_entry("bluetooth/l2cap", 0, 0, l2cap_read_proc, NULL);
  121. }
  122. void l2cap_unregister_proc(void)
  123. {
  124. remove_proc_entry("bluetooth/l2cap", NULL);
  125. }