lib: rpc: The registered interfaces are a lists of singletons that are never removed.
[Samba.git] / source3 / client / smbspool_krb5_wrapper.c
bloba72006a4c4fec62205c3c0131fc8772720f7fb77
1 /*
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/>.
22 #include "includes.h"
23 #include "system/filesys.h"
24 #include "system/passwd.h"
26 #include <errno.h>
27 #include <stdlib.h>
28 #include <string.h>
30 #include <cups/backend.h>
32 #include "dynconfig/dynconfig.h"
34 #undef calloc
36 enum cups_smb_dbglvl_e {
37 CUPS_SMB_LOG_DEBUG = 0,
38 CUPS_SMB_LOG_ERROR,
40 static void cups_smb_debug(enum cups_smb_dbglvl_e lvl, const char *format, ...);
42 #define CUPS_SMB_DEBUG(...) cups_smb_debug(CUPS_SMB_LOG_DEBUG, __VA_ARGS__)
43 #define CUPS_SMB_ERROR(...) cups_smb_debug(CUPS_SMB_LOG_DEBUG, __VA_ARGS__)
45 static void cups_smb_debug(enum cups_smb_dbglvl_e lvl, const char *format, ...)
47 const char *prefix = "DEBUG";
48 char buffer[1024];
49 va_list va;
51 va_start(va, format);
52 vsnprintf(buffer, sizeof(buffer), format, va);
53 va_end(va);
55 switch (lvl) {
56 case CUPS_SMB_LOG_DEBUG:
57 prefix = "DEBUG";
58 break;
59 case CUPS_SMB_LOG_ERROR:
60 prefix = "ERROR";
61 break;
64 fprintf(stderr,
65 "%s: SMBSPOOL_KRB5 - %s\n",
66 prefix,
67 buffer);
71 * This is a helper binary to execute smbspool.
73 * It needs to be installed or symlinked as:
74 * /usr/lib/cups/backend/smb
76 * The permissions of the binary need to be set to 0700 so that it is executed
77 * as root. The binary switches to the user which is passed via the environment
78 * variable AUTH_UID, so we can access the kerberos ticket.
80 int main(int argc, char *argv[])
82 char smbspool_cmd[PATH_MAX] = {0};
83 struct passwd *pwd;
84 char gen_cc[PATH_MAX] = {0};
85 struct stat sb;
86 char *env;
87 uid_t uid = (uid_t)-1;
88 gid_t gid = (gid_t)-1;
89 unsigned long tmp;
90 int cmp;
91 int rc;
93 /* Check if AuthInfoRequired is set to negotiate */
94 env = getenv("AUTH_INFO_REQUIRED");
96 /* If not set, then just call smbspool. */
97 if (env == NULL) {
98 CUPS_SMB_DEBUG("AUTH_INFO_REQUIRED is not set - "
99 "execute smbspool");
100 goto smbspool;
101 } else {
102 CUPS_SMB_DEBUG("AUTH_INFO_REQUIRED=%s", env);
104 cmp = strcmp(env, "username,password");
105 if (cmp == 0) {
106 CUPS_SMB_DEBUG("Authenticate using username/password - "
107 "execute smbspool");
108 goto smbspool;
111 /* if AUTH_INFO_REQUIRED=none */
112 cmp = strcmp(env, "negotiate");
113 if (cmp != 0) {
114 CUPS_SMB_ERROR("Authentication unsupported");
115 fprintf(stderr, "ATTR: auth-info-required=negotiate\n");
116 return CUPS_BACKEND_AUTH_REQUIRED;
120 uid = getuid();
122 CUPS_SMB_DEBUG("Started with uid=%d\n", uid);
123 if (uid != 0) {
124 goto smbspool;
128 * AUTH_UID gets only set if we have an incoming connection over the
129 * CUPS unix domain socket.
131 env = getenv("AUTH_UID");
132 if (env == NULL) {
133 CUPS_SMB_ERROR("AUTH_UID is not set");
134 fprintf(stderr, "ATTR: auth-info-required=negotiate\n");
135 return CUPS_BACKEND_AUTH_REQUIRED;
138 if (strlen(env) > 10) {
139 CUPS_SMB_ERROR("Invalid AUTH_UID");
140 return CUPS_BACKEND_FAILED;
143 errno = 0;
144 tmp = strtoul(env, NULL, 10);
145 if (errno != 0 || tmp >= UINT32_MAX) {
146 CUPS_SMB_ERROR("Failed to convert AUTH_UID=%s", env);
147 return CUPS_BACKEND_FAILED;
149 uid = (uid_t)tmp;
151 pwd = getpwuid(uid);
152 if (pwd == NULL) {
153 CUPS_SMB_ERROR("Failed to find system user: %u - %s",
154 uid, strerror(errno));
155 return CUPS_BACKEND_FAILED;
157 gid = pwd->pw_gid;
159 rc = setgroups(0, NULL);
160 if (rc != 0) {
161 CUPS_SMB_ERROR("Failed to clear groups - %s",
162 strerror(errno));
163 return CUPS_BACKEND_FAILED;
166 CUPS_SMB_DEBUG("Switching to gid=%d", gid);
167 rc = setgid(gid);
168 if (rc != 0) {
169 CUPS_SMB_ERROR("Failed to switch to gid=%u",
170 gid,
171 strerror(errno));
172 return CUPS_BACKEND_FAILED;
175 CUPS_SMB_DEBUG("Switching to uid=%u", uid);
176 rc = setuid(uid);
177 if (rc != 0) {
178 CUPS_SMB_ERROR("Failed to switch to uid=%u",
179 uid,
180 strerror(errno));
181 return CUPS_BACKEND_FAILED;
184 snprintf(gen_cc, sizeof(gen_cc), "/tmp/krb5cc_%d", uid);
186 rc = lstat(gen_cc, &sb);
187 if (rc == 0) {
188 snprintf(gen_cc, sizeof(gen_cc), "FILE:/tmp/krb5cc_%d", uid);
189 } else {
190 snprintf(gen_cc, sizeof(gen_cc), "/run/user/%d/krb5cc", uid);
192 rc = lstat(gen_cc, &sb);
193 if (rc == 0 && S_ISDIR(sb.st_mode)) {
194 snprintf(gen_cc,
195 sizeof(gen_cc),
196 "DIR:/run/user/%d/krb5cc",
197 uid);
198 } else {
199 #if defined(__linux__)
200 snprintf(gen_cc,
201 sizeof(gen_cc),
202 "KEYRING:persistent:%d",
203 uid);
204 #endif
209 * Make sure we do not have LD_PRELOAD or other security relevant
210 * environment variables set.
212 #ifdef HAVE_CLEARENV
213 clearenv();
214 #else
216 extern char **environ;
217 environ = calloc(1, sizeof(*environ));
219 #endif
221 CUPS_SMB_DEBUG("Setting KRB5CCNAME to '%s'", gen_cc);
222 setenv("KRB5CCNAME", gen_cc, 1);
224 smbspool:
225 snprintf(smbspool_cmd,
226 sizeof(smbspool_cmd),
227 "%s/smbspool",
228 get_dyn_BINDIR());
230 return execv(smbspool_cmd, argv);