summaryrefslogtreecommitdiffstats
path: root/src/guestfs-actions.c
blob: d2ec0c760d8d23a7de1af7a8308b8b150af07122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
/* libguestfs generated file
 * WARNING: THIS FILE IS GENERATED BY 'src/generator.ml'.
 * ANY CHANGES YOU MAKE TO THIS FILE WILL BE LOST.
 *
 * Copyright (C) 2009 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
 */

struct mount_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
};

static void mount_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct mount_rv *rv = (struct mount_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_mount: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_mount: failed to parse reply error");
      return;
    }
    goto done;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

int guestfs_mount (guestfs_h *g,
		const char *device,
		const char *mountpoint)
{
  struct guestfs_mount_args args;
  struct mount_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_mount called from the wrong state, %d != READY",
      g->state);
    return -1;
  }

  memset (&rv, 0, sizeof rv);

  args.device = (char *) device;
  args.mountpoint = (char *) mountpoint;
  serial = dispatch (g, GUESTFS_PROC_MOUNT,
                     (xdrproc_t) xdr_guestfs_mount_args, (char *) &args);
  if (serial == -1)
    return -1;

  rv.cb_done = 0;
  g->reply_cb_internal = mount_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_mount failed, see earlier error messages");
    return -1;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_MOUNT, serial) == -1)
    return -1;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return -1;
  }

  return 0;
}

struct sync_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
};

static void sync_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct sync_rv *rv = (struct sync_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_sync: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_sync: failed to parse reply error");
      return;
    }
    goto done;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

int guestfs_sync (guestfs_h *g)
{
  struct sync_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_sync called from the wrong state, %d != READY",
      g->state);
    return -1;
  }

  memset (&rv, 0, sizeof rv);

  serial = dispatch (g, GUESTFS_PROC_SYNC, NULL, NULL);
  if (serial == -1)
    return -1;

  rv.cb_done = 0;
  g->reply_cb_internal = sync_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_sync failed, see earlier error messages");
    return -1;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_SYNC, serial) == -1)
    return -1;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return -1;
  }

  return 0;
}

struct touch_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
};

static void touch_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct touch_rv *rv = (struct touch_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_touch: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_touch: failed to parse reply error");
      return;
    }
    goto done;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

int guestfs_touch (guestfs_h *g,
		const char *path)
{
  struct guestfs_touch_args args;
  struct touch_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_touch called from the wrong state, %d != READY",
      g->state);
    return -1;
  }

  memset (&rv, 0, sizeof rv);

  args.path = (char *) path;
  serial = dispatch (g, GUESTFS_PROC_TOUCH,
                     (xdrproc_t) xdr_guestfs_touch_args, (char *) &args);
  if (serial == -1)
    return -1;

  rv.cb_done = 0;
  g->reply_cb_internal = touch_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_touch failed, see earlier error messages");
    return -1;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_TOUCH, serial) == -1)
    return -1;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return -1;
  }

  return 0;
}

struct cat_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
  struct guestfs_cat_ret ret;
};

static void cat_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct cat_rv *rv = (struct cat_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_cat: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_cat: failed to parse reply error");
      return;
    }
    goto done;
  }
  if (!xdr_guestfs_cat_ret (xdr, &rv->ret)) {
    error (g, "guestfs_cat: failed to parse reply");
    return;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

char *guestfs_cat (guestfs_h *g,
		const char *path)
{
  struct guestfs_cat_args args;
  struct cat_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_cat called from the wrong state, %d != READY",
      g->state);
    return NULL;
  }

  memset (&rv, 0, sizeof rv);

  args.path = (char *) path;
  serial = dispatch (g, GUESTFS_PROC_CAT,
                     (xdrproc_t) xdr_guestfs_cat_args, (char *) &args);
  if (serial == -1)
    return NULL;

  rv.cb_done = 0;
  g->reply_cb_internal = cat_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_cat failed, see earlier error messages");
    return NULL;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_CAT, serial) == -1)
    return NULL;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return NULL;
  }

  return rv.ret.content; /* caller will free */
}

struct ll_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
  struct guestfs_ll_ret ret;
};

static void ll_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct ll_rv *rv = (struct ll_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_ll: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_ll: failed to parse reply error");
      return;
    }
    goto done;
  }
  if (!xdr_guestfs_ll_ret (xdr, &rv->ret)) {
    error (g, "guestfs_ll: failed to parse reply");
    return;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

char *guestfs_ll (guestfs_h *g,
		const char *directory)
{
  struct guestfs_ll_args args;
  struct ll_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_ll called from the wrong state, %d != READY",
      g->state);
    return NULL;
  }

  memset (&rv, 0, sizeof rv);

  args.directory = (char *) directory;
  serial = dispatch (g, GUESTFS_PROC_LL,
                     (xdrproc_t) xdr_guestfs_ll_args, (char *) &args);
  if (serial == -1)
    return NULL;

  rv.cb_done = 0;
  g->reply_cb_internal = ll_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_ll failed, see earlier error messages");
    return NULL;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_LL, serial) == -1)
    return NULL;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return NULL;
  }

  return rv.ret.listing; /* caller will free */
}

struct ls_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
  struct guestfs_ls_ret ret;
};

static void ls_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct ls_rv *rv = (struct ls_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_ls: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_ls: failed to parse reply error");
      return;
    }
    goto done;
  }
  if (!xdr_guestfs_ls_ret (xdr, &rv->ret)) {
    error (g, "guestfs_ls: failed to parse reply");
    return;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

char **guestfs_ls (guestfs_h *g,
		const char *directory)
{
  struct guestfs_ls_args args;
  struct ls_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_ls called from the wrong state, %d != READY",
      g->state);
    return NULL;
  }

  memset (&rv, 0, sizeof rv);

  args.directory = (char *) directory;
  serial = dispatch (g, GUESTFS_PROC_LS,
                     (xdrproc_t) xdr_guestfs_ls_args, (char *) &args);
  if (serial == -1)
    return NULL;

  rv.cb_done = 0;
  g->reply_cb_internal = ls_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_ls failed, see earlier error messages");
    return NULL;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_LS, serial) == -1)
    return NULL;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return NULL;
  }

  /* caller will free this, but we need to add a NULL entry */
  rv.ret.listing.listing_val = safe_realloc (g, rv.ret.listing.listing_val, rv.ret.listing.listing_len + 1);
  rv.ret.listing.listing_val[rv.ret.listing.listing_len] = NULL;
  return rv.ret.listing.listing_val;
}

struct list_devices_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
  struct guestfs_list_devices_ret ret;
};

static void list_devices_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct list_devices_rv *rv = (struct list_devices_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_list_devices: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_list_devices: failed to parse reply error");
      return;
    }
    goto done;
  }
  if (!xdr_guestfs_list_devices_ret (xdr, &rv->ret)) {
    error (g, "guestfs_list_devices: failed to parse reply");
    return;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

char **guestfs_list_devices (guestfs_h *g)
{
  struct list_devices_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_list_devices called from the wrong state, %d != READY",
      g->state);
    return NULL;
  }

  memset (&rv, 0, sizeof rv);

  serial = dispatch (g, GUESTFS_PROC_LIST_DEVICES, NULL, NULL);
  if (serial == -1)
    return NULL;

  rv.cb_done = 0;
  g->reply_cb_internal = list_devices_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_list_devices failed, see earlier error messages");
    return NULL;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_LIST_DEVICES, serial) == -1)
    return NULL;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return NULL;
  }

  /* caller will free this, but we need to add a NULL entry */
  rv.ret.devices.devices_val = safe_realloc (g, rv.ret.devices.devices_val, rv.ret.devices.devices_len + 1);
  rv.ret.devices.devices_val[rv.ret.devices.devices_len] = NULL;
  return rv.ret.devices.devices_val;
}

struct list_partitions_rv {
  int cb_done;  /* flag to indicate callback was called */
  struct guestfs_message_header hdr;
  struct guestfs_message_error err;
  struct guestfs_list_partitions_ret ret;
};

static void list_partitions_cb (guestfs_h *g, void *data, XDR *xdr)
{
  struct list_partitions_rv *rv = (struct list_partitions_rv *) data;

  if (!xdr_guestfs_message_header (xdr, &rv->hdr)) {
    error (g, "guestfs_list_partitions: failed to parse reply header");
    return;
  }
  if (rv->hdr.status == GUESTFS_STATUS_ERROR) {
    if (!xdr_guestfs_message_error (xdr, &rv->err)) {
      error (g, "guestfs_list_partitions: failed to parse reply error");
      return;
    }
    goto done;
  }
  if (!xdr_guestfs_list_partitions_ret (xdr, &rv->ret)) {
    error (g, "guestfs_list_partitions: failed to parse reply");
    return;
  }
 done:
  rv->cb_done = 1;
  main_loop.main_loop_quit (g);
}

char **guestfs_list_partitions (guestfs_h *g)
{
  struct list_partitions_rv rv;
  int serial;

  if (g->state != READY) {
    error (g, "guestfs_list_partitions called from the wrong state, %d != READY",
      g->state);
    return NULL;
  }

  memset (&rv, 0, sizeof rv);

  serial = dispatch (g, GUESTFS_PROC_LIST_PARTITIONS, NULL, NULL);
  if (serial == -1)
    return NULL;

  rv.cb_done = 0;
  g->reply_cb_internal = list_partitions_cb;
  g->reply_cb_internal_data = &rv;
  main_loop.main_loop_run (g);
  g->reply_cb_internal = NULL;
  g->reply_cb_internal_data = NULL;
  if (!rv.cb_done) {
    error (g, "guestfs_list_partitions failed, see earlier error messages");
    return NULL;
  }

  if (check_reply_header (g, &rv.hdr, GUESTFS_PROC_LIST_PARTITIONS, serial) == -1)
    return NULL;

  if (rv.hdr.status == GUESTFS_STATUS_ERROR) {
    error (g, "%s", rv.err.error);
    return NULL;
  }

  /* caller will free this, but we need to add a NULL entry */
  rv.ret.partitions.partitions_val = safe_realloc (g, rv.ret.partitions.partitions_val, rv.ret.partitions.partitions_len + 1);
  rv.ret.partitions.partitions_val[rv.ret.partitions.partitions_len] = NULL;
  return rv.ret.partitions.partitions_val;
}