auth_gss.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152
  1. /*
  2. * linux/net/sunrpc/auth_gss.c
  3. *
  4. * RPCSEC_GSS client authentication.
  5. *
  6. * Copyright (c) 2000 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Dug Song <dugsong@monkey.org>
  10. * Andy Adamson <andros@umich.edu>
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * 1. Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. * 2. Redistributions in binary form must reproduce the above copyright
  19. * notice, this list of conditions and the following disclaimer in the
  20. * documentation and/or other materials provided with the distribution.
  21. * 3. Neither the name of the University nor the names of its
  22. * contributors may be used to endorse or promote products derived
  23. * from this software without specific prior written permission.
  24. *
  25. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  26. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  27. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  28. * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  30. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  31. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  32. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  33. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  34. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  35. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. * $Id$
  38. */
  39. #include <linux/module.h>
  40. #include <linux/init.h>
  41. #include <linux/types.h>
  42. #include <linux/slab.h>
  43. #include <linux/sched.h>
  44. #include <linux/sunrpc/clnt.h>
  45. #include <linux/sunrpc/auth.h>
  46. #include <linux/sunrpc/auth_gss.h>
  47. #include <linux/sunrpc/svcauth_gss.h>
  48. #include <linux/sunrpc/gss_err.h>
  49. #include <linux/workqueue.h>
  50. #include <linux/sunrpc/rpc_pipe_fs.h>
  51. #include <linux/sunrpc/gss_api.h>
  52. #include <asm/uaccess.h>
  53. static struct rpc_authops authgss_ops;
  54. static struct rpc_credops gss_credops;
  55. #ifdef RPC_DEBUG
  56. # define RPCDBG_FACILITY RPCDBG_AUTH
  57. #endif
  58. #define NFS_NGROUPS 16
  59. #define GSS_CRED_EXPIRE (60 * HZ) /* XXX: reasonable? */
  60. #define GSS_CRED_SLACK 1024 /* XXX: unused */
  61. /* length of a krb5 verifier (48), plus data added before arguments when
  62. * using integrity (two 4-byte integers): */
  63. #define GSS_VERF_SLACK 56
  64. /* XXX this define must match the gssd define
  65. * as it is passed to gssd to signal the use of
  66. * machine creds should be part of the shared rpc interface */
  67. #define CA_RUN_AS_MACHINE 0x00000200
  68. /* dump the buffer in `emacs-hexl' style */
  69. #define isprint(c) ((c > 0x1f) && (c < 0x7f))
  70. static DEFINE_RWLOCK(gss_ctx_lock);
  71. struct gss_auth {
  72. struct rpc_auth rpc_auth;
  73. struct gss_api_mech *mech;
  74. enum rpc_gss_svc service;
  75. struct list_head upcalls;
  76. struct rpc_clnt *client;
  77. struct dentry *dentry;
  78. char path[48];
  79. spinlock_t lock;
  80. };
  81. static void gss_destroy_ctx(struct gss_cl_ctx *);
  82. static struct rpc_pipe_ops gss_upcall_ops;
  83. void
  84. print_hexl(u32 *p, u_int length, u_int offset)
  85. {
  86. u_int i, j, jm;
  87. u8 c, *cp;
  88. dprintk("RPC: print_hexl: length %d\n",length);
  89. dprintk("\n");
  90. cp = (u8 *) p;
  91. for (i = 0; i < length; i += 0x10) {
  92. dprintk(" %04x: ", (u_int)(i + offset));
  93. jm = length - i;
  94. jm = jm > 16 ? 16 : jm;
  95. for (j = 0; j < jm; j++) {
  96. if ((j % 2) == 1)
  97. dprintk("%02x ", (u_int)cp[i+j]);
  98. else
  99. dprintk("%02x", (u_int)cp[i+j]);
  100. }
  101. for (; j < 16; j++) {
  102. if ((j % 2) == 1)
  103. dprintk(" ");
  104. else
  105. dprintk(" ");
  106. }
  107. dprintk(" ");
  108. for (j = 0; j < jm; j++) {
  109. c = cp[i+j];
  110. c = isprint(c) ? c : '.';
  111. dprintk("%c", c);
  112. }
  113. dprintk("\n");
  114. }
  115. }
  116. EXPORT_SYMBOL(print_hexl);
  117. static inline struct gss_cl_ctx *
  118. gss_get_ctx(struct gss_cl_ctx *ctx)
  119. {
  120. atomic_inc(&ctx->count);
  121. return ctx;
  122. }
  123. static inline void
  124. gss_put_ctx(struct gss_cl_ctx *ctx)
  125. {
  126. if (atomic_dec_and_test(&ctx->count))
  127. gss_destroy_ctx(ctx);
  128. }
  129. static void
  130. gss_cred_set_ctx(struct rpc_cred *cred, struct gss_cl_ctx *ctx)
  131. {
  132. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  133. struct gss_cl_ctx *old;
  134. write_lock(&gss_ctx_lock);
  135. old = gss_cred->gc_ctx;
  136. gss_cred->gc_ctx = ctx;
  137. cred->cr_flags |= RPCAUTH_CRED_UPTODATE;
  138. write_unlock(&gss_ctx_lock);
  139. if (old)
  140. gss_put_ctx(old);
  141. }
  142. static int
  143. gss_cred_is_uptodate_ctx(struct rpc_cred *cred)
  144. {
  145. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  146. int res = 0;
  147. read_lock(&gss_ctx_lock);
  148. if ((cred->cr_flags & RPCAUTH_CRED_UPTODATE) && gss_cred->gc_ctx)
  149. res = 1;
  150. read_unlock(&gss_ctx_lock);
  151. return res;
  152. }
  153. static const void *
  154. simple_get_bytes(const void *p, const void *end, void *res, size_t len)
  155. {
  156. const void *q = (const void *)((const char *)p + len);
  157. if (unlikely(q > end || q < p))
  158. return ERR_PTR(-EFAULT);
  159. memcpy(res, p, len);
  160. return q;
  161. }
  162. static inline const void *
  163. simple_get_netobj(const void *p, const void *end, struct xdr_netobj *dest)
  164. {
  165. const void *q;
  166. unsigned int len;
  167. p = simple_get_bytes(p, end, &len, sizeof(len));
  168. if (IS_ERR(p))
  169. return p;
  170. q = (const void *)((const char *)p + len);
  171. if (unlikely(q > end || q < p))
  172. return ERR_PTR(-EFAULT);
  173. dest->data = kmalloc(len, GFP_KERNEL);
  174. if (unlikely(dest->data == NULL))
  175. return ERR_PTR(-ENOMEM);
  176. dest->len = len;
  177. memcpy(dest->data, p, len);
  178. return q;
  179. }
  180. static struct gss_cl_ctx *
  181. gss_cred_get_ctx(struct rpc_cred *cred)
  182. {
  183. struct gss_cred *gss_cred = container_of(cred, struct gss_cred, gc_base);
  184. struct gss_cl_ctx *ctx = NULL;
  185. read_lock(&gss_ctx_lock);
  186. if (gss_cred->gc_ctx)
  187. ctx = gss_get_ctx(gss_cred->gc_ctx);
  188. read_unlock(&gss_ctx_lock);
  189. return ctx;
  190. }
  191. static struct gss_cl_ctx *
  192. gss_alloc_context(void)
  193. {
  194. struct gss_cl_ctx *ctx;
  195. ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
  196. if (ctx != NULL) {
  197. memset(ctx, 0, sizeof(*ctx));
  198. ctx->gc_proc = RPC_GSS_PROC_DATA;
  199. ctx->gc_seq = 1; /* NetApp 6.4R1 doesn't accept seq. no. 0 */
  200. spin_lock_init(&ctx->gc_seq_lock);
  201. atomic_set(&ctx->count,1);
  202. }
  203. return ctx;
  204. }
  205. #define GSSD_MIN_TIMEOUT (60 * 60)
  206. static const void *
  207. gss_fill_context(const void *p, const void *end, struct gss_cl_ctx *ctx, struct gss_api_mech *gm)
  208. {
  209. const void *q;
  210. unsigned int seclen;
  211. unsigned int timeout;
  212. u32 window_size;
  213. int ret;
  214. /* First unsigned int gives the lifetime (in seconds) of the cred */
  215. p = simple_get_bytes(p, end, &timeout, sizeof(timeout));
  216. if (IS_ERR(p))
  217. goto err;
  218. if (timeout == 0)
  219. timeout = GSSD_MIN_TIMEOUT;
  220. ctx->gc_expiry = jiffies + (unsigned long)timeout * HZ * 3 / 4;
  221. /* Sequence number window. Determines the maximum number of simultaneous requests */
  222. p = simple_get_bytes(p, end, &window_size, sizeof(window_size));
  223. if (IS_ERR(p))
  224. goto err;
  225. ctx->gc_win = window_size;
  226. /* gssd signals an error by passing ctx->gc_win = 0: */
  227. if (ctx->gc_win == 0) {
  228. /* in which case, p points to an error code which we ignore */
  229. p = ERR_PTR(-EACCES);
  230. goto err;
  231. }
  232. /* copy the opaque wire context */
  233. p = simple_get_netobj(p, end, &ctx->gc_wire_ctx);
  234. if (IS_ERR(p))
  235. goto err;
  236. /* import the opaque security context */
  237. p = simple_get_bytes(p, end, &seclen, sizeof(seclen));
  238. if (IS_ERR(p))
  239. goto err;
  240. q = (const void *)((const char *)p + seclen);
  241. if (unlikely(q > end || q < p)) {
  242. p = ERR_PTR(-EFAULT);
  243. goto err;
  244. }
  245. ret = gss_import_sec_context(p, seclen, gm, &ctx->gc_gss_ctx);
  246. if (ret < 0) {
  247. p = ERR_PTR(ret);
  248. goto err;
  249. }
  250. return q;
  251. err:
  252. dprintk("RPC: gss_fill_context returning %ld\n", -PTR_ERR(p));
  253. return p;
  254. }
  255. struct gss_upcall_msg {
  256. atomic_t count;
  257. uid_t uid;
  258. struct rpc_pipe_msg msg;
  259. struct list_head list;
  260. struct gss_auth *auth;
  261. struct rpc_wait_queue rpc_waitqueue;
  262. wait_queue_head_t waitqueue;
  263. struct gss_cl_ctx *ctx;
  264. };
  265. static void
  266. gss_release_msg(struct gss_upcall_msg *gss_msg)
  267. {
  268. if (!atomic_dec_and_test(&gss_msg->count))
  269. return;
  270. BUG_ON(!list_empty(&gss_msg->list));
  271. if (gss_msg->ctx != NULL)
  272. gss_put_ctx(gss_msg->ctx);
  273. kfree(gss_msg);
  274. }
  275. static struct gss_upcall_msg *
  276. __gss_find_upcall(struct gss_auth *gss_auth, uid_t uid)
  277. {
  278. struct gss_upcall_msg *pos;
  279. list_for_each_entry(pos, &gss_auth->upcalls, list) {
  280. if (pos->uid != uid)
  281. continue;
  282. atomic_inc(&pos->count);
  283. dprintk("RPC: gss_find_upcall found msg %p\n", pos);
  284. return pos;
  285. }
  286. dprintk("RPC: gss_find_upcall found nothing\n");
  287. return NULL;
  288. }
  289. /* Try to add a upcall to the pipefs queue.
  290. * If an upcall owned by our uid already exists, then we return a reference
  291. * to that upcall instead of adding the new upcall.
  292. */
  293. static inline struct gss_upcall_msg *
  294. gss_add_msg(struct gss_auth *gss_auth, struct gss_upcall_msg *gss_msg)
  295. {
  296. struct gss_upcall_msg *old;
  297. spin_lock(&gss_auth->lock);
  298. old = __gss_find_upcall(gss_auth, gss_msg->uid);
  299. if (old == NULL) {
  300. atomic_inc(&gss_msg->count);
  301. list_add(&gss_msg->list, &gss_auth->upcalls);
  302. } else
  303. gss_msg = old;
  304. spin_unlock(&gss_auth->lock);
  305. return gss_msg;
  306. }
  307. static void
  308. __gss_unhash_msg(struct gss_upcall_msg *gss_msg)
  309. {
  310. if (list_empty(&gss_msg->list))
  311. return;
  312. list_del_init(&gss_msg->list);
  313. rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
  314. wake_up_all(&gss_msg->waitqueue);
  315. atomic_dec(&gss_msg->count);
  316. }
  317. static void
  318. gss_unhash_msg(struct gss_upcall_msg *gss_msg)
  319. {
  320. struct gss_auth *gss_auth = gss_msg->auth;
  321. spin_lock(&gss_auth->lock);
  322. __gss_unhash_msg(gss_msg);
  323. spin_unlock(&gss_auth->lock);
  324. }
  325. static void
  326. gss_upcall_callback(struct rpc_task *task)
  327. {
  328. struct gss_cred *gss_cred = container_of(task->tk_msg.rpc_cred,
  329. struct gss_cred, gc_base);
  330. struct gss_upcall_msg *gss_msg = gss_cred->gc_upcall;
  331. BUG_ON(gss_msg == NULL);
  332. if (gss_msg->ctx)
  333. gss_cred_set_ctx(task->tk_msg.rpc_cred, gss_get_ctx(gss_msg->ctx));
  334. else
  335. task->tk_status = gss_msg->msg.errno;
  336. spin_lock(&gss_msg->auth->lock);
  337. gss_cred->gc_upcall = NULL;
  338. rpc_wake_up_status(&gss_msg->rpc_waitqueue, gss_msg->msg.errno);
  339. spin_unlock(&gss_msg->auth->lock);
  340. gss_release_msg(gss_msg);
  341. }
  342. static inline struct gss_upcall_msg *
  343. gss_alloc_msg(struct gss_auth *gss_auth, uid_t uid)
  344. {
  345. struct gss_upcall_msg *gss_msg;
  346. gss_msg = kmalloc(sizeof(*gss_msg), GFP_KERNEL);
  347. if (gss_msg != NULL) {
  348. memset(gss_msg, 0, sizeof(*gss_msg));
  349. INIT_LIST_HEAD(&gss_msg->list);
  350. rpc_init_wait_queue(&gss_msg->rpc_waitqueue, "RPCSEC_GSS upcall waitq");
  351. init_waitqueue_head(&gss_msg->waitqueue);
  352. atomic_set(&gss_msg->count, 1);
  353. gss_msg->msg.data = &gss_msg->uid;
  354. gss_msg->msg.len = sizeof(gss_msg->uid);
  355. gss_msg->uid = uid;
  356. gss_msg->auth = gss_auth;
  357. }
  358. return gss_msg;
  359. }
  360. static struct gss_upcall_msg *
  361. gss_setup_upcall(struct rpc_clnt *clnt, struct gss_auth *gss_auth, struct rpc_cred *cred)
  362. {
  363. struct gss_upcall_msg *gss_new, *gss_msg;
  364. gss_new = gss_alloc_msg(gss_auth, cred->cr_uid);
  365. if (gss_new == NULL)
  366. return ERR_PTR(-ENOMEM);
  367. gss_msg = gss_add_msg(gss_auth, gss_new);
  368. if (gss_msg == gss_new) {
  369. int res = rpc_queue_upcall(gss_auth->dentry->d_inode, &gss_new->msg);
  370. if (res) {
  371. gss_unhash_msg(gss_new);
  372. gss_msg = ERR_PTR(res);
  373. }
  374. } else
  375. gss_release_msg(gss_new);
  376. return gss_msg;
  377. }
  378. static inline int
  379. gss_refresh_upcall(struct rpc_task *task)
  380. {
  381. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  382. struct gss_auth *gss_auth = container_of(task->tk_client->cl_auth,
  383. struct gss_auth, rpc_auth);
  384. struct gss_cred *gss_cred = container_of(cred,
  385. struct gss_cred, gc_base);
  386. struct gss_upcall_msg *gss_msg;
  387. int err = 0;
  388. dprintk("RPC: %4u gss_refresh_upcall for uid %u\n", task->tk_pid, cred->cr_uid);
  389. gss_msg = gss_setup_upcall(task->tk_client, gss_auth, cred);
  390. if (IS_ERR(gss_msg)) {
  391. err = PTR_ERR(gss_msg);
  392. goto out;
  393. }
  394. spin_lock(&gss_auth->lock);
  395. if (gss_cred->gc_upcall != NULL)
  396. rpc_sleep_on(&gss_cred->gc_upcall->rpc_waitqueue, task, NULL, NULL);
  397. else if (gss_msg->ctx == NULL && gss_msg->msg.errno >= 0) {
  398. task->tk_timeout = 0;
  399. gss_cred->gc_upcall = gss_msg;
  400. /* gss_upcall_callback will release the reference to gss_upcall_msg */
  401. atomic_inc(&gss_msg->count);
  402. rpc_sleep_on(&gss_msg->rpc_waitqueue, task, gss_upcall_callback, NULL);
  403. } else
  404. err = gss_msg->msg.errno;
  405. spin_unlock(&gss_auth->lock);
  406. gss_release_msg(gss_msg);
  407. out:
  408. dprintk("RPC: %4u gss_refresh_upcall for uid %u result %d\n", task->tk_pid,
  409. cred->cr_uid, err);
  410. return err;
  411. }
  412. static inline int
  413. gss_create_upcall(struct gss_auth *gss_auth, struct gss_cred *gss_cred)
  414. {
  415. struct rpc_cred *cred = &gss_cred->gc_base;
  416. struct gss_upcall_msg *gss_msg;
  417. DEFINE_WAIT(wait);
  418. int err = 0;
  419. dprintk("RPC: gss_upcall for uid %u\n", cred->cr_uid);
  420. gss_msg = gss_setup_upcall(gss_auth->client, gss_auth, cred);
  421. if (IS_ERR(gss_msg)) {
  422. err = PTR_ERR(gss_msg);
  423. goto out;
  424. }
  425. for (;;) {
  426. prepare_to_wait(&gss_msg->waitqueue, &wait, TASK_INTERRUPTIBLE);
  427. spin_lock(&gss_auth->lock);
  428. if (gss_msg->ctx != NULL || gss_msg->msg.errno < 0) {
  429. spin_unlock(&gss_auth->lock);
  430. break;
  431. }
  432. spin_unlock(&gss_auth->lock);
  433. if (signalled()) {
  434. err = -ERESTARTSYS;
  435. goto out_intr;
  436. }
  437. schedule();
  438. }
  439. if (gss_msg->ctx)
  440. gss_cred_set_ctx(cred, gss_get_ctx(gss_msg->ctx));
  441. else
  442. err = gss_msg->msg.errno;
  443. out_intr:
  444. finish_wait(&gss_msg->waitqueue, &wait);
  445. gss_release_msg(gss_msg);
  446. out:
  447. dprintk("RPC: gss_create_upcall for uid %u result %d\n", cred->cr_uid, err);
  448. return err;
  449. }
  450. static ssize_t
  451. gss_pipe_upcall(struct file *filp, struct rpc_pipe_msg *msg,
  452. char __user *dst, size_t buflen)
  453. {
  454. char *data = (char *)msg->data + msg->copied;
  455. ssize_t mlen = msg->len;
  456. ssize_t left;
  457. if (mlen > buflen)
  458. mlen = buflen;
  459. left = copy_to_user(dst, data, mlen);
  460. if (left < 0) {
  461. msg->errno = left;
  462. return left;
  463. }
  464. mlen -= left;
  465. msg->copied += mlen;
  466. msg->errno = 0;
  467. return mlen;
  468. }
  469. #define MSG_BUF_MAXSIZE 1024
  470. static ssize_t
  471. gss_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
  472. {
  473. const void *p, *end;
  474. void *buf;
  475. struct rpc_clnt *clnt;
  476. struct gss_auth *gss_auth;
  477. struct rpc_cred *cred;
  478. struct gss_upcall_msg *gss_msg;
  479. struct gss_cl_ctx *ctx;
  480. uid_t uid;
  481. int err = -EFBIG;
  482. if (mlen > MSG_BUF_MAXSIZE)
  483. goto out;
  484. err = -ENOMEM;
  485. buf = kmalloc(mlen, GFP_KERNEL);
  486. if (!buf)
  487. goto out;
  488. clnt = RPC_I(filp->f_dentry->d_inode)->private;
  489. err = -EFAULT;
  490. if (copy_from_user(buf, src, mlen))
  491. goto err;
  492. end = (const void *)((char *)buf + mlen);
  493. p = simple_get_bytes(buf, end, &uid, sizeof(uid));
  494. if (IS_ERR(p)) {
  495. err = PTR_ERR(p);
  496. goto err;
  497. }
  498. err = -ENOMEM;
  499. ctx = gss_alloc_context();
  500. if (ctx == NULL)
  501. goto err;
  502. err = 0;
  503. gss_auth = container_of(clnt->cl_auth, struct gss_auth, rpc_auth);
  504. p = gss_fill_context(p, end, ctx, gss_auth->mech);
  505. if (IS_ERR(p)) {
  506. err = PTR_ERR(p);
  507. if (err != -EACCES)
  508. goto err_put_ctx;
  509. }
  510. spin_lock(&gss_auth->lock);
  511. gss_msg = __gss_find_upcall(gss_auth, uid);
  512. if (gss_msg) {
  513. if (err == 0 && gss_msg->ctx == NULL)
  514. gss_msg->ctx = gss_get_ctx(ctx);
  515. gss_msg->msg.errno = err;
  516. __gss_unhash_msg(gss_msg);
  517. spin_unlock(&gss_auth->lock);
  518. gss_release_msg(gss_msg);
  519. } else {
  520. struct auth_cred acred = { .uid = uid };
  521. spin_unlock(&gss_auth->lock);
  522. cred = rpcauth_lookup_credcache(clnt->cl_auth, &acred, 0);
  523. if (IS_ERR(cred)) {
  524. err = PTR_ERR(cred);
  525. goto err_put_ctx;
  526. }
  527. gss_cred_set_ctx(cred, gss_get_ctx(ctx));
  528. }
  529. gss_put_ctx(ctx);
  530. kfree(buf);
  531. dprintk("RPC: gss_pipe_downcall returning length %Zu\n", mlen);
  532. return mlen;
  533. err_put_ctx:
  534. gss_put_ctx(ctx);
  535. err:
  536. kfree(buf);
  537. out:
  538. dprintk("RPC: gss_pipe_downcall returning %d\n", err);
  539. return err;
  540. }
  541. static void
  542. gss_pipe_release(struct inode *inode)
  543. {
  544. struct rpc_inode *rpci = RPC_I(inode);
  545. struct rpc_clnt *clnt;
  546. struct rpc_auth *auth;
  547. struct gss_auth *gss_auth;
  548. clnt = rpci->private;
  549. auth = clnt->cl_auth;
  550. gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  551. spin_lock(&gss_auth->lock);
  552. while (!list_empty(&gss_auth->upcalls)) {
  553. struct gss_upcall_msg *gss_msg;
  554. gss_msg = list_entry(gss_auth->upcalls.next,
  555. struct gss_upcall_msg, list);
  556. gss_msg->msg.errno = -EPIPE;
  557. atomic_inc(&gss_msg->count);
  558. __gss_unhash_msg(gss_msg);
  559. spin_unlock(&gss_auth->lock);
  560. gss_release_msg(gss_msg);
  561. spin_lock(&gss_auth->lock);
  562. }
  563. spin_unlock(&gss_auth->lock);
  564. }
  565. static void
  566. gss_pipe_destroy_msg(struct rpc_pipe_msg *msg)
  567. {
  568. struct gss_upcall_msg *gss_msg = container_of(msg, struct gss_upcall_msg, msg);
  569. static unsigned long ratelimit;
  570. if (msg->errno < 0) {
  571. dprintk("RPC: gss_pipe_destroy_msg releasing msg %p\n",
  572. gss_msg);
  573. atomic_inc(&gss_msg->count);
  574. gss_unhash_msg(gss_msg);
  575. if (msg->errno == -ETIMEDOUT || msg->errno == -EPIPE) {
  576. unsigned long now = jiffies;
  577. if (time_after(now, ratelimit)) {
  578. printk(KERN_WARNING "RPC: AUTH_GSS upcall timed out.\n"
  579. "Please check user daemon is running!\n");
  580. ratelimit = now + 15*HZ;
  581. }
  582. }
  583. gss_release_msg(gss_msg);
  584. }
  585. }
  586. /*
  587. * NOTE: we have the opportunity to use different
  588. * parameters based on the input flavor (which must be a pseudoflavor)
  589. */
  590. static struct rpc_auth *
  591. gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
  592. {
  593. struct gss_auth *gss_auth;
  594. struct rpc_auth * auth;
  595. int err = -ENOMEM; /* XXX? */
  596. dprintk("RPC: creating GSS authenticator for client %p\n",clnt);
  597. if (!try_module_get(THIS_MODULE))
  598. return ERR_PTR(err);
  599. if (!(gss_auth = kmalloc(sizeof(*gss_auth), GFP_KERNEL)))
  600. goto out_dec;
  601. gss_auth->client = clnt;
  602. err = -EINVAL;
  603. gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
  604. if (!gss_auth->mech) {
  605. printk(KERN_WARNING "%s: Pseudoflavor %d not found!",
  606. __FUNCTION__, flavor);
  607. goto err_free;
  608. }
  609. gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
  610. if (gss_auth->service == 0)
  611. goto err_put_mech;
  612. INIT_LIST_HEAD(&gss_auth->upcalls);
  613. spin_lock_init(&gss_auth->lock);
  614. auth = &gss_auth->rpc_auth;
  615. auth->au_cslack = GSS_CRED_SLACK >> 2;
  616. auth->au_rslack = GSS_VERF_SLACK >> 2;
  617. auth->au_ops = &authgss_ops;
  618. auth->au_flavor = flavor;
  619. atomic_set(&auth->au_count, 1);
  620. err = rpcauth_init_credcache(auth, GSS_CRED_EXPIRE);
  621. if (err)
  622. goto err_put_mech;
  623. snprintf(gss_auth->path, sizeof(gss_auth->path), "%s/%s",
  624. clnt->cl_pathname,
  625. gss_auth->mech->gm_name);
  626. gss_auth->dentry = rpc_mkpipe(gss_auth->path, clnt, &gss_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
  627. if (IS_ERR(gss_auth->dentry)) {
  628. err = PTR_ERR(gss_auth->dentry);
  629. goto err_put_mech;
  630. }
  631. return auth;
  632. err_put_mech:
  633. gss_mech_put(gss_auth->mech);
  634. err_free:
  635. kfree(gss_auth);
  636. out_dec:
  637. module_put(THIS_MODULE);
  638. return ERR_PTR(err);
  639. }
  640. static void
  641. gss_destroy(struct rpc_auth *auth)
  642. {
  643. struct gss_auth *gss_auth;
  644. dprintk("RPC: destroying GSS authenticator %p flavor %d\n",
  645. auth, auth->au_flavor);
  646. gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  647. rpc_unlink(gss_auth->path);
  648. gss_mech_put(gss_auth->mech);
  649. rpcauth_free_credcache(auth);
  650. kfree(gss_auth);
  651. module_put(THIS_MODULE);
  652. }
  653. /* gss_destroy_cred (and gss_destroy_ctx) are used to clean up after failure
  654. * to create a new cred or context, so they check that things have been
  655. * allocated before freeing them. */
  656. static void
  657. gss_destroy_ctx(struct gss_cl_ctx *ctx)
  658. {
  659. dprintk("RPC: gss_destroy_ctx\n");
  660. if (ctx->gc_gss_ctx)
  661. gss_delete_sec_context(&ctx->gc_gss_ctx);
  662. kfree(ctx->gc_wire_ctx.data);
  663. kfree(ctx);
  664. }
  665. static void
  666. gss_destroy_cred(struct rpc_cred *rc)
  667. {
  668. struct gss_cred *cred = container_of(rc, struct gss_cred, gc_base);
  669. dprintk("RPC: gss_destroy_cred \n");
  670. if (cred->gc_ctx)
  671. gss_put_ctx(cred->gc_ctx);
  672. kfree(cred);
  673. }
  674. /*
  675. * Lookup RPCSEC_GSS cred for the current process
  676. */
  677. static struct rpc_cred *
  678. gss_lookup_cred(struct rpc_auth *auth, struct auth_cred *acred, int taskflags)
  679. {
  680. return rpcauth_lookup_credcache(auth, acred, taskflags);
  681. }
  682. static struct rpc_cred *
  683. gss_create_cred(struct rpc_auth *auth, struct auth_cred *acred, int taskflags)
  684. {
  685. struct gss_auth *gss_auth = container_of(auth, struct gss_auth, rpc_auth);
  686. struct gss_cred *cred = NULL;
  687. int err = -ENOMEM;
  688. dprintk("RPC: gss_create_cred for uid %d, flavor %d\n",
  689. acred->uid, auth->au_flavor);
  690. if (!(cred = kmalloc(sizeof(*cred), GFP_KERNEL)))
  691. goto out_err;
  692. memset(cred, 0, sizeof(*cred));
  693. atomic_set(&cred->gc_count, 1);
  694. cred->gc_uid = acred->uid;
  695. /*
  696. * Note: in order to force a call to call_refresh(), we deliberately
  697. * fail to flag the credential as RPCAUTH_CRED_UPTODATE.
  698. */
  699. cred->gc_flags = 0;
  700. cred->gc_base.cr_ops = &gss_credops;
  701. cred->gc_service = gss_auth->service;
  702. err = gss_create_upcall(gss_auth, cred);
  703. if (err < 0)
  704. goto out_err;
  705. return &cred->gc_base;
  706. out_err:
  707. dprintk("RPC: gss_create_cred failed with error %d\n", err);
  708. if (cred) gss_destroy_cred(&cred->gc_base);
  709. return ERR_PTR(err);
  710. }
  711. static int
  712. gss_match(struct auth_cred *acred, struct rpc_cred *rc, int taskflags)
  713. {
  714. struct gss_cred *gss_cred = container_of(rc, struct gss_cred, gc_base);
  715. /* Don't match with creds that have expired. */
  716. if (gss_cred->gc_ctx && time_after(jiffies, gss_cred->gc_ctx->gc_expiry))
  717. return 0;
  718. return (rc->cr_uid == acred->uid);
  719. }
  720. /*
  721. * Marshal credentials.
  722. * Maybe we should keep a cached credential for performance reasons.
  723. */
  724. static u32 *
  725. gss_marshal(struct rpc_task *task, u32 *p)
  726. {
  727. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  728. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  729. gc_base);
  730. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  731. u32 *cred_len;
  732. struct rpc_rqst *req = task->tk_rqstp;
  733. u32 maj_stat = 0;
  734. struct xdr_netobj mic;
  735. struct kvec iov;
  736. struct xdr_buf verf_buf;
  737. dprintk("RPC: %4u gss_marshal\n", task->tk_pid);
  738. *p++ = htonl(RPC_AUTH_GSS);
  739. cred_len = p++;
  740. spin_lock(&ctx->gc_seq_lock);
  741. req->rq_seqno = ctx->gc_seq++;
  742. spin_unlock(&ctx->gc_seq_lock);
  743. *p++ = htonl((u32) RPC_GSS_VERSION);
  744. *p++ = htonl((u32) ctx->gc_proc);
  745. *p++ = htonl((u32) req->rq_seqno);
  746. *p++ = htonl((u32) gss_cred->gc_service);
  747. p = xdr_encode_netobj(p, &ctx->gc_wire_ctx);
  748. *cred_len = htonl((p - (cred_len + 1)) << 2);
  749. /* We compute the checksum for the verifier over the xdr-encoded bytes
  750. * starting with the xid and ending at the end of the credential: */
  751. iov.iov_base = xprt_skip_transport_header(task->tk_xprt,
  752. req->rq_snd_buf.head[0].iov_base);
  753. iov.iov_len = (u8 *)p - (u8 *)iov.iov_base;
  754. xdr_buf_from_iov(&iov, &verf_buf);
  755. /* set verifier flavor*/
  756. *p++ = htonl(RPC_AUTH_GSS);
  757. mic.data = (u8 *)(p + 1);
  758. maj_stat = gss_get_mic(ctx->gc_gss_ctx,
  759. GSS_C_QOP_DEFAULT,
  760. &verf_buf, &mic);
  761. if (maj_stat == GSS_S_CONTEXT_EXPIRED) {
  762. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  763. } else if (maj_stat != 0) {
  764. printk("gss_marshal: gss_get_mic FAILED (%d)\n", maj_stat);
  765. goto out_put_ctx;
  766. }
  767. p = xdr_encode_opaque(p, NULL, mic.len);
  768. gss_put_ctx(ctx);
  769. return p;
  770. out_put_ctx:
  771. gss_put_ctx(ctx);
  772. return NULL;
  773. }
  774. /*
  775. * Refresh credentials. XXX - finish
  776. */
  777. static int
  778. gss_refresh(struct rpc_task *task)
  779. {
  780. if (!gss_cred_is_uptodate_ctx(task->tk_msg.rpc_cred))
  781. return gss_refresh_upcall(task);
  782. return 0;
  783. }
  784. static u32 *
  785. gss_validate(struct rpc_task *task, u32 *p)
  786. {
  787. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  788. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  789. gc_base);
  790. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  791. u32 seq, qop_state;
  792. struct kvec iov;
  793. struct xdr_buf verf_buf;
  794. struct xdr_netobj mic;
  795. u32 flav,len;
  796. u32 maj_stat;
  797. dprintk("RPC: %4u gss_validate\n", task->tk_pid);
  798. flav = ntohl(*p++);
  799. if ((len = ntohl(*p++)) > RPC_MAX_AUTH_SIZE)
  800. goto out_bad;
  801. if (flav != RPC_AUTH_GSS)
  802. goto out_bad;
  803. seq = htonl(task->tk_rqstp->rq_seqno);
  804. iov.iov_base = &seq;
  805. iov.iov_len = sizeof(seq);
  806. xdr_buf_from_iov(&iov, &verf_buf);
  807. mic.data = (u8 *)p;
  808. mic.len = len;
  809. maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &verf_buf, &mic, &qop_state);
  810. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  811. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  812. if (maj_stat)
  813. goto out_bad;
  814. switch (gss_cred->gc_service) {
  815. case RPC_GSS_SVC_NONE:
  816. /* verifier data, flavor, length: */
  817. task->tk_auth->au_rslack = XDR_QUADLEN(len) + 2;
  818. break;
  819. case RPC_GSS_SVC_INTEGRITY:
  820. /* verifier data, flavor, length, length, sequence number: */
  821. task->tk_auth->au_rslack = XDR_QUADLEN(len) + 4;
  822. break;
  823. case RPC_GSS_SVC_PRIVACY:
  824. goto out_bad;
  825. }
  826. gss_put_ctx(ctx);
  827. dprintk("RPC: %4u GSS gss_validate: gss_verify_mic succeeded.\n",
  828. task->tk_pid);
  829. return p + XDR_QUADLEN(len);
  830. out_bad:
  831. gss_put_ctx(ctx);
  832. dprintk("RPC: %4u gss_validate failed.\n", task->tk_pid);
  833. return NULL;
  834. }
  835. static inline int
  836. gss_wrap_req_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  837. kxdrproc_t encode, struct rpc_rqst *rqstp, u32 *p, void *obj)
  838. {
  839. struct xdr_buf *snd_buf = &rqstp->rq_snd_buf;
  840. struct xdr_buf integ_buf;
  841. u32 *integ_len = NULL;
  842. struct xdr_netobj mic;
  843. u32 offset, *q;
  844. struct kvec *iov;
  845. u32 maj_stat = 0;
  846. int status = -EIO;
  847. integ_len = p++;
  848. offset = (u8 *)p - (u8 *)snd_buf->head[0].iov_base;
  849. *p++ = htonl(rqstp->rq_seqno);
  850. status = encode(rqstp, p, obj);
  851. if (status)
  852. return status;
  853. if (xdr_buf_subsegment(snd_buf, &integ_buf,
  854. offset, snd_buf->len - offset))
  855. return status;
  856. *integ_len = htonl(integ_buf.len);
  857. /* guess whether we're in the head or the tail: */
  858. if (snd_buf->page_len || snd_buf->tail[0].iov_len)
  859. iov = snd_buf->tail;
  860. else
  861. iov = snd_buf->head;
  862. p = iov->iov_base + iov->iov_len;
  863. mic.data = (u8 *)(p + 1);
  864. maj_stat = gss_get_mic(ctx->gc_gss_ctx,
  865. GSS_C_QOP_DEFAULT, &integ_buf, &mic);
  866. status = -EIO; /* XXX? */
  867. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  868. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  869. else if (maj_stat)
  870. return status;
  871. q = xdr_encode_opaque(p, NULL, mic.len);
  872. offset = (u8 *)q - (u8 *)p;
  873. iov->iov_len += offset;
  874. snd_buf->len += offset;
  875. return 0;
  876. }
  877. static int
  878. gss_wrap_req(struct rpc_task *task,
  879. kxdrproc_t encode, void *rqstp, u32 *p, void *obj)
  880. {
  881. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  882. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  883. gc_base);
  884. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  885. int status = -EIO;
  886. dprintk("RPC: %4u gss_wrap_req\n", task->tk_pid);
  887. if (ctx->gc_proc != RPC_GSS_PROC_DATA) {
  888. /* The spec seems a little ambiguous here, but I think that not
  889. * wrapping context destruction requests makes the most sense.
  890. */
  891. status = encode(rqstp, p, obj);
  892. goto out;
  893. }
  894. switch (gss_cred->gc_service) {
  895. case RPC_GSS_SVC_NONE:
  896. status = encode(rqstp, p, obj);
  897. break;
  898. case RPC_GSS_SVC_INTEGRITY:
  899. status = gss_wrap_req_integ(cred, ctx, encode,
  900. rqstp, p, obj);
  901. break;
  902. case RPC_GSS_SVC_PRIVACY:
  903. break;
  904. }
  905. out:
  906. gss_put_ctx(ctx);
  907. dprintk("RPC: %4u gss_wrap_req returning %d\n", task->tk_pid, status);
  908. return status;
  909. }
  910. static inline int
  911. gss_unwrap_resp_integ(struct rpc_cred *cred, struct gss_cl_ctx *ctx,
  912. struct rpc_rqst *rqstp, u32 **p)
  913. {
  914. struct xdr_buf *rcv_buf = &rqstp->rq_rcv_buf;
  915. struct xdr_buf integ_buf;
  916. struct xdr_netobj mic;
  917. u32 data_offset, mic_offset;
  918. u32 integ_len;
  919. u32 maj_stat;
  920. int status = -EIO;
  921. integ_len = ntohl(*(*p)++);
  922. if (integ_len & 3)
  923. return status;
  924. data_offset = (u8 *)(*p) - (u8 *)rcv_buf->head[0].iov_base;
  925. mic_offset = integ_len + data_offset;
  926. if (mic_offset > rcv_buf->len)
  927. return status;
  928. if (ntohl(*(*p)++) != rqstp->rq_seqno)
  929. return status;
  930. if (xdr_buf_subsegment(rcv_buf, &integ_buf, data_offset,
  931. mic_offset - data_offset))
  932. return status;
  933. if (xdr_buf_read_netobj(rcv_buf, &mic, mic_offset))
  934. return status;
  935. maj_stat = gss_verify_mic(ctx->gc_gss_ctx, &integ_buf,
  936. &mic, NULL);
  937. if (maj_stat == GSS_S_CONTEXT_EXPIRED)
  938. cred->cr_flags &= ~RPCAUTH_CRED_UPTODATE;
  939. if (maj_stat != GSS_S_COMPLETE)
  940. return status;
  941. return 0;
  942. }
  943. static int
  944. gss_unwrap_resp(struct rpc_task *task,
  945. kxdrproc_t decode, void *rqstp, u32 *p, void *obj)
  946. {
  947. struct rpc_cred *cred = task->tk_msg.rpc_cred;
  948. struct gss_cred *gss_cred = container_of(cred, struct gss_cred,
  949. gc_base);
  950. struct gss_cl_ctx *ctx = gss_cred_get_ctx(cred);
  951. int status = -EIO;
  952. if (ctx->gc_proc != RPC_GSS_PROC_DATA)
  953. goto out_decode;
  954. switch (gss_cred->gc_service) {
  955. case RPC_GSS_SVC_NONE:
  956. break;
  957. case RPC_GSS_SVC_INTEGRITY:
  958. status = gss_unwrap_resp_integ(cred, ctx, rqstp, &p);
  959. if (status)
  960. goto out;
  961. break;
  962. case RPC_GSS_SVC_PRIVACY:
  963. break;
  964. }
  965. out_decode:
  966. status = decode(rqstp, p, obj);
  967. out:
  968. gss_put_ctx(ctx);
  969. dprintk("RPC: %4u gss_unwrap_resp returning %d\n", task->tk_pid,
  970. status);
  971. return status;
  972. }
  973. static struct rpc_authops authgss_ops = {
  974. .owner = THIS_MODULE,
  975. .au_flavor = RPC_AUTH_GSS,
  976. #ifdef RPC_DEBUG
  977. .au_name = "RPCSEC_GSS",
  978. #endif
  979. .create = gss_create,
  980. .destroy = gss_destroy,
  981. .lookup_cred = gss_lookup_cred,
  982. .crcreate = gss_create_cred
  983. };
  984. static struct rpc_credops gss_credops = {
  985. .cr_name = "AUTH_GSS",
  986. .crdestroy = gss_destroy_cred,
  987. .crmatch = gss_match,
  988. .crmarshal = gss_marshal,
  989. .crrefresh = gss_refresh,
  990. .crvalidate = gss_validate,
  991. .crwrap_req = gss_wrap_req,
  992. .crunwrap_resp = gss_unwrap_resp,
  993. };
  994. static struct rpc_pipe_ops gss_upcall_ops = {
  995. .upcall = gss_pipe_upcall,
  996. .downcall = gss_pipe_downcall,
  997. .destroy_msg = gss_pipe_destroy_msg,
  998. .release_pipe = gss_pipe_release,
  999. };
  1000. /*
  1001. * Initialize RPCSEC_GSS module
  1002. */
  1003. static int __init init_rpcsec_gss(void)
  1004. {
  1005. int err = 0;
  1006. err = rpcauth_register(&authgss_ops);
  1007. if (err)
  1008. goto out;
  1009. err = gss_svc_init();
  1010. if (err)
  1011. goto out_unregister;
  1012. return 0;
  1013. out_unregister:
  1014. rpcauth_unregister(&authgss_ops);
  1015. out:
  1016. return err;
  1017. }
  1018. static void __exit exit_rpcsec_gss(void)
  1019. {
  1020. gss_svc_shutdown();
  1021. rpcauth_unregister(&authgss_ops);
  1022. }
  1023. MODULE_LICENSE("GPL");
  1024. module_init(init_rpcsec_gss)
  1025. module_exit(exit_rpcsec_gss)