ruby: Split up large Ruby extension into smaller C files.

This commit is contained in:
Richard W.M. Jones
2016-09-02 16:42:05 +01:00
parent 20f190617a
commit 20aa0f6496
9 changed files with 519 additions and 396 deletions

4
.gitignore vendored
View File

@@ -462,11 +462,13 @@ Makefile.in
/ruby/doc/site/api
/ruby/examples/guestfs-ruby.3
/ruby/examples/stamp-guestfs-ruby.pod
/ruby/ext/guestfs/actions-?.c
/ruby/ext/guestfs/actions.h
/ruby/ext/guestfs/extconf.h
/ruby/ext/guestfs/extconf.rb
/ruby/ext/guestfs/_guestfs.bundle
/ruby/ext/guestfs/_guestfs.c
/ruby/ext/guestfs/_guestfs.so
/ruby/ext/guestfs/module.c
/ruby/ext/guestfs/mkmf.log
/ruby/Rakefile
/ruby/stamp-rdoc

View File

@@ -231,7 +231,15 @@ python/guestfs-py-byhand.c
python/guestfs-py.c
rescue/rescue.c
resize/dummy.c
ruby/ext/guestfs/_guestfs.c
ruby/ext/guestfs/actions-0.c
ruby/ext/guestfs/actions-1.c
ruby/ext/guestfs/actions-2.c
ruby/ext/guestfs/actions-3.c
ruby/ext/guestfs/actions-4.c
ruby/ext/guestfs/actions-5.c
ruby/ext/guestfs/actions-6.c
ruby/ext/guestfs/handle.c
ruby/ext/guestfs/module.c
sparsify/dummy.c
src/actions-0.c
src/actions-1.c

View File

@@ -152,7 +152,9 @@ Run it from the top source directory using the command
output_to "python/guestfs-py.c" generate_python_c;
output_to "python/guestfs.py" generate_python_py;
output_to "python/bindtests.py" generate_python_bindtests;
output_to "ruby/ext/guestfs/_guestfs.c" generate_ruby_c;
output_to "ruby/ext/guestfs/actions.h" generate_ruby_h;
output_to_subset "ruby/ext/guestfs/actions-%d.c" generate_ruby_c;
output_to "ruby/ext/guestfs/module.c" generate_ruby_module;
output_to "ruby/bindtests.rb" generate_ruby_bindtests;
output_to "java/com/redhat/et/libguestfs/GuestFS.java" generate_java_java;

View File

