Statistics
| Branch: | Tag: | Revision:

root / lib / rapi / client.py @ 591e5103

History | View | Annotate | Download (32.5 kB)

1
#
2
#
3

    
4
# Copyright (C) 2010 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 RAPI client."""
23

    
24
# No Ganeti-specific modules should be imported. The RAPI client is supposed to
25
# be standalone.
26

    
27
import httplib
28
import urllib2
29
import logging
30
import simplejson
31
import socket
32
import urllib
33
import OpenSSL
34
import distutils.version
35

    
36

    
37
GANETI_RAPI_PORT = 5080
38
GANETI_RAPI_VERSION = 2
39

    
40
HTTP_DELETE = "DELETE"
41
HTTP_GET = "GET"
42
HTTP_PUT = "PUT"
43
HTTP_POST = "POST"
44
HTTP_OK = 200
45
HTTP_NOT_FOUND = 404
46
HTTP_APP_JSON = "application/json"
47

    
48
REPLACE_DISK_PRI = "replace_on_primary"
49
REPLACE_DISK_SECONDARY = "replace_on_secondary"
50
REPLACE_DISK_CHG = "replace_new_secondary"
51
REPLACE_DISK_AUTO = "replace_auto"
52

    
53
NODE_ROLE_DRAINED = "drained"
54
NODE_ROLE_MASTER_CANDIATE = "master-candidate"
55
NODE_ROLE_MASTER = "master"
56
NODE_ROLE_OFFLINE = "offline"
57
NODE_ROLE_REGULAR = "regular"
58

    
59
# Internal constants
60
_REQ_DATA_VERSION_FIELD = "__version__"
61
_INST_CREATE_REQV1 = "instance-create-reqv1"
62

    
63

    
64
class Error(Exception):
65
  """Base error class for this module.
66

67
  """
68
  pass
69

    
70

    
71
class CertificateError(Error):
72
  """Raised when a problem is found with the SSL certificate.
73

74
  """
75
  pass
76

    
77

    
78
class GanetiApiError(Error):
79
  """Generic error raised from Ganeti API.
80

81
  """
82
  def __init__(self, msg, code=None):
83
    Error.__init__(self, msg)
84
    self.code = code
85

    
86

    
87
def FormatX509Name(x509_name):
88
  """Formats an X509 name.
89

90
  @type x509_name: OpenSSL.crypto.X509Name
91

92
  """
93
  try:
94
    # Only supported in pyOpenSSL 0.7 and above
95
    get_components_fn = x509_name.get_components
96
  except AttributeError:
97
    return repr(x509_name)
98
  else:
99
    return "".join("/%s=%s" % (name, value)
100
                   for name, value in get_components_fn())
101

    
102

    
103
class CertAuthorityVerify:
104
  """Certificate verificator for SSL context.
105

106
  Configures SSL context to verify server's certificate.
107

108
  """
109
  _CAPATH_MINVERSION = "0.9"
110
  _DEFVFYPATHS_MINVERSION = "0.9"
111

    
112
  _PYOPENSSL_VERSION = OpenSSL.__version__
113
  _PARSED_PYOPENSSL_VERSION = distutils.version.LooseVersion(_PYOPENSSL_VERSION)
114

    
115
  _SUPPORT_CAPATH = (_PARSED_PYOPENSSL_VERSION >= _CAPATH_MINVERSION)
116
  _SUPPORT_DEFVFYPATHS = (_PARSED_PYOPENSSL_VERSION >= _DEFVFYPATHS_MINVERSION)
117

    
118
  def __init__(self, cafile=None, capath=None, use_default_verify_paths=False):
119
    """Initializes this class.
120

121
    @type cafile: string
122
    @param cafile: In which file we can find the certificates
123
    @type capath: string
124
    @param capath: In which directory we can find the certificates
125
    @type use_default_verify_paths: bool
126
    @param use_default_verify_paths: Whether the platform provided CA
127
                                     certificates are to be used for
128
                                     verification purposes
129

130
    """
131
    self._cafile = cafile
132
    self._capath = capath
133
    self._use_default_verify_paths = use_default_verify_paths
134

    
135
    if self._capath is not None and not self._SUPPORT_CAPATH:
136
      raise Error(("PyOpenSSL %s has no support for a CA directory,"
137
                   " version %s or above is required") %
138
                  (self._PYOPENSSL_VERSION, self._CAPATH_MINVERSION))
139

    
140
    if self._use_default_verify_paths and not self._SUPPORT_DEFVFYPATHS:
141
      raise Error(("PyOpenSSL %s has no support for using default verification"
142
                   " paths, version %s or above is required") %
143
                  (self._PYOPENSSL_VERSION, self._DEFVFYPATHS_MINVERSION))
144

    
145
  @staticmethod
146
  def _VerifySslCertCb(logger, _, cert, errnum, errdepth, ok):
