summaryrefslogtreecommitdiff
path: root/test/mocklibc/src/netgroup-debug.c
blob: 81d6e7285bfbfc402572275b87c109669e803c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
 * Copyright 2011 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Author: Nikki VonHollen <vonhollen@gmail.com>
 */

#include "netgroup-debug.h"

#include <stdio.h>
#include <stdlib.h>

void netgroup_debug_print_entry(struct entry *entry, FILE *stream, unsigned int indent) {
  print_indent(stream, indent);

  if (entry->type == TRIPLE_ENTRY) {
    fprintf(stream, "triple (%s,%s,%s)\n",
        entry->data.triple.hostname,
        entry->data.triple.username,
        entry->data.triple.domainname);
  } else if (entry->type == CHILD_ENTRY) {
    fprintf(stream, "child '%s'\n", entry->data.child.name);
    struct entry *child;
    for (child = entry->data.child.head; child; child = child->next) {
      netgroup_debug_print_entry(child, stream, indent + 1);
    }
  } else {
    fprintf(stream, "UNKNOWN_TYPE");
  }
}

void netgroup_debug_print_group(struct netgroup *group, FILE *stream, unsigned int indent) {
  print_indent(stream, indent);
  fprintf(stream, "%s\n", group->name);
  struct entry *entry;
  for (entry = group->head; entry; entry = entry->next) {
    netgroup_debug_print_entry(entry, stream, indent + 1);
  }
}

void netgroup_debug_print_group_unrolled(struct netgroup *group, FILE *stream, unsigned int indent) {
  print_indent(stream, indent);
  fprintf(stream, "%s\n", group->name);

  struct netgroup_iter iter;
  netgroup_iter_init(&iter, group);

  struct entry *entry;
  while ((entry = netgroup_iter_next(&iter))) {
    netgroup_debug_print_entry(entry, stream, indent + 1);
  }
}

void netgroup_debug_print_all(struct netgroup *head, FILE *stream, unsigned int indent) {
  struct netgroup *group;
  for (group = head; group; group = group->next) {
    netgroup_debug_print_group(group, stream, indent);
  }
}

int main(int argc, char **argv) {
  struct netgroup *groups = netgroup_parse_all();
  if (argc == 1)
    netgroup_debug_print_all(groups, stdout, 0);
  else if (argc == 2) {
    struct netgroup *group = netgroup_find(groups, argv[1]);
    if (!group)
      return 1;
    netgroup_debug_print_group_unrolled(group, stdout, 0);
  }

  return 0;
}