ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/modules.c
(Generate patch)

Comparing:
ircd-hybrid/src/modules.c (file contents), Revision 30 by adx, Sun Oct 2 20:03:27 2005 UTC vs.
ircd-hybrid/trunk/src/modules.c (file contents), Revision 2959 by michael, Tue Jan 28 17:30:49 2014 UTC

# Line 1 | Line 1
1   /*
2 < *  ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd).
3 < *  modules.c: A module loader.
2 > *  ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3   *
4 < *  Copyright (C) 2002 by the past and present ircd coders, and others.
4 > *  Copyright (c) 2000-2014 ircd-hybrid development team
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 18 | Line 17
17   *  along with this program; if not, write to the Free Software
18   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
19   *  USA
21 *
22 *  $Id: modules.c,v 7.178 2005/09/18 23:07:29 adx Exp $
20   */
21  
22 + /*! \file modules.c
23 + * \brief A module loader.
24 + * \version $Id$
25 + */
26 +
27 + #include "ltdl.h"
28 +
29   #include "stdinc.h"
30 < #include "tools.h"
30 > #include "list.h"
31   #include "modules.h"
32 < #include "s_log.h"
32 > #include "log.h"
33   #include "ircd.h"
34   #include "client.h"
35   #include "send.h"
36 < #include "s_conf.h"
33 < #include "handlers.h"
36 > #include "conf.h"
37   #include "numeric.h"
38   #include "parse.h"
39   #include "ircd_defs.h"
40   #include "irc_string.h"
41   #include "memory.h"
39 #include "list.h"
40
41 /* -TimeMr14C:
42 * I have moved the dl* function definitions and
43 * the two functions (load_a_module / unload_a_module) to the
44 * file dynlink.c
45 * And also made the necessary changes to those functions
46 * to comply with shl_load and friends.
47 * In this file, to keep consistency with the makefile,
48 * I added the ability to load *.sl files, too.
49 * 27/02/2002
50 */
42  
52 #ifndef STATIC_MODULES
43  
44 < dlink_list mod_list = { NULL, NULL, 0 };
44 > static dlink_list modules_list;
45 > static dlink_list modules_path;
46 > static dlink_list modules_conf;
47  
48 + static const char *unknown_ver = "<unknown>";
49   static const char *core_module_table[] =
50   {
51 <  "m_die",
52 <  "m_join",
53 <  "m_kick",
54 <  "m_kill",
55 <  "m_message",
56 <  "m_mode",
57 <  "m_nick",
58 <  "m_part",
59 <  "m_quit",
60 <  "m_server",
61 <  "m_sjoin",
62 <  "m_squit",
51 >  "m_die.la",
52 >  "m_error.la",
53 >  "m_join.la",
54 >  "m_kick.la",
55 >  "m_kill.la",
56 >  "m_message.la",
57 >  "m_mode.la",
58 >  "m_nick.la",
59 >  "m_part.la",
60 >  "m_quit.la",
61 >  "m_server.la",
62 >  "m_sjoin.la",
63 >  "m_squit.la",
64    NULL
65   };
66  
73 static dlink_list mod_paths = { NULL, NULL, 0 };
74 static dlink_list conf_modules = { NULL, NULL, 0 };
67  
68 < static void mo_modload(struct Client *, struct Client *, int, char *[]);
69 < static void mo_modlist(struct Client *, struct Client *, int, char *[]);
70 < static void mo_modreload(struct Client *, struct Client *, int, char *[]);
71 < static void mo_modunload(struct Client *, struct Client *, int, char *[]);
72 < static void mo_modrestart(struct Client *, struct Client *, int, char *[]);
81 <
82 < struct Message modload_msgtab = {
83 < "MODLOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
84 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modload, m_ignore}
85 < };
68 > dlink_list *
69 > modules_get_list(void)
70 > {
71 >  return &modules_list;
72 > }
73  
74 < struct Message modunload_msgtab = {
75 < "MODUNLOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
76 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modunload, m_ignore}
77 < };
74 > int
75 > modules_valid_suffix(const char *name)
76 > {
77 >  return ((name = strrchr(name, '.'))) && !strcmp(name, ".la");
78 > }
79  
80 < struct Message modreload_msgtab = {
81 <  "MODRELOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
82 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modreload, m_ignore}
83 < };
80 > /* unload_one_module()
81 > *
82 > * inputs       - name of module to unload
83 > *              - 1 to say modules unloaded, 0 to not
84 > * output       - 0 if successful, -1 if error
85 > * side effects - module is unloaded
86 > */
87 > int
88 > unload_one_module(const char *name, int warn)
89 > {
90 >  struct module *modp = NULL;
91  
92 < struct Message modlist_msgtab = {
93 < "MODLIST", 0, 0, 0, 0, MFLG_SLOW, 0,
99 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modlist, m_ignore}
100 < };
92 >  if ((modp = findmodule_byname(name)) == NULL)
93 >    return -1;
94  
95 < struct Message modrestart_msgtab = {
96 < "MODRESTART", 0, 0, 0, 0, MFLG_SLOW, 0,
97 < {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modrestart, m_ignore}
98 < };
95 >  if (modp->modexit)
96 >   modp->modexit();
97 >
98 >  assert(dlink_list_length(&modules_list) > 0);
99 >  dlinkDelete(&modp->node, &modules_list);
100 >  MyFree(modp->name);
101 >
102 >  lt_dlclose(modp->handle);
103 >
104 >  if (warn == 1)
105 >  {
106 >    ilog(LOG_TYPE_IRCD, "Module %s unloaded", name);
107 >    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
108 >                         "Module %s unloaded", name);
109 >  }
110 >
111 >  return 0;
112 > }
113 >
114 > /* load_a_module()
115 > *
116 > * inputs       - path name of module, int to notice, int of core
117 > * output       - -1 if error 0 if success
118 > * side effects - loads a module if successful
119 > */
120 > int
121 > load_a_module(const char *path, int warn)
122 > {
123 >  lt_dlhandle tmpptr = NULL;
124 >  const char *mod_basename = NULL;
125 >  struct module *modp = NULL;
126 >
127 >  if (findmodule_byname((mod_basename = libio_basename(path))))
128 >    return 1;
129 >
130 >  if (!(tmpptr = lt_dlopen(path)))
131 >  {
132 >    const char *err = ((err = lt_dlerror())) ? err : "<unknown>";
133 >
134 >    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
135 >                         "Error loading module %s: %s",
136 >                         mod_basename, err);
137 >    ilog(LOG_TYPE_IRCD, "Error loading module %s: %s", mod_basename, err);
138 >    return -1;
139 >  }
140  
141 +  if ((modp = lt_dlsym(tmpptr, "module_entry")) == NULL)
142 +  {
143 +    const char *err = ((err = lt_dlerror())) ? err : "<unknown>";
144 +
145 +    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
146 +                         "Error loading module %s: %s",
147 +                         mod_basename, err);
148 +    ilog(LOG_TYPE_IRCD, "Error loading module %s: %s", mod_basename, err);
149 +    lt_dlclose(tmpptr);
150 +    return -1;
151 +  }
152 +
153 +  modp->handle = tmpptr;
154 +
155 +  if (EmptyString(modp->version))
156 +    modp->version = unknown_ver;
157 +
158 +  modp->name = xstrdup(mod_basename);
159 +  dlinkAdd(modp, &modp->node, &modules_list);
160 +
161 +  if (modp->modinit)
162 +    modp->modinit();
163 +
164 +  if (warn == 1)
165 +  {
166 +    sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
167 +                         "Module %s [version: %s handle: %p] loaded.",
168 +                         modp->name, modp->version, tmpptr);
169 +    ilog(LOG_TYPE_IRCD, "Module %s [version: %s handle: %p] loaded.",
170 +         modp->name, modp->version, tmpptr);
171 +  }
172  
173 < extern struct Message error_msgtab;
173 >  return 0;
174 > }
175  
176   /*
177   * modules_init
# Line 117 | Line 183 | extern struct Message error_msgtab;
183   void
184   modules_init(void)
185   {
186 <  mod_add_cmd(&modload_msgtab);
187 <  mod_add_cmd(&modunload_msgtab);
188 <  mod_add_cmd(&modreload_msgtab);
189 <  mod_add_cmd(&modlist_msgtab);
190 <  mod_add_cmd(&modrestart_msgtab);
191 <  mod_add_cmd(&error_msgtab);
186 >  if (lt_dlinit())
187 >  {
188 >    ilog(LOG_TYPE_IRCD, "Couldn't initialize the libltdl run time dynamic"
189 >         " link library. Exiting.");
190 >    exit(0);
191 >  }
192   }
193  
194   /* mod_find_path()
# Line 134 | Line 200 | modules_init(void)
200   static struct module_path *
201   mod_find_path(const char *path)
202   {
203 <  dlink_node *ptr;
138 <  struct module_path *mpath;
203 >  dlink_node *ptr = NULL;
204  
205 <  DLINK_FOREACH(ptr, mod_paths.head)
205 >  DLINK_FOREACH(ptr, modules_path.head)
206    {
207 <    mpath = ptr->data;
207 >    struct module_path *mpath = ptr->data;
208  
209      if (!strcmp(path, mpath->path))
210        return mpath;
# Line 165 | Line 230 | mod_add_path(const char *path)
230    pathst = MyMalloc(sizeof(struct module_path));
231  
232    strlcpy(pathst->path, path, sizeof(pathst->path));
233 <  dlinkAdd(pathst, &pathst->node, &mod_paths);
233 >  dlinkAdd(pathst, &pathst->node, &modules_path);
234   }
235  
236   /* add_conf_module
# Line 182 | Line 247 | add_conf_module(const char *name)
247    pathst = MyMalloc(sizeof(struct module_path));
248  
249    strlcpy(pathst->path, name, sizeof(pathst->path));
250 <  dlinkAdd(pathst, &pathst->node, &conf_modules);
250 >  dlinkAdd(pathst, &pathst->node, &modules_conf);
251   }
252  
253   /* mod_clear_paths()
# Line 194 | Line 259 | add_conf_module(const char *name)
259   void
260   mod_clear_paths(void)
261   {
262 <  struct module_path *pathst;
198 <  dlink_node *ptr;
199 <  dlink_node *next_ptr;
262 >  dlink_node *ptr = NULL, *next_ptr = NULL;
263  
264 <  DLINK_FOREACH_SAFE(ptr, next_ptr, mod_paths.head)
264 >  DLINK_FOREACH_SAFE(ptr, next_ptr, modules_path.head)
265    {
266 <    pathst = ptr->data;
267 <
205 <    dlinkDelete(&pathst->node, &mod_paths);
206 <    MyFree(pathst);
266 >    dlinkDelete(ptr, &modules_path);
267 >    MyFree(ptr->data);
268    }
269  
270 <  DLINK_FOREACH_SAFE(ptr, next_ptr, conf_modules.head)
270 >  DLINK_FOREACH_SAFE(ptr, next_ptr, modules_conf.head)
271    {
272 <    pathst = ptr->data;
273 <
213 <    dlinkDelete(&pathst->node, &conf_modules);
214 <    MyFree(pathst);
272 >    dlinkDelete(ptr, &modules_conf);
273 >    MyFree(ptr->data);
274    }
275   }
276  
# Line 221 | Line 280 | mod_clear_paths(void)
280   * output       - NULL if not found or pointer to module
281   * side effects - NONE
282   */
283 < dlink_node *
283 > struct module *
284   findmodule_byname(const char *name)
285   {
286 <  dlink_node *ptr;
228 <  struct module *modp;
286 >  dlink_node *ptr = NULL;
287  
288 <  DLINK_FOREACH(ptr, mod_list.head)
288 >  DLINK_FOREACH(ptr, modules_list.head)
289    {
290 <    modp = ptr->data;
290 >    struct module *modp = ptr->data;
291  
292 <    if (!irccmp(modp->name, name))
293 <      return ptr;
292 >    if (strcmp(modp->name, name) == 0)
293 >      return modp;
294    }
295  
296    return NULL;
# Line 249 | Line 307 | load_all_modules(int warn)
307   {
308    DIR *system_module_dir = NULL;
309    struct dirent *ldirent = NULL;
310 <  char module_fq_name[PATH_MAX + 1];
253 <
254 <  modules_init();
310 >  char module_fq_name[HYB_PATH_MAX + 1];
311  
312    if ((system_module_dir = opendir(AUTOMODPATH)) == NULL)
313    {
314 <    ilog(L_WARN, "Could not load modules from %s: %s",
314 >    ilog(LOG_TYPE_IRCD, "Could not load modules from %s: %s",
315           AUTOMODPATH, strerror(errno));
316      return;
317    }
318  
319    while ((ldirent = readdir(system_module_dir)) != NULL)
320    {
321 <    const char *offset = strrchr(ldirent->d_name, '.');
266 <
267 <    if (offset && !strcmp(offset, SHARED_SUFFIX))
321 >    if (modules_valid_suffix(ldirent->d_name))
322      {
323         snprintf(module_fq_name, sizeof(module_fq_name), "%s/%s",
324                  AUTOMODPATH, ldirent->d_name);
325 <       load_a_module(module_fq_name, warn, 0);
325 >       load_a_module(module_fq_name, warn);
326      }
327    }
328  
# Line 285 | Line 339 | void
339   load_conf_modules(void)
340   {
341    dlink_node *ptr = NULL;
288  struct module_path *mpath = NULL;
342  
343 <  DLINK_FOREACH(ptr, conf_modules.head)
343 >  DLINK_FOREACH(ptr, modules_conf.head)
344    {
345 <    mpath = ptr->data;
345 >    struct module_path *mpath = ptr->data;
346  
347      if (findmodule_byname(mpath->path) == NULL)
348 <      load_one_module(mpath->path, 0);
348 >      load_one_module(mpath->path);
349    }
350   }
351  
# Line 305 | Line 358 | load_conf_modules(void)
358   void
359   load_core_modules(int warn)
360   {
361 <  char module_name[PATH_MAX + 1];
361 >  char module_name[HYB_PATH_MAX + 1];
362    int i = 0;
363  
364    for (; core_module_table[i]; ++i)
365    {
366 <    snprintf(module_name, sizeof(module_name), "%s%s%s", MODPATH,
367 <             core_module_table[i], SHARED_SUFFIX);
366 >    snprintf(module_name, sizeof(module_name), "%s%s",
367 >             MODPATH, core_module_table[i]);
368  
369 <    if (load_a_module(module_name, warn, 1) == -1)
369 >    if (load_a_module(module_name, warn) == -1)
370      {
371 <      ilog(L_CRIT, "Error loading core module %s%s: terminating ircd",
372 <           core_module_table[i], SHARED_SUFFIX);
371 >      ilog(LOG_TYPE_IRCD, "Error loading core module %s: terminating ircd",
372 >           core_module_table[i]);
373        exit(EXIT_FAILURE);
374      }
375    }
# Line 326 | Line 379 | load_core_modules(int warn)
379   *
380   * input        - pointer to path
381   *              - flagged as core module or not
382 < * output       - -1 if error
382 > * output       - -1 if error
383   * side effects - module is loaded if found.
384   */
385   int
386 < load_one_module(char *path, int coremodule)
386 > load_one_module(const char *path)
387   {
388    dlink_node *ptr = NULL;
389 <  char modpath[PATH_MAX + 1];
389 >  char modpath[HYB_PATH_MAX + 1];
390    struct stat statbuf;
391  
392 <  DLINK_FOREACH(ptr, mod_paths.head)
392 >  DLINK_FOREACH(ptr, modules_path.head)
393    {
394      const struct module_path *mpath = ptr->data;
395  
396      snprintf(modpath, sizeof(modpath), "%s/%s", mpath->path, path);
397  
398 +    if (!modules_valid_suffix(path))
399 +      continue;
400 +
401      if (strstr(modpath, "../") == NULL &&
402 <        strstr(modpath, "/..") == NULL)
347 <    {
402 >        strstr(modpath, "/..") == NULL)
403        if (!stat(modpath, &statbuf))
404 <      {
405 <        if (S_ISREG(statbuf.st_mode))
351 <        {
352 <          /* Regular files only please */
353 <          return load_a_module(modpath, 1, coremodule);
354 <        }
355 <      }
356 <    }
404 >        if (S_ISREG(statbuf.st_mode))  /* Regular files only please */
405 >          return load_a_module(modpath, 1);
406    }
407  
408 <  sendto_realops_flags(UMODE_ALL, L_ALL,
408 >  sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE,
409                         "Cannot locate module %s", path);
410 <  ilog(L_WARN, "Cannot locate module %s", path);
410 >  ilog(LOG_TYPE_IRCD, "Cannot locate module %s", path);
411    return -1;
412   }
364
365 /* load a module .. */
366 static void
367 mo_modload(struct Client *client_p, struct Client *source_p,
368           int parc, char *parv[])
369 {
370  char *m_bn;
371
372  if (!IsAdmin(source_p))
373  {
374    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
375               me.name, source_p->name);
376    return;
377  }
378
379  m_bn = basename(parv[1]);
380
381  if (findmodule_byname(m_bn) != NULL)
382  {
383    sendto_one(source_p, ":%s NOTICE %s :Module %s is already loaded",
384               me.name, source_p->name, m_bn);
385    return;
386  }
387
388  load_one_module(parv[1], 0);
389 }
390
391 /* unload a module .. */
392 static void
393 mo_modunload(struct Client *client_p, struct Client *source_p,
394             int parc, char *parv[])
395 {
396  char *m_bn;
397  dlink_node *ptr;
398  struct module *modp;
399
400  if (!IsAdmin(source_p))
401  {
402    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
403               me.name, source_p->name);
404    return;
405  }
406
407  m_bn = basename(parv[1]);
408
409  if ((ptr = findmodule_byname(m_bn)) == NULL)
410  {
411    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
412               me.name, source_p->name, m_bn);
413    return;
414  }
415
416  modp = ptr->data;
417
418  if (modp->core == 1)
419  {
420    sendto_one(source_p,
421               ":%s NOTICE %s :Module %s is a core module and may not be unloaded",
422               me.name, source_p->name, m_bn);
423    return;
424  }
425
426  /* XXX might want to simply un dlink it here */
427
428  if (unload_one_module(m_bn, 1) == -1)
429  {
430    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
431               me.name, source_p->name, m_bn);
432  }
433 }
434
435 /* unload and load in one! */
436 static void
437 mo_modreload(struct Client *client_p, struct Client *source_p,
438             int parc, char *parv[])
439 {
440  char *m_bn;
441  dlink_node *ptr;
442  struct module *modp;
443  int check_core;
444
445  if (!IsAdmin(source_p))
446  {
447    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
448               me.name, source_p->name);
449    return;
450  }
451
452  m_bn = basename(parv[1]);
453
454  if ((ptr = findmodule_byname(m_bn)) == NULL)
455  {
456    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
457               me.name, source_p->name, m_bn);
458    return;
459  }
460
461  modp = ptr->data;
462  check_core = modp->core;
463
464  if (unload_one_module(m_bn, 1) == -1)
465  {
466    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
467               me.name, source_p->name, m_bn);
468    return;
469  }
470
471  if ((load_one_module(parv[1], check_core) == -1) && check_core)
472  {
473    sendto_realops_flags(UMODE_ALL, L_ALL, "Error reloading core "
474                         "module: %s: terminating ircd", parv[1]);
475    ilog(L_CRIT, "Error loading core module %s: terminating ircd", parv[1]);
476    exit(0);
477  }
478 }
479
480 /* list modules .. */
481 static void
482 mo_modlist(struct Client *client_p, struct Client *source_p,
483           int parc, char *parv[])
484 {
485  dlink_node *ptr;
486  struct module *modp;
487
488  if (!IsAdmin(source_p))
489  {
490    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
491               me.name, source_p->name);
492    return;
493  }
494
495  DLINK_FOREACH(ptr, mod_list.head)
496  {
497    modp = ptr->data;
498
499    if (parc > 1)
500    {
501      if (match(parv[1], modp->name))
502      {
503        sendto_one(source_p, form_str(RPL_MODLIST), me.name, parv[0],
504                   modp->name, modp->address,
505                   modp->version, modp->core?"(core)":"");
506      }
507    }
508    else
509    {
510      sendto_one(source_p, form_str(RPL_MODLIST), me.name, parv[0],
511                 modp->name, modp->address,
512                 modp->version, modp->core?"(core)":"");
513    }
514  }
515
516  sendto_one(source_p, form_str(RPL_ENDOFMODLIST),
517             me.name, source_p->name);
518 }
519
520 /* unload and reload all modules */
521 static void
522 mo_modrestart(struct Client *client_p, struct Client *source_p,
523              int parc, char *parv[])
524 {
525  unsigned int modnum = 0;
526  dlink_node *ptr;
527  dlink_node *tptr;
528  struct module *modp;
529  
530  if (!IsAdmin(source_p))
531  {
532    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
533               me.name, source_p->name);
534    return;
535  }
536
537  sendto_one(source_p, ":%s NOTICE %s :Reloading all modules",
538             me.name, source_p->name);
539
540  modnum = dlink_list_length(&mod_list);
541
542  DLINK_FOREACH_SAFE(ptr, tptr, mod_list.head)
543  {
544    modp = ptr->data;
545    unload_one_module(modp->name, 0);
546  }
547
548  load_all_modules(0);
549  load_conf_modules();
550  load_core_modules(0);
551
552  sendto_realops_flags(UMODE_ALL, L_ALL,
553              "Module Restart: %u modules unloaded, %lu modules loaded",
554                        modnum, dlink_list_length(&mod_list));
555  ilog(L_WARN, "Module Restart: %u modules unloaded, %lu modules loaded",
556       modnum, dlink_list_length(&mod_list));
557 }
558
559 #else /* STATIC_MODULES */
560 #include "s_serv.h"
561
562 /* load_all_modules()
563 *
564 * input        - warn flag
565 * output       - NONE
566 * side effects - all the msgtabs are added for static modules
567 */
568 void
569 load_all_modules(int warn)
570 {
571  mod_add_cmd(&error_msgtab);
572  mod_add_cmd(&accept_msgtab);
573  mod_add_cmd(&admin_msgtab);
574  mod_add_cmd(&away_msgtab);
575  mod_add_cmd(&capab_msgtab);
576  mod_add_cmd(&cburst_msgtab);
577  mod_add_cmd(&close_msgtab);
578  mod_add_cmd(&connect_msgtab);
579 #ifdef HAVE_LIBCRYPTO
580  mod_add_cmd(&challenge_msgtab);
581  mod_add_cmd(&cryptlink_msgtab);
582 #endif
583  mod_add_cmd(&die_msgtab);
584  mod_add_cmd(&drop_msgtab);
585  mod_add_cmd(&eob_msgtab);
586  mod_add_cmd(&etrace_msgtab);
587  mod_add_cmd(&gline_msgtab);
588  add_capability("GLN", CAP_GLN, 1);
589  mod_add_cmd(&hash_msgtab);
590  mod_add_cmd(&ungline_msgtab);
591  mod_add_cmd(&info_msgtab);
592  mod_add_cmd(&invite_msgtab);
593  mod_add_cmd(&ison_msgtab);
594  mod_add_cmd(&join_msgtab);
595  mod_add_cmd(&kick_msgtab);
596  mod_add_cmd(&kill_msgtab);
597  mod_add_cmd(&kline_msgtab);
598  add_capability("KLN", CAP_KLN, 1);
599  mod_add_cmd(&dline_msgtab);
600  mod_add_cmd(&unkline_msgtab);
601  mod_add_cmd(&undline_msgtab);
602  mod_add_cmd(&knock_msgtab);
603  add_capability("KNOCK", CAP_KNOCK, 1);
604  mod_add_cmd(&knockll_msgtab);
605  mod_add_cmd(&links_msgtab);
606  mod_add_cmd(&list_msgtab);
607  mod_add_cmd(&lljoin_msgtab);
608  mod_add_cmd(&llnick_msgtab);
609  mod_add_cmd(&locops_msgtab);
610  mod_add_cmd(&lusers_msgtab);
611  mod_add_cmd(&privmsg_msgtab);
612  mod_add_cmd(&notice_msgtab);
613  mod_add_cmd(&map_msgtab);
614  mod_add_cmd(&mode_msgtab);
615  mod_add_cmd(&motd_msgtab);
616  mod_add_cmd(&names_msgtab);
617  mod_add_cmd(&nburst_msgtab);
618  mod_add_cmd(&nick_msgtab);
619  mod_add_cmd(&omotd_msgtab);
620  mod_add_cmd(&oper_msgtab);
621  mod_add_cmd(&operwall_msgtab);
622  mod_add_cmd(&part_msgtab);
623  mod_add_cmd(&pass_msgtab);
624  mod_add_cmd(&ping_msgtab);
625  mod_add_cmd(&pong_msgtab);
626  mod_add_cmd(&post_msgtab);
627  mod_add_cmd(&get_msgtab);
628  mod_add_cmd(&put_msgtab);
629  mod_add_cmd(&quit_msgtab);
630  mod_add_cmd(&rehash_msgtab);
631  mod_add_cmd(&restart_msgtab);
632  mod_add_cmd(&resv_msgtab);
633  mod_add_cmd(&rkline_msgtab);
634  mod_add_cmd(&rxline_msgtab);
635  mod_add_cmd(&server_msgtab);
636  mod_add_cmd(&set_msgtab);
637  mod_add_cmd(&sid_msgtab);
638  mod_add_cmd(&sjoin_msgtab);
639  mod_add_cmd(&squit_msgtab);
640  mod_add_cmd(&stats_msgtab);
641  mod_add_cmd(&svinfo_msgtab);
642  mod_add_cmd(&tb_msgtab);
643  add_capability("TB", CAP_TB, 1);
644  mod_add_cmd(&testline_msgtab);
645  mod_add_cmd(&testgecos_msgtab);
646  mod_add_cmd(&testmask_msgtab);
647  mod_add_cmd(&time_msgtab);
648  mod_add_cmd(&topic_msgtab);
649  mod_add_cmd(&trace_msgtab);
650  add_capability("UNKLN", CAP_UNKLN, 1);
651  mod_add_cmd(&uid_msgtab);
652  mod_add_cmd(&unresv_msgtab);
653  mod_add_cmd(&unxline_msgtab);
654  mod_add_cmd(&user_msgtab);
655  mod_add_cmd(&userhost_msgtab);
656  mod_add_cmd(&users_msgtab);
657  mod_add_cmd(&version_msgtab);
658  mod_add_cmd(&wallops_msgtab);
659  mod_add_cmd(&who_msgtab);
660  mod_add_cmd(&whois_msgtab);
661  mod_add_cmd(&whowas_msgtab);
662  mod_add_cmd(&xline_msgtab);
663  mod_add_cmd(&help_msgtab);
664  mod_add_cmd(&uhelp_msgtab);
665 #ifdef BUILD_CONTRIB
666  mod_add_cmd(&botserv_msgtab);
667  mod_add_cmd(&capture_msgtab);
668  mod_add_cmd(&chanserv_msgtab);
669  mod_add_cmd(&chghost_msgtab);
670  mod_add_cmd(&chgident_msgtab);
671  mod_add_cmd(&chgname_msgtab);
672  mod_add_cmd(&classlist_msgtab);
673  mod_add_cmd(&clearchan_msgtab);
674  mod_add_cmd(&cs_msgtab);
675  mod_add_cmd(&ctrace_msgtab);
676  mod_add_cmd(&delspoof_msgtab);
677  mod_add_cmd(&flags_msgtab);
678  mod_add_cmd(&forcejoin_msgtab);
679  mod_add_cmd(&forcepart_msgtab);
680  mod_add_cmd(&global_msgtab);
681  mod_add_cmd(&help_msgtab);
682  mod_add_cmd(&uhelp_msgtab);
683  mod_add_cmd(&helpserv_msgtab);
684  mod_add_cmd(&hostserv_msgtab);
685  mod_add_cmd(&identify_msgtab);
686  mod_add_cmd(&jupe_msgtab);
687  mod_add_cmd(&killhost_msgtab);
688  mod_add_cmd(&ltrace_msgtab);
689  mod_add_cmd(&memoserv_msgtab);
690  mod_add_cmd(&mkpasswd_msgtab);
691  mod_add_cmd(&ms_msgtab);
692  mod_add_cmd(&nickserv_msgtab);
693  mod_add_cmd(&ns_msgtab);
694  mod_add_cmd(&ojoin_msgtab);
695  mod_add_cmd(&operserv_msgtab);
696  mod_add_cmd(&operspy_msgtab);
697  mod_add_cmd(&opme_msgtab);
698  mod_add_cmd(&os_msgtab);
699  mod_add_cmd(&seenserv_msgtab);
700  mod_add_cmd(&spoof_msgtab);
701  mod_add_cmd(&statserv_msgtab);
702  mod_add_cmd(&svsnick_msgtab);
703  mod_add_cmd(&uncapture_msgtab);
704  /* FIXME: what about spy*? */
705 #endif
706 }
707 #endif /* STATIC_MODULES */

Comparing:
ircd-hybrid/src/modules.c (property svn:keywords), Revision 30 by adx, Sun Oct 2 20:03:27 2005 UTC vs.
ircd-hybrid/trunk/src/modules.c (property svn:keywords), Revision 2959 by michael, Tue Jan 28 17:30:49 2014 UTC

# Line 1 | Line 1
1 < "Id Revision"
1 > Id Revision

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)