147
    """Callback for SSL certificate verification.
148

149
    @param logger: Logging object
150

151
    """
152
    if ok:
153
      log_fn = logger.debug
154
    else:
155
      log_fn = logger.error
156

    
157
    log_fn("Verifying SSL certificate at depth %s, subject '%s', issuer '%s'",
158
           errdepth, FormatX509Name(cert.get_subject()),
159
           FormatX509Name(cert.get_issuer()))
160

    
161
    if not ok:
162
      try:
163
        # Only supported in pyOpenSSL 0.7 and above
164
        # pylint: disable-msg=E1101
165
        fn = OpenSSL.crypto.X509_verify_cert_error_string
166
      except AttributeError:
167
        errmsg = ""
168
      else:
169
        errmsg = ":%s" % fn(errnum)
170

    
171
      logger.error("verify error:num=%s%s", errnum, errmsg)
172

    
173
    return ok
174

    
175
  def __call__(self, ctx, logger):
176
    """Configures an SSL context to verify certificates.
177

178
    @type ctx: OpenSSL.SSL.Context
179
    @param ctx: SSL context
180

181
    """
182
    if self._use_default_verify_paths:
183
      ctx.set_default_verify_paths()
184

    
185
    if self._cafile or self._capath:
186
      if self._SUPPORT_CAPATH:
187
        ctx.load_verify_locations(self._cafile, self._capath)
188
      else:
189
        ctx.load_verify_locations(self._cafile)
190

    
191
    ctx.set_verify(OpenSSL.SSL.VERIFY_PEER,
192
                   lambda conn, cert, errnum, errdepth, ok: \
193
                     self._VerifySslCertCb(logger, conn, cert,
194
                                           errnum, errdepth, ok))
195

    
196

    
197
class _HTTPSConnectionOpenSSL(httplib.HTTPSConnection):
198
  """HTTPS Connection handler that verifies the SSL certificate.
199

200
  """
201
  def __init__(self, *args, **kwargs):
202
    """Initializes this class.
203

204
    """
205
    httplib.HTTPSConnection.__init__(self, *args, **kwargs)
206
    self._logger = None
207
    self._config_ssl_verification = None
208

    
209
  def Setup(self, logger, config_ssl_verification):
210
    """Sets the SSL verification config function.
211

212
    @param logger: Logging object
213
    @type config_ssl_verification: callable
214

215
    """
216
    assert self._logger is None
217
    assert self._config_ssl_verification is None
218

    
219
    self._logger = logger
220
    self._config_ssl_verification = config_ssl_verification
221

    
222
  def connect(self):
223
    """Connect to the server specified when the object was created.
224

225
    This ensures that SSL certificates are verified.
226

227
    """
228
    sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
229

    
230
    ctx = OpenSSL.SSL.Context(OpenSSL.SSL.TLSv1_METHOD)
231
    ctx.set_options(OpenSSL.SSL.OP_NO_SSLv2)
232

    
233
    if self._config_ssl_verification:
234
      self._config_ssl_verification(ctx, self._logger)
235

    
236
    ssl = OpenSSL.SSL.Connection(ctx, sock)
237
    ssl.connect((self.host, self.port))
238

    
239
    self.sock = httplib.FakeSocket(sock, ssl)
240

    
241

    
242
class _HTTPSHandler(urllib2.HTTPSHandler):
243
  def __init__(self, logger, config_ssl_verification):
244
    """Initializes this class.
245

246
    @param logger: Logging object
247
    @type config_ssl_verification: callable
248
    @param config_ssl_verification: Function to configure SSL context for
249
                                    certificate verification
250

251
    """
252
    urllib2.HTTPSHandler.__init__(self)
253
    self._logger = logger
254
    self._config_ssl_verification = config_ssl_verification
255

    
256
  def _CreateHttpsConnection(self, *args, **kwargs):
257
    """Wrapper around L{_HTTPSConnectionOpenSSL} to add SSL verification.
258

259
    This wrapper is necessary provide a compatible API to urllib2.
260

261
    """
262
    conn = _HTTPSConnectionOpenSSL(*args, **kwargs)
263
    conn.Setup(self._logger, self._config_ssl_verification)
264
    return conn
265

    
266
  def https_open(self, req):
267
    """Creates HTTPS connection.
268

269
    Called by urllib2.
270

271
    """
272
    return self.do_open(self._CreateHttpsConnection, req)
273

    
274

    
275
class _RapiRequest(urllib2.Request):
276
  def __init__(self, method, url, headers, data):
277
    """Initializes this class.
278

279
    """
280
    urllib2.Request.__init__(self, url, data=data, headers=headers)
281
    self._method = method
282

    
283
  def get_method(self):
284
    """Returns the HTTP request method.
285

286
    """
287
    return self._method
