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 <linux/export.h>
  40. #include <net/ip.h>
  41. #include <net/arp.h>
  42. /*
  43. * Callsign/UID mapper. This is in kernel space for security on multi-amateur machines.
  44. */
  45. static HLIST_HEAD(ax25_uid_list);
  46. static DEFINE_RWLOCK(ax25_uid_lock);
  47. int ax25_uid_policy;
  48. EXPORT_SYMBOL(ax25_uid_policy);
  49. ax25_uid_assoc *ax25_findbyuid(uid_t uid)
  50. {
  51. ax25_uid_assoc *ax25_uid, *res = NULL;
  52. struct hlist_node *node;
  53. read_lock(&ax25_uid_lock);
  54. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  55. if (ax25_uid->uid == uid) {
  56. ax25_uid_hold(ax25_uid);
  57. res = ax25_uid;
  58. break;
  59. }
  60. }
  61. read_unlock(&ax25_uid_lock);
  62. return res;
  63. }
  64. EXPORT_SYMBOL(ax25_findbyuid);
  65. int ax25_uid_ioctl(int cmd, struct sockaddr_ax25 *sax)
  66. {
  67. ax25_uid_assoc *ax25_uid;
  68. struct hlist_node *node;
  69. ax25_uid_assoc *user;
  70. unsigned long res;
  71. switch (cmd) {
  72. case SIOCAX25GETUID:
  73. res = -ENOENT;
  74. read_lock(&ax25_uid_lock);
  75. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  76. if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0) {
  77. res = ax25_uid->uid;
  78. break;
  79. }
  80. }
  81. read_unlock(&ax25_uid_lock);
  82. return res;
  83. case SIOCAX25ADDUID:
  84. if (!capable(CAP_NET_ADMIN))
  85. return -EPERM;
  86. user = ax25_findbyuid(sax->sax25_uid);
  87. if (user) {
  88. ax25_uid_put(user);
  89. return -EEXIST;
  90. }
  91. if (sax->sax25_uid == 0)
  92. return -EINVAL;
  93. if ((ax25_uid = kmalloc(sizeof(*ax25_uid), GFP_KERNEL)) == NULL)
  94. return -ENOMEM;
  95. atomic_set(&ax25_uid->refcount, 1);
  96. ax25_uid->uid = sax->sax25_uid;
  97. ax25_uid->call = sax->sax25_call;
  98. write_lock(&ax25_uid_lock);
  99. hlist_add_head(&ax25_uid->uid_node, &ax25_uid_list);
  100. write_unlock(&ax25_uid_lock);
  101. return 0;
  102. case SIOCAX25DELUID:
  103. if (!capable(CAP_NET_ADMIN))
  104. return -EPERM;
  105. ax25_uid = NULL;
  106. write_lock(&ax25_uid_lock);
  107. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  108. if (ax25cmp(&sax->sax25_call, &ax25_uid->call) == 0)
  109. break;
  110. }
  111. if (ax25_uid == NULL) {
  112. write_unlock(&ax25_uid_lock);
  113. return -ENOENT;
  114. }
  115. hlist_del_init(&ax25_uid->uid_node);
  116. ax25_uid_put(ax25_uid);
  117. write_unlock(&ax25_uid_lock);
  118. return 0;
  119. default:
  120. return -EINVAL;
  121. }
  122. return -EINVAL; /*NOTREACHED */
  123. }
  124. #ifdef CONFIG_PROC_FS
  125. static void *ax25_uid_seq_start(struct seq_file *seq, loff_t *pos)
  126. __acquires(ax25_uid_lock)
  127. {
  128. read_lock(&ax25_uid_lock);
  129. return seq_hlist_start_head(&ax25_uid_list, *pos);
  130. }
  131. static void *ax25_uid_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  132. {
  133. return seq_hlist_next(v, &ax25_uid_list, pos);
  134. }
  135. static void ax25_uid_seq_stop(struct seq_file *seq, void *v)
  136. __releases(ax25_uid_lock)
  137. {
  138. read_unlock(&ax25_uid_lock);
  139. }
  140. static int ax25_uid_seq_show(struct seq_file *seq, void *v)
  141. {
  142. char buf[11];
  143. if (v == SEQ_START_TOKEN)
  144. seq_printf(seq, "Policy: %d\n", ax25_uid_policy);
  145. else {
  146. struct ax25_uid_assoc *pt;
  147. pt = hlist_entry(v, struct ax25_uid_assoc, uid_node);
  148. seq_printf(seq, "%6d %s\n", pt->uid, ax2asc(buf, &pt->call));
  149. }
  150. return 0;
  151. }
  152. static const struct seq_operations ax25_uid_seqops = {
  153. .start = ax25_uid_seq_start,
  154. .next = ax25_uid_seq_next,
  155. .stop = ax25_uid_seq_stop,
  156. .show = ax25_uid_seq_show,
  157. };
  158. static int ax25_uid_info_open(struct inode *inode, struct file *file)
  159. {
  160. return seq_open(file, &ax25_uid_seqops);
  161. }
  162. const struct file_operations ax25_uid_fops = {
  163. .owner = THIS_MODULE,
  164. .open = ax25_uid_info_open,
  165. .read = seq_read,
  166. .llseek = seq_lseek,
  167. .release = seq_release,
  168. };
  169. #endif
  170. /*
  171. * Free all memory associated with UID/Callsign structures.
  172. */
  173. void __exit ax25_uid_free(void)
  174. {
  175. ax25_uid_assoc *ax25_uid;
  176. struct hlist_node *node;
  177. write_lock(&ax25_uid_lock);
  178. again:
  179. ax25_uid_for_each(ax25_uid, node, &ax25_uid_list) {
  180. hlist_del_init(&ax25_uid->uid_node);
  181. ax25_uid_put(ax25_uid);
  182. goto again;
  183. }
  184. write_unlock(&ax25_uid_lock);
  185. }