xt_time.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. /*
  2. * xt_time
  3. * Copyright © CC Computer Consultants GmbH, 2007
  4. *
  5. * based on ipt_time by Fabrice MARIE <fabrice@netfilter.org>
  6. * This is a module which is used for time matching
  7. * It is using some modified code from dietlibc (localtime() function)
  8. * that you can find at http://www.fefe.de/dietlibc/
  9. * This file is distributed under the terms of the GNU General Public
  10. * License (GPL). Copies of the GPL can be obtained from gnu.org/gpl.
  11. */
  12. #include <linux/ktime.h>
  13. #include <linux/module.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/types.h>
  16. #include <linux/netfilter/x_tables.h>
  17. #include <linux/netfilter/xt_time.h>
  18. struct xtm {
  19. u_int8_t month; /* (1-12) */
  20. u_int8_t monthday; /* (1-31) */
  21. u_int8_t weekday; /* (1-7) */
  22. u_int8_t hour; /* (0-23) */
  23. u_int8_t minute; /* (0-59) */
  24. u_int8_t second; /* (0-59) */
  25. unsigned int dse;
  26. };
  27. extern struct timezone sys_tz; /* ouch */
  28. static const u_int16_t days_since_year[] = {
  29. 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334,
  30. };
  31. static const u_int16_t days_since_leapyear[] = {
  32. 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335,
  33. };
  34. /*
  35. * Since time progresses forward, it is best to organize this array in reverse,
  36. * to minimize lookup time.
  37. */
  38. enum {
  39. DSE_FIRST = 2039,
  40. SECONDS_PER_DAY = 86400,
  41. };
  42. static const u_int16_t days_since_epoch[] = {
  43. /* 2039 - 2030 */
  44. 25202, 24837, 24472, 24106, 23741, 23376, 23011, 22645, 22280, 21915,
  45. /* 2029 - 2020 */
  46. 21550, 21184, 20819, 20454, 20089, 19723, 19358, 18993, 18628, 18262,
  47. /* 2019 - 2010 */
  48. 17897, 17532, 17167, 16801, 16436, 16071, 15706, 15340, 14975, 14610,
  49. /* 2009 - 2000 */
  50. 14245, 13879, 13514, 13149, 12784, 12418, 12053, 11688, 11323, 10957,
  51. /* 1999 - 1990 */
  52. 10592, 10227, 9862, 9496, 9131, 8766, 8401, 8035, 7670, 7305,
  53. /* 1989 - 1980 */
  54. 6940, 6574, 6209, 5844, 5479, 5113, 4748, 4383, 4018, 3652,
  55. /* 1979 - 1970 */
  56. 3287, 2922, 2557, 2191, 1826, 1461, 1096, 730, 365, 0,
  57. };
  58. static inline bool is_leap(unsigned int y)
  59. {
  60. return y % 4 == 0 && (y % 100 != 0 || y % 400 == 0);
  61. }
  62. /*
  63. * Each network packet has a (nano)seconds-since-the-epoch (SSTE) timestamp.
  64. * Since we match against days and daytime, the SSTE value needs to be
  65. * computed back into human-readable dates.
  66. *
  67. * This is done in three separate functions so that the most expensive
  68. * calculations are done last, in case a "simple match" can be found earlier.
  69. */
  70. static inline unsigned int localtime_1(struct xtm *r, time_t time)
  71. {
  72. unsigned int v, w;
  73. /* Each day has 86400s, so finding the hour/minute is actually easy. */
  74. v = time % SECONDS_PER_DAY;
  75. r->second = v % 60;
  76. w = v / 60;
  77. r->minute = w % 60;
  78. r->hour = w / 60;
  79. return v;
  80. }
  81. static inline void localtime_2(struct xtm *r, time_t time)
  82. {
  83. /*
  84. * Here comes the rest (weekday, monthday). First, divide the SSTE
  85. * by seconds-per-day to get the number of _days_ since the epoch.
  86. */
  87. r->dse = time / 86400;
  88. /*
  89. * 1970-01-01 (w=0) was a Thursday (4).
  90. * -1 and +1 map Sunday properly onto 7.
  91. */
  92. r->weekday = (4 + r->dse - 1) % 7 + 1;
  93. }
  94. static void localtime_3(struct xtm *r, time_t time)
  95. {
  96. unsigned int year, i, w = r->dse;
  97. /*
  98. * In each year, a certain number of days-since-the-epoch have passed.
  99. * Find the year that is closest to said days.
  100. *
  101. * Consider, for example, w=21612 (2029-03-04). Loop will abort on
  102. * dse[i] <= w, which happens when dse[i] == 21550. This implies
  103. * year == 2009. w will then be 62.
  104. */
  105. for (i = 0, year = DSE_FIRST; days_since_epoch[i] > w;
  106. ++i, --year)
  107. /* just loop */;
  108. w -= days_since_epoch[i];
  109. /*
  110. * By now we have the current year, and the day of the year.
  111. * r->yearday = w;
  112. *
  113. * On to finding the month (like above). In each month, a certain
  114. * number of days-since-New Year have passed, and find the closest
  115. * one.
  116. *
  117. * Consider w=62 (in a non-leap year). Loop will abort on
  118. * dsy[i] < w, which happens when dsy[i] == 31+28 (i == 2).
  119. * Concludes i == 2, i.e. 3rd month => March.
  120. *
  121. * (A different approach to use would be to subtract a monthlength
  122. * from w repeatedly while counting.)
  123. */
  124. if (is_leap(year)) {
  125. /* use days_since_leapyear[] in a leap year */
  126. for (i = ARRAY_SIZE(days_since_leapyear) - 1;
  127. i > 0 && days_since_leapyear[i] > w; --i)
  128. /* just loop */;
  129. r->monthday = w - days_since_leapyear[i] + 1;
  130. } else {
  131. for (i = ARRAY_SIZE(days_since_year) - 1;
  132. i > 0 && days_since_year[i] > w; --i)
  133. /* just loop */;
  134. r->monthday = w - days_since_year[i] + 1;
  135. }
  136. r->month = i + 1;
  137. }
  138. static bool
  139. time_mt(const struct sk_buff *skb, struct xt_action_param *par)
  140. {
  141. const struct xt_time_info *info = par->matchinfo;
  142. unsigned int packet_time;
  143. struct xtm current_time;
  144. s64 stamp;
  145. /*
  146. * We cannot use get_seconds() instead of __net_timestamp() here.
  147. * Suppose you have two rules:
  148. * 1. match before 13:00
  149. * 2. match after 13:00
  150. * If you match against processing time (get_seconds) it
  151. * may happen that the same packet matches both rules if
  152. * it arrived at the right moment before 13:00.
  153. */
  154. if (skb->tstamp.tv64 == 0)
  155. __net_timestamp((struct sk_buff *)skb);
  156. stamp = ktime_to_ns(skb->tstamp);
  157. stamp = div_s64(stamp, NSEC_PER_SEC);
  158. if (info->flags & XT_TIME_LOCAL_TZ)
  159. /* Adjust for local timezone */
  160. stamp -= 60 * sys_tz.tz_minuteswest;
  161. /*
  162. * xt_time will match when _all_ of the following hold:
  163. * - 'now' is in the global time range date_start..date_end
  164. * - 'now' is in the monthday mask
  165. * - 'now' is in the weekday mask
  166. * - 'now' is in the daytime range time_start..time_end
  167. * (and by default, libxt_time will set these so as to match)
  168. */
  169. if (stamp < info->date_start || stamp > info->date_stop)
  170. return false;
  171. packet_time = localtime_1(&current_time, stamp);
  172. if (info->daytime_start < info->daytime_stop) {
  173. if (packet_time < info->daytime_start ||
  174. packet_time > info->daytime_stop)
  175. return false;
  176. } else {
  177. if (packet_time < info->daytime_start &&
  178. packet_time > info->daytime_stop)
  179. return false;
  180. /** if user asked to ignore 'next day', then e.g.
  181. * '1 PM Wed, August 1st' should be treated
  182. * like 'Tue 1 PM July 31st'.
  183. *
  184. * This also causes
  185. * 'Monday, "23:00 to 01:00", to match for 2 hours, starting
  186. * Monday 23:00 to Tuesday 01:00.
  187. */
  188. if ((info->flags & XT_TIME_CONTIGUOUS) &&
  189. packet_time <= info->daytime_stop)
  190. stamp -= SECONDS_PER_DAY;
  191. }
  192. localtime_2(&current_time, stamp);
  193. if (!(info->weekdays_match & (1 << current_time.weekday)))
  194. return false;
  195. /* Do not spend time computing monthday if all days match anyway */
  196. if (info->monthdays_match != XT_TIME_ALL_MONTHDAYS) {
  197. localtime_3(&current_time, stamp);
  198. if (!(info->monthdays_match & (1 << current_time.monthday)))
  199. return false;
  200. }
  201. return true;
  202. }
  203. static int time_mt_check(const struct xt_mtchk_param *par)
  204. {
  205. const struct xt_time_info *info = par->matchinfo;
  206. if (info->daytime_start > XT_TIME_MAX_DAYTIME ||
  207. info->daytime_stop > XT_TIME_MAX_DAYTIME) {
  208. pr_info("invalid argument - start or "
  209. "stop time greater than 23:59:59\n");
  210. return -EDOM;
  211. }
  212. if (info->flags & ~XT_TIME_ALL_FLAGS) {
  213. pr_info("unknown flags 0x%x\n", info->flags & ~XT_TIME_ALL_FLAGS);
  214. return -EINVAL;
  215. }
  216. if ((info->flags & XT_TIME_CONTIGUOUS) &&
  217. info->daytime_start < info->daytime_stop)
  218. return -EINVAL;
  219. return 0;
  220. }
  221. static struct xt_match xt_time_mt_reg __read_mostly = {
  222. .name = "time",
  223. .family = NFPROTO_UNSPEC,
  224. .match = time_mt,
  225. .checkentry = time_mt_check,
  226. .matchsize = sizeof(struct xt_time_info),
  227. .me = THIS_MODULE,
  228. };
  229. static int __init time_mt_init(void)
  230. {
  231. int minutes = sys_tz.tz_minuteswest;
  232. if (minutes < 0) /* east of Greenwich */
  233. printk(KERN_INFO KBUILD_MODNAME
  234. ": kernel timezone is +%02d%02d\n",
  235. -minutes / 60, -minutes % 60);
  236. else /* west of Greenwich */
  237. printk(KERN_INFO KBUILD_MODNAME
  238. ": kernel timezone is -%02d%02d\n",
  239. minutes / 60, minutes % 60);
  240. return xt_register_match(&xt_time_mt_reg);
  241. }
  242. static void __exit time_mt_exit(void)
  243. {
  244. xt_unregister_match(&xt_time_mt_reg);
  245. }
  246. module_init(time_mt_init);
  247. module_exit(time_mt_exit);
  248. MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
  249. MODULE_DESCRIPTION("Xtables: time-based matching");
  250. MODULE_LICENSE("GPL");
  251. MODULE_ALIAS("ipt_time");
  252. MODULE_ALIAS("ip6t_time");