288

    
289

    
290
class GanetiRapiClient(object):
291
  """Ganeti RAPI client.
292

293
  """
294
  USER_AGENT = "Ganeti RAPI Client"
295
  _json_encoder = simplejson.JSONEncoder(sort_keys=True)
296

    
297
  def __init__(self, host, port=GANETI_RAPI_PORT,
298
               username=None, password=None,
299
               config_ssl_verification=None, ignore_proxy=False,
300
               logger=logging):
301
    """Constructor.
302

303
    @type host: string
304
    @param host: the ganeti cluster master to interact with
305
    @type port: int
306
    @param port: the port on which the RAPI is running (default is 5080)
307
    @type username: string
308
    @param username: the username to connect with
309
    @type password: string
310
    @param password: the password to connect with
311
    @type config_ssl_verification: callable
312
    @param config_ssl_verification: Function to configure SSL context for
313
                                    certificate verification
314
    @type ignore_proxy: bool
315
    @param ignore_proxy: Whether to ignore proxy settings
316
    @param logger: Logging object
317

318
    """
319
    self._host = host
320
    self._port = port
321
    self._logger = logger
322

    
323
    self._base_url = "https://%s:%s" % (host, port)
324

    
325
    handlers = [_HTTPSHandler(self._logger, config_ssl_verification)]
326

    
327
    if username is not None:
328
      pwmgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
329
      pwmgr.add_password(None, self._base_url, username, password)
330
      handlers.append(urllib2.HTTPBasicAuthHandler(pwmgr))
331
    elif password:
332
      raise Error("Specified password without username")
333

    
334
    if ignore_proxy:
335
      handlers.append(urllib2.ProxyHandler({}))
336

    
337
    self._http = urllib2.build_opener(*handlers) # pylint: disable-msg=W0142
338

    
339
    self._headers = {
340
      "Accept": HTTP_APP_JSON,
341
      "Content-type": HTTP_APP_JSON,
342
      "User-Agent": self.USER_AGENT,
343
      }
344

    
345
  @staticmethod
346
  def _EncodeQuery(query):
347
    """Encode query values for RAPI URL.
348

349
    @type query: list of two-tuples
350
    @param query: Query arguments
351
    @rtype: list
352
    @return: Query list with encoded values
353

354
    """
355
    result = []
356

    
357
    for name, value in query:
358
      if value is None:
359
        result.append((name, ""))
360

    
361
      elif isinstance(value, bool):
362
        # Boolean values must be encoded as 0 or 1
363
        result.append((name, int(value)))
364

    
365
      elif isinstance(value, (list, tuple, dict)):
366
        raise ValueError("Invalid query data type %r" % type(value).__name__)
367

    
368
      else:
369
        result.append((name, value))
370

    
371
    return result
372

    
373
  def _SendRequest(self, method, path, query, content):
374
    """Sends an HTTP request.
375

376
    This constructs a full URL, encodes and decodes HTTP bodies, and
377
    handles invalid responses in a pythonic way.
378

379
    @type method: string
380
    @param method: HTTP method to use
381
    @type path: string
382
    @param path: HTTP URL path
383
    @type query: list of two-tuples
384
    @param query: query arguments to pass to urllib.urlencode
385
    @type content: str or None
386
    @param content: HTTP body content
387

388
    @rtype: str
389
    @return: JSON-Decoded response
390

391
    @raises CertificateError: If an invalid SSL certificate is found
392
    @raises GanetiApiError: If an invalid response is returned
393

394
    """
395
    assert path.startswith("/")
396

    
397
    if content:
398
      encoded_content = self._json_encoder.encode(content)
399
    else:
400
      encoded_content = None
401

    
402
    # Build URL
403
    urlparts = [self._base_url, path]
404
    if query:
405
      urlparts.append("?")
406
      urlparts.append(urllib.urlencode(self._EncodeQuery(query)))
407

    
408
    url = "".join(urlparts)
409

    
410
    self._logger.debug("Sending request %s %s to %s:%s"
411
                       " (headers=%r, content=%r)",
412
                       method, url, self._host, self._port, self._headers,
413
                       encoded_content)
414

    
415
    req = _RapiRequest(method, url, self._headers, encoded_content)
416

    
417
    try:
418
      resp = self._http.open(req)
419
      encoded_response_content = resp.read()
420
    except (OpenSSL.SSL.Error, OpenSSL.crypto.Error), err:
421
      raise CertificateError("SSL issue: %s (%r)" % (err, err))
422

    
423
    if encoded_response_content:
424
      response_content = simplejson.loads(encoded_response_content)
425
    else:
426
      response_content = None
427

    
428
    # TODO: Are there other status codes that are valid? (redirect?)
429
    if resp.code != HTTP_OK:
430
      if isinstance(response_content, dict):
431
        msg = ("%s %s: %s" %
432
               (response_content["code"],
433
                response_content["message"],
434
                response_content["explain"]))
