ax25_uid.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License as published by
  4. * the Free Software Foundation; either version 2 of the License, or
  5. * (at your option) any later version.
  6. *
  7. * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
  8. */
  9. #include <linux/capability.h>
  10. #include <linux/errno.h>
  11. #include <linux/types.h>
  12. #include <linux/socket.h>
  13. #include <linux/in.h>
  14. #include <linux/kernel.h>
  15. #include <linux/timer.h>
  16. #include <linux/string.h>
  17. #include <linux/sockios.h>
  18. #include <linux/net.h>
  19. #include <linux/spinlock.h>
  20. #include <linux/slab.h>
  21. #include <net/ax25.h>
  22. #include <linux/inet.h>
  23. #include <linux/netdevice.h>
  24. #include <linux/if_arp.h>
  25. #include <linux/skbuff.h>
  26. #include <net/sock.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/system.h>
  29. #include <linux/fcntl.h>
  30. #include <linux/mm.h>
  31. #include <linux/interrupt.h>
  32. #include <linux/list.h>
  33. #include <linux/notifier.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/seq_file.h>
  36. #include <linux/stat.h>
  37. #include <linux/netfilter.h>
  38. #include <linux/sysctl.h>
  39. #include <net/ip.h>
  40. #include <net/arp.h>
  41. /*
  42. * Callsign/UID mapper. This is in kernel space for security on multi-amateur machines.
  43. */
  44. static HLIST_HEAD(ax25_uid_list);
  45. static DEFINE_RWLOCK(ax25_uid_lock);
  46. int ax25_uid_policy;
  47. EXPORT_SYMBOL(ax25_uid_policy);
  48. ax25_uid_assoc *ax25_findbyuid(uid_t uid)
  49. {
  50. ax25_uid_assoc *ax25_uid, *res = NULL;
  51. struct hlist_node *node;
  52. read_lock(&ax25_uid_lock);
  53. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  54. if (ax25_uid->uid == uid) {
  55. ax25_uid_hold(ax25_uid);
  56. res = ax25_uid;
  57. break;
  58. }
  59. }
  60. read_unlock(&ax25_uid_lock);
  61. return res;
  62. }
  63. EXPORT_SYMBOL(ax25_findbyuid);
  64. int ax25_uid_ioctl(int cmd, struct sockaddr_ax25 *sax)
  65. {
  66. ax25_uid_assoc *ax25_uid;
  67. struct hlist_node *node;
  68. ax25_uid_assoc *user;
  69. unsigned long res;
  70. switch (cmd) {
  71. case SIOCAX25GETUID:
  72. res = -ENOENT;
  73. read_lock(&ax25_uid_lock);
  74. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  75. if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) {
  76. res = ax25_uid->uid;
  77. break;
  78. }
  79. }
  80. read_unlock(&ax25_uid_lock);
  81. return res;
  82. case SIOCAX25ADDUID:
  83. if (!capable(CAP_NET_ADMIN))
  84. return -EPERM;
  85. user = ax25_findbyuid(sax->sax25_uid);
  86. if (user) {
  87. ax25_uid_put(user);
  88. return -EEXIST;
  89. }
  90. if (sax->sax25_uid == 0)
  91. return -EINVAL;
  92. if ((ax25_uid = kmalloc(sizeof(*ax25_uid), GFP_KERNEL)) == NULL)
  93. return -ENOMEM;
  94. atomic_set(&ax25_uid->refcount, 1);
  95. ax25_uid->uid = sax->sax25_uid;
  96. ax25_uid->call = sax->sax25_call;
  97. write_lock(&ax25_uid_lock);
  98. hlist_add_head(&ax25_uid->uid_node, &ax25_uid_list);
  99. write_unlock(&ax25_uid_lock);
  100. return 0;
  101. case SIOCAX25DELUID:
  102. if (!capable(CAP_NET_ADMIN))
  103. return -EPERM;
  104. ax25_uid = NULL;
  105. write_lock(&ax25_uid_lock);
  106. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  107. if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0)
  108. break;
  109. }
  110. if (ax25_uid == NULL) {
  111. write_unlock(&ax25_uid_lock);
  112. return -ENOENT;
  113. }
  114. hlist_del_init(&ax25_uid->uid_node);
  115. ax25_uid_put(ax25_uid);
  116. write_unlock(&ax25_uid_lock);
  117. return 0;
  118. default:
  119. return -EINVAL;
  120. }
  121. return -EINVAL; /*NOTREACHED */
  122. }
  123. #ifdef CONFIG_PROC_FS
  124. static void *ax25_uid_seq_start(struct seq_file *seq, loff_t *pos)
  125. __acquires(ax25_uid_lock)
  126. {
  127. read_lock(&ax25_uid_lock);
  128. return seq_hlist_start_head(&ax25_uid_list, *pos);
  129. }
  130. static void *ax25_uid_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  131. {
  132. return seq_hlist_next(v, &ax25_uid_list, pos);
  133. }
  134. static void ax25_uid_seq_stop(struct seq_file *seq, void *v)
  135. __releases(ax25_uid_lock)
  136. {
  137. read_unlock(&ax25_uid_lock);
  138. }
  139. static int ax25_uid_seq_show(struct seq_file *seq, void *v)
  140. {
  141. char buf[11];
  142. if (v == SEQ_START_TOKEN)
  143. seq_printf(seq, "Policy: %d\n", ax25_uid_policy);
  144. else {
  145. struct ax25_uid_assoc *pt;
  146. pt = hlist_entry(v, struct ax25_uid_assoc, uid_node);
  147. seq_printf(seq, "%6d %s\n", pt->uid, ax2asc(buf, &pt->call));
  148. }
  149. return 0;
  150. }
  151. static const struct seq_operations ax25_uid_seqops = {
  152. .start = ax25_uid_seq_start,
  153. .next = ax25_uid_seq_next,
  154. .stop = ax25_uid_seq_stop,
  155. .show = ax25_uid_seq_show,
  156. };
  157. static int ax25_uid_info_open(struct inode *inode, struct file *file)
  158. {
  159. return seq_open(file, &ax25_uid_seqops);
  160. }
  161. const struct file_operations ax25_uid_fops = {
  162. .owner = THIS_MODULE,
  163. .open = ax25_uid_info_open,
  164. .read = seq_read,
  165. .llseek = seq_lseek,
  166. .release = seq_release,
  167. };
  168. #endif
  169. /*
  170. * Free all memory associated with UID/Callsign structures.
  171. */
  172. void __exit ax25_uid_free(void)
  173. {
  174. ax25_uid_assoc *ax25_uid;
  175. struct hlist_node *node;
  176. write_lock(&ax25_uid_lock);
  177. again:
  178. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  179. hlist_del_init(&ax25_uid->uid_node);
  180. ax25_uid_put(ax25_uid);
  181. goto again;
  182. }
  183. write_unlock(&ax25_uid_lock);
  184. }