auth_gss.c 35 KB

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