2 * Unix SMB/CIFS implementation.
4 * CUPS printing backend helper to execute smbspool
6 * Copyright (C) 2010-2011 Andreas Schneider <asn@samba.org>
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/>.
23 #include "system/filesys.h"
24 #include "system/passwd.h"
30 #include <cups/backend.h>
32 #include "dynconfig/dynconfig.h"
36 enum cups_smb_dbglvl_e
{
37 CUPS_SMB_LOG_DEBUG
= 0,
40 static void cups_smb_debug(enum cups_smb_dbglvl_e lvl
, const char *format
, ...)
41 PRINTF_ATTRIBUTE(2, 3);
43 #define CUPS_SMB_DEBUG(...) cups_smb_debug(CUPS_SMB_LOG_DEBUG, __VA_ARGS__)
44 #define CUPS_SMB_ERROR(...) cups_smb_debug(CUPS_SMB_LOG_DEBUG, __VA_ARGS__)
46 static void cups_smb_debug(enum cups_smb_dbglvl_e lvl
, const char *format
, ...)
48 const char *prefix
= "DEBUG";
53 vsnprintf(buffer
, sizeof(buffer
), format
, va
);
57 case CUPS_SMB_LOG_DEBUG
:
60 case CUPS_SMB_LOG_ERROR
:
66 "%s: SMBSPOOL_KRB5 - %s\n",
72 * This is a helper binary to execute smbspool.
74 * It needs to be installed or symlinked as:
75 * /usr/lib/cups/backend/smb
77 * The permissions of the binary need to be set to 0700 so that it is executed
78 * as root. The binary switches to the user which is passed via the environment
79 * variable AUTH_UID, so we can access the kerberos ticket.
81 int main(int argc
, char *argv
[])
83 char smbspool_cmd
[PATH_MAX
] = {0};
85 char gen_cc
[PATH_MAX
] = {0};
88 uid_t uid
= (uid_t
)-1;
89 gid_t gid
= (gid_t
)-1;
94 /* Check if AuthInfoRequired is set to negotiate */
95 env
= getenv("AUTH_INFO_REQUIRED");
97 /* If not set, then just call smbspool. */
99 CUPS_SMB_DEBUG("AUTH_INFO_REQUIRED is not set - "
103 CUPS_SMB_DEBUG("AUTH_INFO_REQUIRED=%s", env
);
105 cmp
= strcmp(env
, "username,password");
107 CUPS_SMB_DEBUG("Authenticate using username/password - "
112 /* if AUTH_INFO_REQUIRED=none */
113 cmp
= strcmp(env
, "negotiate");
115 CUPS_SMB_ERROR("Authentication unsupported");
116 fprintf(stderr
, "ATTR: auth-info-required=negotiate\n");
117 return CUPS_BACKEND_AUTH_REQUIRED
;
123 CUPS_SMB_DEBUG("Started with uid=%d\n", uid
);
129 * AUTH_UID gets only set if we have an incoming connection over the
130 * CUPS unix domain socket.
132 env
= getenv("AUTH_UID");
134 CUPS_SMB_ERROR("AUTH_UID is not set");
135 fprintf(stderr
, "ATTR: auth-info-required=negotiate\n");
136 return CUPS_BACKEND_AUTH_REQUIRED
;
139 if (strlen(env
) > 10) {
140 CUPS_SMB_ERROR("Invalid AUTH_UID");
141 return CUPS_BACKEND_FAILED
;
145 tmp
= strtoul(env
, NULL
, 10);
146 if (errno
!= 0 || tmp
>= UINT32_MAX
) {
147 CUPS_SMB_ERROR("Failed to convert AUTH_UID=%s", env
);
148 return CUPS_BACKEND_FAILED
;
154 CUPS_SMB_ERROR("Failed to find system user: %u - %s",
155 uid
, strerror(errno
));
156 return CUPS_BACKEND_FAILED
;
160 rc
= setgroups(0, NULL
);
162 CUPS_SMB_ERROR("Failed to clear groups - %s",
164 return CUPS_BACKEND_FAILED
;
167 CUPS_SMB_DEBUG("Switching to gid=%d", gid
);
170 CUPS_SMB_ERROR("Failed to switch to gid=%u - %s",
173 return CUPS_BACKEND_FAILED
;
176 CUPS_SMB_DEBUG("Switching to uid=%u", uid
);
179 CUPS_SMB_ERROR("Failed to switch to uid=%u - %s",
182 return CUPS_BACKEND_FAILED
;
185 env
= getenv("KRB5CCNAME");
186 if (env
!= NULL
&& env
[0] != 0) {
187 snprintf(gen_cc
, sizeof(gen_cc
), "%s", env
);
192 snprintf(gen_cc
, sizeof(gen_cc
), "/tmp/krb5cc_%d", uid
);
194 rc
= lstat(gen_cc
, &sb
);
196 snprintf(gen_cc
, sizeof(gen_cc
), "FILE:/tmp/krb5cc_%d", uid
);
198 snprintf(gen_cc
, sizeof(gen_cc
), "/run/user/%d/krb5cc", uid
);
200 rc
= lstat(gen_cc
, &sb
);
201 if (rc
== 0 && S_ISDIR(sb
.st_mode
)) {
204 "DIR:/run/user/%d/krb5cc",
207 #if defined(__linux__)
210 "KEYRING:persistent:%d",
218 * Make sure we do not have LD_PRELOAD or other security relevant
219 * environment variables set.
225 extern char **environ
;
226 environ
= calloc(1, sizeof(*environ
));
230 CUPS_SMB_DEBUG("Setting KRB5CCNAME to '%s'", gen_cc
);
231 setenv("KRB5CCNAME", gen_cc
, 1);
234 snprintf(smbspool_cmd
,
235 sizeof(smbspool_cmd
),
239 return execv(smbspool_cmd
, argv
);