]> jfr.im git - irc/quakenet/newserv.git/blob - trusts/trusts_commands.c
Okay, HUGE commit.
[irc/quakenet/newserv.git] / trusts / trusts_commands.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "../control/control.h"
4 #include "../lib/irc_string.h"
5 #include "../lib/strlfunc.h"
6 #include "../core/nsmalloc.h"
7 #include "trusts.h"
8
9 static void registercommands(int, void *);
10 static void deregistercommands(int, void *);
11
12 void calculatespaces(int spaces, int width, char *str, char **_prebuf, char **_postbuf) {
13 static char prebuf[512], postbuf[512];
14 int spacelen;
15
16 if(spaces + 5 >= sizeof(prebuf)) {
17 prebuf[0] = prebuf[1] = '\0';
18 } else {
19 memset(prebuf, ' ', spaces);
20 prebuf[spaces] = '\0';
21 }
22
23 spacelen = width - (strlen(str) + spaces);
24 if(spacelen <= 0 || spacelen + 5 >= sizeof(postbuf)) {
25 postbuf[0] = postbuf[1] = '\0';
26 } else {
27 memset(postbuf, ' ', spacelen);
28 postbuf[spacelen] = '\0';
29 }
30
31 *_prebuf = prebuf;
32 *_postbuf = postbuf;
33 }
34
35 static void traverseandmark(unsigned int marker, trusthost *th) {
36 th->marker = marker;
37
38 for(th=th->children;th;th=th->nextbychild) {
39 th->marker = marker;
40 traverseandmark(marker, th);
41 }
42 }
43
44 static void insertth(array *parents, trusthost *th) {
45 int i;
46 trusthost **p2 = (trusthost **)(parents->content);
47
48 /* this eliminates common subtrees */
49 for(i=0;i<parents->cursi;i++)
50 if(p2[i] == th)
51 break;
52
53 if(i == parents->cursi) {
54 int pos = array_getfreeslot(parents);
55 ((trusthost **)(parents->content))[pos] = th;
56 }
57 }
58
59 static void marktree(array *parents, unsigned int marker, trusthost *th) {
60 trusthost *pth;
61 int parentcount = 0;
62
63 for(pth=th->parent;pth;pth=pth->next) {
64 insertth(parents, pth);
65
66 pth->marker = marker;
67 }
68
69 if(parentcount == 0)
70 insertth(parents, th);
71
72 /* sadly we need to recurse down */
73 traverseandmark(marker, th);
74 }
75
76 static void outputtree(nick *np, unsigned int marker, trustgroup *originalgroup, trusthost *th, int depth) {
77 char *cidrstr, *prespacebuf, *postspacebuf, parentbuf[512];
78
79 if(th->marker != marker)
80 return;
81
82 cidrstr = trusts_cidr2str(th->ip, th->mask);
83 calculatespaces(depth + 1, 20 + 1, cidrstr, &prespacebuf, &postspacebuf);
84
85 if(th->group == originalgroup) {
86 prespacebuf[0] = '>';
87
88 parentbuf[0] = '\0';
89 } else {
90 /* show the ids of other groups */
91
92 snprintf(parentbuf, sizeof(parentbuf), "%-10d %s", th->group->id, th->group->name->content);
93 }
94
95 controlreply(np, "%s%s%s %-10d %-10d %-21s%s", prespacebuf, cidrstr, postspacebuf, th->count, th->maxusage, (th->count>0)?"(now)":((th->lastseen>0)?trusts_timetostr(th->lastseen):"(never)"), parentbuf);
96
97 for(th=th->children;th;th=th->nextbychild)
98 outputtree(np, marker, originalgroup, th, depth + 1);
99 }
100
101 static int trusts_cmdtrustlist(void *source, int cargc, char **cargv) {
102 nick *sender = source;
103 trustgroup *tg;
104 trusthost *th, **p2;
105 time_t t;
106 unsigned int marker;
107 array parents;
108 int i;
109
110 if(cargc < 1)
111 return CMD_USAGE;
112
113 tg = tg_strtotg(cargv[0]);
114 if(!tg) {
115 controlreply(sender, "Couldn't find a trustgroup with that id.");
116 return CMD_ERROR;
117 }
118
119 t = time(NULL);
120
121 /* abusing the ternary operator a bit :( */
122 controlreply(sender, "Name: : %s", tg->name->content);
123 controlreply(sender, "Trusted for : %d", tg->trustedfor);
124 controlreply(sender, "Currently using : %d", tg->count);
125 controlreply(sender, "Clients per user : %d (%senforcing ident)", tg->maxperident, tg->mode?"":"not ");
126 controlreply(sender, "Contact: : %s", tg->contact->content);
127 controlreply(sender, "Expires in : %s", (tg->expires>t)?longtoduration(tg->expires - t, 2):"(the past -- BUG)");
128 controlreply(sender, "Last changed by : %s", tg->createdby->content);
129 controlreply(sender, "Comment: : %s", tg->comment->content);
130 controlreply(sender, "ID: : %u", tg->id);
131 controlreply(sender, "Last used : %s", (tg->count>0)?"(now)":((tg->lastseen>0)?trusts_timetostr(tg->lastseen):"(never)"));
132 controlreply(sender, "Max usage : %d", tg->maxusage);
133 controlreply(sender, "Last max reset : %s", tg->lastmaxuserreset?trusts_timetostr(tg->lastmaxuserreset):"(never)");
134
135 controlreply(sender, "Host Current Max Last seen Group ID Group name");
136
137 marker = nextthmarker();
138 array_init(&parents, sizeof(trusthost *));
139
140 for(th=tg->hosts;th;th=th->next)
141 marktree(&parents, marker, th);
142
143 p2 = (trusthost **)(parents.content);
144 for(i=0;i<parents.cursi;i++)
145 outputtree(sender, marker, tg, p2[i], 0);
146
147 array_free(&parents);
148
149 controlreply(sender, "End of list.");
150
151 return CMD_OK;
152 }
153
154 static int comparetgs(const void *_a, const void *_b) {
155 const trustgroup *a = _a;
156 const trustgroup *b = _b;
157
158 if(a->id > b->id)
159 return 1;
160 if(a->id < b-> id)
161 return -1;
162 return 0;
163 }
164
165 static int trusts_cmdtrustdump(void *source, int argc, char **argv) {
166 trusthost *th;
167 trustgroup *tg, **atg;
168 unsigned int wanted, max, maxid, totalcount, i, groupcount, linecount;
169 nick *np = source;
170
171 if((argc < 2) || (argv[0][0] != '#'))
172 return CMD_USAGE;
173
174 wanted = atoi(&argv[0][1]);
175 max = atoi(argv[1]);
176
177 for(maxid=totalcount=0,tg=tglist;tg;tg=tg->next) {
178 if(totalcount == 0 || tg->id > maxid)
179 maxid = tg->id;
180
181 totalcount++;
182 }
183
184 if(maxid > totalcount) {
185 controlreply(np, "Start ID cannot exceed current maximum group ID (#%u)", maxid);
186 return CMD_OK;
187 }
188
189 atg = nsmalloc(POOL_TRUSTS, sizeof(trusthost *) * totalcount);
190 if(!atg) {
191 controlreply(np, "Memory error.");
192 return CMD_ERROR;
193 }
194
195 for(i=0,tg=tglist;i<totalcount&&th;tg=tg->next,i++)
196 atg[i] = tg;
197
198 qsort(atg, totalcount, sizeof(trustgroup *), comparetgs);
199
200 for(i=0;i<totalcount;i++)
201 if(atg[i]->id >= wanted)
202 break;
203
204 for(groupcount=linecount=0;i<totalcount;i++) {
205 linecount++;
206 groupcount++;
207
208 controlreply(np, "G,%s", dumptg(atg[i], 1));
209
210 for(th=atg[i]->hosts;th;th=th->next) {
211 linecount++;
212 controlreply(np, "H,%s", dumpth(th, 1));
213 }
214
215 if(--max == 0)
216 break;
217 }
218 nsfree(POOL_TRUSTS, atg);
219
220 controlreply(np, "End of list, %u groups and %u lines returned.", groupcount, linecount);
221 return CMD_OK;
222 }
223
224 static int commandsregistered;
225
226 static void registercommands(int hooknum, void *arg) {
227 if(commandsregistered)
228 return;
229 commandsregistered = 1;
230
231 registercontrolhelpcmd("trustlist", NO_OPER, 1, trusts_cmdtrustlist, "Usage: trustlist <#id|name|id>\nShows trust data for the specified trust group.");
232 registercontrolhelpcmd("trustdump", NO_OPER, 2, trusts_cmdtrustdump, "Usage: trustdump <#id> <number>");
233 }
234
235 static void deregistercommands(int hooknum, void *arg) {
236 if(!commandsregistered)
237 return;
238 commandsregistered = 0;
239
240 deregistercontrolcmd("trustlist", trusts_cmdtrustlist);
241 deregistercontrolcmd("trustdump", trusts_cmdtrustdump);
242 }
243
244 void _init(void) {
245 registerhook(HOOK_TRUSTS_DB_LOADED, registercommands);
246 registerhook(HOOK_TRUSTS_DB_CLOSED, deregistercommands);
247
248 if(trustsdbloaded)
249 registercommands(0, NULL);
250 }
251
252 void _fini(void) {
253 deregisterhook(HOOK_TRUSTS_DB_LOADED, registercommands);
254 deregisterhook(HOOK_TRUSTS_DB_CLOSED, deregistercommands);
255
256 deregistercommands(0, NULL);
257 }