Clixon 4.4 three compile-time options: MOVE_TRANS_END for changing transaction-end callbacks; STATE_ORDERED_BY_SYSTEM to make state data system ordered; XML_MERGE_TWO_ROUNDS to improve xml_merge performance.
This commit is contained in:
parent
5535239363
commit
662d6b0a3f
19 changed files with 483 additions and 61 deletions
|
|
@ -44,6 +44,8 @@ features include optimized search functions and a repair callback.
|
||||||
[search](https://clixon-docs.readthedocs.io/en/latest/xml.html#searching-in-xml)
|
[search](https://clixon-docs.readthedocs.io/en/latest/xml.html#searching-in-xml)
|
||||||
|
|
||||||
### API changes on existing protocol/config features
|
### API changes on existing protocol/config features
|
||||||
|
* State data is now ordered-by system for performance reasons. For example, alphabetically for strings and numeric for integers
|
||||||
|
* Controlled by compile-time option `STATE_ORDERED_BY_SYSTEM`
|
||||||
* Obsolete configuration options present in clixon configuration file will cause clixon application to exit at startup.
|
* Obsolete configuration options present in clixon configuration file will cause clixon application to exit at startup.
|
||||||
* JSON
|
* JSON
|
||||||
* Empty values in JSON has changed to comply to RFC 7951
|
* Empty values in JSON has changed to comply to RFC 7951
|
||||||
|
|
@ -102,6 +104,8 @@ features include optimized search functions and a repair callback.
|
||||||
|
|
||||||
### Minor changes
|
### Minor changes
|
||||||
|
|
||||||
|
* Added a compile-time option `MOVE_TRANS_END` which changes the semantics of the transaction_end callback. Instead of being called after a transaction, it is called prior to the target database is installed. This is to ensure that the source and target databases are same as for other transaction callbacks.
|
||||||
|
|
||||||
* Moved hello example to [clixon-examples](https://github.com/clicon/clixon-examples)
|
* Moved hello example to [clixon-examples](https://github.com/clicon/clixon-examples)
|
||||||
* Sanity check of mandatory key statement for Yang LISTs.
|
* Sanity check of mandatory key statement for Yang LISTs.
|
||||||
* If fails, exit with error message, eg: `Yang error: Sanity check failed: LIST vsDataContainer lacks key statement which MUST be present (See RFC 7950 Sec 7.8.2)`
|
* If fails, exit with error message, eg: `Yang error: Sanity check failed: LIST vsDataContainer lacks key statement which MUST be present (See RFC 7950 Sec 7.8.2)`
|
||||||
|
|
|
||||||
|
|
@ -349,6 +349,30 @@ startup_commit(clicon_handle h,
|
||||||
/* 8. Call plugin transaction commit callbacks */
|
/* 8. Call plugin transaction commit callbacks */
|
||||||
if (plugin_transaction_commit(h, td) < 0)
|
if (plugin_transaction_commit(h, td) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
#ifdef MOVE_TRANS_END
|
||||||
|
/* 10. Call plugin transaction end callbacks */
|
||||||
|
plugin_transaction_end(h, td);
|
||||||
|
|
||||||
|
/* Clear cached trees from default values and marking */
|
||||||
|
if (xmldb_get0_clear(h, td->td_target) < 0)
|
||||||
|
goto done;
|
||||||
|
/* [Delete and] create running db */
|
||||||
|
if (xmldb_exists(h, "running") == 1){
|
||||||
|
if (xmldb_delete(h, "running") != 0 && errno != ENOENT)
|
||||||
|
goto done;;
|
||||||
|
}
|
||||||
|
if (xmldb_create(h, "running") < 0)
|
||||||
|
goto done;
|
||||||
|
/* 9, write (potentially modified) tree to running
|
||||||
|
* XXX note here startup is copied to candidate, which may confuse everything
|
||||||
|
* XXX default values are overwritten
|
||||||
|
*/
|
||||||
|
if ((ret = xmldb_put(h, "running", OP_REPLACE, td->td_target,
|
||||||
|
clicon_username_get(h), cbret)) < 0)
|
||||||
|
goto done;
|
||||||
|
if (ret == 0)
|
||||||
|
goto fail;
|
||||||
|
#else
|
||||||
/* Clear cached trees from default values and marking */
|
/* Clear cached trees from default values and marking */
|
||||||
if (xmldb_get0_clear(h, td->td_target) < 0)
|
if (xmldb_get0_clear(h, td->td_target) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
@ -371,6 +395,7 @@ startup_commit(clicon_handle h,
|
||||||
goto fail;
|
goto fail;
|
||||||
/* 10. Call plugin transaction end callbacks */
|
/* 10. Call plugin transaction end callbacks */
|
||||||
plugin_transaction_end(h, td);
|
plugin_transaction_end(h, td);
|
||||||
|
#endif /* MOVE_TRANS_END */
|
||||||
retval = 1;
|
retval = 1;
|
||||||
done:
|
done:
|
||||||
if (td){
|
if (td){
|
||||||
|
|
@ -541,6 +566,31 @@ candidate_commit(clicon_handle h,
|
||||||
if (plugin_transaction_commit(h, td) < 0)
|
if (plugin_transaction_commit(h, td) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
#ifdef MOVE_TRANS_END
|
||||||
|
/* 9. Call plugin transaction end callbacks */
|
||||||
|
plugin_transaction_end(h, td);
|
||||||
|
|
||||||
|
/* Clear cached trees from default values and marking */
|
||||||
|
if (xmldb_get0_clear(h, td->td_target) < 0)
|
||||||
|
goto done;
|
||||||
|
if (xmldb_get0_clear(h, td->td_src) < 0)
|
||||||
|
goto done;
|
||||||
|
/* 8. Success: Copy candidate to running
|
||||||
|
*/
|
||||||
|
if (xmldb_copy(h, candidate, "running") < 0)
|
||||||
|
goto done;
|
||||||
|
/* Here pointers to old (source) tree are obsolete */
|
||||||
|
if (td->td_dvec){
|
||||||
|
td->td_dlen = 0;
|
||||||
|
free(td->td_dvec);
|
||||||
|
td->td_dvec = NULL;
|
||||||
|
}
|
||||||
|
if (td->td_scvec){
|
||||||
|
free(td->td_scvec);
|
||||||
|
td->td_scvec = NULL;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
|
||||||
/* Clear cached trees from default values and marking */
|
/* Clear cached trees from default values and marking */
|
||||||
if (xmldb_get0_clear(h, td->td_target) < 0)
|
if (xmldb_get0_clear(h, td->td_target) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
@ -574,6 +624,8 @@ candidate_commit(clicon_handle h,
|
||||||
/* 9. Call plugin transaction end callbacks */
|
/* 9. Call plugin transaction end callbacks */
|
||||||
plugin_transaction_end(h, td);
|
plugin_transaction_end(h, td);
|
||||||
|
|
||||||
|
#endif /* MOVE_TRANS_END */
|
||||||
|
|
||||||
retval = 1;
|
retval = 1;
|
||||||
done:
|
done:
|
||||||
/* In case of failure (or error), call plugin transaction termination callbacks */
|
/* In case of failure (or error), call plugin transaction termination callbacks */
|
||||||
|
|
@ -773,9 +825,17 @@ from_client_validate(clicon_handle h,
|
||||||
goto done;
|
goto done;
|
||||||
goto ok;
|
goto ok;
|
||||||
}
|
}
|
||||||
|
#ifdef MOVE_TRANS_END
|
||||||
|
/* Call plugin transaction end callbacks */
|
||||||
|
plugin_transaction_end(h, td);
|
||||||
/* Clear cached trees from default values and marking */
|
/* Clear cached trees from default values and marking */
|
||||||
if (xmldb_get0_clear(h, td->td_target) < 0)
|
if (xmldb_get0_clear(h, td->td_src) < 0 ||
|
||||||
|
xmldb_get0_clear(h, td->td_target) < 0){
|
||||||
|
plugin_transaction_abort(h, td);
|
||||||
goto done;
|
goto done;
|
||||||
|
}
|
||||||
|
cprintf(cbret, "<rpc-reply><ok/></rpc-reply>");
|
||||||
|
#else /* MOVE_TRANS_END */
|
||||||
if (xmldb_get0_clear(h, td->td_src) < 0 ||
|
if (xmldb_get0_clear(h, td->td_src) < 0 ||
|
||||||
xmldb_get0_clear(h, td->td_target) < 0){
|
xmldb_get0_clear(h, td->td_target) < 0){
|
||||||
plugin_transaction_abort(h, td);
|
plugin_transaction_abort(h, td);
|
||||||
|
|
@ -793,6 +853,7 @@ from_client_validate(clicon_handle h,
|
||||||
cprintf(cbret, "<rpc-reply><ok/></rpc-reply>");
|
cprintf(cbret, "<rpc-reply><ok/></rpc-reply>");
|
||||||
/* Call plugin transaction end callbacks */
|
/* Call plugin transaction end callbacks */
|
||||||
plugin_transaction_end(h, td);
|
plugin_transaction_end(h, td);
|
||||||
|
#endif /* MOVE_TRANS_END */
|
||||||
ok:
|
ok:
|
||||||
retval = 0;
|
retval = 0;
|
||||||
done:
|
done:
|
||||||
|
|
|
||||||
|
|
@ -132,6 +132,10 @@ clixon_plugin_statedata(clicon_handle h,
|
||||||
#endif
|
#endif
|
||||||
if (xml_bind_yang(x, YB_MODULE, yspec, NULL) < 0)
|
if (xml_bind_yang(x, YB_MODULE, yspec, NULL) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
if (xml_apply(x, CX_ELMNT, xml_sort, h) < 0)
|
||||||
|
goto done;
|
||||||
|
if (xml_apply(x, CX_ELMNT, xml_default, h) < 0)
|
||||||
|
goto done;
|
||||||
if ((ret = netconf_trymerge(x, yspec, xret)) < 0)
|
if ((ret = netconf_trymerge(x, yspec, xret)) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
if (ret == 0)
|
if (ret == 0)
|
||||||
|
|
|
||||||
|
|
@ -222,6 +222,9 @@ transaction_print(FILE *f,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*! Log a transaction
|
||||||
|
*
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
transaction_log(clicon_handle h,
|
transaction_log(clicon_handle h,
|
||||||
transaction_data th,
|
transaction_data th,
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,7 @@
|
||||||
* argc/argv after -- in clixon_backend:
|
* argc/argv after -- in clixon_backend:
|
||||||
* -r enable the reset function
|
* -r enable the reset function
|
||||||
* -s enable the state function
|
* -s enable the state function
|
||||||
|
* -S read state data from file, otherwise construct it programmatically
|
||||||
* -u enable upgrade function - auto-upgrade testing
|
* -u enable upgrade function - auto-upgrade testing
|
||||||
* -t enable transaction logging (cal syslog for every transaction)
|
* -t enable transaction logging (cal syslog for every transaction)
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -88,3 +88,28 @@
|
||||||
*/
|
*/
|
||||||
#define XMLDB_CONFIG_HACK
|
#define XMLDB_CONFIG_HACK
|
||||||
|
|
||||||
|
/*! Ensure target tree is complete when transaction end is called.
|
||||||
|
* This may mean that the call to plugin_transaction_end is done later
|
||||||
|
* and/or that cleaning of transaction src/target trees are made later
|
||||||
|
* clixon-4.4
|
||||||
|
* note: a test in test_transaction.sh does not work
|
||||||
|
*/
|
||||||
|
#define MOVE_TRANS_END
|
||||||
|
|
||||||
|
/*! Let state data be ordered-by system
|
||||||
|
* RFC 7950 is cryptic about this
|
||||||
|
* It says in 7.7.7:
|
||||||
|
* This statement (red:The "ordered-by" Statement) is ignored if the list represents
|
||||||
|
* state data,...
|
||||||
|
* but it is not clear it is ignored because it should always be ordered-by system?
|
||||||
|
* clixon-4.4
|
||||||
|
*/
|
||||||
|
#define STATE_ORDERED_BY_SYSTEM
|
||||||
|
|
||||||
|
/*! Separate list merge into two separate rounds,
|
||||||
|
* First round search for duplicates where objects are saved, and a second round where
|
||||||
|
* actual merge is done. If in same round, in extreme cases that later
|
||||||
|
* searches are among earlier objects already added
|
||||||
|
* clixon-4.4
|
||||||
|
*/
|
||||||
|
#define XML_MERGE_TWO_ROUNDS
|
||||||
|
|
|
||||||
|
|
@ -1704,6 +1704,14 @@ xml_merge1(cxobj *x0, /* the target */
|
||||||
char *x1bstr; /* mod body string */
|
char *x1bstr; /* mod body string */
|
||||||
yang_stmt *yc; /* yang child */
|
yang_stmt *yc; /* yang child */
|
||||||
cbuf *cbr = NULL; /* Reason buffer */
|
cbuf *cbr = NULL; /* Reason buffer */
|
||||||
|
#ifdef XML_MERGE_TWO_ROUNDS
|
||||||
|
int i;
|
||||||
|
struct {
|
||||||
|
cxobj *w_x0c;
|
||||||
|
cxobj *w_x1c;
|
||||||
|
yang_stmt *w_yc;
|
||||||
|
} *second_wave = NULL;
|
||||||
|
#endif
|
||||||
|
|
||||||
assert(x1 && xml_type(x1) == CX_ELMNT);
|
assert(x1 && xml_type(x1) == CX_ELMNT);
|
||||||
assert(y0);
|
assert(y0);
|
||||||
|
|
@ -1739,6 +1747,13 @@ xml_merge1(cxobj *x0, /* the target */
|
||||||
}
|
}
|
||||||
if (assign_namespaces(x1, x0, x0p) < 0)
|
if (assign_namespaces(x1, x0, x0p) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
#ifdef XML_MERGE_TWO_ROUNDS
|
||||||
|
if ((second_wave = calloc(xml_child_nr(x1), sizeof(*second_wave))) == NULL){
|
||||||
|
clicon_err(OE_UNIX, errno, "calloc");
|
||||||
|
goto done;
|
||||||
|
}
|
||||||
|
i = 0;
|
||||||
|
#endif
|
||||||
/* Loop through children of the modification tree */
|
/* Loop through children of the modification tree */
|
||||||
x1c = NULL;
|
x1c = NULL;
|
||||||
while ((x1c = xml_child_each(x1, x1c, CX_ELMNT)) != NULL) {
|
while ((x1c = xml_child_each(x1, x1c, CX_ELMNT)) != NULL) {
|
||||||
|
|
@ -1762,11 +1777,38 @@ xml_merge1(cxobj *x0, /* the target */
|
||||||
x0c = NULL;
|
x0c = NULL;
|
||||||
if (yc && match_base_child(x0, x1c, yc, &x0c) < 0)
|
if (yc && match_base_child(x0, x1c, yc, &x0c) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
#ifdef XML_MERGE_TWO_ROUNDS
|
||||||
|
/* Save x0c, x1c, yc and merge in second wave, so that x1c entries "interfer"
|
||||||
|
* with itself, ie that later searches are among earlier objects already added
|
||||||
|
* to x0 */
|
||||||
|
second_wave[i].w_x0c = x0c;
|
||||||
|
second_wave[i].w_x1c = x1c;
|
||||||
|
second_wave[i].w_yc = yc;
|
||||||
|
i++;
|
||||||
|
#else
|
||||||
if (xml_merge1(x0c, yc, x0, x1c, reason) < 0)
|
if (xml_merge1(x0c, yc, x0, x1c, reason) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
if (*reason != NULL)
|
if (*reason != NULL)
|
||||||
goto ok;
|
goto ok;
|
||||||
|
#endif
|
||||||
} /* while */
|
} /* while */
|
||||||
|
#ifdef XML_MERGE_TWO_ROUNDS
|
||||||
|
/* Second run where actual merging is done
|
||||||
|
* Loop through children of the modification tree */
|
||||||
|
x1c = NULL;
|
||||||
|
i = 0;
|
||||||
|
while ((x1c = xml_child_each(x1, x1c, CX_ELMNT)) != NULL) {
|
||||||
|
if (xml_merge1(second_wave[i].w_x0c,
|
||||||
|
second_wave[i].w_yc,
|
||||||
|
x0,
|
||||||
|
second_wave[i].w_x1c,
|
||||||
|
reason) < 0)
|
||||||
|
goto done;
|
||||||
|
if (*reason != NULL)
|
||||||
|
goto ok;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
if (xml_parent(x0) == NULL &&
|
if (xml_parent(x0) == NULL &&
|
||||||
xml_insert(x0p, x0, INS_LAST, NULL, NULL) < 0)
|
xml_insert(x0p, x0, INS_LAST, NULL, NULL) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
@ -1774,6 +1816,10 @@ xml_merge1(cxobj *x0, /* the target */
|
||||||
ok:
|
ok:
|
||||||
retval = 0;
|
retval = 0;
|
||||||
done:
|
done:
|
||||||
|
#ifdef XML_MERGE_TWO_ROUNDS
|
||||||
|
if (second_wave)
|
||||||
|
free(second_wave);
|
||||||
|
#endif
|
||||||
if (cbr)
|
if (cbr)
|
||||||
cbuf_free(cbr);
|
cbuf_free(cbr);
|
||||||
return retval;
|
return retval;
|
||||||
|
|
@ -1838,7 +1884,7 @@ xml_merge(cxobj *x0,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/* See if there is a corresponding node in the base tree */
|
/* See if there is a corresponding node (x1c) in the base tree (x0) */
|
||||||
if (match_base_child(x0, x1c, yc, &x0c) < 0)
|
if (match_base_child(x0, x1c, yc, &x0c) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
/* There is a case where x0c and x1c are choice nodes, if so,
|
/* There is a case where x0c and x1c are choice nodes, if so,
|
||||||
|
|
|
||||||
|
|
@ -253,7 +253,11 @@ xml_cmp(cxobj *x1,
|
||||||
* existing list.
|
* existing list.
|
||||||
*/
|
*/
|
||||||
if (same &&
|
if (same &&
|
||||||
(yang_config(y1)==0 || yang_find(y1, Y_ORDERED_BY, "user") != NULL)){
|
(
|
||||||
|
#ifndef STATE_ORDERED_BY_SYSTEM
|
||||||
|
yang_config(y1)==0 ||
|
||||||
|
#endif
|
||||||
|
yang_find(y1, Y_ORDERED_BY, "user") != NULL)){
|
||||||
equal = nr1-nr2;
|
equal = nr1-nr2;
|
||||||
goto done; /* Ordered by user or state data : maintain existing order */
|
goto done; /* Ordered by user or state data : maintain existing order */
|
||||||
}
|
}
|
||||||
|
|
@ -385,16 +389,19 @@ xml_cmp_qsort(const void* arg1,
|
||||||
* @retval 0 OK, all nodes traversed (subparts may have been skipped)
|
* @retval 0 OK, all nodes traversed (subparts may have been skipped)
|
||||||
* @retval 1 OK, aborted on first fn returned 1
|
* @retval 1 OK, aborted on first fn returned 1
|
||||||
* @see xml_apply - typically called by recursive apply function
|
* @see xml_apply - typically called by recursive apply function
|
||||||
|
* @see xml_sort_verify
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
xml_sort(cxobj *x,
|
xml_sort(cxobj *x,
|
||||||
void *arg)
|
void *arg)
|
||||||
{
|
{
|
||||||
|
#ifndef STATE_ORDERED_BY_SYSTEM
|
||||||
yang_stmt *ys;
|
yang_stmt *ys;
|
||||||
|
|
||||||
/* Abort sort if non-config (=state) data */
|
/* Abort sort if non-config (=state) data */
|
||||||
if ((ys = xml_spec(x)) != 0 && yang_config(ys)==0)
|
if ((ys = xml_spec(x)) != 0 && yang_config(ys)==0)
|
||||||
return 1;
|
return 1;
|
||||||
|
#endif
|
||||||
xml_enumerate_children(x);
|
xml_enumerate_children(x);
|
||||||
qsort(xml_childvec_get(x), xml_child_nr(x), sizeof(cxobj *), xml_cmp_qsort);
|
qsort(xml_childvec_get(x), xml_child_nr(x), sizeof(cxobj *), xml_cmp_qsort);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
@ -759,10 +766,13 @@ xml_search_yang(cxobj *xp,
|
||||||
for (low=0; low<upper; low++)
|
for (low=0; low<upper; low++)
|
||||||
if ((xa = xml_child_i(xp, low)) == NULL || xml_type(xa) != CX_ATTR)
|
if ((xa = xml_child_i(xp, low)) == NULL || xml_type(xa) != CX_ATTR)
|
||||||
break;
|
break;
|
||||||
|
#ifndef STATE_ORDERED_BY_SYSTEM
|
||||||
/* Find if non-config and if ordered-by-user */
|
/* Find if non-config and if ordered-by-user */
|
||||||
if (yang_config_ancestor(yc)==0)
|
if (yang_config_ancestor(yc)==0)
|
||||||
sorted = 0;
|
sorted = 0;
|
||||||
else if (yang_keyword_get(yc) == Y_LIST || yang_keyword_get(yc) == Y_LEAF_LIST)
|
else
|
||||||
|
#endif
|
||||||
|
if (yang_keyword_get(yc) == Y_LIST || yang_keyword_get(yc) == Y_LEAF_LIST)
|
||||||
sorted = (yang_find(yc, Y_ORDERED_BY, "user") == NULL);
|
sorted = (yang_find(yc, Y_ORDERED_BY, "user") == NULL);
|
||||||
yangi = yang_order(yc);
|
yangi = yang_order(yc);
|
||||||
return xml_search_binary(xp, x1, sorted, yangi, low, upper, skip1, indexvar, xvec);
|
return xml_search_binary(xp, x1, sorted, yangi, low, upper, skip1, indexvar, xvec);
|
||||||
|
|
@ -996,10 +1006,13 @@ xml_insert(cxobj *xp,
|
||||||
if ((xa = xml_child_i(xp, low)) == NULL || xml_type(xa)!=CX_ATTR)
|
if ((xa = xml_child_i(xp, low)) == NULL || xml_type(xa)!=CX_ATTR)
|
||||||
break;
|
break;
|
||||||
/* Find if non-config and if ordered-by-user */
|
/* Find if non-config and if ordered-by-user */
|
||||||
|
#ifndef STATE_ORDERED_BY_SYSTEM
|
||||||
if (yang_config_ancestor(y)==0)
|
if (yang_config_ancestor(y)==0)
|
||||||
userorder = 1;
|
userorder = 1;
|
||||||
else if (yang_keyword_get(y) == Y_LIST || yang_keyword_get(y) == Y_LEAF_LIST)
|
else
|
||||||
userorder = (yang_find(y, Y_ORDERED_BY, "user") != NULL);
|
#endif
|
||||||
|
if (yang_keyword_get(y) == Y_LIST || yang_keyword_get(y) == Y_LEAF_LIST)
|
||||||
|
userorder = (yang_find(y, Y_ORDERED_BY, "user") != NULL);
|
||||||
yi = yang_order(y);
|
yi = yang_order(y);
|
||||||
if ((i = xml_insert2(xp, xi, y, yi,
|
if ((i = xml_insert2(xp, xi, y, yi,
|
||||||
userorder, ins, key_val, nsc_key,
|
userorder, ins, key_val, nsc_key,
|
||||||
|
|
@ -1019,8 +1032,8 @@ xml_insert(cxobj *xp,
|
||||||
/*! Verify all children of XML node are sorted according to xml_sort()
|
/*! Verify all children of XML node are sorted according to xml_sort()
|
||||||
* @param[in] x XML node. Check its children
|
* @param[in] x XML node. Check its children
|
||||||
* @param[in] arg Dummy. Ensures xml_apply can be used with this fn
|
* @param[in] arg Dummy. Ensures xml_apply can be used with this fn
|
||||||
@ @retval 0 Sorted
|
* @retval 0 Sorted
|
||||||
@ @retval -1 Not sorted
|
* @retval -1 Not sorted
|
||||||
* @see xml_apply
|
* @see xml_apply
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
|
|
@ -1030,13 +1043,15 @@ xml_sort_verify(cxobj *x0,
|
||||||
int retval = -1;
|
int retval = -1;
|
||||||
cxobj *x = NULL;
|
cxobj *x = NULL;
|
||||||
cxobj *xprev = NULL;
|
cxobj *xprev = NULL;
|
||||||
|
#ifndef STATE_ORDERED_BY_SYSTEM
|
||||||
yang_stmt *ys;
|
yang_stmt *ys;
|
||||||
|
|
||||||
/* Abort sort if non-config (=state) data */
|
/* Abort sort if non-config (=state) data */
|
||||||
if ((ys = xml_spec(x0)) != 0 && yang_config_ancestor(ys)==0){
|
if ((ys = xml_spec(x0)) != 0 && yang_config_ancestor(ys)==0){
|
||||||
retval = 1;
|
retval = 1;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (xml_type(x0) == CX_ELMNT){
|
if (xml_type(x0) == CX_ELMNT){
|
||||||
xml_enumerate_children(x0);
|
xml_enumerate_children(x0);
|
||||||
while ((x = xml_child_each(x0, x, -1)) != NULL) {
|
while ((x = xml_child_each(x0, x, -1)) != NULL) {
|
||||||
|
|
@ -1067,15 +1082,15 @@ match_base_child(cxobj *x0,
|
||||||
yang_stmt *yc,
|
yang_stmt *yc,
|
||||||
cxobj **x0cp)
|
cxobj **x0cp)
|
||||||
{
|
{
|
||||||
int retval = -1;
|
int retval = -1;
|
||||||
cvec *cvk = NULL; /* vector of index keys */
|
cvec *cvk = NULL; /* vector of index keys */
|
||||||
cg_var *cvi;
|
cg_var *cvi;
|
||||||
cxobj *xb;
|
cxobj *xb;
|
||||||
char *keyname;
|
char *keyname;
|
||||||
cxobj *x0c = NULL;
|
cxobj *x0c = NULL;
|
||||||
yang_stmt *y0c;
|
yang_stmt *y0c;
|
||||||
yang_stmt *y0p;
|
yang_stmt *y0p;
|
||||||
yang_stmt *yp; /* yang parent */
|
yang_stmt *yp; /* yang parent */
|
||||||
clixon_xvec *xvec = NULL;
|
clixon_xvec *xvec = NULL;
|
||||||
|
|
||||||
*x0cp = NULL; /* init return value */
|
*x0cp = NULL; /* init return value */
|
||||||
|
|
|
||||||
|
|
@ -157,7 +157,7 @@ if [ $RC -ne 0 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new "auth get"
|
new "auth get"
|
||||||
expecteq "$(curl -u andy:bar -sS -X GET http://localhost/restconf/data)" 0 '{"data":{"clixon-example:state":{"op":["42","41","43"]}}}
|
expecteq "$(curl -u andy:bar -sS -X GET http://localhost/restconf/data)" 0 '{"data":{"clixon-example:state":{"op":["41","42","43"]}}}
|
||||||
'
|
'
|
||||||
|
|
||||||
new "Set x to 0"
|
new "Set x to 0"
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,7 @@ expecteq "$(curl -u andy:bar -sS -X GET http://localhost/restconf/data/nacm-exam
|
||||||
'
|
'
|
||||||
|
|
||||||
new "admin read state OK"
|
new "admin read state OK"
|
||||||
expecteq "$(curl -u andy:bar -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["42","41","43"]}}
|
expecteq "$(curl -u andy:bar -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["41","42","43"]}}
|
||||||
'
|
'
|
||||||
|
|
||||||
new "admin read top ok (all)"
|
new "admin read top ok (all)"
|
||||||
|
|
@ -208,11 +208,11 @@ new "limit read other module fail"
|
||||||
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data/nacm-example:x)" 0 '{"ietf-restconf:errors":{"error":{"error-type":"application","error-tag":"invalid-value","error-severity":"error","error-message":"Instance does not exist"}}}
'
|
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data/nacm-example:x)" 0 '{"ietf-restconf:errors":{"error":{"error-type":"application","error-tag":"invalid-value","error-severity":"error","error-message":"Instance does not exist"}}}
'
|
||||||
|
|
||||||
new "limit read state OK"
|
new "limit read state OK"
|
||||||
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["42","41","43"]}}
|
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["41","42","43"]}}
|
||||||
'
|
'
|
||||||
|
|
||||||
new "limit read top ok (part)"
|
new "limit read top ok (part)"
|
||||||
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data)" 0 '{"data":{"clixon-example:translate":{"translate":[{"k":"key42","value":"val42"},{"k":"key43","value":"val43"}]},"clixon-example:state":{"op":["42","41","43"]}}}
|
expecteq "$(curl -u wilma:bar -sS -X GET http://localhost/restconf/data)" 0 '{"data":{"clixon-example:translate":{"translate":[{"k":"key42","value":"val42"},{"k":"key43","value":"val43"}]},"clixon-example:state":{"op":["41","42","43"]}}}
|
||||||
'
|
'
|
||||||
|
|
||||||
#user:guest
|
#user:guest
|
||||||
|
|
|
||||||
|
|
@ -167,11 +167,13 @@ if [ $BE -ne 0 ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# STATE (should not be ordered)
|
# STATE (should not be ordered)
|
||||||
new "state data (should be unordered: 42,41,43)"
|
#new "state data (should be unordered: 42,41,43)"
|
||||||
|
# Eeh I changed that to sortered unless STATE_ORDERED_BY_SYSTEM
|
||||||
|
new "state data (should be ordered: 41,42,43)"
|
||||||
cat <<EOF > $tmp
|
cat <<EOF > $tmp
|
||||||
<rpc><get><filter type="xpath" select="ex:state" xmlns:ex="urn:example:clixon" /></get></rpc>]]>]]>
|
<rpc><get><filter type="xpath" select="ex:state" xmlns:ex="urn:example:clixon" /></get></rpc>]]>]]>
|
||||||
EOF
|
EOF
|
||||||
expecteof "$clixon_netconf -qf $cfg" 0 "$(cat $tmp)" '<rpc-reply><data><state xmlns="urn:example:clixon"><op>42</op><op>41</op><op>43</op></state></data></rpc-reply>]]>]]>'
|
expecteof "$clixon_netconf -qf $cfg" 0 "$(cat $tmp)" '<rpc-reply><data><state xmlns="urn:example:clixon"><op>41</op><op>42</op><op>43</op></state></data></rpc-reply>]]>]]>'
|
||||||
|
|
||||||
# Check as file
|
# Check as file
|
||||||
new "verify running from start, should be: c,l,y0,y1,y2,y3; y1 and y3 sorted."
|
new "verify running from start, should be: c,l,y0,y1,y2,y3; y1 and y3 sorted."
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ for mode in startup running; do
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
new "Startup format: $format mode:$mode"
|
new "Startup format: $format mode:$mode"
|
||||||
# echo "time sudo $clixon_backend -F1 -D $DBG -s $mode -f $cfg -y $fyang -o CLICON_XMLDB_FORMAT=$format"
|
echo "time sudo $clixon_backend -F1 -D $DBG -s $mode -f $cfg -y $fyang -o CLICON_XMLDB_FORMAT=$format"
|
||||||
# Cannot use start_backend here due to expected error case
|
# Cannot use start_backend here due to expected error case
|
||||||
{ time -p sudo $clixon_backend -F1 -D $DBG -s $mode -f $cfg -y $fyang -o CLICON_XMLDB_FORMAT=$format 2> /dev/null; } 2>&1 | awk '/real/ {print $2}'
|
{ time -p sudo $clixon_backend -F1 -D $DBG -s $mode -f $cfg -y $fyang -o CLICON_XMLDB_FORMAT=$format 2> /dev/null; } 2>&1 | awk '/real/ {print $2}'
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@
|
||||||
# Scaling/ performance tests
|
# Scaling/ performance tests
|
||||||
# Config + state data, only get
|
# Config + state data, only get
|
||||||
# Restconf/Netconf/CLI
|
# Restconf/Netconf/CLI
|
||||||
# Use mixed ietf-interfaces config+state
|
# Use mixed interfaces config+state
|
||||||
|
# ALso added two layers a/b to get extra depth (som caching can break)
|
||||||
|
|
||||||
# Magic line must be first in script (see README.md)
|
# Magic line must be first in script (see README.md)
|
||||||
s="$_" ; . ./lib.sh || if [ "$s" = $0 ]; then exit 0; else return 0; fi
|
s="$_" ; . ./lib.sh || if [ "$s" = $0 ]; then exit 0; else return 0; fi
|
||||||
|
|
@ -22,14 +23,15 @@ s="$_" ; . ./lib.sh || if [ "$s" = $0 ]; then exit 0; else return 0; fi
|
||||||
APPNAME=example
|
APPNAME=example
|
||||||
|
|
||||||
cfg=$dir/config.xml
|
cfg=$dir/config.xml
|
||||||
|
fyang=$dir/$APPNAME.yang
|
||||||
fconfig=$dir/large.xml
|
fconfig=$dir/large.xml
|
||||||
|
fstate=$dir/state.xml
|
||||||
|
|
||||||
cat <<EOF > $cfg
|
cat <<EOF > $cfg
|
||||||
<clixon-config xmlns="http://clicon.org/config">
|
<clixon-config xmlns="http://clicon.org/config">
|
||||||
<CLICON_CONFIGFILE>$cfg</CLICON_CONFIGFILE>
|
<CLICON_CONFIGFILE>$cfg</CLICON_CONFIGFILE>
|
||||||
<CLICON_YANG_DIR>$dir</CLICON_YANG_DIR>
|
|
||||||
<CLICON_YANG_DIR>/usr/local/share/clixon</CLICON_YANG_DIR>
|
<CLICON_YANG_DIR>/usr/local/share/clixon</CLICON_YANG_DIR>
|
||||||
<CLICON_YANG_MODULE_MAIN>clixon-example</CLICON_YANG_MODULE_MAIN>
|
<CLICON_YANG_MAIN_FILE>$fyang</CLICON_YANG_MAIN_FILE>
|
||||||
<CLICON_SOCK>/usr/local/var/$APPNAME/$APPNAME.sock</CLICON_SOCK>
|
<CLICON_SOCK>/usr/local/var/$APPNAME/$APPNAME.sock</CLICON_SOCK>
|
||||||
<CLICON_BACKEND_PIDFILE>/usr/local/var/example/$APPNAME.pidfile</CLICON_BACKEND_PIDFILE>
|
<CLICON_BACKEND_PIDFILE>/usr/local/var/example/$APPNAME.pidfile</CLICON_BACKEND_PIDFILE>
|
||||||
<CLICON_BACKEND_DIR>/usr/local/lib/$APPNAME/backend</CLICON_BACKEND_DIR>
|
<CLICON_BACKEND_DIR>/usr/local/lib/$APPNAME/backend</CLICON_BACKEND_DIR>
|
||||||
|
|
@ -46,6 +48,48 @@ cat <<EOF > $cfg
|
||||||
</clixon-config>
|
</clixon-config>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF > $fyang
|
||||||
|
module $APPNAME{
|
||||||
|
yang-version 1.1;
|
||||||
|
prefix ex;
|
||||||
|
namespace "urn:example:clixon";
|
||||||
|
container interfaces {
|
||||||
|
list a{
|
||||||
|
key "name";
|
||||||
|
leaf name {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
container b{
|
||||||
|
list interface {
|
||||||
|
key "name";
|
||||||
|
leaf name {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
leaf type {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
leaf enabled {
|
||||||
|
type boolean;
|
||||||
|
default true;
|
||||||
|
}
|
||||||
|
leaf status {
|
||||||
|
type string;
|
||||||
|
config false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
new "generate state file with $perfnr list entries"
|
||||||
|
echo -n "<interfaces xmlns=\"urn:example:clixon\"><a><name>foo</name><b>" > $fstate
|
||||||
|
for (( i=0; i<$perfnr; i++ )); do
|
||||||
|
echo -n "<interface><name>e$i</name><status>up</status></interface>" >> $fstate
|
||||||
|
done
|
||||||
|
echo "</b></a></interfaces>" >> $fstate
|
||||||
|
|
||||||
new "test params: -f $cfg"
|
new "test params: -f $cfg"
|
||||||
if [ $BE -ne 0 ]; then
|
if [ $BE -ne 0 ]; then
|
||||||
new "kill old backend"
|
new "kill old backend"
|
||||||
|
|
@ -54,8 +98,8 @@ if [ $BE -ne 0 ]; then
|
||||||
err
|
err
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new "start backend -s init -f $cfg -- -s"
|
new "start backend -s init -f $cfg -- -sS $fstate"
|
||||||
start_backend -s init -f $cfg -- -s
|
start_backend -s init -f $cfg -- -sS $fstate
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new "waiting"
|
new "waiting"
|
||||||
|
|
@ -71,11 +115,11 @@ new "waiting"
|
||||||
wait_restconf
|
wait_restconf
|
||||||
|
|
||||||
new "generate 'large' config with $perfnr list entries"
|
new "generate 'large' config with $perfnr list entries"
|
||||||
echo -n "<rpc><edit-config><target><candidate/></target><config><interfaces xmlns=\"urn:ietf:params:xml:ns:yang:ietf-interfaces\">" > $fconfig
|
echo -n "<rpc><edit-config><target><candidate/></target><config><interfaces xmlns=\"urn:example:clixon\"><a><name>foo</name><b>" > $fconfig
|
||||||
for (( i=0; i<$perfnr; i++ )); do
|
for (( i=0; i<$perfnr; i++ )); do
|
||||||
echo -n "<interface><name>e$i</name><type>ex:eth</type></interface>" >> $fconfig
|
echo -n "<interface><name>e$i</name><type>ex:eth</type></interface>" >> $fconfig
|
||||||
done
|
done
|
||||||
echo "</interfaces></config></edit-config></rpc>]]>]]>" >> $fconfig
|
echo "</b></a></interfaces></config></edit-config></rpc>]]>]]>" >> $fconfig
|
||||||
|
|
||||||
# Now take large config file and write it via netconf to candidate
|
# Now take large config file and write it via netconf to candidate
|
||||||
new "netconf write large config"
|
new "netconf write large config"
|
||||||
|
|
@ -89,20 +133,20 @@ expecteof "time -p $clixon_netconf -qf $cfg" 0 "<rpc><commit/></rpc>]]>]]>" "^<r
|
||||||
# Having a large db, get single entries many times
|
# Having a large db, get single entries many times
|
||||||
# NETCONF get
|
# NETCONF get
|
||||||
new "netconf get test single req"
|
new "netconf get test single req"
|
||||||
sel="/if:interfaces/if:interface[if:name='e1']"
|
sel="/ex:interfaces/ex:a[ex:name='foo']/ex:b/ex:interface[ex:name='e1']"
|
||||||
msg="<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:if=\"urn:ietf:params:xml:ns:yang:ietf-interfaces\"/></get></rpc>]]>]]>"
|
msg="<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>"
|
||||||
expecteof "$clixon_netconf -qf $cfg" 0 "$msg" '^<rpc-reply><data><interfaces xmlns="urn:ietf:params:xml:ns:yang:ietf-interfaces"><interface><name>e1</name><type>ex:eth</type><enabled>true</enabled><oper-status>up</oper-status><ex:my-status xmlns:ex="urn:example:clixon"><ex:int>42</ex:int><ex:str>foo</ex:str></ex:my-status></interface></interfaces></data></rpc-reply>]]>]]>$'
|
expecteof "$clixon_netconf -qf $cfg" 0 "$msg" '^<rpc-reply><data><interfaces xmlns="urn:example:clixon"><a><name>foo</name><b><interface><name>e1</name><type>ex:eth</type><enabled>true</enabled><status>up</status></interface></b></a></interfaces></data></rpc-reply>]]>]]>$'
|
||||||
|
|
||||||
new "netconf get $perfreq single reqs"
|
new "netconf get $perfreq single reqs"
|
||||||
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
rnd=$(( ( RANDOM % $perfnr ) ))
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
sel="/if:interfaces/if:interface[if:name='e$rnd']"
|
sel="/ex:interfaces/ex:a[ex:name='foo']/ex:b/ex:interface[ex:name='e$rnd']"
|
||||||
echo "<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:if=\"urn:ietf:params:xml:ns:yang:ietf-interfaces\"/></get></rpc>]]>]]>"
|
echo "<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>"
|
||||||
done | $clixon_netconf -qf $cfg > /dev/null; } 2>&1 | awk '/real/ {print $2}'
|
done | $clixon_netconf -qf $cfg > /dev/null; } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
# RESTCONF get
|
# RESTCONF get
|
||||||
new "restconf get test single req"
|
new "restconf get test single req"
|
||||||
expecteq "$(curl -s -X GET http://localhost/restconf/data/ietf-interfaces:interfaces/interface=e1)" 0 '{"ietf-interfaces:interface":[{"name":"e1","type":"clixon-example:eth","enabled":true,"oper-status":"up","clixon-example:my-status":{"int":42,"str":"foo"}}]}
|
expecteq "$(curl -s -X GET http://localhost/restconf/data/example:interfaces/a=foo/b/interface=e1)" 0 '{"example:interface":[{"name":"e1","type":"ex:eth","enabled":true,"status":"up"}]}
|
||||||
'
|
'
|
||||||
|
|
||||||
new "restconf get $perfreq single reqs"
|
new "restconf get $perfreq single reqs"
|
||||||
|
|
@ -111,33 +155,33 @@ new "restconf get $perfreq single reqs"
|
||||||
|
|
||||||
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
rnd=$(( ( RANDOM % $perfnr ) ))
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
curl -sG http://localhost/restconf/data/ietf-interfaces:interfaces/interface=e$rnd > /dev/null
|
curl -sG http://localhost/restconf/data/example:interfaces/a/b/interface=e$rnd > /dev/null
|
||||||
done } 2>&1 | awk '/real/ {print $2}'
|
done } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
# CLI get
|
# CLI get
|
||||||
new "cli get test single req"
|
new "cli get test single req"
|
||||||
expectfn "$clixon_cli -1 -1f $cfg -l o show state xml interfaces interface e1" 0 '^<interface>
|
expectfn "$clixon_cli -1 -1f $cfg -l o show state xml interfaces a foo b interface e1" 0 '^<interface>
|
||||||
<name>e1</name>
|
<name>e1</name>
|
||||||
<type>ex:eth</type>
|
<type>eth</type>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
<oper-status>up</oper-status>
|
<status>up</status>
|
||||||
</interface>$'
|
</interface>$'
|
||||||
|
|
||||||
new "cli get $perfreq single reqs"
|
new "cli get $perfreq single reqs"
|
||||||
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
rnd=$(( ( RANDOM % $perfnr ) ))
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
$clixon_cli -1 -f $cfg show state xml interfaces interface e$rnd > /dev/null
|
$clixon_cli -1 -f $cfg show state xml interfaces a b interface e$rnd > /dev/null
|
||||||
done } 2>&1 | awk '/real/ {print $2}'
|
done } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
# Get config in one large get
|
# Get config in one large get
|
||||||
new "netconf get large config"
|
new "netconf get large config"
|
||||||
{ time -p echo "<rpc><get> <filter type=\"xpath\" select=\"/if:interfaces\" xmlns:if=\"urn:ietf:params:xml:ns:yang:ietf-interfaces\"/></get></rpc>]]>]]>" | $clixon_netconf -qf $cfg > /tmp/netconf; } 2>&1 | awk '/real/ {print $2}'
|
{ time -p echo "<rpc><get> <filter type=\"xpath\" select=\"/ex:interfaces/ex:a[name='foo']/ex:b\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>" | $clixon_netconf -qf $cfg > /tmp/netconf; } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
new "restconf get large config"
|
new "restconf get large config"
|
||||||
$TIMEFN curl -sG http://localhost/restconf/data/ietf-interfaces:interfaces 2>&1 | awk '/real/ {print $2}'
|
$TIMEFN curl -sG http://localhost/restconf/data/example:interfaces/a=foo/b 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
new "cli get large config"
|
new "cli get large config"
|
||||||
$TIMEFN $clixon_cli -1f $cfg show state xml interfaces 2>&1 | awk '/real/ {print $2}'
|
$TIMEFN $clixon_cli -1f $cfg show state xml interfaces a foo b 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
new "Kill restconf daemon"
|
new "Kill restconf daemon"
|
||||||
stop_restconf
|
stop_restconf
|
||||||
|
|
|
||||||
212
test/test_perf_state_only.sh
Executable file
212
test/test_perf_state_only.sh
Executable file
|
|
@ -0,0 +1,212 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# Scaling/ performance tests
|
||||||
|
# State data only, in particular non-config lists (ie not state leafs on a config list)
|
||||||
|
# Restconf/Netconf/CLI
|
||||||
|
# ALso added two layers a/b to get extra depth (som caching can break)
|
||||||
|
|
||||||
|
# Magic line must be first in script (see README.md)
|
||||||
|
s="$_" ; . ./lib.sh || if [ "$s" = $0 ]; then exit 0; else return 0; fi
|
||||||
|
|
||||||
|
# Which format to use as datastore format internally
|
||||||
|
: ${format:=xml}
|
||||||
|
|
||||||
|
# Number of list/leaf-list entries in file (cant be less than 2)
|
||||||
|
: ${perfnr:=1000}
|
||||||
|
|
||||||
|
# Number of requests made get/put
|
||||||
|
: ${perfreq:=10}
|
||||||
|
|
||||||
|
# time function (this is a mess to get right on freebsd/linux)
|
||||||
|
: ${TIMEFN:=time -p} # portability: 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
APPNAME=example
|
||||||
|
|
||||||
|
cfg=$dir/config.xml
|
||||||
|
fyang=$dir/$APPNAME.yang
|
||||||
|
fconfig=$dir/large.xml
|
||||||
|
fstate=$dir/state.xml
|
||||||
|
|
||||||
|
cat <<EOF > $cfg
|
||||||
|
<clixon-config xmlns="http://clicon.org/config">
|
||||||
|
<CLICON_CONFIGFILE>$cfg</CLICON_CONFIGFILE>
|
||||||
|
<CLICON_YANG_DIR>/usr/local/share/clixon</CLICON_YANG_DIR>
|
||||||
|
<CLICON_YANG_MAIN_FILE>$fyang</CLICON_YANG_MAIN_FILE>
|
||||||
|
<CLICON_SOCK>/usr/local/var/$APPNAME/$APPNAME.sock</CLICON_SOCK>
|
||||||
|
<CLICON_BACKEND_PIDFILE>/usr/local/var/example/$APPNAME.pidfile</CLICON_BACKEND_PIDFILE>
|
||||||
|
<CLICON_BACKEND_DIR>/usr/local/lib/$APPNAME/backend</CLICON_BACKEND_DIR>
|
||||||
|
<CLICON_BACKEND_REGEXP>example_backend.so$</CLICON_BACKEND_REGEXP>
|
||||||
|
<CLICON_RESTCONF_PRETTY>false</CLICON_RESTCONF_PRETTY>
|
||||||
|
<CLICON_XMLDB_DIR>$dir</CLICON_XMLDB_DIR>
|
||||||
|
<CLICON_XMLDB_PRETTY>false</CLICON_XMLDB_PRETTY>
|
||||||
|
<CLICON_XMLDB_FORMAT>$format</CLICON_XMLDB_FORMAT>
|
||||||
|
<CLICON_CLI_MODE>example</CLICON_CLI_MODE>
|
||||||
|
<CLICON_CLI_DIR>/usr/local/lib/example/cli</CLICON_CLI_DIR>
|
||||||
|
<CLICON_CLISPEC_DIR>/usr/local/lib/example/clispec</CLICON_CLISPEC_DIR>
|
||||||
|
<CLICON_CLI_LINESCROLLING>0</CLICON_CLI_LINESCROLLING>
|
||||||
|
<CLICON_FEATURE>ietf-netconf:startup</CLICON_FEATURE>
|
||||||
|
</clixon-config>
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat <<EOF > $fyang
|
||||||
|
module $APPNAME{
|
||||||
|
yang-version 1.1;
|
||||||
|
prefix ex;
|
||||||
|
namespace "urn:example:clixon";
|
||||||
|
container interfaces {
|
||||||
|
config false;
|
||||||
|
list a{
|
||||||
|
key "name";
|
||||||
|
leaf name {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
container b{
|
||||||
|
list interface {
|
||||||
|
key "name";
|
||||||
|
leaf name {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
leaf type {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
leaf enabled {
|
||||||
|
type boolean;
|
||||||
|
default true;
|
||||||
|
}
|
||||||
|
leaf status {
|
||||||
|
type string;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
|
||||||
|
new "generate state file with $perfnr list entries"
|
||||||
|
echo -n "<interfaces xmlns=\"urn:example:clixon\"><a><name>foo</name><b>" > $fstate
|
||||||
|
for (( i=0; i<$perfnr; i++ )); do
|
||||||
|
echo -n "<interface><name>e$i</name><type>ex:eth</type><status>up</status></interface>" >> $fstate
|
||||||
|
done
|
||||||
|
echo "</b></a></interfaces>" >> $fstate
|
||||||
|
|
||||||
|
new "test params: -f $cfg"
|
||||||
|
if [ $BE -ne 0 ]; then
|
||||||
|
new "kill old backend"
|
||||||
|
sudo clixon_backend -zf $cfg
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
err
|
||||||
|
fi
|
||||||
|
|
||||||
|
new "start backend -s init -f $cfg -- -sS $fstate"
|
||||||
|
start_backend -s init -f $cfg -- -sS $fstate
|
||||||
|
fi
|
||||||
|
|
||||||
|
new "waiting"
|
||||||
|
wait_backend
|
||||||
|
|
||||||
|
new "kill old restconf daemon"
|
||||||
|
sudo pkill -u $wwwuser -f clixon_restconf
|
||||||
|
|
||||||
|
new "start restconf daemon"
|
||||||
|
start_restconf -f $cfg
|
||||||
|
|
||||||
|
new "waiting"
|
||||||
|
wait_restconf
|
||||||
|
exit
|
||||||
|
if false; then
|
||||||
|
new "generate 'large' config with $perfnr list entries"
|
||||||
|
echo -n "<rpc><edit-config><target><candidate/></target><config><interfaces xmlns=\"urn:example:clixon\"><a><name>foo</name><b>" > $fconfig
|
||||||
|
for (( i=0; i<$perfnr; i++ )); do
|
||||||
|
echo -n "<interface><name>e$i</name><type>ex:eth</type></interface>" >> $fconfig
|
||||||
|
done
|
||||||
|
echo "</b></a></interfaces></config></edit-config></rpc>]]>]]>" >> $fconfig
|
||||||
|
|
||||||
|
# Now take large config file and write it via netconf to candidate
|
||||||
|
new "netconf write large config"
|
||||||
|
expecteof_file "time -p $clixon_netconf -qf $cfg" 0 "$fconfig" "^<rpc-reply><ok/></rpc-reply>]]>]]>$" 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
# Now commit it from candidate to running
|
||||||
|
new "netconf commit large config"
|
||||||
|
expecteof "time -p $clixon_netconf -qf $cfg" 0 "<rpc><commit/></rpc>]]>]]>" "^<rpc-reply><ok/></rpc-reply>]]>]]>$" 2>&1 | awk '/real/ {print $2}'
|
||||||
|
fi
|
||||||
|
|
||||||
|
# START actual tests
|
||||||
|
# Having a large db, get single entries many times
|
||||||
|
# NETCONF get
|
||||||
|
new "netconf get test single req"
|
||||||
|
sel="/ex:interfaces/ex:a[ex:name='foo']/ex:b/ex:interface[ex:name='e1']"
|
||||||
|
msg="<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>"
|
||||||
|
time -p expecteof "$clixon_netconf -qf $cfg" 0 "$msg" '^<rpc-reply><data><interfaces xmlns="urn:example:clixon"><a><name>foo</name><b><interface><name>e1</name><type>ex:eth</type><enabled>true</enabled><status>up</status></interface></b></a></interfaces></data></rpc-reply>]]>]]>$'
|
||||||
|
|
||||||
|
new "netconf get $perfreq single reqs"
|
||||||
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
|
sel="/ex:interfaces/ex:a[ex:name='foo']/ex:b/ex:interface[ex:name='e$rnd']"
|
||||||
|
echo "<rpc><get><filter type=\"xpath\" select=\"$sel\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>"
|
||||||
|
done | $clixon_netconf -qf $cfg > /dev/null; } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
# RESTCONF get
|
||||||
|
#echo "curl -s -X GET http://localhost/restconf/data/example:interfaces/a=foo/b/interface=e1"
|
||||||
|
new "restconf get test single req"
|
||||||
|
time -p expecteq "$(curl -s -X GET http://localhost/restconf/data/example:interfaces/a=foo/b/interface=e1)" 0 '{"example:interface":[{"name":"e1","type":"ex:eth","enabled":true,"status":"up"}]}
|
||||||
|
' | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
new "restconf get $perfreq single reqs"
|
||||||
|
#echo "curl -sG http://localhost/restconf/data/ietf-interfaces:interfaces/interface=e0"
|
||||||
|
#curl -sG http://localhost/restconf/data/ietf-interfaces:interfaces/interface=e67
|
||||||
|
|
||||||
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
|
curl -sG http://localhost/restconf/data/example:interfaces/a/b/interface=e$rnd > /dev/null
|
||||||
|
done } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
if false; then
|
||||||
|
# CLI get
|
||||||
|
new "cli get test single req"
|
||||||
|
expectfn "$clixon_cli -1 -1f $cfg -l o show state xml interfaces a foo b interface e1" 0 '^<interface>
|
||||||
|
<name>e1</name>
|
||||||
|
<type>eth</type>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<status>up</status>
|
||||||
|
</interface>$'
|
||||||
|
|
||||||
|
new "cli get $perfreq single reqs"
|
||||||
|
{ time -p for (( i=0; i<$perfreq; i++ )); do
|
||||||
|
rnd=$(( ( RANDOM % $perfnr ) ))
|
||||||
|
$clixon_cli -1 -f $cfg show state xml interfaces a b interface e$rnd > /dev/null
|
||||||
|
done } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
fi
|
||||||
|
# Get config in one large get
|
||||||
|
new "netconf get large config"
|
||||||
|
{ time -p echo "<rpc><get> <filter type=\"xpath\" select=\"/ex:interfaces/ex:a[name='foo']/ex:b\" xmlns:ex=\"urn:example:clixon\"/></get></rpc>]]>]]>" | $clixon_netconf -qf $cfg > /tmp/netconf; } 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
new "restconf get large config"
|
||||||
|
$TIMEFN curl -sG http://localhost/restconf/data/example:interfaces/a=foo/b 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
new "cli get large config"
|
||||||
|
$TIMEFN $clixon_cli -1f $cfg show state xml interfaces a foo b 2>&1 | awk '/real/ {print $2}'
|
||||||
|
|
||||||
|
new "Kill restconf daemon"
|
||||||
|
stop_restconf
|
||||||
|
|
||||||
|
if [ $BE -eq 0 ]; then
|
||||||
|
exit # BE
|
||||||
|
fi
|
||||||
|
|
||||||
|
new "Kill backend"
|
||||||
|
# Check if premature kill
|
||||||
|
pid=$(pgrep -u root -f clixon_backend)
|
||||||
|
if [ -z "$pid" ]; then
|
||||||
|
err "backend already dead"
|
||||||
|
fi
|
||||||
|
# kill backend
|
||||||
|
stop_backend -f $cfg
|
||||||
|
|
||||||
|
rm -rf $dir
|
||||||
|
|
||||||
|
# unset conditional parameters
|
||||||
|
unset format
|
||||||
|
unset perfnr
|
||||||
|
unset perfreq
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -33,7 +33,7 @@ cat <<EOF > $cfg
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# This is a fixed 'state' implemented in routing_backend. It is assumed to be always there
|
# This is a fixed 'state' implemented in routing_backend. It is assumed to be always there
|
||||||
state='{"clixon-example:state":{"op":\["42","41","43"\]}'
|
state='{"clixon-example:state":{"op":\["41","42","43"\]}'
|
||||||
|
|
||||||
new "test params: -f $cfg -- -s"
|
new "test params: -f $cfg -- -s"
|
||||||
if [ $BE -ne 0 ]; then
|
if [ $BE -ne 0 ]; then
|
||||||
|
|
@ -129,7 +129,7 @@ new "restconf debug rpc"
|
||||||
#expectpart "$(curl -si -X POST -H "Content-Type: application/yang-data+json" -d {\"clixon-lib:input\":{\"level\":0}} http://localhost/restconf/operations/clixon-lib:debug)" 0 "HTTP/1.1 204 No Content"
|
#expectpart "$(curl -si -X POST -H "Content-Type: application/yang-data+json" -d {\"clixon-lib:input\":{\"level\":0}} http://localhost/restconf/operations/clixon-lib:debug)" 0 "HTTP/1.1 204 No Content"
|
||||||
|
|
||||||
new "restconf get empty config + state json"
|
new "restconf get empty config + state json"
|
||||||
expecteq "$(curl -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["42","41","43"]}}
|
expecteq "$(curl -sS -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["41","42","43"]}}
|
||||||
'
|
'
|
||||||
|
|
||||||
new "restconf get empty config + state json with wrong module name"
|
new "restconf get empty config + state json with wrong module name"
|
||||||
|
|
@ -140,7 +140,7 @@ expectpart "$(curl -siSG http://localhost/restconf/data/badmodule:state)" 0 'HTT
|
||||||
|
|
||||||
new "restconf get empty config + state xml"
|
new "restconf get empty config + state xml"
|
||||||
ret=$(curl -s -H "Accept: application/yang-data+xml" -G http://localhost/restconf/data/clixon-example:state)
|
ret=$(curl -s -H "Accept: application/yang-data+xml" -G http://localhost/restconf/data/clixon-example:state)
|
||||||
expect='<state xmlns="urn:example:clixon"><op>42</op><op>41</op><op>43</op></state>'
|
expect='<state xmlns="urn:example:clixon"><op>41</op><op>42</op><op>43</op></state>'
|
||||||
match=`echo $ret | grep --null -Eo "$expect"`
|
match=`echo $ret | grep --null -Eo "$expect"`
|
||||||
if [ -z "$match" ]; then
|
if [ -z "$match" ]; then
|
||||||
err "$expect" "$ret"
|
err "$expect" "$ret"
|
||||||
|
|
@ -173,7 +173,7 @@ if [ -z "$match" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
new "restconf GET datastore"
|
new "restconf GET datastore"
|
||||||
expecteq "$(curl -s -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["42","41","43"]}}
|
expecteq "$(curl -s -X GET http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":["41","42","43"]}}
|
||||||
'
|
'
|
||||||
|
|
||||||
# Exact match
|
# Exact match
|
||||||
|
|
@ -207,7 +207,7 @@ new "restconf Check eth/0/0 GET augmented state level 2"
|
||||||
expectpart "$(curl -s -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/ietf-interfaces:interfaces/interface=eth%2f0%2f0/clixon-example:my-status)" 0 '{"clixon-example:my-status":{"int":42,"str":"foo"}}'
|
expectpart "$(curl -s -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/ietf-interfaces:interfaces/interface=eth%2f0%2f0/clixon-example:my-status)" 0 '{"clixon-example:my-status":{"int":42,"str":"foo"}}'
|
||||||
|
|
||||||
new "restconf Check eth/0/0 added state"
|
new "restconf Check eth/0/0 added state"
|
||||||
expectpart "$(curl -s -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":\["42","41","43"\]}}'
|
expectpart "$(curl -s -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/clixon-example:state)" 0 '{"clixon-example:state":{"op":\["41","42","43"\]}}'
|
||||||
|
|
||||||
new "restconf Re-post eth/0/0 which should generate error"
|
new "restconf Re-post eth/0/0 which should generate error"
|
||||||
expectpart "$(curl -s -X POST -H "Content-Type: application/yang-data+json" -d '{"ietf-interfaces:interface":{"name":"eth/0/0","type":"clixon-example:eth","enabled":true}}' http://localhost/restconf/data/ietf-interfaces:interfaces)" 0 '{"ietf-restconf:errors":{"error":{"error-type":"application","error-tag":"data-exists","error-severity":"error","error-message":"Data already exists; cannot create new resource"}}}
'
|
expectpart "$(curl -s -X POST -H "Content-Type: application/yang-data+json" -d '{"ietf-interfaces:interface":{"name":"eth/0/0","type":"clixon-example:eth","enabled":true}}' http://localhost/restconf/data/ietf-interfaces:interfaces)" 0 '{"ietf-restconf:errors":{"error":{"error-type":"application","error-tag":"data-exists","error-severity":"error","error-message":"Data already exists; cannot create new resource"}}}
'
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@ expectpart "$(curl -si -X GET -H 'Accept: application/yang-data+xml' http://loca
|
||||||
# This just catches the header and the jukebox module, the RFC has foo and bar which
|
# This just catches the header and the jukebox module, the RFC has foo and bar which
|
||||||
# seems wrong to recreate
|
# seems wrong to recreate
|
||||||
new "B.1.2. Retrieve the Server Module Information"
|
new "B.1.2. Retrieve the Server Module Information"
|
||||||
expectpart "$(curl -si -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/ietf-yang-library:modules-state)" 0 "HTTP/1.1 200 OK" 'Cache-Control: no-cache' "Content-Type: application/yang-data+json" '{"ietf-yang-library:modules-state":{"module-set-id":"0","module":\[{"name":"example-events","revision":"","namespace":"urn:example:events","conformance-type":"implement"},{"name":"example-jukebox","revision":"2016-08-15","namespace":"http://example.com/ns/example-jukebox","conformance-type":"implement"},{"name":"example-system","revision":"","namespace":"http://example.com/ns/example-system","conformance-type":"implement"},{"name":"clixon-lib","revision":"2019-08-13","namespace":"http://clicon.org/lib","conformance-type":"implement"},{"name":"ietf-yang-library","revision":"2016-06-21","namespace":"urn:ietf:params:xml:ns:yang:ietf-yang-library"'
|
expectpart "$(curl -si -X GET -H 'Accept: application/yang-data+json' http://localhost/restconf/data/ietf-yang-library:modules-state)" 0 "HTTP/1.1 200 OK" 'Cache-Control: no-cache' "Content-Type: application/yang-data+json" '{"ietf-yang-library:modules-state":{"module-set-id":"0","module":\[{"name":"clixon-lib","revision":"2019-08-13","namespace":"http://clicon.org/lib","conformance-type":"implement"},{"name":"clixon-rfc5277","revision":"2008-07-01","namespace":"urn:ietf:params:xml:ns:netmod:notification","conformance-type":"implement"},{"name":"example-events","revision":"","namespace":"urn:example:events","conformance-type":"implement"},{"name":"example-jukebox","revision":"2016-08-15","namespace":"http://example.com/ns/example-jukebox","conformance-type":"implement"},{"name":"example-system","revision":"","namespace":"http://example.com/ns/example-system","conformance-type":"implement"},{"name":"ietf-inet-types","revision":"2013-07-15","namespace":"urn:ietf:params:xml:ns:yang:ietf-inet-types","conformance-type":"implement"},'
|
||||||
|
|
||||||
new "B.1.3. Retrieve the Server Capability Information"
|
new "B.1.3. Retrieve the Server Capability Information"
|
||||||
expectpart "$(curl -si -X GET -H 'Accept: application/yang-data+xml' http://localhost/restconf/data/ietf-restconf-monitoring:restconf-state/capabilities)" 0 "HTTP/1.1 200 OK" "Content-Type: application/yang-data+xml" 'Cache-Control: no-cache' '<capabilities xmlns="urn:ietf:params:xml:ns:yang:ietf-restconf-monitoring"><capability>urn:ietf:params:restconf:capability:defaults:1.0?basic-mode=explicit</capability><capability>urn:ietf:params:restconf:capability:depth</capability>
|
expectpart "$(curl -si -X GET -H 'Accept: application/yang-data+xml' http://localhost/restconf/data/ietf-restconf-monitoring:restconf-state/capabilities)" 0 "HTTP/1.1 200 OK" "Content-Type: application/yang-data+xml" 'Cache-Control: no-cache' '<capabilities xmlns="urn:ietf:params:xml:ns:yang:ietf-restconf-monitoring"><capability>urn:ietf:params:restconf:capability:defaults:1.0?basic-mode=explicit</capability><capability>urn:ietf:params:restconf:capability:depth</capability>
|
||||||
|
|
|
||||||
|
|
@ -273,10 +273,11 @@ for op in begin validate complete commit; do
|
||||||
let line++
|
let line++
|
||||||
done
|
done
|
||||||
|
|
||||||
# End is special because change does not haveold element
|
# End is special because change does not have old element
|
||||||
checklog "$nr main_end add: <d>0</d>" $line
|
checklog "$nr main_end add: <d>0</d>" $line
|
||||||
let line++
|
let line++
|
||||||
checklog "$nr main_end change: <b>42</b>" $line
|
# This check does not work if MOVE_TRANS_END is set
|
||||||
|
#checklog "$nr main_end change: <b>42</b>" $line
|
||||||
let line+=3 # skip nacm
|
let line+=3 # skip nacm
|
||||||
|
|
||||||
let nr++
|
let nr++
|
||||||
|
|
|
||||||
|
|
@ -222,6 +222,11 @@ main(int argc,
|
||||||
/* Populate */
|
/* Populate */
|
||||||
if (xml_bind_yang(x, YB_MODULE, yspec, NULL) < 0)
|
if (xml_bind_yang(x, YB_MODULE, yspec, NULL) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
/* sort */
|
||||||
|
if (xml_apply(x, CX_ELMNT, xml_sort, h) < 0)
|
||||||
|
goto done;
|
||||||
|
if (xml_apply(x, -1, xml_sort_verify, h) < 0)
|
||||||
|
clicon_log(LOG_NOTICE, "%s: sort verify failed", __FUNCTION__);
|
||||||
/* Add default values */
|
/* Add default values */
|
||||||
if (xml_apply(x, CX_ELMNT, xml_default, h) < 0)
|
if (xml_apply(x, CX_ELMNT, xml_default, h) < 0)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
@ -239,10 +244,7 @@ main(int argc,
|
||||||
fprintf(stderr, "xml validation error: %s\n", cbuf_get(cb));
|
fprintf(stderr, "xml validation error: %s\n", cbuf_get(cb));
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
if (xml_apply0(x, CX_ELMNT, xml_sort, h) < 0)
|
|
||||||
goto done;
|
|
||||||
if (xml_apply0(x, -1, xml_sort_verify, h) < 0)
|
|
||||||
clicon_log(LOG_NOTICE, "%s: sort verify failed", __FUNCTION__);
|
|
||||||
}
|
}
|
||||||
/* Repeat for profiling (default is nr = 1) */
|
/* Repeat for profiling (default is nr = 1) */
|
||||||
xvec = NULL;
|
xvec = NULL;
|
||||||
|
|
|
||||||
|
|
@ -616,7 +616,9 @@ module clixon-config {
|
||||||
type boolean;
|
type boolean;
|
||||||
default false;
|
default false;
|
||||||
description "If set, modifications in validation and commit
|
description "If set, modifications in validation and commit
|
||||||
callbacks are written back into the datastore";
|
callbacks are written back into the datastore.
|
||||||
|
This is a bad idea and therefore obsoleted.";
|
||||||
|
status obsolete;
|
||||||
}
|
}
|
||||||
leaf CLICON_NACM_MODE {
|
leaf CLICON_NACM_MODE {
|
||||||
type nacm_mode;
|
type nacm_mode;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue