-
Notifications
You must be signed in to change notification settings - Fork 344
/
device.py
1505 lines (1278 loc) · 56.4 KB
/
device.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# stdlib
import os
import six
import types
import platform
import warnings
import logging
# stdlib, in support of the the 'probe' method
import socket
import datetime
import time
import sys
import json
import re
# 3rd-party packages
from lxml import etree
from ncclient import manager as netconf_ssh
import ncclient.transport.errors as NcErrors
from ncclient.transport.session import SessionListener
import ncclient.operations.errors as NcOpErrors
from ncclient.operations import RPCError
import paramiko
import jinja2
# local modules
from jnpr.junos.rpcmeta import _RpcMetaExec
from jnpr.junos import exception as EzErrors
from jnpr.junos.factcache import _FactCache
from jnpr.junos.ofacts import *
from jnpr.junos import jxml as JXML
from jnpr.junos.decorators import (
timeoutDecorator,
normalizeDecorator,
ignoreWarnDecorator,
)
from jnpr.junos.exception import JSONLoadError, ConnectError
# check for ncclient support for filter_xml. Remove these changes once ncclient
# release filter_xml/SAX parsing feature
# https://github.com/ncclient/ncclient/pull/324
from ncclient.operations.third_party.juniper.rpc import ExecuteRpc
import inspect
if sys.version_info[0] >= 3:
NCCLIENT_FILTER_XML = len(inspect.signature(ExecuteRpc.request).parameters) == 3
else:
NCCLIENT_FILTER_XML = len(inspect.getargspec(ExecuteRpc.request).args) == 3
_MODULEPATH = os.path.dirname(__file__)
logger = logging.getLogger("jnpr.junos.device")
class _MyTemplateLoader(jinja2.BaseLoader):
"""
Create a jinja2 template loader class that can be used to
load templates from all over the filesystem, but defaults
to the CWD and the 'templates' directory of the module
"""
def __init__(self):
self.paths = [".", os.path.join(_MODULEPATH, "templates")]
def get_source(self, environment, template):
def _in_path(dir):
return os.path.exists(os.path.join(dir, template))
path = list(filter(_in_path, self.paths))
if not path:
raise jinja2.TemplateNotFound(template)
path = os.path.join(path[0], template)
mtime = os.path.getmtime(path)
with open(path) as f:
# You are trying to decode an object that is already decoded.
# You have a str, there is no need to decode from UTF-8 anymore.
# open already decodes to Unicode in Python 3 if you open in text
# mode. If you want to open it as bytes, so that you can then
# decode, you need to open with mode 'rb'.
source = f.read()
return source, path, lambda: mtime == os.path.getmtime(path)
_Jinja2ldr = jinja2.Environment(loader=_MyTemplateLoader())
class _Connection(object):
ON_JUNOS = (
platform.system().upper() == "JUNOS"
or platform.release().startswith("JNPR")
or os.path.isfile("/usr/share/cevo/cevo_version")
)
# for juniper specific containers likes crpd, cmgd, cbng
# and similar entities, we will need to check the product.conf
# file for on-box implementation
if ON_JUNOS is False:
if os.path.isfile("/etc/product.conf") is True:
model_dict = {}
with open("/etc/product.conf") as f:
for line in f:
if "=" in line:
(key, val) = line.strip().split("=")
model_dict[key] = val
if "model" in model_dict and model_dict["model"] in [
"crpd",
"cbng",
"cmgd",
]:
ON_JUNOS = True
auto_probe = 0 # default is no auto-probe
# ------------------------------------------------------------------------
# property: hostname
# ------------------------------------------------------------------------
@property
def hostname(self):
"""
:returns: the host-name of the Junos device.
"""
return (
self._hostname
if (self._hostname != "localhost")
else self.facts.get("hostname")
)
# ------------------------------------------------------------------------
# property: user
# ------------------------------------------------------------------------
@property
def user(self):
"""
:returns: the login user (str) accessing the Junos device
"""
return self._auth_user
# ------------------------------------------------------------------------
# property: password
# ------------------------------------------------------------------------
@property
def password(self):
"""
:returns: ``None`` - do not provide the password
"""
return None # read-only
@password.setter
def password(self, value):
"""
Change the authentication password value. This is handy in case
the calling program needs to attempt different passwords.
"""
self._auth_password = value
# ------------------------------------------------------------------------
# property: logfile
# ------------------------------------------------------------------------
@property
def logfile(self):
"""
:returns: exsiting logfile ``file`` object.
"""
return self._logfile
@logfile.setter
def logfile(self, value):
"""
Assigns an opened file object to the device for logging
If there is an open logfile, and 'value' is ``None`` or ``False``
then close the existing file.
:param file value: An open ``file`` object.
:returns: the new logfile ``file`` object
:raises ValueError:
When **value** is not a ``file`` object
"""
# got an existing file that we need to close
if (not value) and (self._logfile is not None):
rc = self._logfile.close()
self._logfile = False
return rc
if sys.version < "3":
if not isinstance(value, file):
raise ValueError("value must be a file object")
else:
import io
if not isinstance(value, io.TextIOWrapper):
raise ValueError("value must be a file object")
self._logfile = value
return self._logfile
# ------------------------------------------------------------------------
# property: timeout
# ------------------------------------------------------------------------
@property
def timeout(self):
"""
:returns: the current RPC timeout value (int) in seconds.
"""
return self._conn.timeout
@timeout.setter
def timeout(self, value):
"""
Used to change the RPC timeout value (default=30 sec).
:param int value:
New timeout value in seconds
"""
try:
self._conn.timeout = int(value)
except (ValueError, TypeError):
raise RuntimeError(
"could not convert timeout value of %s to an " "integer" % (value)
)
# ------------------------------------------------------------------------
# property: facts
# ------------------------------------------------------------------------
@property
def ofacts(self):
"""
:returns: Device fact dictionary
"""
if self._fact_style != "old" and self._fact_style != "both":
raise RuntimeError("Old-style facts gathering is not in use!")
if self._ofacts == {} and self.connected:
self.facts_refresh()
return self._ofacts
@ofacts.setter
def ofacts(self, value):
"""read-only property"""
raise RuntimeError("facts is read-only!")
# ------------------------------------------------------------------------
# property: port
# ------------------------------------------------------------------------
@property
def port(self):
"""
:returns: the port (str) to connect to the Junos device
"""
return self._port
# ------------------------------------------------------------------------
# property: master
# ------------------------------------------------------------------------
@property
def master(self):
"""
The mastership state of the current Routing Engine.
The current Routing Engine is the RE to which the NETCONF session is
connected.
.. note::
This property is based on new-style fact gathering and the
value of currently cached facts. If there is a chance the
mastership state may have changed since the facts were cached,
then dev.facts_refresh() should be invoked prior to checking
this property. If old-style fact gathering is in use,
this property will return None.
:returns: True if the current RE is the master Routing Engine. False if
the current RE is not the master Routing Engine. None if
unable to determine the state of the current Routing Engine.
"""
master = None
# Make sure the 'current_re' fact has a value
if self.facts.get("current_re") is not None:
# Typical master case
if "master" in self.facts["current_re"]:
master = True
# Typical backup case
elif "backup" in self.facts["current_re"]:
master = False
# Some single chassis and single RE platforms don't have
# 'master' in the 'current_re' fact. It's best to check if it's a
# single chassis and single RE platform based on the
# 'RE_hw_mi' and '2RE' facts, not the 'current_re' fact.
elif (
self.facts.get("2RE") is False
and self.facts.get("RE_hw_mi") is False
and "re0" in self.facts["current_re"]
):
master = True
# Is it an SRX cluster?
# If so, the cluster's "primary" is the "master"
elif self.facts.get("srx_cluster") is True:
if "primary" in self.facts["current_re"]:
master = True
else:
master = False
else:
# Might be a GNF case.
if (
self.re_name is not None
and "gnf" in self.re_name
and "-re" in self.re_name
):
# Get the name of the GNF from re_name/
# re_name will be in the format gnfX-reY
(gnf, _) = self.re_name.split("-re", 1)
if gnf + "-master" in self.facts.get("current_re"):
master = True
elif gnf + "-backup" in self.facts.get("current_re"):
master = False
else:
# Might be a multi-chassis case where this RE is neither
# the master or the backup for the entire system. In that
# case, it's either a chassis master or a chassis backup.
for re_state in self.facts["current_re"]:
# Multi-chassis case. A chassis master/backup, but
# not the system master/backup.
if "-backup" in re_state or "-master" in re_state:
master = False
break
return master
@master.setter
def master(self, value):
"""read-only property"""
raise RuntimeError("master is read-only!")
# ------------------------------------------------------------------------
# property: uptime
# ------------------------------------------------------------------------
@property
def uptime(self):
"""
The uptime of the current Routing Engine.
The current Routing Engine is the RE to which the NETCONF session is
connected.
:returns: The number of seconds (int) since the current Routing Engine
was booted. If there is a problem gathering or parsing the
uptime information, None is returned.
:raises: May raise a specific jnpr.junos.RpcError or
jnpr.junos.ConnectError subclass if there is a problem
communicating with the device.
"""
uptime = None
rsp = self.rpc.get_system_uptime_information(normalize=True)
if rsp is not None:
element = rsp.find(".//system-booted-time/time-length")
if element is not None:
uptime_string = element.get("seconds")
if uptime_string is not None:
uptime = int(uptime_string)
return uptime
@uptime.setter
def uptime(self, value):
"""read-only property"""
raise RuntimeError("uptime is read-only!")
# ------------------------------------------------------------------------
# property: re_name
# ------------------------------------------------------------------------
@property
def re_name(self):
"""
The name of the current Routing Engine.
The current Routing Engine is the RE to which the NETCONF session is
connected.
.. note::
This property is based on new-style fact gathering. If
old-style fact gathering is in use, this property will return None.
:returns: A string containing the name of the current Routing Engine or
None if unable to determine the state of the current
Routing Engine.
"""
re_name = None
# Make sure the 'current_re' and 'hostname_info' facts have values
if (
self.facts.get("current_re") is not None
and self.facts.get("hostname_info") is not None
):
# re_name should be the intersection of the values in the
# 'current_re' fact and the keys in the 'hostname_info' fact.
intersect = set(self.facts["current_re"]) & set(
self.facts["hostname_info"].keys()
)
# intersect should usually contain a single element (the RE's
# name) if things worked correctly.
if len(intersect) == 1:
re_name = list(intersect)[0]
# If intersect contains no elements
elif len(intersect) == 0:
# Look for the first value
# in 'current_re' which contains '-re'.
for re_state in self.facts["current_re"]:
if "-re" in re_state:
re_name = re_state
break
if re_name is None:
# Still haven't figured it out, if there's only one key
# in 'hostname_info', assume that.
all_re_names = list(self.facts["hostname_info"].keys())
if len(all_re_names) == 1:
re_name = all_re_names[0]
if re_name is None:
# Still haven't figured it out. Is this a bsys?
for re_state in self.facts["current_re"]:
match = re.search(r"^re\d+$", re_state)
if match:
re_string = "bsys-" + match.group(0)
if re_string in self.facts["hostname_info"].keys():
re_name = re_string
return re_name
@re_name.setter
def re_name(self, value):
"""read-only property"""
raise RuntimeError("re_name is read-only!")
def _sshconf_lkup(self):
"""Controls the ssh connection:
If using ssh_private_key_file on MacOS Mojave or greater
(specifically > OpenSSH_7.4p1) ensure that the keys are generated
in PEM format or convert existing 'new' keys to the PEM format:
Check format: `head -n1 ~/.ssh/some_key`
Correct RSA fomat: -----BEGIN RSA PRIVATE KEY-----
Incorrect OPENSSH format: -----BEGIN OPENSSH PRIVATE KEY-----
Convert an OPENSSH key to an RSA key: `ssh-keygen -p -m PEM -f ~/.ssh/some_key`
"""
if self.__class__.__name__ == "Device" and self._sock_fd is not None:
return None
if self._ssh_config:
sshconf_path = os.path.expanduser(self._ssh_config)
else:
sshconf_path = os.path.join(os.path.expanduser("~"), ".ssh", "config")
if not os.path.exists(sshconf_path):
return None
else:
sshconf = paramiko.SSHConfig()
with open(sshconf_path, "r") as fp:
sshconf.parse(fp)
found = sshconf.lookup(self._hostname)
self._port = found.get("port", self._port)
self._conf_auth_user = found.get("user")
self._conf_ssh_private_key_file = found.get("identityfile")
return sshconf_path
def display_xml_rpc(self, command, format="xml"):
"""
Executes the CLI command and returns the CLI xml object by default.
For example::
print dev.display_xml_rpc('show version').tag
or
print dev.display_xml_rpc('show version', format='text')
:param str command:
The CLI command to retrieve XML RPC for, e.g. "show version"
:param str format:
The return format, by default is XML. You can optionally select
"text" to return the XML structure as a string.
"""
try:
command = command + "| display xml rpc"
rsp = self.rpc.cli(command, format="xml")
rsp = rsp.getparent().find(".//rpc")
if format == "text":
encode = None if sys.version < "3" else "unicode"
return etree.tostring(rsp[0], encoding=encode)
return rsp[0]
except TypeError:
return "No RPC equivalent found for: " + command
except:
return "invalid command: " + command
# ------------------------------------------------------------------------
# Template: retrieves a Jinja2 template
# ------------------------------------------------------------------------
def Template(self, filename, parent=None, gvars=None):
"""
Used to return a Jinja2 :class:`Template`.
:param str filename:
file-path to Jinja2 template file on local device
:returns: Jinja2 :class:`Template` give **filename**.
"""
return self._j2ldr.get_template(filename, parent, gvars)
# ------------------------------------------------------------------------
# property: manages
# ------------------------------------------------------------------------
@property
def manages(self):
"""
:returns:
``list`` of Resource Managers/Utilities attached to this
instance using the :meth:`bind` method.
"""
return self._manages
# ------------------------------------------------------------------------
# dealing with bind aspects
# ------------------------------------------------------------------------
def bind(self, *vargs, **kvargs):
"""
Used to attach things to this Device instance and make them a
property of the :class:Device instance. The most common use
for bind is attaching Utility instances to a :class:Device.
For example::
from jnpr.junos.utils.config import Config
dev.bind( cu=Config )
dev.cu.lock()
# ... load some changes
dev.cu.commit()
dev.cu.unlock()
:param list vargs:
A list of functions that will get bound as instance methods to
this Device instance.
.. warning:: Experimental.
:param new_property:
name/class pairs that will create resource-managers bound as
instance attributes to this Device instance. See code example above
"""
if len(vargs):
for fn in vargs:
# check for name clashes before binding
if hasattr(self, fn.__name__):
raise ValueError(
"request attribute name %s already exists" % fn.__name__
)
for fn in vargs:
# bind as instance method, majik.
if sys.version < "3":
self.__dict__[fn.__name__] = types.MethodType(
fn, self, self.__class__
)
else:
self.__dict__[fn.__name__] = types.MethodType(fn, self.__class__)
return
# first verify that the names do not conflict with
# existing object attribute names
for name in kvargs.keys():
# check for name-clashes before binding
if hasattr(self, name):
raise ValueError("requested attribute name %s already exists" % name)
# now instantiate items and bind to this :Device:
for name, thing in kvargs.items():
new_inst = thing(self)
self.__dict__[name] = new_inst
self._manages.append(name)
@property
def _sshconf_path(self):
return self._sshconf_lkup()
# ------------------------------------------------------------------------
# probe
# ------------------------------------------------------------------------
def probe(self, timeout=5, intvtimeout=1):
"""
Probe the device to determine if the Device can accept a remote
connection.
This method is meant to be called *prior* to :open():
This method will not work with ssh-jumphost environments.
:param int timeout:
The probe will report ``True``/``False`` if the device report
connectivity within this timeout (seconds)
:param int intvtimeout:
Timeout interval on the socket connection. Generally you should not
change this value, but you can if you want to twiddle the frequency
of the socket attempts on the connection
:returns: ``True`` if probe is successful, ``False`` otherwise
"""
start = datetime.datetime.now()
end = start + datetime.timedelta(seconds=timeout)
probe_ok = True
while datetime.datetime.now() < end:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(intvtimeout)
try:
s.connect((self.hostname, int(self._port)))
s.shutdown(socket.SHUT_RDWR)
s.close()
break
except:
time.sleep(1)
pass
else:
probe_ok = False
return probe_ok
def cli_to_rpc_string(self, command):
"""
Translate a CLI command string into the equivalent RPC method call.
Translates a CLI command string into a string which represents the
equivalent line of code using an RPC instead of a CLI command. Handles
RPCs with arguments.
.. note::
This method does NOT actually invoke the RPC equivalent.
:param str command:
The CLI command to translate, e.g. "show version"
:returns: (str) representing the RPC meta-method (including
attributes and arguments) which could be invoked instead of
cli(command). Returns None if there is no equivalent RPC for
command or if command is not a valid CLI command.
"""
# Strip off any pipe modifiers
(command, _, _) = command.partition("|")
# Strip any leading or trailing whitespace
command = command.strip()
# Get the equivalent RPC
rpc = self.display_xml_rpc(command)
if isinstance(rpc, six.string_types):
# No RPC is available.
return None
rpc_string = "rpc.%s(" % (rpc.tag.replace("-", "_"))
arguments = []
for child in rpc:
key = child.tag.replace("-", "_")
if child.text:
value = "'" + child.text + "'"
else:
value = "True"
arguments.append("%s=%s" % (key, value))
if arguments:
rpc_string += ", ".join(arguments)
rpc_string += ")"
return rpc_string
# ------------------------------------------------------------------------
# cli - for cheating commands :-)
# ------------------------------------------------------------------------
def cli(self, command, format="text", warning=True):
"""
Executes the CLI command and returns the CLI text output by default.
:param str command:
The CLI command to execute, e.g. "show version"
:param str format:
The return format, by default is text. You can optionally select
"xml" to return the XML structure.
.. note::
You can also use this method to obtain the XML RPC command for a
given CLI command by using the pipe filter ``| display xml rpc``.
When you do this, the return value is the XML RPC command. For
example if you provide as the command
``show version | display xml rpc``, you will get back the XML
Element ``<get-software-information>``.
.. warning::
This function is provided for **DEBUG** purposes only!
**DO NOT** use this method for general automation purposes as
that puts you in the realm of "screen-scraping the CLI".
The purpose of the PyEZ framework is to migrate away from that
tooling pattern. Interaction with the device should be done via
the RPC function.
.. warning::
You cannot use "pipe" filters with **command** such as ``| match``
or ``| count``, etc. The only value use of the "pipe" is for the
``| display xml rpc`` as noted above.
"""
if "display xml rpc" not in command and warning is True:
# Get the equivalent rpc metamethod
rpc_string = self.cli_to_rpc_string(command)
if rpc_string is not None:
warning_string = "\nCLI command is for debug use only!\n"
warning_string += "Instead of:\ncli('%s')\n" % (command)
warning_string += "Use:\n%s\n" % (rpc_string)
warnings.simplefilter("always")
warnings.warn(warning_string, RuntimeWarning)
warnings.resetwarnings()
try:
rsp = self.rpc.cli(command=command, format=format)
if isinstance(rsp, dict) and format.lower() == "json":
return rsp
# rsp returned True means <rpc-reply> is empty, hence return
# empty str as would be the case on cli
# ex:
# <rpc-reply message-id="urn:uuid:281f624f-022b-11e6-bfa8">
# </rpc-reply>
if rsp is True:
return ""
if rsp.tag in ["output", "rpc-reply"]:
if rsp.tag == "output" and rsp.getparent() is not None:
rsp = rsp.getparent()
encode = None if sys.version < "3" else "unicode"
return etree.tostring(
rsp, method="text", with_tail=False, encoding=encode
)
if rsp.tag == "configuration-information":
return rsp.findtext("configuration-output")
if rsp.tag == "rpc":
return rsp[0]
return rsp
except (
EzErrors.ConnectClosedError,
EzErrors.RpcError,
EzErrors.RpcTimeoutError,
) as ex:
raise ex
except Exception as ex:
warnings.warn(
"An unknown exception occurred : %s - please report." % ex,
RuntimeWarning,
)
raise ex
# ------------------------------------------------------------------------
# execute
# ------------------------------------------------------------------------
@normalizeDecorator
@timeoutDecorator
def execute(self, rpc_cmd, ignore_warning=False, **kvargs):
"""
Executes an XML RPC and returns results as either XML or native python
:param rpc_cmd:
can either be an XML Element or xml-as-string. In either case
the command starts with the specific command element, i.e., not the
<rpc> element itself
:param ignore_warning: A boolean, string or list of string.
If the value is True, it will ignore all warnings regardless of the
warning message. If the value is a string, it will ignore
warning(s) if the message of each warning matches the string. If
the value is a list of strings, ignore warning(s) if the message of
each warning matches at least one of the strings in the list.
.. note::
When the value of ignore_warning is a string, or list of strings,
the string is actually used as a case-insensitive regular
expression pattern. If the string contains only alpha-numeric
characters, as shown in the above examples, this results in a
case-insensitive substring match. However, any regular expression
pattern supported by the re library may be used for more
complicated match conditions.
:param func to_py:
Is a caller provided function that takes the response and
will convert the results to native python types. all kvargs
will be passed to this function as well in the form::
to_py( self, rpc_rsp, **kvargs )
:raises ValueError:
When the **rpc_cmd** is of unknown origin
:raises PermissionError:
When the requested RPC command is not allowed due to
user-auth class privilege controls on Junos
:raises RpcError:
When an ``rpc-error`` element is contained in the RPC-reply and the
``rpc-error`` element does not match the **ignore_warning** value.
:returns:
RPC-reply as XML object. If **to_py** is provided, then
that function is called, and return of that function is
provided back to the caller; presumably to convert the XML to
native python data-types (e.g. ``dict``).
"""
if self.connected is not True:
raise EzErrors.ConnectClosedError(self)
if isinstance(rpc_cmd, str):
rpc_cmd_e = etree.XML(rpc_cmd)
elif isinstance(rpc_cmd, etree._Element):
rpc_cmd_e = rpc_cmd
else:
raise ValueError(
"Dont know what to do with rpc of type %s" % rpc_cmd.__class__.__name__
)
# invoking a bad RPC will cause a connection object exception
# will will be raised directly to the caller ... for now ...
# @@@ need to trap this and re-raise accordingly.
try:
rpc_rsp_e = self._rpc_reply(
rpc_cmd_e,
ignore_warning=ignore_warning,
filter_xml=kvargs.get("filter_xml"),
)
except NcOpErrors.TimeoutExpiredError:
# err is a TimeoutExpiredError from ncclient,
# which has no such attribute as xml.
raise EzErrors.RpcTimeoutError(self, rpc_cmd_e.tag, self.timeout)
except NcErrors.TransportError:
raise EzErrors.ConnectClosedError(self)
except RPCError as ex:
if hasattr(ex, "xml"):
rsp = JXML.remove_namespaces(ex.xml)
message = rsp.findtext("error-message")
# see if this is a permission error
if message and message == "permission denied":
raise EzErrors.PermissionError(cmd=rpc_cmd_e, rsp=rsp, errs=ex)
else:
rsp = None
raise EzErrors.RpcError(cmd=rpc_cmd_e, rsp=rsp, errs=ex)
# Something unexpected happened - raise it up
except Exception as err:
warnings.warn(
"An unknown exception occurred - please report.", RuntimeWarning
)
raise
# From 14.2 onward, junos supports JSON, so now code can be written as
# dev.rpc.get_route_engine_information({'format': 'json'})
# should not convert rpc response to json when loading json config
# as response should be rpc-reply xml object.
if rpc_cmd_e.tag != "load-configuration" and rpc_cmd_e.attrib.get("format") in [
"json",
"JSON",
]:
ver_info = self.facts.get("version_info")
if ver_info and (
ver_info.major[0] >= 15
or (ver_info.major[0] == 14 and ver_info.major[1] >= 2)
):
try:
return json.loads(rpc_rsp_e.text, strict=False)
except ValueError as ex:
# when data is {}{.*} types
if str(ex).startswith("Extra data"):
return json.loads(re.sub(r"\s?{\s?}\s?", "", rpc_rsp_e.text))
else:
raise JSONLoadError(ex, rpc_rsp_e.text)
else:
warnings.warn(
"Native JSON support is only from 14.2 onwards", RuntimeWarning
)
# This section is here for the possible use of something other than
# ncclient for RPCs that have embedded rpc-errors, need to check for
# those now.
# rpc_errs = rpc_rsp_e.xpath('.//rpc-error')
# if len(rpc_errs):
# raise EzErrors.RpcError(cmd=rpc_cmd_e, rsp=rpc_errs[0])
# skip the <rpc-reply> element and pass the caller first child element
# generally speaking this is what they really want. If they want to
# uplevel they can always call the getparent() method on it.
try:
ret_rpc_rsp = rpc_rsp_e[0]
except IndexError:
# For cases where reply are like
# <rpc-reply>
# protocol: operation-failed
# error: device asdf not found
# </rpc-reply>
if rpc_rsp_e.text is not None and rpc_rsp_e.text.strip() != "":
return rpc_rsp_e
# no children, so assume it means we are OK
return True
# if the caller provided a "to Python" conversion function, then invoke
# that now and return the results of that function. otherwise just
# return the RPC results as XML
if kvargs.get("to_py"):
return kvargs["to_py"](self, ret_rpc_rsp, **kvargs)
else:
return ret_rpc_rsp
# ------------------------------------------------------------------------
# facts
# ------------------------------------------------------------------------
def facts_refresh(
self, exception_on_failure=False, warnings_on_failure=None, keys=None
):
"""
Refresh the facts from the Junos device into :attr:`facts` property.
See :module:`jnpr.junos.facts` for a complete list of available facts.
For old-style facts, this causes all facts to be immediately reloaded.
For new-style facts, the current fact value(s) are deleted, and the
fact is reloaded on demand.
:param bool exception_on_failure: To raise exception when facts
gathering errors out. If True when new-style fact gathering is in
use, causes all facts to be reloaded rather than being loaded on
demand.
:param bool warnings_on_failure: To print a warning when fact gathering
errors out. The default for old-style facts gathering is
warnings_on_failure=True. The default for new-style facts gathering
is warnings_on_failure=False. If True when new-style fact gathering
is in use, causes all facts to be reloaded rather than being loaded
on demand.
:param str, set, list, or tuple keys: The set of keys in facts to
refresh. Note: Old-style facts gathering does not support
gathering individual facts, so this argument can only be
specified when new-style fact gathering is in use. In addition,
setting exception_on_failure or warnings_on_failure to True causes
all facts to be immediately refreshed, rather than being refreshed
on demand. For this reason, the keys argument can not be specified if
exception_on_failure or warnings_on_failure are True.
An example of specifying the keys argument as a string:
```
dev.facts_refresh(keys='hostname')
```
An example of specifying the keys argument as a tuple:
```
dev.facts_refresh(keys=('hostname', 'hostname_info', 'domain', 'fqdn'))
```
or as a list:
```
dev.facts_refresh(keys=['hostname', 'hostname_info', 'domain', 'fqdn'])
```
or as a set:
```
dev.facts_refresh(keys={'hostname', 'hostname_info', 'domain', 'fqdn'})
```
:raises RuntimeError:
If old-style fact gathering is in use and a keys argument is
specified.
"""
if self._fact_style not in ["old", "new", "both"]:
raise RuntimeError("Unknown fact_style: %s" % (self._fact_style))
if self._fact_style == "old" or self._fact_style == "both":
if warnings_on_failure is None:
warnings_on_failure = True
if keys is not None:
raise RuntimeError(
"The keys argument can not be specified "
"when old-style fact gathering is in use!"
)
should_warn = False
for gather in FACT_LIST:
try:
gather(self, self._ofacts)
except:
if exception_on_failure:
raise
should_warn = True
if (
warnings_on_failure is True
and should_warn is True
and self._fact_style != "both"
):