]> jfr.im git - irc/quakenet/newserv.git/blob - newsearch/ns-hostmask.c
merge
[irc/quakenet/newserv.git] / newsearch / ns-hostmask.c
1 /*
2 * HOSTMASK functionality
3 */
4
5 #include "newsearch.h"
6
7 #include <stdio.h>
8 #include <stdlib.h>
9
10 #include "../irc/irc_config.h"
11 #include "../lib/irc_string.h"
12
13 void *hostmask_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput);
14 void *hostmask_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput);
15 void hostmask_free(searchCtx *ctx, struct searchNode *thenode);
16
17 struct searchNode *hostmask_parse(searchCtx *ctx, int argc, char **argv) {
18 struct searchNode *thenode;
19
20 if (!(thenode=(struct searchNode *)malloc(sizeof (struct searchNode)))) {
21 parseError = "malloc: could not allocate memory for this search.";
22 return NULL;
23 }
24
25 thenode->returntype = RETURNTYPE_STRING;
26 if (!(thenode->localdata = (void *)malloc(HOSTLEN+USERLEN+NICKLEN+REALLEN+10))) {
27 /* couldn't malloc() memory for thenode->localdata, so free thenode to avoid leakage */
28 parseError = "malloc: could not allocate memory for this search.";
29 free(thenode);
30 return NULL;
31 }
32 thenode->exe = hostmask_exe;
33 thenode->free = hostmask_free;
34
35 /* Allow "hostmask real" to match realhost */
36
37 if (argc>0 && !ircd_strcmp(argv[0],"real")) {
38 thenode->exe = hostmask_exe_real;
39 }
40
41 return thenode;
42 }
43
44 void *hostmask_exe(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
45 nick *np = (nick *)theinput;
46 char *buf = thenode->localdata;
47
48 return visiblehostmask(np, buf);
49 }
50
51 void *hostmask_exe_real(searchCtx *ctx, struct searchNode *thenode, void *theinput) {
52 nick *np = (nick *)theinput;
53 char *buf = thenode->localdata;
54
55 sprintf(buf,"%s!%s@%s\r%s",np->nick,np->ident,np->host->name->content,np->realname->name->content);
56
57 return buf;
58 }
59
60 void hostmask_free(searchCtx *ctx, struct searchNode *thenode) {
61 free(thenode->localdata);
62 free(thenode);
63 }
64