Ruby  2.5.0dev(2017-10-22revision60238)
syslog.c
Go to the documentation of this file.
1 /*
2  * UNIX Syslog extension for Ruby
3  * Amos Gouaux, University of Texas at Dallas
4  * <amos+ruby@utdallas.edu>
5  * Documented by mathew <meta@pobox.com>
6  *
7  * $RoughId: syslog.c,v 1.21 2002/02/25 12:21:17 knu Exp $
8  * $Id$
9  */
10 
11 #include "ruby/ruby.h"
12 #include "ruby/util.h"
13 #include <syslog.h>
14 
15 /* Syslog class */
16 static VALUE mSyslog;
17 /*
18  * Module holding all Syslog constants. See Syslog::log and
19  * Syslog::open for constant descriptions.
20  */
21 static VALUE mSyslogConstants;
22 /* Module holding Syslog option constants */
23 static VALUE mSyslogOption;
24 /* Module holding Syslog facility constants */
25 static VALUE mSyslogFacility;
26 /* Module holding Syslog level constants */
27 static VALUE mSyslogLevel;
28 /* Module holding Syslog utility macros */
29 static VALUE mSyslogMacros;
30 
31 static const char *syslog_ident = NULL;
32 static int syslog_options = -1, syslog_facility = -1, syslog_mask = -1;
33 static int syslog_opened = 0;
34 
35 /* Package helper routines */
36 static void syslog_write(int pri, int argc, VALUE *argv)
37 {
38  VALUE str;
39 
40  if (argc < 1) {
41  rb_raise(rb_eArgError, "no log message supplied");
42  }
43 
44  if (!syslog_opened) {
45  rb_raise(rb_eRuntimeError, "must open syslog before write");
46  }
47 
48  str = rb_f_sprintf(argc, argv);
49 
50  syslog(pri, "%s", RSTRING_PTR(str));
51 }
52 
53 /* Closes the syslog facility.
54  * Raises a runtime exception if it is not open.
55  */
56 static VALUE mSyslog_close(VALUE self)
57 {
58  if (!syslog_opened) {
59  rb_raise(rb_eRuntimeError, "syslog not opened");
60  }
61 
62  closelog();
63 
64  xfree((void *)syslog_ident);
65  syslog_ident = NULL;
66  syslog_options = syslog_facility = syslog_mask = -1;
67  syslog_opened = 0;
68 
69  return Qnil;
70 }
71 
72 /* call-seq:
73  * open(ident, options, facility) => syslog
74  *
75  * :yields: syslog
76  *
77  * Open the syslog facility.
78  * Raises a runtime exception if it is already open.
79  *
80  * Can be called with or without a code block. If called with a block, the
81  * Syslog object created is passed to the block.
82  *
83  * If the syslog is already open, raises a RuntimeError.
84  *
85  * +ident+ is a String which identifies the calling program.
86  *
87  * +options+ is the logical OR of any of the following:
88  *
89  * LOG_CONS:: If there is an error while sending to the system logger,
90  * write directly to the console instead.
91  *
92  * LOG_NDELAY:: Open the connection now, rather than waiting for the first
93  * message to be written.
94  *
95  * LOG_NOWAIT:: Don't wait for any child processes created while logging
96  * messages. (Has no effect on Linux.)
97  *
98  * LOG_ODELAY:: Opposite of LOG_NDELAY; wait until a message is sent before
99  * opening the connection. (This is the default.)
100  *
101  * LOG_PERROR:: Print the message to stderr as well as sending it to syslog.
102  * (Not in POSIX.1-2001.)
103  *
104  * LOG_PID:: Include the current process ID with each message.
105  *
106  * +facility+ describes the type of program opening the syslog, and is
107  * the logical OR of any of the following which are defined for the host OS:
108  *
109  * LOG_AUTH:: Security or authorization. Deprecated, use LOG_AUTHPRIV
110  * instead.
111  *
112  * LOG_AUTHPRIV:: Security or authorization messages which should be kept
113  * private.
114  *
115  * LOG_CONSOLE:: System console message.
116  *
117  * LOG_CRON:: System task scheduler (cron or at).
118  *
119  * LOG_DAEMON:: A system daemon which has no facility value of its own.
120  *
121  * LOG_FTP:: An FTP server.
122  *
123  * LOG_KERN:: A kernel message (not sendable by user processes, so not of
124  * much use to Ruby, but listed here for completeness).
125  *
126  * LOG_LPR:: Line printer subsystem.
127  *
128  * LOG_MAIL:: Mail delivery or transport subsystem.
129  *
130  * LOG_NEWS:: Usenet news system.
131  *
132  * LOG_NTP:: Network Time Protocol server.
133  *
134  * LOG_SECURITY:: General security message.
135  *
136  * LOG_SYSLOG:: Messages generated internally by syslog.
137  *
138  * LOG_USER:: Generic user-level message.
139  *
140  * LOG_UUCP:: UUCP subsystem.
141  *
142  * LOG_LOCAL0 to LOG_LOCAL7:: Locally-defined facilities.
143  *
144  * Example:
145  *
146  * Syslog.open("webrick", Syslog::LOG_PID,
147  * Syslog::LOG_DAEMON | Syslog::LOG_LOCAL3)
148  *
149  */
150 static VALUE mSyslog_open(int argc, VALUE *argv, VALUE self)
151 {
152  VALUE ident, opt, fac;
153  const char *ident_ptr;
154 
155  if (syslog_opened) {
156  rb_raise(rb_eRuntimeError, "syslog already open");
157  }
158 
159  rb_scan_args(argc, argv, "03", &ident, &opt, &fac);
160 
161  if (NIL_P(ident)) {
162  ident = rb_gv_get("$0");
163  }
164  ident_ptr = StringValueCStr(ident);
165  rb_check_safe_obj(ident);
166  syslog_ident = strdup(ident_ptr);
167 
168  if (NIL_P(opt)) {
169  syslog_options = LOG_PID | LOG_CONS;
170  } else {
171  syslog_options = NUM2INT(opt);
172  }
173 
174  if (NIL_P(fac)) {
175  syslog_facility = LOG_USER;
176  } else {
177  syslog_facility = NUM2INT(fac);
178  }
179 
180  openlog(syslog_ident, syslog_options, syslog_facility);
181 
182  syslog_opened = 1;
183 
184  setlogmask(syslog_mask = setlogmask(0));
185 
186  /* be like File.new.open {...} */
187  if (rb_block_given_p()) {
188  rb_ensure(rb_yield, self, mSyslog_close, self);
189  }
190 
191  return self;
192 }
193 
194 /* call-seq:
195  * reopen(ident, options, facility) => syslog
196  *
197  * :yields: syslog
198  *
199  * Closes and then reopens the syslog.
200  *
201  * Arguments are the same as for open().
202  */
203 static VALUE mSyslog_reopen(int argc, VALUE *argv, VALUE self)
204 {
205  mSyslog_close(self);
206 
207  return mSyslog_open(argc, argv, self);
208 }
209 
210 /* call-seq:
211  * opened?
212  *
213  * Returns true if the syslog is open.
214  */
215 static VALUE mSyslog_isopen(VALUE self)
216 {
217  return syslog_opened ? Qtrue : Qfalse;
218 }
219 
220 /* Returns the identity string used in the last call to open()
221  */
222 static VALUE mSyslog_ident(VALUE self)
223 {
224  return syslog_opened ? rb_str_new2(syslog_ident) : Qnil;
225 }
226 
227 /* Returns the options bitmask used in the last call to open()
228  */
229 static VALUE mSyslog_options(VALUE self)
230 {
231  return syslog_opened ? INT2NUM(syslog_options) : Qnil;
232 }
233 
234 /* Returns the facility number used in the last call to open()
235  */
236 static VALUE mSyslog_facility(VALUE self)
237 {
238  return syslog_opened ? INT2NUM(syslog_facility) : Qnil;
239 }
240 
241 /* Returns the log priority mask in effect. The mask is not reset by opening
242  * or closing syslog.
243  */
244 static VALUE mSyslog_get_mask(VALUE self)
245 {
246  return syslog_opened ? INT2NUM(syslog_mask) : Qnil;
247 }
248 
249 /* call-seq:
250  * mask=(priority_mask)
251  *
252  * Sets the log priority mask. A method LOG_UPTO is defined to make it easier
253  * to set mask values. Example:
254  *
255  * Syslog.mask = Syslog::LOG_UPTO(Syslog::LOG_ERR)
256  *
257  * Alternatively, specific priorities can be selected and added together using
258  * binary OR. Example:
259  *
260  * Syslog.mask = Syslog::LOG_MASK(Syslog::LOG_ERR) | Syslog::LOG_MASK(Syslog::LOG_CRIT)
261  *
262  * The priority mask persists through calls to open() and close().
263  */
264 static VALUE mSyslog_set_mask(VALUE self, VALUE mask)
265 {
266  if (!syslog_opened) {
267  rb_raise(rb_eRuntimeError, "must open syslog before setting log mask");
268  }
269 
270  setlogmask(syslog_mask = NUM2INT(mask));
271 
272  return mask;
273 }
274 
275 /* call-seq:
276  * log(priority, format_string, *format_args)
277  *
278  * Log a message with the specified priority. Example:
279  *
280  * Syslog.log(Syslog::LOG_CRIT, "Out of disk space")
281  * Syslog.log(Syslog::LOG_CRIT, "User %s logged in", ENV['USER'])
282  *
283  * The priority levels, in descending order, are:
284  *
285  * LOG_EMERG:: System is unusable
286  * LOG_ALERT:: Action needs to be taken immediately
287  * LOG_CRIT:: A critical condition has occurred
288  * LOG_ERR:: An error occurred
289  * LOG_WARNING:: Warning of a possible problem
290  * LOG_NOTICE:: A normal but significant condition occurred
291  * LOG_INFO:: Informational message
292  * LOG_DEBUG:: Debugging information
293  *
294  * Each priority level also has a shortcut method that logs with it's named priority.
295  * As an example, the two following statements would produce the same result:
296  *
297  * Syslog.log(Syslog::LOG_ALERT, "Out of memory")
298  * Syslog.alert("Out of memory")
299  *
300  * Format strings are as for printf/sprintf, except that in addition %m is
301  * replaced with the error message string that would be returned by
302  * strerror(errno).
303  *
304  */
305 static VALUE mSyslog_log(int argc, VALUE *argv, VALUE self)
306 {
307  VALUE pri;
308 
310 
311  argc--;
312  pri = *argv++;
313 
314  if (!FIXNUM_P(pri)) {
315  rb_raise(rb_eTypeError, "type mismatch: %"PRIsVALUE" given", rb_obj_class(pri));
316  }
317 
318  syslog_write(FIX2INT(pri), argc, argv);
319 
320  return self;
321 }
322 
323 /* Returns an inspect() string summarizing the object state.
324  */
325 static VALUE mSyslog_inspect(VALUE self)
326 {
327  Check_Type(self, T_MODULE);
328 
329  if (!syslog_opened)
330  return rb_sprintf("<#%"PRIsVALUE": opened=false>", self);
331 
332  return rb_sprintf("<#%"PRIsVALUE": opened=true, ident=\"%s\", options=%d, facility=%d, mask=%d>",
333  self,
334  syslog_ident,
335  syslog_options,
336  syslog_facility,
337  syslog_mask);
338 }
339 
340 /* Returns self, for backward compatibility.
341  */
342 static VALUE mSyslog_instance(VALUE self)
343 {
344  return self;
345 }
346 
347 #define define_syslog_shortcut_method(pri, name) \
348 static VALUE mSyslog_##name(int argc, VALUE *argv, VALUE self) \
349 { \
350  syslog_write((pri), argc, argv); \
351 \
352  return self; \
353 }
354 
355 #ifdef LOG_EMERG
356 define_syslog_shortcut_method(LOG_EMERG, emerg)
357 #endif
358 #ifdef LOG_ALERT
359 define_syslog_shortcut_method(LOG_ALERT, alert)
360 #endif
361 #ifdef LOG_CRIT
362 define_syslog_shortcut_method(LOG_CRIT, crit)
363 #endif
364 #ifdef LOG_ERR
366 #endif
367 #ifdef LOG_WARNING
368 define_syslog_shortcut_method(LOG_WARNING, warning)
369 #endif
370 #ifdef LOG_NOTICE
371 define_syslog_shortcut_method(LOG_NOTICE, notice)
372 #endif
373 #ifdef LOG_INFO
374 define_syslog_shortcut_method(LOG_INFO, info)
375 #endif
376 #ifdef LOG_DEBUG
378 #endif
379 
380 /* call-seq:
381  * LOG_MASK(priority_level) => priority_mask
382  *
383  * Generates a mask bit for a priority level. See #mask=
384  */
385 static VALUE mSyslogMacros_LOG_MASK(VALUE mod, VALUE pri)
386 {
387  return INT2FIX(LOG_MASK(NUM2INT(pri)));
388 }
389 
390 /* call-seq:
391  * LOG_UPTO(priority_level) => priority_mask
392  *
393  * Generates a mask value for priority levels at or below the level specified.
394  * See #mask=
395  */
396 static VALUE mSyslogMacros_LOG_UPTO(VALUE mod, VALUE pri)
397 {
398  return INT2FIX(LOG_UPTO(NUM2INT(pri)));
399 }
400 
401 static VALUE mSyslogMacros_included(VALUE mod, VALUE target)
402 {
403  rb_extend_object(target, mSyslogMacros);
404  return mod;
405 }
406 
407 /* The syslog package provides a Ruby interface to the POSIX system logging
408  * facility.
409  *
410  * Syslog messages are typically passed to a central logging daemon.
411  * The daemon may filter them; route them into different files (usually
412  * found under /var/log); place them in SQL databases; forward
413  * them to centralized logging servers via TCP or UDP; or even alert the
414  * system administrator via email, pager or text message.
415  *
416  * Unlike application-level logging via Logger or Log4r, syslog is designed
417  * to allow secure tamper-proof logging.
418  *
419  * The syslog protocol is standardized in RFC 5424.
420  */
421 void Init_syslog(void)
422 {
423  mSyslog = rb_define_module("Syslog");
424 
425  mSyslogConstants = rb_define_module_under(mSyslog, "Constants");
426 
427  mSyslogOption = rb_define_module_under(mSyslog, "Option");
428  mSyslogFacility = rb_define_module_under(mSyslog, "Facility");
429  mSyslogLevel = rb_define_module_under(mSyslog, "Level");
430  mSyslogMacros = rb_define_module_under(mSyslog, "Macros");
431 
432  rb_define_module_function(mSyslog, "open", mSyslog_open, -1);
433  rb_define_module_function(mSyslog, "reopen", mSyslog_reopen, -1);
434  rb_define_module_function(mSyslog, "open!", mSyslog_reopen, -1);
435  rb_define_module_function(mSyslog, "opened?", mSyslog_isopen, 0);
436 
437  rb_define_module_function(mSyslog, "ident", mSyslog_ident, 0);
438  rb_define_module_function(mSyslog, "options", mSyslog_options, 0);
439  rb_define_module_function(mSyslog, "facility", mSyslog_facility, 0);
440 
441  rb_define_module_function(mSyslog, "log", mSyslog_log, -1);
442  rb_define_module_function(mSyslog, "close", mSyslog_close, 0);
443  rb_define_module_function(mSyslog, "mask", mSyslog_get_mask, 0);
444  rb_define_module_function(mSyslog, "mask=", mSyslog_set_mask, 1);
445 
446  rb_define_singleton_method(mSyslog, "inspect", mSyslog_inspect, 0);
447  rb_define_module_function(mSyslog, "instance", mSyslog_instance, 0);
448 
449  /* Syslog options */
450 
451 #define rb_define_syslog_option(c) \
452  rb_define_const(mSyslogOption, #c, INT2NUM(c))
453 
454 #ifdef LOG_PID
455  rb_define_syslog_option(LOG_PID);
456 #endif
457 #ifdef LOG_CONS
458  rb_define_syslog_option(LOG_CONS);
459 #endif
460 #ifdef LOG_ODELAY
461  rb_define_syslog_option(LOG_ODELAY); /* deprecated */
462 #endif
463 #ifdef LOG_NDELAY
464  rb_define_syslog_option(LOG_NDELAY);
465 #endif
466 #ifdef LOG_NOWAIT
467  rb_define_syslog_option(LOG_NOWAIT); /* deprecated */
468 #endif
469 #ifdef LOG_PERROR
470  rb_define_syslog_option(LOG_PERROR);
471 #endif
472 
473  /* Syslog facilities */
474 
475 #define rb_define_syslog_facility(c) \
476  rb_define_const(mSyslogFacility, #c, INT2NUM(c))
477 
478 #ifdef LOG_AUTH
479  rb_define_syslog_facility(LOG_AUTH);
480 #endif
481 #ifdef LOG_AUTHPRIV
482  rb_define_syslog_facility(LOG_AUTHPRIV);
483 #endif
484 #ifdef LOG_CONSOLE
485  rb_define_syslog_facility(LOG_CONSOLE);
486 #endif
487 #ifdef LOG_CRON
488  rb_define_syslog_facility(LOG_CRON);
489 #endif
490 #ifdef LOG_DAEMON
491  rb_define_syslog_facility(LOG_DAEMON);
492 #endif
493 #ifdef LOG_FTP
494  rb_define_syslog_facility(LOG_FTP);
495 #endif
496 #ifdef LOG_KERN
497  rb_define_syslog_facility(LOG_KERN);
498 #endif
499 #ifdef LOG_LPR
500  rb_define_syslog_facility(LOG_LPR);
501 #endif
502 #ifdef LOG_MAIL
503  rb_define_syslog_facility(LOG_MAIL);
504 #endif
505 #ifdef LOG_NEWS
506  rb_define_syslog_facility(LOG_NEWS);
507 #endif
508 #ifdef LOG_NTP
509  rb_define_syslog_facility(LOG_NTP);
510 #endif
511 #ifdef LOG_SECURITY
512  rb_define_syslog_facility(LOG_SECURITY);
513 #endif
514 #ifdef LOG_SYSLOG
515  rb_define_syslog_facility(LOG_SYSLOG);
516 #endif
517 #ifdef LOG_USER
518  rb_define_syslog_facility(LOG_USER);
519 #endif
520 #ifdef LOG_UUCP
521  rb_define_syslog_facility(LOG_UUCP);
522 #endif
523 #ifdef LOG_LOCAL0
524  rb_define_syslog_facility(LOG_LOCAL0);
525 #endif
526 #ifdef LOG_LOCAL1
527  rb_define_syslog_facility(LOG_LOCAL1);
528 #endif
529 #ifdef LOG_LOCAL2
530  rb_define_syslog_facility(LOG_LOCAL2);
531 #endif
532 #ifdef LOG_LOCAL3
533  rb_define_syslog_facility(LOG_LOCAL3);
534 #endif
535 #ifdef LOG_LOCAL4
536  rb_define_syslog_facility(LOG_LOCAL4);
537 #endif
538 #ifdef LOG_LOCAL5
539  rb_define_syslog_facility(LOG_LOCAL5);
540 #endif
541 #ifdef LOG_LOCAL6
542  rb_define_syslog_facility(LOG_LOCAL6);
543 #endif
544 #ifdef LOG_LOCAL7
545  rb_define_syslog_facility(LOG_LOCAL7);
546 #endif
547 
548  /* Syslog levels and the shortcut methods */
549 
550 #define rb_define_syslog_level(c, m) \
551  rb_define_const(mSyslogLevel, #c, INT2NUM(c)); \
552  rb_define_module_function(mSyslog, #m, mSyslog_##m, -1)
553 
554 #ifdef LOG_EMERG
555  rb_define_syslog_level(LOG_EMERG, emerg);
556 #endif
557 #ifdef LOG_ALERT
558  rb_define_syslog_level(LOG_ALERT, alert);
559 #endif
560 #ifdef LOG_CRIT
561  rb_define_syslog_level(LOG_CRIT, crit);
562 #endif
563 #ifdef LOG_ERR
564  rb_define_syslog_level(LOG_ERR, err);
565 #endif
566 #ifdef LOG_WARNING
567  rb_define_syslog_level(LOG_WARNING, warning);
568 #endif
569 #ifdef LOG_NOTICE
570  rb_define_syslog_level(LOG_NOTICE, notice);
571 #endif
572 #ifdef LOG_INFO
573  rb_define_syslog_level(LOG_INFO, info);
574 #endif
575 #ifdef LOG_DEBUG
576  rb_define_syslog_level(LOG_DEBUG, debug);
577 #endif
578 
579  /* Syslog macros */
580 
581  rb_define_method(mSyslogMacros, "LOG_MASK", mSyslogMacros_LOG_MASK, 1);
582  rb_define_method(mSyslogMacros, "LOG_UPTO", mSyslogMacros_LOG_UPTO, 1);
583  rb_define_singleton_method(mSyslogMacros, "included", mSyslogMacros_included, 1);
584 
585  rb_include_module(mSyslogConstants, mSyslogOption);
586  rb_include_module(mSyslogConstants, mSyslogFacility);
587  rb_include_module(mSyslogConstants, mSyslogLevel);
588  rb_funcall(mSyslogConstants, rb_intern("include"), 1, mSyslogMacros);
589 
590  rb_define_singleton_method(mSyslogConstants, "included", mSyslogMacros_included, 1);
591  rb_funcall(mSyslog, rb_intern("include"), 1, mSyslogConstants);
592 }
#define rb_define_syslog_facility(c)
#define INT2NUM(x)
Definition: ruby.h:1538
void Init_syslog(void)
Definition: syslog.c:421
#define NUM2INT(x)
Definition: ruby.h:684
void rb_define_singleton_method(VALUE obj, const char *name, VALUE(*func)(ANYARGS), int argc)
Defines a singleton method for obj.
Definition: class.c:1716
int rb_block_given_p(void)
Determines if the current method is given a block.
Definition: eval.c:835
VALUE rb_f_sprintf(int, const VALUE *)
Definition: sprintf.c:458
void rb_raise(VALUE exc, const char *fmt,...)
Definition: error.c:2284
#define T_MODULE
Definition: ruby.h:494
#define Qtrue
Definition: ruby.h:437
#define rb_check_arity
Definition: intern.h:298
VALUE rb_funcall(VALUE, ID, int,...)
Calls a method.
Definition: vm_eval.c:774
#define Check_Type(v, t)
Definition: ruby.h:562
void rb_include_module(VALUE klass, VALUE module)
Definition: class.c:864
VALUE rb_ensure(VALUE(*b_proc)(ANYARGS), VALUE data1, VALUE(*e_proc)(ANYARGS), VALUE data2)
An equivalent to ensure clause.
Definition: eval.c:1035
#define FIXNUM_P(f)
Definition: ruby.h:365
VALUE rb_eArgError
Definition: error.c:802
VALUE rb_obj_class(VALUE)
call-seq: obj.class -> class
Definition: object.c:277
VALUE rb_gv_get(const char *)
Definition: variable.c:851
#define NIL_P(v)
Definition: ruby.h:451
VALUE str
Definition: strscan.c:33
int argc
Definition: ruby.c:187
#define Qfalse
Definition: ruby.h:436
#define rb_str_new2
Definition: intern.h:835
int err
Definition: win32.c:135
void rb_define_module_function(VALUE module, const char *name, VALUE(*func)(ANYARGS), int argc)
Defines a module function for module.
Definition: class.c:1731
VALUE rb_yield(VALUE)
Definition: vm_eval.c:973
VALUE rb_sprintf(const char *format,...)
Definition: sprintf.c:1452
#define strdup(s)
Definition: util.h:70
int rb_scan_args(int argc, const VALUE *argv, const char *fmt,...)
Definition: class.c:1908
#define PRIsVALUE
Definition: ruby.h:135
#define Qnil
Definition: ruby.h:438
#define debug(x)
Definition: _sdbm.c:51
unsigned long VALUE
Definition: ruby.h:85
VALUE rb_eTypeError
Definition: error.c:801
#define FIX2INT(x)
Definition: ruby.h:686
VALUE rb_define_module_under(VALUE outer, const char *name)
Definition: class.c:790
#define StringValueCStr(v)
Definition: ruby.h:571
#define rb_define_syslog_option(c)
#define RSTRING_PTR(str)
Definition: ruby.h:975
#define INT2FIX(i)
Definition: ruby.h:232
#define UNLIMITED_ARGUMENTS
Definition: intern.h:44
#define rb_define_syslog_level(c, m)
VALUE rb_eRuntimeError
Definition: error.c:800
void rb_extend_object(VALUE obj, VALUE module)
Extend the object with the module.
Definition: eval.c:1596
void rb_check_safe_obj(VALUE)
Definition: safe.c:117
void void xfree(void *)
VALUE rb_define_module(const char *name)
Definition: class.c:768
#define rb_intern(str)
#define mod(x, y)
Definition: date_strftime.c:28
#define NULL
Definition: _sdbm.c:102
#define define_syslog_shortcut_method(pri, name)
Definition: syslog.c:347
void rb_define_method(VALUE klass, const char *name, VALUE(*func)(ANYARGS), int argc)
Definition: class.c:1515
char ** argv
Definition: ruby.c:188