summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-03 00:49:06 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-10-03 00:49:06 +0200
commit14fae227e03e69df2bf8af4c1490929459727ca8 (patch)
treeec5127d92fe9d432f1b3d1d772c6e6c4245cb6ec
parent56ca2eb93d0c10fbba87b40116872ed63e3e6ad5 (diff)
downloadnetifd-14fae227e03e69df2bf8af4c1490929459727ca8.tar.gz
add functions for checking for config differences
-rw-r--r--config.c68
-rw-r--r--config.h18
2 files changed, 86 insertions, 0 deletions
diff --git a/config.c b/config.c
index 3dda5cf..ff0410d 100644
--- a/config.c
+++ b/config.c
@@ -206,6 +206,74 @@ config_init_devices(void)
}
}
+bool
+config_diff(struct blob_attr **tb1, struct blob_attr **tb2,
+ const struct config_param_list *config, unsigned long *diff)
+{
+ bool ret = false;
+ int i;
+
+ for (i = 0; i < config->n_params; i++) {
+ if (!tb1[i] && !tb2[i])
+ continue;
+
+ if (!!tb1[i] != !!tb2[i])
+ goto mark;
+
+ if (blob_len(tb1[i]) != blob_len(tb2[i]))
+ goto mark;
+
+ if (memcmp(tb1[i], tb2[i], blob_pad_len(tb1[i])) != 0)
+ goto mark;
+
+ continue;
+
+mark:
+ ret = true;
+ if (diff)
+ set_bit(diff, i);
+ else
+ return ret;
+ }
+
+ return ret;
+}
+
+
+static bool
+__config_check_equal(struct blob_attr *c1, struct blob_attr *c2,
+ const struct config_param_list *config)
+{
+ struct blob_attr **tb1, **tb2;
+
+ tb1 = alloca(config->n_params * sizeof(struct blob_attr *));
+ blobmsg_parse(config->params, config->n_params, tb1,
+ blob_data(c1), blob_len(c1));
+
+ tb2 = alloca(config->n_params * sizeof(struct blob_attr *));
+ blobmsg_parse(config->params, config->n_params, tb2,
+ blob_data(c2), blob_len(c2));
+
+ return !config_diff(tb1, tb2, config, NULL);
+}
+
+bool
+config_check_equal(struct blob_attr *c1, struct blob_attr *c2,
+ const struct config_param_list *config)
+{
+ int i;
+
+ if (!__config_check_equal(c1, c2, config))
+ return false;
+
+ for (i = 0; i < config->n_next; i++) {
+ if (!__config_check_equal(c1, c2, config->next[i]))
+ return false;
+ }
+
+ return true;
+}
+
void
config_init_interfaces(const char *name)
{
diff --git a/config.h b/config.h
index df088ed..6dfb236 100644
--- a/config.h
+++ b/config.h
@@ -25,6 +25,24 @@ struct config_param_list {
const struct config_param_list *next[];
};
+#ifndef BITS_PER_LONG
+#define BITS_PER_LONG (8 * sizeof(unsigned long))
+#endif
+
+static inline void set_bit(unsigned long *bits, int bit)
+{
+ bits[bit / BITS_PER_LONG] |= (1UL << (bit % BITS_PER_LONG));
+}
+
+static inline bool test_bit(unsigned long *bits, int bit)
+{
+ return !!(bits[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG)));
+}
+
void config_init_interfaces(const char *name);
+bool config_check_equal(struct blob_attr *c1, struct blob_attr *c2,
+ const struct config_param_list *config);
+bool config_diff(struct blob_attr **tb1, struct blob_attr **tb2,
+ const struct config_param_list *config, unsigned long *diff);
#endif