435
      else:
436
        msg = str(response_content)
437

    
438
      raise GanetiApiError(msg, code=resp.code)
439

    
440
    return response_content
441

    
442
  def GetVersion(self):
443
    """Gets the Remote API version running on the cluster.
444

445
    @rtype: int
446
    @return: Ganeti Remote API version
447

448
    """
449
    return self._SendRequest(HTTP_GET, "/version", None, None)
450

    
451
  def GetFeatures(self):
452
    """Gets the list of optional features supported by RAPI server.
453

454
    @rtype: list
455
    @return: List of optional features
456

457
    """
458
    try:
459
      return self._SendRequest(HTTP_GET, "/%s/features" % GANETI_RAPI_VERSION,
460
                               None, None)
461
    except GanetiApiError, err:
462
      # Older RAPI servers don't support this resource
463
      if err.code == HTTP_NOT_FOUND:
464
        return []
465

    
466
      raise
467

    
468
  def GetOperatingSystems(self):
469
    """Gets the Operating Systems running in the Ganeti cluster.
470

471
    @rtype: list of str
472
    @return: operating systems
473

474
    """
475
    return self._SendRequest(HTTP_GET, "/%s/os" % GANETI_RAPI_VERSION,
476
                             None, None)
477

    
478
  def GetInfo(self):
479
    """Gets info about the cluster.
480

481
    @rtype: dict
482
    @return: information about the cluster
483

484
    """
485
    return self._SendRequest(HTTP_GET, "/%s/info" % GANETI_RAPI_VERSION,
486
                             None, None)
487

    
488
  def GetClusterTags(self):
489
    """Gets the cluster tags.
490

491
    @rtype: list of str
492
    @return: cluster tags
493

494
    """
495
    return self._SendRequest(HTTP_GET, "/%s/tags" % GANETI_RAPI_VERSION,
496
                             None, None)
497

    
498
  def AddClusterTags(self, tags, dry_run=False):
499
    """Adds tags to the cluster.
500

501
    @type tags: list of str
502
    @param tags: tags to add to the cluster
503
    @type dry_run: bool
504
    @param dry_run: whether to perform a dry run
505

506
    @rtype: int
507
    @return: job id
508

509
    """
510
    query = [("tag", t) for t in tags]
511
    if dry_run:
512
      query.append(("dry-run", 1))
513

    
514
    return self._SendRequest(HTTP_PUT, "/%s/tags" % GANETI_RAPI_VERSION,
515
                             query, None)
516

    
517
  def DeleteClusterTags(self, tags, dry_run=False):
518
    """Deletes tags from the cluster.
519

520
    @type tags: list of str
521
    @param tags: tags to delete
522
    @type dry_run: bool
523
    @param dry_run: whether to perform a dry run
524

525
    """
526
    query = [("tag", t) for t in tags]
527
    if dry_run:
528
      query.append(("dry-run", 1))
529

    
530
    return self._SendRequest(HTTP_DELETE, "/%s/tags" % GANETI_RAPI_VERSION,
531
                             query, None)
532

    
533
  def GetInstances(self, bulk=False):
534
    """Gets information about instances on the cluster.
535

536
    @type bulk: bool
537
    @param bulk: whether to return all information about all instances
538

539
    @rtype: list of dict or list of str
540
    @return: if bulk is True, info about the instances, else a list of instances
541

542
    """
543
    query = []
544
    if bulk:
545
      query.append(("bulk", 1))
546

    
547
    instances = self._SendRequest(HTTP_GET,
548
                                  "/%s/instances" % GANETI_RAPI_VERSION,
549
                                  query, None)
550
    if bulk:
551
      return instances
552
    else:
553
      return [i["id"] for i in instances]
554

    
555
  def GetInstance(self, instance):
556
    """Gets information about an instance.
557

558
    @type instance: str
559
    @param instance: instance whose info to return
560

561
    @rtype: dict
562
    @return: info about the instance
563

564
    """
565
    return self._SendRequest(HTTP_GET,
566
                             ("/%s/instances/%s" %
567
                              (GANETI_RAPI_VERSION, instance)), None, None)
568

    
569
  def GetInstanceInfo(self, instance, static=None):
570
    """Gets information about an instance.
571

572
    @type instance: string
573
    @param instance: Instance name
574
    @rtype: string
575
    @return: Job ID
576

577
    """
578
    if static is not None:
579
      query = [("static", static)]
580
    else:
581
      query = None
582

    
583
    return self._SendRequest(HTTP_GET,
584
                             ("/%s/instances/%s/info" %
585
                              (GANETI_RAPI_VERSION, instance)), query, None)
586

    
587
  def CreateInstance(self, mode, name, disk_template, disks, nics,
588
                     **kwargs):
