2 * ircd-ratbox: an advanced Internet Relay Chat Daemon(ircd).
3 * cache.c - code for caching files
5 * Copyright (C) 2003 Lee Hardy <lee@leeh.co.uk>
6 * Copyright (C) 2003-2005 ircd-ratbox development team
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
32 * $Id: cache.c 26 2006-09-20 18:02:06Z spb $
36 #include "ircd_defs.h"
46 #include "sprintf_irc.h"
48 static BlockHeap
*cachefile_heap
= NULL
;
49 static BlockHeap
*cacheline_heap
= NULL
;
51 struct cachefile
*user_motd
= NULL
;
52 struct cachefile
*oper_motd
= NULL
;
53 struct cacheline
*emptyline
= NULL
;
54 dlink_list links_cache_list
;
55 char user_motd_changed
[MAX_DATE_STRING
];
61 * side effects - inits the file/line cache blockheaps, loads motds
66 cachefile_heap
= BlockHeapCreate(sizeof(struct cachefile
), CACHEFILE_HEAP_SIZE
);
67 cacheline_heap
= BlockHeapCreate(sizeof(struct cacheline
), CACHELINE_HEAP_SIZE
);
69 /* allocate the emptyline */
70 emptyline
= BlockHeapAlloc(cacheline_heap
);
71 emptyline
->data
[0] = ' ';
72 emptyline
->data
[1] = '\0';
73 user_motd_changed
[0] = '\0';
75 user_motd
= cache_file(MPATH
, "ircd.motd", 0);
76 oper_motd
= cache_file(OPATH
, "opers.motd", 0);
77 memset(&links_cache_list
, 0, sizeof(links_cache_list
));
82 * inputs - file to cache, files "shortname", flags to set
83 * outputs - pointer to file cached, else NULL
87 cache_file(const char *filename
, const char *shortname
, int flags
)
90 struct cachefile
*cacheptr
;
91 struct cacheline
*lineptr
;
95 if((in
= fopen(filename
, "r")) == NULL
)
98 if(strcmp(shortname
, "ircd.motd") == 0)
103 if(fstat(fileno(in
), &sb
) < 0)
106 local_tm
= localtime(&sb
.st_mtime
);
109 ircsnprintf(user_motd_changed
, sizeof(user_motd_changed
),
111 local_tm
->tm_mday
, local_tm
->tm_mon
+ 1,
112 1900 + local_tm
->tm_year
, local_tm
->tm_hour
,
116 cacheptr
= BlockHeapAlloc(cachefile_heap
);
118 strlcpy(cacheptr
->name
, shortname
, sizeof(cacheptr
->name
));
119 cacheptr
->flags
= flags
;
121 /* cache the file... */
122 while(fgets(line
, sizeof(line
), in
) != NULL
)
124 if((p
= strchr(line
, '\n')) != NULL
)
127 if(!EmptyString(line
))
129 lineptr
= BlockHeapAlloc(cacheline_heap
);
130 strlcpy(lineptr
->data
, line
, sizeof(lineptr
->data
));
131 dlinkAddTail(lineptr
, &lineptr
->linenode
, &cacheptr
->contents
);
134 dlinkAddTailAlloc(emptyline
, &cacheptr
->contents
);
142 cache_links(void *unused
)
144 struct Client
*target_p
;
146 dlink_node
*next_ptr
;
149 DLINK_FOREACH_SAFE(ptr
, next_ptr
, links_cache_list
.head
)
152 free_dlink_node(ptr
);
155 links_cache_list
.head
= links_cache_list
.tail
= NULL
;
156 links_cache_list
.length
= 0;
158 DLINK_FOREACH(ptr
, global_serv_list
.head
)
160 target_p
= ptr
->data
;
162 /* skip ourselves (done in /links) and hidden servers */
164 (IsHidden(target_p
) && !ConfigServerHide
.disable_hidden
))
167 /* if the below is ever modified, change LINKSLINELEN */
168 links_line
= MyMalloc(LINKSLINELEN
);
169 ircsnprintf(links_line
, LINKSLINELEN
, "%s %s :1 %s",
170 target_p
->name
, me
.name
,
171 target_p
->info
[0] ? target_p
->info
:
172 "(Unknown Location)");
174 dlinkAddTailAlloc(links_line
, &links_cache_list
);
180 * inputs - cachefile to free
182 * side effects - cachefile and its data is free'd
185 free_cachefile(struct cachefile
*cacheptr
)
188 dlink_node
*next_ptr
;
193 DLINK_FOREACH_SAFE(ptr
, next_ptr
, cacheptr
->contents
.head
)
195 if(ptr
->data
!= emptyline
)
196 BlockHeapFree(cacheline_heap
, ptr
->data
);
199 BlockHeapFree(cachefile_heap
, cacheptr
);
206 * side effects - contents of help directories are loaded.
211 DIR *helpfile_dir
= NULL
;
212 struct dirent
*ldirent
= NULL
;
213 char filename
[MAXPATHLEN
];
214 struct cachefile
*cacheptr
;
216 #if defined(S_ISLNK) && defined(HAVE_LSTAT)
220 /* opers must be done first */
221 helpfile_dir
= opendir(HPATH
);
223 if(helpfile_dir
== NULL
)
226 while((ldirent
= readdir(helpfile_dir
)) != NULL
)
228 ircsnprintf(filename
, sizeof(filename
), "%s/%s", HPATH
, ldirent
->d_name
);
229 cacheptr
= cache_file(filename
, ldirent
->d_name
, HELP_OPER
);
230 add_to_help_hash(cacheptr
->name
, cacheptr
);
233 closedir(helpfile_dir
);
234 helpfile_dir
= opendir(UHPATH
);
236 if(helpfile_dir
== NULL
)
239 while((ldirent
= readdir(helpfile_dir
)) != NULL
)
241 ircsnprintf(filename
, sizeof(filename
), "%s/%s", UHPATH
, ldirent
->d_name
);
243 #if defined(S_ISLNK) && defined(HAVE_LSTAT)
244 if(lstat(filename
, &sb
) < 0)
247 /* ok, if its a symlink, we work on the presumption if an
248 * oper help exists of that name, its a symlink to that --fl
250 if(S_ISLNK(sb
.st_mode
))
252 cacheptr
= hash_find_help(ldirent
->d_name
, HELP_OPER
);
256 cacheptr
->flags
|= HELP_USER
;
262 cacheptr
= cache_file(filename
, ldirent
->d_name
, HELP_USER
);
263 add_to_help_hash(cacheptr
->name
, cacheptr
);
266 closedir(helpfile_dir
);
271 * inputs - client to send motd to
272 * outputs - client is sent motd if exists, else ERR_NOMOTD
276 send_user_motd(struct Client
*source_p
)
278 struct cacheline
*lineptr
;
280 const char *myname
= get_id(&me
, source_p
);
281 const char *nick
= get_id(source_p
, source_p
);
283 if(user_motd
== NULL
|| dlink_list_length(&user_motd
->contents
) == 0)
285 sendto_one(source_p
, form_str(ERR_NOMOTD
), myname
, nick
);
289 sendto_one(source_p
, form_str(RPL_MOTDSTART
), myname
, nick
, me
.name
);
291 DLINK_FOREACH(ptr
, user_motd
->contents
.head
)
294 sendto_one(source_p
, form_str(RPL_MOTD
), myname
, nick
, lineptr
->data
);
297 sendto_one(source_p
, form_str(RPL_ENDOFMOTD
), myname
, nick
);
302 * inputs - client to send motd to
303 * outputs - client is sent oper motd if exists
307 send_oper_motd(struct Client
*source_p
)
309 struct cacheline
*lineptr
;
312 if(oper_motd
== NULL
|| dlink_list_length(&oper_motd
->contents
) == 0)
315 sendto_one(source_p
, form_str(RPL_OMOTDSTART
),
316 me
.name
, source_p
->name
);
318 DLINK_FOREACH(ptr
, oper_motd
->contents
.head
)
321 sendto_one(source_p
, form_str(RPL_OMOTD
),
322 me
.name
, source_p
->name
, lineptr
->data
);
325 sendto_one(source_p
, form_str(RPL_ENDOFOMOTD
),
326 me
.name
, source_p
->name
);