1
2
3
4
5
6
7
8
9
10
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
19struct xtm {
20 u_int8_t month;
21 u_int8_t monthday;
22 u_int8_t weekday;
23 u_int8_t hour;
24 u_int8_t minute;
25 u_int8_t second;
26 unsigned int dse;
27};
28
29extern struct timezone sys_tz;
30
31static const u_int16_t days_since_year[] = {
32 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334,
33};
34
35static const u_int16_t days_since_leapyear[] = {
36 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335,
37};
38
39
40
41
42
43enum {
44 DSE_FIRST = 2039,
45};
46static const u_int16_t days_since_epoch[] = {
47
48 25202, 24837, 24472, 24106, 23741, 23376, 23011, 22645, 22280, 21915,
49
50 21550, 21184, 20819, 20454, 20089, 19723, 19358, 18993, 18628, 18262,
51
52 17897, 17532, 17167, 16801, 16436, 16071, 15706, 15340, 14975, 14610,
53
54 14245, 13879, 13514, 13149, 12784, 12418, 12053, 11688, 11323, 10957,
55
56 10592, 10227, 9862, 9496, 9131, 8766, 8401, 8035, 7670, 7305,
57
58 6940, 6574, 6209, 5844, 5479, 5113, 4748, 4383, 4018, 3652,
59
60 3287, 2922, 2557, 2191, 1826, 1461, 1096, 730, 365, 0,
61};
62
63static inline bool is_leap(unsigned int y)
64{
65 return y % 4 == 0 && (y % 100 != 0 || y % 400 == 0);
66}
67
68
69
70
71
72
73
74
75
76static inline unsigned int localtime_1(struct xtm *r, time_t time)
77{
78 unsigned int v, w;
79
80
81 v = time % 86400;
82 r->second = v % 60;
83 w = v / 60;
84 r->minute = w % 60;
85 r->hour = w / 60;
86 return v;
87}
88
89static inline void localtime_2(struct xtm *r, time_t time)
90{
91
92
93
94
95 r->dse = time / 86400;
96
97
98
99
100
101 r->weekday = (4 + r->dse - 1) % 7 + 1;
102}
103
104static void localtime_3(struct xtm *r, time_t time)
105{
106 unsigned int year, i, w = r->dse;
107
108
109
110
111
112
113
114
115
116 for (i = 0, year = DSE_FIRST; days_since_epoch[i] > w;
117 ++i, --year)
118 ;
119
120 w -= days_since_epoch[i];
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137 if (is_leap(year)) {
138
139 for (i = ARRAY_SIZE(days_since_leapyear) - 1;
140 i > 0 && days_since_leapyear[i] > w; --i)
141 ;
142 r->monthday = w - days_since_leapyear[i] + 1;
143 } else {
144 for (i = ARRAY_SIZE(days_since_year) - 1;
145 i > 0 && days_since_year[i] > w; --i)
146 ;
147 r->monthday = w - days_since_year[i] + 1;
148 }
149
150 r->month = i + 1;
151}
152
153static bool
154time_mt(const struct sk_buff *skb, struct xt_action_param *par)
155{
156 const struct xt_time_info *info = par->matchinfo;
157 unsigned int packet_time;
158 struct xtm current_time;
159 s64 stamp;
160
161
162
163
164
165
166
167
168
169
170 if (skb->tstamp.tv64 == 0)
171 __net_timestamp((struct sk_buff *)skb);
172
173 stamp = ktime_to_ns(skb->tstamp);
174 stamp = div_s64(stamp, NSEC_PER_SEC);
175
176 if (info->flags & XT_TIME_LOCAL_TZ)
177
178 stamp -= 60 * sys_tz.tz_minuteswest;
179
180
181
182
183
184
185
186
187
188
189 if (stamp < info->date_start || stamp > info->date_stop)
190 return false;
191
192 packet_time = localtime_1(¤t_time, stamp);
193
194 if (info->daytime_start < info->daytime_stop) {
195 if (packet_time < info->daytime_start ||
196 packet_time > info->daytime_stop)
197 return false;
198 } else {
199 if (packet_time < info->daytime_start &&
200 packet_time > info->daytime_stop)
201 return false;
202 }
203
204 localtime_2(¤t_time, stamp);
205
206 if (!(info->weekdays_match & (1 << current_time.weekday)))
207 return false;
208
209
210 if (info->monthdays_match != XT_TIME_ALL_MONTHDAYS) {
211 localtime_3(¤t_time, stamp);
212 if (!(info->monthdays_match & (1 << current_time.monthday)))
213 return false;
214 }
215
216 return true;
217}
218
219static int time_mt_check(const struct xt_mtchk_param *par)
220{
221 const struct xt_time_info *info = par->matchinfo;
222
223 if (info->daytime_start > XT_TIME_MAX_DAYTIME ||
224 info->daytime_stop > XT_TIME_MAX_DAYTIME) {
225 pr_info("invalid argument - start or "
226 "stop time greater than 23:59:59\n");
227 return -EDOM;
228 }
229
230 return 0;
231}
232
233static struct xt_match xt_time_mt_reg __read_mostly = {
234 .name = "time",
235 .family = NFPROTO_UNSPEC,
236 .match = time_mt,
237 .checkentry = time_mt_check,
238 .matchsize = sizeof(struct xt_time_info),
239 .me = THIS_MODULE,
240};
241
242static int __init time_mt_init(void)
243{
244 int minutes = sys_tz.tz_minuteswest;
245
246 if (minutes < 0)
247 printk(KERN_INFO KBUILD_MODNAME
248 ": kernel timezone is +%02d%02d\n",
249 -minutes / 60, -minutes % 60);
250 else
251 printk(KERN_INFO KBUILD_MODNAME
252 ": kernel timezone is -%02d%02d\n",
253 minutes / 60, minutes % 60);
254
255 return xt_register_match(&xt_time_mt_reg);
256}
257
258static void __exit time_mt_exit(void)
259{
260 xt_unregister_match(&xt_time_mt_reg);
261}
262
263module_init(time_mt_init);
264module_exit(time_mt_exit);
265MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
266MODULE_DESCRIPTION("Xtables: time-based matching");
267MODULE_LICENSE("GPL");
268MODULE_ALIAS("ipt_time");
269MODULE_ALIAS("ip6t_time");
270