589
    """Creates a new instance.
590

591
    More details for parameters can be found in the RAPI documentation.
592

593
    @type mode: string
594
    @param mode: Instance creation mode
595
    @type name: string
596
    @param name: Hostname of the instance to create
597
    @type disk_template: string
598
    @param disk_template: Disk template for instance (e.g. plain, diskless,
599
                          file, or drbd)
600
    @type disks: list of dicts
601
    @param disks: List of disk definitions
602
    @type nics: list of dicts
603
    @param nics: List of NIC definitions
604
    @type dry_run: bool
605
    @keyword dry_run: whether to perform a dry run
606

607
    @rtype: int
608
    @return: job id
609

610
    """
611
    query = []
612

    
613
    if kwargs.get("dry_run"):
614
      query.append(("dry-run", 1))
615

    
616
    if _INST_CREATE_REQV1 in self.GetFeatures():
617
      # All required fields for request data version 1
618
      body = {
619
        _REQ_DATA_VERSION_FIELD: 1,
620
        "mode": mode,
621
        "name": name,
622
        "disk_template": disk_template,
623
        "disks": disks,
624
        "nics": nics,
625
        }
626

    
627
      conflicts = set(kwargs.iterkeys()) & set(body.iterkeys())
628
      if conflicts:
629
        raise GanetiApiError("Required fields can not be specified as"
630
                             " keywords: %s" % ", ".join(conflicts))
631

    
632
      body.update((key, value) for key, value in kwargs.iteritems()
633
                  if key != "dry_run")
634
    else:
635
      # TODO: Implement instance creation request data version 0
636
      # When implementing version 0, care should be taken to refuse unknown
637
      # parameters and invalid values. The interface of this function must stay
638
      # exactly the same for version 0 and 1 (e.g. they aren't allowed to
639
      # require different data types).
640
      raise NotImplementedError("Support for instance creation request data"
641
                                " version 0 is not yet implemented")
642

    
643
    return self._SendRequest(HTTP_POST, "/%s/instances" % GANETI_RAPI_VERSION,
644
                             query, body)
645

    
646
  def DeleteInstance(self, instance, dry_run=False):
647
    """Deletes an instance.
648

649
    @type instance: str
650
    @param instance: the instance to delete
651

652
    @rtype: int
653
    @return: job id
654

655
    """
656
    query = []
657
    if dry_run:
658
      query.append(("dry-run", 1))
659

    
660
    return self._SendRequest(HTTP_DELETE,
661
                             ("/%s/instances/%s" %
662
                              (GANETI_RAPI_VERSION, instance)), query, None)
663

    
664
  def GetInstanceTags(self, instance):
665
    """Gets tags for an instance.
666

667
    @type instance: str
668
    @param instance: instance whose tags to return
669

670
    @rtype: list of str
671
    @return: tags for the instance
672

673
    """
674
    return self._SendRequest(HTTP_GET,
675
                             ("/%s/instances/%s/tags" %
676
                              (GANETI_RAPI_VERSION, instance)), None, None)
677

    
678
  def AddInstanceTags(self, instance, tags, dry_run=False):
679
    """Adds tags to an instance.
680

681
    @type instance: str
682
    @param instance: instance to add tags to
683
    @type tags: list of str
684
    @param tags: tags to add to the instance
685
    @type dry_run: bool
686
    @param dry_run: whether to perform a dry run
687

688
    @rtype: int
689
    @return: job id
690

691
    """
692
    query = [("tag", t) for t in tags]
693
    if dry_run:
694
      query.append(("dry-run", 1))
695

    
696
    return self._SendRequest(HTTP_PUT,
697
                             ("/%s/instances/%s/tags" %
698
                              (GANETI_RAPI_VERSION, instance)), query, None)
699

    
700
  def DeleteInstanceTags(self, instance, tags, dry_run=False):
701
    """Deletes tags from an instance.
702

703
    @type instance: str
704
    @param instance: instance to delete tags from
705
    @type tags: list of str
706
    @param tags: tags to delete
707
    @type dry_run: bool
708
    @param dry_run: whether to perform a dry run
709

710
    """
711
    query = [("tag", t) for t in tags]
712
    if dry_run:
713
      query.append(("dry-run", 1))
714

    
715
    return self._SendRequest(HTTP_DELETE,
716
                             ("/%s/instances/%s/tags" %
717
                              (GANETI_RAPI_VERSION, instance)), query, None)
718

    
719
  def RebootInstance(self, instance, reboot_type=None, ignore_secondaries=None,
720
                     dry_run=False):
721
    """Reboots an instance.
722

723
    @type instance: str
724
    @param instance: instance to rebot
725
    @type reboot_type: str
726
    @param reboot_type: one of: hard, soft, full
727
    @type ignore_secondaries: bool
728
    @param ignore_secondaries: if True, ignores errors for the secondary node
729
        while re-assembling disks (in hard-reboot mode only)
730
    @type dry_run: bool
731
    @param dry_run: whether to perform a dry run
732

733
    """
