max nesting limit according to include/uapi/linux/pkt_sched.h: #define TC_HTB_MAXDEPTH 8
[svn/Prometheus-QoS/.git] / parsehosts.c
... / ...
CommitLineData
1/* Modified by: xChaos, 20131220 */\r
2\r
3#include "cll1-0.6.2.h"\r
4#include "ipstruct.h"\r
5\r
6#define FIRSTGROUPID 1024\r
7#define FIRSTIPCLASS 2048\r
8\r
9/* globals declared in prometheus.c */\r
10extern struct IP *ips, *ip, *sharedip, *networks;\r
11extern struct Group *groups, *group;\r
12extern struct Keyword *keyword, *defaultkeyword, *keywords;\r
13extern struct Macro *macro, *macros;\r
14extern int class_count;\r
15extern int ip_count;\r
16extern int found_lmsid;\r
17extern int free_min;\r
18extern const int highest_priority;\r
19extern char *ip6prefix;\r
20\r
21void update_network(char *look_for, struct IP* ip);\r
22/* implemented in networks.c */\r
23\r
24/* This must be object oriented! This looks almost like constructor ;-) */\r
25void TheIP(char *ipaddr, int is_network)\r
26{\r
27 create(ip,IP);\r
28 ip->name = "";\r
29 ip->addr = ipaddr;\r
30 ip->sharing = NULL;\r
31 ip->prio = highest_priority+1;\r
32 ip->lmsid = -1;\r
33 ip->fixedprio = \\r
34 ip->mark = \\r
35 ip->min = \\r
36 ip->max = \\r
37 ip->desired = \\r
38 ip->credit = \\r
39 ip->upload = \\r
40 ip->proxy = \\r
41 ip->direct = \\r
42 ip->traffic = \\r
43 ip->pktsup = \\r
44 ip->pps_limit = \\r
45 ip->pktsdown = 0;\r
46 ip->keyword = keywords;\r
47 ip->v6 = (strchr(ip->addr,':')!=NULL);\r
48 ip->mask = ((ip->v6)?64:32);\r
49 if(is_network)\r
50 {\r
51 push(ip, networks);\r
52 }\r
53 else\r
54 {\r
55 push(ip, ips); \r
56 }\r
57 ip_count++;\r
58}\r
59\r
60struct IP *lastIP6;\r
61\r
62/* == This function strips extra characters after IPv4 address and stores it = */\r
63void parse_and_append_ip(char *str, struct IP *listhead)\r
64{\r
65 char *ptr, *ipaddr, *ip6range = NULL, *ipname = NULL, *lmsid = NULL;\r
66\r
67 if(ip6prefix) /* Try this only if IPv6 subsystem is active... */\r
68 {\r
69 ptr = strstr(str, "::");\r
70 if(ptr && ptr-str > 4)\r
71 {\r
72 ptr -= 4; \r
73 duplicate(ptr, ip6range);\r
74 ptr = strstr(ip6range, "::");\r
75 if(ptr)\r
76 {\r
77 *(ptr+2) = 0;\r
78 }\r
79 }\r
80 }\r
81\r
82 ptr = strchr(str, '{');\r
83 if(ptr)\r
84 {\r
85 lmsid = ++ptr;\r
86 while(*ptr and *ptr != '}')\r
87 {\r
88 ptr++;\r
89 }\r
90 *ptr = 0;\r
91 }\r
92 \r
93 ptr = str;\r
94 while(*ptr and *ptr!=' ' and *ptr!=9)\r
95 {\r
96 ptr++;\r
97 }\r
98 \r
99 *ptr = 0;\r
100 ipaddr = str;\r
101 ptr++;\r
102 while(*ptr and (*ptr==' ' or *ptr==9))\r
103 {\r
104 ptr++;\r
105 }\r
106 ipname=ptr; \r
107 while(*ptr and *ptr!=' ' and *ptr!=9)\r
108 {\r
109 ptr++;\r
110 }\r
111 *ptr=0;\r
112\r
113 if(ip6range)\r
114 {\r
115 concatenate(ip6prefix,ip6range,ptr);\r
116 ip6range=ptr;\r
117 if_exists(ip, ips, eq(ip->addr,ip6range));\r
118 else\r
119 {\r
120 TheIP(ip6range, FALSE);\r
121 }\r
122 ip->name = ip6range;\r
123 ip->keyword = defaultkeyword; /* settings for default keyword */\r
124 if(lmsid)\r
125 {\r
126 ip->lmsid = atoi(lmsid);\r
127 }\r
128 lastIP6 = ip;\r
129 }\r
130 else\r
131 {\r
132 lastIP6 = NULL;\r
133 }\r
134\r
135 if_exists(ip, listhead, eq(ip->addr,ipaddr));\r
136 else\r
137 {\r
138 TheIP(ipaddr, (listhead==networks));\r
139 }\r
140 ip->name = ipname;\r
141 if(lmsid)\r
142 {\r
143 ip->lmsid = atoi(lmsid);\r
144 found_lmsid = TRUE;\r
145 }\r
146}\r
147\r
148/* == This function parses hosts style main configuration file == */\r
149void parse_hosts(char *hosts)\r
150{\r
151 int groupidx = FIRSTGROUPID;\r
152 char *str, *ptr;\r
153 char *substring;\r
154 struct IP *network;\r
155 int pktratio;\r
156\r
157 parse(hosts)\r
158 {\r
159 str = _;\r
160\r
161 if(*str < '0' or *str > '9')\r
162 {\r
163 /* any line starting with non-number is comment ...*/\r
164 continue;\r
165 }\r
166\r
167 ptr = strchr(str,'\r'); /* fore unix-style end of line */\r
168 if(ptr)\r
169 {\r
170 *ptr = 0;\r
171 }\r
172 \r
173 /* first, expand (rewrite) any predefined macros, if found*/\r
174 for_each(macro, macros)\r
175 {\r
176 substring = strstr(str, macro->rewrite_from);\r
177 if(substring)\r
178 {\r
179 int l1, l3;\r
180 *substring = 0;\r
181 substring += strlen(macro->rewrite_from);\r
182 l1 = strlen(str);\r
183 l3 = strlen(substring);\r
184 string(ptr, l1 + strlen(macro->rewrite_to) + l3 + 1);\r
185 strcpy(ptr, str);\r
186 strcat(ptr, macro->rewrite_to);\r
187 strcat(ptr, substring);\r
188 str = ptr;\r
189 /* printf("REWRITE: %s -> %s\n",_,str); */\r
190 }\r
191 }\r
192\r
193 /* Does this IP share QoS class with some other ? */\r
194 substring = strstr(str, "sharing-");\r
195 if(substring)\r
196 { \r
197 substring += 8; /* "sharing-" */\r
198 parse_and_append_ip(str, ips);\r
199 ip->sharing = substring;\r
200 ip->keyword = defaultkeyword; /* settings for default keyword */\r
201 if(lastIP6)\r
202 {\r
203 lastIP6->sharing = substring;\r
204 lastIP6 = NULL;\r
205 }\r
206 while(*substring and *substring != '\n')\r
207 {\r
208 substring++;\r
209 }\r
210 *substring = 0; \r
211 }\r
212 else\r
213 {\r
214 substring = strstr(str, "#255.");\r
215 if(substring and not strstr(str, "#255.255.255.255")) /* do not ping /32 ranges */\r
216 {\r
217 /* netmask detected - save network*/\r
218 unsigned bit;\r
219 unsigned num, mask = 8;\r
220 substring += 5;\r
221 while(substring && *substring)\r
222 {\r
223 ptr = substring;\r
224 substring = strchr(substring, '.');\r
225 if(substring)\r
226 {\r
227 *substring = 0;\r
228 substring += 1;\r
229 }\r
230 num = atoi(ptr);\r
231 for(bit = 1; bit <=128 ; bit<<=1)\r
232 {\r
233 if(bit & num)\r
234 {\r
235 mask++;\r
236 }\r
237 }\r
238 } \r
239 parse_and_append_ip(str, networks);\r
240 ip->mask = mask;\r
241 }\r
242 else\r
243 {\r
244 /*Do we have to create new QoS class for this IP ? */\r
245 if_exists(keyword,keywords,(substring=strstr(str,keyword->key)))\r
246 {\r
247 parse_and_append_ip(str, ips);\r
248 if(lastIP6)\r
249 {\r
250 lastIP6->sharing = ip->name;\r
251 lastIP6 = NULL;\r
252 }\r
253 ip->keyword = keyword;\r
254 keyword->ip_count++;\r
255 ip->prio = keyword->default_prio;\r
256 substring += strlen(keyword->key)+1;\r
257 ptr = substring;\r
258 while(*ptr and *ptr != '-')\r
259 {\r
260 ptr++;\r
261 }\r
262 if(*ptr == '-')\r
263 {\r
264 *ptr=0;\r
265 ip->max = ip->desired = atoi(ptr+1);\r
266 }\r
267\r
268 ip->min = atoi(substring);\r
269 if(ip->min <= 0)\r
270 {\r
271 printf(" %s: Illegal value of minimum bandwidth 0 kbps, using %d kb/s\n",\r
272 str, free_min);\r
273 ip->min = free_min;\r
274 }\r
275\r
276 if(ip->max <= ip->min)\r
277 {\r
278 ip->fixedprio = TRUE;\r
279 ip->max = ip->min + ip->keyword->reserve_min;\r
280 }\r
281 else \r
282 {\r
283 ip->max -= ip->keyword->reserve_max;\r
284 if(ip->max < ip->min)\r
285 {\r
286 ip->max = ip->min;\r
287 }\r
288 }\r
289\r
290 /* avg MTU bytes * 8 >> 10 = in bits, max is in kb/s */\r
291 pktratio = (ip->keyword->allowed_avgmtu*8) >> 10;\r
292 if(pktratio > 0)\r
293 {\r
294 ip->pps_limit = ip->max/pktratio;\r
295 if(ip->pps_limit > 10000) /* this limit seems to be hardcoded in iptables */\r
296 {\r
297 ip->pps_limit = 0; /* do not apply packet limits */\r
298 }\r
299 }\r
300\r
301 ip->mark = FIRSTIPCLASS+1+class_count++; \r
302 update_network(ip->addr, ip);\r
303\r
304 if_exists(group,groups,(group->min == ip->min)) \r
305 { \r
306 group->count++; \r
307 group->desired += ip->min;\r
308 ip->group = group->id; \r
309 }\r
310 else\r
311 {\r
312 create(group,Group);\r
313 group->min = ip->min;\r
314 group->id = groupidx++;\r
315 ip->group = group->id;\r
316\r
317 if(group->min < 8) group->min = 8;\r
318 /* Warning - this is maybe because of primitive tc namespace, can be fixed */\r
319 /* it is because class IDs are derived from min. bandwidth. - xCh */\r
320 //if(group->min>MAX_GUARANTED_KBPS) group->min=MAX_GUARANTED_KBPS;\r
321 \r
322 group->count = 1;\r
323 group->desired = ip->min; \r
324 insert(group, groups, desc_order_by,min);\r
325 }\r
326 }//endif keyword-\r
327 }//endif netmask\r
328 }//endif sharing-\r
329 }\r
330 fail\r
331 {\r
332 perror(hosts);\r
333 exit(-1);\r
334 }\r
335 done; /* ugly macro end */\r
336// TheIP("0.0.0.0", TRUE);\r
337// ip->name = "TOTAL";\r
338// ip->mask = 0;\r
339}\r
This page took 0.154095 seconds and 4 git commands to generate.