-
Notifications
You must be signed in to change notification settings - Fork 15
/
ipp.go
479 lines (416 loc) · 13.3 KB
/
ipp.go
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
/* ipp-usb - HTTP reverse proxy, backed by IPP-over-USB connection to device
*
* Copyright (C) 2020 and up by Alexander Pevzner ([email protected])
* See LICENSE for license terms and conditions
*
* IPP service registration
*/
package main
import (
"bytes"
"fmt"
"io/ioutil"
"net/http"
"strings"
"github.com/OpenPrinting/goipp"
)
// IppPrinterInfo represents additional printer information, which
// is not included into DNS-SD TXT record, but still needed for
// other purposes
type IppPrinterInfo struct {
DNSSdName string // DNS-SD device name
UUID string // Device UUID
AdminURL string // Admin URL
IconURL string // Device icon URL
IppSvcIndex int // IPP DNSSdSvcInfo index within array of services
}
// IppService performs IPP Get-Printer-Attributes query using provided
// http.Client and decodes received information into the form suitable
// for DNS-SD registration
//
// Discovered services will be added to the services collection
func IppService(log *LogMessage, services *DNSSdServices,
port int, usbinfo UsbDeviceInfo, quirks Quirks,
c *http.Client) (ippinfo *IppPrinterInfo, err error) {
// Query printer attributes
uri := fmt.Sprintf("http://localhost:%d/ipp/print", port)
msg, err := ippGetPrinterAttributes(log, c, quirks, uri)
if err != nil {
return
}
// Decode IPP service info
attrs := newIppDecoder(msg)
ippinfo, ippSvc := attrs.decode(usbinfo)
// Check for fax support
canFax := false
if usbinfo.BasicCaps&UsbIppBasicCapsFax != 0 &&
!quirks.GetDisableFax() {
// Note, as device lists Fax on its basic capabilities,
// this probe most likely is not needed, but as the
// ipp-usb version 0.9.19 and earlier used to guess
// for fax support based on the /ipp/faxout probe,
// not on device capabilities, lets leave it here
// for now, just in case. Firmwares in general are
// too buggy, I can't trust them :-(
uri = fmt.Sprintf("http://localhost:%d/ipp/faxout", port)
if _, err2 := ippGetPrinterAttributes(log, c, quirks, uri); err2 == nil {
canFax = true
log.Debug(' ', "IPP FaxOut service detected")
} else {
log.Error('!', "IPP FaxOut probe failed: %s", err2)
}
} else {
log.Debug(' ', "IPP FaxOut service not in capabilities")
}
if canFax {
ippSvc.Txt.Add("Fax", "T")
ippSvc.Txt.Add("rfo", "ipp/faxout")
} else {
ippSvc.Txt.Add("Fax", "F")
}
// Construct LPD info. Per Apple spec, we MUST advertise
// LPD with zero port, even if we don't support it
lpdSvc := DNSSdSvcInfo{
Type: "_printer._tcp",
Port: 0,
Txt: nil,
}
// Pack it all together
ippSvc.Port = port
services.Add(lpdSvc)
ippinfo.IppSvcIndex = len(*services)
services.Add(ippSvc)
return
}
// ippGetPrinterAttributes performs GetPrinterAttributes query,
// using the specified http.Client and uri
//
// If this function returns nil error, it means that:
// 1. HTTP transaction performed successfully
// 2. Received reply successfully decoded
// 3. It is not an IPP error response
//
// Otherwise, the appropriate error is generated and returned
func ippGetPrinterAttributes(log *LogMessage, c *http.Client,
quirks Quirks, uri string) (msg *goipp.Message, err error) {
// Query printer attributes
msg = goipp.NewRequest(goipp.DefaultVersion, goipp.OpGetPrinterAttributes, 1)
msg.Operation.Add(goipp.MakeAttribute("attributes-charset",
goipp.TagCharset, goipp.String("utf-8")))
msg.Operation.Add(goipp.MakeAttribute("attributes-natural-language",
goipp.TagLanguage, goipp.String("en-US")))
msg.Operation.Add(goipp.MakeAttribute("printer-uri",
goipp.TagURI, goipp.String(uri)))
rq := goipp.Attribute{Name: "requested-attributes"}
if Conf.LogAllPrinterAttrs {
rq.Values.Add(goipp.TagKeyword, goipp.String("all"))
} else {
rq.Values.Add(goipp.TagKeyword, goipp.String("color-supported"))
rq.Values.Add(goipp.TagKeyword, goipp.String("document-format-supported"))
rq.Values.Add(goipp.TagKeyword, goipp.String("media-size-supported"))
rq.Values.Add(goipp.TagKeyword, goipp.String("mopria-certified"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-device-id"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-dns-sd-name"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-icons"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-info"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-kind"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-location"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-make-and-model"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-more-info"))
rq.Values.Add(goipp.TagKeyword, goipp.String("printer-uuid"))
rq.Values.Add(goipp.TagKeyword, goipp.String("sides-supported"))
rq.Values.Add(goipp.TagKeyword, goipp.String("urf-supported"))
}
msg.Operation.Add(rq)
log.Add(LogTraceIPP, '>', "IPP request:").
IppRequest(LogTraceIPP, '>', msg).
Nl(LogTraceIPP).
Flush()
req, _ := msg.EncodeBytes()
resp, err := c.Post(uri, goipp.ContentType, bytes.NewBuffer(req))
if err != nil {
err = fmt.Errorf("HTTP: %s", err)
return
}
defer resp.Body.Close()
// Check HTTP status
if resp.StatusCode/100 != 2 {
err = fmt.Errorf("HTTP: %s", resp.Status)
return
}
// Decode IPP response message
respData, err := ioutil.ReadAll(resp.Body)
if err != nil {
err = fmt.Errorf("HTTP: %s", err)
return
}
opts := goipp.DecoderOptions{}
if quirks.GetBuggyIppRsp() == QuirkBuggyIppRspAllow {
opts.EnableWorkarounds = true
}
err = msg.DecodeBytesEx(respData, opts)
if err != nil {
log.Debug(' ', "Failed to decode IPP message: %s", err)
log.HexDump(LogTraceIPP, ' ', respData)
err = fmt.Errorf("IPP decode: %s", err)
return
}
log.Add(LogTraceIPP, '<', "IPP response:").
IppResponse(LogTraceIPP, '<', msg).
Nl(LogTraceIPP).
Flush()
// Check response status
if msg.Code >= 0x100 && !quirks.GetIgnoreIppStatus() {
err = fmt.Errorf("IPP: %s", goipp.Status(msg.Code))
return
}
return
}
// ippAttrs represents a collection of IPP printer attributes,
// enrolled into a map for convenient access
type ippAttrs map[string]goipp.Values
// Create new ippAttrs
func newIppDecoder(msg *goipp.Message) ippAttrs {
attrs := make(ippAttrs)
// Note, we move from the end of list to the beginning, so
// in a case of duplicated attributes, first occurrence wins
for i := len(msg.Printer) - 1; i >= 0; i-- {
attr := msg.Printer[i]
attrs[attr.Name] = attr.Values
}
return attrs
}
// Decode printer attributes and build TXT record for IPP service
//
// This is where information comes from:
//
// DNS-SD name: "printer-dns-sd-name" with fallback to "printer-info",
// "printer-make-and-model" and finally to MfgAndProduct
// from the UsbDeviceInfo
//
// TXT fields:
// air: hardcoded as "none"
// mopria-certified: "mopria-certified"
// rp: hardcoded as "ipp/print"
// kind: "printer-kind"
// PaperMax: based on decoding "media-size-supported"
// URF: "urf-supported" with fallback to
// URF extracted from "printer-device-id"
// UUID: "printer-uuid", without "urn:uuid:" prefix
// Color: "color-supported"
// Duplex: search "sides-supported" for strings with
// prefix "one" or "two"
// note: "printer-location"
// qtotal: hardcoded as "1"
// usb_MDL: MDL, extracted from "printer-device-id"
// usb_MFG: MFG, extracted from "printer-device-id"
// usb_CMD: CMD, extracted from "printer-device-id"
// ty: "printer-make-and-model"
// priority: hardcoded as "50"
// product: "printer-make-and-model", in round brackets
// pdl: "document-format-supported"
// txtvers: hardcoded as "1"
// adminurl: "printer-more-info"
func (attrs ippAttrs) decode(usbinfo UsbDeviceInfo) (
ippinfo *IppPrinterInfo, svc DNSSdSvcInfo) {
svc = DNSSdSvcInfo{
Type: "_ipp._tcp",
SubTypes: []string{"_universal._sub._ipp._tcp"},
}
// Obtain IppPrinterInfo
ippinfo = &IppPrinterInfo{
AdminURL: attrs.strSingle("printer-more-info"),
IconURL: attrs.strSingle("printer-icons"),
}
// Obtain DNSSdName
ippinfo.DNSSdName = attrs.strSingle("printer-dns-sd-name")
if ippinfo.DNSSdName == "" {
ippinfo.DNSSdName = attrs.strSingle("printer-info")
}
if ippinfo.DNSSdName == "" {
ippinfo.DNSSdName = attrs.strSingle("printer-make-and-model")
}
if ippinfo.DNSSdName == "" {
ippinfo.DNSSdName = usbinfo.MfgAndProduct
}
// Obtain UUID
ippinfo.UUID = attrs.getUUID()
if ippinfo.UUID == "" {
ippinfo.UUID = usbinfo.UUID()
}
// Obtain and parse IEEE 1284 device ID
devid := make(map[string]string)
for _, id := range strings.Split(attrs.strSingle("printer-device-id"), ";") {
keyval := strings.SplitN(id, ":", 2)
if len(keyval) == 2 {
devid[keyval[0]] = keyval[1]
}
}
svc.Txt.Add("air", "none")
svc.Txt.IfNotEmpty("mopria-certified", attrs.strSingle("mopria-certified"))
svc.Txt.Add("rp", "ipp/print")
svc.Txt.Add("priority", "50")
svc.Txt.IfNotEmpty("kind", attrs.strJoined("printer-kind"))
svc.Txt.IfNotEmpty("PaperMax", attrs.getPaperMax())
if !svc.Txt.IfNotEmpty("URF", attrs.strJoined("urf-supported")) {
svc.Txt.IfNotEmpty("URF", devid["URF"])
}
svc.Txt.IfNotEmpty("UUID", ippinfo.UUID)
svc.Txt.IfNotEmpty("Color", attrs.getBool("color-supported"))
svc.Txt.IfNotEmpty("Duplex", attrs.getDuplex())
svc.Txt.Add("note", attrs.strSingle("printer-location"))
svc.Txt.Add("qtotal", "1")
svc.Txt.IfNotEmpty("usb_MDL", devid["MDL"])
svc.Txt.IfNotEmpty("usb_MFG", devid["MFG"])
svc.Txt.IfNotEmpty("usb_CMD", devid["CMD"])
svc.Txt.IfNotEmpty("ty", attrs.strSingle("printer-make-and-model"))
svc.Txt.IfNotEmpty("product", attrs.strBrackets("printer-make-and-model"))
svc.Txt.AddPDL("pdl", attrs.strJoined("document-format-supported"))
svc.Txt.Add("txtvers", "1")
svc.Txt.URLIfNotEmpty("adminurl", ippinfo.AdminURL)
return
}
// getUUID returns printer UUID, or "", if UUID not available
func (attrs ippAttrs) getUUID() string {
uuid := attrs.strSingle("printer-uuid")
return UUIDNormalize(uuid)
}
// getDuplex returns "T" if printer supports two-sided
// printing, "F" if not and "" if it cant' tell
func (attrs ippAttrs) getDuplex() string {
vals := attrs.getAttr(goipp.TypeString, "sides-supported")
one, two := false, false
for _, v := range vals {
s := string(v.(goipp.String))
switch {
case strings.HasPrefix(s, "one"):
one = true
case strings.HasPrefix(s, "two"):
two = true
}
}
if two {
return "T"
}
if one {
return "F"
}
return ""
}
// getPaperMax returns max paper size, supported by printer
//
// According to Bonjour Printing Specification, Version 1.2.1,
// it can take one of following values:
//
// "<legal-A4"
// "legal-A4"
// "tabloid-A3"
// "isoC-A2"
// ">isoC-A2"
//
// If PaperMax cannot be guessed, it returns empty string
func (attrs ippAttrs) getPaperMax() string {
// Roll over "media-size-supported", extract
// max x-dimension and max y-dimension
vals := attrs.getAttr(goipp.TypeCollection, "media-size-supported")
if vals == nil {
return ""
}
var xDimMax, yDimMax int
for _, collection := range vals {
var xDimAttr, yDimAttr goipp.Attribute
attrs := collection.(goipp.Collection)
for i := len(attrs) - 1; i >= 0; i-- {
switch attrs[i].Name {
case "x-dimension":
xDimAttr = attrs[i]
case "y-dimension":
yDimAttr = attrs[i]
}
}
if len(xDimAttr.Values) > 0 {
switch dim := xDimAttr.Values[0].V.(type) {
case goipp.Integer:
if int(dim) > xDimMax {
xDimMax = int(dim)
}
case goipp.Range:
if int(dim.Upper) > xDimMax {
xDimMax = int(dim.Upper)
}
}
}
if len(yDimAttr.Values) > 0 {
switch dim := yDimAttr.Values[0].V.(type) {
case goipp.Integer:
if int(dim) > yDimMax {
yDimMax = int(dim)
}
case goipp.Range:
if int(dim.Upper) > yDimMax {
yDimMax = int(dim.Upper)
}
}
}
}
if xDimMax == 0 || yDimMax == 0 {
return ""
}
// Now classify by paper size
return PaperSize{xDimMax, yDimMax}.Classify()
}
// Get a single-string attribute.
func (attrs ippAttrs) strSingle(name string) string {
strs := attrs.getStrings(name)
if len(strs) == 0 {
return ""
}
return strs[0]
}
// Get a multi-string attribute, represented as a comma-separated list
func (attrs ippAttrs) strJoined(name string) string {
strs := attrs.getStrings(name)
return strings.Join(strs, ",")
}
// Get a single string, and put it into brackets
func (attrs ippAttrs) strBrackets(name string) string {
s := attrs.strSingle(name)
if s != "" {
s = "(" + s + ")"
}
return s
}
// Get attribute's []string value by attribute name
func (attrs ippAttrs) getStrings(name string) []string {
vals := attrs.getAttr(goipp.TypeString, name)
strs := make([]string, len(vals))
for i := range vals {
strs[i] = string(vals[i].(goipp.String))
}
return strs
}
// Get boolean attribute. Returns "F" or "T" if attribute is found,
// empty string otherwise.
func (attrs ippAttrs) getBool(name string) string {
vals := attrs.getAttr(goipp.TypeBoolean, name)
if vals == nil {
return ""
}
if vals[0].(goipp.Boolean) {
return "T"
}
return "F"
}
// Get attribute's value by attribute name
// Value type is checked and enforced
func (attrs ippAttrs) getAttr(t goipp.Type, name string) []goipp.Value {
v, ok := attrs[name]
if ok && v[0].V.Type() == t {
var vals []goipp.Value
for i := range v {
vals = append(vals, v[i].V)
}
return vals
}
return nil
}