734
    query = []
735
    if reboot_type:
736
      query.append(("type", reboot_type))
737
    if ignore_secondaries is not None:
738
      query.append(("ignore_secondaries", ignore_secondaries))
739
    if dry_run:
740
      query.append(("dry-run", 1))
741

    
742
    return self._SendRequest(HTTP_POST,
743
                             ("/%s/instances/%s/reboot" %
744
                              (GANETI_RAPI_VERSION, instance)), query, None)
745

    
746
  def ShutdownInstance(self, instance, dry_run=False):
747
    """Shuts down an instance.
748

749
    @type instance: str
750
    @param instance: the instance to shut down
751
    @type dry_run: bool
752
    @param dry_run: whether to perform a dry run
753

754
    """
755
    query = []
756
    if dry_run:
757
      query.append(("dry-run", 1))
758

    
759
    return self._SendRequest(HTTP_PUT,
760
                             ("/%s/instances/%s/shutdown" %
761
                              (GANETI_RAPI_VERSION, instance)), query, None)
762

    
763
  def StartupInstance(self, instance, dry_run=False):
764
    """Starts up an instance.
765

766
    @type instance: str
767
    @param instance: the instance to start up
768
    @type dry_run: bool
769
    @param dry_run: whether to perform a dry run
770

771
    """
772
    query = []
773
    if dry_run:
774
      query.append(("dry-run", 1))
775

    
776
    return self._SendRequest(HTTP_PUT,
777
                             ("/%s/instances/%s/startup" %
778
                              (GANETI_RAPI_VERSION, instance)), query, None)
779

    
780
  def ReinstallInstance(self, instance, os, no_startup=False):
781
    """Reinstalls an instance.
782

783
    @type instance: str
784
    @param instance: the instance to reinstall
785
    @type os: str
786
    @param os: the os to reinstall
787
    @type no_startup: bool
788
    @param no_startup: whether to start the instance automatically
789

790
    """
791
    query = [("os", os)]
792
    if no_startup:
793
      query.append(("nostartup", 1))
794
    return self._SendRequest(HTTP_POST,
795
                             ("/%s/instances/%s/reinstall" %
796
                              (GANETI_RAPI_VERSION, instance)), query, None)
797

    
798
  def ReplaceInstanceDisks(self, instance, disks=None, mode=REPLACE_DISK_AUTO,
799
                           remote_node=None, iallocator=None, dry_run=False):
800
    """Replaces disks on an instance.
801

802
    @type instance: str
803
    @param instance: instance whose disks to replace
804
    @type disks: list of ints
805
    @param disks: Indexes of disks to replace
806
    @type mode: str
807
    @param mode: replacement mode to use (defaults to replace_auto)
808
    @type remote_node: str or None
809
    @param remote_node: new secondary node to use (for use with
810
        replace_new_secondary mode)
811
    @type iallocator: str or None
812
    @param iallocator: instance allocator plugin to use (for use with
813
                       replace_auto mode)
814
    @type dry_run: bool
815
    @param dry_run: whether to perform a dry run
816

817
    @rtype: int
818
    @return: job id
819

820
    """
821
    query = [
822
      ("mode", mode),
823
      ]
824

    
825
    if disks:
826
      query.append(("disks", ",".join(str(idx) for idx in disks)))
827

    
828
    if remote_node:
829
      query.append(("remote_node", remote_node))
830

    
831
    if iallocator:
832
      query.append(("iallocator", iallocator))
833

    
834
    if dry_run:
835
      query.append(("dry-run", 1))
836

    
837
    return self._SendRequest(HTTP_POST,
838
                             ("/%s/instances/%s/replace-disks" %
839
                              (GANETI_RAPI_VERSION, instance)), query, None)
840

    
841
  def GetJobs(self):
842
    """Gets all jobs for the cluster.
843

844
    @rtype: list of int
845
    @return: job ids for the cluster
846

847
    """
848
    return [int(j["id"])
849
            for j in self._SendRequest(HTTP_GET,
850
                                       "/%s/jobs" % GANETI_RAPI_VERSION,
851
                                       None, None)]
852

    
853
  def GetJobStatus(self, job_id):
854
    """Gets the status of a job.
855

856
    @type job_id: int
857
    @param job_id: job id whose status to query
858

859
    @rtype: dict
860
    @return: job status
861

862
    """
863
    return self._SendRequest(HTTP_GET,
864
                             "/%s/jobs/%s" % (GANETI_RAPI_VERSION, job_id),
865
                             None, None)
866

    
867
  def WaitForJobChange(self, job_id, fields, prev_job_info, prev_log_serial):
868
    """Waits for job changes.
869

870
    @type job_id: int
871
    @param job_id: Job ID for which to wait
872

873
    """
