auth_gss.c 33 KB

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