Statistics
| Branch: | Tag: | Revision:

root / lib / server / noded.py @ 1a3c5d4e

History | View | Annotate | Download (30.2 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
  # hooks -----------------------
873

    
874
  @staticmethod
875
  def perspective_hooks_runner(params):
876
    """Run hook scripts.
877

878
    """
879
    hpath, phase, env = params
880
    hr = backend.HooksRunner()
881
    return hr.RunHooks(hpath, phase, env)
882

    
883
  # iallocator -----------------
884

    
885
  @staticmethod
886
  def perspective_iallocator_runner(params):
887
    """Run an iallocator script.
888

889
    """
890
    name, idata = params
891
    iar = backend.IAllocatorRunner()
892
    return iar.Run(name, idata)
893

    
894
  # test -----------------------
895

    
896
  @staticmethod
897
  def perspective_test_delay(params):
898
    """Run test delay.
899

900
    """
901
    duration = params[0]
902
    status, rval = utils.TestDelay(duration)
903
    if not status:
904
      raise backend.RPCFail(rval)
905
    return rval
906

    
907
  # file storage ---------------
908

    
909
  @staticmethod
910
  def perspective_file_storage_dir_create(params):
911
    """Create the file storage directory.
912

913
    """
914
    file_storage_dir = params[0]
915
    return backend.CreateFileStorageDir(file_storage_dir)
916

    
917
  @staticmethod
918
  def perspective_file_storage_dir_remove(params):
919
    """Remove the file storage directory.
920

921
    """
922
    file_storage_dir = params[0]
923
    return backend.RemoveFileStorageDir(file_storage_dir)
924

    
925
  @staticmethod
926
  def perspective_file_storage_dir_rename(params):
927
    """Rename the file storage directory.
928

929
    """
930
    old_file_storage_dir = params[0]
931
    new_file_storage_dir = params[1]
932
    return backend.RenameFileStorageDir(old_file_storage_dir,
933
                                        new_file_storage_dir)
934

    
935
  # jobs ------------------------
936

    
937
  @staticmethod
938
  @_RequireJobQueueLock
939
  def perspective_jobqueue_update(params):
940
    """Update job queue.
941

942
    """
943
    (file_name, content) = params
944
    return backend.JobQueueUpdate(file_name, content)
945

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

951
    """
952
    return backend.JobQueuePurge()
953

    
954
  @staticmethod
955
  @_RequireJobQueueLock
956
  def perspective_jobqueue_rename(params):
957
    """Rename a job queue file.
958

959
    """
960
    # TODO: What if a file fails to rename?
961
    return [backend.JobQueueRename(old, new) for old, new in params[0]]
962

    
963
  @staticmethod
964
  @_RequireJobQueueLock
965
  def perspective_jobqueue_set_drain_flag(params):
966
    """Set job queue's drain flag.
967

968
    """
969
    (flag, ) = params
970

    
971
    return jstore.SetDrainFlag(flag)
972

    
973
  # hypervisor ---------------
974

    
975
  @staticmethod
976
  def perspective_hypervisor_validate_params(params):
977
    """Validate the hypervisor parameters.
978

979
    """
980
    (hvname, hvparams) = params
981
    return backend.ValidateHVParams(hvname, hvparams)
982

    
983
  # Crypto
984

    
985
  @staticmethod
986
  def perspective_x509_cert_create(params):
987
    """Creates a new X509 certificate for SSL/TLS.
988

989
    """
990
    (validity, ) = params
991
    return backend.CreateX509Certificate(validity)
992

    
993
  @staticmethod
994
  def perspective_x509_cert_remove(params):
995
    """Removes a X509 certificate.
996

997
    """
998
    (name, ) = params
999
    return backend.RemoveX509Certificate(name)
1000

    
1001
  # Import and export
1002

    
1003
  @staticmethod
1004
  def perspective_import_start(params):
1005
    """Starts an import daemon.
1006

1007
    """
1008
    (opts_s, instance, component, (dest, dest_args)) = params
1009

    
1010
    opts = objects.ImportExportOptions.FromDict(opts_s)
1011

    
1012
    return backend.StartImportExportDaemon(constants.IEM_IMPORT, opts,
1013
                                           None, None,
1014
                                           objects.Instance.FromDict(instance),
1015
                                           component, dest,
1016
                                           _DecodeImportExportIO(dest,
1017
                                                                 dest_args))
1018

    
1019
  @staticmethod
1020
  def perspective_export_start(params):
1021
    """Starts an export daemon.
1022

1023
    """
1024
    (opts_s, host, port, instance, component, (source, source_args)) = params
1025

    
1026
    opts = objects.ImportExportOptions.FromDict(opts_s)
1027

    
1028
    return backend.StartImportExportDaemon(constants.IEM_EXPORT, opts,
1029
                                           host, port,
1030
                                           objects.Instance.FromDict(instance),
1031
                                           component, source,
1032
                                           _DecodeImportExportIO(source,
1033
                                                                 source_args))
1034

    
1035
  @staticmethod
1036
  def perspective_impexp_status(params):
1037
    """Retrieves the status of an import or export daemon.
1038

1039
    """
1040
    return backend.GetImportExportStatus(params[0])
1041

    
1042
  @staticmethod
1043
  def perspective_impexp_abort(params):
1044
    """Aborts an import or export.
1045

1046
    """
1047
    return backend.AbortImportExport(params[0])
1048

    
1049
  @staticmethod
1050
  def perspective_impexp_cleanup(params):
1051
    """Cleans up after an import or export.
1052

1053
    """
1054
    return backend.CleanupImportExport(params[0])
1055

    
1056

    
1057
def CheckNoded(_, args):
1058
  """Initial checks whether to run or exit with a failure.
1059

1060
  """
1061
  if args: # noded doesn't take any arguments
1062
    print >> sys.stderr, ("Usage: %s [-f] [-d] [-p port] [-b ADDRESS]" %
1063
                          sys.argv[0])
1064
    sys.exit(constants.EXIT_FAILURE)
1065
  try:
1066
    codecs.lookup("string-escape")
1067
  except LookupError:
1068
    print >> sys.stderr, ("Can't load the string-escape code which is part"
1069
                          " of the Python installation. Is your installation"
1070
                          " complete/correct? Aborting.")
1071
    sys.exit(constants.EXIT_FAILURE)
1072

    
1073

    
1074
def PrepNoded(options, _):
1075
  """Preparation node daemon function, executed with the PID file held.
1076

1077
  """
1078
  if options.mlock:
1079
    request_executor_class = MlockallRequestExecutor
1080
    try:
1081
      utils.Mlockall()
1082
    except errors.NoCtypesError:
1083
      logging.warning("Cannot set memory lock, ctypes module not found")
1084
      request_executor_class = http.server.HttpServerRequestExecutor
1085
  else:
1086
    request_executor_class = http.server.HttpServerRequestExecutor
1087

    
1088
  # Read SSL certificate
1089
  if options.ssl:
1090
    ssl_params = http.HttpSslParams(ssl_key_path=options.ssl_key,
1091
                                    ssl_cert_path=options.ssl_cert)
1092
  else:
1093
    ssl_params = None
1094

    
1095
  err = _PrepareQueueLock()
1096
  if err is not None:
1097
    # this might be some kind of file-system/permission error; while
1098
    # this breaks the job queue functionality, we shouldn't prevent
1099
    # startup of the whole node daemon because of this
1100
    logging.critical("Can't init/verify the queue, proceeding anyway: %s", err)
1101

    
1102
  handler = NodeRequestHandler()
1103

    
1104
  mainloop = daemon.Mainloop()
1105
  server = \
1106
    http.server.HttpServer(mainloop, options.bind_address, options.port,
1107
                           handler, ssl_params=ssl_params, ssl_verify_peer=True,
1108
                           request_executor_class=request_executor_class)
1109
  server.Start()
1110

    
1111
  return (mainloop, server)
1112

    
1113

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

1117
  """
1118
  (mainloop, server) = prep_data
1119
  try:
1120
    mainloop.Run()
1121
  finally:
1122
    server.Stop()
1123

    
1124

    
1125
def Main():
1126
  """Main function for the node daemon.
1127

1128
  """
1129
  parser = OptionParser(description="Ganeti node daemon",
1130
                        usage="%prog [-f] [-d] [-p port] [-b ADDRESS]",
1131
                        version="%%prog (ganeti) %s" %
1132
                        constants.RELEASE_VERSION)
1133
  parser.add_option("--no-mlock", dest="mlock",
1134
                    help="Do not mlock the node memory in ram",
1135
                    default=True, action="store_false")
1136

    
1137
  daemon.GenericMain(constants.NODED, parser, CheckNoded, PrepNoded, ExecNoded,
1138
                     default_ssl_cert=pathutils.NODED_CERT_FILE,
1139
                     default_ssl_key=pathutils.NODED_CERT_FILE,
1140
                     console_logging=True)