This file is indexed.

/lib/udev/udev-add-printer is in system-config-printer-udev 1.5.7+20160212-0ubuntu2.

This file is owned by root:root, with mode 0o755.

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
#!/usr/bin/python3 -sB

## udev-add-printer

## Copyright (C) 2009, 2010, 2014, 2015 Red Hat, Inc.
## Author: Tim Waugh <twaugh@redhat.com>

## 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 cupshelpers
import dbus
import os
import sys
import traceback
from syslog import *
from functools import reduce

MFG_BLACKLIST=[
    "graphtec",
    ]

def is_ipp_uri (uri):
    return uri.startswith('ipp://')

def is_ippusb_uri (uri):
    return '/ipp/print?isippoverusb=true&' in uri

def get_ippusb_uri_params (uri):
    params_i = uri.find('/ipp/print?isippusboverusb=true&')
    if params_i < 0:
        return ""
    return uri[params_i:]

def is_same_ippusb_printer (uri1, uri2):
    return get_ippusb_uri_params(uri1) == get_ippusb_uri_params(uri2)

def create_queue (c, printers, name, device_uri, ppdname, info, installer):
    # Make sure the name is unique.
    namel = str (name.lower ())

    # Find any existing queue for this uri
    name_found = False;
    for printer in list(printers.values ()):
        # ippusbxd needs the queue's uri to be modified
        uri = printer.device_uri;
        if (is_ipp_uri (uri)):
            if (is_ippusb_uri (uri) and
                is_ipp_uri (device_uri) and is_ippusb_uri (device_uri) and
                is_same_ippusb_printer (uri, device_uri)):
                name_found = True;
                name = printer.name;
                break
        else:
            if (uri == device_uri):
                name_found = True;
                name = printer.name;
                break;


    if (not name_found):
        # Generate a unique name for our unique uri
        unique = False
        suffix = 1
        while not unique:
            unique = True
            for printer in list(printers.values ()):
                if (not printer.discovered and
                    ((suffix == 1 and printer.name.lower () == namel) or
                     (suffix > 1 and
                      printer.name.lower () == namel + "-" + str (suffix)))):

                    # ippusbxd needs the queue's uri to be modified
                    uri = printer.device_uri;
                    if (is_ipp_uri (uri)        and is_ippusb_uri (uri) and
                        is_ipp_uri (device_uri) and is_ippusb_uri (device_uri) and
                         is_same_ippusb_printer (uri, device_uri)):
                        break

                    unique = False
                    break

            if not unique:
                suffix += 1
                if suffix == 100:
                    break

        if suffix > 1:
            name += "-" + str (suffix)

    c.addPrinter (name,
                  device=device_uri,
                  ppdname=ppdname,
                  info=info,
                  location=os.uname ()[1])

    if not installer:
        # There is no session applet running to deal with installing
        # drivers so there is a good chance that this queue won't work
        # right now.  If that's the case, delete it.  The user can
        # reconnect the printer when they log in, and everything will
        # be set up correctly for them at that point.
        try:
            ppdfile = c.getPPD (name)
            ppd = cups.PPD (ppdfile)
            os.unlink (ppdfile)

            (pkgs, exes) = cupshelpers.missingPackagesAndExecutables (ppd)
            if pkgs or exes:
                # There are filters missing.  Delete the queue.
                syslog (LOG_ERROR, "PPD %s requires %s" % (ppdname,
                                                           repr ((pkgs, exes))))
                syslog (LOG_ERROR, "Deleting non-functional queue")
                c.deletePrinter (name)
                name = None
        except cups.IPPError:
            pass
        except RuntimeError:
            pass

    if name:
        cupshelpers.activateNewPrinter (c, name)

    return name

def add_queue (device_id, device_uris, fax_basename=False):
    """
    Create a CUPS queue.

    device_id: the IEEE 1284 Device ID of the device to add a queue for.
    device_uris: device URIs, best first, for this device
    fax_basename: False if this is not a fax queue, else name prefix
    """

    id_dict = cupshelpers.parseDeviceID (device_id)
    if id_dict["MFG"].lower () in MFG_BLACKLIST:
        syslog (LOG_DEBUG, "Ignoring blacklisted manufacturer %s", id_dict["MFG"])
        return

    syslog (LOG_DEBUG, "add_queue: URIs=%s" % device_uris)
    installer = None
    if fax_basename != False:
        notification = None
    else:
        try:
            bus = dbus.SystemBus ()
            obj = bus.get_object ("com.redhat.NewPrinterNotification",
                                  "/com/redhat/NewPrinterNotification")
            notification = dbus.Interface (obj,
                                           "com.redhat.NewPrinterNotification")
            notification.GetReady ()
        except dbus.DBusException as e:
            syslog (LOG_DEBUG, "D-Bus method call failed: %s" % e)
            notification = None

        try:
            obj = bus.get_object ("com.redhat.PrinterDriversInstaller",
                                  "/com/redhat/PrinterDriversInstaller")
            installer = dbus.Interface (obj,
                                        "com.redhat.PrinterDriversInstaller")
        except dbus.DBusException as e:
            #syslog (LOG_DEBUG, "Failed to get D-Bus object for "
            #        "PrinterDriversInstaller: %s" % e)
            pass

    id_dict = cupshelpers.parseDeviceID (device_id)
    if installer:
        cmd = id_dict["CMD"]
        if cmd:
            cmd = reduce (lambda x, y: x + ',' + y, cmd)
        else:
            cmd = ""

        try:
            installer.InstallDrivers (id_dict["MFG"], id_dict["MDL"], cmd,
                                      timeout=3600)
        except dbus.DBusException as e:
            syslog (LOG_DEBUG, "Failed to install drivers: %s" % repr (e))

    c = cups.Connection ()
    ppds = cupshelpers.ppds.PPDs (c.getPPDs ())
    (status, ppdname) = ppds.getPPDNameFromDeviceID (id_dict["MFG"],
                                                     id_dict["MDL"],
                                                     id_dict["DES"],
                                                     id_dict["CMD"],
                                                     device_uris[0])
    syslog (LOG_DEBUG, "PPD: %s; Status: %d" % (ppdname, status))

    if status == 0:
        # Think of a name for it.
        name = id_dict["MDL"]
        name = name.replace (" ", "-")
        name = name.replace ("/", "-")
        name = name.replace ("#", "-")

        if fax_basename != False:
            name = fax_basename + "-" + name

        printers = cupshelpers.getPrinters (c)
        uniquename = create_queue (c, printers, name, device_uris[0], ppdname,
                                   "%s %s" % (id_dict["MFG"], id_dict["MDL"]),
                                   installer)

        if uniquename != None and fax_basename == False:
            # Look for a corresponding fax queue.  We can only
            # identify these by looking for device URIs that are the
            # same as this one but with a different scheme.  If we
            # find one whose scheme ends in "fax", use that as a fax
            # queue.  Note that the HPLIP backends do follow this
            # pattern (hp and hpfax).
            used_uris = [x.device_uri for x in list(printers.values ())]
            for uri in device_uris[1:]:
                if uri.find (":") == -1:
                    continue

                (scheme, rest) = uri.split (":", 1)
                if scheme.endswith ("fax"):
                    # Now see if the non-scheme parts of the URI match
                    # any of the URIs we were given.
                    for each_uri in device_uris:
                        if each_uri == uri:
                            continue
                        (s, device_uri_rest) = each_uri.split (":", 1)
                        if rest == device_uri_rest:
                            # This one matches.  Check there is not
                            # already a queue using this URI.
                            if uri in used_uris:
                                break

                            try:
                                devices = c.getDevices(include_schemes=[scheme])
                            except TypeError:
                                # include_schemes requires pycups 1.9.46
                                devices = c.getDevices ()

                            device_dict = devices.get (uri)
                            if device_dict == None:
                                break

                            add_queue (device_dict.get ("device-id", ""),
                                       [uri], fax_basename=uniquename)
    else:
        # Not an exact match.
        uniquename = device_uris[0]

    if uniquename != None and notification:
        try:
            cmd = id_dict["CMD"]
            if cmd:
                cmd = reduce (lambda x, y: x + ',' + y, cmd)
            else:
                cmd = ""

            notification.NewPrinter (status, uniquename, id_dict["MFG"],
                                     id_dict["MDL"], id_dict["DES"], cmd)
        except dbus.DBusException as e:
            syslog (LOG_DEBUG, "D-Bus method call failed: %s" % e)

if len (sys.argv) < 3:
   print("Syntax: %s {Device ID} {Device URI} [other device URIs...]")
   sys.exit (1)

openlog ("udev-add-printer", 0, LOG_LPR)
try:
    add_queue (sys.argv[1], sys.argv[2:])
except SystemExit as e:
    sys.exit (e)
except:
    (type, value, tb) = sys.exc_info ()
    tblast = traceback.extract_tb (tb, limit=None)
    if len (tblast):
        tblast = tblast[:len (tblast) - 1]
    for line in traceback.format_tb (tb):
        syslog (LOG_ERR, line.strip ())
    extxt = traceback.format_exception_only (type, value)
    syslog (LOG_ERR, extxt[0].strip ())