0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
0014
0015 #include <linux/ktime.h>
0016 #include <linux/module.h>
0017 #include <linux/skbuff.h>
0018 #include <linux/types.h>
0019 #include <linux/netfilter/x_tables.h>
0020 #include <linux/netfilter/xt_time.h>
0021
0022 struct xtm {
0023 u_int8_t month;
0024 u_int8_t monthday;
0025 u_int8_t weekday;
0026 u_int8_t hour;
0027 u_int8_t minute;
0028 u_int8_t second;
0029 unsigned int dse;
0030 };
0031
0032 extern struct timezone sys_tz;
0033
0034 static const u_int16_t days_since_year[] = {
0035 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334,
0036 };
0037
0038 static const u_int16_t days_since_leapyear[] = {
0039 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335,
0040 };
0041
0042
0043
0044
0045
0046 enum {
0047 DSE_FIRST = 2039,
0048 SECONDS_PER_DAY = 86400,
0049 };
0050 static const u_int16_t days_since_epoch[] = {
0051
0052 25202, 24837, 24472, 24106, 23741, 23376, 23011, 22645, 22280, 21915,
0053
0054 21550, 21184, 20819, 20454, 20089, 19723, 19358, 18993, 18628, 18262,
0055
0056 17897, 17532, 17167, 16801, 16436, 16071, 15706, 15340, 14975, 14610,
0057
0058 14245, 13879, 13514, 13149, 12784, 12418, 12053, 11688, 11323, 10957,
0059
0060 10592, 10227, 9862, 9496, 9131, 8766, 8401, 8035, 7670, 7305,
0061
0062 6940, 6574, 6209, 5844, 5479, 5113, 4748, 4383, 4018, 3652,
0063
0064 3287, 2922, 2557, 2191, 1826, 1461, 1096, 730, 365, 0,
0065 };
0066
0067 static inline bool is_leap(unsigned int y)
0068 {
0069 return y % 4 == 0 && (y % 100 != 0 || y % 400 == 0);
0070 }
0071
0072
0073
0074
0075
0076
0077
0078
0079
0080 static inline unsigned int localtime_1(struct xtm *r, time64_t time)
0081 {
0082 unsigned int v, w;
0083
0084
0085 div_u64_rem(time, SECONDS_PER_DAY, &v);
0086 r->second = v % 60;
0087 w = v / 60;
0088 r->minute = w % 60;
0089 r->hour = w / 60;
0090 return v;
0091 }
0092
0093 static inline void localtime_2(struct xtm *r, time64_t time)
0094 {
0095
0096
0097
0098
0099 r->dse = div_u64(time, SECONDS_PER_DAY);
0100
0101
0102
0103
0104
0105 r->weekday = (4 + r->dse - 1) % 7 + 1;
0106 }
0107
0108 static void localtime_3(struct xtm *r, time64_t time)
0109 {
0110 unsigned int year, i, w = r->dse;
0111
0112
0113
0114
0115
0116
0117
0118
0119
0120 for (i = 0, year = DSE_FIRST; days_since_epoch[i] > w;
0121 ++i, --year)
0122 ;
0123
0124 w -= days_since_epoch[i];
0125
0126
0127
0128
0129
0130
0131
0132
0133
0134
0135
0136
0137
0138
0139
0140
0141 if (is_leap(year)) {
0142
0143 for (i = ARRAY_SIZE(days_since_leapyear) - 1;
0144 i > 0 && days_since_leapyear[i] > w; --i)
0145 ;
0146 r->monthday = w - days_since_leapyear[i] + 1;
0147 } else {
0148 for (i = ARRAY_SIZE(days_since_year) - 1;
0149 i > 0 && days_since_year[i] > w; --i)
0150 ;
0151 r->monthday = w - days_since_year[i] + 1;
0152 }
0153
0154 r->month = i + 1;
0155 }
0156
0157 static bool
0158 time_mt(const struct sk_buff *skb, struct xt_action_param *par)
0159 {
0160 const struct xt_time_info *info = par->matchinfo;
0161 unsigned int packet_time;
0162 struct xtm current_time;
0163 time64_t stamp;
0164
0165
0166
0167
0168
0169
0170
0171
0172
0173
0174
0175
0176
0177
0178
0179
0180
0181
0182
0183 stamp = ktime_get_real_seconds();
0184
0185 if (info->flags & XT_TIME_LOCAL_TZ)
0186
0187 stamp -= 60 * sys_tz.tz_minuteswest;
0188
0189
0190
0191
0192
0193
0194
0195
0196
0197
0198
0199
0200
0201 if (stamp < info->date_start || stamp > info->date_stop)
0202 return false;
0203
0204 packet_time = localtime_1(¤t_time, stamp);
0205
0206 if (info->daytime_start < info->daytime_stop) {
0207 if (packet_time < info->daytime_start ||
0208 packet_time > info->daytime_stop)
0209 return false;
0210 } else {
0211 if (packet_time < info->daytime_start &&
0212 packet_time > info->daytime_stop)
0213 return false;
0214
0215
0216
0217
0218
0219
0220
0221
0222
0223 if ((info->flags & XT_TIME_CONTIGUOUS) &&
0224 packet_time <= info->daytime_stop)
0225 stamp -= SECONDS_PER_DAY;
0226 }
0227
0228 localtime_2(¤t_time, stamp);
0229
0230 if (!(info->weekdays_match & (1 << current_time.weekday)))
0231 return false;
0232
0233
0234 if (info->monthdays_match != XT_TIME_ALL_MONTHDAYS) {
0235 localtime_3(¤t_time, stamp);
0236 if (!(info->monthdays_match & (1 << current_time.monthday)))
0237 return false;
0238 }
0239
0240 return true;
0241 }
0242
0243 static int time_mt_check(const struct xt_mtchk_param *par)
0244 {
0245 const struct xt_time_info *info = par->matchinfo;
0246
0247 if (info->daytime_start > XT_TIME_MAX_DAYTIME ||
0248 info->daytime_stop > XT_TIME_MAX_DAYTIME) {
0249 pr_info_ratelimited("invalid argument - start or stop time greater than 23:59:59\n");
0250 return -EDOM;
0251 }
0252
0253 if (info->flags & ~XT_TIME_ALL_FLAGS) {
0254 pr_info_ratelimited("unknown flags 0x%x\n",
0255 info->flags & ~XT_TIME_ALL_FLAGS);
0256 return -EINVAL;
0257 }
0258
0259 if ((info->flags & XT_TIME_CONTIGUOUS) &&
0260 info->daytime_start < info->daytime_stop)
0261 return -EINVAL;
0262
0263 return 0;
0264 }
0265
0266 static struct xt_match xt_time_mt_reg __read_mostly = {
0267 .name = "time",
0268 .family = NFPROTO_UNSPEC,
0269 .match = time_mt,
0270 .checkentry = time_mt_check,
0271 .matchsize = sizeof(struct xt_time_info),
0272 .me = THIS_MODULE,
0273 };
0274
0275 static int __init time_mt_init(void)
0276 {
0277 int minutes = sys_tz.tz_minuteswest;
0278
0279 if (minutes < 0)
0280 pr_info("kernel timezone is +%02d%02d\n",
0281 -minutes / 60, -minutes % 60);
0282 else
0283 pr_info("kernel timezone is -%02d%02d\n",
0284 minutes / 60, minutes % 60);
0285
0286 return xt_register_match(&xt_time_mt_reg);
0287 }
0288
0289 static void __exit time_mt_exit(void)
0290 {
0291 xt_unregister_match(&xt_time_mt_reg);
0292 }
0293
0294 module_init(time_mt_init);
0295 module_exit(time_mt_exit);
0296 MODULE_AUTHOR("Jan Engelhardt <jengelh@medozas.de>");
0297 MODULE_DESCRIPTION("Xtables: time-based matching");
0298 MODULE_LICENSE("GPL");
0299 MODULE_ALIAS("ipt_time");
0300 MODULE_ALIAS("ip6t_time");