/usr/share/system-config-printer/asyncpk1.py is in system-config-printer-gnome 1.3.8+20120201-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/python
## Copyright (C) 2007, 2008, 2009, 2010 Red Hat, Inc.
## Copyright (C) 2008 Novell, Inc.
## Authors: Tim Waugh <twaugh@redhat.com>, Vincent Untz
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
import cups
import dbus
import gobject
import gtk
import os
import sys
import tempfile
import xml.etree.ElementTree
import asyncipp
from debug import *
import debug
CUPS_PK_NAME = 'org.opensuse.CupsPkHelper.Mechanism'
CUPS_PK_PATH = '/'
CUPS_PK_IFACE = 'org.opensuse.CupsPkHelper.Mechanism'
CUPS_PK_NEED_AUTH = 'org.opensuse.CupsPkHelper.Mechanism.NotPrivileged'
######
###### A polkit-1 based asynchronous CupsPkHelper interface made to
###### look just like a normal IPPAuthConnection class. For method
###### calls that have no equivalent in the CupsPkHelper API, IPP
###### authentication is used over a CUPS connection in a separate
###### thread.
######
_DevicesGet_uses_new_api = None
###
### A class to handle an asynchronous method call.
###
class _PK1AsyncMethodCall:
def __init__ (self, bus, conn, pk_method_name, pk_args,
reply_handler, error_handler, unpack_fn,
fallback_fn, args, kwds):
self._bus = bus
self._conn = conn
self._pk_method_name = pk_method_name
self._pk_args = pk_args
self._client_reply_handler = reply_handler
self._client_error_handler = error_handler
self._unpack_fn = unpack_fn
self._fallback_fn = fallback_fn
self._fallback_args = args
self._fallback_kwds = kwds
self._destroyed = False
debugprint ("+_PK1AsyncMethodCall: %s" % self)
def __del__ (self):
debug.debugprint ("-_PK1AsyncMethodCall: %s" % self)
def call (self):
object = self._bus.get_object(CUPS_PK_NAME, CUPS_PK_PATH)
proxy = dbus.Interface (object, CUPS_PK_IFACE)
pk_method = proxy.get_dbus_method (self._pk_method_name)
try:
pk_method (*self._pk_args,
reply_handler=self._pk_reply_handler,
error_handler=self._pk_error_handler,
timeout=3600)
except TypeError, e:
debugprint ("Type error in PK call: %s" % e)
self.call_fallback_fn ()
def _destroy (self):
debugprint ("DESTROY: %s" % self)
self._destroyed = True
del self._bus
del self._conn
del self._pk_method_name
del self._pk_args
del self._client_reply_handler
del self._client_error_handler
del self._unpack_fn
del self._fallback_fn
del self._fallback_args
del self._fallback_kwds
def _pk_reply_handler (self, error, *args):
if self._destroyed:
return
if str (error) == '':
gtk.gdk.threads_enter ()
self._client_reply_handler (self._conn, self._unpack_fn (*args))
gtk.gdk.threads_leave ()
self._destroy ()
return
debugprint ("PolicyKit method failed with: %s" % repr (str (error)))
self.call_fallback_fn ()
def _pk_error_handler (self, exc):
if self._destroyed:
return
if exc.get_dbus_name () == CUPS_PK_NEED_AUTH:
exc = cups.IPPError (cups.IPP_NOT_AUTHORIZED, 'pkcancel')
gtk.gdk.threads_enter ()
self._client_error_handler (self._conn, exc)
gtk.gdk.threads_leave ()
self._destroy ()
return
debugprint ("PolicyKit call to %s did not work: %s" %
(self._pk_method_name, exc))
self.call_fallback_fn ()
def call_fallback_fn (self):
# Make the 'connection' parameter consistent with PK callbacks.
self._fallback_kwds["reply_handler"] = self._ipp_reply_handler
self._fallback_kwds["error_handler"] = self._ipp_error_handler
self._fallback_fn (*self._fallback_args, **self._fallback_kwds)
def _ipp_reply_handler (self, conn, *args):
if self._destroyed:
return
self._client_reply_handler (self._conn, *args)
self._destroy ()
def _ipp_error_handler (self, conn, *args):
if self._destroyed:
return
self._client_error_handler (self._conn, *args)
self._destroy ()
###
### A class for handling FileGet when a temporary file is needed.
###
class _WriteToTmpFile:
def __init__ (self, kwds, reply_handler, error_handler):
self._reply_handler = reply_handler
self._error_handler = error_handler
# Create the temporary file in /tmp to ensure that
# cups-pk-helper-mechanism is able to write to it.
(tmpfd, tmpfname) = tempfile.mkstemp (dir="/tmp")
os.close (tmpfd)
self._filename = tmpfname
debugprint ("Created tempfile %s" % tmpfname)
self._kwds = kwds
def __del__ (self):
try:
os.unlink (self._filename)
debug.debugprint ("Removed tempfile %s" % self._filename)
except:
debug.debugprint ("No tempfile to remove")
def get_filename (self):
return self._filename
def reply_handler (self, conn, none):
tmpfd = os.open (self._filename, os.O_RDONLY)
tmpfile = os.fdopen (tmpfd, 'r')
if self._kwds.has_key ("fd"):
fd = self._kwds["fd"]
os.lseek (fd, 0, os.SEEK_SET)
line = tmpfile.readline ()
while line != '':
os.write (fd, line)
line = tempfile.readline ()
else:
file_object = self._kwds["file"]
file_object.seek (0)
line = tmpfile.readline ()
while line != '':
file_object.write (line)
line = tmpfile.readline ()
tmpfile.close ()
self._reply_handler (conn, none)
def error_handler (self, conn, exc):
self._error_handler (conn, exc)
###
### The user-visible class.
###
class PK1Connection:
def __init__(self, reply_handler=None, error_handler=None,
host=None, port=None, encryption=None, parent=None):
self._conn = asyncipp.IPPAuthConnection (reply_handler=reply_handler,
error_handler=error_handler,
host=host, port=port,
encryption=encryption,
parent=parent)
try:
self._system_bus = dbus.SystemBus()
except (dbus.exceptions.DBusException, AttributeError):
# No system D-Bus.
self._system_bus = None
global _DevicesGet_uses_new_api
if _DevicesGet_uses_new_api == None and self._system_bus:
try:
obj = self._system_bus.get_object(CUPS_PK_NAME, CUPS_PK_PATH)
proxy = dbus.Interface (obj, dbus.INTROSPECTABLE_IFACE)
api = proxy.Introspect ()
top = xml.etree.ElementTree.XML (api)
for interface in top.findall ("interface"):
if interface.attrib.get ("name") != CUPS_PK_IFACE:
continue
for method in interface.findall ("method"):
if method.attrib.get ("name") != "DevicesGet":
continue
num_args = 0
for arg in method.findall ("arg"):
direction = arg.attrib.get ("direction")
if direction != "in":
continue
num_args += 1
_DevicesGet_uses_new_api = num_args == 4
debugprint ("DevicesGet new API: %s" % (num_args == 4))
break
break
except Exception, e:
debugprint ("Exception assessing DevicesGet API: %s" % e)
methodtype = type (self._conn.getPrinters)
bindings = []
for fname in dir (self._conn):
if fname.startswith ('_'):
continue
fn = getattr (self._conn, fname)
if type (fn) != methodtype:
continue
if not hasattr (self, fname):
setattr (self, fname, self._make_binding (fn))
bindings.append (fname)
self._bindings = bindings
debugprint ("+%s" % self)
def __del__ (self):
debug.debugprint ("-%s" % self)
def _make_binding (self, fn):
def binding (*args, **kwds):
op = _PK1AsyncMethodCall (None, self, None, None,
kwds.get ("reply_handler"),
kwds.get ("error_handler"),
None, fn, args, kwds)
op.call_fallback_fn ()
return binding
def destroy (self):
debugprint ("DESTROY: %s" % self)
self._conn.destroy ()
for binding in self._bindings:
delattr (self, binding)
def _coerce (self, typ, val):
return typ (val)
def _args_kwds_to_tuple (self, types, params, args, kwds):
"""Collapse args and kwds into a single tuple."""
leftover_kwds = kwds.copy ()
reply_handler = leftover_kwds.get ("reply_handler")
error_handler = leftover_kwds.get ("error_handler")
if leftover_kwds.has_key ("reply_handler"):
del leftover_kwds["reply_handler"]
if leftover_kwds.has_key ("error_handler"):
del leftover_kwds["error_handler"]
if leftover_kwds.has_key ("auth_handler"):
del leftover_kwds["auth_handler"]
result = [True, reply_handler, error_handler, ()]
if self._system_bus == None:
return result
tup = []
argindex = 0
for arg in args:
try:
val = self._coerce (types[argindex], arg)
except IndexError:
# More args than types.
kw, default = params[argindex]
if default != arg:
return result
# It's OK, this is the default value anyway and can be
# ignored. Skip to the next one.
argindex += 1
continue
except TypeError, e:
debugprint ("Error converting %s to %s" %
(repr (arg), types[argindex]))
return result
tup.append (val)
argindex += 1
for kw, default in params[argindex:]:
if leftover_kwds.has_key (kw):
try:
val = self._coerce (types[argindex], leftover_kwds[kw])
except TypeError, e:
debugprint ("Error converting %s to %s" %
(repr (leftover_kwds[kw]), types[argindex]))
return result
tup.append (val)
del leftover_kwds[kw]
else:
tup.append (default)
argindex += 1
if leftover_kwds:
debugprint ("Leftover keywords: %s" % repr (leftover_kwds.keys ()))
return result
result[0] = False
result[3] = tuple (tup)
debugprint ("Converted %s/%s to %s" % (args, kwds, tuple (tup)))
return result
def _call_with_pk (self, use_pycups, pk_method_name, pk_args,
reply_handler, error_handler, unpack_fn,
fallback_fn, args, kwds):
asyncmethodcall = _PK1AsyncMethodCall (self._system_bus, self,
pk_method_name, pk_args,
reply_handler,
error_handler,
unpack_fn, fallback_fn,
args, kwds)
if not use_pycups:
try:
debugprint ("Calling PK method %s" % pk_method_name)
asyncmethodcall.call ()
except dbus.DBusException, e:
debugprint ("D-Bus call failed: %s" % repr (e))
use_pycups = True
if use_pycups:
return asyncmethodcall.call_fallback_fn ()
def _nothing_to_unpack (self):
return None
def getDevices (self, *args, **kwds):
global _DevicesGet_uses_new_api
if _DevicesGet_uses_new_api:
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([int, int, list, list],
[("timeout", 0),
("limit", 0),
("include_schemes", []),
("exclude_schemes", [])],
args, kwds)
else:
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([int, list, list],
[("limit", 0),
("include_schemes", []),
("exclude_schemes", [])],
args, kwds)
if not use_pycups:
# Special handling for include_schemes/exclude_schemes.
# Convert from list to ","-separated string.
newtup = list (tup)
for paramindex in [1, 2]:
if len (newtup[paramindex]) > 0:
newtup[paramindex] = reduce (lambda x, y:
x + "," + y,
newtup[paramindex])
else:
newtup[paramindex] = ""
tup = tuple (newtup)
self._call_with_pk (use_pycups,
'DevicesGet', tup, reply_handler, error_handler,
self._unpack_getDevices_reply,
self._conn.getDevices, args, kwds)
def _unpack_getDevices_reply (self, dbusdict):
result_str = dict()
for key, value in dbusdict.iteritems ():
if type (key) == dbus.String:
result_str[str (key)] = str (value)
else:
result_str[key] = value
# cups-pk-helper returns all devices in one dictionary.
# Keys of different devices are distinguished by ':n' postfix.
devices = dict()
n = 0
affix = ':' + str (n)
device_keys = [x for x in result_str.keys () if x.endswith (affix)]
while len (device_keys) > 0:
device_uri = None
device_dict = dict()
for keywithaffix in device_keys:
key = keywithaffix[:len (keywithaffix) - len (affix)]
if key != 'device-uri':
device_dict[key] = result_str[keywithaffix]
else:
device_uri = result_str[keywithaffix]
if device_uri != None:
devices[device_uri] = device_dict
n += 1
affix = ':' + str (n)
device_keys = [x for x in result_str.keys () if x.endswith (affix)]
return devices
def cancelJob (self, *args, **kwds):
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([int, bool],
[(None, None),
(None, False)], # purge_job
args, kwds)
self._call_with_pk (use_pycups,
'JobCancelPurge', tup, reply_handler, error_handler,
self._nothing_to_unpack,
self._conn.cancelJob, args, kwds)
def setJobHoldUntil (self, *args, **kwds):
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([int, str],
[(None, None),
(None, None)],
args, kwds)
self._call_with_pk (use_pycups,
'JobSetHoldUntil', tup, reply_handler,
error_handler, self._nothing_to_unpack,
self._conn.setJobHoldUntil, args, kwds)
def restartJob (self, *args, **kwds):
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([int],
[(None, None)],
args, kwds)
self._call_with_pk (use_pycups,
'JobRestart', tup, reply_handler,
error_handler, self._nothing_to_unpack,
self._conn.restartJob, args, kwds)
def getFile (self, *args, **kwds):
(use_pycups, reply_handler, error_handler,
tup) = self._args_kwds_to_tuple ([str, str],
[("resource", None),
("filename", None)],
args, kwds)
# getFile(resource, filename=None, fd=-1, file=None) -> None
if use_pycups:
if ((len (args) == 0 and kwds.has_key ('resource')) or
(len (args) == 1)):
can_use_tempfile = True
for each in kwds.keys ():
if each not in ['resource', 'fd', 'file',
'reply_handler', 'error_handler']:
can_use_tempfile = False
break
if can_use_tempfile:
# We can still use PackageKit for this.
if len (args) == 0:
resource = kwds["resource"]
else:
resource = args[0]
wrapper = _WriteToTmpFile (kwds,
reply_handler,
error_handler)
self._call_with_pk (False,
'FileGet',
(resource, wrapper.get_filename ()),
wrapper.reply_handler,
wrapper.error_handler,
self._nothing_to_unpack,
self._conn.getFile, args, kwds)
return
self._call_with_pk (use_pycups,
'FileGet', tup, reply_handler,
error_handler, self._nothing_to_unpack,
self._conn.getFile, args, kwds)
## etc
## Still to implement:
## putFile
## addPrinter
## setPrinterDevice
## setPrinterInfo
## setPrinterLocation
## setPrinterShared
## setPrinterJobSheets
## setPrinterErrorPolicy
## setPrinterOpPolicy
## setPrinterUsersAllowed
## setPrinterUsersDenied
## addPrinterOptionDefault
## deletePrinterOptionDefault
## deletePrinter
## addPrinterToClass
## deletePrinterFromClass
## deleteClass
## setDefault
## enablePrinter
## disablePrinter
## acceptJobs
## rejectJobs
## adminGetServerSettings
## adminSetServerSettings
## ...
if __name__ == '__main__':
import gtk
gobject.threads_init ()
from debug import set_debugging
set_debugging (True)
class UI:
def __init__ (self):
w = gtk.Window ()
v = gtk.VBox ()
w.add (v)
b = gtk.Button ("Go")
v.pack_start (b)
b.connect ("clicked", self.button_clicked)
b = gtk.Button ("Fetch")
v.pack_start (b)
b.connect ("clicked", self.fetch_clicked)
b.set_sensitive (False)
self.fetch_button = b
b = gtk.Button ("Cancel job")
v.pack_start (b)
b.connect ("clicked", self.cancel_clicked)
b.set_sensitive (False)
self.cancel_button = b
b = gtk.Button ("Get file")
v.pack_start (b)
b.connect ("clicked", self.get_file_clicked)
b.set_sensitive (False)
self.get_file_button = b
b = gtk.Button ("Something harmless")
v.pack_start (b)
b.connect ("clicked", self.harmless_clicked)
b.set_sensitive (False)
self.harmless_button = b
w.connect ("destroy", self.destroy)
w.show_all ()
self.conn = None
debugprint ("+%s" % self)
def __del__ (self):
debug.debugprint ("-%s" % self)
def destroy (self, window):
debugprint ("DESTROY: %s" % self)
try:
self.conn.destroy ()
del self.conn
except AttributeError:
pass
gtk.main_quit ()
def button_clicked (self, button):
if self.conn:
self.conn.destroy ()
self.conn = PK1Connection (reply_handler=self.connected,
error_handler=self.connection_error)
def connected (self, conn, result):
print "Connected"
self.fetch_button.set_sensitive (True)
self.cancel_button.set_sensitive (True)
self.get_file_button.set_sensitive (True)
self.harmless_button.set_sensitive (True)
def connection_error (self, conn, error):
print "Failed to connect"
raise error
def fetch_clicked (self, button):
print ("fetch devices...")
self.conn.getDevices (reply_handler=self.got_devices,
error_handler=self.get_devices_error)
def got_devices (self, conn, devices):
if conn != self.conn:
print "Ignoring stale reply"
return
print "got devices: %s" % devices
def get_devices_error (self, conn, exc):
if conn != self.conn:
print "Ignoring stale error"
return
print "devices error: %s" % repr (exc)
def cancel_clicked (self, button):
print "Cancel job..."
self.conn.cancelJob (1,
reply_handler=self.job_canceled,
error_handler=self.cancel_job_error)
def job_canceled (self, conn, none):
if conn != self.conn:
print "Ignoring stale reply for %s" % conn
return
print "Job canceled"
def cancel_job_error (self, conn, exc):
if conn != self.conn:
print "Ignoring stale error for %s" % conn
return
print "cancel error: %s" % repr (exc)
def get_file_clicked (self, button):
self.my_file = file ("cupsd.conf", "w")
self.conn.getFile ("/admin/conf/cupsd.conf", file=self.my_file,
reply_handler=self.got_file,
error_handler=self.get_file_error)
def got_file (self, conn, none):
if conn != self.conn:
print "Ignoring stale reply for %s" % conn
return
print "Got file"
def get_file_error (self, conn, exc):
if conn != self.conn:
print "Ignoring stale error"
return
print "get file error: %s" % repr (exc)
def harmless_clicked (self, button):
self.conn.getJobs (reply_handler=self.got_jobs,
error_handler=self.get_jobs_error)
def got_jobs (self, conn, result):
if conn != self.conn:
print "Ignoring stale reply from %s" % repr (conn)
return
print result
def get_jobs_error (self, exc):
print "get jobs error: %s" % repr (exc)
UI ()
from dbus.mainloop.glib import DBusGMainLoop
DBusGMainLoop (set_as_default=True)
gtk.main ()
|