first pass at updating head branch to be to be the same as the SAMBA_2_0 branch
[kamenim/samba.git] / source3 / printing / print_svid.c
1 /*
2  * Copyright (C) 1997-1998 by Norm Jacobs, Colorado Springs, Colorado, USA
3  * Copyright (C) 1997-1998 by Sun Microsystem, Inc.
4  * All Rights Reserved
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,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU 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., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /*
22  * This module implements support for gathering and comparing available
23  * printer information on a SVID or XPG4 compliant system.  It does this
24  * through the use of the SVID/XPG4 command "lpstat(1)".
25  *
26  * The expectations is that execution of the command "lpstat -v" will
27  * generate responses in the form of:
28  *
29  *      device for serial: /dev/term/b
30  *      system for fax: server
31  *      system for color: server (as printer chroma)
32  */
33
34
35 #include "includes.h"
36 #include "smb.h"
37
38 #ifdef SYSV
39
40 extern int DEBUGLEVEL;
41
42 typedef struct printer {
43         char *name;
44         struct printer *next;
45 } printer_t;
46 static printer_t *printers = NULL;
47
48 static void populate_printers(void)
49 {
50         FILE *fp;
51
52         if ((fp = popen("/usr/bin/lpstat -v", "r")) != NULL) {
53                 char buf[BUFSIZ];
54
55                 while (fgets(buf, sizeof (buf), fp) != NULL) {
56                         printer_t *ptmp;
57                         char *name, *tmp;
58
59                         /* eat "system/device for " */
60                         if (((tmp = strchr(buf, ' ')) == NULL) ||
61                             ((tmp = strchr(++tmp, ' ')) == NULL))
62                                 continue;
63
64                         /*
65                          * In case we're only at the "for ".
66                          */
67
68             if(!strncmp("for ",++tmp,4))
69             {
70                                 tmp=strchr(tmp, ' ');
71                                 tmp++;
72                         }
73                         name = tmp;
74
75                         /* truncate the ": ..." */
76                         if ((tmp = strchr(name, ':')) != NULL)
77                                 *tmp = '\0';
78
79                         /* add it to the cache */
80                         if ((ptmp = malloc(sizeof (*ptmp))) != NULL) {
81                                 ZERO_STRUCTP(ptmp);
82                                 if((ptmp->name = strdup(name)) == NULL)
83                                         DEBUG(0,("populate_printers: malloc fail in strdup !\n"));
84                                 ptmp->next = printers;
85                                 printers = ptmp;
86                         } else {
87                                 DEBUG(0,("populate_printers: malloc fail for ptmp\n"));
88                         }
89                 }
90                 pclose(fp);
91         } else {
92                 DEBUG(0,( "Unable to run lpstat!\n"));
93         }
94 }
95
96
97 /*
98  * provide the equivalent of pcap_printer_fn() for SVID/XPG4 conforming
99  * systems.  It was unclear why pcap_printer_fn() was tossing names longer
100  * than 8 characters.  I suspect that its a protocol limit, but amazingly
101  * names longer than 8 characters appear to work with my test
102  * clients (Win95/NT).
103  */
104 void sysv_printer_fn(void (*fn)(char *, char *))
105 {
106         printer_t *tmp;
107
108         if (printers == NULL)
109                 populate_printers();
110         for (tmp = printers; tmp != NULL; tmp = tmp->next)
111                 (fn)(tmp->name, "");
112 }
113
114
115 /*
116  * provide the equivalent of pcap_printername_ok() for SVID/XPG4 conforming
117  * systems.
118  */
119 int sysv_printername_ok(char *name)
120 {
121         printer_t *tmp;
122
123         if (printers == NULL)
124                 populate_printers();
125         for (tmp = printers; tmp != NULL; tmp = tmp->next)
126                 if (strcmp(tmp->name, name) == 0)
127                         return (True);
128         return (False);
129 }
130
131 #else
132 /* this keeps fussy compilers happy */
133  void print_svid_dummy(void);
134  void print_svid_dummy(void) {}
135 #endif