874
    body = {
875
      "fields": fields,
876
      "previous_job_info": prev_job_info,
877
      "previous_log_serial": prev_log_serial,
878
      }
879

    
880
    return self._SendRequest(HTTP_GET,
881
                             "/%s/jobs/%s/wait" % (GANETI_RAPI_VERSION, job_id),
882
                             None, body)
883

    
884
  def CancelJob(self, job_id, dry_run=False):
885
    """Cancels a job.
886

887
    @type job_id: int
888
    @param job_id: id of the job to delete
889
    @type dry_run: bool
890
    @param dry_run: whether to perform a dry run
891

892
    """
893
    query = []
894
    if dry_run:
895
      query.append(("dry-run", 1))
896

    
897
    return self._SendRequest(HTTP_DELETE,
898
                             "/%s/jobs/%s" % (GANETI_RAPI_VERSION, job_id),
899
                             query, None)
900

    
901
  def GetNodes(self, bulk=False):
902
    """Gets all nodes in the cluster.
903

904
    @type bulk: bool
905
    @param bulk: whether to return all information about all instances
906

907
    @rtype: list of dict or str
908
    @return: if bulk is true, info about nodes in the cluster,
909
        else list of nodes in the cluster
910

911
    """
912
    query = []
913
    if bulk:
914
      query.append(("bulk", 1))
915

    
916
    nodes = self._SendRequest(HTTP_GET, "/%s/nodes" % GANETI_RAPI_VERSION,
917
                              query, None)
918
    if bulk:
919
      return nodes
920
    else:
921
      return [n["id"] for n in nodes]
922

    
923
  def GetNode(self, node):
924
    """Gets information about a node.
925

926
    @type node: str
927
    @param node: node whose info to return
928

929
    @rtype: dict
930
    @return: info about the node
931

932
    """
933
    return self._SendRequest(HTTP_GET,
934
                             "/%s/nodes/%s" % (GANETI_RAPI_VERSION, node),
935
                             None, None)
936

    
937
  def EvacuateNode(self, node, iallocator=None, remote_node=None,
938
                   dry_run=False):
939
    """Evacuates instances from a Ganeti node.
940

941
    @type node: str
942
    @param node: node to evacuate
943
    @type iallocator: str or None
944
    @param iallocator: instance allocator to use
945
    @type remote_node: str
946
    @param remote_node: node to evaucate to
947
    @type dry_run: bool
948
    @param dry_run: whether to perform a dry run
949

950
    @rtype: int
951
    @return: job id
952

953
    @raises GanetiApiError: if an iallocator and remote_node are both specified
954

955
    """
956
    if iallocator and remote_node:
957
      raise GanetiApiError("Only one of iallocator or remote_node can be used")
958

    
959
    query = []
960
    if iallocator:
961
      query.append(("iallocator", iallocator))
962
    if remote_node:
963
      query.append(("remote_node", remote_node))
964
    if dry_run:
965
      query.append(("dry-run", 1))
966

    
967
    return self._SendRequest(HTTP_POST,
968
                             ("/%s/nodes/%s/evacuate" %
969
                              (GANETI_RAPI_VERSION, node)), query, None)
970

    
971
  def MigrateNode(self, node, live=True, dry_run=False):
972
    """Migrates all primary instances from a node.
973

974
    @type node: str
975
    @param node: node to migrate
976
    @type live: bool
977
    @param live: whether to use live migration
978
    @type dry_run: bool
979
    @param dry_run: whether to perform a dry run
980

981
    @rtype: int
982
    @return: job id
983

984
    """
985
    query = []
986
    if live:
987
      query.append(("live", 1))
988
    if dry_run:
989
      query.append(("dry-run", 1))
990

    
991
    return self._SendRequest(HTTP_POST,
992
                             ("/%s/nodes/%s/migrate" %
993
                              (GANETI_RAPI_VERSION, node)), query, None)
994

    
995
  def GetNodeRole(self, node):
996
    """Gets the current role for a node.
997

998
    @type node: str
999
    @param node: node whose role to return
1000

1001
    @rtype: str
1002
    @return: the current role for a node
1003

1004
    """
1005
    return self._SendRequest(HTTP_GET,
1006
                             ("/%s/nodes/%s/role" %
1007
                              (GANETI_RAPI_VERSION, node)), None, None)
1008

    
1009
  def SetNodeRole(self, node, role, force=False):
1010
    """Sets the role for a node.
1011

1012
    @type node: str
1013
    @param node: the node whose role to set
1014
    @type role: str
1015
    @param role: the role to set for the node
1016
    @type force: bool
1017
    @param force: whether to force the role change
1018

1019
    @rtype: int
1020
    @return: job id
1021

1022
    """
1023
    query = [
1024
      ("force", force),
1025
      ]
