CVE-2022-3437 third_party/heimdal: Don't pass NULL pointers to memcpy() in DES unwrap
[Samba.git] / source3 / printing / nt_printing_os2.c
blob82b8248203190d4ba1077724bce3c55421313a41
1 /*
2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-2000,
5 * Copyright (C) Jean François Micouleau 1998-2000.
6 * Copyright (C) Gerald Carter 2002-2005.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "includes.h"
23 #include "printing/nt_printing_os2.h"
25 /****************************************************************************
26 ***************************************************************************/
28 static char *win_driver;
29 static char *os2_driver;
31 static const char *get_win_driver(void)
33 if (win_driver == NULL) {
34 return "";
36 return win_driver;
39 static const char *get_os2_driver(void)
41 if (os2_driver == NULL) {
42 return "";
44 return os2_driver;
47 static bool set_driver_mapping(const char *from, const char *to)
49 SAFE_FREE(win_driver);
50 SAFE_FREE(os2_driver);
52 win_driver = SMB_STRDUP(from);
53 os2_driver = SMB_STRDUP(to);
55 if (win_driver == NULL || os2_driver == NULL) {
56 SAFE_FREE(win_driver);
57 SAFE_FREE(os2_driver);
58 return false;
60 return true;
63 /**
64 * @internal
66 * @brief Map a Windows driver to a OS/2 driver.
68 * @param[in] mem_ctx The memory context to use.
70 * @param[in,out] pdrivername The drivername of Windows to remap.
72 * @return WERR_OK on success, a corresponding WERROR on failure.
74 WERROR spoolss_map_to_os2_driver(TALLOC_CTX *mem_ctx, const char **pdrivername)
76 const struct loadparm_substitution *lp_sub =
77 loadparm_s3_global_substitution();
78 const char *mapfile = lp_os2_driver_map(talloc_tos(), lp_sub);
79 char **lines = NULL;
80 const char *drivername;
81 int numlines = 0;
82 int i;
84 if (pdrivername == NULL || *pdrivername == NULL || *pdrivername[0] == '\0') {
85 return WERR_INVALID_PARAMETER;
88 drivername = *pdrivername;
90 if (mapfile[0] == '\0') {
91 return WERR_FILE_NOT_FOUND;
94 if (strequal(drivername, get_win_driver())) {
95 DEBUG(3,("Mapped Windows driver %s to OS/2 driver %s\n",
96 drivername, get_os2_driver()));
97 drivername = talloc_strdup(mem_ctx, get_os2_driver());
98 if (drivername == NULL) {
99 return WERR_NOT_ENOUGH_MEMORY;
101 *pdrivername = drivername;
102 return WERR_OK;
105 lines = file_lines_load(mapfile, &numlines, 0, NULL);
106 if (numlines == 0 || lines == NULL) {
107 DEBUG(0,("No entries in OS/2 driver map %s\n", mapfile));
108 TALLOC_FREE(lines);
109 return WERR_EMPTY;
112 DEBUG(4,("Scanning OS/2 driver map %s\n",mapfile));
114 for( i = 0; i < numlines; i++) {
115 char *nt_name = lines[i];
116 char *os2_name = strchr(nt_name, '=');
118 if (os2_name == NULL) {
119 continue;
122 *os2_name++ = '\0';
124 while (isspace(*nt_name)) {
125 nt_name++;
128 if (*nt_name == '\0' || strchr("#;", *nt_name)) {
129 continue;
133 int l = strlen(nt_name);
134 while (l && isspace(nt_name[l - 1])) {
135 nt_name[l - 1] = 0;
136 l--;
140 while (isspace(*os2_name)) {
141 os2_name++;
145 int l = strlen(os2_name);
146 while (l && isspace(os2_name[l-1])) {
147 os2_name[l-1] = 0;
148 l--;
152 if (strequal(nt_name, drivername)) {
153 DEBUG(3,("Mapped Windows driver %s to OS/2 driver %s\n",drivername,os2_name));
154 set_driver_mapping(drivername, os2_name);
155 drivername = talloc_strdup(mem_ctx, os2_name);
156 TALLOC_FREE(lines);
157 if (drivername == NULL) {
158 return WERR_NOT_ENOUGH_MEMORY;
160 *pdrivername = drivername;
161 return WERR_OK;
165 TALLOC_FREE(lines);
166 return WERR_OK;