| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:52:22 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | #include <openssl/objects.h>
 | 
					
						
							|  |  |  | #include <openssl/x509.h>
 | 
					
						
							|  |  |  | #include <openssl/pem.h>
 | 
					
						
							|  |  |  | #include <openssl/x509v3.h>
 | 
					
						
							|  |  |  | #include <openssl/ocsp.h>
 | 
					
						
							| 
									
										
										
										
											2015-03-05 21:41:11 +08:00
										 |  |  | #include "ocsp_lcl.h"
 | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Utility functions related to sending OCSP responses and extracting | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  |  * relevant information from the request. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OCSP_request_onereq_count(OCSP_REQUEST *req) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |     return sk_OCSP_ONEREQ_num(req->tbsRequest.requestList); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |     return sk_OCSP_ONEREQ_value(req->tbsRequest.requestList, i); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     return one->reqCert; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       ASN1_OCTET_STRING **pikeyHash, | 
					
						
							|  |  |  |                       ASN1_INTEGER **pserial, OCSP_CERTID *cid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!cid) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if (pmd) | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |         *pmd = cid->hashAlgorithm.algorithm; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (piNameHash) | 
					
						
							| 
									
										
										
										
											2015-10-07 21:42:34 +08:00
										 |  |  |         *piNameHash = &cid->issuerNameHash; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (pikeyHash) | 
					
						
							| 
									
										
										
										
											2015-10-07 21:42:34 +08:00
										 |  |  |         *pikeyHash = &cid->issuerKeyHash; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (pserial) | 
					
						
							| 
									
										
										
										
											2015-10-07 21:42:34 +08:00
										 |  |  |         *pserial = &cid->serialNumber; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-26 22:17:58 +08:00
										 |  |  | int OCSP_request_is_signed(OCSP_REQUEST *req) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (req->optionalSignature) | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-26 22:17:58 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | /* Create an OCSP response and encode an optional basic response */ | 
					
						
							|  |  |  | OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     OCSP_RESPONSE *rsp = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((rsp = OCSP_RESPONSE_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     if (!(ASN1_ENUMERATED_set(rsp->responseStatus, status))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (!bs) | 
					
						
							|  |  |  |         return rsp; | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((rsp->responseBytes = OCSP_RESPBYTES_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     rsp->responseBytes->responseType = OBJ_nid2obj(NID_id_pkix_OCSP_basic); | 
					
						
							|  |  |  |     if (!ASN1_item_pack | 
					
						
							|  |  |  |         (bs, ASN1_ITEM_rptr(OCSP_BASICRESP), &rsp->responseBytes->response)) | 
					
						
							|  |  |  |          goto err; | 
					
						
							|  |  |  |     return rsp; | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-05-02 02:37:16 +08:00
										 |  |  |     OCSP_RESPONSE_free(rsp); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                                         OCSP_CERTID *cid, | 
					
						
							|  |  |  |                                         int status, int reason, | 
					
						
							|  |  |  |                                         ASN1_TIME *revtime, | 
					
						
							|  |  |  |                                         ASN1_TIME *thisupd, | 
					
						
							|  |  |  |                                         ASN1_TIME *nextupd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     OCSP_SINGLERESP *single = NULL; | 
					
						
							|  |  |  |     OCSP_CERTSTATUS *cs; | 
					
						
							|  |  |  |     OCSP_REVOKEDINFO *ri; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |     if (rsp->tbsResponseData.responses == NULL | 
					
						
							|  |  |  |         && (rsp->tbsResponseData.responses | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |                 = sk_OCSP_SINGLERESP_new_null()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((single = OCSP_SINGLERESP_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ASN1_TIME_to_generalizedtime(thisupd, &single->thisUpdate)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     if (nextupd && | 
					
						
							|  |  |  |         !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OCSP_CERTID_free(single->certId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if ((single->certId = OCSP_CERTID_dup(cid)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cs = single->certStatus; | 
					
						
							|  |  |  |     switch (cs->type = status) { | 
					
						
							|  |  |  |     case V_OCSP_CERTSTATUS_REVOKED: | 
					
						
							|  |  |  |         if (!revtime) { | 
					
						
							|  |  |  |             OCSPerr(OCSP_F_OCSP_BASIC_ADD1_STATUS, OCSP_R_NO_REVOKED_TIME); | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |         if ((cs->value.revoked = ri = OCSP_REVOKEDINFO_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							|  |  |  |         if (!ASN1_TIME_to_generalizedtime(revtime, &ri->revocationTime)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         if (reason != OCSP_REVOKED_STATUS_NOSTATUS) { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |             if ((ri->revocationReason = ASN1_ENUMERATED_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 goto err; | 
					
						
							|  |  |  |             if (!(ASN1_ENUMERATED_set(ri->revocationReason, reason))) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case V_OCSP_CERTSTATUS_GOOD: | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |         if ((cs->value.good = ASN1_NULL_new()) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     case V_OCSP_CERTSTATUS_UNKNOWN: | 
					
						
							| 
									
										
										
										
											2015-10-30 19:12:26 +08:00
										 |  |  |         if ((cs->value.unknown = ASN1_NULL_new()) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |     if (!(sk_OCSP_SINGLERESP_push(rsp->tbsResponseData.responses, single))) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  |     return single; | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     OCSP_SINGLERESP_free(single); | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2001-02-04 03:20:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Add a certificate to an OCSP request */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |     if (resp->certs == NULL | 
					
						
							|  |  |  |         && (resp->certs = sk_X509_new_null()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!sk_X509_push(resp->certs, cert)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-09-01 03:29:57 +08:00
										 |  |  |     X509_up_ref(cert); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OCSP_basic_sign(OCSP_BASICRESP *brsp, | 
					
						
							|  |  |  |                     X509 *signer, EVP_PKEY *key, const EVP_MD *dgst, | 
					
						
							|  |  |  |                     STACK_OF(X509) *certs, unsigned long flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     OCSP_RESPID *rid; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!X509_check_private_key(signer, key)) { | 
					
						
							|  |  |  |         OCSPerr(OCSP_F_OCSP_BASIC_SIGN, | 
					
						
							|  |  |  |                 OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE); | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!(flags & OCSP_NOCERTS)) { | 
					
						
							|  |  |  |         if (!OCSP_basic_add1_cert(brsp, signer)) | 
					
						
							|  |  |  |             goto err; | 
					
						
							|  |  |  |         for (i = 0; i < sk_X509_num(certs); i++) { | 
					
						
							|  |  |  |             X509 *tmpcert = sk_X509_value(certs, i); | 
					
						
							|  |  |  |             if (!OCSP_basic_add1_cert(brsp, tmpcert)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |     rid = &brsp->tbsResponseData.responderId; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (flags & OCSP_RESPID_KEY) { | 
					
						
							| 
									
										
										
										
											2016-09-13 00:39:55 +08:00
										 |  |  |         if (!OCSP_RESPID_set_by_key(rid, signer)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2016-09-13 00:39:55 +08:00
										 |  |  |     } else if (!OCSP_RESPID_set_by_name(rid, signer)) { | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!(flags & OCSP_NOTIME) && | 
					
						
							| 
									
										
										
										
											2015-10-07 06:04:08 +08:00
										 |  |  |         !X509_gmtime_adj(brsp->tbsResponseData.producedAt, 0)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * Right now, I think that not doing double hashing is the right thing. | 
					
						
							|  |  |  |      * -- Richard Levitte | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!OCSP_BASICRESP_sign(brsp, key, dgst, 0)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-13 00:39:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!X509_NAME_set(&respid->value.byName, X509_get_subject_name(cert))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     respid->type = V_OCSP_RESPID_NAME; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ASN1_OCTET_STRING *byKey = NULL; | 
					
						
							|  |  |  |     unsigned char md[SHA_DIGEST_LENGTH]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* RFC2560 requires SHA1 */ | 
					
						
							|  |  |  |     if (!X509_pubkey_digest(cert, EVP_sha1(), md, NULL)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     byKey = ASN1_OCTET_STRING_new(); | 
					
						
							|  |  |  |     if (byKey == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-14 06:26:53 +08:00
										 |  |  |     if (!(ASN1_OCTET_STRING_set(byKey, md, SHA_DIGEST_LENGTH))) { | 
					
						
							| 
									
										
										
										
											2016-09-13 00:39:55 +08:00
										 |  |  |         ASN1_OCTET_STRING_free(byKey); | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     respid->type = V_OCSP_RESPID_KEY; | 
					
						
							|  |  |  |     respid->value.byKey = byKey; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-09-14 06:26:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (respid->type == V_OCSP_RESPID_KEY) { | 
					
						
							|  |  |  |         unsigned char md[SHA_DIGEST_LENGTH]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (respid->value.byKey == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         /* RFC2560 requires SHA1 */ | 
					
						
							|  |  |  |         if (!X509_pubkey_digest(cert, EVP_sha1(), md, NULL)) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return (ASN1_STRING_length(respid->value.byKey) == SHA_DIGEST_LENGTH) | 
					
						
							|  |  |  |             && (memcmp(ASN1_STRING_get0_data(respid->value.byKey), md, | 
					
						
							|  |  |  |                        SHA_DIGEST_LENGTH) == 0); | 
					
						
							| 
									
										
										
										
											2017-08-26 23:56:44 +08:00
										 |  |  |     } else if (respid->type == V_OCSP_RESPID_NAME) { | 
					
						
							| 
									
										
										
										
											2016-09-14 06:26:53 +08:00
										 |  |  |         if (respid->value.byName == NULL) | 
					
						
							|  |  |  |             return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return X509_NAME_cmp(respid->value.byName, | 
					
						
							|  |  |  |                              X509_get_subject_name(cert)) == 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } |