Statistics
| Branch: | Tag: | Revision:

root / lib / server / noded.py @ b954f097

History | View | Annotate | Download (30.4 kB)

1
#
2
#
3

    
4
# Copyright (C) 2006, 2007, 2010, 2011, 2012 Google Inc.
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
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
# General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19
# 02110-1301, USA.
20

    
21

    
22
"""Ganeti node daemon"""
23

    
24
# pylint: disable=C0103,W0142
25

    
26
# C0103: Functions in this module need to have a given name structure,
27
# and the name of the daemon doesn't match
28

    
29
# W0142: Used * or ** magic, since we do use it extensively in this
30
# module
31

    
32
import os
33
import sys
34
import logging
35
import signal
36
import codecs
37

    
38
from optparse import OptionParser
39

    
40
from ganeti import backend
41
from ganeti import constants
42
from ganeti import objects
43
from ganeti import errors
44
from ganeti import jstore
45
from ganeti import daemon
46
from ganeti import http
47
from ganeti import utils
48
from ganeti import storage
49
from ganeti import serializer
50
from ganeti import netutils
51
from ganeti import pathutils
52
from ganeti import ssconf
53

    
54
import ganeti.http.server # pylint: disable=W0611
55

    
56

    
57
queue_lock = None
58

    
59

    
60
def _PrepareQueueLock():
61
  """Try to prepare the queue lock.
62

63
  @return: None for success, otherwise an exception object
64

65
  """
66
  global queue_lock # pylint: disable=W0603
67

    
68
  if queue_lock is not None:
69
    return None
70

    
71
  # Prepare job queue
72
  try:
73
    queue_lock = jstore.InitAndVerifyQueue(must_lock=False)
74
    return None
75
  except EnvironmentError, err:
76
    return err
77

    
78

    
79
def _RequireJobQueueLock(fn):
80
  """Decorator for job queue manipulating functions.
81

82
  """
83
  QUEUE_LOCK_TIMEOUT = 10
84

    
85
  def wrapper(*args, **kwargs):
86
    # Locking in exclusive, blocking mode because there could be several
87
    # children running at the same time. Waiting up to 10 seconds.
88
    if _PrepareQueueLock() is not None:
89
      raise errors.JobQueueError("Job queue failed initialization,"
90
                                 " cannot update jobs")
91
    queue_lock.Exclusive(blocking=True, timeout=QUEUE_LOCK_TIMEOUT)
92
    try:
93
      return fn(*args, **kwargs)
94
    finally:
95
      queue_lock.Unlock()
96

    
97
  return wrapper
98

    
99

    
100
def _DecodeImportExportIO(ieio, ieioargs):
101
  """Decodes import/export I/O information.
102

103
  """
104
  if ieio == constants.IEIO_RAW_DISK:
105
    assert len(ieioargs) == 1
106
    return (objects.Disk.FromDict(ieioargs[0]), )
107

    
108
  if ieio == constants.IEIO_SCRIPT:
109
    assert len(ieioargs) == 2
110
    return (objects.Disk.FromDict(ieioargs[0]), ieioargs[1])
111

    
112
  return ieioargs
113

    
114

    
115
class MlockallRequestExecutor(http.server.HttpServerRequestExecutor):
116
  """Subclass ensuring request handlers are locked in RAM.
117

118
  """
119
  def __init__(self, *args, **kwargs):
120
    utils.Mlockall()
121

    
122
    http.server.HttpServerRequestExecutor.__init__(self, *args, **kwargs)
123

    
124

    
125
class NodeRequestHandler(http.server.HttpServerHandler):
126
  """The server implementation.
127

128
  This class holds all methods exposed over the RPC interface.
129

130
  """
131
  # too many public methods, and unused args - all methods get params
132
  # due to the API
133
  # pylint: disable=R0904,W0613
134
  def __init__(self):
135
    http.server.HttpServerHandler.__init__(self)
136
    self.noded_pid = os.getpid()
137

    
138
  def HandleRequest(self, req):
139
    """Handle a request.
140

141
    """
142
    if req.request_method.upper() != http.HTTP_POST:
143
      raise http.HttpBadRequest("Only the POST method is supported")
144

    
145
    path = req.request_path
146
    if path.startswith("/"):
147
      path = path[1:]
148

    
149
    method = getattr(self, "perspective_%s" % path, None)
150
    if method is None:
151
      raise http.HttpNotFound()
152

    
153
    try:
154
      result = (True, method(serializer.LoadJson(req.request_body)))
155

    
156
    except backend.RPCFail, err:
157
      # our custom failure exception; str(err) works fine if the
158
      # exception was constructed with a single argument, and in
159
      # this case, err.message == err.args[0] == str(err)
160
      result = (False, str(err))
161
    except errors.QuitGanetiException, err:
162
      # Tell parent to quit
163
      logging.info("Shutting down the node daemon, arguments: %s",
164
                   str(err.args))
165
      os.kill(self.noded_pid, signal.SIGTERM)
166
      # And return the error's arguments, which must be already in
167
      # correct tuple format
168
      result = err.args
169
    except Exception, err:
170
      logging.exception("Error in RPC call")
171
      result = (False, "Error while executing backend function: %s" % str(err))
172

    
173
    return serializer.DumpJson(result)
174

    
175
  # the new block devices  --------------------------
176

    
177
  @staticmethod
178
  def perspective_blockdev_create(params):
179
    """Create a block device.
180

181
    """
182
    (bdev_s, size, owner, on_primary, info, excl_stor) = params
183
    bdev = objects.Disk.FromDict(bdev_s)
184
    if bdev is None:
185
      raise ValueError("can't unserialize data!")
186
    return backend.BlockdevCreate(bdev, size, owner, on_primary, info,
187
                                  excl_stor)
188

    
189
  @staticmethod
190
  def perspective_blockdev_pause_resume_sync(params):
191
    """Pause/resume sync of a block device.
192

193
    """
194
    disks_s, pause = params
195
    disks = [objects.Disk.FromDict(bdev_s) for bdev_s in disks_s]
196
    return backend.BlockdevPauseResumeSync(disks, pause)
197

    
198
  @staticmethod
199
  def perspective_blockdev_wipe(params):
200
    """Wipe a block device.
201

202
    """
203
    bdev_s, offset, size = params
204
    bdev = objects.Disk.FromDict(bdev_s)
205
    return backend.BlockdevWipe(bdev, offset, size)
206

    
207
  @staticmethod
208
  def perspective_blockdev_remove(params):
209
    """Remove a block device.
210

211
    """
212
    bdev_s = params[0]
213
    bdev = objects.Disk.FromDict(bdev_s)
214
    return backend.BlockdevRemove(bdev)
215

    
216
  @staticmethod
217
  def perspective_blockdev_rename(params):
218
    """Remove a block device.
219

220
    """
221
    devlist = [(objects.Disk.FromDict(ds), uid) for ds, uid in params[0]]
222
    return backend.BlockdevRename(devlist)
223

    
224
  @staticmethod
225
  def perspective_blockdev_assemble(params):
226
    """Assemble a block device.
227

228
    """
229
    bdev_s, owner, on_primary, idx = params
230
    bdev = objects.Disk.FromDict(bdev_s)
231
    if bdev is None:
232
      raise ValueError("can't unserialize data!")
233
    return backend.BlockdevAssemble(bdev, owner, on_primary, idx)
234

    
235
  @staticmethod
236
  def perspective_blockdev_shutdown(params):
237
    """Shutdown a block device.
238

239
    """
240
    bdev_s = params[0]
241
    bdev = objects.Disk.FromDict(bdev_s)
242
    if bdev is None:
243
      raise ValueError("can't unserialize data!")
244
    return backend.BlockdevShutdown(bdev)
245

    
246
  @staticmethod
247
  def perspective_blockdev_addchildren(params):
248
    """Add a child to a mirror device.
249

250
    Note: this is only valid for mirror devices. It's the caller's duty
251
    to send a correct disk, otherwise we raise an error.
252

253
    """
254
    bdev_s, ndev_s = params
255
    bdev = objects.Disk.FromDict(bdev_s)
256
    ndevs = [objects.Disk.FromDict(disk_s) for disk_s in ndev_s]
257
    if bdev is None or ndevs.count(None) > 0:
258
      raise ValueError("can't unserialize data!")
259
    return backend.BlockdevAddchildren(bdev, ndevs)
260

    
261
  @staticmethod
262
  def perspective_blockdev_removechildren(params):
263
    """Remove a child from a mirror device.
264

265
    This is only valid for mirror devices, of course. It's the callers
266
    duty to send a correct disk, otherwise we raise an error.
267

268
    """
269
    bdev_s, ndev_s = params
270
    bdev = objects.Disk.FromDict(bdev_s)
271
    ndevs = [objects.Disk.FromDict(disk_s) for disk_s in ndev_s]
272
    if bdev is None or ndevs.count(None) > 0:
273
      raise ValueError("can't unserialize data!")
274
    return backend.BlockdevRemovechildren(bdev, ndevs)
275

    
276
  @staticmethod
277
  def perspective_blockdev_getmirrorstatus(params):
278
    """Return the mirror status for a list of disks.
279

280
    """
281
    disks = [objects.Disk.FromDict(dsk_s)
282
             for dsk_s in params[0]]
283
    return [status.ToDict()
284
            for status in backend.BlockdevGetmirrorstatus(disks)]
285

    
286
  @staticmethod
287
  def perspective_blockdev_getmirrorstatus_multi(params):
288
    """Return the mirror status for a list of disks.
289

290
    """
291
    (node_disks, ) = params
292

    
293
    disks = [objects.Disk.FromDict(dsk_s) for dsk_s in node_disks]
294

    
295
    result = []
296

    
297
    for (success, status) in backend.BlockdevGetmirrorstatusMulti(disks):
298
      if success:
299
        result.append((success, status.ToDict()))
300
      else:
301
        result.append((success, status))
302

    
303
    return result
304

    
305
  @staticmethod
306
  def perspective_blockdev_find(params):
307
    """Expose the FindBlockDevice functionality for a disk.
308

309
    This will try to find but not activate a disk.
310

311
    """
312
    disk = objects.Disk.FromDict(params[0])
313

    
314
    result = backend.BlockdevFind(disk)
315
    if result is None:
316
      return None
317

    
318
    return result.ToDict()
319

    
320
  @staticmethod
321
  def perspective_blockdev_snapshot(params):
322
    """Create a snapshot device.
323

324
    Note that this is only valid for LVM disks, if we get passed
325
    something else we raise an exception. The snapshot device can be
326
    remove by calling the generic block device remove call.
327

328
    """
329
    cfbd = objects.Disk.FromDict(params[0])
330
    return backend.BlockdevSnapshot(cfbd)
331

    
332
  @staticmethod
333
  def perspective_blockdev_grow(params):
334
    """Grow a stack of devices.
335

336
    """
337
    if len(params) < 4:
338
      raise ValueError("Received only 3 parameters in blockdev_grow,"
339
                       " old master?")
340
    cfbd = objects.Disk.FromDict(params[0])
341
    amount = params[1]
342
    dryrun = params[2]
343
    backingstore = params[3]
344
    return backend.BlockdevGrow(cfbd, amount, dryrun, backingstore)
345

    
346
  @staticmethod
347
  def perspective_blockdev_close(params):
348
    """Closes the given block devices.
349

350
    """
351
    disks = [objects.Disk.FromDict(cf) for cf in params[1]]
352
    return backend.BlockdevClose(params[0], disks)
353

    
354
  @staticmethod
355
  def perspective_blockdev_getsize(params):
356
    """Compute the sizes of the given block devices.
357

358
    """
359
    disks = [objects.Disk.FromDict(cf) for cf in params[0]]
360
    return backend.BlockdevGetsize(disks)
361

    
362
  @staticmethod
363
  def perspective_blockdev_export(params):
364
    """Compute the sizes of the given block devices.
365

366
    """
367
    disk = objects.Disk.FromDict(params[0])
368
    dest_node, dest_path, cluster_name = params[1:]
369
    return backend.BlockdevExport(disk, dest_node, dest_path, cluster_name)
370

    
371
  @staticmethod
372
  def perspective_blockdev_setinfo(params):
373
    """Sets metadata information on the given block device.
374

375
    """
376
    (disk, info) = params
377
    disk = objects.Disk.FromDict(disk)
378
    return backend.BlockdevSetInfo(disk, info)
379

    
380
  # blockdev/drbd specific methods ----------
381

    
382
  @staticmethod
383
  def perspective_drbd_disconnect_net(params):
384
    """Disconnects the network connection of drbd disks.
385

386
    Note that this is only valid for drbd disks, so the members of the
387
    disk list must all be drbd devices.
388

389
    """
390
    nodes_ip, disks = params
391
    disks = [objects.Disk.FromDict(cf) for cf in disks]
392
    return backend.DrbdDisconnectNet(nodes_ip, disks)
393

    
394
  @staticmethod
395
  def perspective_drbd_attach_net(params):
396
    """Attaches the network connection of drbd disks.
397

398
    Note that this is only valid for drbd disks, so the members of the
399
    disk list must all be drbd devices.
400

401
    """
402
    nodes_ip, disks, instance_name, multimaster = params
403
    disks = [objects.Disk.FromDict(cf) for cf in disks]
404
    return backend.DrbdAttachNet(nodes_ip, disks,
405
                                     instance_name, multimaster)
406

    
407
  @staticmethod
408
  def perspective_drbd_wait_sync(params):
409
    """Wait until DRBD disks are synched.
410

411
    Note that this is only valid for drbd disks, so the members of the
412
    disk list must all be drbd devices.
413

414
    """
415
    nodes_ip, disks = params
416
    disks = [objects.Disk.FromDict(cf) for cf in disks]
417
    return backend.DrbdWaitSync(nodes_ip, disks)
418

    
419
  @staticmethod
420
  def perspective_drbd_helper(params):
421
    """Query drbd helper.
422

423
    """
424
    return backend.GetDrbdUsermodeHelper()
425

    
426
  # export/import  --------------------------
427

    
428
  @staticmethod
429
  def perspective_finalize_export(params):
430
    """Expose the finalize export functionality.
431

432
    """
433
    instance = objects.Instance.FromDict(params[0])
434

    
435
    snap_disks = []
436
    for disk in params[1]:
437
      if isinstance(disk, bool):
438
        snap_disks.append(disk)
439
      else:
440
        snap_disks.append(objects.Disk.FromDict(disk))
441

    
442
    return backend.FinalizeExport(instance, snap_disks)
443

    
444
  @staticmethod
445
  def perspective_export_info(params):
446
    """Query information about an existing export on this node.
447

448
    The given path may not contain an export, in which case we return
449
    None.
450

451
    """
452
    path = params[0]
453
    return backend.ExportInfo(path)
454

    
455
  @staticmethod
456
  def perspective_export_list(params):
457
    """List the available exports on this node.
458

459
    Note that as opposed to export_info, which may query data about an
460
    export in any path, this only queries the standard Ganeti path
461
    (pathutils.EXPORT_DIR).
462

463
    """
464
    return backend.ListExports()
465

    
466
  @staticmethod
467
  def perspective_export_remove(params):
468
    """Remove an export.
469

470
    """
471
    export = params[0]
472
    return backend.RemoveExport(export)
473

    
474
  # block device ---------------------
475
  @staticmethod
476
  def perspective_bdev_sizes(params):
477
    """Query the list of block devices
478

479
    """
480
    devices = params[0]
481
    return backend.GetBlockDevSizes(devices)
482

    
483
  # volume  --------------------------
484

    
485
  @staticmethod
486
  def perspective_lv_list(params):
487
    """Query the list of logical volumes in a given volume group.
488

489
    """
490
    vgname = params[0]
491
    return backend.GetVolumeList(vgname)
492

    
493
  @staticmethod
494
  def perspective_vg_list(params):
495
    """Query the list of volume groups.
496

497
    """
498
    return backend.ListVolumeGroups()
499

    
500
  # Storage --------------------------
501

    
502
  @staticmethod
503
  def perspective_storage_list(params):
504
    """Get list of storage units.
505

506
    """
507
    (su_name, su_args, name, fields) = params
508
    return storage.GetStorage(su_name, *su_args).List(name, fields)
509

    
510
  @staticmethod
511
  def perspective_storage_modify(params):
512
    """Modify a storage unit.
513

514
    """
515
    (su_name, su_args, name, changes) = params
516
    return storage.GetStorage(su_name, *su_args).Modify(name, changes)
517

    
518
  @staticmethod
519
  def perspective_storage_execute(params):
520
    """Execute an operation on a storage unit.
521

522
    """
523
    (su_name, su_args, name, op) = params
524
    return storage.GetStorage(su_name, *su_args).Execute(name, op)
525

    
526
  # bridge  --------------------------
527

    
528
  @staticmethod
529
  def perspective_bridges_exist(params):
530
    """Check if all bridges given exist on this node.
531

532
    """
533
    bridges_list = params[0]
534
    return backend.BridgesExist(bridges_list)
535

    
536
  # instance  --------------------------
537

    
538
  @staticmethod
539
  def perspective_instance_os_add(params):
540
    """Install an OS on a given instance.
541

542
    """
543
    inst_s = params[0]
544
    inst = objects.Instance.FromDict(inst_s)
545
    reinstall = params[1]
546
    debug = params[2]
547
    return backend.InstanceOsAdd(inst, reinstall, debug)
548

    
549
  @staticmethod
550
  def perspective_instance_run_rename(params):
551
    """Runs the OS rename script for an instance.
552

553
    """
554
    inst_s, old_name, debug = params
555
    inst = objects.Instance.FromDict(inst_s)
556
    return backend.RunRenameInstance(inst, old_name, debug)
557

    
558
  @staticmethod
559
  def perspective_instance_shutdown(params):
560
    """Shutdown an instance.
561

562
    """
563
    instance = objects.Instance.FromDict(params[0])
564
    timeout = params[1]
565
    return backend.InstanceShutdown(instance, timeout)
566

    
567
  @staticmethod
568
  def perspective_instance_start(params):
569
    """Start an instance.
570

571
    """
572
    (instance_name, startup_paused) = params
573
    instance = objects.Instance.FromDict(instance_name)
574
    return backend.StartInstance(instance, startup_paused)
575

    
576
  @staticmethod
577
  def perspective_migration_info(params):
578
    """Gather information about an instance to be migrated.
579

580
    """
581
    instance = objects.Instance.FromDict(params[0])
582
    return backend.MigrationInfo(instance)
583

    
584
  @staticmethod
585
  def perspective_accept_instance(params):
586
    """Prepare the node to accept an instance.
587

588
    """
589
    instance, info, target = params
590
    instance = objects.Instance.FromDict(instance)
591
    return backend.AcceptInstance(instance, info, target)
592

    
593
  @staticmethod
594
  def perspective_instance_finalize_migration_dst(params):
595
    """Finalize the instance migration on the destination node.
596

597
    """
598
    instance, info, success = params
599
    instance = objects.Instance.FromDict(instance)
600
    return backend.FinalizeMigrationDst(instance, info, success)
601

    
602
  @staticmethod
603
  def perspective_instance_migrate(params):
604
    """Migrates an instance.
605

606
    """
607
    instance, target, live = params
608
    instance = objects.Instance.FromDict(instance)
609
    return backend.MigrateInstance(instance, target, live)
610

    
611
  @staticmethod
612
  def perspective_instance_finalize_migration_src(params):
613
    """Finalize the instance migration on the source node.
614

615
    """
616
    instance, success, live = params
617
    instance = objects.Instance.FromDict(instance)
618
    return backend.FinalizeMigrationSource(instance, success, live)
619

    
620
  @staticmethod
621
  def perspective_instance_get_migration_status(params):
622
    """Reports migration status.
623

624
    """
625
    instance = objects.Instance.FromDict(params[0])
626
    return backend.GetMigrationStatus(instance).ToDict()
627

    
628
  @staticmethod
629
  def perspective_instance_reboot(params):
630
    """Reboot an instance.
631

632
    """
633
    instance = objects.Instance.FromDict(params[0])
634
    reboot_type = params[1]
635
    shutdown_timeout = params[2]
636
    return backend.InstanceReboot(instance, reboot_type, shutdown_timeout)
637

    
638
  @staticmethod
639
  def perspective_instance_balloon_memory(params):
640
    """Modify instance runtime memory.
641

642
    """
643
    instance_dict, memory = params
644
    instance = objects.Instance.FromDict(instance_dict)
645
    return backend.InstanceBalloonMemory(instance, memory)
646

    
647
  @staticmethod
648
  def perspective_instance_info(params):
649
    """Query instance information.
650

651
    """
652
    return backend.GetInstanceInfo(params[0], params[1])
653

    
654
  @staticmethod
655
  def perspective_instance_migratable(params):
656
    """Query whether the specified instance can be migrated.
657

658
    """
659
    instance = objects.Instance.FromDict(params[0])
660
    return backend.GetInstanceMigratable(instance)
661

    
662
  @staticmethod
663
  def perspective_all_instances_info(params):
664
    """Query information about all instances.
665

666
    """
667
    return backend.GetAllInstancesInfo(params[0])
668

    
669
  @staticmethod
670
  def perspective_instance_list(params):
671
    """Query the list of running instances.
672

673
    """
674
    return backend.GetInstanceList(params[0])
675

    
676
  # node --------------------------
677

    
678
  @staticmethod
679
  def perspective_node_has_ip_address(params):
680
    """Checks if a node has the given ip address.
681

682
    """
683
    return netutils.IPAddress.Own(params[0])
684

    
685
  @staticmethod
686
  def perspective_node_info(params):
687
    """Query node information.
688

689
    """
690
    (vg_names, hv_names, excl_stor) = params
691
    return backend.GetNodeInfo(vg_names, hv_names, excl_stor)
692

    
693
  @staticmethod
694
  def perspective_etc_hosts_modify(params):
695
    """Modify a node entry in /etc/hosts.
696

697
    """
698
    backend.EtcHostsModify(params[0], params[1], params[2])
699

    
700
    return True
701

    
702
  @staticmethod
703
  def perspective_node_verify(params):
704
    """Run a verify sequence on this node.
705

706
    """
707
    return backend.VerifyNode(params[0], params[1])
708

    
709
  @staticmethod
710
  def perspective_node_start_master_daemons(params):
711
    """Start the master daemons on this node.
712

713
    """
714
    return backend.StartMasterDaemons(params[0])
715

    
716
  @staticmethod
717
  def perspective_node_activate_master_ip(params):
718
    """Activate the master IP on this node.
719

720
    """
721
    master_params = objects.MasterNetworkParameters.FromDict(params[0])
722
    return backend.ActivateMasterIp(master_params, params[1])
723

    
724
  @staticmethod
725
  def perspective_node_deactivate_master_ip(params):
726
    """Deactivate the master IP on this node.
727

728
    """
729
    master_params = objects.MasterNetworkParameters.FromDict(params[0])
730
    return backend.DeactivateMasterIp(master_params, params[1])
731

    
732
  @staticmethod
733
  def perspective_node_stop_master(params):
734
    """Stops master daemons on this node.
735

736
    """
737
    return backend.StopMasterDaemons()
738

    
739
  @staticmethod
740
  def perspective_node_change_master_netmask(params):
741
    """Change the master IP netmask.
742

743
    """
744
    return backend.ChangeMasterNetmask(params[0], params[1], params[2],
745
                                       params[3])
746

    
747
  @staticmethod
748
  def perspective_node_leave_cluster(params):
749
    """Cleanup after leaving a cluster.
750

751
    """
752
    return backend.LeaveCluster(params[0])
753

    
754
  @staticmethod
755
  def perspective_node_volumes(params):
756
    """Query the list of all logical volume groups.
757

758
    """
759
    return backend.NodeVolumes()
760

    
761
  @staticmethod
762
  def perspective_node_demote_from_mc(params):
763
    """Demote a node from the master candidate role.
764

765
    """
766
    return backend.DemoteFromMC()
767

    
768
  @staticmethod
769
  def perspective_node_powercycle(params):
770
    """Tries to powercycle the nod.
771

772
    """
773
    hypervisor_type = params[0]
774
    return backend.PowercycleNode(hypervisor_type)
775

    
776
  # cluster --------------------------
777

    
778
  @staticmethod
779
  def perspective_version(params):
780
    """Query version information.
781

782
    """
783
    return constants.PROTOCOL_VERSION
784

    
785
  @staticmethod
786
  def perspective_upload_file(params):
787
    """Upload a file.
788

789
    Note that the backend implementation imposes strict rules on which
790
    files are accepted.
791

792
    """
793
    return backend.UploadFile(*(params[0]))
794

    
795
  @staticmethod
796
  def perspective_master_info(params):
797
    """Query master information.
798

799
    """
800
    return backend.GetMasterInfo()
801

    
802
  @staticmethod
803
  def perspective_run_oob(params):
804
    """Runs oob on node.
805

806
    """
807
    output = backend.RunOob(params[0], params[1], params[2], params[3])
808
    if output:
809
      result = serializer.LoadJson(output)
810
    else:
811
      result = None
812
    return result
813

    
814
  @staticmethod
815
  def perspective_restricted_command(params):
816
    """Runs a restricted command.
817

818
    """
819
    (cmd, ) = params
820

    
821
    return backend.RunRestrictedCmd(cmd)
822

    
823
  @staticmethod
824
  def perspective_write_ssconf_files(params):
825
    """Write ssconf files.
826

827
    """
828
    (values,) = params
829
    return ssconf.WriteSsconfFiles(values)
830

    
831
  @staticmethod
832
  def perspective_get_watcher_pause(params):
833
    """Get watcher pause end.
834

835
    """
836
    return utils.ReadWatcherPauseFile(pathutils.WATCHER_PAUSEFILE)
837

    
838
  @staticmethod
839
  def perspective_set_watcher_pause(params):
840
    """Set watcher pause.
841

842
    """
843
    (until, ) = params
844
    return backend.SetWatcherPause(until)
845

    
846
  # os -----------------------
847

    
848
  @staticmethod
849
  def perspective_os_diagnose(params):
850
    """Query detailed information about existing OSes.
851

852
    """
853
    return backend.DiagnoseOS()
854

    
855
  @staticmethod
856
  def perspective_os_get(params):
857
    """Query information about a given OS.
858

859
    """
860
    name = params[0]
861
    os_obj = backend.OSFromDisk(name)
862
    return os_obj.ToDict()
863

    
864
  @staticmethod
865
  def perspective_os_validate(params):
866
    """Run a given OS' validation routine.
867

868
    """
869
    required, name, checks, params = params
870
    return backend.ValidateOS(required, name, checks, params)
871

    
872
  # extstorage -----------------------
873

    
874
  @staticmethod
875
  def perspective_extstorage_diagnose(params):
876
    """Query detailed information about existing extstorage providers.
877

878
    """
879
    return backend.DiagnoseExtStorage()
880

    
881
  # hooks -----------------------
882

    
883
  @staticmethod
884
  def perspective_hooks_runner(params):
885
    """Run hook scripts.
886

887
    """
888
    hpath, phase, env = params
889
    hr = backend.HooksRunner()
890
    return hr.RunHooks(hpath, phase, env)
891

    
892
  # iallocator -----------------
893

    
894
  @staticmethod
895
  def perspective_iallocator_runner(params):
896
    """Run an iallocator script.
897

898
    """
899
    name, idata = params
900
    iar = backend.IAllocatorRunner()
901
    return iar.Run(name, idata)
902

    
903
  # test -----------------------
904

    
905
  @staticmethod
906
  def perspective_test_delay(params):
907
    """Run test delay.
908

909
    """
910
    duration = params[0]
911
    status, rval = utils.TestDelay(duration)
912
    if not status:
913
      raise backend.RPCFail(rval)
914
    return rval
915

    
916
  # file storage ---------------
917

    
918
  @staticmethod
919
  def perspective_file_storage_dir_create(params):
920
    """Create the file storage directory.
921

922
    """
923
    file_storage_dir = params[0]
924
    return backend.CreateFileStorageDir(file_storage_dir)
925

    
926
  @staticmethod
927
  def perspective_file_storage_dir_remove(params):
928
    """Remove the file storage directory.
929

930
    """
931
    file_storage_dir = params[0]
932
    return backend.RemoveFileStorageDir(file_storage_dir)
933

    
934
  @staticmethod
935
  def perspective_file_storage_dir_rename(params):
936
    """Rename the file storage directory.
937

938
    """
939
    old_file_storage_dir = params[0]
940
    new_file_storage_dir = params[1]
941
    return backend.RenameFileStorageDir(old_file_storage_dir,
942
                                        new_file_storage_dir)
943

    
944
  # jobs ------------------------
945

    
946
  @staticmethod
947
  @_RequireJobQueueLock
948
  def perspective_jobqueue_update(params):
949
    """Update job queue.
950

951
    """
952
    (file_name, content) = params
953
    return backend.JobQueueUpdate(file_name, content)
954

    
955
  @staticmethod
956
  @_RequireJobQueueLock
957
  def perspective_jobqueue_purge(params):
958
    """Purge job queue.
959

960
    """
961
    return backend.JobQueuePurge()
962

    
963
  @staticmethod
964
  @_RequireJobQueueLock
965
  def perspective_jobqueue_rename(params):
966
    """Rename a job queue file.
967

968
    """
969
    # TODO: What if a file fails to rename?
970
    return [backend.JobQueueRename(old, new) for old, new in params[0]]
971

    
972
  @staticmethod
973
  @_RequireJobQueueLock
974
  def perspective_jobqueue_set_drain_flag(params):
975
    """Set job queue's drain flag.
976

977
    """
978
    (flag, ) = params
979

    
980
    return jstore.SetDrainFlag(flag)
981

    
982
  # hypervisor ---------------
983

    
984
  @staticmethod
985
  def perspective_hypervisor_validate_params(params):
986
    """Validate the hypervisor parameters.
987

988
    """
989
    (hvname, hvparams) = params
990
    return backend.ValidateHVParams(hvname, hvparams)
991

    
992
  # Crypto
993

    
994
  @staticmethod
995
  def perspective_x509_cert_create(params):
996
    """Creates a new X509 certificate for SSL/TLS.
997

998
    """
999
    (validity, ) = params
1000
    return backend.CreateX509Certificate(validity)
1001

    
1002
  @staticmethod
1003
  def perspective_x509_cert_remove(params):
1004
    """Removes a X509 certificate.
1005

1006
    """
1007
    (name, ) = params
1008
    return backend.RemoveX509Certificate(name)
1009

    
1010
  # Import and export
1011

    
1012
  @staticmethod
1013
  def perspective_import_start(params):
1014
    """Starts an import daemon.
1015

1016
    """
1017
    (opts_s, instance, component, (dest, dest_args)) = params
1018

    
1019
    opts = objects.ImportExportOptions.FromDict(opts_s)
1020

    
1021
    return backend.StartImportExportDaemon(constants.IEM_IMPORT, opts,
1022
                                           None, None,
1023
                                           objects.Instance.FromDict(instance),
1024
                                           component, dest,
1025
                                           _DecodeImportExportIO(dest,
1026
                                                                 dest_args))
1027

    
1028
  @staticmethod
1029
  def perspective_export_start(params):
1030
    """Starts an export daemon.
1031

1032
    """
1033
    (opts_s, host, port, instance, component, (source, source_args)) = params
1034

    
1035
    opts = objects.ImportExportOptions.FromDict(opts_s)
1036

    
1037
    return backend.StartImportExportDaemon(constants.IEM_EXPORT, opts,
1038
                                           host, port,
1039
                                           objects.Instance.FromDict(instance),
1040
                                           component, source,
1041
                                           _DecodeImportExportIO(source,
1042
                                                                 source_args))
1043

    
1044
  @staticmethod
1045
  def perspective_impexp_status(params):
1046
    """Retrieves the status of an import or export daemon.
1047

1048
    """
1049
    return backend.GetImportExportStatus(params[0])
1050

    
1051
  @staticmethod
1052
  def perspective_impexp_abort(params):
1053
    """Aborts an import or export.
1054

1055
    """
1056
    return backend.AbortImportExport(params[0])
1057

    
1058
  @staticmethod
1059
  def perspective_impexp_cleanup(params):
1060
    """Cleans up after an import or export.
1061

1062
    """
1063
    return backend.CleanupImportExport(params[0])
1064

    
1065

    
1066
def CheckNoded(_, args):
1067
  """Initial checks whether to run or exit with a failure.
1068

1069
  """
1070
  if args: # noded doesn't take any arguments
1071
    print >> sys.stderr, ("Usage: %s [-f] [-d] [-p port] [-b ADDRESS]" %
1072
                          sys.argv[0])
1073
    sys.exit(constants.EXIT_FAILURE)
1074
  try:
1075
    codecs.lookup("string-escape")
1076
  except LookupError:
1077
    print >> sys.stderr, ("Can't load the string-escape code which is part"
1078
                          " of the Python installation. Is your installation"
1079
                          " complete/correct? Aborting.")
1080
    sys.exit(constants.EXIT_FAILURE)
1081

    
1082

    
1083
def PrepNoded(options, _):
1084
  """Preparation node daemon function, executed with the PID file held.
1085

1086
  """
1087
  if options.mlock:
1088
    request_executor_class = MlockallRequestExecutor
1089
    try:
1090
      utils.Mlockall()
1091
    except errors.NoCtypesError:
1092
      logging.warning("Cannot set memory lock, ctypes module not found")
1093
      request_executor_class = http.server.HttpServerRequestExecutor
1094
  else:
1095
    request_executor_class = http.server.HttpServerRequestExecutor
1096

    
1097
  # Read SSL certificate
1098
  if options.ssl:
1099
    ssl_params = http.HttpSslParams(ssl_key_path=options.ssl_key,
1100
                                    ssl_cert_path=options.ssl_cert)
1101
  else:
1102
    ssl_params = None
1103

    
1104
  err = _PrepareQueueLock()
1105
  if err is not None:
1106
    # this might be some kind of file-system/permission error; while
1107
    # this breaks the job queue functionality, we shouldn't prevent
1108
    # startup of the whole node daemon because of this
1109
    logging.critical("Can't init/verify the queue, proceeding anyway: %s", err)
1110

    
1111
  handler = NodeRequestHandler()
1112

    
1113
  mainloop = daemon.Mainloop()
1114
  server = \
1115
    http.server.HttpServer(mainloop, options.bind_address, options.port,
1116
                           handler, ssl_params=ssl_params, ssl_verify_peer=True,
1117
                           request_executor_class=request_executor_class)
1118
  server.Start()
1119

    
1120
  return (mainloop, server)
1121

    
1122

    
1123
def ExecNoded(options, args, prep_data): # pylint: disable=W0613
1124
  """Main node daemon function, executed with the PID file held.
1125

1126
  """
1127
  (mainloop, server) = prep_data
1128
  try:
1129
    mainloop.Run()
1130
  finally:
1131
    server.Stop()
1132

    
1133

    
1134
def Main():
1135
  """Main function for the node daemon.
1136

1137
  """
1138
  parser = OptionParser(description="Ganeti node daemon",
1139
                        usage="%prog [-f] [-d] [-p port] [-b ADDRESS]",
1140
                        version="%%prog (ganeti) %s" %
1141
                        constants.RELEASE_VERSION)
1142
  parser.add_option("--no-mlock", dest="mlock",
1143
                    help="Do not mlock the node memory in ram",
1144
                    default=True, action="store_false")
1145

    
1146
  daemon.GenericMain(constants.NODED, parser, CheckNoded, PrepNoded, ExecNoded,
1147
                     default_ssl_cert=pathutils.NODED_CERT_FILE,
1148
                     default_ssl_key=pathutils.NODED_CERT_FILE,
1149
                     console_logging=True)