]> jfr.im git - solanum.git/blob - ircd/modules.c
chmode: Get elevated access for op-only queries
[solanum.git] / ircd / modules.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * modules.c: A module loader.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 */
24
25 #include "stdinc.h"
26 #include "modules.h"
27 #include "logger.h"
28 #include "ircd.h"
29 #include "client.h"
30 #include "send.h"
31 #include "s_conf.h"
32 #include "s_newconf.h"
33 #include "numeric.h"
34 #include "parse.h"
35 #include "ircd_defs.h"
36 #include "match.h"
37 #include "s_serv.h"
38 #include "capability.h"
39 #include "hash.h"
40
41 #include <ltdl.h>
42
43 #ifndef LT_MODULE_EXT
44 # error "Solanum requires loadable module support."
45 #endif
46
47 rb_dlink_list module_list;
48 rb_dlink_list mod_paths;
49
50 static const char *core_module_table[] = {
51 "m_ban",
52 "m_die",
53 "m_error",
54 "m_identified",
55 "m_join",
56 "m_kick",
57 "m_kill",
58 "m_message",
59 "m_mode",
60 "m_modules",
61 "m_nick",
62 "m_part",
63 "m_quit",
64 "m_server",
65 "m_squit",
66 NULL
67 };
68
69 #define MOD_WARN_DELTA (90 * 86400) /* time in seconds, 86400 seconds in a day */
70
71 void
72 init_modules(void)
73 {
74 if(lt_dlinit())
75 {
76 ilog(L_MAIN, "lt_dlinit failed");
77 exit(EXIT_FAILURE);
78 }
79
80 /* Add the default paths we look in to the module system --nenolod */
81 mod_add_path(ircd_paths[IRCD_PATH_MODULES]);
82 mod_add_path(ircd_paths[IRCD_PATH_AUTOLOAD_MODULES]);
83 }
84
85 static unsigned int prev_caps;
86
87 void
88 mod_remember_clicaps(void)
89 {
90 prev_caps = capability_index_mask(cli_capindex);
91 }
92
93 void
94 mod_notify_clicaps(void)
95 {
96 unsigned int cur_caps = capability_index_mask(cli_capindex);
97 unsigned int del = prev_caps & ~cur_caps;
98 unsigned int new = cur_caps & ~prev_caps;
99
100 if (del)
101 sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * DEL :%s",
102 me.name, capability_index_list(cli_capindex, del));
103 if (new)
104 sendto_local_clients_with_capability(CLICAP_CAP_NOTIFY, ":%s CAP * NEW :%s",
105 me.name, capability_index_list(cli_capindex, new));
106 }
107
108 /* mod_find_path()
109 *
110 * input - path
111 * output - none
112 * side effects - returns a module path from path
113 */
114 static char *
115 mod_find_path(const char *path)
116 {
117 rb_dlink_node *ptr;
118 char *mpath;
119
120 RB_DLINK_FOREACH(ptr, mod_paths.head)
121 {
122 mpath = ptr->data;
123
124 if(!strcmp(path, mpath))
125 return mpath;
126 }
127
128 return NULL;
129 }
130
131 /* mod_add_path
132 *
133 * input - path
134 * ouput -
135 * side effects - adds path to list
136 */
137 void
138 mod_add_path(const char *path)
139 {
140 char *pathst;
141
142 if(mod_find_path(path))
143 return;
144
145 pathst = rb_strdup(path);
146 rb_dlinkAddAlloc(pathst, &mod_paths);
147 }
148
149 /* mod_clear_paths()
150 *
151 * input -
152 * output -
153 * side effects - clear the lists of paths
154 */
155 void
156 mod_clear_paths(void)
157 {
158 rb_dlink_node *ptr, *next_ptr;
159
160 RB_DLINK_FOREACH_SAFE(ptr, next_ptr, mod_paths.head)
161 {
162 rb_free(ptr->data);
163 rb_free_rb_dlink_node(ptr);
164 }
165
166 mod_paths.head = mod_paths.tail = NULL;
167 mod_paths.length = 0;
168 }
169
170 /* findmodule_byname
171 *
172 * input - module to load
173 * output - index of module on success, -1 on failure
174 * side effects - none
175 */
176 struct module *
177 findmodule_byname(const char *name)
178 {
179 rb_dlink_node *ptr;
180 char name_ext[PATH_MAX + 1];
181
182 rb_strlcpy(name_ext, name, sizeof name_ext);
183 rb_strlcat(name_ext, LT_MODULE_EXT, sizeof name_ext);
184
185 RB_DLINK_FOREACH(ptr, module_list.head)
186 {
187 struct module *mod = ptr->data;
188
189 if(!irccmp(mod->name, name))
190 return mod;
191
192 if(!irccmp(mod->name, name_ext))
193 return mod;
194 }
195
196 return NULL;
197 }
198
199 /* load_all_modules()
200 *
201 * input -
202 * output -
203 * side effects -
204 */
205 void
206 load_all_modules(bool warn)
207 {
208 DIR *system_module_dir = NULL;
209 struct dirent *ldirent = NULL;
210 char module_fq_name[PATH_MAX + 1];
211 size_t module_ext_len = strlen(LT_MODULE_EXT);
212
213 system_module_dir = opendir(ircd_paths[IRCD_PATH_AUTOLOAD_MODULES]);
214
215 if(system_module_dir == NULL)
216 {
217 ilog(L_MAIN, "Could not load modules from %s: %s", ircd_paths[IRCD_PATH_AUTOLOAD_MODULES], strerror(errno));
218 return;
219 }
220
221 while ((ldirent = readdir(system_module_dir)) != NULL)
222 {
223 size_t len = strlen(ldirent->d_name);
224
225 if(len > module_ext_len &&
226 rb_strncasecmp(ldirent->d_name + (len - module_ext_len), LT_MODULE_EXT, module_ext_len) == 0)
227 {
228 (void) snprintf(module_fq_name, sizeof(module_fq_name), "%s%c%s",
229 ircd_paths[IRCD_PATH_AUTOLOAD_MODULES], RB_PATH_SEPARATOR, ldirent->d_name);
230 (void) load_a_module(module_fq_name, warn, MAPI_ORIGIN_CORE, false);
231 }
232
233 }
234 (void) closedir(system_module_dir);
235 }
236
237 /* load_core_modules()
238 *
239 * input -
240 * output -
241 * side effects - core modules are loaded, if any fail, kill ircd
242 */
243 void
244 load_core_modules(bool warn)
245 {
246 char module_name[PATH_MAX];
247 int i;
248
249
250 for (i = 0; core_module_table[i]; i++)
251 {
252 snprintf(module_name, sizeof(module_name), "%s%c%s", ircd_paths[IRCD_PATH_MODULES], RB_PATH_SEPARATOR,
253 core_module_table[i]);
254
255 if(load_a_module(module_name, warn, MAPI_ORIGIN_CORE, true) == false)
256 {
257 ilog(L_MAIN,
258 "Error loading core module %s: terminating ircd",
259 core_module_table[i]);
260 exit(EXIT_FAILURE);
261 }
262 }
263 }
264
265 /* load_one_module()
266 *
267 * input -
268 * output -
269 * side effects -
270 */
271 bool
272 load_one_module(const char *path, int origin, bool coremodule)
273 {
274 char modpath[PATH_MAX];
275 rb_dlink_node *pathst;
276
277 if (server_state_foreground)
278 inotice("loading module %s ...", path);
279
280 if(coremodule)
281 origin = MAPI_ORIGIN_CORE;
282
283 RB_DLINK_FOREACH(pathst, mod_paths.head)
284 {
285 struct stat statbuf;
286 const char *mpath = pathst->data;
287
288 snprintf(modpath, sizeof(modpath), "%s%c%s%s", mpath, RB_PATH_SEPARATOR, path, LT_MODULE_EXT);
289 if((strstr(modpath, "../") == NULL) && (strstr(modpath, "/..") == NULL))
290 {
291 if(stat(modpath, &statbuf) == 0 && S_ISREG(statbuf.st_mode))
292 {
293 /* Regular files only please */
294 return load_a_module(modpath, true, origin, coremodule);
295 }
296
297 }
298 }
299
300 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Cannot locate module %s", path);
301
302 if (server_state_foreground)
303 ierror("cannot locate module %s", path);
304
305 return false;
306 }
307
308 static char unknown_ver[] = "<unknown>";
309 static char unknown_description[] = "<none>";
310
311 /* unload_one_module()
312 *
313 * inputs - name of module to unload
314 * - true to say modules unloaded, false to not
315 * output - true if successful, false if error
316 * side effects - module is unloaded
317 */
318 bool
319 unload_one_module(const char *name, bool warn)
320 {
321 struct module *mod;
322
323 if((mod = findmodule_byname(name)) == NULL)
324 return false;
325
326 /*
327 ** XXX - The type system in C does not allow direct conversion between
328 ** data and function pointers, but as it happens, most C compilers will
329 ** safely do this, however it is a theoretical overlow to cast as we
330 ** must do here. I have library functions to take care of this, but
331 ** despite being more "correct" for the C language, this is more
332 ** practical. Removing the abuse of the ability to cast ANY pointer
333 ** to and from an integer value here will break some compilers.
334 ** -jmallett
335 */
336 /* Left the comment in but the code isn't here any more -larne */
337 switch (mod->mapi_version)
338 {
339 case 1:
340 {
341 struct mapi_mheader_av1 *mheader = mod->mapi_header;
342 if(mheader->mapi_command_list)
343 {
344 struct Message **m;
345 for (m = mheader->mapi_command_list; *m; ++m)
346 mod_del_cmd(*m);
347 }
348
349 /* hook events are never removed, we simply lose the
350 * ability to call them --fl
351 */
352 if(mheader->mapi_hfn_list)
353 {
354 mapi_hfn_list_av1 *m;
355 for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
356 remove_hook(m->hapi_name, m->fn);
357 }
358
359 if(mheader->mapi_unregister)
360 mheader->mapi_unregister();
361 break;
362 }
363 case 2:
364 {
365 struct mapi_mheader_av2 *mheader = mod->mapi_header;
366
367 /* XXX duplicate code :( */
368 if(mheader->mapi_command_list)
369 {
370 struct Message **m;
371 for (m = mheader->mapi_command_list; *m; ++m)
372 mod_del_cmd(*m);
373 }
374
375 /* hook events are never removed, we simply lose the
376 * ability to call them --fl
377 */
378 if(mheader->mapi_hfn_list)
379 {
380 mapi_hfn_list_av1 *m;
381 for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
382 remove_hook(m->hapi_name, m->fn);
383 }
384
385 if(mheader->mapi_unregister)
386 mheader->mapi_unregister();
387
388 if(mheader->mapi_cap_list)
389 {
390 mapi_cap_list_av2 *m;
391 for (m = mheader->mapi_cap_list; m->cap_name; ++m)
392 {
393 struct CapabilityIndex *idx;
394
395 switch (m->cap_index)
396 {
397 case MAPI_CAP_CLIENT:
398 idx = cli_capindex;
399 break;
400 case MAPI_CAP_SERVER:
401 idx = serv_capindex;
402 break;
403 default:
404 sendto_realops_snomask(SNO_GENERAL, L_ALL,
405 "Unknown/unsupported CAP index found of type %d on capability %s when unloading %s",
406 m->cap_index, m->cap_name, mod->name);
407 ilog(L_MAIN,
408 "Unknown/unsupported CAP index found of type %d on capability %s when unloading %s",
409 m->cap_index, m->cap_name, mod->name);
410 continue;
411 }
412
413 capability_orphan(idx, m->cap_name);
414 }
415 }
416 break;
417 }
418 default:
419 sendto_realops_snomask(SNO_GENERAL, L_ALL,
420 "Unknown/unsupported MAPI version %d when unloading %s!",
421 mod->mapi_version, mod->name);
422 ilog(L_MAIN, "Unknown/unsupported MAPI version %d when unloading %s!",
423 mod->mapi_version, mod->name);
424 break;
425 }
426
427 lt_dlclose(mod->address);
428
429 rb_dlinkDelete(&mod->node, &module_list);
430 rb_free(mod->name);
431 rb_free(mod->path);
432 rb_free(mod);
433
434 if(warn)
435 {
436 ilog(L_MAIN, "Module %s unloaded", name);
437 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Module %s unloaded", name);
438 }
439
440 return true;
441 }
442
443 /*
444 * load_a_module()
445 *
446 * inputs - path name of module, bool to notice, int of origin, bool if core
447 * output - false if error true if success
448 * side effects - loads a module if successful
449 */
450 bool
451 load_a_module(const char *path, bool warn, int origin, bool core)
452 {
453 struct module *mod;
454 lt_dlhandle tmpptr;
455 char *mod_displayname, *c;
456 const char *ver, *description = NULL;
457
458 int *mapi_version;
459
460 mod_displayname = rb_basename(path);
461
462 /* Trim off the ending for the display name if we have to */
463 if((c = rb_strcasestr(mod_displayname, LT_MODULE_EXT)) != NULL)
464 *c = '\0';
465
466 tmpptr = lt_dlopenext(path);
467
468 if(tmpptr == NULL)
469 {
470 const char *err = lt_dlerror();
471
472 sendto_realops_snomask(SNO_GENERAL, L_ALL,
473 "Error loading module %s: %s", mod_displayname, err);
474 ilog(L_MAIN, "Error loading module %s: %s", mod_displayname, err);
475 rb_free(mod_displayname);
476 return false;
477 }
478
479 /*
480 * _mheader is actually a struct mapi_mheader_*, but mapi_version
481 * is always the first member of this structure, so we treate it
482 * as a single int in order to determine the API version.
483 * -larne.
484 */
485 mapi_version = (int *) (uintptr_t) lt_dlsym(tmpptr, "_mheader");
486 if((mapi_version == NULL
487 && (mapi_version = (int *) (uintptr_t) lt_dlsym(tmpptr, "__mheader")) == NULL)
488 || MAPI_MAGIC(*mapi_version) != MAPI_MAGIC_HDR)
489 {
490 sendto_realops_snomask(SNO_GENERAL, L_ALL,
491 "Data format error: module %s has no MAPI header.",
492 mod_displayname);
493 ilog(L_MAIN, "Data format error: module %s has no MAPI header.", mod_displayname);
494 (void) lt_dlclose(tmpptr);
495 rb_free(mod_displayname);
496 return false;
497 }
498
499 switch (MAPI_VERSION(*mapi_version))
500 {
501 case 1:
502 {
503 struct mapi_mheader_av1 *mheader = (struct mapi_mheader_av1 *)(void *)mapi_version; /* see above */
504 if(mheader->mapi_register && (mheader->mapi_register() == -1))
505 {
506 ilog(L_MAIN, "Module %s indicated failure during load.",
507 mod_displayname);
508 sendto_realops_snomask(SNO_GENERAL, L_ALL,
509 "Module %s indicated failure during load.",
510 mod_displayname);
511 lt_dlclose(tmpptr);
512 rb_free(mod_displayname);
513 return false;
514 }
515 if(mheader->mapi_command_list)
516 {
517 struct Message **m;
518 for (m = mheader->mapi_command_list; *m; ++m)
519 mod_add_cmd(*m);
520 }
521
522 if(mheader->mapi_hook_list)
523 {
524 mapi_hlist_av1 *m;
525 for (m = mheader->mapi_hook_list; m->hapi_name; ++m)
526 *m->hapi_id = register_hook(m->hapi_name);
527 }
528
529 if(mheader->mapi_hfn_list)
530 {
531 mapi_hfn_list_av1 *m;
532 for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
533 add_hook(m->hapi_name, m->fn);
534 }
535
536 ver = mheader->mapi_module_version;
537 break;
538 }
539 case 2:
540 {
541 struct mapi_mheader_av2 *mheader = (struct mapi_mheader_av2 *)(void *)mapi_version; /* see above */
542
543 if(mheader->mapi_cap_list)
544 {
545 mapi_cap_list_av2 *m;
546 for (m = mheader->mapi_cap_list; m->cap_name; ++m)
547 {
548 struct CapabilityIndex *idx;
549 int result;
550
551 switch (m->cap_index)
552 {
553 case MAPI_CAP_CLIENT:
554 idx = cli_capindex;
555 break;
556 case MAPI_CAP_SERVER:
557 idx = serv_capindex;
558 break;
559 default:
560 sendto_realops_snomask(SNO_GENERAL, L_ALL,
561 "Unknown/unsupported CAP index found of type %d on capability %s when loading %s",
562 m->cap_index, m->cap_name, mod_displayname);
563 ilog(L_MAIN,
564 "Unknown/unsupported CAP index found of type %d on capability %s when loading %s",
565 m->cap_index, m->cap_name, mod_displayname);
566 continue;
567 }
568
569 result = capability_put(idx, m->cap_name, m->cap_ownerdata);
570 if (m->cap_id != NULL)
571 *(m->cap_id) = result;
572 }
573 }
574
575 /* XXX duplicated code :( */
576 if(mheader->mapi_register && (mheader->mapi_register() == -1))
577 {
578 ilog(L_MAIN, "Module %s indicated failure during load.",
579 mod_displayname);
580 sendto_realops_snomask(SNO_GENERAL, L_ALL,
581 "Module %s indicated failure during load.",
582 mod_displayname);
583 if(mheader->mapi_cap_list)
584 {
585 mapi_cap_list_av2 *m;
586 for (m = mheader->mapi_cap_list; m->cap_name; ++m)
587 {
588 struct CapabilityIndex *idx;
589 switch (m->cap_index)
590 {
591 case MAPI_CAP_CLIENT:
592 idx = cli_capindex;
593 break;
594 case MAPI_CAP_SERVER:
595 idx = serv_capindex;
596 break;
597 default:
598 continue;
599 }
600 capability_orphan(idx, m->cap_name);
601 }
602 }
603 lt_dlclose(tmpptr);
604 rb_free(mod_displayname);
605 return false;
606 }
607
608 /* Basic date code checks
609 *
610 * Don't make them fatal, but do complain about differences within a certain time frame.
611 * Later on if there are major API changes we can add fatal checks.
612 * -- Elizafox
613 */
614 if(mheader->mapi_datecode != datecode && mheader->mapi_datecode > 0)
615 {
616 long int delta = datecode - mheader->mapi_datecode;
617 if (delta > MOD_WARN_DELTA)
618 {
619 delta /= 86400;
620 iwarn("Module %s build date is out of sync with ircd build date by %ld days, expect problems",
621 mod_displayname, delta);
622 sendto_realops_snomask(SNO_GENERAL, L_ALL,
623 "Module %s build date is out of sync with ircd build date by %ld days, expect problems",
624 mod_displayname, delta);
625 }
626 }
627
628 if(mheader->mapi_command_list)
629 {
630 struct Message **m;
631 for (m = mheader->mapi_command_list; *m; ++m)
632 mod_add_cmd(*m);
633 }
634
635 if(mheader->mapi_hook_list)
636 {
637 mapi_hlist_av1 *m;
638 for (m = mheader->mapi_hook_list; m->hapi_name; ++m)
639 *m->hapi_id = register_hook(m->hapi_name);
640 }
641
642 if(mheader->mapi_hfn_list)
643 {
644 mapi_hfn_list_av1 *m;
645 for (m = mheader->mapi_hfn_list; m->hapi_name; ++m)
646 {
647 int priority = m->priority;
648 if (priority == 0)
649 priority = HOOK_NORMAL;
650 add_hook_prio(m->hapi_name, m->fn, priority);
651 }
652 }
653
654 /* New in MAPI v2 - version replacement */
655 ver = mheader->mapi_module_version ? mheader->mapi_module_version : ircd_version;
656 description = mheader->mapi_module_description;
657 }
658
659 break;
660 default:
661 ilog(L_MAIN, "Module %s has unknown/unsupported MAPI version %d.",
662 mod_displayname, MAPI_VERSION(*mapi_version));
663 sendto_realops_snomask(SNO_GENERAL, L_ALL,
664 "Module %s has unknown/unsupported MAPI version %d.",
665 mod_displayname, *mapi_version);
666 lt_dlclose(tmpptr);
667 rb_free(mod_displayname);
668 return false;
669 }
670
671 if(ver == NULL)
672 ver = unknown_ver;
673
674 if(description == NULL)
675 description = unknown_description;
676
677 mod = rb_malloc(sizeof(struct module));
678 mod->address = tmpptr;
679 mod->version = ver;
680 mod->description = description;
681 mod->core = core;
682 mod->name = rb_strdup(mod_displayname);
683 mod->mapi_header = mapi_version;
684 mod->mapi_version = MAPI_VERSION(*mapi_version);
685 mod->origin = origin;
686 mod->path = rb_strdup(path);
687 rb_dlinkAdd(mod, &mod->node, &module_list);
688
689 if(warn)
690 {
691 const char *o;
692
693 switch (origin)
694 {
695 case MAPI_ORIGIN_EXTENSION:
696 o = "extension";
697 break;
698 case MAPI_ORIGIN_CORE:
699 o = "core";
700 break;
701 default:
702 o = "unknown";
703 break;
704 }
705
706 sendto_realops_snomask(SNO_GENERAL, L_ALL,
707 "Module %s [version: %s; MAPI version: %d; origin: %s; description: \"%s\"] loaded at %p",
708 mod_displayname, ver, MAPI_VERSION(*mapi_version), o, description,
709 (void *) tmpptr);
710 ilog(L_MAIN, "Module %s [version: %s; MAPI version: %d; origin: %s; description: \"%s\"] loaded at %p",
711 mod_displayname, ver, MAPI_VERSION(*mapi_version), o, description, (void *) tmpptr);
712 }
713 rb_free(mod_displayname);
714 return true;
715 }
716
717 void
718 modules_do_reload(void *info_)
719 {
720 struct modreload *info = info_;
721 struct module *mod;
722 int check_core;
723 int origin;
724 char *m_bn = rb_basename(info->module);
725 char *path;
726 struct Client *source_p = find_id(info->id);
727
728 if((mod = findmodule_byname(m_bn)) == NULL)
729 {
730 if (source_p) sendto_one_notice(source_p, ":Module %s is not loaded", m_bn);
731 rb_free(info);
732 rb_free(m_bn);
733 return;
734 }
735
736 origin = mod->origin;
737 check_core = mod->core;
738 path = rb_strdup(mod->path);
739
740 mod_remember_clicaps();
741
742 if(unload_one_module(m_bn, true) == false)
743 {
744 if (source_p) sendto_one_notice(source_p, ":Module %s is not loaded", m_bn);
745 rb_free(info);
746 rb_free(m_bn);
747 rb_free(path);
748 return;
749 }
750
751 if((load_a_module(path, true, origin, check_core) == false) && check_core)
752 {
753 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
754 "Error reloading core module: %s: terminating ircd", m_bn);
755 ilog(L_MAIN, "Error loading core module %s: terminating ircd", m_bn);
756 exit(0);
757 }
758
759 mod_notify_clicaps();
760
761 rb_free(info);
762 rb_free(m_bn);
763 rb_free(path);
764 }
765
766 void
767 modules_do_restart(void *unused)
768 {
769 unsigned int modnum = 0;
770 rb_dlink_node *ptr, *nptr;
771
772 mod_remember_clicaps();
773
774 RB_DLINK_FOREACH_SAFE(ptr, nptr, module_list.head)
775 {
776 struct module *mod = ptr->data;
777 if(!unload_one_module(mod->name, false))
778 {
779 ilog(L_MAIN, "Module Restart: %s was not unloaded %s",
780 mod->name,
781 mod->core? "(core module)" : "");
782
783 if(!mod->core)
784 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
785 "Module Restart: %s failed to unload",
786 mod->name);
787 continue;
788 }
789
790 modnum++;
791 }
792
793 load_all_modules(false);
794 load_core_modules(false);
795 rehash(false);
796
797 mod_notify_clicaps();
798
799 sendto_realops_snomask(SNO_GENERAL, L_NETWIDE,
800 "Module Restart: %u modules unloaded, %lu modules loaded",
801 modnum, rb_dlink_list_length(&module_list));
802 ilog(L_MAIN, "Module Restart: %u modules unloaded, %lu modules loaded", modnum, rb_dlink_list_length(&module_list));
803 }