+captive-sandbox-server for isolated filesystem sendbox server
[captive.git] / src / libcaptive / sandbox / split.c
1 /* $Id$
2  * Connection of captive-vfs interface through CORBA/ORBit
3  * Copyright (C) 2002 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include "split.h"      /* self */
23 #include "sandbox.h"
24 #include "server-GLogFunc.h"
25 #include "captive/macros.h"
26 #include <glib/gmacros.h>
27 #include <stdlib.h>
28 #include "captive/rtl-file.h"
29 #include <unistd.h>
30 #include <fcntl.h>
31 #include <linc/linc.h>  /* for linc_main_get_loop() */
32 #include "server-Directory.h"
33 #include "server-Vfs.h"
34 #include "../client/vfs.h"
35 #include "captive/parent-Vfs.h"
36 #include <dirent.h>
37 #include "server-CaptiveIOChannel.h"
38 #include <errno.h>
39
40
41 /* CONFIG: */
42
43 #define HEARTBEAT_SOURCE_CHECK_EVENTS (G_IO_IN|G_IO_PRI)
44 #define HEARTBEAT_SOURCE_CHECK_REVENTS (HEARTBEAT_SOURCE_CHECK_EVENTS|G_IO_ERR|G_IO_HUP|G_IO_NVAL)
45
46
47 gboolean validate_CORBA_Environment(CORBA_Environment *evp)
48 {
49         if (evp->_major==CORBA_NO_EXCEPTION)
50                 return TRUE;
51
52         g_message(_("CORBA Exception occured: id=\"%s\", value=%p"),
53                         CORBA_exception_id(evp),CORBA_exception_value(evp));
54         return FALSE;
55 }
56
57 CORBA_Environment captive_corba_ev;
58 CORBA_ORB captive_corba_orb;
59 PortableServer_POA captive_corba_poa;
60
61 static void corba_shutdown_atexit(void);
62
63 static gboolean corba_init(const char *pname,CORBA_Environment *evp,CORBA_ORB *orbp,PortableServer_POA *poap)
64 {
65 static gboolean done=FALSE;
66 int orb_argc=1;
67 gchar *orb_argv[]={
68                 (gchar *)captive_strdup_alloca(pname),
69                 NULL};
70
71         g_return_val_if_fail(evp!=NULL,FALSE);
72         g_return_val_if_fail(orbp!=NULL,FALSE);
73         g_return_val_if_fail(poap!=NULL,FALSE);
74
75         if (done)
76                 return TRUE;
77
78         /* Init 'ev' */
79         CORBA_exception_init(evp);
80
81         /* Init 'orb' */
82         *orbp=CORBA_ORB_init(&orb_argc,orb_argv,"orbit-local-orb",evp);
83         g_return_val_if_fail(*orbp!=CORBA_OBJECT_NIL,FALSE);
84         g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
85
86         /* Init 'poa' */
87         *poap=(PortableServer_POA)CORBA_ORB_resolve_initial_references(*orbp,"RootPOA",evp);
88         g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
89         {
90 PortableServer_POAManager poa_mgr;
91                 poa_mgr=PortableServer_POA__get_the_POAManager(*poap,evp);
92                 g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
93                 PortableServer_POAManager_activate(poa_mgr,evp);
94                 g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
95                 CORBA_Object_release((CORBA_Object)poa_mgr,evp);
96                 g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
97                 }
98
99         g_atexit(corba_shutdown_atexit);
100
101         done=TRUE;
102         return TRUE;
103 }
104
105
106 static CORBA_ORB heartbeat_source_callback_orb=CORBA_OBJECT_NIL;
107
108 gboolean corba_shutdown(CORBA_Environment *evp,CORBA_ORB *orbp,PortableServer_POA *poap)
109 {
110 PortableServer_POA poa;
111 CORBA_ORB orb;
112
113         g_return_val_if_fail(evp!=NULL,FALSE);
114         g_return_val_if_fail(orbp!=NULL,FALSE);
115         g_return_val_if_fail(poap!=NULL,FALSE);
116
117         /* Shutdown 'poa' */
118         poa=*poap;
119         *poap=CORBA_OBJECT_NIL;
120         CORBA_Object_release((CORBA_Object)poa,evp);
121         g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
122
123         /* Shutdown 'orb' */
124         orb=*orbp;
125         *orbp=CORBA_OBJECT_NIL;
126         heartbeat_source_callback_orb=CORBA_OBJECT_NIL;
127         CORBA_ORB_destroy(orb,evp);
128         g_return_val_if_fail(validate_CORBA_Environment(evp),FALSE);
129
130         /* Shutdown 'ev' */
131         CORBA_exception_free(evp);
132
133         return TRUE;
134 }
135
136 static void corba_shutdown_atexit(void)
137 {
138 gboolean errbool;
139
140         errbool=corba_shutdown(&captive_corba_ev,&captive_corba_orb,&captive_corba_poa);
141         g_assert(errbool==TRUE);
142 }
143
144
145 static GSource *captive_corba_sandbox_child_heartbeat_gsource;
146
147 void sandbox_child_prepare_shutdown(void)
148 {
149         /* Prevent during shutdown: Captive-WARNING **: CORBA Exception occured: id="IDL:omg.org/CORBA/COMM_FAILURE:1.0" */
150         if (captive_corba_sandbox_child_heartbeat_gsource) {
151                 g_source_destroy(captive_corba_sandbox_child_heartbeat_gsource);
152                 g_source_unref(captive_corba_sandbox_child_heartbeat_gsource);
153                 captive_corba_sandbox_child_heartbeat_gsource=NULL;
154                 }
155 }
156
157
158 void sandbox_child_shutdown(void)
159 {
160         /* Do not fail by passing logging messages to the master. */
161         impl_Captive_Vfs_init_g_log_func_disable();
162
163         g_main_loop_quit(linc_main_get_loop());
164 }
165
166
167 static gboolean heartbeat_source_callback(gpointer data /* unused */)
168 {
169         g_return_val_if_fail(heartbeat_source_callback_orb!=CORBA_OBJECT_NIL,FALSE);    /* the source should be removed */
170
171         sandbox_child_shutdown();
172
173         return FALSE;   /* the source should be removed */
174 }
175
176
177 static gboolean heartbeat_source_prepare(GSource *source,gint *timeout)
178 {
179         *timeout=-1;
180
181         return FALSE;
182 }
183
184 static GPollFD heartbeat_source_check_gpollfd;
185
186 static gboolean heartbeat_source_check(GSource *source)
187 {
188         return !!(heartbeat_source_check_gpollfd.revents & HEARTBEAT_SOURCE_CHECK_REVENTS);
189 }
190
191 static gboolean heartbeat_source_dispatch(GSource *source,GSourceFunc callback,gpointer user_data)
192 {
193         g_assert(callback!=NULL);
194         return (*callback)(user_data);
195 }
196
197 static GSourceFuncs heartbeat_source_watch_funcs={
198                 heartbeat_source_prepare,
199                 heartbeat_source_check,
200                 heartbeat_source_dispatch,
201                 NULL,   /* finalize */
202                 };
203
204 void captive_corba_sandbox_child(void)
205 {
206 Captive_Vfs Vfs_object;
207 impl_POA_Captive_Vfs *Vfs_servant;
208 gboolean errbool;
209 int errint;
210 guint errguint;
211 GSource *gsource;
212
213         /* attach heartbeat_source_callback() to watch for any abnormalities
214          * on our open pipe 'parentheart_fds' and terminate the child if parent dies.
215          */
216         gsource=g_source_new(&heartbeat_source_watch_funcs,sizeof(GSource));
217         g_return_if_fail(gsource!=NULL);
218         g_source_set_callback(
219                         gsource,        /* source */
220                         heartbeat_source_callback,      /* func */
221                         NULL,   /* data */
222                         NULL);  /* notify */
223         heartbeat_source_check_gpollfd.fd=0 /* STDIN */;        /* parentheart_fd_read */
224         heartbeat_source_check_gpollfd.events=HEARTBEAT_SOURCE_CHECK_EVENTS;
225         heartbeat_source_check_gpollfd.revents=0;
226         g_source_add_poll(gsource,&heartbeat_source_check_gpollfd);
227
228         errbool=corba_init("captive-sandbox-child",&captive_corba_ev,&captive_corba_orb,&captive_corba_poa);
229         g_return_if_fail(errbool==TRUE);
230
231         heartbeat_source_callback_orb=captive_corba_orb;
232
233         /* linc_main_get_loop() makes sense only after corba_init() -> CORBA_ORB_init() */
234         errguint=g_source_attach(
235                         gsource,        /* source */
236                         g_main_loop_get_context(linc_main_get_loop())); /* context; NULL means 'default context' */
237         g_assert(errguint!=0);
238
239         /* Init 'Vfs_object' */
240         Vfs_object=impl_Captive_Vfs__create(captive_corba_poa,&captive_corba_ev);
241         g_assert(validate_CORBA_Environment(&captive_corba_ev));
242
243         /* pass IOR to our parent */
244         {
245 char *Vfs_IOR;
246                 Vfs_IOR=CORBA_ORB_object_to_string(captive_corba_orb,Vfs_object,&captive_corba_ev);
247                 g_assert(validate_CORBA_Environment(&captive_corba_ev));
248                 g_assert(Vfs_IOR!=NULL);
249                 errint=write(1 /* STDOUT */,Vfs_IOR,strlen(Vfs_IOR)+1);
250                 g_assert((unsigned)errint==strlen(Vfs_IOR)+1);
251                 errint=close(1 /* STDOUT */);
252                 g_assert(errint==0);
253                 CORBA_free(Vfs_IOR);
254                 }
255
256         /* CORBA_ORB_run() -> linc_main_loop_run() -> g_main_loop_run()
257          * and therefore we should be safe with glib events handling.
258          */
259         CORBA_ORB_run(captive_corba_orb,&captive_corba_ev);
260         g_assert(validate_CORBA_Environment(&captive_corba_ev));
261
262         /* Shutdown 'Vfs' servant */
263         Vfs_servant=PortableServer_POA_reference_to_servant(captive_corba_poa,Vfs_object,&captive_corba_ev);
264         g_assert(validate_CORBA_Environment(&captive_corba_ev));
265         CORBA_Object_release(Vfs_object,&captive_corba_ev);
266         g_assert(validate_CORBA_Environment(&captive_corba_ev));
267         impl_Captive_Vfs__destroy(Vfs_servant,&captive_corba_ev);
268         g_assert(validate_CORBA_Environment(&captive_corba_ev));
269
270         errbool=corba_shutdown(&captive_corba_ev,&captive_corba_orb,&captive_corba_poa);
271         g_assert(errbool==TRUE);
272
273         _exit(EXIT_SUCCESS);
274 }
275
276
277 static void options_module_captive_to_options_module_corba
278                 (Captive_CaptiveOptionsModule *dest_options_module_corba,const struct captive_options_module *src_options_module_captive)
279 {
280         g_return_if_fail(dest_options_module_corba!=NULL);
281         g_return_if_fail(src_options_module_captive!=NULL);
282
283         g_return_if_fail(src_options_module_captive->type==CAPTIVE_OPTIONS_MODULE_TYPE_PE32);
284
285         dest_options_module_corba->pathname_utf8=g_strdup(src_options_module_captive->pathname_utf8);
286         dest_options_module_corba->data._buffer=g_memdup(src_options_module_captive->u.pe32.base,
287                         src_options_module_captive->u.pe32.length);
288         dest_options_module_corba->data._maximum=src_options_module_captive->u.pe32.length;
289         dest_options_module_corba->data._length =src_options_module_captive->u.pe32.length;
290         dest_options_module_corba->data._release=TRUE;
291 }
292
293
294 static void sandbox_parent(const char *Vfs_IOR,struct captive_options *options_captive,Captive_Vfs *corba_Vfs_object_return,
295                 Captive_GLogFunc *corba_GLogFunc_object_return,Captive_CaptiveIOChannel *corba_CaptiveIOChannel_object_return)
296 {
297 Captive_Vfs Vfs_object;
298 Captive_GLogFunc GLogFunc_object;
299 Captive_CaptiveIOChannel CaptiveIOChannel_object;
300 Captive_CaptiveOptions options_corba;
301 guint load_module_length,load_moduleui;
302 struct captive_options_module *options_module;
303 gboolean errbool;
304 GList *load_module_node;
305
306         g_return_if_fail(Vfs_IOR!=NULL);
307         g_return_if_fail(corba_Vfs_object_return!=NULL);
308         g_return_if_fail(corba_GLogFunc_object_return!=NULL);
309
310         errbool=corba_init("captive-sandbox-parent",&captive_corba_ev,&captive_corba_orb,&captive_corba_poa);
311         g_assert(errbool==TRUE);
312
313         Vfs_object=CORBA_ORB_string_to_object(captive_corba_orb,Vfs_IOR,&captive_corba_ev);
314         g_assert(validate_CORBA_Environment(&captive_corba_ev));
315
316         /* Init 'GLogFunc_object' */
317         GLogFunc_object=impl_Captive_GLogFunc__create(captive_corba_poa,&captive_corba_ev);
318         g_assert(validate_CORBA_Environment(&captive_corba_ev));
319
320         /* Init 'CaptiveIOChannel_object' */
321         CaptiveIOChannel_object=impl_Captive_CaptiveIOChannel__create(captive_corba_poa,
322                         options_captive->image_iochannel,&captive_corba_ev);
323         g_assert(validate_CORBA_Environment(&captive_corba_ev));
324
325         options_corba.g_log_func=GLogFunc_object;
326         options_module_captive_to_options_module_corba(&options_corba.filesystem,&options_captive->filesystem);
327         options_corba.rwmode        =options_captive->rwmode;
328         options_corba.media         =options_captive->media;
329         options_corba.debug_messages=options_captive->debug_messages;
330         options_corba.image_iochannel=CaptiveIOChannel_object;
331
332         load_module_length=g_list_length(options_captive->load_module);
333         captive_newn(options_corba.load_module._buffer,load_module_length);
334         options_corba.load_module._maximum=load_module_length;
335         options_corba.load_module._length=load_module_length;
336         options_corba.load_module._release=TRUE;
337         for (load_moduleui=0,load_module_node=options_captive->load_module;
338                         load_module_node;
339                         load_moduleui++,load_module_node=load_module_node->next) {
340                 options_module=load_module_node->data;
341                 options_module_captive_to_options_module_corba(options_corba.load_module._buffer+load_moduleui,options_module);
342                 }
343
344         Captive_Vfs_init(Vfs_object,&options_corba,&captive_corba_ev);
345         g_assert(validate_CORBA_Environment(&captive_corba_ev));
346
347         /* FIXME: Free 'options_corba' - LEAK */
348
349         *corba_Vfs_object_return=Vfs_object;
350         *corba_GLogFunc_object_return=GLogFunc_object;
351         *corba_CaptiveIOChannel_object_return=CaptiveIOChannel_object;
352 }
353
354 static void fd_shiftup(int *fdp)
355 {
356         g_return_if_fail(fdp!=NULL);
357
358         while (*fdp<=2 /* STDERR */) {
359                 *fdp=dup(*fdp);
360                 g_assert(*fdp!=-1);
361                 }
362 }
363
364 void captive_sandbox_fd_closeup(int fd_first_to_delete)
365 {
366 DIR *dir;
367 int errint;
368 int dir_fd;
369 struct dirent *dirent;
370
371         dir=opendir("/proc/self/fd/");
372         g_return_if_fail(dir!=NULL);
373         dir_fd=dirfd(dir);
374         g_return_if_fail(dir_fd!=-1);
375
376         while (errno=0,(dirent=readdir(dir))) {
377 long dirent_fd;
378 char *endptr;
379
380                 if (0
381                                 || !strcmp(dirent->d_name,".")
382                                 || !strcmp(dirent->d_name,".."))
383                         continue;
384                 dirent_fd=strtol(dirent->d_name,&endptr,10 /* base */);
385                 g_assert(dirent_fd>=0 && (!endptr || !*endptr));
386                 if (dirent_fd<fd_first_to_delete || dirent_fd==dir_fd)
387                         continue;
388
389                 errint=close(dirent_fd);
390                 g_assert(errint==0);
391                 errno=0;
392                 errint=close(dirent_fd);
393                 g_assert(errint==-1); g_assert(errno==EBADF);
394                 }
395         g_return_if_fail(errno==0);     /* check for EOF */
396
397         errint=closedir(dir);
398         g_return_if_fail(errint==0);
399         errno=0;
400         close(dir_fd); g_assert(errno==EBADF);  /* just a bit of paranoia; it should be already closed by closedir() */
401 }
402
403 gboolean captive_sandbox_spawn(CaptiveVfsObject *child_captive_vfs_object,
404                 Captive_Vfs *corba_Vfs_object_return,Captive_GLogFunc *corba_GLogFunc_object_return,
405                 Captive_CaptiveIOChannel *corba_CaptiveIOChannel_object_return,int *parentheart_fds_1_return)
406 {
407 /* Vfs_IOR_fds[0] for reading by sandbox_parent() - client,
408  * Vfs_IOR_fds[1] for writing by sandbox_child()  - server
409  */
410 int Vfs_IOR_fds[2],parentheart_fds[2];
411 int errint;
412
413         g_return_val_if_fail(child_captive_vfs_object!=NULL,FALSE);
414         g_return_val_if_fail(corba_Vfs_object_return!=NULL,FALSE);
415         g_return_val_if_fail(corba_GLogFunc_object_return!=NULL,FALSE);
416         g_return_val_if_fail(parentheart_fds_1_return!=NULL,FALSE);
417
418         errint=pipe(Vfs_IOR_fds);
419         g_return_val_if_fail(errint==0,FALSE);
420         errint=pipe(parentheart_fds);
421         g_return_val_if_fail(errint==0,FALSE);
422
423         /* Currently never called anywhere:
424          *     errbool=corba_shutdown(&captive_corba_ev,&captive_corba_orb,&captive_corba_poa);
425          *     g_assert(errbool==TRUE);
426          */
427
428         if (captive_sandbox_server_ior) {
429                 *parentheart_fds_1_return=-1;
430                 sandbox_parent(
431                                 captive_sandbox_server_ior,     /* Vfs_IOR */
432                                 &child_captive_vfs_object->options,     /* options_captive */
433                                 corba_Vfs_object_return,        /* corba_Vfs_object_return */
434                                 corba_GLogFunc_object_return,   /* corba_GLogFunc_object_return */
435                                 corba_CaptiveIOChannel_object_return);  /* corba_CaptiveIOChannel_object_return */
436                 return TRUE;
437                 }
438
439         g_assert(captive_sandbox_server_argv!=NULL);
440         switch (fork()) {
441                 case -1:        /* error */
442                         g_return_val_if_reached(FALSE);
443
444                 case 0: { /* child */
445
446                         errint=close(Vfs_IOR_fds[0]);   /* close Vfs_IOR_fd_read */
447                         g_return_val_if_fail(errint==0,FALSE);
448                         errint=close(parentheart_fds[1]);       /* close parentheart_fd_write */
449                         g_return_val_if_fail(errint==0,FALSE);
450
451                         fd_shiftup(Vfs_IOR_fds+1);      /* Vfs_IOR_fd_write */
452                         fd_shiftup(parentheart_fds+0);  /* parentheart_fd_read */
453                         errint=dup2(Vfs_IOR_fds[1],1 /* STDOUT */);     /* Vfs_IOR_fd_write */
454                         g_return_val_if_fail(errint==1 /* STDOUT */,FALSE);
455                         errint=dup2(parentheart_fds[0],0 /* STDIN */);  /* parentheart_fd_read */
456                         g_return_val_if_fail(errint==0 /* STDIN */,FALSE);
457
458                         captive_sandbox_fd_closeup(2 /* STDERR */ +1);
459
460                         execv(captive_sandbox_server_argv[0],/* re-const */ (char * const *)captive_sandbox_server_argv);
461                         g_return_val_if_reached(FALSE);
462                         } /* NOTREACHED */
463
464                 default: {      /* parent */
465 char *Vfs_IOR;
466 gsize Vfs_IOR_size;
467
468                         errint=close(Vfs_IOR_fds[1]);   /* close Vfs_IOR_fd_write */
469                         g_return_val_if_fail(errint==0,FALSE);
470                         errint=close(parentheart_fds[0]);       /* close parentheart_fd_read */
471                         g_return_val_if_fail(errint==0,FALSE);
472                         errint=fcntl(parentheart_fds[1],F_SETFD,FD_CLOEXEC);
473                         /* This fcntl(2) may not be enough - some fork(2) may duplicate this
474                          * write descriptor and even if we do some process finish the child
475                          * may remain alone connected with some unknown fork(2)er from us.
476                          * Currently I am not aware such case would occur.
477                          */
478                         g_return_val_if_fail(errint==0,FALSE);
479                         *parentheart_fds_1_return=parentheart_fds[1];
480
481                         Vfs_IOR=captive_rtl_file_read(Vfs_IOR_fds[0],&Vfs_IOR_size);    /* Vfs_IOR_fd_read */
482                         g_assert(Vfs_IOR!=NULL);
483                         g_assert(Vfs_IOR_size>=1);
484                         g_assert(memchr(Vfs_IOR,0,Vfs_IOR_size)==Vfs_IOR+(Vfs_IOR_size-1));     /* check exactly for 0-terminated string */
485                         errint=close(Vfs_IOR_fds[0]);   /* Vfs_IOR_fd_read */
486                         g_assert(errint==0);
487
488                         sandbox_parent(
489                                         Vfs_IOR,        /* Vfs_IOR */
490                                         &child_captive_vfs_object->options,     /* options_captive */
491                                         corba_Vfs_object_return,        /* corba_Vfs_object_return */
492                                         corba_GLogFunc_object_return,   /* corba_GLogFunc_object_return */
493                                         corba_CaptiveIOChannel_object_return);  /* corba_CaptiveIOChannel_object_return */
494
495                         g_free(Vfs_IOR);
496
497                         /* 'parentheart_fds[1]' - parentheart_fd_write - is left open here */
498                         return TRUE;
499                         }
500                 }
501         /* NOTREACHED */
502         g_return_val_if_reached(FALSE);
503 }
504
505
506 GnomeVFSResult captive_sandbox_parent_return_from_CORBA_Environment(CORBA_Environment *evp)
507 {
508 GnomeVFSResult r;
509
510         if (evp->_major==CORBA_NO_EXCEPTION)
511                 return GNOME_VFS_OK;
512
513         if (evp->_major==CORBA_USER_EXCEPTION && !strcmp(ex_Captive_GnomeVFSResultException,CORBA_exception_id(evp)))
514                 r=((Captive_GnomeVFSResultException *)CORBA_exception_value(evp))->gnome_vfs_result;
515         else {
516                 r=GNOME_VFS_ERROR_GENERIC;
517                 g_warning(_("CORBA Exception occured: id=\"%s\", value=%p"),
518                                 CORBA_exception_id(evp),CORBA_exception_value(evp));
519                 }
520         CORBA_exception_free(evp);
521
522         return r;
523 }
524
525
526 gboolean captive_sandbox_parent_query_vfs_retry(CORBA_Environment *evp,CaptiveVfsObject *captive_vfs_object)
527 {
528 GnomeVFSResult errvfsresult;
529
530         g_return_val_if_fail(evp!=NULL,FALSE);
531         g_return_val_if_fail(captive_vfs_object!=NULL,FALSE);
532
533         /* If !captive_sandbox_server_argv it is captive_sandbox_server_ior
534          * where we cannot do any restart anyway.
535          */
536         if (!captive_sandbox_server_argv
537                         || !(evp->_major==CORBA_SYSTEM_EXCEPTION && !strcmp(ex_CORBA_COMM_FAILURE,CORBA_exception_id(evp))))
538                 return FALSE;   /* no retry */
539         CORBA_exception_free(evp);
540
541         captive_sandbox_parent_vfs_close(captive_vfs_object);   /* errors ignored */
542         errvfsresult=captive_sandbox_parent_vfs_new(captive_vfs_object);
543
544         return errvfsresult==GNOME_VFS_OK;      /* retry if restart succeeded */
545 }
546
547
548 void captive_sandbox_child_GnomeVFSResultException_throw(CORBA_Environment *evp,GnomeVFSResult errvfsresult)
549 {
550 Captive_GnomeVFSResultException *gnome_vfs_result_exception;
551
552         g_return_if_fail(evp!=NULL);
553
554         gnome_vfs_result_exception=Captive_GnomeVFSResultException__alloc();
555         gnome_vfs_result_exception->gnome_vfs_result=errvfsresult;
556         CORBA_exception_set(evp,CORBA_USER_EXCEPTION,ex_Captive_GnomeVFSResultException,gnome_vfs_result_exception);
557 }