blob: 0917f6e153e93b4b8fcba44bf236fc3d577593a7 [file] [log] [blame]
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00001/*
Bart De Schuymer0cff9e92002-07-25 12:29:50 +00002 * communication.c, v2.0 July 2002
Bart De Schuymer1abc55d2002-06-01 19:23:47 +00003 *
4 * Author: Bart De Schuymer
5 *
6 */
7
Bart De Schuymer9895a8e2003-01-11 10:14:24 +00008/*
9 * All the userspace/kernel communication is in this file.
10 * The other code should not have to know anything about the way the
11 * kernel likes the structure of the table data.
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +000012 * The other code works with linked lists. So, the translation is done here.
Bart De Schuymer9895a8e2003-01-11 10:14:24 +000013 */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000014
15#include <getopt.h>
16#include <string.h>
17#include <errno.h>
18#include <stdio.h>
19#include <stdlib.h>
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +000020#include <fcntl.h>
21#include <unistd.h>
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000022#include <sys/socket.h>
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000023#include "include/ebtables_u.h"
24
25extern char* hooknames[NF_BR_NUMHOOKS];
26
Bart De Schuymerf81c2702003-07-23 21:07:04 +000027#ifdef KERNEL_64_USERSPACE_32
28#define sparc_cast (uint64_t)
29#else
30#define sparc_cast
31#endif
32
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000033int sockfd = -1;
34
Bart De Schuymer6622a012005-01-19 21:09:05 +000035static int get_sockfd()
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000036{
Bart De Schuymer6622a012005-01-19 21:09:05 +000037 int ret = 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000038 if (sockfd == -1) {
39 sockfd = socket(AF_INET, SOCK_RAW, PF_INET);
Bart De Schuymer6622a012005-01-19 21:09:05 +000040 if (sockfd < 0) {
Bart De Schuymer64182a32004-01-21 20:39:54 +000041 ebt_print_error("Problem getting a socket, "
42 "you probably don't have the right "
43 "permissions");
Bart De Schuymer6622a012005-01-19 21:09:05 +000044 ret = -1;
45 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000046 }
Bart De Schuymer6622a012005-01-19 21:09:05 +000047 return ret;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000048}
49
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +000050static struct ebt_replace *translate_user2kernel(struct ebt_u_replace *u_repl)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000051{
52 struct ebt_replace *new;
53 struct ebt_u_entry *e;
54 struct ebt_u_match_list *m_l;
55 struct ebt_u_watcher_list *w_l;
Bart De Schuymer60332e02002-06-23 08:01:47 +000056 struct ebt_u_entries *entries;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000057 char *p, *base;
58 int i, j;
Bart De Schuymer60332e02002-06-23 08:01:47 +000059 unsigned int entries_size = 0, *chain_offsets;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000060
61 new = (struct ebt_replace *)malloc(sizeof(struct ebt_replace));
62 if (!new)
Bart De Schuymer64182a32004-01-21 20:39:54 +000063 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000064 new->valid_hooks = u_repl->valid_hooks;
Bart De Schuymer0cff9e92002-07-25 12:29:50 +000065 strcpy(new->name, u_repl->name);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000066 new->nentries = u_repl->nentries;
67 new->num_counters = u_repl->num_counters;
Bart De Schuymerf81c2702003-07-23 21:07:04 +000068 new->counters = sparc_cast u_repl->counters;
Bart De Schuymercaf30a42011-06-23 18:24:38 +000069 chain_offsets = (unsigned int *)calloc(u_repl->num_chains, sizeof(unsigned int));
70 if (!chain_offsets)
71 ebt_print_memory();
Bart De Schuymer6622a012005-01-19 21:09:05 +000072 /* Determine size */
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +000073 for (i = 0; i < u_repl->num_chains; i++) {
74 if (!(entries = u_repl->chains[i]))
75 continue;
Bart De Schuymer60332e02002-06-23 08:01:47 +000076 chain_offsets[i] = entries_size;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000077 entries_size += sizeof(struct ebt_entries);
78 j = 0;
Bart De Schuymere94eaf72005-08-28 16:06:22 +000079 e = entries->entries->next;
80 while (e != entries->entries) {
Bart De Schuymer1abc55d2002-06-01 19:23:47 +000081 j++;
82 entries_size += sizeof(struct ebt_entry);
83 m_l = e->m_list;
84 while (m_l) {
85 entries_size += m_l->m->match_size +
86 sizeof(struct ebt_entry_match);
87 m_l = m_l->next;
88 }
89 w_l = e->w_list;
90 while (w_l) {
91 entries_size += w_l->w->watcher_size +
92 sizeof(struct ebt_entry_watcher);
93 w_l = w_l->next;
94 }
95 entries_size += e->t->target_size +
96 sizeof(struct ebt_entry_target);
97 e = e->next;
98 }
Bart De Schuymer6622a012005-01-19 21:09:05 +000099 /* A little sanity check */
Bart De Schuymer60332e02002-06-23 08:01:47 +0000100 if (j != entries->nentries)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000101 ebt_print_bug("Wrong nentries: %d != %d, hook = %s", j,
Bart De Schuymer60332e02002-06-23 08:01:47 +0000102 entries->nentries, entries->name);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000103 }
104
105 new->entries_size = entries_size;
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000106 p = (char *)malloc(entries_size);
107 if (!p)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000108 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000109
Bart De Schuymer6622a012005-01-19 21:09:05 +0000110 /* Put everything in one block */
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000111 new->entries = sparc_cast p;
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000112 for (i = 0; i < u_repl->num_chains; i++) {
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000113 struct ebt_entries *hlp;
114
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000115 hlp = (struct ebt_entries *)p;
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000116 if (!(entries = u_repl->chains[i]))
117 continue;
118 if (i < NF_BR_NUMHOOKS)
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000119 new->hook_entry[i] = sparc_cast hlp;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000120 hlp->nentries = entries->nentries;
121 hlp->policy = entries->policy;
122 strcpy(hlp->name, entries->name);
123 hlp->counter_offset = entries->counter_offset;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000124 hlp->distinguisher = 0; /* Make the kernel see the light */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000125 p += sizeof(struct ebt_entries);
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000126 e = entries->entries->next;
127 while (e != entries->entries) {
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000128 struct ebt_entry *tmp = (struct ebt_entry *)p;
129
130 tmp->bitmask = e->bitmask | EBT_ENTRY_OR_ENTRIES;
131 tmp->invflags = e->invflags;
132 tmp->ethproto = e->ethproto;
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000133 strcpy(tmp->in, e->in);
134 strcpy(tmp->out, e->out);
135 strcpy(tmp->logical_in, e->logical_in);
136 strcpy(tmp->logical_out, e->logical_out);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000137 memcpy(tmp->sourcemac, e->sourcemac,
138 sizeof(tmp->sourcemac));
139 memcpy(tmp->sourcemsk, e->sourcemsk,
140 sizeof(tmp->sourcemsk));
141 memcpy(tmp->destmac, e->destmac, sizeof(tmp->destmac));
142 memcpy(tmp->destmsk, e->destmsk, sizeof(tmp->destmsk));
143
144 base = p;
145 p += sizeof(struct ebt_entry);
146 m_l = e->m_list;
147 while (m_l) {
148 memcpy(p, m_l->m, m_l->m->match_size +
149 sizeof(struct ebt_entry_match));
150 p += m_l->m->match_size +
151 sizeof(struct ebt_entry_match);
152 m_l = m_l->next;
153 }
154 tmp->watchers_offset = p - base;
155 w_l = e->w_list;
156 while (w_l) {
157 memcpy(p, w_l->w, w_l->w->watcher_size +
158 sizeof(struct ebt_entry_watcher));
159 p += w_l->w->watcher_size +
160 sizeof(struct ebt_entry_watcher);
161 w_l = w_l->next;
162 }
163 tmp->target_offset = p - base;
164 memcpy(p, e->t, e->t->target_size +
165 sizeof(struct ebt_entry_target));
Bart De Schuymer60332e02002-06-23 08:01:47 +0000166 if (!strcmp(e->t->u.name, EBT_STANDARD_TARGET)) {
167 struct ebt_standard_target *st =
168 (struct ebt_standard_target *)p;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000169 /* Translate the jump to a udc */
Bart De Schuymer60332e02002-06-23 08:01:47 +0000170 if (st->verdict >= 0)
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000171 st->verdict = chain_offsets
172 [st->verdict + NF_BR_NUMHOOKS];
Bart De Schuymer60332e02002-06-23 08:01:47 +0000173 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000174 p += e->t->target_size +
175 sizeof(struct ebt_entry_target);
176 tmp->next_offset = p - base;
177 e = e->next;
178 }
179 }
180
Bart De Schuymer6622a012005-01-19 21:09:05 +0000181 /* Sanity check */
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000182 if (p - (char *)new->entries != new->entries_size)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000183 ebt_print_bug("Entries_size bug");
Bart De Schuymer60332e02002-06-23 08:01:47 +0000184 free(chain_offsets);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000185 return new;
186}
187
Bart De Schuymer62423742002-07-14 19:06:20 +0000188static void store_table_in_file(char *filename, struct ebt_replace *repl)
189{
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +0000190 char *data;
Bart De Schuymer62423742002-07-14 19:06:20 +0000191 int size;
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +0000192 int fd;
Bart De Schuymer62423742002-07-14 19:06:20 +0000193
Bart De Schuymer025859c2009-12-11 17:35:01 +0000194 /* Start from an empty file with the correct priviliges */
195 if ((fd = creat(filename, 0600)) == -1) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000196 ebt_print_error("Couldn't create file %s", filename);
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +0000197 return;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000198 }
Bart De Schuymer62423742002-07-14 19:06:20 +0000199
200 size = sizeof(struct ebt_replace) + repl->entries_size +
201 repl->nentries * sizeof(struct ebt_counter);
202 data = (char *)malloc(size);
203 if (!data)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000204 ebt_print_memory();
Bart De Schuymer62423742002-07-14 19:06:20 +0000205 memcpy(data, repl, sizeof(struct ebt_replace));
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000206 memcpy(data + sizeof(struct ebt_replace), (char *)repl->entries,
Bart De Schuymer62423742002-07-14 19:06:20 +0000207 repl->entries_size);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000208 /* Initialize counters to zero, deliver_counters() can update them */
Bart De Schuymer62423742002-07-14 19:06:20 +0000209 memset(data + sizeof(struct ebt_replace) + repl->entries_size,
210 0, repl->nentries * sizeof(struct ebt_counter));
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +0000211 if (write(fd, data, size) != size)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000212 ebt_print_error("Couldn't write everything to file %s",
213 filename);
Bart De Schuymer6bdb9f42005-11-09 22:39:03 +0000214 close(fd);
Bart De Schuymer62423742002-07-14 19:06:20 +0000215 free(data);
216}
217
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000218void ebt_deliver_table(struct ebt_u_replace *u_repl)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000219{
220 socklen_t optlen;
221 struct ebt_replace *repl;
222
Bart De Schuymer6622a012005-01-19 21:09:05 +0000223 /* Translate the struct ebt_u_replace to a struct ebt_replace */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000224 repl = translate_user2kernel(u_repl);
Bart De Schuymer62423742002-07-14 19:06:20 +0000225 if (u_repl->filename != NULL) {
226 store_table_in_file(u_repl->filename, repl);
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000227 goto free_repl;
Bart De Schuymer62423742002-07-14 19:06:20 +0000228 }
Bart De Schuymer6622a012005-01-19 21:09:05 +0000229 /* Give the data to the kernel */
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000230 optlen = sizeof(struct ebt_replace) + repl->entries_size;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000231 if (get_sockfd())
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000232 goto free_repl;
Bart De Schuymer0cb01792003-05-04 16:52:04 +0000233 if (!setsockopt(sockfd, IPPROTO_IP, EBT_SO_SET_ENTRIES, repl, optlen))
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000234 goto free_repl;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000235 if (u_repl->command == 8) { /* The ebtables module may not
236 * yet be loaded with --atomic-commit */
Bart De Schuymer0cb01792003-05-04 16:52:04 +0000237 ebtables_insmod("ebtables");
238 if (!setsockopt(sockfd, IPPROTO_IP, EBT_SO_SET_ENTRIES,
239 repl, optlen))
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000240 goto free_repl;
Bart De Schuymer0cb01792003-05-04 16:52:04 +0000241 }
242
Bart De Schuymer192b91d2011-06-19 19:01:06 +0000243 ebt_print_error("Unable to update the kernel. Two possible causes:\n"
244 "1. Multiple ebtables programs were executing simultaneously. The ebtables\n"
245 " userspace tool doesn't by default support multiple ebtables programs running\n"
246 " concurrently. The ebtables option --concurrent or a tool like flock can be\n"
247 " used to support concurrent scripts that update the ebtables kernel tables.\n"
248 "2. The kernel doesn't support a certain ebtables extension, consider\n"
249 " recompiling your kernel or insmod the extension.\n");
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000250free_repl:
251 if (repl) {
252 free(repl->entries);
253 free(repl);
254 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000255}
256
Bart De Schuymer6622a012005-01-19 21:09:05 +0000257static int store_counters_in_file(char *filename, struct ebt_u_replace *repl)
Bart De Schuymer62423742002-07-14 19:06:20 +0000258{
Bart De Schuymer6622a012005-01-19 21:09:05 +0000259 int size = repl->nentries * sizeof(struct ebt_counter), ret = 0;
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000260 unsigned int entries_size;
Bart De Schuymer62423742002-07-14 19:06:20 +0000261 struct ebt_replace hlp;
262 FILE *file;
263
Bart De Schuymer6622a012005-01-19 21:09:05 +0000264 if (!(file = fopen(filename, "r+b"))) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000265 ebt_print_error("Could not open file %s", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000266 return -1;
267 }
268 /* Find out entries_size and then set the file pointer to the
269 * counters */
Bart De Schuymer62423742002-07-14 19:06:20 +0000270 if (fseek(file, (char *)(&hlp.entries_size) - (char *)(&hlp), SEEK_SET)
271 || fread(&entries_size, sizeof(char), sizeof(unsigned int), file) !=
272 sizeof(unsigned int) ||
273 fseek(file, entries_size + sizeof(struct ebt_replace), SEEK_SET)) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000274 ebt_print_error("File %s is corrupt", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000275 ret = -1;
276 goto close_file;
Bart De Schuymer62423742002-07-14 19:06:20 +0000277 }
278 if (fwrite(repl->counters, sizeof(char), size, file) != size) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000279 ebt_print_error("Could not write everything to file %s",
280 filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000281 ret = -1;
Bart De Schuymer62423742002-07-14 19:06:20 +0000282 }
Bart De Schuymer6622a012005-01-19 21:09:05 +0000283close_file:
Bart De Schuymer62423742002-07-14 19:06:20 +0000284 fclose(file);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000285 return 0;
Bart De Schuymer62423742002-07-14 19:06:20 +0000286}
287
Bart De Schuymer6622a012005-01-19 21:09:05 +0000288/* Gets executed after ebt_deliver_table. Delivers the counters to the kernel
289 * and resets the counterchanges to CNT_NORM */
Bart De Schuymer83a1b0f2005-09-28 19:36:17 +0000290void ebt_deliver_counters(struct ebt_u_replace *u_repl)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000291{
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000292 struct ebt_counter *old, *new, *newcounters;
293 socklen_t optlen;
294 struct ebt_replace repl;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000295 struct ebt_cntchanges *cc = u_repl->cc->next, *cc2;
Bart De Schuymerfaaa1a62011-08-11 18:23:13 +0000296 struct ebt_u_entries *entries = NULL;
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000297 struct ebt_u_entry *next = NULL;
298 int i, chainnr = 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000299
300 if (u_repl->nentries == 0)
301 return;
302
303 newcounters = (struct ebt_counter *)
304 malloc(u_repl->nentries * sizeof(struct ebt_counter));
305 if (!newcounters)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000306 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000307 memset(newcounters, 0, u_repl->nentries * sizeof(struct ebt_counter));
308 old = u_repl->counters;
309 new = newcounters;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000310 while (cc != u_repl->cc) {
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000311 if (!next || next == entries->entries) {
Bart De Schuymer97783d22009-11-04 21:39:26 +0000312 while (chainnr < u_repl->num_chains && (!(entries = u_repl->chains[chainnr]) ||
313 (next = entries->entries->next) == entries->entries))
314 chainnr++;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000315 if (chainnr == u_repl->num_chains)
316 break;
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000317 }
Bart De Schuymercaf30a42011-06-23 18:24:38 +0000318 if (next == NULL)
319 ebt_print_bug("next == NULL");
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000320 if (cc->type == CNT_NORM) {
Bart De Schuymer6622a012005-01-19 21:09:05 +0000321 /* 'Normal' rule, meaning we didn't do anything to it
322 * So, we just copy */
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000323 *new = *old;
Bart De Schuymerab611e22005-02-14 20:20:03 +0000324 next->cnt = *new;
325 next->cnt_surplus.pcnt = next->cnt_surplus.bcnt = 0;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000326 old++; /* We've used an old counter */
327 new++; /* We've set a new counter */
Bart De Schuymerff587202005-02-08 20:02:28 +0000328 next = next->next;
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000329 } else if (cc->type == CNT_DEL) {
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000330 old++; /* Don't use this old counter */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000331 } else {
Bart De Schuymer0436eda2005-03-28 20:29:37 +0000332 if (cc->type == CNT_CHANGE) {
Bart De Schuymer0436eda2005-03-28 20:29:37 +0000333 if (cc->change % 3 == 1)
334 new->pcnt = old->pcnt + next->cnt_surplus.pcnt;
335 else if (cc->change % 3 == 2)
336 new->pcnt = old->pcnt - next->cnt_surplus.pcnt;
337 else
338 new->pcnt = next->cnt.pcnt;
339 if (cc->change / 3 == 1)
340 new->bcnt = old->bcnt + next->cnt_surplus.bcnt;
341 else if (cc->change / 3 == 2)
342 new->bcnt = old->bcnt - next->cnt_surplus.bcnt;
343 else
344 new->bcnt = next->cnt.bcnt;
Bart De Schuymerab611e22005-02-14 20:20:03 +0000345 } else
346 *new = next->cnt;
347 next->cnt = *new;
348 next->cnt_surplus.pcnt = next->cnt_surplus.bcnt = 0;
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000349 if (cc->type == CNT_ADD)
350 new++;
351 else {
352 old++;
353 new++;
354 }
Bart De Schuymerff587202005-02-08 20:02:28 +0000355 next = next->next;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000356 }
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000357 cc = cc->next;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000358 }
359
360 free(u_repl->counters);
361 u_repl->counters = newcounters;
362 u_repl->num_counters = u_repl->nentries;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000363 /* Reset the counterchanges to CNT_NORM and delete the unused cc */
364 i = 0;
365 cc = u_repl->cc->next;
366 while (cc != u_repl->cc) {
367 if (cc->type == CNT_DEL) {
368 cc->prev->next = cc->next;
369 cc->next->prev = cc->prev;
370 cc2 = cc->next;
371 free(cc);
372 cc = cc2;
373 } else {
374 cc->type = CNT_NORM;
375 cc->change = 0;
376 i++;
377 cc = cc->next;
378 }
379 }
380 if (i != u_repl->nentries)
381 ebt_print_bug("i != u_repl->nentries");
Bart De Schuymer62423742002-07-14 19:06:20 +0000382 if (u_repl->filename != NULL) {
383 store_counters_in_file(u_repl->filename, u_repl);
384 return;
385 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000386 optlen = u_repl->nentries * sizeof(struct ebt_counter) +
387 sizeof(struct ebt_replace);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000388 /* Now put the stuff in the kernel's struct ebt_replace */
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000389 repl.counters = sparc_cast u_repl->counters;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000390 repl.num_counters = u_repl->num_counters;
391 memcpy(repl.name, u_repl->name, sizeof(repl.name));
392
Bart De Schuymer6622a012005-01-19 21:09:05 +0000393 if (get_sockfd())
394 return;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000395 if (setsockopt(sockfd, IPPROTO_IP, EBT_SO_SET_COUNTERS, &repl, optlen))
Bart De Schuymer64182a32004-01-21 20:39:54 +0000396 ebt_print_bug("Couldn't update kernel counters");
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000397}
398
399static int
400ebt_translate_match(struct ebt_entry_match *m, struct ebt_u_match_list ***l)
401{
402 struct ebt_u_match_list *new;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000403 int ret = 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000404
405 new = (struct ebt_u_match_list *)
406 malloc(sizeof(struct ebt_u_match_list));
407 if (!new)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000408 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000409 new->m = (struct ebt_entry_match *)
410 malloc(m->match_size + sizeof(struct ebt_entry_match));
411 if (!new->m)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000412 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000413 memcpy(new->m, m, m->match_size + sizeof(struct ebt_entry_match));
414 new->next = NULL;
415 **l = new;
416 *l = &new->next;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000417 if (ebt_find_match(new->m->u.name) == NULL) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000418 ebt_print_error("Kernel match %s unsupported by userspace tool",
419 new->m->u.name);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000420 ret = -1;
421 }
422 return ret;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000423}
424
425static int
426ebt_translate_watcher(struct ebt_entry_watcher *w,
427 struct ebt_u_watcher_list ***l)
428{
429 struct ebt_u_watcher_list *new;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000430 int ret = 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000431
432 new = (struct ebt_u_watcher_list *)
433 malloc(sizeof(struct ebt_u_watcher_list));
434 if (!new)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000435 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000436 new->w = (struct ebt_entry_watcher *)
437 malloc(w->watcher_size + sizeof(struct ebt_entry_watcher));
438 if (!new->w)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000439 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000440 memcpy(new->w, w, w->watcher_size + sizeof(struct ebt_entry_watcher));
441 new->next = NULL;
442 **l = new;
443 *l = &new->next;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000444 if (ebt_find_watcher(new->w->u.name) == NULL) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000445 ebt_print_error("Kernel watcher %s unsupported by userspace "
446 "tool", new->w->u.name);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000447 ret = -1;
448 }
449 return ret;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000450}
451
452static int
Bart De Schuymer510c9ce2006-01-23 18:50:54 +0000453ebt_translate_entry(struct ebt_entry *e, int *hook, int *n, int *cnt,
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000454 int *totalcnt, struct ebt_u_entry **u_e, struct ebt_u_replace *u_repl,
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000455 unsigned int valid_hooks, char *base, struct ebt_cntchanges **cc)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000456{
Bart De Schuymer6622a012005-01-19 21:09:05 +0000457 /* An entry */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000458 if (e->bitmask & EBT_ENTRY_OR_ENTRIES) {
459 struct ebt_u_entry *new;
460 struct ebt_u_match_list **m_l;
461 struct ebt_u_watcher_list **w_l;
462 struct ebt_entry_target *t;
463
464 new = (struct ebt_u_entry *)malloc(sizeof(struct ebt_u_entry));
465 if (!new)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000466 ebt_print_memory();
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000467 new->bitmask = e->bitmask;
Bart De Schuymer9895a8e2003-01-11 10:14:24 +0000468 /*
Bart De Schuymer6622a012005-01-19 21:09:05 +0000469 * Plain userspace code doesn't know about
Bart De Schuymer9895a8e2003-01-11 10:14:24 +0000470 * EBT_ENTRY_OR_ENTRIES
471 */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000472 new->bitmask &= ~EBT_ENTRY_OR_ENTRIES;
473 new->invflags = e->invflags;
474 new->ethproto = e->ethproto;
Bart De Schuymere3cceb72002-07-26 12:47:33 +0000475 strcpy(new->in, e->in);
476 strcpy(new->out, e->out);
477 strcpy(new->logical_in, e->logical_in);
478 strcpy(new->logical_out, e->logical_out);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000479 memcpy(new->sourcemac, e->sourcemac, sizeof(new->sourcemac));
480 memcpy(new->sourcemsk, e->sourcemsk, sizeof(new->sourcemsk));
481 memcpy(new->destmac, e->destmac, sizeof(new->destmac));
482 memcpy(new->destmsk, e->destmsk, sizeof(new->destmsk));
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000483 if (*totalcnt >= u_repl->nentries)
484 ebt_print_bug("*totalcnt >= u_repl->nentries");
485 new->cnt = u_repl->counters[*totalcnt];
Bart De Schuymer0436eda2005-03-28 20:29:37 +0000486 new->cnt_surplus.pcnt = new->cnt_surplus.bcnt = 0;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000487 new->cc = *cc;
488 *cc = (*cc)->next;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000489 new->m_list = NULL;
490 new->w_list = NULL;
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000491 new->next = (*u_e)->next;
492 new->next->prev = new;
493 (*u_e)->next = new;
494 new->prev = *u_e;
495 *u_e = new;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000496 m_l = &new->m_list;
497 EBT_MATCH_ITERATE(e, ebt_translate_match, &m_l);
498 w_l = &new->w_list;
499 EBT_WATCHER_ITERATE(e, ebt_translate_watcher, &w_l);
500
501 t = (struct ebt_entry_target *)(((char *)e) + e->target_offset);
502 new->t = (struct ebt_entry_target *)
503 malloc(t->target_size + sizeof(struct ebt_entry_target));
504 if (!new->t)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000505 ebt_print_memory();
Bart De Schuymer6622a012005-01-19 21:09:05 +0000506 if (ebt_find_target(t->u.name) == NULL) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000507 ebt_print_error("Kernel target %s unsupported by "
508 "userspace tool", t->u.name);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000509 return -1;
510 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000511 memcpy(new->t, t, t->target_size +
512 sizeof(struct ebt_entry_target));
Bart De Schuymer6622a012005-01-19 21:09:05 +0000513 /* Deal with jumps to udc */
Bart De Schuymer60332e02002-06-23 08:01:47 +0000514 if (!strcmp(t->u.name, EBT_STANDARD_TARGET)) {
515 char *tmp = base;
516 int verdict = ((struct ebt_standard_target *)t)->verdict;
517 int i;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000518
519 if (verdict >= 0) {
520 tmp += verdict;
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000521 for (i = NF_BR_NUMHOOKS; i < u_repl->num_chains; i++)
522 if (u_repl->chains[i]->kernel_start == tmp)
523 break;
524 if (i == u_repl->num_chains)
525 ebt_print_bug("Can't find udc for jump");
Bart De Schuymer201e1b72006-03-13 19:31:13 +0000526 ((struct ebt_standard_target *)new->t)->verdict = i-NF_BR_NUMHOOKS;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000527 }
528 }
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000529
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000530 (*cnt)++;
531 (*totalcnt)++;
532 return 0;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000533 } else { /* A new chain */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000534 int i;
535 struct ebt_entries *entries = (struct ebt_entries *)e;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000536
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000537 if (*n != *cnt)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000538 ebt_print_bug("Nr of entries in the chain is wrong");
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000539 *n = entries->nentries;
540 *cnt = 0;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000541 for (i = *hook + 1; i < NF_BR_NUMHOOKS; i++)
542 if (valid_hooks & (1 << i))
543 break;
544 *hook = i;
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000545 *u_e = u_repl->chains[*hook]->entries;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000546 return 0;
547 }
548}
549
Bart De Schuymer6622a012005-01-19 21:09:05 +0000550/* Initialize all chain headers */
Bart De Schuymer60332e02002-06-23 08:01:47 +0000551static int
Bart De Schuymer510c9ce2006-01-23 18:50:54 +0000552ebt_translate_chains(struct ebt_entry *e, int *hook,
Bart De Schuymer60332e02002-06-23 08:01:47 +0000553 struct ebt_u_replace *u_repl, unsigned int valid_hooks)
554{
555 int i;
556 struct ebt_entries *entries = (struct ebt_entries *)e;
557 struct ebt_u_entries *new;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000558
559 if (!(e->bitmask & EBT_ENTRY_OR_ENTRIES)) {
560 for (i = *hook + 1; i < NF_BR_NUMHOOKS; i++)
561 if (valid_hooks & (1 << i))
562 break;
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000563 new = (struct ebt_u_entries *)malloc(sizeof(struct ebt_u_entries));
564 if (!new)
565 ebt_print_memory();
566 if (i == u_repl->max_chains)
567 ebt_double_chains(u_repl);
568 u_repl->chains[i] = new;
569 if (i >= NF_BR_NUMHOOKS)
570 new->kernel_start = (char *)e;
571 *hook = i;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000572 new->nentries = entries->nentries;
573 new->policy = entries->policy;
Bart De Schuymere94eaf72005-08-28 16:06:22 +0000574 new->entries = (struct ebt_u_entry *)malloc(sizeof(struct ebt_u_entry));
575 if (!new->entries)
576 ebt_print_memory();
577 new->entries->next = new->entries->prev = new->entries;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000578 new->counter_offset = entries->counter_offset;
579 strcpy(new->name, entries->name);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000580 }
Bart De Schuymer60332e02002-06-23 08:01:47 +0000581 return 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000582}
583
Bart De Schuymer6622a012005-01-19 21:09:05 +0000584static int retrieve_from_file(char *filename, struct ebt_replace *repl,
Bart De Schuymer62423742002-07-14 19:06:20 +0000585 char command)
586{
587 FILE *file;
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000588 char *hlp = NULL, *entries;
589 struct ebt_counter *counters;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000590 int size, ret = 0;
Bart De Schuymer62423742002-07-14 19:06:20 +0000591
Bart De Schuymer6622a012005-01-19 21:09:05 +0000592 if (!(file = fopen(filename, "r+b"))) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000593 ebt_print_error("Could not open file %s", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000594 return -1;
595 }
596 /* Make sure table name is right if command isn't -L or --atomic-commit */
Bart De Schuymer62423742002-07-14 19:06:20 +0000597 if (command != 'L' && command != 8) {
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000598 hlp = (char *)malloc(strlen(repl->name) + 1);
Bart De Schuymer62423742002-07-14 19:06:20 +0000599 if (!hlp)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000600 ebt_print_memory();
Bart De Schuymer62423742002-07-14 19:06:20 +0000601 strcpy(hlp, repl->name);
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000602 }
Bart De Schuymer62423742002-07-14 19:06:20 +0000603 if (fread(repl, sizeof(char), sizeof(struct ebt_replace), file)
Bart De Schuymer6622a012005-01-19 21:09:05 +0000604 != sizeof(struct ebt_replace)) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000605 ebt_print_error("File %s is corrupt", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000606 ret = -1;
607 goto close_file;
608 }
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000609 if (command != 'L' && command != 8 && strcmp(hlp, repl->name)) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000610 ebt_print_error("File %s contains wrong table name or is "
611 "corrupt", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000612 ret = -1;
613 goto close_file;
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000614 } else if (!ebt_find_table(repl->name)) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000615 ebt_print_error("File %s contains invalid table name",
616 filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000617 ret = -1;
618 goto close_file;
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000619 }
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000620
Bart De Schuymer62423742002-07-14 19:06:20 +0000621 size = sizeof(struct ebt_replace) +
622 repl->nentries * sizeof(struct ebt_counter) + repl->entries_size;
623 fseek(file, 0, SEEK_END);
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000624 if (size != ftell(file)) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000625 ebt_print_error("File %s has wrong size", filename);
Bart De Schuymer2f7e8d12005-01-19 21:23:02 +0000626 ret = -1;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000627 goto close_file;
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000628 }
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000629 entries = (char *)malloc(repl->entries_size);
630 if (!entries)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000631 ebt_print_memory();
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000632 repl->entries = sparc_cast entries;
Bart De Schuymer62423742002-07-14 19:06:20 +0000633 if (repl->nentries) {
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000634 counters = (struct ebt_counter *)
Bart De Schuymer62423742002-07-14 19:06:20 +0000635 malloc(repl->nentries * sizeof(struct ebt_counter));
Bart De Schuymer8e96bee2003-08-27 16:59:39 +0000636 repl->counters = sparc_cast counters;
Bart De Schuymer62423742002-07-14 19:06:20 +0000637 if (!repl->counters)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000638 ebt_print_memory();
Bart De Schuymer62423742002-07-14 19:06:20 +0000639 } else
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000640 repl->counters = sparc_cast NULL;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000641 /* Copy entries and counters */
Bart De Schuymer62423742002-07-14 19:06:20 +0000642 if (fseek(file, sizeof(struct ebt_replace), SEEK_SET) ||
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000643 fread((char *)repl->entries, sizeof(char), repl->entries_size, file)
Bart De Schuymer62423742002-07-14 19:06:20 +0000644 != repl->entries_size ||
Bart De Schuymer64182a32004-01-21 20:39:54 +0000645 fseek(file, sizeof(struct ebt_replace) + repl->entries_size,
646 SEEK_SET)
Bart De Schuymercaf30a42011-06-23 18:24:38 +0000647 || (repl->counters && fread((char *)repl->counters, sizeof(char),
Bart De Schuymer62423742002-07-14 19:06:20 +0000648 repl->nentries * sizeof(struct ebt_counter), file)
Bart De Schuymercaf30a42011-06-23 18:24:38 +0000649 != repl->nentries * sizeof(struct ebt_counter))) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000650 ebt_print_error("File %s is corrupt", filename);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000651 free(entries);
652 repl->entries = NULL;
653 ret = -1;
Bart De Schuymere8890ff2002-07-15 20:29:04 +0000654 }
Bart De Schuymer6622a012005-01-19 21:09:05 +0000655close_file:
Bart De Schuymer62423742002-07-14 19:06:20 +0000656 fclose(file);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000657 free(hlp);
658 return ret;
Bart De Schuymer62423742002-07-14 19:06:20 +0000659}
660
Bart De Schuymer64182a32004-01-21 20:39:54 +0000661static int retrieve_from_kernel(struct ebt_replace *repl, char command,
662 int init)
Bart De Schuymer62423742002-07-14 19:06:20 +0000663{
664 socklen_t optlen;
665 int optname;
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000666 char *entries;
Bart De Schuymer62423742002-07-14 19:06:20 +0000667
668 optlen = sizeof(struct ebt_replace);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000669 if (get_sockfd())
670 return -1;
Bart De Schuymer9895a8e2003-01-11 10:14:24 +0000671 /* --atomic-init || --init-table */
Bart De Schuymer64182a32004-01-21 20:39:54 +0000672 if (init)
Bart De Schuymer62423742002-07-14 19:06:20 +0000673 optname = EBT_SO_GET_INIT_INFO;
674 else
675 optname = EBT_SO_GET_INFO;
676 if (getsockopt(sockfd, IPPROTO_IP, optname, repl, &optlen))
677 return -1;
678
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000679 if ( !(entries = (char *)malloc(repl->entries_size)) )
Bart De Schuymer64182a32004-01-21 20:39:54 +0000680 ebt_print_memory();
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000681 repl->entries = sparc_cast entries;
Bart De Schuymer62423742002-07-14 19:06:20 +0000682 if (repl->nentries) {
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000683 struct ebt_counter *counters;
684
685 if (!(counters = (struct ebt_counter *)
Bart De Schuymer62423742002-07-14 19:06:20 +0000686 malloc(repl->nentries * sizeof(struct ebt_counter))) )
Bart De Schuymer64182a32004-01-21 20:39:54 +0000687 ebt_print_memory();
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000688 repl->counters = sparc_cast counters;
Bart De Schuymer62423742002-07-14 19:06:20 +0000689 }
690 else
Bart De Schuymerf81c2702003-07-23 21:07:04 +0000691 repl->counters = sparc_cast NULL;
Bart De Schuymer62423742002-07-14 19:06:20 +0000692
Bart De Schuymer6622a012005-01-19 21:09:05 +0000693 /* We want to receive the counters */
Bart De Schuymer62423742002-07-14 19:06:20 +0000694 repl->num_counters = repl->nentries;
695 optlen += repl->entries_size + repl->num_counters *
696 sizeof(struct ebt_counter);
Bart De Schuymer64182a32004-01-21 20:39:54 +0000697 if (init)
Bart De Schuymer62423742002-07-14 19:06:20 +0000698 optname = EBT_SO_GET_INIT_ENTRIES;
699 else
700 optname = EBT_SO_GET_ENTRIES;
701 if (getsockopt(sockfd, IPPROTO_IP, optname, repl, &optlen))
Bart De Schuymer6622a012005-01-19 21:09:05 +0000702 ebt_print_bug("Hmm, what is wrong??? bug#1");
Bart De Schuymer62423742002-07-14 19:06:20 +0000703
704 return 0;
705}
706
Bart De Schuymer64182a32004-01-21 20:39:54 +0000707int ebt_get_table(struct ebt_u_replace *u_repl, int init)
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000708{
709 int i, j, k, hook;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000710 struct ebt_replace repl;
Bart De Schuymerfaaa1a62011-08-11 18:23:13 +0000711 struct ebt_u_entry *u_e = NULL;
712 struct ebt_cntchanges *new_cc = NULL, *cc;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000713
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000714 strcpy(repl.name, u_repl->name);
Bart De Schuymer62a7fdb2002-08-24 21:01:21 +0000715 if (u_repl->filename != NULL) {
Bart De Schuymer64182a32004-01-21 20:39:54 +0000716 if (init)
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000717 ebt_print_bug("Getting initial table data from a file is impossible");
Bart De Schuymer6622a012005-01-19 21:09:05 +0000718 if (retrieve_from_file(u_repl->filename, &repl, u_repl->command))
719 return -1;
720 /* -L with a wrong table name should be dealt with silently */
Bart De Schuymer62a7fdb2002-08-24 21:01:21 +0000721 strcpy(u_repl->name, repl.name);
Bart De Schuymer6622a012005-01-19 21:09:05 +0000722 } else if (retrieve_from_kernel(&repl, u_repl->command, init))
Bart De Schuymer0cff9e92002-07-25 12:29:50 +0000723 return -1;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000724
Bart De Schuymer6622a012005-01-19 21:09:05 +0000725 /* Translate the struct ebt_replace to a struct ebt_u_replace */
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000726 u_repl->valid_hooks = repl.valid_hooks;
727 u_repl->nentries = repl.nentries;
728 u_repl->num_counters = repl.num_counters;
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000729 u_repl->counters = repl.counters;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000730 u_repl->cc = (struct ebt_cntchanges *)malloc(sizeof(struct ebt_cntchanges));
731 if (!u_repl->cc)
732 ebt_print_memory();
733 u_repl->cc->next = u_repl->cc->prev = u_repl->cc;
734 cc = u_repl->cc;
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000735 for (i = 0; i < repl.nentries; i++) {
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000736 new_cc = (struct ebt_cntchanges *)malloc(sizeof(struct ebt_cntchanges));
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000737 if (!new_cc)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000738 ebt_print_memory();
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000739 new_cc->type = CNT_NORM;
Bart De Schuymer0436eda2005-03-28 20:29:37 +0000740 new_cc->change = 0;
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000741 new_cc->prev = cc;
742 cc->next = new_cc;
743 cc = new_cc;
744 }
745 if (repl.nentries) {
746 new_cc->next = u_repl->cc;
747 u_repl->cc->prev = new_cc;
Bart De Schuymer8339ff12004-01-14 20:05:27 +0000748 }
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000749 u_repl->chains = (struct ebt_u_entries **)calloc(EBT_ORI_MAX_CHAINS, sizeof(void *));
750 u_repl->max_chains = EBT_ORI_MAX_CHAINS;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000751 hook = -1;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000752 /* FIXME: Clean up when an error is encountered */
Bart De Schuymer60332e02002-06-23 08:01:47 +0000753 EBT_ENTRY_ITERATE(repl.entries, repl.entries_size, ebt_translate_chains,
754 &hook, u_repl, u_repl->valid_hooks);
Bart De Schuymer9bfcfd82005-08-27 16:52:19 +0000755 if (hook >= NF_BR_NUMHOOKS)
756 u_repl->num_chains = hook + 1;
757 else
758 u_repl->num_chains = NF_BR_NUMHOOKS;
Bart De Schuymer6622a012005-01-19 21:09:05 +0000759 i = 0; /* Holds the expected nr. of entries for the chain */
760 j = 0; /* Holds the up to now counted entries for the chain */
Bart De Schuymerd2ced822005-01-23 19:19:00 +0000761 k = 0; /* Holds the total nr. of entries, should equal u_repl->nentries afterwards */
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000762 cc = u_repl->cc->next;
Bart De Schuymer60332e02002-06-23 08:01:47 +0000763 hook = -1;
Bart De Schuymer64182a32004-01-21 20:39:54 +0000764 EBT_ENTRY_ITERATE((char *)repl.entries, repl.entries_size,
765 ebt_translate_entry, &hook, &i, &j, &k, &u_e, u_repl,
Bart De Schuymer482fbaf2005-08-28 13:16:25 +0000766 u_repl->valid_hooks, (char *)repl.entries, &cc);
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000767 if (k != u_repl->nentries)
Bart De Schuymer64182a32004-01-21 20:39:54 +0000768 ebt_print_bug("Wrong total nentries");
Bart De Schuymer92579fe2005-09-01 20:35:43 +0000769 free(repl.entries);
Bart De Schuymer9ce6ee92002-06-14 21:56:35 +0000770 return 0;
Bart De Schuymer1abc55d2002-06-01 19:23:47 +0000771}