@@ -33,18 +33,12 @@ open Events
let generate_header = generate_header ~inputs:["generator/ruby.ml"]
(* Generate ruby bindings. *)
let rec generate_ruby_c () =
let rec generate_ruby_h () =
generate_header CStyle LGPLv2plus;
pr "\
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#ifndef GUESTFS_RUBY_ACTIONS_H_
#define GUESTFS_RUBY_ACTIONS_H_
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored \"-Wstrict-prototypes\"
@@ -64,17 +58,6 @@ let rec generate_ruby_c () =
#include \"extconf.h\"
/* Ruby has a mark-sweep garbage collector and performs imprecise
* scanning of the stack to look for pointers. Some implications
* of this:
* (1) Any VALUE stored in a stack location must be marked as
* volatile so that the compiler doesn't put it in a register.
* (2) Anything at all on the stack that \"looks like\" a Ruby
* pointer could be followed, eg. buffers of random data.
* (See: https://bugzilla.redhat.com/show_bug.cgi?id=843188#c6)
* We fix (1) by marking everything possible as volatile.
*/
/* For Ruby < 1.9 */
#ifndef RARRAY_LEN
#define RARRAY_LEN(r) (RARRAY((r))->len)
@@ -89,373 +72,52 @@ let rec generate_ruby_c () =
#define RSTRING_PTR(r) (RSTRING((r))->ptr)
#endif
static VALUE m_guestfs; /* guestfs module */
static VALUE c_guestfs; /* guestfs_h handle */
static VALUE e_Error; /* used for all errors */
extern VALUE m_guestfs; /* guestfs module */
extern VALUE c_guestfs; /* guestfs_h handle */
extern VALUE e_Error; /* used for all errors */
static void event_callback_wrapper (guestfs_h *g, void *data, uint64_t event, int event_handle, int flags, const char *buf, size_t buf_len, const uint64_t *array, size_t array_len);
static VALUE event_callback_wrapper_wrapper (VALUE argv);
static VALUE event_callback_handle_exception (VALUE not_used, VALUE exn);
static VALUE **get_all_event_callbacks (guestfs_h *g, size_t *len_rtn);
extern VALUE guestfs_int_ruby_alloc_handle (VALUE klass);
extern VALUE guestfs_int_ruby_initialize_handle (int argc, VALUE *argv, VALUE m);
extern VALUE guestfs_int_ruby_compat_create_handle (int argc, VALUE *argv, VALUE module);
extern VALUE guestfs_int_ruby_close_handle (VALUE gv);
extern VALUE guestfs_int_ruby_set_event_callback (VALUE gv, VALUE cbv, VALUE event_bitmaskv);
extern VALUE guestfs_int_ruby_delete_event_callback (VALUE gv, VALUE event_handlev);
extern VALUE guestfs_int_ruby_event_to_string (VALUE modulev, VALUE eventsv);
static void
free_handle (void *gvp)
{
guestfs_h *g = gvp;
";
if (g) {
/* As in the OCaml binding, there is a nasty, difficult to
* solve case here where the user deletes events in one of
* the callbacks that we are about to invoke, resulting in
* a double-free. XXX
*/
size_t len, i;
VALUE **roots = get_all_event_callbacks (g, &len);
List.iter (
fun f ->
let ret, args, optargs = f.style in
/* Close the handle: this could invoke callbacks from the list
* above, which is why we don't want to delete them before
* closing the handle.
*/
guestfs_close (g);
pr "extern VALUE guestfs_int_ruby_%s (" f.name;
if optargs = [] then (
pr "VALUE gv";
List.iter
(fun arg -> pr ", VALUE %sv" (name_of_argt arg))
args
) else
pr "int argc, VALUE *argv, VALUE gv";
pr ");\n"
) (actions |> external_functions |> sort);
/* Now unregister the global roots. */
for (i = 0; i < len; ++i) {
rb_gc_unregister_address (roots[i]);
free (roots[i]);
}
free (roots);
}
}
pr "\n";
pr "#endif /* GUESTFS_RUBY_ACTIONS_H_ */\n"
/* This is the ruby internal alloc function for the class. We do nothing
* here except allocate an object containing a NULL guestfs handle.
* Note we cannot call guestfs_create here because we need the extra
* parameters, which ruby passes via the initialize method (see next
* function).
*/
static VALUE
alloc_handle (VALUE klass)
{
guestfs_h *g = NULL;
and generate_ruby_c actions () =
generate_header CStyle LGPLv2plus;
/* Wrap it, and make sure the close function is called when the
* handle goes away.
*/
return Data_Wrap_Struct (c_guestfs, NULL, free_handle, g);
}
pr "\
#include <config.h>
static unsigned
parse_flags (int argc, VALUE *argv)
{
volatile VALUE optargsv;
unsigned flags = 0;
volatile VALUE v;
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
optargsv = argc == 1 ? argv[0] : rb_hash_new ();
Check_Type (optargsv, T_HASH);
v = rb_hash_lookup (optargsv, ID2SYM (rb_intern (\"environment\")));
if (v != Qnil && !RTEST (v))
flags |= GUESTFS_CREATE_NO_ENVIRONMENT;
v = rb_hash_lookup (optargsv, ID2SYM (rb_intern (\"close_on_exit\")));
if (v != Qnil && !RTEST (v))
flags |= GUESTFS_CREATE_NO_CLOSE_ON_EXIT;
return flags;
}
/*
* call-seq:
* Guestfs::Guestfs.new([{:environment => false, :close_on_exit => false}]) -> Guestfs::Guestfs
*
* Call
* {guestfs_create_flags}[http://libguestfs.org/guestfs.3.html#guestfs_create_flags]
* to create a new libguestfs handle. The handle is represented in
* Ruby as an instance of the Guestfs::Guestfs class.
*/
static VALUE
initialize_handle (int argc, VALUE *argv, VALUE m)
{
guestfs_h *g;
unsigned flags;
if (argc > 1)
rb_raise (rb_eArgError, \"expecting 0 or 1 arguments\");
/* Should have been set to NULL by prior call to alloc function. */
assert (DATA_PTR (m) == NULL);
flags = parse_flags (argc, argv);
g = guestfs_create_flags (flags);
if (!g)
rb_raise (e_Error, \"failed to create guestfs handle\");
DATA_PTR (m) = g;
/* Don't print error messages to stderr by default. */
guestfs_set_error_handler (g, NULL, NULL);
return m;
}
/* For backwards compatibility. */
static VALUE
compat_create_handle (int argc, VALUE *argv, VALUE module)
{
guestfs_h *g;
unsigned flags;
if (argc > 1)
rb_raise (rb_eArgError, \"expecting 0 or 1 arguments\");
flags = parse_flags (argc, argv);
g = guestfs_create_flags (flags);
if (!g)
rb_raise (e_Error, \"failed to create guestfs handle\");
/* Don't print error messages to stderr by default. */
guestfs_set_error_handler (g, NULL, NULL);
return Data_Wrap_Struct (c_guestfs, NULL, free_handle, g);
}
/*
* call-seq:
* g.close() -> nil
*
* Call
* {guestfs_close}[http://libguestfs.org/guestfs.3.html#guestfs_close]
* to close the libguestfs handle.
*/
static VALUE
close_handle (VALUE gv)
{
guestfs_h *g;
Data_Get_Struct (gv, guestfs_h, g);
/* Clear the data pointer first so there's no chance of a double
* close if a close callback does something bad like calling exit.
*/
DATA_PTR (gv) = NULL;
free_handle (g);
return Qnil;
}
/*
* call-seq:
* g.set_event_callback(cb, event_bitmask) -> event_handle
*
* Call
* {guestfs_set_event_callback}[http://libguestfs.org/guestfs.3.html#guestfs_set_event_callback]
* to register an event callback. This returns an event handle.
*/
static VALUE
set_event_callback (VALUE gv, VALUE cbv, VALUE event_bitmaskv)
{
guestfs_h *g;
uint64_t event_bitmask;
int eh;
VALUE *root;
char key[64];
Data_Get_Struct (gv, guestfs_h, g);
event_bitmask = NUM2ULL (event_bitmaskv);
root = malloc (sizeof *root);
if (root == NULL)
rb_raise (rb_eNoMemError, \"malloc: %%m\");
*root = cbv;
eh = guestfs_set_event_callback (g, event_callback_wrapper,
event_bitmask, 0, root);
if (eh == -1) {
free (root);
rb_raise (e_Error, \"%%s\", guestfs_last_error (g));
}
rb_gc_register_address (root);
snprintf (key, sizeof key, \"_ruby_event_%%d\", eh);
guestfs_set_private (g, key, root);
return INT2NUM (eh);
}
/*
* call-seq:
* g.delete_event_callback(event_handle) -> nil
*
* Call
* {guestfs_delete_event_callback}[http://libguestfs.org/guestfs.3.html#guestfs_delete_event_callback]
* to delete an event callback.
*/
static VALUE
delete_event_callback (VALUE gv, VALUE event_handlev)
{
guestfs_h *g;
char key[64];
const int eh = NUM2INT (event_handlev);
VALUE *root;
Data_Get_Struct (gv, guestfs_h, g);
snprintf (key, sizeof key, \"_ruby_event_%%d\", eh);
root = guestfs_get_private (g, key);
if (root) {
rb_gc_unregister_address (root);
free (root);
guestfs_set_private (g, key, NULL);
guestfs_delete_event_callback (g, eh);
}
return Qnil;
}
/*
* call-seq:
* Guestfs::Guestfs.event_to_string(events) -> string
*
* Call
* {guestfs_event_to_string}[http://libguestfs.org/guestfs.3.html#guestfs_event_to_string]
* to convert an event or event bitmask into a printable string.
*/
static VALUE
event_to_string (VALUE modulev, VALUE eventsv)
{
uint64_t events;
char *str;
events = NUM2ULL (eventsv);
str = guestfs_event_to_string (events);
if (str == NULL)
rb_raise (e_Error, \"%%s\", strerror (errno));
volatile VALUE rv = rb_str_new2 (str);
free (str);
return rv;
}
static void
event_callback_wrapper (guestfs_h *g,
void *data,
uint64_t event,
int event_handle,
int flags,
const char *buf, size_t buf_len,
const uint64_t *array, size_t array_len)
{
size_t i;
volatile VALUE eventv, event_handlev, bufv, arrayv;
volatile VALUE argv[5];
eventv = ULL2NUM (event);
event_handlev = INT2NUM (event_handle);
bufv = rb_str_new (buf, buf_len);
arrayv = rb_ary_new2 (array_len);
for (i = 0; i < array_len; ++i)
rb_ary_push (arrayv, ULL2NUM (array[i]));
/* This is a crap limitation of rb_rescue.
* http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/~poffice/mail/ruby-talk/65698
*/
argv[0] = * (VALUE *) data; /* function */
argv[1] = eventv;
argv[2] = event_handlev;
argv[3] = bufv;
argv[4] = arrayv;
rb_rescue (event_callback_wrapper_wrapper, (VALUE) argv,
event_callback_handle_exception, Qnil);
}
static VALUE
event_callback_wrapper_wrapper (VALUE argvv)
{
VALUE *argv = (VALUE *) argvv;
volatile VALUE fn, eventv, event_handlev, bufv, arrayv;
fn = argv[0];
/* Check the Ruby callback still exists. For reasons which are not
* fully understood, even though we registered this as a global root,
* it is still possible for the callback to go away (fn value remains
* but its type changes from T_DATA to T_NONE or T_ZOMBIE).
* (RHBZ#733297, RHBZ#843188)
*/
if (rb_type (fn) != T_NONE
#ifdef T_ZOMBIE
&& rb_type (fn) != T_ZOMBIE
#endif
) {
eventv = argv[1];
event_handlev = argv[2];
bufv = argv[3];
arrayv = argv[4];
rb_funcall (fn, rb_intern (\"call\"), 4,
eventv, event_handlev, bufv, arrayv);
}
return Qnil;
}
/* Callbacks aren't supposed to throw exceptions. We just print the
* exception on stderr and hope for the best.
*/
static VALUE
event_callback_handle_exception (VALUE not_used, VALUE exn)
{
volatile VALUE message;
message = rb_funcall (exn, rb_intern (\"to_s\"), 0);
fprintf (stderr, \"libguestfs: exception in callback: %%s\\n\",
StringValueCStr (message));
return Qnil;
}
static VALUE **
get_all_event_callbacks (guestfs_h *g, size_t *len_rtn)
{
VALUE **r;
size_t i;
const char *key;
VALUE *root;
/* Count the length of the array that will be needed. */
*len_rtn = 0;
root = guestfs_first_private (g, &key);
while (root != NULL) {
if (strncmp (key, \"_ruby_event_\", strlen (\"_ruby_event_\")) == 0)
(*len_rtn)++;
root = guestfs_next_private (g, &key);
}
/* Copy them into the return array. */
r = malloc (sizeof (VALUE *) * (*len_rtn));
if (r == NULL)
rb_raise (rb_eNoMemError, \"malloc: %%m\");
i = 0;
root = guestfs_first_private (g, &key);
while (root != NULL) {
if (strncmp (key, \"_ruby_event_\", strlen (\"_ruby_event_\")) == 0) {
r[i] = root;
i++;
}
root = guestfs_next_private (g, &key);
}
return r;
}
#include \"actions.h\"
";
@@ -546,7 +208,7 @@ get_all_event_callbacks (guestfs_h *g, size_t *len_rtn)
* See:
* http://stackoverflow.com/questions/7626745/extending-ruby-in-c-how-to-specify-default-argument-values-to-function
*)
pr "static VALUE\n";
pr "VALUE\n";
pr "guestfs_int_ruby_%s (" f.name;
if optargs = [] then (
pr "VALUE gv";
@@ -760,9 +422,27 @@ get_all_event_callbacks (guestfs_h *g, size_t *len_rtn)
pr "}\n";
pr "\n"
) (actions |> external_functions |> sort);
) (actions |> external_functions |> sort)
and generate_ruby_module () =
generate_header CStyle LGPLv2plus;
pr "\
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include \"actions.h\"
VALUE m_guestfs; /* guestfs module */
VALUE c_guestfs; /* guestfs_h handle */
VALUE e_Error; /* used for all errors */
extern void Init__guestfs (void); /* keep GCC warnings happy */
/* Initialize the module. */
@@ -777,25 +457,25 @@ Init__guestfs (void)
#ifndef HAVE_TYPE_RB_ALLOC_FUNC_T
#define rb_alloc_func_t void*
#endif
rb_define_alloc_func (c_guestfs, (rb_alloc_func_t) alloc_handle);
rb_define_alloc_func (c_guestfs, (rb_alloc_func_t) guestfs_int_ruby_alloc_handle);
#endif
rb_define_method (c_guestfs, \"initialize\",
initialize_handle, -1);
guestfs_int_ruby_initialize_handle, -1);
rb_define_method (c_guestfs, \"close\",
close_handle, 0);
guestfs_int_ruby_close_handle, 0);
rb_define_method (c_guestfs, \"set_event_callback\",
set_event_callback, 2);
guestfs_int_ruby_set_event_callback, 2);
rb_define_method (c_guestfs, \"delete_event_callback\",
delete_event_callback, 1);
guestfs_int_ruby_delete_event_callback, 1);
rb_define_module_function (m_guestfs, \"event_to_string\",
event_to_string, 1);
guestfs_int_ruby_event_to_string, 1);
/* For backwards compatibility with older code, define a ::create
* module function.
*/
rb_define_module_function (m_guestfs, \"create\",
compat_create_handle, -1);
guestfs_int_ruby_compat_create_handle, -1);
";

View File

@@ -16,4 +16,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*)
val generate_ruby_c : unit -> unit
val generate_ruby_h : unit -> unit
val generate_ruby_c : Types.action list -> unit -> unit
val generate_ruby_module : unit -> unit

View File

@@ -331,7 +331,15 @@ rescue/rescue.c
rescue/test-virt-rescue.pl
resize/dummy.c
resize/test-virt-resize.pl
ruby/ext/guestfs/_guestfs.c
ruby/ext/guestfs/actions-0.c
ruby/ext/guestfs/actions-1.c
ruby/ext/guestfs/actions-2.c
ruby/ext/guestfs/actions-3.c
ruby/ext/guestfs/actions-4.c
ruby/ext/guestfs/actions-5.c
ruby/ext/guestfs/actions-6.c
ruby/ext/guestfs/handle.c
ruby/ext/guestfs/module.c
sparsify/dummy.c
src/actions-0.c
src/actions-1.c

View File

@@ -18,7 +18,15 @@
include $(top_srcdir)/subdir-rules.mk
generator_built = \
ext/guestfs/_guestfs.c \
ext/guestfs/actions-0.c \
ext/guestfs/actions-1.c \
ext/guestfs/actions-2.c \
ext/guestfs/actions-3.c \
ext/guestfs/actions-4.c \
ext/guestfs/actions-5.c \
ext/guestfs/actions-6.c \
ext/guestfs/actions.h \
ext/guestfs/module.c \
bindtests.rb
DLEXT := $(shell $(RUBY) -rrbconfig -e "puts RbConfig::CONFIG['DLEXT']")
@@ -28,6 +36,7 @@ EXTRA_DIST = \
Rakefile.in \
README.rdoc \
doc/site/index.html \
ext/guestfs/handle.c \
lib/guestfs.rb \
run-bindtests \
run-ruby-tests \
@@ -53,7 +62,7 @@ all: $(generator_built) doc/site/index.html
# it when the ruby bindings change.
doc/site/index.html doc/site/api/table_of_contents.html: stamp-rdoc
stamp-rdoc: ext/guestfs/_guestfs.c
stamp-rdoc: $(generator_built)
$(RAKE) rdoc
touch $@

View File

@@ -45,7 +45,16 @@ DLEXT=RbConfig::CONFIG['DLEXT']
EXT_CONF='@abs_builddir@/ext/guestfs/extconf.rb'
MAKEFILE='@builddir@/ext/guestfs/Makefile'
GUESTFS_MODULE="@builddir@/ext/guestfs/_guestfs.#{DLEXT}"
GUESTFS_SRC='@srcdir@/ext/guestfs/_guestfs.c'
GUESTFS_SRCS=[ '@srcdir@/ext/guestfs/handle.c',
'@srcdir@/ext/guestfs/module.c',
'@srcdir@/ext/guestfs/actions.h',
'@srcdir@/ext/guestfs/actions-0.c',
'@srcdir@/ext/guestfs/actions-1.c',
'@srcdir@/ext/guestfs/actions-2.c',
'@srcdir@/ext/guestfs/actions-3.c',
'@srcdir@/ext/guestfs/actions-4.c',
'@srcdir@/ext/guestfs/actions-5.c',
'@srcdir@/ext/guestfs/actions-6.c' ]
CLEAN.include [ "@builddir@/ext/**/*.o", GUESTFS_MODULE,
"@builddir@/ext/**/depend" ]
@@ -61,7 +70,7 @@ file MAKEFILE => EXT_CONF do |t|
break
end
end
file GUESTFS_MODULE => [ MAKEFILE, GUESTFS_SRC ] do |t|
file GUESTFS_MODULE => [ MAKEFILE ] + GUESTFS_SRCS do |t|
Dir::chdir("@builddir@/ext/guestfs") do
unless sh "make"
$stderr.puts "make failed"

403
ruby/ext/guestfs/handle.c Normal file
View File

@@ -0,0 +1,403 @@
/* libguestfs ruby bindings
* Copyright (C) 2009-2016 Red Hat Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include <assert.h>
#include "actions.h"
/* Ruby has a mark-sweep garbage collector and performs imprecise
* scanning of the stack to look for pointers. Some implications
* of this:
* (1) Any VALUE stored in a stack location must be marked as
* volatile so that the compiler doesn't put it in a register.
* (2) Anything at all on the stack that "looks like" a Ruby
* pointer could be followed, eg. buffers of random data.
* (See: https://bugzilla.redhat.com/show_bug.cgi?id=843188#c6)
* We fix (1) by marking everything possible as volatile.
*/
static void event_callback_wrapper (guestfs_h *g, void *data, uint64_t event, int event_handle, int flags, const char *buf, size_t buf_len, const uint64_t *array, size_t array_len);
static VALUE event_callback_wrapper_wrapper (VALUE argv);
static VALUE event_callback_handle_exception (VALUE not_used, VALUE exn);
static VALUE **get_all_event_callbacks (guestfs_h *g, size_t *len_rtn);
static void
free_handle (void *gvp)
{
guestfs_h *g = gvp;
if (g) {
/* As in the OCaml binding, there is a nasty, difficult to
* solve case here where the user deletes events in one of
* the callbacks that we are about to invoke, resulting in
* a double-free. XXX
*/
size_t len, i;
VALUE **roots = get_all_event_callbacks (g, &len);
/* Close the handle: this could invoke callbacks from the list
* above, which is why we don't want to delete them before
* closing the handle.
*/
guestfs_close (g);
/* Now unregister the global roots. */
for (i = 0; i < len; ++i) {
rb_gc_unregister_address (roots[i]);
free (roots[i]);
}
free (roots);
}
}
/* This is the ruby internal alloc function for the class. We do nothing
* here except allocate an object containing a NULL guestfs handle.
* Note we cannot call guestfs_create here because we need the extra
* parameters, which ruby passes via the initialize method (see next
* function).
*/
VALUE
guestfs_int_ruby_alloc_handle (VALUE klass)
{
guestfs_h *g = NULL;
/* Wrap it, and make sure the close function is called when the
* handle goes away.
*/
return Data_Wrap_Struct (c_guestfs, NULL, free_handle, g);
}
static unsigned
parse_flags (int argc, VALUE *argv)
{
volatile VALUE optargsv;
unsigned flags = 0;
volatile VALUE v;
optargsv = argc == 1 ? argv[0] : rb_hash_new ();
Check_Type (optargsv, T_HASH);
v = rb_hash_lookup (optargsv, ID2SYM (rb_intern ("environment")));
if (v != Qnil && !RTEST (v))
flags |= GUESTFS_CREATE_NO_ENVIRONMENT;
v = rb_hash_lookup (optargsv, ID2SYM (rb_intern ("close_on_exit")));
if (v != Qnil && !RTEST (v))
flags |= GUESTFS_CREATE_NO_CLOSE_ON_EXIT;
return flags;
}
/*
* call-seq:
* Guestfs::Guestfs.new([{:environment => false, :close_on_exit => false}]) -> Guestfs::Guestfs
*
* Call
* {guestfs_create_flags}[http://libguestfs.org/guestfs.3.html#guestfs_create_flags]
* to create a new libguestfs handle. The handle is represented in
* Ruby as an instance of the Guestfs::Guestfs class.
*/
VALUE
guestfs_int_ruby_initialize_handle (int argc, VALUE *argv, VALUE m)
{
guestfs_h *g;
unsigned flags;
if (argc > 1)
rb_raise (rb_eArgError, "expecting 0 or 1 arguments");
/* Should have been set to NULL by prior call to alloc function. */
assert (DATA_PTR (m) == NULL);
flags = parse_flags (argc, argv);
g = guestfs_create_flags (flags);
if (!g)
rb_raise (e_Error, "failed to create guestfs handle");
DATA_PTR (m) = g;
/* Don't print error messages to stderr by default. */
guestfs_set_error_handler (g, NULL, NULL);
return m;
}
/* For backwards compatibility. */
VALUE
guestfs_int_ruby_compat_create_handle (int argc, VALUE *argv, VALUE module)
{
guestfs_h *g;
unsigned flags;
if (argc > 1)
rb_raise (rb_eArgError, "expecting 0 or 1 arguments");
flags = parse_flags (argc, argv);
g = guestfs_create_flags (flags);
if (!g)
rb_raise (e_Error, "failed to create guestfs handle");
/* Don't print error messages to stderr by default. */
guestfs_set_error_handler (g, NULL, NULL);
return Data_Wrap_Struct (c_guestfs, NULL, free_handle, g);
}
/*
* call-seq:
* g.close() -> nil
*
* Call
* {guestfs_close}[http://libguestfs.org/guestfs.3.html#guestfs_close]
* to close the libguestfs handle.
*/
VALUE
guestfs_int_ruby_close_handle (VALUE gv)
{
guestfs_h *g;
Data_Get_Struct (gv, guestfs_h, g);
/* Clear the data pointer first so there's no chance of a double
* close if a close callback does something bad like calling exit.
*/
DATA_PTR (gv) = NULL;
free_handle (g);
return Qnil;
}
/*
* call-seq:
* g.set_event_callback(cb, event_bitmask) -> event_handle
*
* Call
* {guestfs_set_event_callback}[http://libguestfs.org/guestfs.3.html#guestfs_set_event_callback]
* to register an event callback. This returns an event handle.
*/
VALUE
guestfs_int_ruby_set_event_callback (VALUE gv, VALUE cbv, VALUE event_bitmaskv)
{
guestfs_h *g;
uint64_t event_bitmask;
int eh;
VALUE *root;
char key[64];
Data_Get_Struct (gv, guestfs_h, g);
event_bitmask = NUM2ULL (event_bitmaskv);
root = malloc (sizeof *root);
if (root == NULL)
rb_raise (rb_eNoMemError, "malloc: %m");
*root = cbv;
eh = guestfs_set_event_callback (g, event_callback_wrapper,
event_bitmask, 0, root);
if (eh == -1) {
free (root);
rb_raise (e_Error, "%s", guestfs_last_error (g));
}
rb_gc_register_address (root);
snprintf (key, sizeof key, "_ruby_event_%d", eh);
guestfs_set_private (g, key, root);
return INT2NUM (eh);
}
/*
* call-seq:
* g.delete_event_callback(event_handle) -> nil
*
* Call
* {guestfs_delete_event_callback}[http://libguestfs.org/guestfs.3.html#guestfs_delete_event_callback]
* to delete an event callback.
*/
VALUE
guestfs_int_ruby_delete_event_callback (VALUE gv, VALUE event_handlev)
{
guestfs_h *g;
char key[64];
const int eh = NUM2INT (event_handlev);
VALUE *root;
Data_Get_Struct (gv, guestfs_h, g);
snprintf (key, sizeof key, "_ruby_event_%d", eh);
root = guestfs_get_private (g, key);
if (root) {
rb_gc_unregister_address (root);
free (root);
guestfs_set_private (g, key, NULL);
guestfs_delete_event_callback (g, eh);
}
return Qnil;
}
/*
* call-seq:
* Guestfs::Guestfs.event_to_string(events) -> string
*
* Call
* {guestfs_event_to_string}[http://libguestfs.org/guestfs.3.html#guestfs_event_to_string]
* to convert an event or event bitmask into a printable string.
*/
VALUE
guestfs_int_ruby_event_to_string (VALUE modulev, VALUE eventsv)
{
uint64_t events;
char *str;
events = NUM2ULL (eventsv);
str = guestfs_event_to_string (events);
if (str == NULL)
rb_raise (e_Error, "%s", strerror (errno));
volatile VALUE rv = rb_str_new2 (str);
free (str);
return rv;
}
static void
event_callback_wrapper (guestfs_h *g,
void *data,
uint64_t event,
int event_handle,
int flags,
const char *buf, size_t buf_len,
const uint64_t *array, size_t array_len)
{
size_t i;
volatile VALUE eventv, event_handlev, bufv, arrayv;
volatile VALUE argv[5];
eventv = ULL2NUM (event);
event_handlev = INT2NUM (event_handle);
bufv = rb_str_new (buf, buf_len);
arrayv = rb_ary_new2 (array_len);
for (i = 0; i < array_len; ++i)
rb_ary_push (arrayv, ULL2NUM (array[i]));
/* This is a crap limitation of rb_rescue.
* http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/~poffice/mail/ruby-talk/65698
*/
argv[0] = * (VALUE *) data; /* function */
argv[1] = eventv;
argv[2] = event_handlev;
argv[3] = bufv;
argv[4] = arrayv;
rb_rescue (event_callback_wrapper_wrapper, (VALUE) argv,
event_callback_handle_exception, Qnil);
}
static VALUE
event_callback_wrapper_wrapper (VALUE argvv)
{
VALUE *argv = (VALUE *) argvv;
volatile VALUE fn, eventv, event_handlev, bufv, arrayv;
fn = argv[0];
/* Check the Ruby callback still exists. For reasons which are not
* fully understood, even though we registered this as a global root,
* it is still possible for the callback to go away (fn value remains
* but its type changes from T_DATA to T_NONE or T_ZOMBIE).
* (RHBZ#733297, RHBZ#843188)
*/
if (rb_type (fn) != T_NONE
#ifdef T_ZOMBIE
&& rb_type (fn) != T_ZOMBIE
#endif
) {
eventv = argv[1];
event_handlev = argv[2];
bufv = argv[3];
arrayv = argv[4];
rb_funcall (fn, rb_intern ("call"), 4,
eventv, event_handlev, bufv, arrayv);
}
return Qnil;
}
/* Callbacks aren't supposed to throw exceptions. We just print the
* exception on stderr and hope for the best.
*/
static VALUE
event_callback_handle_exception (VALUE not_used, VALUE exn)
{
volatile VALUE message;
message = rb_funcall (exn, rb_intern ("to_s"), 0);
fprintf (stderr, "libguestfs: exception in callback: %s\n",
StringValueCStr (message));
return Qnil;
}
static VALUE **
get_all_event_callbacks (guestfs_h *g, size_t *len_rtn)
{
VALUE **r;
size_t i;
const char *key;
VALUE *root;
/* Count the length of the array that will be needed. */
*len_rtn = 0;
root = guestfs_first_private (g, &key);
while (root != NULL) {
if (strncmp (key, "_ruby_event_", strlen ("_ruby_event_")) == 0)
(*len_rtn)++;
root = guestfs_next_private (g, &key);
}
/* Copy them into the return array. */
r = malloc (sizeof (VALUE *) * (*len_rtn));
if (r == NULL)
rb_raise (rb_eNoMemError, "malloc: %m");
i = 0;
root = guestfs_first_private (g, &key);
while (root != NULL) {
if (strncmp (key, "_ruby_event_", strlen ("_ruby_event_")) == 0) {
r[i] = root;
i++;
}
root = guestfs_next_private (g, &key);
}
return r;
}