1026

    
1027
    return self._SendRequest(HTTP_PUT,
1028
                             ("/%s/nodes/%s/role" %
1029
                              (GANETI_RAPI_VERSION, node)), query, role)
1030

    
1031
  def GetNodeStorageUnits(self, node, storage_type, output_fields):
1032
    """Gets the storage units for a node.
1033

1034
    @type node: str
1035
    @param node: the node whose storage units to return
1036
    @type storage_type: str
1037
    @param storage_type: storage type whose units to return
1038
    @type output_fields: str
1039
    @param output_fields: storage type fields to return
1040

1041
    @rtype: int
1042
    @return: job id where results can be retrieved
1043

1044
    """
1045
    query = [
1046
      ("storage_type", storage_type),
1047
      ("output_fields", output_fields),
1048
      ]
1049

    
1050
    return self._SendRequest(HTTP_GET,
1051
                             ("/%s/nodes/%s/storage" %
1052
                              (GANETI_RAPI_VERSION, node)), query, None)
1053

    
1054
  def ModifyNodeStorageUnits(self, node, storage_type, name, allocatable=None):
1055
    """Modifies parameters of storage units on the node.
1056

1057
    @type node: str
1058
    @param node: node whose storage units to modify
1059
    @type storage_type: str
1060
    @param storage_type: storage type whose units to modify
1061
    @type name: str
1062
    @param name: name of the storage unit
1063
    @type allocatable: bool or None
1064
    @param allocatable: Whether to set the "allocatable" flag on the storage
1065
                        unit (None=no modification, True=set, False=unset)
1066

1067
    @rtype: int
1068
    @return: job id
1069

1070
    """
1071
    query = [
1072
      ("storage_type", storage_type),
1073
      ("name", name),
1074
      ]
1075

    
1076
    if allocatable is not None:
1077
      query.append(("allocatable", allocatable))
1078

    
1079
    return self._SendRequest(HTTP_PUT,
1080
                             ("/%s/nodes/%s/storage/modify" %
1081
                              (GANETI_RAPI_VERSION, node)), query, None)
1082

    
1083
  def RepairNodeStorageUnits(self, node, storage_type, name):
1084
    """Repairs a storage unit on the node.
1085

1086
    @type node: str
1087
    @param node: node whose storage units to repair
1088
    @type storage_type: str
1089
    @param storage_type: storage type to repair
1090
    @type name: str
1091
    @param name: name of the storage unit to repair
1092

1093
    @rtype: int
1094
    @return: job id
1095

1096
    """
1097
    query = [
1098
      ("storage_type", storage_type),
1099
      ("name", name),
1100
      ]
1101

    
1102
    return self._SendRequest(HTTP_PUT,
1103
                             ("/%s/nodes/%s/storage/repair" %
1104
                              (GANETI_RAPI_VERSION, node)), query, None)
1105

    
1106
  def GetNodeTags(self, node):
1107
    """Gets the tags for a node.
1108

1109
    @type node: str
1110
    @param node: node whose tags to return
1111

1112
    @rtype: list of str
1113
    @return: tags for the node
1114

1115
    """
1116
    return self._SendRequest(HTTP_GET,
1117
                             ("/%s/nodes/%s/tags" %
1118
                              (GANETI_RAPI_VERSION, node)), None, None)
1119

    
1120
  def AddNodeTags(self, node, tags, dry_run=False):
1121
    """Adds tags to a node.
1122

1123
    @type node: str
1124
    @param node: node to add tags to
1125
    @type tags: list of str
1126
    @param tags: tags to add to the node
1127
    @type dry_run: bool
1128
    @param dry_run: whether to perform a dry run
1129

1130
    @rtype: int
1131
    @return: job id
1132

1133
    """
1134
    query = [("tag", t) for t in tags]
1135
    if dry_run:
1136
      query.append(("dry-run", 1))
1137

    
1138
    return self._SendRequest(HTTP_PUT,
1139
                             ("/%s/nodes/%s/tags" %
1140
                              (GANETI_RAPI_VERSION, node)), query, tags)
1141

    
1142
  def DeleteNodeTags(self, node, tags, dry_run=False):
1143
    """Delete tags from a node.
1144

1145
    @type node: str
1146
    @param node: node to remove tags from
1147
    @type tags: list of str
1148
    @param tags: tags to remove from the node
1149
    @type dry_run: bool
1150
    @param dry_run: whether to perform a dry run
1151

1152
    @rtype: int
1153
    @return: job id
1154

1155
    """
1156
    query = [("tag", t) for t in tags]
1157
    if dry_run:
1158
      query.append(("dry-run", 1))
1159

    
1160
    return self._SendRequest(HTTP_DELETE,
1161
                             ("/%s/nodes/%s/tags" %
1162
                              (GANETI_RAPI_VERSION, node)), query, None)