The FreeRADIUS server  $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
pair_legacy.c
Go to the documentation of this file.
1 /*
2  * This library is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public
4  * License as published by the Free Software Foundation; either
5  * version 2.1 of the License, or (at your option) any later version.
6  *
7  * This library is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10  * Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public
13  * License along with this library; if not, write to the Free Software
14  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
15  */
16 
17 /** AVP manipulation and search API
18  *
19  * @file src/lib/util/pair_legacy.c
20  *
21  * @copyright 2000,2006,2015 The FreeRADIUS server project
22  */
23 
24 RCSID("$Id: 4e86572f944f87e18c6b8bfcc0a3cb207a883f47 $")
25 
26 #include <freeradius-devel/util/dict.h>
27 #include <freeradius-devel/util/pair.h>
28 #include <freeradius-devel/util/pair_legacy.h>
29 #include <freeradius-devel/util/misc.h>
30 #include <freeradius-devel/util/proto.h>
31 #include <freeradius-devel/util/regex.h>
32 
33 #include <freeradius-devel/protocol/radius/rfc2865.h>
34 #include <freeradius-devel/protocol/freeradius/freeradius.internal.h>
35 
38  L("\t"),
39  L("\n"),
40  L(" "),
41  L("!*"),
42  L("!="),
43  L("!~"),
44  L("&&"), /* Logical operator */
45  L(")"), /* Close condition/sub-condition */
46  L("+="),
47  L("-="),
48  L(":="),
49  L("<"),
50  L("<="),
51  L("=*"),
52  L("=="),
53  L("=~"),
54  L(">"),
55  L(">="),
56  L("||"), /* Logical operator */
57  );
58 
60  { L("+="), T_OP_ADD_EQ },
61  { L(":="), T_OP_EQ },
62  { L("="), T_OP_EQ },
63 };
65 
67  { L("!*"), T_OP_CMP_FALSE },
68  { L("!="), T_OP_NE },
69  { L("!~"), T_OP_REG_NE },
70  { L("+="), T_OP_ADD_EQ },
71  { L(":="), T_OP_SET },
72  { L("<"), T_OP_LT },
73  { L("<="), T_OP_LE },
74  { L("="), T_OP_EQ },
75  { L("=*"), T_OP_CMP_TRUE },
76  { L("=="), T_OP_CMP_EQ },
77  { L("=~"), T_OP_REG_EQ },
78  { L(">"), T_OP_GT },
79  { L(">="), T_OP_GE }
80 };
82 
83 /*
84  * Stop parsing bare words at whitespace, comma, or end of list.
85  *
86  * Note that we don't allow escaping of bare words here, as that screws up parsing of raw attributes with
87  * 0x... prefixes.
88  */
89 static fr_sbuff_parse_rules_t const bareword_unquoted = {
90  .terminals = &FR_SBUFF_TERMS(
91  L(""),
92  L("\t"),
93  L("\n"),
94  L("\r"),
95  L(" "),
96  L(","),
97  L("}")
98  )
99 };
100 
101 
103 {
104  char quote;
105  ssize_t slen;
106  fr_sbuff_parse_rules_t const *rules;
107 
108  if (fr_sbuff_next_if_char(in, '"')) {
110  quote = '"';
111 
112  } else if (fr_sbuff_next_if_char(in, '\'')) {
114  quote = '\'';
115 
116  /*
117  * We don't support backticks here.
118  */
119  } else if (fr_sbuff_is_char(in, '\'')) {
120  fr_strerror_const("Backticks are not supported here");
121  return 0;
122 
123  } else {
124  rules = &bareword_unquoted;
125  quote = '\0';
126  }
127 
128  slen = fr_value_box_from_substr(vp, &vp->data, vp->da->type, vp->da, in, rules, tainted);
129  if (slen < 0) return slen - (quote != 0);
130 
131  if (quote && !fr_sbuff_next_if_char(in, quote)) {
132  fr_strerror_const("Unterminated string");
133  return 0;
134  }
135 
136  return slen + ((quote != 0) << 1);
137 }
138 
139 /** Parse a #fr_pair_list_t from a substring
140  *
141  * @param[in] root where we start parsing from
142  * @param[in,out] relative where we left off, or where we should continue from
143  * @param[in] in input sbuff
144  * @return
145  * - <0 on error
146  * - 0 on no input
147  * - >0 on how many bytes of input we read
148  *
149  */
151  fr_sbuff_t *in)
152 {
153  int i, components;
154  bool raw;
155  bool was_relative = false;
156  bool append;
157  bool keep_going;
158  fr_type_t raw_type;
159  fr_token_t op;
160  fr_slen_t slen;
161  fr_pair_t *vp;
162  fr_dict_attr_t const *internal = NULL;
163  fr_sbuff_marker_t lhs_m, rhs_m;
164  fr_sbuff_t our_in = FR_SBUFF(in);
165 
166  if (unlikely(!root->ctx)) {
167  fr_strerror_const("Missing ctx fr_pair_parse_t");
168  return -1;
169  }
170 
171  if (unlikely(!root->da)) {
172  fr_strerror_const("Missing namespace attribute");
173  return -1;
174  }
175 
176  if (unlikely(!root->list)) {
177  fr_strerror_const("Missing list");
178  return -1;
179  }
180 
181  if (fr_dict_internal()) internal = fr_dict_root(fr_dict_internal());
182  if (internal == root->da) internal = NULL;
183 
184  if (fr_sbuff_remaining(&our_in) == 0) return 0;
185 
186 redo:
187  append = true;
188  raw = false;
189  raw_type = FR_TYPE_NULL;
190  relative->last_char = 0;
191  vp = NULL;
192 
193  fr_sbuff_adv_past_whitespace(&our_in, SIZE_MAX, NULL);
194 
195  /*
196  * Relative attributes start from the input list / parent.
197  *
198  * Absolute attributes start from the root list / parent.
199  *
200  * Once we decide where we are coming from, all subsequent operations are on the "relative"
201  * structure.
202  */
203  if (!fr_sbuff_next_if_char(&our_in, '.')) {
204  *relative = *root;
205 
206  append = !was_relative;
207  was_relative = false;
208 
209  /*
210  * Be nice to people who expect to see '&' everywhere.
211  */
212  (void) fr_sbuff_next_if_char(&our_in, '&');
213 
214  /*
215  * Raw attributes can only be at our root.
216  *
217  * "raw.foo" means that SOME component of the OID is raw. But the starting bits might be known.
218  */
219  if (fr_sbuff_is_str_literal(&our_in, "raw.")) {
220  raw = true;
221  fr_sbuff_advance(&our_in, 4);
222  }
223  } else if (!relative->ctx || !relative->da || !relative->list) {
224  fr_strerror_const("The '.Attribute' syntax can only be used if the previous attribute is structural, and the line ends with ','");
225  return -1;
226  } else {
227  was_relative = true;
228  }
229 
230  /*
231  * Set the LHS marker to be after any initial '.'
232  */
233  fr_sbuff_marker(&lhs_m, &our_in);
234 
235  /*
236  * Skip over the attribute name. We need to get the operator _before_ creating the VPs.
237  */
238  components = 0;
239  do {
240  if (fr_sbuff_adv_past_allowed(&our_in, SIZE_MAX, fr_dict_attr_allowed_chars, NULL) == 0) break;
241  components++;
242  } while (fr_sbuff_next_if_char(&our_in, '.'));
243 
244  /*
245  * Couldn't find anything.
246  */
247  if (!components) {
248  fr_strerror_const("Empty input");
249  return 0;
250  }
251 
252  fr_sbuff_adv_past_whitespace(&our_in, SIZE_MAX, NULL);
253 
254  /*
255  * Look for the operator.
256  */
257  if (relative->allow_compare) {
259  } else {
261  }
262  if (op == T_INVALID) {
263  fr_strerror_const("Expecting operator");
264  return fr_sbuff_error(&our_in);
265  }
266 
267  /*
268  * Skip past whitespace, and set a marker at the RHS. Then reset the input to the LHS attribute
269  * name, so that we can go back and parse / create the attributes.
270  */
271  fr_sbuff_adv_past_whitespace(&our_in, SIZE_MAX, NULL);
272 
273  fr_sbuff_marker(&rhs_m, &our_in);
274 
275  /*
276  * If the value of the attribute is 0x..., then we always force the raw type to be octets, even
277  * if the attribute is named and known. e.g. raw.Framed-IP-Address = 0x01
278  *
279  * OR if the attribute is entirely unknown (and not a raw version of a known one), then we allow a
280  * cast to set the data type.
281  */
282  if (raw) {
283  if (fr_sbuff_is_str_literal(&our_in, "0x")) {
284  raw_type = FR_TYPE_OCTETS;
285 
286  } else if (fr_sbuff_next_if_char(&our_in, '(')) {
288 
289  fr_sbuff_marker(&m, &our_in);
290 
291  fr_sbuff_out_by_longest_prefix(&slen, &raw_type, fr_type_table, &our_in, FR_TYPE_NULL);
292  if ((raw_type == FR_TYPE_NULL) || !fr_type_is_leaf(raw_type)) {
293  fr_sbuff_set(&our_in, &rhs_m);
294  fr_strerror_const("Invalid data type in cast");
295  return fr_sbuff_error(&our_in);
296  }
297 
298  if (!fr_sbuff_next_if_char(&our_in, ')')) {
299  fr_strerror_const("Missing ')' in cast");
300  return fr_sbuff_error(&our_in);
301  }
302 
303  fr_sbuff_adv_past_whitespace(&our_in, SIZE_MAX, NULL);
304  fr_sbuff_marker(&rhs_m, &our_in);
305 
306  } else if (fr_sbuff_is_char(&our_in, '{')) {
307  raw_type = FR_TYPE_TLV;
308  }
309  }
310 
311  fr_sbuff_set(&our_in, &lhs_m);
312 
313  /*
314  * Parse each OID component, creating pairs along the way.
315  */
316  i = 1;
317  do {
319  fr_dict_attr_t const *da = NULL;
320  fr_dict_attr_t const *da_unknown = NULL;
321 
322  slen = fr_dict_oid_component(&err, &da, relative->da, &our_in, &bareword_terminals);
323  if (err == FR_DICT_ATTR_NOTFOUND) {
324  if (raw) {
325  /*
326  * We looked up raw.FOO, and FOO wasn't found. The component must be a number.
327  */
328  if (!fr_sbuff_is_digit(&our_in)) goto notfound;
329 
330  if (raw_type == FR_TYPE_NULL) {
331  raw_type = FR_TYPE_OCTETS;
332 
333  } else if (raw_type == FR_TYPE_TLV) {
334  /*
335  * Reset the type based on the parent.
336  */
337  if (relative->da->type == FR_TYPE_VSA) {
338  raw_type = FR_TYPE_VENDOR;
339  }
340  }
341 
342  slen = fr_dict_attr_unknown_afrom_oid_substr(NULL, &da_unknown, relative->da, &our_in, raw_type);
343  if (slen < 0) return fr_sbuff_error(&our_in) + slen;
344 
345  fr_assert(da_unknown);
346 
347  /*
348  * Append from the root list, starting at the root depth.
349  */
350  vp = fr_pair_afrom_da_depth_nested(root->ctx, root->list, da_unknown,
351  root->da->depth);
352  fr_dict_attr_unknown_free(&da_unknown);
353 
354  if (!vp) return fr_sbuff_error(&our_in);
355 
356  PAIR_VERIFY(vp);
357 
358  /*
359  * The above function MAY have jumped ahead a few levels. Ensure
360  * that the relative structure is set correctly for the parent,
361  * but only if the parent changed.
362  */
363  if (relative->da != vp->da->parent) {
364  fr_pair_t *parent_vp;
365 
366  parent_vp = fr_pair_parent(vp);
367  fr_assert(parent_vp);
368 
369  relative->ctx = parent_vp;
370  relative->da = parent_vp->da;
371  relative->list = &parent_vp->vp_group;
372  }
373 
374  /*
375  * Update the new relative information for the current VP, which
376  * may be structural, or a key field.
377  */
378  fr_assert(!fr_sbuff_is_char(&our_in, '.')); /* be sure the loop exits */
379  goto update_relative;
380  }
381 
382  if (internal) {
383  slen = fr_dict_oid_component(&err, &da, internal, &our_in, &bareword_terminals);
384  }
385  }
386 
387  if (err != FR_DICT_ATTR_OK) {
388  notfound:
389  fr_sbuff_marker(&rhs_m, &our_in);
390  fr_sbuff_adv_past_allowed(&our_in, SIZE_MAX, fr_dict_attr_allowed_chars, NULL);
391 
392  fr_strerror_printf("Unknown attribute \"%.*s\" for parent \"%s\"",
393  (int) fr_sbuff_diff(&our_in, &rhs_m), fr_sbuff_current(&rhs_m),
394  relative->da->name);
395  return fr_sbuff_error(&our_in);
396  }
397  fr_assert(da != NULL);
398 
399 #if 0
400  /*
401  * @todo - If we're at the root, then aliases can cause us to jump over intermediate
402  * attributes. In which case we have to create the intermediate attributes, too.
403  */
404  if (relative->da) {
405  if (relative->da->flags.is_root) {
406  fr_assert(da->depth == 1);
407  }
408  }
409 #endif
410 
411  /*
412  * Intermediate components are always found / created. The final component is
413  * always appended, no matter the operator.
414  */
415  if (i < components) {
416  if (append) {
417  vp = fr_pair_find_last_by_da(relative->list, NULL, da);
418  if (!vp) {
419  if (fr_pair_append_by_da(relative->ctx, &vp, relative->list, da) < 0) {
420  return fr_sbuff_error(&our_in);
421  }
422  }
423  } else {
424  vp = fr_pair_afrom_da(relative->ctx, da);
425  if (!vp) return fr_sbuff_error(&our_in);
426 
427  fr_pair_append(relative->list, vp);
428  }
429 
430  /*
431  * We had a raw type and we're passing
432  * raw octets to it. We don't care if
433  * its structural or anything else. Just
434  * create the raw attribute.
435  */
436  } else if (raw_type != FR_TYPE_NULL) {
437  /*
438  * We have parsed the full OID tree, *and* found a known attribute. e.g. raw.Vendor-Specific = ...
439  *
440  * For some reason, we allow: raw.Vendor-Specific = { ... }
441  *
442  * But this is what we really want: raw.Vendor-Specific = 0xabcdef
443  */
444  fr_assert(!da_unknown);
445 
446  if ((raw_type != FR_TYPE_OCTETS) && (raw_type != da->type)) {
447  fr_strerror_printf("Cannot create raw attribute %s which changes data type from %s to %s",
448  da->name, fr_type_to_str(da->type), fr_type_to_str(raw_type));
449  return fr_sbuff_error(&our_in);
450  }
451 
452  da_unknown = fr_dict_attr_unknown_raw_afrom_da(NULL, da);
453  if (!da_unknown) return fr_sbuff_error(&our_in);
454 
455  fr_assert(da_unknown->type == FR_TYPE_OCTETS);
456 
457  if (fr_pair_append_by_da(relative->ctx, &vp, relative->list, da_unknown) < 0) {
458  fr_dict_attr_unknown_free(&da_unknown);
459  return fr_sbuff_error(&our_in);
460  }
461 
462  fr_dict_attr_unknown_free(&da_unknown);
463  fr_assert(vp->vp_type == FR_TYPE_OCTETS);
464 
465  /*
466  * Just create the leaf attribute.
467  */
468  } else if (da->parent->type == FR_TYPE_STRUCT) {
469  fr_pair_t *tail = fr_pair_list_tail(relative->list);
470 
471  /*
472  * If the structure member is _less_ than the last one, go create a new structure
473  * in the grandparent.
474  */
475  if (tail && (tail->da->attr >= da->attr) && !da->flags.array) {
476  fr_pair_t *parent_vp, *grand_vp;
477 
478  parent_vp = fr_pair_list_parent(relative->list);
479  if (!parent_vp) goto leaf;
480 
481  fr_assert(da->parent == parent_vp->da);
482 
483  grand_vp = fr_pair_parent(parent_vp);
484  if (!grand_vp) goto leaf;
485 
486  /*
487  * Create a new parent in the context of the grandparent.
488  */
489  if (fr_pair_append_by_da(grand_vp, &vp, &grand_vp->vp_group, parent_vp->da) < 0) {
490  return fr_sbuff_error(&our_in);
491  }
492 
493  relative->ctx = vp;
494  fr_assert(relative->da == vp->da);
495  relative->list = &vp->vp_group;
496  }
497 
498  goto leaf;
499  } else {
500  leaf:
501  if (fr_pair_append_by_da(relative->ctx, &vp, relative->list, da) < 0) {
502  return fr_sbuff_error(&our_in);
503  }
504  }
505 
506  fr_assert(vp != NULL);
507 
508  update_relative:
509  /*
510  * Reset the parsing to the new namespace if necessary.
511  */
512  switch (vp->vp_type) {
513  case FR_TYPE_TLV:
514  case FR_TYPE_STRUCT:
515  case FR_TYPE_VSA:
516  case FR_TYPE_VENDOR:
517  relative->ctx = vp;
518  relative->da = vp->da;
519  relative->list = &vp->vp_group;
520  break;
521 
522  /*
523  * Groups reset the namespace to the da referenced by the group.
524  *
525  * Internal groups get their namespace to the root namespace.
526  */
527  case FR_TYPE_GROUP:
528  relative->ctx = vp;
529  relative->da = fr_dict_attr_ref(vp->da);
530  if (relative->da == internal) {
531  relative->da = fr_dict_root(root->da->dict);
532  }
533  relative->list = &vp->vp_group;
534  break;
535 
536  default:
537  /*
538  * Key fields have children in their namespace, but the children go into the
539  * parents context and list.
540  */
542  fr_pair_t *parent_vp;
543 
544  parent_vp = fr_pair_parent(vp);
545  fr_assert(parent_vp);
546 
547  relative->ctx = parent_vp;
548  relative->da = vp->da;
549  relative->list = &parent_vp->vp_group;
550  }
551  break;
552  }
553 
554  i++;
555  } while (fr_sbuff_next_if_char(&our_in, '.'));
556 
557  if (relative->allow_compare) {
558  vp->op = op;
559  } else {
560  vp->op = T_OP_EQ;
561  }
562 
563  /*
564  * Reset the parser to the RHS so that we can parse the value.
565  */
566  fr_sbuff_set(&our_in, &rhs_m);
567 
568  /*
569  * The RHS is a list, go parse the nested attributes.
570  */
571  if (fr_sbuff_next_if_char(&our_in, '{')) {
572  fr_pair_parse_t child = (fr_pair_parse_t) {
573  .allow_compare = root->allow_compare,
574  };
575 
576  if (!fr_type_is_structural(vp->vp_type)) {
577  fr_strerror_printf("Cannot assign list to leaf data type %s for attribute %s",
578  fr_type_to_str(vp->vp_type), vp->da->name);
579  return fr_sbuff_error(&our_in);
580  }
581 
582  while (true) {
583  fr_sbuff_adv_past_whitespace(&our_in, SIZE_MAX, NULL);
584 
585  if (fr_sbuff_is_char(&our_in, '}')) {
586  break;
587  }
588 
589  slen = fr_pair_list_afrom_substr(relative, &child, &our_in);
590  if (!slen) break;
591 
592  if (slen < 0) return fr_sbuff_error(&our_in) + slen;
593  }
594 
595  if (!fr_sbuff_next_if_char(&our_in, '}')) {
596  fr_strerror_const("Failed to end list with '}'");
597  return fr_sbuff_error(&our_in);
598  }
599 
600  goto done;
601  }
602 
603  if (fr_type_is_structural(vp->vp_type)) {
604  fr_strerror_printf("Group list for %s MUST start with '{'", vp->da->name);
605  return fr_sbuff_error(&our_in);
606  }
607 
608  slen = fr_pair_value_from_substr(vp, &our_in, relative->tainted);
609  if (slen <= 0) return fr_sbuff_error(&our_in) + slen;
610 
611 done:
612  PAIR_VERIFY(vp);
613 
614  keep_going = false;
615  if (fr_sbuff_next_if_char(&our_in, ',')) {
616  keep_going = true;
617  relative->last_char = ',';
618  }
619 
620  if (relative->allow_crlf) {
621  size_t len;
622 
623  len = fr_sbuff_adv_past_allowed(&our_in, SIZE_MAX, sbuff_char_line_endings, NULL);
624  if (len) {
625  keep_going |= true;
626  if (!relative->last_char) relative->last_char = '\n';
627  }
628  }
629 
630  keep_going &= ((fr_sbuff_remaining(&our_in) > 0) || (fr_sbuff_extend(&our_in) > 0));
631 
632  if (keep_going) goto redo;
633 
634  FR_SBUFF_SET_RETURN(in, &our_in);
635 }
636 
637 /** Read valuepairs from the fp up to End-Of-File.
638  *
639  * @param[in] ctx for talloc
640  * @param[in] dict to resolve attributes in.
641  * @param[in,out] out where the parsed fr_pair_ts will be appended.
642  * @param[in] fp to read valuepairs from.
643  * @param[out] pfiledone true if file parsing complete;
644  * @return
645  * - 0 on success
646  * - -1 on error
647  */
648 int fr_pair_list_afrom_file(TALLOC_CTX *ctx, fr_dict_t const *dict, fr_pair_list_t *out, FILE *fp, bool *pfiledone)
649 {
650  fr_pair_list_t tmp_list;
651  fr_pair_parse_t root, relative;
652  bool found = false;
653  char buf[8192];
654 
655  /*
656  * Read all of the attributes on the current line.
657  *
658  * If we get nothing but an EOL, it's likely OK.
659  */
660  fr_pair_list_init(&tmp_list);
661 
662  root = (fr_pair_parse_t) {
663  .ctx = ctx,
664  .da = fr_dict_root(dict),
665  .list = &tmp_list,
666  .allow_crlf = true,
667  .allow_compare = true,
668  };
669  relative = (fr_pair_parse_t) { };
670 
671  while (fgets(buf, sizeof(buf), fp) != NULL) {
672  /*
673  * If we get a '\n' by itself, we assume that's
674  * the end of that VP list.
675  */
676  if ((buf[0] == '\n') || (buf[0] == '\r')) {
677  if (found) {
678  *pfiledone = false;
679  break;
680  }
681  continue;
682  }
683 
684  /*
685  * Comments get ignored
686  */
687  if (buf[0] == '#') continue;
688 
689  /*
690  * Leave "relative" between calls, so that we can do:
691  *
692  * foo = {}
693  * .bar = baz
694  *
695  * and get
696  *
697  * foo = { bar = baz }
698  */
699  if (fr_pair_list_afrom_substr(&root, &relative, &FR_SBUFF_IN(buf, strlen(buf))) < 0) {
700  *pfiledone = false;
701  fr_pair_list_free(&tmp_list);
702  return -1;
703  }
704 
705  found = true;
706  }
707 
708  fr_pair_list_append(out, &tmp_list);
709 
710  *pfiledone = true;
711  return 0;
712 }
713 
714 
715 /** Move pairs from source list to destination list respecting operator
716  *
717  * @note This function does some additional magic that's probably not needed in most places. Consider using
718  * radius_legacy_map_cmp() and radius_legacy_map_apply() instead.
719  *
720  * @note fr_pair_list_free should be called on the head of the source list to free
721  * unmoved attributes (if they're no longer needed).
722  *
723  * @param[in,out] to destination list.
724  * @param[in,out] from source list.
725  * @param[in] op operator for list move.
726  */
728 {
729  fr_pair_t *vp, *next, *found;
730  fr_pair_list_t head_append, head_prepend;
731 
732  if (!to || fr_pair_list_empty(from)) return;
733 
734  /*
735  * We're editing the "to" list while we're adding new
736  * attributes to it. We don't want the new attributes to
737  * be edited, so we create an intermediate list to hold
738  * them during the editing process.
739  */
740  fr_pair_list_init(&head_append);
741 
742  /*
743  * Any attributes that are requested to be prepended
744  * are added to a temporary list here
745  */
746  fr_pair_list_init(&head_prepend);
747 
748  /*
749  * We're looping over the "from" list, moving some
750  * attributes out, but leaving others in place.
751  */
752  for (vp = fr_pair_list_head(from); vp != NULL; vp = next) {
753  PAIR_VERIFY(vp);
754  next = fr_pair_list_next(from, vp);
755 
756  /*
757  * We never move Fall-Through.
758  */
759  if (fr_dict_attr_is_top_level(vp->da) && (vp->da->attr == FR_FALL_THROUGH) &&
760  (fr_dict_by_da(vp->da) == fr_dict_internal())) {
761  continue;
762  }
763 
764  /*
765  * Unlike previous versions, we treat all other
766  * attributes as normal. i.e. there's no special
767  * treatment for passwords or Hint.
768  */
769 
770  switch (vp->op) {
771  /*
772  * Anything else are operators which
773  * shouldn't occur. We ignore them, and
774  * leave them in place.
775  */
776  default:
777  continue;
778 
779  /*
780  * Add it to the "to" list, but only if
781  * it doesn't already exist.
782  */
783  case T_OP_EQ:
784  found = fr_pair_find_by_da(to, NULL, vp->da);
785  if (!found) goto do_add;
786  continue;
787 
788  /*
789  * Add it to the "to" list, and delete any attribute
790  * of the same vendor/attr which already exists.
791  */
792  case T_OP_SET:
793  found = fr_pair_find_by_da(to, NULL, vp->da);
794  if (!found) goto do_add;
795 
796  /*
797  * Delete *all* matching attributes.
798  */
799  fr_pair_delete_by_da(to, found->da);
800  goto do_add;
801 
802  /*
803  * Move it from the old list and add it
804  * to the new list.
805  */
806  case T_OP_ADD_EQ:
807  do_add:
808  fr_pair_remove(from, vp);
809  fr_pair_append(&head_append, vp);
810  continue;
811 
812  case T_OP_PREPEND:
813  fr_pair_remove(from, vp);
814  fr_pair_prepend(&head_prepend, vp);
815  continue;
816  }
817  } /* loop over the "from" list. */
818 
819  /*
820  * If the op parameter was prepend, add the "new list
821  * attributes first as those whose individual operator
822  * is prepend should be prepended to the resulting list
823  */
824  if (op == T_OP_PREPEND) fr_pair_list_prepend(to, &head_append);
825 
826  /*
827  * If there are any items in the prepend list prepend
828  * it to the "to" list
829  */
830  fr_pair_list_prepend(to, &head_prepend);
831 
832  /*
833  * If the op parameter was not prepend, take the "new"
834  * list, and append it to the "to" list.
835  */
836  if (op != T_OP_PREPEND) fr_pair_list_append(to, &head_append);
837 
838  fr_pair_list_free(from);
839 }
static fr_dict_t * dict
Definition: fuzzer.c:46
#define RCSID(id)
Definition: build.h:481
#define L(_str)
Helper for initialising arrays of string literals.
Definition: build.h:207
#define unlikely(_x)
Definition: build.h:379
#define NUM_ELEMENTS(_t)
Definition: build.h:335
next
Definition: dcursor.h:178
static fr_slen_t err
Definition: dict.h:821
bool const fr_dict_attr_allowed_chars[UINT8_MAX+1]
Characters that are allowed in dictionary attribute names.
Definition: dict_util.c:51
fr_dict_attr_t const * fr_dict_root(fr_dict_t const *dict)
Return the root attribute of a dictionary.
Definition: dict_util.c:2400
void fr_dict_attr_unknown_free(fr_dict_attr_t const **da)
Free dynamically allocated (unknown attributes)
Definition: dict_unknown.c:148
fr_dict_t const * fr_dict_by_da(fr_dict_attr_t const *da)
Attempt to locate the protocol dictionary containing an attribute.
Definition: dict_util.c:2606
fr_slen_t fr_dict_attr_unknown_afrom_oid_substr(TALLOC_CTX *ctx, fr_dict_attr_t const **out, fr_dict_attr_t const *parent, fr_sbuff_t *in, fr_type_t type))
Create a fr_dict_attr_t from an ASCII attribute and value.
Definition: dict_unknown.c:378
fr_dict_attr_t * fr_dict_attr_unknown_raw_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da))
Initialise an octets type attribute from a da.
Definition: dict_unknown.c:352
fr_dict_t const * fr_dict_internal(void)
Definition: dict_util.c:4610
static bool fr_dict_attr_is_top_level(fr_dict_attr_t const *da)
Return true if this attribute is parented directly off the dictionary root.
Definition: dict.h:754
fr_dict_attr_err_t
Errors returned by attribute lookup functions.
Definition: dict.h:289
@ FR_DICT_ATTR_OK
No error.
Definition: dict.h:290
@ FR_DICT_ATTR_NOTFOUND
Attribute couldn't be found.
Definition: dict.h:291
fr_slen_t fr_dict_oid_component(fr_dict_attr_err_t *err, fr_dict_attr_t const **out, fr_dict_attr_t const *parent, fr_sbuff_t *in, fr_sbuff_term_t const *tt))
Parse an OID component, resolving it to a defined attribute.
Definition: dict_util.c:2229
#define fr_dict_attr_is_key_field(_da)
Definition: dict.h:152
static fr_slen_t in
Definition: dict.h:821
static fr_dict_attr_t const * fr_dict_attr_ref(fr_dict_attr_t const *da)
Return the reference associated with a group type attribute.
Definition: dict_ext.h:184
fr_type_t
Definition: merged_model.c:80
@ FR_TYPE_TLV
Contains nested attributes.
Definition: merged_model.c:118
@ FR_TYPE_NULL
Invalid (uninitialised) attribute type.
Definition: merged_model.c:81
@ FR_TYPE_STRUCT
like TLV, but without T or L, and fixed-width children
Definition: merged_model.c:119
@ FR_TYPE_VENDOR
Attribute that represents a vendor in the attribute tree.
Definition: merged_model.c:122
@ FR_TYPE_VSA
Vendor-Specific, for RADIUS attribute 26.
Definition: merged_model.c:121
@ FR_TYPE_OCTETS
Raw octets.
Definition: merged_model.c:84
@ FR_TYPE_GROUP
A grouping of other attributes.
Definition: merged_model.c:124
long int ssize_t
Definition: merged_model.c:24
ssize_t fr_slen_t
Definition: merged_model.c:35
fr_pair_t * fr_pair_find_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the first pair with a matching da.
Definition: pair.c:693
int fr_pair_append_by_da(TALLOC_CTX *ctx, fr_pair_t **out, fr_pair_list_t *list, fr_dict_attr_t const *da)
Alloc a new fr_pair_t (and append)
Definition: pair.c:1466
fr_pair_t * fr_pair_parent(fr_pair_t const *vp)
Return a pointer to the parent pair.
Definition: pair.c:942
fr_pair_t * fr_pair_afrom_da(TALLOC_CTX *ctx, fr_dict_attr_t const *da)
Dynamically allocate a new attribute and assign a fr_dict_attr_t.
Definition: pair.c:283
fr_pair_t * fr_pair_find_last_by_da(fr_pair_list_t const *list, fr_pair_t const *prev, fr_dict_attr_t const *da)
Find the last pair with a matching da.
Definition: pair.c:717
int fr_pair_append(fr_pair_list_t *list, fr_pair_t *to_add)
Add a VP to the end of the list.
Definition: pair.c:1345
int fr_pair_delete_by_da(fr_pair_list_t *list, fr_dict_attr_t const *da)
Delete matching pairs from the specified list.
Definition: pair.c:1689
void fr_pair_list_init(fr_pair_list_t *list)
Initialise a pair list header.
Definition: pair.c:46
int fr_pair_prepend(fr_pair_list_t *list, fr_pair_t *to_add)
Add a VP to the start of the list.
Definition: pair.c:1314
fr_pair_t * fr_pair_list_parent(fr_pair_list_t const *list)
Return a pointer to the parent pair which contains this list.
Definition: pair.c:956
fr_pair_t * fr_pair_afrom_da_depth_nested(TALLOC_CTX *ctx, fr_pair_list_t *list, fr_dict_attr_t const *da, int start)
Create a pair (and all intermediate parents), and append it to the list.
Definition: pair.c:408
static fr_sbuff_parse_rules_t const bareword_unquoted
Definition: pair_legacy.c:89
static fr_table_num_sorted_t const pair_assignment_op_table[]
Definition: pair_legacy.c:59
fr_slen_t fr_pair_list_afrom_substr(fr_pair_parse_t const *root, fr_pair_parse_t *relative, fr_sbuff_t *in)
Parse a fr_pair_list_t from a substring.
Definition: pair_legacy.c:150
int fr_pair_list_afrom_file(TALLOC_CTX *ctx, fr_dict_t const *dict, fr_pair_list_t *out, FILE *fp, bool *pfiledone)
Read valuepairs from the fp up to End-Of-File.
Definition: pair_legacy.c:648
void fr_pair_list_move_op(fr_pair_list_t *to, fr_pair_list_t *from, fr_token_t op)
Move pairs from source list to destination list respecting operator.
Definition: pair_legacy.c:727
static size_t pair_comparison_op_table_len
Definition: pair_legacy.c:81
static fr_table_num_sorted_t const pair_comparison_op_table[]
Definition: pair_legacy.c:66
static fr_sbuff_term_t const bareword_terminals
Definition: pair_legacy.c:36
static ssize_t fr_pair_value_from_substr(fr_pair_t *vp, fr_sbuff_t *in, bool tainted)
Definition: pair_legacy.c:102
static ssize_t pair_assignment_op_table_len
Definition: pair_legacy.c:64
struct fr_pair_parse_s fr_pair_parse_t
fr_pair_list_t * list
list where output is placed
Definition: pair_legacy.h:45
TALLOC_CTX * ctx
Definition: pair_legacy.h:43
bool allow_compare
allow comparison operators
Definition: pair_legacy.h:46
fr_dict_attr_t const * da
root da to start parsing from
Definition: pair_legacy.h:44
bool tainted
source is tainted
Definition: pair_legacy.h:48
bool allow_crlf
allow CRLF, and treat like comma
Definition: pair_legacy.h:47
char last_char
last character we read - ',', ' ', or 0 for EOF
Definition: pair_legacy.h:49
static bool done
Definition: radclient.c:80
size_t fr_sbuff_adv_past_allowed(fr_sbuff_t *sbuff, size_t len, bool const allowed[static UINT8_MAX+1], fr_sbuff_term_t const *tt)
Wind position past characters in the allowed set.
Definition: sbuff.c:1755
bool const sbuff_char_line_endings[UINT8_MAX+1]
Definition: sbuff.c:104
bool fr_sbuff_next_if_char(fr_sbuff_t *sbuff, char c)
Return true if the current char matches, and if it does, advance.
Definition: sbuff.c:2066
#define fr_sbuff_out_by_longest_prefix(_match_len, _out, _table, _sbuff, _def)
#define fr_sbuff_is_str_literal(_sbuff, _str)
#define fr_sbuff_set(_dst, _src)
#define fr_sbuff_diff(_a, _b)
#define FR_SBUFF_IN(_start, _len_or_end)
#define fr_sbuff_adv_past_whitespace(_sbuff, _len, _tt)
#define fr_sbuff_current(_sbuff_or_marker)
#define FR_SBUFF_TERMS(...)
Initialise a terminal structure with a list of sorted strings.
Definition: sbuff.h:167
#define fr_sbuff_extend(_sbuff_or_marker)
#define fr_sbuff_is_char(_sbuff_or_marker, _c)
#define fr_sbuff_is_digit(_sbuff_or_marker)
#define fr_sbuff_error(_sbuff_or_marker)
#define FR_SBUFF(_sbuff_or_marker)
#define fr_sbuff_advance(_sbuff_or_marker, _len)
#define fr_sbuff_remaining(_sbuff_or_marker)
Set of terminal elements.
Definition: merged_model.c:161
fr_assert(0)
fr_pair_t * vp
Stores an attribute, a value and various bits of other data.
Definition: pair.h:68
fr_dict_attr_t const *_CONST da
Dictionary attribute defines the attribute number, vendor and type of the pair.
Definition: pair.h:69
An element in a lexicographically sorted array of name to num mappings.
Definition: table.h:49
enum fr_token fr_token_t
@ T_INVALID
Definition: token.h:39
@ T_OP_CMP_TRUE
Definition: token.h:104
@ T_OP_EQ
Definition: token.h:83
@ T_OP_SET
Definition: token.h:84
@ T_OP_NE
Definition: token.h:97
@ T_OP_ADD_EQ
Definition: token.h:69
@ T_OP_CMP_FALSE
Definition: token.h:105
@ T_OP_REG_EQ
Definition: token.h:102
@ T_OP_CMP_EQ
Definition: token.h:106
@ T_OP_LE
Definition: token.h:100
@ T_OP_GE
Definition: token.h:98
@ T_OP_GT
Definition: token.h:99
@ T_OP_LT
Definition: token.h:101
@ T_OP_REG_NE
Definition: token.h:103
@ T_OP_PREPEND
Definition: token.h:85
fr_pair_t * fr_pair_list_head(fr_pair_list_t const *list)
Get the head of a valuepair list.
Definition: pair_inline.c:43
fr_pair_t * fr_pair_list_tail(fr_pair_list_t const *list)
Get the tail of a valuepair list.
Definition: pair_inline.c:56
fr_pair_t * fr_pair_remove(fr_pair_list_t *list, fr_pair_t *vp)
Remove fr_pair_t from a list without freeing.
Definition: pair_inline.c:94
bool fr_pair_list_empty(fr_pair_list_t const *list)
Is a valuepair list empty.
Definition: pair_inline.c:125
fr_pair_t * fr_pair_list_next(fr_pair_list_t const *list, fr_pair_t const *item))
Get the next item in a valuepair list after a specific entry.
Definition: pair_inline.c:70
#define PAIR_VERIFY(_x)
Definition: pair.h:191
void fr_pair_list_free(fr_pair_list_t *list)
Free memory used by a valuepair list.
Definition: pair_inline.c:113
void fr_pair_list_append(fr_pair_list_t *dst, fr_pair_list_t *src)
Appends a list of fr_pair_t from a temporary list to a destination list.
Definition: pair_inline.c:182
void fr_pair_list_prepend(fr_pair_list_t *dst, fr_pair_list_t *src)
Move a list of fr_pair_t from a temporary list to the head of a destination list.
Definition: pair_inline.c:195
#define fr_strerror_printf(_fmt,...)
Log to thread local error buffer.
Definition: strerror.h:64
#define fr_strerror_const(_msg)
Definition: strerror.h:223
fr_table_num_ordered_t const fr_type_table[]
Map data types to names representing those types.
Definition: types.c:31
static char const * fr_type_to_str(fr_type_t type)
Return a static string containing the type name.
Definition: types.h:433
#define fr_type_is_structural(_x)
Definition: types.h:371
#define fr_type_is_leaf(_x)
Definition: types.h:372
ssize_t fr_value_box_from_substr(TALLOC_CTX *ctx, fr_value_box_t *dst, fr_type_t dst_type, fr_dict_attr_t const *dst_enumv, fr_sbuff_t *in, fr_sbuff_parse_rules_t const *rules, bool tainted)
Convert string value to a fr_value_box_t type.
Definition: value.c:4802
fr_sbuff_parse_rules_t const value_parse_rules_single_quoted
Definition: value.c:553
FR_SBUFF_SET_RETURN(sbuff, &our_sbuff)
fr_sbuff_parse_rules_t const value_parse_rules_double_quoted
Definition: value.c:547
static size_t char ** out
Definition: value.h:997